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