1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 /***************************************************************************
4 * Copyright (C) 2015 by David Ung *
5 ***************************************************************************/
7 #ifndef OPENOCD_TARGET_ARMV8_H
8 #define OPENOCD_TARGET_ARMV8_H
10 #include "arm_adi_v5.h"
12 #include "armv4_5_mmu.h"
13 #include "armv4_5_cache.h"
14 #include "armv8_dpm.h"
101 /* Pseudo registers defined by GDB to remove the pauth signature. */
102 ARMV8_PAUTH_DMASK
= 77,
103 ARMV8_PAUTH_CMASK
= 78,
108 enum run_control_op
{
109 ARMV8_RUNCONTROL_UNKNOWN
= 0,
110 ARMV8_RUNCONTROL_RESUME
= 1,
111 ARMV8_RUNCONTROL_HALT
= 2,
112 ARMV8_RUNCONTROL_STEP
= 3,
115 #define ARMV8_COMMON_MAGIC 0x0A450AAAU
117 /* VA to PA translation operations opc2 values*/
126 /* L210/L220 cache controller support */
127 struct armv8_l2x_cache
{
132 struct armv8_cachesize
{
134 /* cache dimensioning */
136 uint32_t associativity
;
139 /* info for set way operation on cache */
141 uint32_t index_shift
;
146 /* information about one architecture cache at any level */
147 struct armv8_arch_cache
{
148 int ctype
; /* cache type, CLIDR encoding */
149 struct armv8_cachesize d_u_size
; /* data cache */
150 struct armv8_cachesize i_size
; /* instruction cache */
153 struct armv8_cache_common
{
158 struct armv8_arch_cache arch
[6]; /* cache info, L1 - L7 */
160 int d_u_cache_enabled
;
162 /* l2 external unified cache if some */
164 int (*flush_all_data_cache
)(struct target
*target
);
165 int (*display_cache_info
)(struct command_invocation
*cmd
,
166 struct armv8_cache_common
*armv8_cache
);
169 struct armv8_mmu_common
{
170 /* following field mmu working way */
171 int32_t ttbr1_used
; /* -1 not initialized, 0 no ttbr1 1 ttbr1 used and */
172 uint64_t ttbr0_mask
;/* masked to be used */
174 uint32_t ttbcr
; /* cache for ttbcr register */
175 uint32_t ttbr_mask
[2];
176 uint32_t ttbr_range
[2];
178 int (*read_physical_memory
)(struct target
*target
, target_addr_t address
,
179 uint32_t size
, uint32_t count
, uint8_t *buffer
);
180 struct armv8_cache_common armv8_cache
;
181 uint32_t mmu_enabled
;
184 struct armv8_common
{
185 unsigned int common_magic
;
188 struct reg_cache
*core_cache
;
190 /* Core Debug Unit */
192 target_addr_t debug_base
;
193 struct adiv5_ap
*debug_ap
;
195 const uint32_t *opcodes
;
198 uint8_t multi_processor_system
;
202 /* armv8 aarch64 need below information for page translation */
209 struct armv8_mmu_common armv8_mmu
;
213 /* True if OpenOCD provides pointer auth related info to GDB */
216 /* last run-control command issued to this target (resume, halt, step) */
217 enum run_control_op last_run_control_op
;
219 /* Direct processor core register read and writes */
220 int (*read_reg_u64
)(struct armv8_common
*armv8
, int num
, uint64_t *value
);
221 int (*write_reg_u64
)(struct armv8_common
*armv8
, int num
, uint64_t value
);
223 /* SIMD/FPU registers read/write interface */
224 int (*read_reg_u128
)(struct armv8_common
*armv8
, int num
,
225 uint64_t *lvalue
, uint64_t *hvalue
);
226 int (*write_reg_u128
)(struct armv8_common
*armv8
, int num
,
227 uint64_t lvalue
, uint64_t hvalue
);
229 int (*examine_debug_reason
)(struct target
*target
);
230 int (*post_debug_entry
)(struct target
*target
);
232 void (*pre_restore_context
)(struct target
*target
);
235 static inline struct armv8_common
*
236 target_to_armv8(struct target
*target
)
238 return container_of(target
->arch_info
, struct armv8_common
, arm
);
241 static inline bool is_armv8(struct armv8_common
*armv8
)
243 return armv8
->common_magic
== ARMV8_COMMON_MAGIC
;
246 /* register offsets from armv8.debug_base */
247 #define CPUV8_DBG_MAINID0 0xD00
248 #define CPUV8_DBG_CPUFEATURE0 0xD20
249 #define CPUV8_DBG_DBGFEATURE0 0xD28
250 #define CPUV8_DBG_MEMFEATURE0 0xD38
252 #define CPUV8_DBG_LOCKACCESS 0xFB0
253 #define CPUV8_DBG_LOCKSTATUS 0xFB4
255 #define CPUV8_DBG_EDESR 0x20
256 #define CPUV8_DBG_EDECR 0x24
257 #define CPUV8_DBG_EDWAR0 0x30
258 #define CPUV8_DBG_EDWAR1 0x34
259 #define CPUV8_DBG_DSCR 0x088
260 #define CPUV8_DBG_DRCR 0x090
261 #define CPUV8_DBG_ECCR 0x098
262 #define CPUV8_DBG_PRCR 0x310
263 #define CPUV8_DBG_PRSR 0x314
265 #define CPUV8_DBG_DTRRX 0x080
266 #define CPUV8_DBG_ITR 0x084
267 #define CPUV8_DBG_SCR 0x088
268 #define CPUV8_DBG_DTRTX 0x08c
270 #define CPUV8_DBG_BVR_BASE 0x400
271 #define CPUV8_DBG_BCR_BASE 0x408
272 #define CPUV8_DBG_WVR_BASE 0x800
273 #define CPUV8_DBG_WCR_BASE 0x808
274 #define CPUV8_DBG_VCR 0x01C
276 #define CPUV8_DBG_OSLAR 0x300
278 #define CPUV8_DBG_AUTHSTATUS 0xFB8
280 #define PAGE_SIZE_4KB 0x1000
281 #define PAGE_SIZE_4KB_LEVEL0_BITS 39
282 #define PAGE_SIZE_4KB_LEVEL1_BITS 30
283 #define PAGE_SIZE_4KB_LEVEL2_BITS 21
284 #define PAGE_SIZE_4KB_LEVEL3_BITS 12
286 #define PAGE_SIZE_4KB_LEVEL0_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL0_BITS)
287 #define PAGE_SIZE_4KB_LEVEL1_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL1_BITS)
288 #define PAGE_SIZE_4KB_LEVEL2_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL2_BITS)
289 #define PAGE_SIZE_4KB_LEVEL3_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL3_BITS)
291 #define PAGE_SIZE_4KB_TRBBASE_MASK 0xFFFFFFFFF000
293 int armv8_arch_state(struct target
*target
);
294 int armv8_read_mpidr(struct armv8_common
*armv8
);
295 int armv8_identify_cache(struct armv8_common
*armv8
);
296 int armv8_init_arch_info(struct target
*target
, struct armv8_common
*armv8
);
297 int armv8_mmu_translate_va_pa(struct target
*target
, target_addr_t va
,
298 target_addr_t
*val
, int meminfo
);
299 int armv8_mmu_translate_va(struct target
*target
, target_addr_t va
, target_addr_t
*val
);
301 int armv8_handle_cache_info_command(struct command_invocation
*cmd
,
302 struct armv8_cache_common
*armv8_cache
);
304 void armv8_set_cpsr(struct arm
*arm
, uint32_t cpsr
);
306 static inline unsigned int armv8_curel_from_core_mode(enum arm_mode core_mode
)
313 case ARM_MODE_ABT
: /* FIXME: EL3? */
314 case ARM_MODE_IRQ
: /* FIXME: EL3? */
315 case ARM_MODE_FIQ
: /* FIXME: EL3? */
316 case ARM_MODE_UND
: /* FIXME: EL3? */
317 case ARM_MODE_SYS
: /* FIXME: EL3? */
319 /* case ARM_MODE_HYP:
324 /* all Aarch64 modes */
326 return (core_mode
>> 2) & 3;
330 const char *armv8_mode_name(unsigned psr_mode
);
331 void armv8_select_reg_access(struct armv8_common
*armv8
, bool is_aarch64
);
332 int armv8_set_dbgreg_bits(struct armv8_common
*armv8
, unsigned int reg
, unsigned long mask
, unsigned long value
);
334 extern void armv8_free_reg_cache(struct target
*target
);
336 extern const struct command_registration armv8_command_handlers
[];
338 #endif /* OPENOCD_TARGET_ARMV8_H */