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