ipdbg: fix double free of virtual-ir data
[openocd.git] / src / target / arm_dpm.h
blob2da4631112d465fef4818d81d5343c81a18f6a46
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /*
4 * Copyright (C) 2009 by David Brownell
5 */
7 #ifndef OPENOCD_TARGET_ARM_DPM_H
8 #define OPENOCD_TARGET_ARM_DPM_H
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.
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;
29 struct dpm_bp {
30 struct breakpoint *bp;
31 struct dpm_bpwp bpwp;
34 struct dpm_wp {
35 struct watchpoint *wp;
36 struct dpm_bpwp bpwp;
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.
44 * It is a PRELIMINARY AND INCOMPLETE set of primitives, starting with
45 * support for CPU register access.
47 struct arm_dpm {
48 struct arm *arm;
50 /** Cache of DIDR */
51 uint64_t didr;
53 /** Invoke before a series of instruction operations */
54 int (*prepare)(struct arm_dpm *dpm);
56 /** Invoke after a series of instruction operations */
57 int (*finish)(struct arm_dpm *dpm);
59 /** Runs one instruction. */
60 int (*instr_execute)(struct arm_dpm *dpm, uint32_t opcode);
62 /* WRITE TO CPU */
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);
68 int (*instr_write_data_dcc_64)(struct arm_dpm *dpm,
69 uint32_t opcode, uint64_t data);
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);
75 /**
76 * Runs two instructions, writing data to R0 and R1 before execution.
78 int (*instr_write_data_r0_r1)(struct arm_dpm *dpm,
79 uint32_t opcode, uint64_t data);
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);
85 /** Optional core-specific operation invoked after CPSR writes. */
86 int (*instr_cpsr_sync)(struct arm_dpm *dpm);
88 /* READ FROM CPU */
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);
94 int (*instr_read_data_dcc_64)(struct arm_dpm *dpm,
95 uint32_t opcode, uint64_t *data);
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);
102 * Runs two instructions, reading data from r0 and r1 after
103 * execution.
105 int (*instr_read_data_r0_r1)(struct arm_dpm *dpm,
106 uint32_t opcode, uint64_t *data);
108 int (*instr_read_data_r0_64)(struct arm_dpm *dpm,
109 uint32_t opcode, uint64_t *data);
111 struct reg *(*arm_reg_current)(struct arm *arm,
112 unsigned regnum);
114 /* BREAKPOINT/WATCHPOINT SUPPORT */
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.
122 int (*bpwp_enable)(struct arm_dpm *dpm, unsigned index_value,
123 uint32_t addr, uint32_t control);
126 * Disables one breakpoint or watchpoint by clearing its
127 * hardware control registers. Indices are the same ones
128 * accepted by bpwp_enable().
130 int (*bpwp_disable)(struct arm_dpm *dpm, unsigned index_value);
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.
137 unsigned nbp;
138 unsigned nwp;
139 struct dpm_bp *dbp;
140 struct dpm_wp *dwp;
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.
147 target_addr_t wp_addr;
149 /** Recent value of DSCR. */
150 uint32_t dscr;
152 /** Recent exception level on armv8 */
153 unsigned int last_el;
155 /* FIXME -- read/write DCSR methods and symbols */
158 int arm_dpm_setup(struct arm_dpm *dpm);
159 int arm_dpm_initialize(struct arm_dpm *dpm);
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);
165 int arm_dpm_write_dirty_registers(struct arm_dpm *dpm, bool bpwp);
167 void arm_dpm_report_wfar(struct arm_dpm *dpm, uint32_t wfar);
169 /* DSCR bits; see ARMv7a arch spec section C10.3.1.
170 * Not all v7 bits are valid in v6.
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 */
197 #define DSCR_ENTRY(dscr) ((dscr) & 0x3f)
198 #define DSCR_RUN_MODE(dscr) ((dscr) & 0x03)
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)
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 */
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)
227 void arm_dpm_report_dscr(struct arm_dpm *dpm, uint32_t dcsr);
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)
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 */
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)
250 #endif /* OPENOCD_TARGET_ARM_DPM_H */