]>
Commit | Line | Data |
---|---|---|
2c0262af FB |
1 | /* |
2 | * ARM virtual CPU header | |
5fafdf24 | 3 | * |
2c0262af FB |
4 | * Copyright (c) 2003 Fabrice Bellard |
5 | * | |
6 | * This library is free software; you can redistribute it and/or | |
7 | * modify it under the terms of the GNU Lesser General Public | |
8 | * License as published by the Free Software Foundation; either | |
9 | * version 2 of the License, or (at your option) any later version. | |
10 | * | |
11 | * This library is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 | * Lesser General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU Lesser General Public | |
8167ee88 | 17 | * License along with this library; if not, see <http://www.gnu.org/licenses/>. |
2c0262af FB |
18 | */ |
19 | #ifndef CPU_ARM_H | |
20 | #define CPU_ARM_H | |
21 | ||
3cf1e035 FB |
22 | #define TARGET_LONG_BITS 32 |
23 | ||
9042c0e2 TS |
24 | #define ELF_MACHINE EM_ARM |
25 | ||
9349b4f9 | 26 | #define CPUArchState struct CPUARMState |
c2764719 | 27 | |
9a78eead SW |
28 | #include "config.h" |
29 | #include "qemu-common.h" | |
2c0262af FB |
30 | #include "cpu-defs.h" |
31 | ||
53cd6637 FB |
32 | #include "softfloat.h" |
33 | ||
1fddef4b FB |
34 | #define TARGET_HAS_ICE 1 |
35 | ||
b8a9e8f1 FB |
36 | #define EXCP_UDEF 1 /* undefined instruction */ |
37 | #define EXCP_SWI 2 /* software interrupt */ | |
38 | #define EXCP_PREFETCH_ABORT 3 | |
39 | #define EXCP_DATA_ABORT 4 | |
b5ff1b31 FB |
40 | #define EXCP_IRQ 5 |
41 | #define EXCP_FIQ 6 | |
06c949e6 | 42 | #define EXCP_BKPT 7 |
9ee6e8bb | 43 | #define EXCP_EXCEPTION_EXIT 8 /* Return from v7M exception. */ |
fbb4a2e3 | 44 | #define EXCP_KERNEL_TRAP 9 /* Jumped to kernel code page. */ |
426f5abc | 45 | #define EXCP_STREX 10 |
9ee6e8bb PB |
46 | |
47 | #define ARMV7M_EXCP_RESET 1 | |
48 | #define ARMV7M_EXCP_NMI 2 | |
49 | #define ARMV7M_EXCP_HARD 3 | |
50 | #define ARMV7M_EXCP_MEM 4 | |
51 | #define ARMV7M_EXCP_BUS 5 | |
52 | #define ARMV7M_EXCP_USAGE 6 | |
53 | #define ARMV7M_EXCP_SVC 11 | |
54 | #define ARMV7M_EXCP_DEBUG 12 | |
55 | #define ARMV7M_EXCP_PENDSV 14 | |
56 | #define ARMV7M_EXCP_SYSTICK 15 | |
2c0262af | 57 | |
403946c0 RH |
58 | /* ARM-specific interrupt pending bits. */ |
59 | #define CPU_INTERRUPT_FIQ CPU_INTERRUPT_TGT_EXT_1 | |
60 | ||
61 | ||
c1713132 AZ |
62 | typedef void ARMWriteCPFunc(void *opaque, int cp_info, |
63 | int srcreg, int operand, uint32_t value); | |
64 | typedef uint32_t ARMReadCPFunc(void *opaque, int cp_info, | |
65 | int dstreg, int operand); | |
66 | ||
f93eb9ff AZ |
67 | struct arm_boot_info; |
68 | ||
6ebbf390 JM |
69 | #define NB_MMU_MODES 2 |
70 | ||
b7bcbe95 FB |
71 | /* We currently assume float and double are IEEE single and double |
72 | precision respectively. | |
73 | Doing runtime conversions is tricky because VFP registers may contain | |
74 | integer values (eg. as the result of a FTOSI instruction). | |
8e96005d FB |
75 | s<2n> maps to the least significant half of d<n> |
76 | s<2n+1> maps to the most significant half of d<n> | |
77 | */ | |
b7bcbe95 | 78 | |
2c0262af | 79 | typedef struct CPUARMState { |
b5ff1b31 | 80 | /* Regs for current mode. */ |
2c0262af | 81 | uint32_t regs[16]; |
b5ff1b31 | 82 | /* Frequently accessed CPSR bits are stored separately for efficiently. |
d37aca66 | 83 | This contains all the other bits. Use cpsr_{read,write} to access |
b5ff1b31 FB |
84 | the whole CPSR. */ |
85 | uint32_t uncached_cpsr; | |
86 | uint32_t spsr; | |
87 | ||
88 | /* Banked registers. */ | |
89 | uint32_t banked_spsr[6]; | |
90 | uint32_t banked_r13[6]; | |
91 | uint32_t banked_r14[6]; | |
3b46e624 | 92 | |
b5ff1b31 FB |
93 | /* These hold r8-r12. */ |
94 | uint32_t usr_regs[5]; | |
95 | uint32_t fiq_regs[5]; | |
3b46e624 | 96 | |
2c0262af FB |
97 | /* cpsr flag cache for faster execution */ |
98 | uint32_t CF; /* 0 or 1 */ | |
99 | uint32_t VF; /* V is the bit 31. All other bits are undefined */ | |
6fbe23d5 PB |
100 | uint32_t NF; /* N is bit 31. All other bits are undefined. */ |
101 | uint32_t ZF; /* Z set if zero. */ | |
99c475ab | 102 | uint32_t QF; /* 0 or 1 */ |
9ee6e8bb | 103 | uint32_t GE; /* cpsr[19:16] */ |
b26eefb6 | 104 | uint32_t thumb; /* cpsr[5]. 0 = arm mode, 1 = thumb mode. */ |
9ee6e8bb | 105 | uint32_t condexec_bits; /* IT bits. cpsr[15:10,26:25]. */ |
2c0262af | 106 | |
b5ff1b31 FB |
107 | /* System control coprocessor (cp15) */ |
108 | struct { | |
40f137e1 | 109 | uint32_t c0_cpuid; |
c1713132 | 110 | uint32_t c0_cachetype; |
a49ea279 PB |
111 | uint32_t c0_ccsid[16]; /* Cache size. */ |
112 | uint32_t c0_clid; /* Cache level. */ | |
113 | uint32_t c0_cssel; /* Cache size selection. */ | |
9ee6e8bb PB |
114 | uint32_t c0_c1[8]; /* Feature registers. */ |
115 | uint32_t c0_c2[8]; /* Instruction set registers. */ | |
b5ff1b31 FB |
116 | uint32_t c1_sys; /* System control register. */ |
117 | uint32_t c1_coproc; /* Coprocessor access register. */ | |
610c3c8a | 118 | uint32_t c1_xscaleauxcr; /* XScale auxiliary control register. */ |
2be27624 | 119 | uint32_t c1_scr; /* secure config register. */ |
9ee6e8bb PB |
120 | uint32_t c2_base0; /* MMU translation table base 0. */ |
121 | uint32_t c2_base1; /* MMU translation table base 1. */ | |
b2fa1797 PB |
122 | uint32_t c2_control; /* MMU translation table base control. */ |
123 | uint32_t c2_mask; /* MMU translation table base selection mask. */ | |
124 | uint32_t c2_base_mask; /* MMU translation table base 0 mask. */ | |
ce819861 PB |
125 | uint32_t c2_data; /* MPU data cachable bits. */ |
126 | uint32_t c2_insn; /* MPU instruction cachable bits. */ | |
127 | uint32_t c3; /* MMU domain access control register | |
128 | MPU write buffer control. */ | |
b5ff1b31 FB |
129 | uint32_t c5_insn; /* Fault status registers. */ |
130 | uint32_t c5_data; | |
ce819861 | 131 | uint32_t c6_region[8]; /* MPU base/size registers. */ |
b5ff1b31 FB |
132 | uint32_t c6_insn; /* Fault address registers. */ |
133 | uint32_t c6_data; | |
f8bf8606 | 134 | uint32_t c7_par; /* Translation result. */ |
b5ff1b31 FB |
135 | uint32_t c9_insn; /* Cache lockdown registers. */ |
136 | uint32_t c9_data; | |
74594c9d PM |
137 | uint32_t c9_pmcr; /* performance monitor control register */ |
138 | uint32_t c9_pmcnten; /* perf monitor counter enables */ | |
139 | uint32_t c9_pmovsr; /* perf monitor overflow status */ | |
140 | uint32_t c9_pmxevtyper; /* perf monitor event type */ | |
141 | uint32_t c9_pmuserenr; /* perf monitor user enable */ | |
142 | uint32_t c9_pminten; /* perf monitor interrupt enables */ | |
b5ff1b31 FB |
143 | uint32_t c13_fcse; /* FCSE PID. */ |
144 | uint32_t c13_context; /* Context ID. */ | |
9ee6e8bb PB |
145 | uint32_t c13_tls1; /* User RW Thread register. */ |
146 | uint32_t c13_tls2; /* User RO Thread register. */ | |
147 | uint32_t c13_tls3; /* Privileged Thread register. */ | |
c1713132 | 148 | uint32_t c15_cpar; /* XScale Coprocessor Access Register */ |
c3d2689d AZ |
149 | uint32_t c15_ticonfig; /* TI925T configuration byte. */ |
150 | uint32_t c15_i_max; /* Maximum D-cache dirty line index. */ | |
151 | uint32_t c15_i_min; /* Minimum D-cache dirty line index. */ | |
152 | uint32_t c15_threadid; /* TI debugger thread-ID. */ | |
7da362d0 ML |
153 | uint32_t c15_config_base_address; /* SCU base address. */ |
154 | uint32_t c15_diagnostic; /* diagnostic register */ | |
155 | uint32_t c15_power_diagnostic; | |
156 | uint32_t c15_power_control; /* power control */ | |
b5ff1b31 | 157 | } cp15; |
40f137e1 | 158 | |
9ee6e8bb PB |
159 | struct { |
160 | uint32_t other_sp; | |
161 | uint32_t vecbase; | |
162 | uint32_t basepri; | |
163 | uint32_t control; | |
164 | int current_sp; | |
165 | int exception; | |
166 | int pending_exception; | |
9ee6e8bb PB |
167 | } v7m; |
168 | ||
fe1479c3 PB |
169 | /* Thumb-2 EE state. */ |
170 | uint32_t teecr; | |
171 | uint32_t teehbr; | |
172 | ||
40f137e1 PB |
173 | /* Internal CPU feature flags. */ |
174 | uint32_t features; | |
175 | ||
b7bcbe95 FB |
176 | /* VFP coprocessor state. */ |
177 | struct { | |
9ee6e8bb | 178 | float64 regs[32]; |
b7bcbe95 | 179 | |
40f137e1 | 180 | uint32_t xregs[16]; |
b7bcbe95 FB |
181 | /* We store these fpcsr fields separately for convenience. */ |
182 | int vec_len; | |
183 | int vec_stride; | |
184 | ||
9ee6e8bb PB |
185 | /* scratch space when Tn are not sufficient. */ |
186 | uint32_t scratch[8]; | |
3b46e624 | 187 | |
3a492f3a PM |
188 | /* fp_status is the "normal" fp status. standard_fp_status retains |
189 | * values corresponding to the ARM "Standard FPSCR Value", ie | |
190 | * default-NaN, flush-to-zero, round-to-nearest and is used by | |
191 | * any operations (generally Neon) which the architecture defines | |
192 | * as controlled by the standard FPSCR value rather than the FPSCR. | |
193 | * | |
194 | * To avoid having to transfer exception bits around, we simply | |
195 | * say that the FPSCR cumulative exception flags are the logical | |
196 | * OR of the flags in the two fp statuses. This relies on the | |
197 | * only thing which needs to read the exception flags being | |
198 | * an explicit FPSCR read. | |
199 | */ | |
53cd6637 | 200 | float_status fp_status; |
3a492f3a | 201 | float_status standard_fp_status; |
b7bcbe95 | 202 | } vfp; |
426f5abc PB |
203 | uint32_t exclusive_addr; |
204 | uint32_t exclusive_val; | |
205 | uint32_t exclusive_high; | |
9ee6e8bb | 206 | #if defined(CONFIG_USER_ONLY) |
426f5abc PB |
207 | uint32_t exclusive_test; |
208 | uint32_t exclusive_info; | |
9ee6e8bb | 209 | #endif |
b7bcbe95 | 210 | |
18c9b560 AZ |
211 | /* iwMMXt coprocessor state. */ |
212 | struct { | |
213 | uint64_t regs[16]; | |
214 | uint64_t val; | |
215 | ||
216 | uint32_t cregs[16]; | |
217 | } iwmmxt; | |
218 | ||
ce4defa0 PB |
219 | #if defined(CONFIG_USER_ONLY) |
220 | /* For usermode syscall translation. */ | |
221 | int eabi; | |
222 | #endif | |
223 | ||
a316d335 FB |
224 | CPU_COMMON |
225 | ||
9d551997 | 226 | /* These fields after the common ones so they are preserved on reset. */ |
9ba8c3f4 LM |
227 | |
228 | /* Coprocessor IO used by peripherals */ | |
229 | struct { | |
230 | ARMReadCPFunc *cp_read; | |
231 | ARMWriteCPFunc *cp_write; | |
232 | void *opaque; | |
233 | } cp[15]; | |
983fe826 | 234 | void *nvic; |
462a8bc6 | 235 | const struct arm_boot_info *boot_info; |
2c0262af FB |
236 | } CPUARMState; |
237 | ||
aaed909a | 238 | CPUARMState *cpu_arm_init(const char *cpu_model); |
b26eefb6 | 239 | void arm_translate_init(void); |
2c0262af | 240 | int cpu_arm_exec(CPUARMState *s); |
b5ff1b31 FB |
241 | void do_interrupt(CPUARMState *); |
242 | void switch_mode(CPUARMState *, int); | |
9ee6e8bb | 243 | uint32_t do_arm_semihosting(CPUARMState *env); |
b5ff1b31 | 244 | |
2c0262af FB |
245 | /* you can call this signal handler from your SIGBUS and SIGSEGV |
246 | signal handlers to inform the virtual CPU of exceptions. non zero | |
247 | is returned if the signal was handled by the virtual CPU. */ | |
5fafdf24 | 248 | int cpu_arm_signal_handler(int host_signum, void *pinfo, |
2c0262af | 249 | void *puc); |
84a031c6 | 250 | int cpu_arm_handle_mmu_fault (CPUARMState *env, target_ulong address, int rw, |
97b348e7 | 251 | int mmu_idx); |
0b5c1ce8 | 252 | #define cpu_handle_mmu_fault cpu_arm_handle_mmu_fault |
2c0262af | 253 | |
fbb4a2e3 PB |
254 | static inline void cpu_set_tls(CPUARMState *env, target_ulong newtls) |
255 | { | |
256 | env->cp15.c13_tls2 = newtls; | |
257 | } | |
9ee6e8bb | 258 | |
b5ff1b31 FB |
259 | #define CPSR_M (0x1f) |
260 | #define CPSR_T (1 << 5) | |
261 | #define CPSR_F (1 << 6) | |
262 | #define CPSR_I (1 << 7) | |
263 | #define CPSR_A (1 << 8) | |
264 | #define CPSR_E (1 << 9) | |
265 | #define CPSR_IT_2_7 (0xfc00) | |
9ee6e8bb PB |
266 | #define CPSR_GE (0xf << 16) |
267 | #define CPSR_RESERVED (0xf << 20) | |
b5ff1b31 FB |
268 | #define CPSR_J (1 << 24) |
269 | #define CPSR_IT_0_1 (3 << 25) | |
270 | #define CPSR_Q (1 << 27) | |
9ee6e8bb PB |
271 | #define CPSR_V (1 << 28) |
272 | #define CPSR_C (1 << 29) | |
273 | #define CPSR_Z (1 << 30) | |
274 | #define CPSR_N (1 << 31) | |
275 | #define CPSR_NZCV (CPSR_N | CPSR_Z | CPSR_C | CPSR_V) | |
276 | ||
277 | #define CPSR_IT (CPSR_IT_0_1 | CPSR_IT_2_7) | |
278 | #define CACHED_CPSR_BITS (CPSR_T | CPSR_GE | CPSR_IT | CPSR_Q | CPSR_NZCV) | |
279 | /* Bits writable in user mode. */ | |
280 | #define CPSR_USER (CPSR_NZCV | CPSR_Q | CPSR_GE) | |
281 | /* Execution state bits. MRS read as zero, MSR writes ignored. */ | |
282 | #define CPSR_EXEC (CPSR_T | CPSR_IT | CPSR_J) | |
b5ff1b31 | 283 | |
b5ff1b31 | 284 | /* Return the current CPSR value. */ |
2f4a40e5 AZ |
285 | uint32_t cpsr_read(CPUARMState *env); |
286 | /* Set the CPSR. Note that some bits of mask must be all-set or all-clear. */ | |
287 | void cpsr_write(CPUARMState *env, uint32_t val, uint32_t mask); | |
9ee6e8bb PB |
288 | |
289 | /* Return the current xPSR value. */ | |
290 | static inline uint32_t xpsr_read(CPUARMState *env) | |
291 | { | |
292 | int ZF; | |
6fbe23d5 PB |
293 | ZF = (env->ZF == 0); |
294 | return (env->NF & 0x80000000) | (ZF << 30) | |
9ee6e8bb PB |
295 | | (env->CF << 29) | ((env->VF & 0x80000000) >> 3) | (env->QF << 27) |
296 | | (env->thumb << 24) | ((env->condexec_bits & 3) << 25) | |
297 | | ((env->condexec_bits & 0xfc) << 8) | |
298 | | env->v7m.exception; | |
b5ff1b31 FB |
299 | } |
300 | ||
9ee6e8bb PB |
301 | /* Set the xPSR. Note that some bits of mask must be all-set or all-clear. */ |
302 | static inline void xpsr_write(CPUARMState *env, uint32_t val, uint32_t mask) | |
303 | { | |
9ee6e8bb | 304 | if (mask & CPSR_NZCV) { |
6fbe23d5 PB |
305 | env->ZF = (~val) & CPSR_Z; |
306 | env->NF = val; | |
9ee6e8bb PB |
307 | env->CF = (val >> 29) & 1; |
308 | env->VF = (val << 3) & 0x80000000; | |
309 | } | |
310 | if (mask & CPSR_Q) | |
311 | env->QF = ((val & CPSR_Q) != 0); | |
312 | if (mask & (1 << 24)) | |
313 | env->thumb = ((val & (1 << 24)) != 0); | |
314 | if (mask & CPSR_IT_0_1) { | |
315 | env->condexec_bits &= ~3; | |
316 | env->condexec_bits |= (val >> 25) & 3; | |
317 | } | |
318 | if (mask & CPSR_IT_2_7) { | |
319 | env->condexec_bits &= 3; | |
320 | env->condexec_bits |= (val >> 8) & 0xfc; | |
321 | } | |
322 | if (mask & 0x1ff) { | |
323 | env->v7m.exception = val & 0x1ff; | |
324 | } | |
325 | } | |
326 | ||
01653295 PM |
327 | /* Return the current FPSCR value. */ |
328 | uint32_t vfp_get_fpscr(CPUARMState *env); | |
329 | void vfp_set_fpscr(CPUARMState *env, uint32_t val); | |
330 | ||
b5ff1b31 FB |
331 | enum arm_cpu_mode { |
332 | ARM_CPU_MODE_USR = 0x10, | |
333 | ARM_CPU_MODE_FIQ = 0x11, | |
334 | ARM_CPU_MODE_IRQ = 0x12, | |
335 | ARM_CPU_MODE_SVC = 0x13, | |
336 | ARM_CPU_MODE_ABT = 0x17, | |
337 | ARM_CPU_MODE_UND = 0x1b, | |
338 | ARM_CPU_MODE_SYS = 0x1f | |
339 | }; | |
340 | ||
40f137e1 PB |
341 | /* VFP system registers. */ |
342 | #define ARM_VFP_FPSID 0 | |
343 | #define ARM_VFP_FPSCR 1 | |
9ee6e8bb PB |
344 | #define ARM_VFP_MVFR1 6 |
345 | #define ARM_VFP_MVFR0 7 | |
40f137e1 PB |
346 | #define ARM_VFP_FPEXC 8 |
347 | #define ARM_VFP_FPINST 9 | |
348 | #define ARM_VFP_FPINST2 10 | |
349 | ||
18c9b560 AZ |
350 | /* iwMMXt coprocessor control registers. */ |
351 | #define ARM_IWMMXT_wCID 0 | |
352 | #define ARM_IWMMXT_wCon 1 | |
353 | #define ARM_IWMMXT_wCSSF 2 | |
354 | #define ARM_IWMMXT_wCASF 3 | |
355 | #define ARM_IWMMXT_wCGR0 8 | |
356 | #define ARM_IWMMXT_wCGR1 9 | |
357 | #define ARM_IWMMXT_wCGR2 10 | |
358 | #define ARM_IWMMXT_wCGR3 11 | |
359 | ||
40f137e1 PB |
360 | enum arm_features { |
361 | ARM_FEATURE_VFP, | |
c1713132 AZ |
362 | ARM_FEATURE_AUXCR, /* ARM1026 Auxiliary control register. */ |
363 | ARM_FEATURE_XSCALE, /* Intel XScale extensions. */ | |
ce819861 | 364 | ARM_FEATURE_IWMMXT, /* Intel iwMMXt extension. */ |
9ee6e8bb PB |
365 | ARM_FEATURE_V6, |
366 | ARM_FEATURE_V6K, | |
367 | ARM_FEATURE_V7, | |
368 | ARM_FEATURE_THUMB2, | |
c3d2689d | 369 | ARM_FEATURE_MPU, /* Only has Memory Protection Unit, not full MMU. */ |
9ee6e8bb | 370 | ARM_FEATURE_VFP3, |
60011498 | 371 | ARM_FEATURE_VFP_FP16, |
9ee6e8bb | 372 | ARM_FEATURE_NEON, |
47789990 | 373 | ARM_FEATURE_THUMB_DIV, /* divide supported in Thumb encoding */ |
9ee6e8bb | 374 | ARM_FEATURE_M, /* Microcontroller profile. */ |
fe1479c3 | 375 | ARM_FEATURE_OMAPCP, /* OMAP specific CP15 ops handling. */ |
e1bbf446 | 376 | ARM_FEATURE_THUMB2EE, |
be5e7a76 DES |
377 | ARM_FEATURE_V7MP, /* v7 Multiprocessing Extensions */ |
378 | ARM_FEATURE_V4T, | |
379 | ARM_FEATURE_V5, | |
5bc95aa2 | 380 | ARM_FEATURE_STRONGARM, |
906879a9 | 381 | ARM_FEATURE_VAPA, /* cp15 VA to PA lookups */ |
b8b8ea05 | 382 | ARM_FEATURE_ARM_DIV, /* divide supported in ARM encoding */ |
da97f52c | 383 | ARM_FEATURE_VFP4, /* VFPv4 (implies that NEON is v2) */ |
0383ac00 | 384 | ARM_FEATURE_GENERIC_TIMER, |
40f137e1 PB |
385 | }; |
386 | ||
387 | static inline int arm_feature(CPUARMState *env, int feature) | |
388 | { | |
389 | return (env->features & (1u << feature)) != 0; | |
390 | } | |
391 | ||
9a78eead | 392 | void arm_cpu_list(FILE *f, fprintf_function cpu_fprintf); |
40f137e1 | 393 | |
9ee6e8bb PB |
394 | /* Interface between CPU and Interrupt controller. */ |
395 | void armv7m_nvic_set_pending(void *opaque, int irq); | |
396 | int armv7m_nvic_acknowledge_irq(void *opaque); | |
397 | void armv7m_nvic_complete_irq(void *opaque, int irq); | |
398 | ||
c1713132 AZ |
399 | void cpu_arm_set_cp_io(CPUARMState *env, int cpnum, |
400 | ARMReadCPFunc *cp_read, ARMWriteCPFunc *cp_write, | |
401 | void *opaque); | |
402 | ||
9ee6e8bb PB |
403 | /* Does the core conform to the the "MicroController" profile. e.g. Cortex-M3. |
404 | Note the M in older cores (eg. ARM7TDMI) stands for Multiply. These are | |
405 | conventional cores (ie. Application or Realtime profile). */ | |
406 | ||
407 | #define IS_M(env) arm_feature(env, ARM_FEATURE_M) | |
408 | #define ARM_CPUID(env) (env->cp15.c0_cpuid) | |
409 | ||
410 | #define ARM_CPUID_ARM1026 0x4106a262 | |
411 | #define ARM_CPUID_ARM926 0x41069265 | |
412 | #define ARM_CPUID_ARM946 0x41059461 | |
413 | #define ARM_CPUID_TI915T 0x54029152 | |
414 | #define ARM_CPUID_TI925T 0x54029252 | |
5bc95aa2 DES |
415 | #define ARM_CPUID_SA1100 0x4401A11B |
416 | #define ARM_CPUID_SA1110 0x6901B119 | |
9ee6e8bb PB |
417 | #define ARM_CPUID_PXA250 0x69052100 |
418 | #define ARM_CPUID_PXA255 0x69052d00 | |
419 | #define ARM_CPUID_PXA260 0x69052903 | |
420 | #define ARM_CPUID_PXA261 0x69052d05 | |
421 | #define ARM_CPUID_PXA262 0x69052d06 | |
422 | #define ARM_CPUID_PXA270 0x69054110 | |
423 | #define ARM_CPUID_PXA270_A0 0x69054110 | |
424 | #define ARM_CPUID_PXA270_A1 0x69054111 | |
425 | #define ARM_CPUID_PXA270_B0 0x69054112 | |
426 | #define ARM_CPUID_PXA270_B1 0x69054113 | |
427 | #define ARM_CPUID_PXA270_C0 0x69054114 | |
428 | #define ARM_CPUID_PXA270_C5 0x69054117 | |
429 | #define ARM_CPUID_ARM1136 0x4117b363 | |
827df9f3 | 430 | #define ARM_CPUID_ARM1136_R2 0x4107b362 |
7807eed9 | 431 | #define ARM_CPUID_ARM1176 0x410fb767 |
9ee6e8bb PB |
432 | #define ARM_CPUID_ARM11MPCORE 0x410fb022 |
433 | #define ARM_CPUID_CORTEXA8 0x410fc080 | |
10055562 | 434 | #define ARM_CPUID_CORTEXA9 0x410fc090 |
0b03bdfc | 435 | #define ARM_CPUID_CORTEXA15 0x412fc0f1 |
9ee6e8bb PB |
436 | #define ARM_CPUID_CORTEXM3 0x410fc231 |
437 | #define ARM_CPUID_ANY 0xffffffff | |
40f137e1 | 438 | |
b5ff1b31 | 439 | #if defined(CONFIG_USER_ONLY) |
2c0262af | 440 | #define TARGET_PAGE_BITS 12 |
b5ff1b31 FB |
441 | #else |
442 | /* The ARM MMU allows 1k pages. */ | |
443 | /* ??? Linux doesn't actually use these, and they're deprecated in recent | |
82d17978 | 444 | architecture revisions. Maybe a configure option to disable them. */ |
b5ff1b31 FB |
445 | #define TARGET_PAGE_BITS 10 |
446 | #endif | |
9467d44c | 447 | |
52705890 RH |
448 | #define TARGET_PHYS_ADDR_SPACE_BITS 32 |
449 | #define TARGET_VIRT_ADDR_SPACE_BITS 32 | |
450 | ||
9467d44c TS |
451 | #define cpu_init cpu_arm_init |
452 | #define cpu_exec cpu_arm_exec | |
453 | #define cpu_gen_code cpu_arm_gen_code | |
454 | #define cpu_signal_handler cpu_arm_signal_handler | |
c732abe2 | 455 | #define cpu_list arm_cpu_list |
9467d44c | 456 | |
2be27624 | 457 | #define CPU_SAVE_VERSION 6 |
9ee6e8bb | 458 | |
6ebbf390 JM |
459 | /* MMU modes definitions */ |
460 | #define MMU_MODE0_SUFFIX _kernel | |
461 | #define MMU_MODE1_SUFFIX _user | |
462 | #define MMU_USER_IDX 1 | |
0ecb72a5 | 463 | static inline int cpu_mmu_index (CPUARMState *env) |
6ebbf390 JM |
464 | { |
465 | return (env->uncached_cpsr & CPSR_M) == ARM_CPU_MODE_USR ? 1 : 0; | |
466 | } | |
467 | ||
6e68e076 | 468 | #if defined(CONFIG_USER_ONLY) |
0ecb72a5 | 469 | static inline void cpu_clone_regs(CPUARMState *env, target_ulong newsp) |
6e68e076 | 470 | { |
f8ed7070 | 471 | if (newsp) |
6e68e076 PB |
472 | env->regs[13] = newsp; |
473 | env->regs[0] = 0; | |
474 | } | |
475 | #endif | |
476 | ||
2c0262af | 477 | #include "cpu-all.h" |
622ed360 | 478 | |
a1705768 PM |
479 | /* Bit usage in the TB flags field: */ |
480 | #define ARM_TBFLAG_THUMB_SHIFT 0 | |
481 | #define ARM_TBFLAG_THUMB_MASK (1 << ARM_TBFLAG_THUMB_SHIFT) | |
482 | #define ARM_TBFLAG_VECLEN_SHIFT 1 | |
483 | #define ARM_TBFLAG_VECLEN_MASK (0x7 << ARM_TBFLAG_VECLEN_SHIFT) | |
484 | #define ARM_TBFLAG_VECSTRIDE_SHIFT 4 | |
485 | #define ARM_TBFLAG_VECSTRIDE_MASK (0x3 << ARM_TBFLAG_VECSTRIDE_SHIFT) | |
486 | #define ARM_TBFLAG_PRIV_SHIFT 6 | |
487 | #define ARM_TBFLAG_PRIV_MASK (1 << ARM_TBFLAG_PRIV_SHIFT) | |
488 | #define ARM_TBFLAG_VFPEN_SHIFT 7 | |
489 | #define ARM_TBFLAG_VFPEN_MASK (1 << ARM_TBFLAG_VFPEN_SHIFT) | |
490 | #define ARM_TBFLAG_CONDEXEC_SHIFT 8 | |
491 | #define ARM_TBFLAG_CONDEXEC_MASK (0xff << ARM_TBFLAG_CONDEXEC_SHIFT) | |
492 | /* Bits 31..16 are currently unused. */ | |
493 | ||
494 | /* some convenience accessor macros */ | |
495 | #define ARM_TBFLAG_THUMB(F) \ | |
496 | (((F) & ARM_TBFLAG_THUMB_MASK) >> ARM_TBFLAG_THUMB_SHIFT) | |
497 | #define ARM_TBFLAG_VECLEN(F) \ | |
498 | (((F) & ARM_TBFLAG_VECLEN_MASK) >> ARM_TBFLAG_VECLEN_SHIFT) | |
499 | #define ARM_TBFLAG_VECSTRIDE(F) \ | |
500 | (((F) & ARM_TBFLAG_VECSTRIDE_MASK) >> ARM_TBFLAG_VECSTRIDE_SHIFT) | |
501 | #define ARM_TBFLAG_PRIV(F) \ | |
502 | (((F) & ARM_TBFLAG_PRIV_MASK) >> ARM_TBFLAG_PRIV_SHIFT) | |
503 | #define ARM_TBFLAG_VFPEN(F) \ | |
504 | (((F) & ARM_TBFLAG_VFPEN_MASK) >> ARM_TBFLAG_VFPEN_SHIFT) | |
505 | #define ARM_TBFLAG_CONDEXEC(F) \ | |
506 | (((F) & ARM_TBFLAG_CONDEXEC_MASK) >> ARM_TBFLAG_CONDEXEC_SHIFT) | |
507 | ||
0ecb72a5 | 508 | static inline void cpu_get_tb_cpu_state(CPUARMState *env, target_ulong *pc, |
6b917547 AL |
509 | target_ulong *cs_base, int *flags) |
510 | { | |
05ed9a99 | 511 | int privmode; |
6b917547 AL |
512 | *pc = env->regs[15]; |
513 | *cs_base = 0; | |
a1705768 PM |
514 | *flags = (env->thumb << ARM_TBFLAG_THUMB_SHIFT) |
515 | | (env->vfp.vec_len << ARM_TBFLAG_VECLEN_SHIFT) | |
516 | | (env->vfp.vec_stride << ARM_TBFLAG_VECSTRIDE_SHIFT) | |
517 | | (env->condexec_bits << ARM_TBFLAG_CONDEXEC_SHIFT); | |
05ed9a99 PM |
518 | if (arm_feature(env, ARM_FEATURE_M)) { |
519 | privmode = !((env->v7m.exception == 0) && (env->v7m.control & 1)); | |
520 | } else { | |
521 | privmode = (env->uncached_cpsr & CPSR_M) != ARM_CPU_MODE_USR; | |
522 | } | |
523 | if (privmode) { | |
a1705768 PM |
524 | *flags |= ARM_TBFLAG_PRIV_MASK; |
525 | } | |
526 | if (env->vfp.xregs[ARM_VFP_FPEXC] & (1 << 30)) { | |
527 | *flags |= ARM_TBFLAG_VFPEN_MASK; | |
528 | } | |
6b917547 AL |
529 | } |
530 | ||
0ecb72a5 | 531 | static inline bool cpu_has_work(CPUARMState *env) |
f081c76c BS |
532 | { |
533 | return env->interrupt_request & | |
534 | (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB); | |
535 | } | |
536 | ||
537 | #include "exec-all.h" | |
538 | ||
0ecb72a5 | 539 | static inline void cpu_pc_from_tb(CPUARMState *env, TranslationBlock *tb) |
f081c76c BS |
540 | { |
541 | env->regs[15] = tb->pc; | |
542 | } | |
543 | ||
2c0262af | 544 | #endif |