OpenOCD
cortex_m.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /***************************************************************************
4  * Copyright (C) 2005 by Dominic Rath *
5  * Dominic.Rath@gmx.de *
6  * *
7  * Copyright (C) 2006 by Magnus Lundin *
8  * lundin@mlu.mine.nu *
9  * *
10  * Copyright (C) 2008 by Spencer Oliver *
11  * spen@spen-soft.co.uk *
12  ***************************************************************************/
13 
14 #ifndef OPENOCD_TARGET_CORTEX_M_H
15 #define OPENOCD_TARGET_CORTEX_M_H
16 
17 #include "armv7m.h"
18 #include "helper/bits.h"
19 
20 #define CORTEX_M_COMMON_MAGIC 0x1A451A45U
21 
22 #define SYSTEM_CONTROL_BASE 0x400FE000
23 
24 #define ITM_TER0 0xE0000E00
25 #define ITM_TPR 0xE0000E40
26 #define ITM_TCR 0xE0000E80
27 #define ITM_TCR_ITMENA_BIT BIT(0)
28 #define ITM_TCR_BUSY_BIT BIT(23)
29 #define ITM_LAR 0xE0000FB0
30 #define ITM_LAR_KEY 0xC5ACCE55
31 
32 #define CPUID 0xE000ED00
33 
34 #define ARM_CPUID_IMPLEMENTER_POS 24
35 #define ARM_CPUID_IMPLEMENTER_MASK (0xFF << ARM_CPUID_IMPLEMENTER_POS)
36 #define ARM_CPUID_PARTNO_POS 4
37 #define ARM_CPUID_PARTNO_MASK (0xFFF << ARM_CPUID_PARTNO_POS)
38 
39 #define ARM_MAKE_CPUID(impl, partno) ((((impl) << ARM_CPUID_IMPLEMENTER_POS) & ARM_CPUID_IMPLEMENTER_MASK) | \
40  (((partno) << ARM_CPUID_PARTNO_POS) & ARM_CPUID_PARTNO_MASK))
41 
64 };
65 
66 /* Relevant Cortex-M flags, used in struct cortex_m_part_info.flags */
67 #define CORTEX_M_F_HAS_FPV4 BIT(0)
68 #define CORTEX_M_F_HAS_FPV5 BIT(1)
69 #define CORTEX_M_F_TAR_AUTOINCR_BLOCK_4K BIT(2)
70 
73  const char *name;
74  enum arm_arch arch;
75  uint32_t flags;
76 };
77 
78 /* Debug Control Block */
79 #define DCB_DHCSR 0xE000EDF0
80 #define DCB_DCRSR 0xE000EDF4
81 #define DCB_DCRDR 0xE000EDF8
82 #define DCB_DEMCR 0xE000EDFC
83 #define DCB_DSCSR 0xE000EE08
84 
85 #define DAUTHSTATUS 0xE000EFB8
86 #define DAUTHSTATUS_SID_MASK 0x00000030
87 
88 #define DCRSR_WNR BIT(16)
89 
90 #define DWT_CTRL 0xE0001000
91 #define DWT_CYCCNT 0xE0001004
92 #define DWT_PCSR 0xE000101C
93 #define DWT_COMP0 0xE0001020
94 #define DWT_MASK0 0xE0001024
95 #define DWT_FUNCTION0 0xE0001028
96 #define DWT_DEVARCH 0xE0001FBC
97 
98 #define DWT_DEVARCH_ARMV8M_V2_0 0x101A02
99 #define DWT_DEVARCH_ARMV8M_V2_1 0x111A02
100 
101 #define FP_CTRL 0xE0002000
102 #define FP_REMAP 0xE0002004
103 #define FP_COMP0 0xE0002008
104 #define FP_COMP1 0xE000200C
105 #define FP_COMP2 0xE0002010
106 #define FP_COMP3 0xE0002014
107 #define FP_COMP4 0xE0002018
108 #define FP_COMP5 0xE000201C
109 #define FP_COMP6 0xE0002020
110 #define FP_COMP7 0xE0002024
111 
112 #define FPU_CPACR 0xE000ED88
113 #define FPU_FPCCR 0xE000EF34
114 #define FPU_FPCAR 0xE000EF38
115 #define FPU_FPDSCR 0xE000EF3C
116 
117 #define TPIU_SSPSR 0xE0040000
118 #define TPIU_CSPSR 0xE0040004
119 #define TPIU_ACPR 0xE0040010
120 #define TPIU_SPPR 0xE00400F0
121 #define TPIU_FFSR 0xE0040300
122 #define TPIU_FFCR 0xE0040304
123 #define TPIU_FSCR 0xE0040308
124 
125 /* Maximum SWO prescaler value. */
126 #define TPIU_ACPR_MAX_SWOSCALER 0x1fff
127 
128 /* DCB_DHCSR bit and field definitions */
129 #define DBGKEY (0xA05Ful << 16)
130 #define C_DEBUGEN BIT(0)
131 #define C_HALT BIT(1)
132 #define C_STEP BIT(2)
133 #define C_MASKINTS BIT(3)
134 #define S_REGRDY BIT(16)
135 #define S_HALT BIT(17)
136 #define S_SLEEP BIT(18)
137 #define S_LOCKUP BIT(19)
138 #define S_RETIRE_ST BIT(24)
139 #define S_RESET_ST BIT(25)
140 
141 /* DCB_DEMCR bit and field definitions */
142 #define TRCENA BIT(24)
143 #define VC_HARDERR BIT(10)
144 #define VC_INTERR BIT(9)
145 #define VC_BUSERR BIT(8)
146 #define VC_STATERR BIT(7)
147 #define VC_CHKERR BIT(6)
148 #define VC_NOCPERR BIT(5)
149 #define VC_MMERR BIT(4)
150 #define VC_CORERESET BIT(0)
151 
152 /* DCB_DSCSR bit and field definitions */
153 #define DSCSR_CDSKEY BIT(17)
154 #define DSCSR_CDS BIT(16)
155 
156 /* NVIC registers */
157 #define NVIC_ICTR 0xE000E004
158 #define NVIC_ISE0 0xE000E100
159 #define NVIC_ICSR 0xE000ED04
160 #define NVIC_AIRCR 0xE000ED0C
161 #define NVIC_SHCSR 0xE000ED24
162 #define NVIC_CFSR 0xE000ED28
163 #define NVIC_MMFSRB 0xE000ED28
164 #define NVIC_BFSRB 0xE000ED29
165 #define NVIC_USFSRH 0xE000ED2A
166 #define NVIC_HFSR 0xE000ED2C
167 #define NVIC_DFSR 0xE000ED30
168 #define NVIC_MMFAR 0xE000ED34
169 #define NVIC_BFAR 0xE000ED38
170 #define MPU_CTRL 0xE000ED94
171 #define SAU_CTRL 0xE000EDD0
172 #define NVIC_SFSR 0xE000EDE4
173 #define NVIC_SFAR 0xE000EDE8
174 
175 /* NVIC_AIRCR bits */
176 #define AIRCR_VECTKEY (0x5FAul << 16)
177 #define AIRCR_SYSRESETREQ BIT(2)
178 #define AIRCR_VECTCLRACTIVE BIT(1)
179 #define AIRCR_VECTRESET BIT(0)
180 /* NVIC_SHCSR bits */
181 #define SHCSR_BUSFAULTENA BIT(17)
182 /* NVIC_DFSR bits */
183 #define DFSR_HALTED 1
184 #define DFSR_BKPT 2
185 #define DFSR_DWTTRAP 4
186 #define DFSR_VCATCH 8
187 #define DFSR_EXTERNAL 16
188 
189 #define MPU_CTRL_ENABLE BIT(0)
190 #define SAU_CTRL_ENABLE BIT(0)
191 
192 #define FPCR_CODE 0
193 #define FPCR_LITERAL 1
194 #define FPCR_REPLACE_REMAP (0ul << 30)
195 #define FPCR_REPLACE_BKPT_LOW (1ul << 30)
196 #define FPCR_REPLACE_BKPT_HIGH (2ul << 30)
197 #define FPCR_REPLACE_BKPT_BOTH (3ul << 30)
198 
200  bool used;
201  int type;
202  uint32_t fpcr_value;
203  uint32_t fpcr_address;
204 };
205 
207  bool used;
208  uint32_t comp;
209  uint32_t mask;
210  uint32_t function;
212 };
213 
217 };
218 
224 };
225 
227  unsigned int common_magic;
228 
229  struct armv7m_common armv7m;
230 
231  /* Context information */
232  uint32_t dcb_dhcsr;
234  /* DCB DHCSR has been at least once read, so the sticky bits have been reset */
236  uint32_t nvic_dfsr; /* Debug Fault Status Register - shows reason for debug halt */
237  uint32_t nvic_icsr; /* Interrupt Control State Register - shows active and pending IRQ */
238 
239  /* Flash Patch and Breakpoint (FPB) */
240  unsigned int fp_num_lit;
241  unsigned int fp_num_code;
242  int fp_rev;
245 
246  /* Data Watchpoint and Trace (DWT) */
247  unsigned int dwt_num_comp;
248  unsigned int dwt_comp_available;
249  uint32_t dwt_devarch;
252 
256 
258 
259  bool slow_register_read; /* A register has not been ready, poll S_REGRDY */
260 
261  uint64_t apsel;
262 
263  /* Whether this target has the erratum that makes C_MASKINTS not apply to
264  * already pending interrupts */
266 
267  /* Errata 3092511 Cortex-M7 can halt in an incorrect address when breakpoint
268  * and exception occurs simultaneously */
270 };
271 
274  uint32_t dscsr;
276  uint32_t sau_ctrl;
278  uint32_t mpu_ctrl;
279 };
280 
281 static inline bool is_cortex_m_or_hla(const struct cortex_m_common *cortex_m)
282 {
283  return cortex_m->common_magic == CORTEX_M_COMMON_MAGIC;
284 }
285 
286 static inline bool is_cortex_m_with_dap_access(const struct cortex_m_common *cortex_m)
287 {
288  if (!is_cortex_m_or_hla(cortex_m))
289  return false;
290 
291  return !cortex_m->armv7m.is_hla_target;
292 }
293 
300 static inline struct cortex_m_common *
302 {
303  return container_of(target->arch_info,
304  struct cortex_m_common, armv7m.arm);
305 }
306 
313 static inline struct cortex_m_common *
315 {
316  /* Check the parent types first to prevent peeking memory too far
317  * from arch_info pointer */
319  return NULL;
320 
321  struct cortex_m_common *cortex_m = target_to_cm(target);
322  if (!is_cortex_m_or_hla(cortex_m))
323  return NULL;
324 
325  return cortex_m;
326 }
327 
333 static inline enum cortex_m_impl_part cortex_m_get_impl_part(struct target *target)
334 {
335  struct cortex_m_common *cortex_m = target_to_cortex_m_safe(target);
336  if (!cortex_m)
338 
339  if (!cortex_m->core_info)
341 
342  return cortex_m->core_info->impl_part;
343 }
344 
345 int cortex_m_examine(struct target *target);
354 void cortex_m_deinit_target(struct target *target);
355 int cortex_m_profiling(struct target *target, uint32_t *samples,
356  uint32_t max_num_samples, uint32_t *num_samples, uint32_t seconds);
357 
364 int cortex_m_set_secure(struct target *target, struct cortex_m_saved_security *ssec);
365 
370 
371 #endif /* OPENOCD_TARGET_CORTEX_M_H */
@ ARM_IMPLEMENTER_ARM
Definition: arm.h:63
@ ARM_IMPLEMENTER_ARM_CHINA
Definition: arm.h:65
@ ARM_IMPLEMENTER_INFINEON
Definition: arm.h:64
@ ARM_IMPLEMENTER_REALTEK
Definition: arm.h:66
arm_arch
ARM Architecture specifying the version and the profile.
Definition: arm.h:53
static struct armv7m_common * target_to_armv7m_safe(struct target *target)
Definition: armv7m.h:278
static bool is_cortex_m_or_hla(const struct cortex_m_common *cortex_m)
Definition: cortex_m.h:281
int cortex_m_security_restore(struct target *target, struct cortex_m_saved_security *ssec)
Restores saved security context to MPU_CTRL, SAU_CTRL and DSCSR.
Definition: cortex_m.c:2634
void cortex_m_enable_watchpoints(struct target *target)
Definition: cortex_m.c:2230
static enum cortex_m_impl_part cortex_m_get_impl_part(struct target *target)
Definition: cortex_m.h:333
static struct cortex_m_common * target_to_cortex_m_safe(struct target *target)
Definition: cortex_m.h:314
#define CORTEX_M_COMMON_MAGIC
Definition: cortex_m.h:20
int cortex_m_set_secure(struct target *target, struct cortex_m_saved_security *ssec)
Forces Cortex-M core to the basic secure context with SAU and MPU off.
Definition: cortex_m.c:2566
int cortex_m_add_watchpoint(struct target *target, struct watchpoint *watchpoint)
Definition: cortex_m.c:2139
static bool is_cortex_m_with_dap_access(const struct cortex_m_common *cortex_m)
Definition: cortex_m.h:286
void cortex_m_enable_breakpoints(struct target *target)
Definition: cortex_m.c:1302
int cortex_m_remove_breakpoint(struct target *target, struct breakpoint *breakpoint)
Definition: cortex_m.c:2016
int cortex_m_examine(struct target *target)
Definition: cortex_m.c:2693
int cortex_m_remove_watchpoint(struct target *target, struct watchpoint *watchpoint)
Definition: cortex_m.c:2182
int cortex_m_add_breakpoint(struct target *target, struct breakpoint *breakpoint)
Definition: cortex_m.c:2001
#define ARM_MAKE_CPUID(impl, partno)
Definition: cortex_m.h:39
static struct cortex_m_common * target_to_cm(struct target *target)
Definition: cortex_m.h:301
cortex_m_isrmasking_mode
Definition: cortex_m.h:219
@ CORTEX_M_ISRMASK_OFF
Definition: cortex_m.h:221
@ CORTEX_M_ISRMASK_ON
Definition: cortex_m.h:222
@ CORTEX_M_ISRMASK_STEPONLY
Definition: cortex_m.h:223
@ CORTEX_M_ISRMASK_AUTO
Definition: cortex_m.h:220
int cortex_m_set_breakpoint(struct target *target, struct breakpoint *breakpoint)
Definition: cortex_m.c:1875
void cortex_m_deinit_target(struct target *target)
Definition: cortex_m.c:2278
int cortex_m_unset_breakpoint(struct target *target, struct breakpoint *breakpoint)
Definition: cortex_m.c:1960
cortex_m_impl_part
Known Arm Cortex masked CPU Ids This includes the implementer and part number, but not the revision o...
Definition: cortex_m.h:46
@ CORTEX_M52_PARTNO
Definition: cortex_m.h:58
@ CORTEX_M85_PARTNO
Definition: cortex_m.h:60
@ CORTEX_M7_PARTNO
Definition: cortex_m.h:53
@ INFINEON_SLX2_PARTNO
Definition: cortex_m.h:61
@ CORTEX_M35P_PARTNO
Definition: cortex_m.h:57
@ CORTEX_M4_PARTNO
Definition: cortex_m.h:52
@ STAR_MC1_PARTNO
Definition: cortex_m.h:48
@ CORTEX_M33_PARTNO
Definition: cortex_m.h:56
@ CORTEX_M1_PARTNO
Definition: cortex_m.h:50
@ CORTEX_M0_PARTNO
Definition: cortex_m.h:49
@ CORTEX_M0P_PARTNO
Definition: cortex_m.h:54
@ REALTEK_M200_PARTNO
Definition: cortex_m.h:62
@ CORTEX_M55_PARTNO
Definition: cortex_m.h:59
@ REALTEK_M300_PARTNO
Definition: cortex_m.h:63
@ CORTEX_M23_PARTNO
Definition: cortex_m.h:55
@ CORTEX_M_PARTNO_INVALID
Definition: cortex_m.h:47
@ CORTEX_M3_PARTNO
Definition: cortex_m.h:51
int cortex_m_profiling(struct target *target, uint32_t *samples, uint32_t max_num_samples, uint32_t *num_samples, uint32_t seconds)
Definition: cortex_m.c:2295
cortex_m_soft_reset_config
Definition: cortex_m.h:214
@ CORTEX_M_RESET_VECTRESET
Definition: cortex_m.h:216
@ CORTEX_M_RESET_SYSRESETREQ
Definition: cortex_m.h:215
bool is_hla_target
Definition: armv7m.h:240
struct arm arm
Definition: armv7m.h:229
const struct cortex_m_part_info * core_info
Definition: cortex_m.h:257
enum cortex_m_soft_reset_config soft_reset_config
Definition: cortex_m.h:253
struct armv7m_common armv7m
Definition: cortex_m.h:229
uint64_t apsel
Definition: cortex_m.h:261
unsigned int dwt_comp_available
Definition: cortex_m.h:248
unsigned int dwt_num_comp
Definition: cortex_m.h:247
uint32_t dcb_dhcsr
Definition: cortex_m.h:232
bool fpb_enabled
Definition: cortex_m.h:243
struct cortex_m_dwt_comparator * dwt_comparator_list
Definition: cortex_m.h:250
bool incorrect_halt_erratum
Definition: cortex_m.h:269
bool slow_register_read
Definition: cortex_m.h:259
bool dcb_dhcsr_sticky_is_recent
Definition: cortex_m.h:235
struct cortex_m_fp_comparator * fp_comparator_list
Definition: cortex_m.h:244
struct reg_cache * dwt_cache
Definition: cortex_m.h:251
unsigned int fp_num_lit
Definition: cortex_m.h:240
bool vectreset_supported
Definition: cortex_m.h:254
uint32_t dwt_devarch
Definition: cortex_m.h:249
uint32_t nvic_dfsr
Definition: cortex_m.h:236
unsigned int fp_num_code
Definition: cortex_m.h:241
bool maskints_erratum
Definition: cortex_m.h:265
enum cortex_m_isrmasking_mode isrmasking_mode
Definition: cortex_m.h:255
uint32_t nvic_icsr
Definition: cortex_m.h:237
unsigned int common_magic
Definition: cortex_m.h:227
uint32_t dcb_dhcsr_cumulated_sticky
Definition: cortex_m.h:233
uint32_t dwt_comparator_address
Definition: cortex_m.h:211
enum arm_arch arch
Definition: cortex_m.h:74
const char * name
Definition: cortex_m.h:73
enum cortex_m_impl_part impl_part
Definition: cortex_m.h:72
uint32_t flags
Definition: cortex_m.h:75
Definition: target.h:119
void * arch_info
Definition: target.h:167
#define container_of(ptr, type, member)
Cast a member of a structure out to the containing structure.
Definition: types.h:68
#define NULL
Definition: usb.h:16