2 * Copyright (C) 2005 by Dominic Rath
5 * Copyright (C) 2008 by Spencer Oliver
8 * Copyright (C) 2009 by Øyvind Harboe
9 * oyvind.harboe@zylin.com
11 * Copyright (C) 2018 by Liviu Ionescu
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.
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.
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/>.
28 #ifndef OPENOCD_TARGET_ARM_H
29 #define OPENOCD_TARGET_ARM_H
31 #include <helper/command.h>
36 * Holds the interface to ARM cores.
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.
44 * Indicates what registers are in the ARM state core register set.
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.
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
,
63 /** ARM Architecture specifying the version and the profile */
73 * Represent state of an ARM core.
75 * Most numbers match the five low bits of the *PSR registers on
76 * "classic ARM" processors, which build on the ARMv4 processor
77 * modes and register set.
79 * ARM_MODE_ANY is a magic value, often used as a wildcard.
81 * Only the microcontroller cores (ARMv6-M, ARMv7-M) support ARM_MODE_THREAD,
82 * ARM_MODE_USER_THREAD, and ARM_MODE_HANDLER. Those are the only modes
94 ARM_MODE_1176_MON
= 28,
98 ARM_MODE_USER_THREAD
= 1,
112 /* VFPv3 internal register numbers mapping to d0:31 */
149 const char *arm_mode_name(unsigned psr_mode
);
150 bool is_arm_mode(unsigned psr_mode
);
152 /** The PSR "T" and "J" bits define the mode of "classic ARM" cores. */
161 /** ARM vector floating point enabled, if yes which version. */
162 enum arm_vfp_version
{
169 #define ARM_COMMON_MAGIC 0x0A450A45
172 * Represents a generic ARM core, with standard application registers.
174 * There are sixteen application registers (including PC, SP, LR) and a PSR.
175 * Cortex-M series cores do not support as many core states or shadowed
176 * registers as traditional ARM cores, and only support Thumb2 instructions.
180 struct reg_cache
*core_cache
;
182 /** Handle to the PC; valid in all core modes. */
185 /** Handle to the CPSR/xPSR; valid in all core modes. */
188 /** Handle to the SPSR; valid only in core modes with an SPSR. */
191 /** Support for arm_reg_current() */
194 /** Indicates what registers are in the ARM state core register set. */
195 enum arm_core_type core_type
;
197 /** Record the current core mode: SVC, USR, or some other mode. */
198 enum arm_mode core_mode
;
200 /** Record the current core state: ARM, Thumb, or otherwise. */
201 enum arm_state core_state
;
203 /** ARM architecture version */
206 /** Floating point or VFP version, 0 if disabled. */
209 int (*setup_semihosting
)(struct target
*target
, int enable
);
211 /** Backpointer to the target. */
212 struct target
*target
;
214 /** Handle for the debug module, if one is present. */
217 /** Handle for the Embedded Trace Module, if one is present. */
218 struct etm_context
*etm
;
220 /* FIXME all these methods should take "struct arm *" not target */
222 /** Retrieve all core registers, for display. */
223 int (*full_context
)(struct target
*target
);
225 /** Retrieve a single core register. */
226 int (*read_core_reg
)(struct target
*target
, struct reg
*reg
,
227 int num
, enum arm_mode mode
);
228 int (*write_core_reg
)(struct target
*target
, struct reg
*reg
,
229 int num
, enum arm_mode mode
, uint8_t *value
);
231 /** Read coprocessor register. */
232 int (*mrc
)(struct target
*target
, int cpnum
,
233 uint32_t op1
, uint32_t op2
,
234 uint32_t CRn
, uint32_t CRm
,
237 /** Write coprocessor register. */
238 int (*mcr
)(struct target
*target
, int cpnum
,
239 uint32_t op1
, uint32_t op2
,
240 uint32_t CRn
, uint32_t CRm
,
245 /** For targets conforming to ARM Debug Interface v5,
246 * this handle references the Debug Access Port (DAP)
247 * used to make requests to the target.
249 struct adiv5_dap
*dap
;
252 /** Convert target handle to generic ARM target state handle. */
253 static inline struct arm
*target_to_arm(struct target
*target
)
255 assert(target
!= NULL
);
256 return target
->arch_info
;
259 static inline bool is_arm(struct arm
*arm
)
262 return arm
->common_magic
== ARM_COMMON_MAGIC
;
265 struct arm_algorithm
{
268 enum arm_mode core_mode
;
269 enum arm_state core_state
;
275 struct target
*target
;
280 struct reg_cache
*arm_build_reg_cache(struct target
*target
, struct arm
*arm
);
281 void arm_free_reg_cache(struct arm
*arm
);
283 struct reg_cache
*armv8_build_reg_cache(struct target
*target
);
285 extern const struct command_registration arm_command_handlers
[];
287 int arm_arch_state(struct target
*target
);
288 const char *arm_get_gdb_arch(struct target
*target
);
289 int arm_get_gdb_reg_list(struct target
*target
,
290 struct reg
**reg_list
[], int *reg_list_size
,
291 enum target_register_class reg_class
);
292 const char *armv8_get_gdb_arch(struct target
*target
);
293 int armv8_get_gdb_reg_list(struct target
*target
,
294 struct reg
**reg_list
[], int *reg_list_size
,
295 enum target_register_class reg_class
);
297 int arm_init_arch_info(struct target
*target
, struct arm
*arm
);
299 /* REVISIT rename this once it's usable by ARMv7-M */
300 int armv4_5_run_algorithm(struct target
*target
,
301 int num_mem_params
, struct mem_param
*mem_params
,
302 int num_reg_params
, struct reg_param
*reg_params
,
303 target_addr_t entry_point
, target_addr_t exit_point
,
304 int timeout_ms
, void *arch_info
);
305 int armv4_5_run_algorithm_inner(struct target
*target
,
306 int num_mem_params
, struct mem_param
*mem_params
,
307 int num_reg_params
, struct reg_param
*reg_params
,
308 uint32_t entry_point
, uint32_t exit_point
,
309 int timeout_ms
, void *arch_info
,
310 int (*run_it
)(struct target
*target
, uint32_t exit_point
,
311 int timeout_ms
, void *arch_info
));
313 int arm_checksum_memory(struct target
*target
,
314 target_addr_t address
, uint32_t count
, uint32_t *checksum
);
315 int arm_blank_check_memory(struct target
*target
,
316 struct target_memory_check_block
*blocks
, int num_blocks
, uint8_t erased_value
);
318 void arm_set_cpsr(struct arm
*arm
, uint32_t cpsr
);
319 struct reg
*arm_reg_current(struct arm
*arm
, unsigned regnum
);
320 struct reg
*armv8_reg_current(struct arm
*arm
, unsigned regnum
);
322 extern struct reg arm_gdb_dummy_fp_reg
;
323 extern struct reg arm_gdb_dummy_fps_reg
;
325 #endif /* OPENOCD_TARGET_ARM_H */