OpenOCD
armv7a.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
3 /***************************************************************************
4  * Copyright (C) 2009 by David Brownell *
5  ***************************************************************************/
6 
7 #ifndef OPENOCD_TARGET_ARMV7A_H
8 #define OPENOCD_TARGET_ARMV7A_H
9 
10 #include "arm_adi_v5.h"
11 #include "armv7a_cache.h"
12 #include "arm.h"
13 #include "armv4_5_mmu.h"
14 #include "armv4_5_cache.h"
15 #include "arm_dpm.h"
16 
17 enum {
18  ARM_PC = 15,
19  ARM_CPSR = 16
20 };
21 
22 #define ARMV7_COMMON_MAGIC 0x0A450999U
23 
24 /* VA to PA translation operations opc2 values*/
25 #define V2PCWPR 0
26 #define V2PCWPW 1
27 #define V2PCWUR 2
28 #define V2PCWUW 3
29 #define V2POWPR 4
30 #define V2POWPW 5
31 #define V2POWUR 6
32 #define V2POWUW 7
33 /* L210/L220 cache controller support */
35  uint32_t base;
36  uint32_t way;
37 };
38 
40  /* cache dimensioning */
41  uint32_t linelen;
42  uint32_t associativity;
43  uint32_t nsets;
44  uint32_t cachesize;
45  /* info for set way operation on cache */
46  uint32_t index;
47  uint32_t index_shift;
48  uint32_t way;
49  uint32_t way_shift;
50 };
51 
52 /* information about one architecture cache at any level */
54  int ctype; /* cache type, CLIDR encoding */
55  struct armv7a_cachesize d_u_size; /* data cache */
56  struct armv7a_cachesize i_size; /* instruction cache */
57 };
58 
59 /* common cache information */
61  int info; /* -1 invalid, else valid */
62  int loc; /* level of coherency */
63  uint32_t dminline; /* minimum d-cache linelen */
64  uint32_t iminline; /* minimum i-cache linelen */
65  struct armv7a_arch_cache arch[6]; /* cache info, L1 - L7 */
68  /* outer unified cache if some */
69  void *outer_cache;
71 };
72 
74  /* following field mmu working way */
75  int32_t cached; /* 0: not initialized, 1: initialized */
76  uint32_t ttbcr; /* cache for ttbcr register */
77  uint32_t ttbr[2];
78  uint32_t ttbr_mask[2];
79  uint32_t ttbr_range[2];
80 
81  int (*read_physical_memory)(struct target *target, target_addr_t address, uint32_t size,
82  uint32_t count, uint8_t *buffer);
84  uint32_t mmu_enabled;
85 };
86 
87 struct armv7a_common {
88  unsigned int common_magic;
89 
90  struct arm arm;
92 
93  /* Core Debug Unit */
94  struct arm_dpm dpm;
96  struct adiv5_ap *debug_ap;
97  /* mdir */
100  uint8_t level2_id;
101  uint8_t cluster_id;
102  uint8_t cpu_id;
103  bool is_armv7r;
104  uint32_t rev;
105  uint32_t partnum;
106  uint32_t arch;
107  uint32_t variant;
108  uint32_t implementor;
109 
110  /* cache specific to V7 Memory Management Unit compatible with v4_5*/
112 
114  int (*post_debug_entry)(struct target *target);
115 
117 };
118 
119 static inline struct armv7a_common *
121 {
122  return container_of(target->arch_info, struct armv7a_common, arm);
123 }
124 
125 static inline bool is_armv7a(struct armv7a_common *armv7a)
126 {
127  return armv7a->common_magic == ARMV7_COMMON_MAGIC;
128 }
129 
130 
131 /* register offsets from armv7a.debug_base */
132 
133 /* See ARMv7a arch spec section C10.2 */
134 #define CPUDBG_DIDR 0x000
135 
136 /* See ARMv7a arch spec section C10.3 */
137 #define CPUDBG_WFAR 0x018
138 /* PCSR at 0x084 -or- 0x0a0 -or- both ... based on flags in DIDR */
139 #define CPUDBG_DSCR 0x088
140 #define CPUDBG_DRCR 0x090
141 #define CPUDBG_PRCR 0x310
142 #define CPUDBG_PRSR 0x314
143 
144 /* See ARMv7a arch spec section C10.4 */
145 #define CPUDBG_DTRRX 0x080
146 #define CPUDBG_ITR 0x084
147 #define CPUDBG_DTRTX 0x08c
148 
149 /* See ARMv7a arch spec section C10.5 */
150 #define CPUDBG_BVR_BASE 0x100
151 #define CPUDBG_BCR_BASE 0x140
152 #define CPUDBG_WVR_BASE 0x180
153 #define CPUDBG_WCR_BASE 0x1C0
154 #define CPUDBG_VCR 0x01C
155 
156 /* See ARMv7a arch spec section C10.6 */
157 #define CPUDBG_OSLAR 0x300
158 #define CPUDBG_OSLSR 0x304
159 #define CPUDBG_OSSRR 0x308
160 #define CPUDBG_ECR 0x024
161 
162 /* See ARMv7a arch spec section C10.7 */
163 #define CPUDBG_DSCCR 0x028
164 #define CPUDBG_DSMCR 0x02C
165 
166 /* See ARMv7a arch spec section C10.8 */
167 #define CPUDBG_AUTHSTATUS 0xFB8
168 
169 /* See ARMv7a arch spec DDI 0406C C11.10 */
170 #define CPUDBG_ID_PFR1 0xD24
171 
172 /* Masks for Vector Catch register */
173 #define DBG_VCR_FIQ_MASK ((1 << 31) | (1 << 7))
174 #define DBG_VCR_IRQ_MASK ((1 << 30) | (1 << 6))
175 #define DBG_VCR_DATA_ABORT_MASK ((1 << 28) | (1 << 4))
176 #define DBG_VCR_PREF_ABORT_MASK ((1 << 27) | (1 << 3))
177 #define DBG_VCR_SVC_MASK ((1 << 26) | (1 << 2))
178 
179 /* Masks for Multiprocessor Affinity Register */
180 #define MPIDR_MP_EXT (1UL << 31)
181 
182 int armv7a_arch_state(struct target *target);
183 int armv7a_identify_cache(struct target *target);
184 int armv7a_init_arch_info(struct target *target, struct armv7a_common *armv7a);
185 
187  struct armv7a_cache_common *armv7a_cache);
188 int armv7a_read_ttbcr(struct target *target);
189 
190 extern const struct command_registration armv7a_command_handlers[];
191 
192 #endif /* OPENOCD_TARGET_ARMV7A_H */
Holds the interface to ARM cores.
This defines formats and data structures used to talk to ADIv5 entities.
This is the interface to the Debug Programmers Model for ARMv6 and ARMv7 processors.
int armv7a_handle_cache_info_command(struct command_invocation *cmd, struct armv7a_cache_common *armv7a_cache)
Definition: armv7a.c:230
int armv7a_read_ttbcr(struct target *target)
Definition: armv7a.c:118
int armv7a_arch_state(struct target *target)
Definition: armv7a.c:531
#define ARMV7_COMMON_MAGIC
Definition: armv7a.h:22
const struct command_registration armv7a_command_handlers[]
Definition: armv7a.c:587
static struct armv7a_common * target_to_armv7a(struct target *target)
Definition: armv7a.h:120
int armv7a_init_arch_info(struct target *target, struct armv7a_common *armv7a)
Definition: armv7a.c:515
@ ARM_PC
Definition: armv7a.h:18
@ ARM_CPSR
Definition: armv7a.h:19
static bool is_armv7a(struct armv7a_common *armv7a)
Definition: armv7a.h:125
int armv7a_identify_cache(struct target *target)
Definition: armv7a.c:364
struct target * target
Definition: rtt/rtt.c:26
size_t size
Size of the control block search area.
Definition: rtt/rtt.c:30
This represents an ARM Debug Interface (v5) Access Port (AP).
Definition: arm_adi_v5.h:250
This wraps an implementation of DPM primitives.
Definition: arm_dpm.h:47
Represents a generic ARM core, with standard application registers.
Definition: arm.h:175
struct armv7a_cachesize i_size
Definition: armv7a.h:56
struct armv7a_cachesize d_u_size
Definition: armv7a.h:55
int(* flush_all_data_cache)(struct target *target)
Definition: armv7a.h:70
uint32_t dminline
Definition: armv7a.h:63
struct armv7a_arch_cache arch[6]
Definition: armv7a.h:65
uint32_t iminline
Definition: armv7a.h:64
void * outer_cache
Definition: armv7a.h:69
int d_u_cache_enabled
Definition: armv7a.h:67
uint32_t linelen
Definition: armv7a.h:41
uint32_t way
Definition: armv7a.h:48
uint32_t index
Definition: armv7a.h:46
uint32_t index_shift
Definition: armv7a.h:47
uint32_t way_shift
Definition: armv7a.h:49
uint32_t nsets
Definition: armv7a.h:43
uint32_t associativity
Definition: armv7a.h:42
uint32_t cachesize
Definition: armv7a.h:44
bool is_armv7r
Definition: armv7a.h:103
int(* post_debug_entry)(struct target *target)
Definition: armv7a.h:114
uint32_t arch
Definition: armv7a.h:106
uint8_t cpu_id
Definition: armv7a.h:102
uint8_t multi_threading_processor
Definition: armv7a.h:99
int(* examine_debug_reason)(struct target *target)
Definition: armv7a.h:113
uint8_t multi_processor_system
Definition: armv7a.h:98
uint8_t level2_id
Definition: armv7a.h:100
target_addr_t debug_base
Definition: armv7a.h:95
uint32_t rev
Definition: armv7a.h:104
uint32_t variant
Definition: armv7a.h:107
struct armv7a_mmu_common armv7a_mmu
Definition: armv7a.h:111
struct arm_dpm dpm
Definition: armv7a.h:94
struct adiv5_ap * debug_ap
Definition: armv7a.h:96
uint8_t cluster_id
Definition: armv7a.h:101
void(* pre_restore_context)(struct target *target)
Definition: armv7a.h:116
uint32_t partnum
Definition: armv7a.h:105
uint32_t implementor
Definition: armv7a.h:108
struct reg_cache * core_cache
Definition: armv7a.h:91
unsigned int common_magic
Definition: armv7a.h:88
uint32_t base
Definition: armv7a.h:35
uint32_t way
Definition: armv7a.h:36
uint32_t ttbr_range[2]
Definition: armv7a.h:79
struct armv7a_cache_common armv7a_cache
Definition: armv7a.h:83
int32_t cached
Definition: armv7a.h:75
int(* read_physical_memory)(struct target *target, target_addr_t address, uint32_t size, uint32_t count, uint8_t *buffer)
Definition: armv7a.h:81
uint32_t ttbr[2]
Definition: armv7a.h:77
uint32_t ttbr_mask[2]
Definition: armv7a.h:78
uint32_t ttbcr
Definition: armv7a.h:76
uint32_t mmu_enabled
Definition: armv7a.h:84
When run_command is called, a new instance will be created on the stack, filled with the proper value...
Definition: command.h:76
Definition: target.h:116
void * arch_info
Definition: target.h:164
uint64_t target_addr_t
Definition: types.h:335
#define container_of(ptr, type, member)
Cast a member of a structure out to the containing structure.
Definition: types.h:68
uint8_t cmd
Definition: vdebug.c:1
uint8_t count[4]
Definition: vdebug.c:22