7 #ifndef OPENOCD_TARGET_ARM_DPM_H
8 #define OPENOCD_TARGET_ARM_DPM_H
66 uint32_t opcode, uint32_t data);
69 uint32_t opcode, uint64_t data);
73 uint32_t opcode, uint32_t data);
77 uint32_t opcode, uint64_t data);
86 uint32_t opcode, uint32_t *data);
89 uint32_t opcode, uint64_t *data);
93 uint32_t opcode, uint32_t *data);
96 uint32_t opcode, uint64_t *data);
98 struct reg *(*arm_reg_current)(
struct arm *
arm,
110 uint32_t
addr, uint32_t control);
159 #define DSCR_CORE_HALTED (0x1 << 0)
160 #define DSCR_CORE_RESTARTED (0x1 << 1)
161 #define DSCR_ENTRY_MASK (0xF << 2)
162 #define DSCR_STICKY_ABORT_PRECISE (0x1 << 6)
163 #define DSCR_STICKY_ABORT_IMPRECISE (0x1 << 7)
164 #define DSCR_STICKY_UNDEFINED (0x1 << 8)
165 #define DSCR_DBG_NOPWRDWN (0x1 << 9)
166 #define DSCR_DBG_ACK (0x1 << 10)
167 #define DSCR_INT_DIS (0x1 << 11)
168 #define DSCR_CP14_USR_COMMS (0x1 << 12)
169 #define DSCR_ITR_EN (0x1 << 13)
170 #define DSCR_HALT_DBG_MODE (0x1 << 14)
171 #define DSCR_MON_DBG_MODE (0x1 << 15)
172 #define DSCR_SEC_PRIV_INVASV_DIS (0x1 << 16)
173 #define DSCR_SEC_PRIV_NINVASV_DIS (0x1 << 17)
174 #define DSCR_NON_SECURE (0x1 << 18)
175 #define DSCR_DSCRD_IMPRECISE_ABORT (0x1 << 19)
176 #define DSCR_EXT_DCC_MASK (0x3 << 20)
177 #define DSCR_INSTR_COMP (0x1 << 24)
178 #define DSCR_PIPE_ADVANCE (0x1 << 25)
179 #define DSCR_DTRTX_FULL_LATCHED (0x1 << 26)
180 #define DSCR_DTRRX_FULL_LATCHED (0x1 << 27)
181 #define DSCR_DTR_TX_FULL (0x1 << 29)
182 #define DSCR_DTR_RX_FULL (0x1 << 30)
184 #define DSCR_ENTRY(dscr) ((dscr) & 0x3f)
185 #define DSCR_RUN_MODE(dscr) ((dscr) & 0x03)
189 #define DSCR_ENTRY_HALT_REQ (0x03)
190 #define DSCR_ENTRY_BREAKPOINT (0x07)
191 #define DSCR_ENTRY_IMPRECISE_WATCHPT (0x0B)
192 #define DSCR_ENTRY_BKPT_INSTR (0x0F)
193 #define DSCR_ENTRY_EXT_DBG_REQ (0x13)
194 #define DSCR_ENTRY_VECT_CATCH (0x17)
195 #define DSCR_ENTRY_D_SIDE_ABORT (0x1B)
196 #define DSCR_ENTRY_I_SIDE_ABORT (0x1F)
197 #define DSCR_ENTRY_OS_UNLOCK (0x23)
198 #define DSCR_ENTRY_PRECISE_WATCHPT (0x2B)
201 #define DSCR_EXT_DCC_NON_BLOCKING (0x0 << 20)
202 #define DSCR_EXT_DCC_STALL_MODE (0x1 << 20)
203 #define DSCR_EXT_DCC_FAST_MODE (0x2 << 20)
210 #define DRCR_HALT (1 << 0)
211 #define DRCR_RESTART (1 << 1)
212 #define DRCR_CLEAR_EXCEPTIONS (1 << 2)
217 #define PRCR_DEBUG_NO_POWER_DOWN (1 << 0)
218 #define PRCR_WARM_RESET (1 << 1)
219 #define PRCR_HOLD_NON_DEBUG_RESET (1 << 2)
222 #define PRSR_POWERUP_STATUS (1 << 0)
223 #define PRSR_STICKY_POWERDOWN_STATUS (1 << 1)
224 #define PRSR_RESET_STATUS (1 << 2)
225 #define PRSR_STICKY_RESET_STATUS (1 << 3)
226 #define PRSR_HALTED (1 << 4)
227 #define PRSR_OSLK (1 << 5)
228 #define PRSR_DLK (1 << 6)
231 #define OSLSR_OSLM0 (1 << 0)
232 #define OSLSR_OSLK (1 << 1)
233 #define OSLSR_NTT (1 << 2)
234 #define OSLSR_OSLM1 (1 << 3)
235 #define OSLSR_OSLM (OSLSR_OSLM0|OSLSR_OSLM1)
arm_mode
Represent state of an ARM core.
int arm_dpm_read_current_registers(struct arm_dpm *dpm)
Read basic registers of the current context: R0 to R15, and CPSR; sets the core mode (such as USR or ...
int arm_dpm_modeswitch(struct arm_dpm *dpm, enum arm_mode mode)
int arm_dpm_setup(struct arm_dpm *dpm)
Hooks up this DPM to its associated target; call only once.
int arm_dpm_read_reg(struct arm_dpm *dpm, struct reg *r, unsigned regnum)
int arm_dpm_write_dirty_registers(struct arm_dpm *dpm, bool bpwp)
Writes all modified core registers for all processor modes.
void arm_dpm_report_wfar(struct arm_dpm *dpm, uint32_t wfar)
void arm_dpm_report_dscr(struct arm_dpm *dpm, uint32_t dcsr)
int arm_dpm_initialize(struct arm_dpm *dpm)
Reinitializes DPM state at the beginning of a new debug session or after a reset which may have affec...
This wraps an implementation of DPM primitives.
target_addr_t wp_addr
Target dependent watchpoint address.
int(* instr_read_data_dcc)(struct arm_dpm *dpm, uint32_t opcode, uint32_t *data)
Runs one instruction, reading data from dcc after execution.
uint64_t didr
Cache of DIDR.
int(* instr_write_data_r0_64)(struct arm_dpm *dpm, uint32_t opcode, uint64_t data)
Runs one instruction, writing data to R0 before execution.
int(* instr_read_data_dcc_64)(struct arm_dpm *dpm, uint32_t opcode, uint64_t *data)
int(* instr_execute)(struct arm_dpm *dpm, uint32_t opcode)
Runs one instruction.
int(* instr_write_data_dcc_64)(struct arm_dpm *dpm, uint32_t opcode, uint64_t data)
int(* instr_write_data_r0)(struct arm_dpm *dpm, uint32_t opcode, uint32_t data)
Runs one instruction, writing data to R0 before execution.
int(* finish)(struct arm_dpm *dpm)
Invoke after a series of instruction operations.
int(* bpwp_enable)(struct arm_dpm *dpm, unsigned index_value, uint32_t addr, uint32_t control)
Enables one breakpoint or watchpoint by writing to the hardware registers.
unsigned int last_el
Recent exception level on armv8.
int(* instr_write_data_dcc)(struct arm_dpm *dpm, uint32_t opcode, uint32_t data)
Runs one instruction, writing data to DCC before execution.
int(* bpwp_disable)(struct arm_dpm *dpm, unsigned index_value)
Disables one breakpoint or watchpoint by clearing its hardware control registers.
int(* prepare)(struct arm_dpm *dpm)
Invoke before a series of instruction operations.
int(* instr_read_data_r0)(struct arm_dpm *dpm, uint32_t opcode, uint32_t *data)
Runs one instruction, reading data from r0 after execution.
int(* instr_read_data_r0_64)(struct arm_dpm *dpm, uint32_t opcode, uint64_t *data)
int(* instr_cpsr_sync)(struct arm_dpm *dpm)
Optional core-specific operation invoked after CPSR writes.
uint32_t dscr
Recent value of DSCR.
Represents a generic ARM core, with standard application registers.