target/cortex_m: Add Realtek Real-M200 and M300
[openocd.git] / src / target / arm.h
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) 2008 by Spencer Oliver
8 * spen@spen-soft.co.uk
9 *
10 * Copyright (C) 2009 by Øyvind Harboe
11 * oyvind.harboe@zylin.com
12 *
13 * Copyright (C) 2018 by Liviu Ionescu
14 * <ilg@livius.net>
15 */
16
17 #ifndef OPENOCD_TARGET_ARM_H
18 #define OPENOCD_TARGET_ARM_H
19
20 #include <helper/command.h>
21 #include "target.h"
22
23 /**
24 * @file
25 * Holds the interface to ARM cores.
26 *
27 * At this writing, only "classic ARM" cores built on the ARMv4 register
28 * and mode model are supported. The Thumb2-only microcontroller profile
29 * support has not yet been integrated, affecting Cortex-M parts.
30 */
31
32 /**
33 * Indicates what registers are in the ARM state core register set.
34 *
35 * - ARM_CORE_TYPE_STD indicates the standard set of 37 registers, seen
36 * on for example ARM7TDMI cores.
37 * - ARM_CORE_TYPE_SEC_EXT indicates core has security extensions, thus
38 * three more registers are shadowed for "Secure Monitor" mode.
39 * - ARM_CORE_TYPE_VIRT_EXT indicates core has virtualization extensions
40 * and also security extensions. Additional shadowed registers for
41 * "Secure Monitor" and "Hypervisor" modes.
42 * - ARM_CORE_TYPE_M_PROFILE indicates a microcontroller profile core,
43 * which only shadows SP.
44 */
45 enum arm_core_type {
46 ARM_CORE_TYPE_STD = -1,
47 ARM_CORE_TYPE_SEC_EXT = 1,
48 ARM_CORE_TYPE_VIRT_EXT,
49 ARM_CORE_TYPE_M_PROFILE,
50 };
51
52 /** ARM Architecture specifying the version and the profile */
53 enum arm_arch {
54 ARM_ARCH_UNKNOWN,
55 ARM_ARCH_V4,
56 ARM_ARCH_V6M,
57 ARM_ARCH_V7M,
58 ARM_ARCH_V8M,
59 };
60
61 /** Known ARM implementor IDs */
62 enum arm_implementor {
63 ARM_IMPLEMENTOR_ARM = 0x41,
64 ARM_IMPLEMENTOR_REALTEK = 0x72,
65 };
66
67 /**
68 * Represent state of an ARM core.
69 *
70 * Most numbers match the five low bits of the *PSR registers on
71 * "classic ARM" processors, which build on the ARMv4 processor
72 * modes and register set.
73 *
74 * ARM_MODE_ANY is a magic value, often used as a wildcard.
75 *
76 * Only the microcontroller cores (ARMv6-M, ARMv7-M) support ARM_MODE_THREAD,
77 * ARM_MODE_USER_THREAD, and ARM_MODE_HANDLER. Those are the only modes
78 * they support.
79 */
80 enum arm_mode {
81 ARM_MODE_USR = 16,
82 ARM_MODE_FIQ = 17,
83 ARM_MODE_IRQ = 18,
84 ARM_MODE_SVC = 19,
85 ARM_MODE_MON = 22,
86 ARM_MODE_ABT = 23,
87 ARM_MODE_HYP = 26,
88 ARM_MODE_UND = 27,
89 ARM_MODE_1176_MON = 28,
90 ARM_MODE_SYS = 31,
91
92 ARM_MODE_THREAD = 0,
93 ARM_MODE_USER_THREAD = 1,
94 ARM_MODE_HANDLER = 2,
95
96 ARMV8_64_EL0T = 0x0,
97 ARMV8_64_EL1T = 0x4,
98 ARMV8_64_EL1H = 0x5,
99 ARMV8_64_EL2T = 0x8,
100 ARMV8_64_EL2H = 0x9,
101 ARMV8_64_EL3T = 0xC,
102 ARMV8_64_EL3H = 0xD,
103
104 ARM_MODE_ANY = -1
105 };
106
107 /* VFPv3 internal register numbers mapping to d0:31 */
108 enum {
109 ARM_VFP_V3_D0 = 51,
110 ARM_VFP_V3_D1,
111 ARM_VFP_V3_D2,
112 ARM_VFP_V3_D3,
113 ARM_VFP_V3_D4,
114 ARM_VFP_V3_D5,
115 ARM_VFP_V3_D6,
116 ARM_VFP_V3_D7,
117 ARM_VFP_V3_D8,
118 ARM_VFP_V3_D9,
119 ARM_VFP_V3_D10,
120 ARM_VFP_V3_D11,
121 ARM_VFP_V3_D12,
122 ARM_VFP_V3_D13,
123 ARM_VFP_V3_D14,
124 ARM_VFP_V3_D15,
125 ARM_VFP_V3_D16,
126 ARM_VFP_V3_D17,
127 ARM_VFP_V3_D18,
128 ARM_VFP_V3_D19,
129 ARM_VFP_V3_D20,
130 ARM_VFP_V3_D21,
131 ARM_VFP_V3_D22,
132 ARM_VFP_V3_D23,
133 ARM_VFP_V3_D24,
134 ARM_VFP_V3_D25,
135 ARM_VFP_V3_D26,
136 ARM_VFP_V3_D27,
137 ARM_VFP_V3_D28,
138 ARM_VFP_V3_D29,
139 ARM_VFP_V3_D30,
140 ARM_VFP_V3_D31,
141 ARM_VFP_V3_FPSCR,
142 };
143
144 const char *arm_mode_name(unsigned psr_mode);
145 bool is_arm_mode(unsigned psr_mode);
146
147 /** The PSR "T" and "J" bits define the mode of "classic ARM" cores. */
148 enum arm_state {
149 ARM_STATE_ARM,
150 ARM_STATE_THUMB,
151 ARM_STATE_JAZELLE,
152 ARM_STATE_THUMB_EE,
153 ARM_STATE_AARCH64,
154 };
155
156 /** ARM vector floating point enabled, if yes which version. */
157 enum arm_vfp_version {
158 ARM_VFP_DISABLED,
159 ARM_VFP_V1,
160 ARM_VFP_V2,
161 ARM_VFP_V3,
162 };
163
164 #define ARM_COMMON_MAGIC 0x0A450A45U
165
166 /**
167 * Represents a generic ARM core, with standard application registers.
168 *
169 * There are sixteen application registers (including PC, SP, LR) and a PSR.
170 * Cortex-M series cores do not support as many core states or shadowed
171 * registers as traditional ARM cores, and only support Thumb2 instructions.
172 */
173 struct arm {
174 unsigned int common_magic;
175
176 struct reg_cache *core_cache;
177
178 /** Handle to the PC; valid in all core modes. */
179 struct reg *pc;
180
181 /** Handle to the CPSR/xPSR; valid in all core modes. */
182 struct reg *cpsr;
183
184 /** Handle to the SPSR; valid only in core modes with an SPSR. */
185 struct reg *spsr;
186
187 /** Support for arm_reg_current() */
188 const int *map;
189
190 /** Indicates what registers are in the ARM state core register set. */
191 enum arm_core_type core_type;
192
193 /** Record the current core mode: SVC, USR, or some other mode. */
194 enum arm_mode core_mode;
195
196 /** Record the current core state: ARM, Thumb, or otherwise. */
197 enum arm_state core_state;
198
199 /** ARM architecture version */
200 enum arm_arch arch;
201
202 /** Floating point or VFP version, 0 if disabled. */
203 int arm_vfp_version;
204
205 int (*setup_semihosting)(struct target *target, int enable);
206
207 /** Backpointer to the target. */
208 struct target *target;
209
210 /** Handle for the debug module, if one is present. */
211 struct arm_dpm *dpm;
212
213 /** Handle for the Embedded Trace Module, if one is present. */
214 struct etm_context *etm;
215
216 /* FIXME all these methods should take "struct arm *" not target */
217
218 /** Retrieve all core registers, for display. */
219 int (*full_context)(struct target *target);
220
221 /** Retrieve a single core register. */
222 int (*read_core_reg)(struct target *target, struct reg *reg,
223 int num, enum arm_mode mode);
224 int (*write_core_reg)(struct target *target, struct reg *reg,
225 int num, enum arm_mode mode, uint8_t *value);
226
227 /** Read coprocessor register. */
228 int (*mrc)(struct target *target, int cpnum,
229 uint32_t op1, uint32_t op2,
230 uint32_t crn, uint32_t crm,
231 uint32_t *value);
232
233 /** Write coprocessor register. */
234 int (*mcr)(struct target *target, int cpnum,
235 uint32_t op1, uint32_t op2,
236 uint32_t crn, uint32_t crm,
237 uint32_t value);
238
239 void *arch_info;
240
241 /** For targets conforming to ARM Debug Interface v5,
242 * this handle references the Debug Access Port (DAP)
243 * used to make requests to the target.
244 */
245 struct adiv5_dap *dap;
246 };
247
248 /** Convert target handle to generic ARM target state handle. */
249 static inline struct arm *target_to_arm(struct target *target)
250 {
251 assert(target);
252 return target->arch_info;
253 }
254
255 static inline bool is_arm(struct arm *arm)
256 {
257 assert(arm);
258 return arm->common_magic == ARM_COMMON_MAGIC;
259 }
260
261 struct arm_algorithm {
262 unsigned int common_magic;
263
264 enum arm_mode core_mode;
265 enum arm_state core_state;
266 };
267
268 struct arm_reg {
269 int num;
270 enum arm_mode mode;
271 struct target *target;
272 struct arm *arm;
273 uint8_t value[16];
274 };
275
276 struct reg_cache *arm_build_reg_cache(struct target *target, struct arm *arm);
277 void arm_free_reg_cache(struct arm *arm);
278
279 struct reg_cache *armv8_build_reg_cache(struct target *target);
280
281 extern const struct command_registration arm_command_handlers[];
282 extern const struct command_registration arm_all_profiles_command_handlers[];
283
284 int arm_arch_state(struct target *target);
285 const char *arm_get_gdb_arch(struct target *target);
286 int arm_get_gdb_reg_list(struct target *target,
287 struct reg **reg_list[], int *reg_list_size,
288 enum target_register_class reg_class);
289 const char *armv8_get_gdb_arch(struct target *target);
290 int armv8_get_gdb_reg_list(struct target *target,
291 struct reg **reg_list[], int *reg_list_size,
292 enum target_register_class reg_class);
293
294 int arm_init_arch_info(struct target *target, struct arm *arm);
295
296 /* REVISIT rename this once it's usable by ARMv7-M */
297 int armv4_5_run_algorithm(struct target *target,
298 int num_mem_params, struct mem_param *mem_params,
299 int num_reg_params, struct reg_param *reg_params,
300 target_addr_t entry_point, target_addr_t exit_point,
301 unsigned int timeout_ms, void *arch_info);
302 int armv4_5_run_algorithm_inner(struct target *target,
303 int num_mem_params, struct mem_param *mem_params,
304 int num_reg_params, struct reg_param *reg_params,
305 uint32_t entry_point, uint32_t exit_point,
306 unsigned int timeout_ms, void *arch_info,
307 int (*run_it)(struct target *target, uint32_t exit_point,
308 unsigned int timeout_ms, void *arch_info));
309
310 int arm_checksum_memory(struct target *target,
311 target_addr_t address, uint32_t count, uint32_t *checksum);
312 int arm_blank_check_memory(struct target *target,
313 struct target_memory_check_block *blocks, int num_blocks, uint8_t erased_value);
314
315 void arm_set_cpsr(struct arm *arm, uint32_t cpsr);
316 struct reg *arm_reg_current(struct arm *arm, unsigned regnum);
317 struct reg *armv8_reg_current(struct arm *arm, unsigned regnum);
318
319 #endif /* OPENOCD_TARGET_ARM_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)