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