jtag: linuxgpiod: drop extra parenthesis
[openocd.git] / src / target / arm_dpm.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2
3 /*
4 * Copyright (C) 2009 by David Brownell
5 */
6
7 #ifndef OPENOCD_TARGET_ARM_DPM_H
8 #define OPENOCD_TARGET_ARM_DPM_H
9
10 /**
11 * @file
12 * This is the interface to the Debug Programmers Model for ARMv6 and
13 * ARMv7 processors. ARMv6 processors (such as ARM11xx implementations)
14 * introduced a model which became part of the ARMv7-AR architecture
15 * which is most familiar through the Cortex-A series parts. While
16 * specific details differ (like how to write the instruction register),
17 * the high level models easily support shared code because those
18 * registers are compatible.
19 */
20
21 struct dpm_bpwp {
22 unsigned number;
23 uint32_t address;
24 uint32_t control;
25 /* true if hardware state needs flushing */
26 bool dirty;
27 };
28
29 struct dpm_bp {
30 struct breakpoint *bp;
31 struct dpm_bpwp bpwp;
32 };
33
34 struct dpm_wp {
35 struct watchpoint *wp;
36 struct dpm_bpwp bpwp;
37 };
38
39 /**
40 * This wraps an implementation of DPM primitives. Each interface
41 * provider supplies a structure like this, which is the glue between
42 * upper level code and the lower level hardware access.
43 *
44 * It is a PRELIMINARY AND INCOMPLETE set of primitives, starting with
45 * support for CPU register access.
46 */
47 struct arm_dpm {
48 struct arm *arm;
49
50 /** Cache of DIDR */
51 uint64_t didr;
52
53 /** Invoke before a series of instruction operations */
54 int (*prepare)(struct arm_dpm *dpm);
55
56 /** Invoke after a series of instruction operations */
57 int (*finish)(struct arm_dpm *dpm);
58
59 /** Runs one instruction. */
60 int (*instr_execute)(struct arm_dpm *dpm, uint32_t opcode);
61
62 /* WRITE TO CPU */
63
64 /** Runs one instruction, writing data to DCC before execution. */
65 int (*instr_write_data_dcc)(struct arm_dpm *dpm,
66 uint32_t opcode, uint32_t data);
67
68 int (*instr_write_data_dcc_64)(struct arm_dpm *dpm,
69 uint32_t opcode, uint64_t data);
70
71 /** Runs one instruction, writing data to R0 before execution. */
72 int (*instr_write_data_r0)(struct arm_dpm *dpm,
73 uint32_t opcode, uint32_t data);
74
75 /**
76 * Runs two instructions, writing data to R0 and R1 before execution.
77 */
78 int (*instr_write_data_r0_r1)(struct arm_dpm *dpm,
79 uint32_t opcode, uint64_t data);
80
81 /** Runs one instruction, writing data to R0 before execution. */
82 int (*instr_write_data_r0_64)(struct arm_dpm *dpm,
83 uint32_t opcode, uint64_t data);
84
85 /** Optional core-specific operation invoked after CPSR writes. */
86 int (*instr_cpsr_sync)(struct arm_dpm *dpm);
87
88 /* READ FROM CPU */
89
90 /** Runs one instruction, reading data from dcc after execution. */
91 int (*instr_read_data_dcc)(struct arm_dpm *dpm,
92 uint32_t opcode, uint32_t *data);
93
94 int (*instr_read_data_dcc_64)(struct arm_dpm *dpm,
95 uint32_t opcode, uint64_t *data);
96
97 /** Runs one instruction, reading data from r0 after execution. */
98 int (*instr_read_data_r0)(struct arm_dpm *dpm,
99 uint32_t opcode, uint32_t *data);
100
101 /**
102 * Runs two instructions, reading data from r0 and r1 after
103 * execution.
104 */
105 int (*instr_read_data_r0_r1)(struct arm_dpm *dpm,
106 uint32_t opcode, uint64_t *data);
107
108 int (*instr_read_data_r0_64)(struct arm_dpm *dpm,
109 uint32_t opcode, uint64_t *data);
110
111 struct reg *(*arm_reg_current)(struct arm *arm,
112 unsigned regnum);
113
114 /* BREAKPOINT/WATCHPOINT SUPPORT */
115
116 /**
117 * Enables one breakpoint or watchpoint by writing to the
118 * hardware registers. The specified breakpoint/watchpoint
119 * must currently be disabled. Indices 0..15 are used for
120 * breakpoints; indices 16..31 are for watchpoints.
121 */
122 int (*bpwp_enable)(struct arm_dpm *dpm, unsigned index_value,
123 uint32_t addr, uint32_t control);
124
125 /**
126 * Disables one breakpoint or watchpoint by clearing its
127 * hardware control registers. Indices are the same ones
128 * accepted by bpwp_enable().
129 */
130 int (*bpwp_disable)(struct arm_dpm *dpm, unsigned index_value);
131
132 /* The breakpoint and watchpoint arrays are private to the
133 * DPM infrastructure. There are nbp indices in the dbp
134 * array. There are nwp indices in the dwp array.
135 */
136
137 unsigned nbp;
138 unsigned nwp;
139 struct dpm_bp *dbp;
140 struct dpm_wp *dwp;
141
142 /**
143 * Target dependent watchpoint address.
144 * Either the address of the instruction which triggered a watchpoint
145 * or the memory address whose access triggered a watchpoint.
146 */
147 target_addr_t wp_addr;
148
149 /** Recent value of DSCR. */
150 uint32_t dscr;
151
152 /** Recent exception level on armv8 */
153 unsigned int last_el;
154
155 /* FIXME -- read/write DCSR methods and symbols */
156 };
157
158 int arm_dpm_setup(struct arm_dpm *dpm);
159 int arm_dpm_initialize(struct arm_dpm *dpm);
160
161 int arm_dpm_read_reg(struct arm_dpm *dpm, struct reg *r, unsigned regnum);
162 int arm_dpm_read_current_registers(struct arm_dpm *dpm);
163 int arm_dpm_modeswitch(struct arm_dpm *dpm, enum arm_mode mode);
164
165 int arm_dpm_write_dirty_registers(struct arm_dpm *dpm, bool bpwp);
166
167 void arm_dpm_report_wfar(struct arm_dpm *dpm, uint32_t wfar);
168
169 /* DSCR bits; see ARMv7a arch spec section C10.3.1.
170 * Not all v7 bits are valid in v6.
171 */
172 #define DSCR_CORE_HALTED (0x1 << 0)
173 #define DSCR_CORE_RESTARTED (0x1 << 1)
174 #define DSCR_ENTRY_MASK (0xF << 2)
175 #define DSCR_STICKY_ABORT_PRECISE (0x1 << 6)
176 #define DSCR_STICKY_ABORT_IMPRECISE (0x1 << 7)
177 #define DSCR_STICKY_UNDEFINED (0x1 << 8)
178 #define DSCR_DBG_NOPWRDWN (0x1 << 9) /* v6 only */
179 #define DSCR_DBG_ACK (0x1 << 10)
180 #define DSCR_INT_DIS (0x1 << 11)
181 #define DSCR_CP14_USR_COMMS (0x1 << 12)
182 #define DSCR_ITR_EN (0x1 << 13)
183 #define DSCR_HALT_DBG_MODE (0x1 << 14)
184 #define DSCR_MON_DBG_MODE (0x1 << 15)
185 #define DSCR_SEC_PRIV_INVASV_DIS (0x1 << 16)
186 #define DSCR_SEC_PRIV_NINVASV_DIS (0x1 << 17)
187 #define DSCR_NON_SECURE (0x1 << 18)
188 #define DSCR_DSCRD_IMPRECISE_ABORT (0x1 << 19)
189 #define DSCR_EXT_DCC_MASK (0x3 << 20) /* DTR mode */ /* bits 22, 23 are reserved */
190 #define DSCR_INSTR_COMP (0x1 << 24)
191 #define DSCR_PIPE_ADVANCE (0x1 << 25)
192 #define DSCR_DTRTX_FULL_LATCHED (0x1 << 26)
193 #define DSCR_DTRRX_FULL_LATCHED (0x1 << 27) /* bit 28 is reserved */
194 #define DSCR_DTR_TX_FULL (0x1 << 29)
195 #define DSCR_DTR_RX_FULL (0x1 << 30) /* bit 31 is reserved */
196
197 #define DSCR_ENTRY(dscr) ((dscr) & 0x3f)
198 #define DSCR_RUN_MODE(dscr) ((dscr) & 0x03)
199
200
201 /* Methods of entry into debug mode */
202 #define DSCR_ENTRY_HALT_REQ (0x03)
203 #define DSCR_ENTRY_BREAKPOINT (0x07)
204 #define DSCR_ENTRY_IMPRECISE_WATCHPT (0x0B)
205 #define DSCR_ENTRY_BKPT_INSTR (0x0F)
206 #define DSCR_ENTRY_EXT_DBG_REQ (0x13)
207 #define DSCR_ENTRY_VECT_CATCH (0x17)
208 #define DSCR_ENTRY_D_SIDE_ABORT (0x1B) /* v6 only */
209 #define DSCR_ENTRY_I_SIDE_ABORT (0x1F) /* v6 only */
210 #define DSCR_ENTRY_OS_UNLOCK (0x23)
211 #define DSCR_ENTRY_PRECISE_WATCHPT (0x2B)
212
213 /* DTR modes */
214 #define DSCR_EXT_DCC_NON_BLOCKING (0x0 << 20)
215 #define DSCR_EXT_DCC_STALL_MODE (0x1 << 20)
216 #define DSCR_EXT_DCC_FAST_MODE (0x2 << 20) /* bits 22, 23 are reserved */
217
218
219
220
221
222 /* DRCR (debug run control register) bits */
223 #define DRCR_HALT (1 << 0)
224 #define DRCR_RESTART (1 << 1)
225 #define DRCR_CLEAR_EXCEPTIONS (1 << 2)
226
227 void arm_dpm_report_dscr(struct arm_dpm *dpm, uint32_t dcsr);
228
229 /* PRCR (Device Power-down and Reset Control Register) bits */
230 #define PRCR_DEBUG_NO_POWER_DOWN (1 << 0)
231 #define PRCR_WARM_RESET (1 << 1)
232 #define PRCR_HOLD_NON_DEBUG_RESET (1 << 2)
233
234 /* PRSR (Device Power-down and Reset Status Register) bits */
235 #define PRSR_POWERUP_STATUS (1 << 0)
236 #define PRSR_STICKY_POWERDOWN_STATUS (1 << 1)
237 #define PRSR_RESET_STATUS (1 << 2)
238 #define PRSR_STICKY_RESET_STATUS (1 << 3)
239 #define PRSR_HALTED (1 << 4) /* v7.1 Debug only */
240 #define PRSR_OSLK (1 << 5) /* v7.1 Debug only */
241 #define PRSR_DLK (1 << 6) /* v7.1 Debug only */
242
243 /* OSLSR (OS Lock Status Register) bits */
244 #define OSLSR_OSLM0 (1 << 0)
245 #define OSLSR_OSLK (1 << 1)
246 #define OSLSR_NTT (1 << 2)
247 #define OSLSR_OSLM1 (1 << 3)
248 #define OSLSR_OSLM (OSLSR_OSLM0|OSLSR_OSLM1)
249
250 #endif /* OPENOCD_TARGET_ARM_DPM_H */

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)