cross compile fix
[openocd.git] / src / target / cortex_swjdp.h
1 /***************************************************************************
2 * Copyright (C) 2006 by Magnus Lundin *
3 * lundin@mlu.mine.nu *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifndef CORTEX_SWJDP_H
21 #define CORTEX_SWJDP_H
22
23 #include "target.h"
24 #include "register.h"
25 #include "arm_jtag.h"
26
27 #define SWJDP_IR_DPACC 0xA
28 #define SWJDP_IR_APACC 0xB
29
30 #define DPAP_WRITE 0
31 #define DPAP_READ 1
32 #define DP_ZERO 0
33 #define DP_CTRL_STAT 0x4
34 #define DP_SELECT 0x8
35 #define DP_RDBUFF 0xC
36
37 #define CORUNDETECT (1<<0)
38 #define SSTICKYORUN (1<<1)
39 #define SSTICKYERR (1<<5)
40 #define CDBGRSTREQ (1<<26)
41 #define CDBGRSTACK (1<<27)
42 #define CDBGPWRUPREQ (1<<28)
43 #define CDBGPWRUPACK (1<<29)
44 #define CSYSPWRUPREQ (1<<30)
45 #define CSYSPWRUPACK (1<<31)
46
47 #define AHBAP_CSW 0x00
48 #define AHBAP_TAR 0x04
49 #define AHBAP_DRW 0x0C
50 #define AHBAP_BD0 0x10
51 #define AHBAP_BD1 0x14
52 #define AHBAP_BD2 0x18
53 #define AHBAP_BD3 0x1C
54 #define AHBAP_DBGROMA 0xF8
55 #define AHBAP_IDR 0xFC
56
57 #define CSW_8BIT 0
58 #define CSW_16BIT 1
59 #define CSW_32BIT 2
60
61 #define CSW_ADDRINC_MASK (3<<4)
62 #define CSW_ADDRINC_OFF 0
63 #define CSW_ADDRINC_SINGLE (1<<4)
64 #define CSW_ADDRINC_PACKED (2<<4)
65 #define CSW_HPROT (1<<25)
66 #define CSW_MASTER_DEBUG (1<<29)
67 #define CSW_DBGSWENABLE (1<<31)
68
69 /* transaction mode */
70 #define TRANS_MODE_NONE 0
71 /* Transaction waits for previous to complete */
72 #define TRANS_MODE_ATOMIC 1
73 /* Freerunning transactions with delays and overrun checking */
74 #define TRANS_MODE_COMPOSITE 2
75
76 typedef struct swjdp_reg_s
77 {
78 int addr;
79 arm_jtag_t *jtag_info;
80 } swjdp_reg_t;
81
82 typedef struct swjdp_common_s
83 {
84 arm_jtag_t *jtag_info;
85 /* Control config */
86 u32 dp_ctrl_stat;
87 /* Register select cache */
88 u32 dp_select_value;
89 u32 ap_csw_value;
90 u32 ap_tar_value;
91 /* information about current pending SWjDP-AHBAP transaction */
92 u8 trans_mode;
93 u8 trans_rw;
94 u8 ack;
95 } swjdp_common_t;
96
97 /* Internal functions used in the module, partial transactions, use with caution */
98 extern int swjdp_write_dpacc(swjdp_common_t *swjdp, u32 value, u8 reg_addr);
99 /* extern int swjdp_write_apacc(swjdp_common_t *swjdp, u32 value, u8 reg_addr); */
100 extern int swjdp_read_dpacc(swjdp_common_t *swjdp, u32 *value, u8 reg_addr);
101 /* extern int swjdp_read_apacc(swjdp_common_t *swjdp, u32 *value, u8 reg_addr); */
102 extern int ahbap_write_reg(swjdp_common_t *swjdp, u32 reg_addr, u8* out_value_buf);
103 extern int ahbap_read_reg(swjdp_common_t *swjdp, u32 reg_addr, u8 *in_value_buf);
104
105 /* External interface, partial operations must be completed with swjdp_transaction_endcheck() */
106 extern int ahbap_read_system_u32(swjdp_common_t *swjdp, u32 address, u32 *value);
107 extern int ahbap_write_system_u32(swjdp_common_t *swjdp, u32 address, u32 value);
108 extern int swjdp_transaction_endcheck(swjdp_common_t *swjdp);
109
110 /* External interface, complete atomic operations */
111 /* Host endian word transfer of single memory and system registers */
112 extern int ahbap_read_system_atomic_u32(swjdp_common_t *swjdp, u32 address, u32 *value);
113 extern int ahbap_write_system_atomic_u32(swjdp_common_t *swjdp, u32 address, u32 value);
114
115 /* Host endian word transfers of processor core registers */
116 extern int ahbap_read_coreregister_u32(swjdp_common_t *swjdp, u32 *value, int regnum);
117 extern int ahbap_write_coreregister_u32(swjdp_common_t *swjdp, u32 value, int regnum);
118
119 extern int ahbap_read_buf_u8(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address);
120 extern int ahbap_read_buf_u16(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address);
121 extern int ahbap_read_buf_u32(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address);
122
123 extern int ahbap_write_buf_u8(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address);
124 extern int ahbap_write_buf_u16(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address);
125 extern int ahbap_write_buf_u32(swjdp_common_t *swjdp, u8 *buffer, int count, u32 address);
126
127 /* Initialisation of the debug system, power domains and registers */
128 extern int ahbap_debugport_init(swjdp_common_t *swjdp);
129
130 #endif

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)