aarch64: run control rework
[openocd.git] / src / target / armv8.h
1 /***************************************************************************
2 * Copyright (C) 2015 by David Ung *
3 * *
4 * This program is free software; you can redistribute it and/or modify *
5 * it under the terms of the GNU General Public License as published by *
6 * the Free Software Foundation; either version 2 of the License, or *
7 * (at your option) any later version. *
8 * *
9 * This program is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
12 * GNU General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU General Public License *
15 * along with this program; if not, write to the *
16 * Free Software Foundation, Inc., *
17 ***************************************************************************/
18
19 #ifndef OPENOCD_TARGET_ARMV8_H
20 #define OPENOCD_TARGET_ARMV8_H
21
22 #include "arm_adi_v5.h"
23 #include "arm.h"
24 #include "armv4_5_mmu.h"
25 #include "armv4_5_cache.h"
26 #include "armv8_dpm.h"
27 #include "arm_cti.h"
28
29 enum {
30 ARMV8_R0 = 0,
31 ARMV8_R1,
32 ARMV8_R2,
33 ARMV8_R3,
34 ARMV8_R4,
35 ARMV8_R5,
36 ARMV8_R6,
37 ARMV8_R7,
38 ARMV8_R8,
39 ARMV8_R9,
40 ARMV8_R10,
41 ARMV8_R11,
42 ARMV8_R12,
43 ARMV8_R13,
44 ARMV8_R14,
45 ARMV8_R15,
46 ARMV8_R16,
47 ARMV8_R17,
48 ARMV8_R18,
49 ARMV8_R19,
50 ARMV8_R20,
51 ARMV8_R21,
52 ARMV8_R22,
53 ARMV8_R23,
54 ARMV8_R24,
55 ARMV8_R25,
56 ARMV8_R26,
57 ARMV8_R27,
58 ARMV8_R28,
59 ARMV8_R29,
60 ARMV8_R30,
61
62 ARMV8_SP = 31,
63 ARMV8_PC = 32,
64 ARMV8_xPSR = 33,
65
66 ARMV8_ELR_EL1 = 34,
67 ARMV8_ESR_EL1 = 35,
68 ARMV8_SPSR_EL1 = 36,
69
70 ARMV8_ELR_EL2 = 37,
71 ARMV8_ESR_EL2 = 38,
72 ARMV8_SPSR_EL2 = 39,
73
74 ARMV8_ELR_EL3 = 40,
75 ARMV8_ESR_EL3 = 41,
76 ARMV8_SPSR_EL3 = 42,
77
78 ARMV8_LAST_REG,
79 };
80
81
82 #define ARMV8_COMMON_MAGIC 0x0A450AAA
83
84 /* VA to PA translation operations opc2 values*/
85 #define V2PCWPR 0
86 #define V2PCWPW 1
87 #define V2PCWUR 2
88 #define V2PCWUW 3
89 #define V2POWPR 4
90 #define V2POWPW 5
91 #define V2POWUR 6
92 #define V2POWUW 7
93 /* L210/L220 cache controller support */
94 struct armv8_l2x_cache {
95 uint32_t base;
96 uint32_t way;
97 };
98
99 struct armv8_cachesize {
100 uint32_t level_num;
101 /* cache dimensionning */
102 uint32_t linelen;
103 uint32_t associativity;
104 uint32_t nsets;
105 uint32_t cachesize;
106 /* info for set way operation on cache */
107 uint32_t index;
108 uint32_t index_shift;
109 uint32_t way;
110 uint32_t way_shift;
111 };
112
113 /* information about one architecture cache at any level */
114 struct armv8_arch_cache {
115 int ctype; /* cache type, CLIDR encoding */
116 struct armv8_cachesize d_u_size; /* data cache */
117 struct armv8_cachesize i_size; /* instruction cache */
118 };
119
120 struct armv8_cache_common {
121 int info;
122 int loc;
123 uint32_t iminline;
124 uint32_t dminline;
125 struct armv8_arch_cache arch[6]; /* cache info, L1 - L7 */
126 int i_cache_enabled;
127 int d_u_cache_enabled;
128
129 /* l2 external unified cache if some */
130 void *l2_cache;
131 int (*flush_all_data_cache)(struct target *target);
132 int (*display_cache_info)(struct command_context *cmd_ctx,
133 struct armv8_cache_common *armv8_cache);
134 };
135
136 struct armv8_mmu_common {
137 /* following field mmu working way */
138 int32_t ttbr1_used; /* -1 not initialized, 0 no ttbr1 1 ttbr1 used and */
139 uint64_t ttbr0_mask;/* masked to be used */
140
141 uint32_t ttbcr; /* cache for ttbcr register */
142 uint32_t ttbr_mask[2];
143 uint32_t ttbr_range[2];
144
145 int (*read_physical_memory)(struct target *target, target_addr_t address,
146 uint32_t size, uint32_t count, uint8_t *buffer);
147 struct armv8_cache_common armv8_cache;
148 uint32_t mmu_enabled;
149 };
150
151 struct armv8_common {
152 struct arm arm;
153 int common_magic;
154 struct reg_cache *core_cache;
155
156 /* Core Debug Unit */
157 struct arm_dpm dpm;
158 uint32_t debug_base;
159 struct adiv5_ap *debug_ap;
160
161 const uint32_t *opcodes;
162
163 /* mdir */
164 uint8_t multi_processor_system;
165 uint8_t cluster_id;
166 uint8_t cpu_id;
167
168 /* armv8 aarch64 need below information for page translation */
169 uint8_t va_size;
170 uint8_t pa_size;
171 uint32_t page_size;
172 uint64_t ttbr_base;
173
174 struct armv8_mmu_common armv8_mmu;
175
176 struct arm_cti *cti;
177
178 /* Direct processor core register read and writes */
179 int (*read_reg_u64)(struct armv8_common *armv8, int num, uint64_t *value);
180 int (*write_reg_u64)(struct armv8_common *armv8, int num, uint64_t value);
181
182 int (*examine_debug_reason)(struct target *target);
183 int (*post_debug_entry)(struct target *target);
184
185 void (*pre_restore_context)(struct target *target);
186 };
187
188 static inline struct armv8_common *
189 target_to_armv8(struct target *target)
190 {
191 return container_of(target->arch_info, struct armv8_common, arm);
192 }
193
194 /* register offsets from armv8.debug_base */
195 #define CPUV8_DBG_MAINID0 0xD00
196 #define CPUV8_DBG_CPUFEATURE0 0xD20
197 #define CPUV8_DBG_DBGFEATURE0 0xD28
198 #define CPUV8_DBG_MEMFEATURE0 0xD38
199
200 #define CPUV8_DBG_LOCKACCESS 0xFB0
201 #define CPUV8_DBG_LOCKSTATUS 0xFB4
202
203 #define CPUV8_DBG_EDESR 0x20
204 #define CPUV8_DBG_EDECR 0x24
205 #define CPUV8_DBG_WFAR0 0x30
206 #define CPUV8_DBG_WFAR1 0x34
207 #define CPUV8_DBG_DSCR 0x088
208 #define CPUV8_DBG_DRCR 0x090
209 #define CPUV8_DBG_PRCR 0x310
210 #define CPUV8_DBG_PRSR 0x314
211
212 #define CPUV8_DBG_DTRRX 0x080
213 #define CPUV8_DBG_ITR 0x084
214 #define CPUV8_DBG_SCR 0x088
215 #define CPUV8_DBG_DTRTX 0x08c
216
217 #define CPUV8_DBG_BVR_BASE 0x400
218 #define CPUV8_DBG_BCR_BASE 0x408
219 #define CPUV8_DBG_WVR_BASE 0x800
220 #define CPUV8_DBG_WCR_BASE 0x808
221 #define CPUV8_DBG_VCR 0x01C
222
223 #define CPUV8_DBG_OSLAR 0x300
224
225 #define CPUV8_DBG_AUTHSTATUS 0xFB8
226
227 #define PAGE_SIZE_4KB 0x1000
228 #define PAGE_SIZE_4KB_LEVEL0_BITS 39
229 #define PAGE_SIZE_4KB_LEVEL1_BITS 30
230 #define PAGE_SIZE_4KB_LEVEL2_BITS 21
231 #define PAGE_SIZE_4KB_LEVEL3_BITS 12
232
233 #define PAGE_SIZE_4KB_LEVEL0_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL0_BITS)
234 #define PAGE_SIZE_4KB_LEVEL1_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL1_BITS)
235 #define PAGE_SIZE_4KB_LEVEL2_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL2_BITS)
236 #define PAGE_SIZE_4KB_LEVEL3_MASK ((0x1FFULL) << PAGE_SIZE_4KB_LEVEL3_BITS)
237
238 #define PAGE_SIZE_4KB_TRBBASE_MASK 0xFFFFFFFFF000
239
240 int armv8_arch_state(struct target *target);
241 int armv8_read_mpidr(struct armv8_common *armv8);
242 int armv8_identify_cache(struct armv8_common *armv8);
243 int armv8_init_arch_info(struct target *target, struct armv8_common *armv8);
244 int armv8_mmu_translate_va_pa(struct target *target, target_addr_t va,
245 target_addr_t *val, int meminfo);
246 int armv8_mmu_translate_va(struct target *target, target_addr_t va, target_addr_t *val);
247
248 int armv8_handle_cache_info_command(struct command_context *cmd_ctx,
249 struct armv8_cache_common *armv8_cache);
250
251 void armv8_set_cpsr(struct arm *arm, uint32_t cpsr);
252
253 static inline unsigned int armv8_curel_from_core_mode(enum arm_mode core_mode)
254 {
255 switch (core_mode) {
256 /* Aarch32 modes */
257 case ARM_MODE_USR:
258 return 0;
259 case ARM_MODE_SVC:
260 case ARM_MODE_ABT: /* FIXME: EL3? */
261 case ARM_MODE_IRQ: /* FIXME: EL3? */
262 case ARM_MODE_FIQ: /* FIXME: EL3? */
263 case ARM_MODE_UND: /* FIXME: EL3? */
264 case ARM_MODE_SYS: /* FIXME: EL3? */
265 return 1;
266 /* case ARM_MODE_HYP:
267 * return 2;
268 */
269 case ARM_MODE_MON:
270 return 3;
271 /* all Aarch64 modes */
272 default:
273 return (core_mode >> 6) & 3;
274 }
275 }
276
277 void armv8_select_reg_access(struct armv8_common *armv8, bool is_aarch64);
278 int armv8_set_dbgreg_bits(struct armv8_common *armv8, unsigned int reg, unsigned long mask, unsigned long value);
279
280 extern const struct command_registration armv8_command_handlers[];
281
282 #endif /* OPENOCD_TARGET_ARMV8_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)