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