]> git.proxmox.com Git - qemu.git/blob - target-xtensa/cpu.h
target-xtensa: implement ATOMCTL SR
[qemu.git] / target-xtensa / cpu.h
1 /*
2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 * * Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * * Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 * * Neither the name of the Open Source and Linux Lab nor the
13 * names of its contributors may be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28 #ifndef CPU_XTENSA_H
29 #define CPU_XTENSA_H
30
31 #define TARGET_LONG_BITS 32
32 #define ELF_MACHINE EM_XTENSA
33
34 #define CPUArchState struct CPUXtensaState
35
36 #include "config.h"
37 #include "qemu-common.h"
38 #include "cpu-defs.h"
39 #include "fpu/softfloat.h"
40
41 #define TARGET_HAS_ICE 1
42
43 #define NB_MMU_MODES 4
44
45 #define TARGET_PHYS_ADDR_SPACE_BITS 32
46 #define TARGET_VIRT_ADDR_SPACE_BITS 32
47 #define TARGET_PAGE_BITS 12
48
49 enum {
50 /* Additional instructions */
51 XTENSA_OPTION_CODE_DENSITY,
52 XTENSA_OPTION_LOOP,
53 XTENSA_OPTION_EXTENDED_L32R,
54 XTENSA_OPTION_16_BIT_IMUL,
55 XTENSA_OPTION_32_BIT_IMUL,
56 XTENSA_OPTION_32_BIT_IMUL_HIGH,
57 XTENSA_OPTION_32_BIT_IDIV,
58 XTENSA_OPTION_MAC16,
59 XTENSA_OPTION_MISC_OP_NSA,
60 XTENSA_OPTION_MISC_OP_MINMAX,
61 XTENSA_OPTION_MISC_OP_SEXT,
62 XTENSA_OPTION_MISC_OP_CLAMPS,
63 XTENSA_OPTION_COPROCESSOR,
64 XTENSA_OPTION_BOOLEAN,
65 XTENSA_OPTION_FP_COPROCESSOR,
66 XTENSA_OPTION_MP_SYNCHRO,
67 XTENSA_OPTION_CONDITIONAL_STORE,
68 XTENSA_OPTION_ATOMCTL,
69
70 /* Interrupts and exceptions */
71 XTENSA_OPTION_EXCEPTION,
72 XTENSA_OPTION_RELOCATABLE_VECTOR,
73 XTENSA_OPTION_UNALIGNED_EXCEPTION,
74 XTENSA_OPTION_INTERRUPT,
75 XTENSA_OPTION_HIGH_PRIORITY_INTERRUPT,
76 XTENSA_OPTION_TIMER_INTERRUPT,
77
78 /* Local memory */
79 XTENSA_OPTION_ICACHE,
80 XTENSA_OPTION_ICACHE_TEST,
81 XTENSA_OPTION_ICACHE_INDEX_LOCK,
82 XTENSA_OPTION_DCACHE,
83 XTENSA_OPTION_DCACHE_TEST,
84 XTENSA_OPTION_DCACHE_INDEX_LOCK,
85 XTENSA_OPTION_IRAM,
86 XTENSA_OPTION_IROM,
87 XTENSA_OPTION_DRAM,
88 XTENSA_OPTION_DROM,
89 XTENSA_OPTION_XLMI,
90 XTENSA_OPTION_HW_ALIGNMENT,
91 XTENSA_OPTION_MEMORY_ECC_PARITY,
92
93 /* Memory protection and translation */
94 XTENSA_OPTION_REGION_PROTECTION,
95 XTENSA_OPTION_REGION_TRANSLATION,
96 XTENSA_OPTION_MMU,
97
98 /* Other */
99 XTENSA_OPTION_WINDOWED_REGISTER,
100 XTENSA_OPTION_PROCESSOR_INTERFACE,
101 XTENSA_OPTION_MISC_SR,
102 XTENSA_OPTION_THREAD_POINTER,
103 XTENSA_OPTION_PROCESSOR_ID,
104 XTENSA_OPTION_DEBUG,
105 XTENSA_OPTION_TRACE_PORT,
106 };
107
108 enum {
109 THREADPTR = 231,
110 FCR = 232,
111 FSR = 233,
112 };
113
114 enum {
115 LBEG = 0,
116 LEND = 1,
117 LCOUNT = 2,
118 SAR = 3,
119 BR = 4,
120 LITBASE = 5,
121 SCOMPARE1 = 12,
122 ACCLO = 16,
123 ACCHI = 17,
124 MR = 32,
125 WINDOW_BASE = 72,
126 WINDOW_START = 73,
127 PTEVADDR = 83,
128 RASID = 90,
129 ITLBCFG = 91,
130 DTLBCFG = 92,
131 IBREAKENABLE = 96,
132 ATOMCTL = 99,
133 IBREAKA = 128,
134 DBREAKA = 144,
135 DBREAKC = 160,
136 EPC1 = 177,
137 DEPC = 192,
138 EPS2 = 194,
139 EXCSAVE1 = 209,
140 CPENABLE = 224,
141 INTSET = 226,
142 INTCLEAR = 227,
143 INTENABLE = 228,
144 PS = 230,
145 VECBASE = 231,
146 EXCCAUSE = 232,
147 DEBUGCAUSE = 233,
148 CCOUNT = 234,
149 PRID = 235,
150 ICOUNT = 236,
151 ICOUNTLEVEL = 237,
152 EXCVADDR = 238,
153 CCOMPARE = 240,
154 };
155
156 #define PS_INTLEVEL 0xf
157 #define PS_INTLEVEL_SHIFT 0
158
159 #define PS_EXCM 0x10
160 #define PS_UM 0x20
161
162 #define PS_RING 0xc0
163 #define PS_RING_SHIFT 6
164
165 #define PS_OWB 0xf00
166 #define PS_OWB_SHIFT 8
167
168 #define PS_CALLINC 0x30000
169 #define PS_CALLINC_SHIFT 16
170 #define PS_CALLINC_LEN 2
171
172 #define PS_WOE 0x40000
173
174 #define DEBUGCAUSE_IC 0x1
175 #define DEBUGCAUSE_IB 0x2
176 #define DEBUGCAUSE_DB 0x4
177 #define DEBUGCAUSE_BI 0x8
178 #define DEBUGCAUSE_BN 0x10
179 #define DEBUGCAUSE_DI 0x20
180 #define DEBUGCAUSE_DBNUM 0xf00
181 #define DEBUGCAUSE_DBNUM_SHIFT 8
182
183 #define DBREAKC_SB 0x80000000
184 #define DBREAKC_LB 0x40000000
185 #define DBREAKC_SB_LB (DBREAKC_SB | DBREAKC_LB)
186 #define DBREAKC_MASK 0x3f
187
188 #define MAX_NAREG 64
189 #define MAX_NINTERRUPT 32
190 #define MAX_NLEVEL 6
191 #define MAX_NNMI 1
192 #define MAX_NCCOMPARE 3
193 #define MAX_TLB_WAY_SIZE 8
194 #define MAX_NDBREAK 2
195
196 #define REGION_PAGE_MASK 0xe0000000
197
198 #define PAGE_CACHE_MASK 0x700
199 #define PAGE_CACHE_SHIFT 8
200 #define PAGE_CACHE_INVALID 0x000
201 #define PAGE_CACHE_BYPASS 0x100
202 #define PAGE_CACHE_WT 0x200
203 #define PAGE_CACHE_WB 0x400
204 #define PAGE_CACHE_ISOLATE 0x600
205
206 enum {
207 /* Static vectors */
208 EXC_RESET,
209 EXC_MEMORY_ERROR,
210
211 /* Dynamic vectors */
212 EXC_WINDOW_OVERFLOW4,
213 EXC_WINDOW_UNDERFLOW4,
214 EXC_WINDOW_OVERFLOW8,
215 EXC_WINDOW_UNDERFLOW8,
216 EXC_WINDOW_OVERFLOW12,
217 EXC_WINDOW_UNDERFLOW12,
218 EXC_IRQ,
219 EXC_KERNEL,
220 EXC_USER,
221 EXC_DOUBLE,
222 EXC_DEBUG,
223 EXC_MAX
224 };
225
226 enum {
227 ILLEGAL_INSTRUCTION_CAUSE = 0,
228 SYSCALL_CAUSE,
229 INSTRUCTION_FETCH_ERROR_CAUSE,
230 LOAD_STORE_ERROR_CAUSE,
231 LEVEL1_INTERRUPT_CAUSE,
232 ALLOCA_CAUSE,
233 INTEGER_DIVIDE_BY_ZERO_CAUSE,
234 PRIVILEGED_CAUSE = 8,
235 LOAD_STORE_ALIGNMENT_CAUSE,
236
237 INSTR_PIF_DATA_ERROR_CAUSE = 12,
238 LOAD_STORE_PIF_DATA_ERROR_CAUSE,
239 INSTR_PIF_ADDR_ERROR_CAUSE,
240 LOAD_STORE_PIF_ADDR_ERROR_CAUSE,
241
242 INST_TLB_MISS_CAUSE,
243 INST_TLB_MULTI_HIT_CAUSE,
244 INST_FETCH_PRIVILEGE_CAUSE,
245 INST_FETCH_PROHIBITED_CAUSE = 20,
246 LOAD_STORE_TLB_MISS_CAUSE = 24,
247 LOAD_STORE_TLB_MULTI_HIT_CAUSE,
248 LOAD_STORE_PRIVILEGE_CAUSE,
249 LOAD_PROHIBITED_CAUSE = 28,
250 STORE_PROHIBITED_CAUSE,
251
252 COPROCESSOR0_DISABLED = 32,
253 };
254
255 typedef enum {
256 INTTYPE_LEVEL,
257 INTTYPE_EDGE,
258 INTTYPE_NMI,
259 INTTYPE_SOFTWARE,
260 INTTYPE_TIMER,
261 INTTYPE_DEBUG,
262 INTTYPE_WRITE_ERR,
263 INTTYPE_MAX
264 } interrupt_type;
265
266 typedef struct xtensa_tlb_entry {
267 uint32_t vaddr;
268 uint32_t paddr;
269 uint8_t asid;
270 uint8_t attr;
271 bool variable;
272 } xtensa_tlb_entry;
273
274 typedef struct xtensa_tlb {
275 unsigned nways;
276 const unsigned way_size[10];
277 bool varway56;
278 unsigned nrefillentries;
279 } xtensa_tlb;
280
281 typedef struct XtensaGdbReg {
282 int targno;
283 int type;
284 int group;
285 } XtensaGdbReg;
286
287 typedef struct XtensaGdbRegmap {
288 int num_regs;
289 int num_core_regs;
290 /* PC + a + ar + sr + ur */
291 XtensaGdbReg reg[1 + 16 + 64 + 256 + 256];
292 } XtensaGdbRegmap;
293
294 typedef struct XtensaConfig {
295 const char *name;
296 uint64_t options;
297 XtensaGdbRegmap gdb_regmap;
298 unsigned nareg;
299 int excm_level;
300 int ndepc;
301 uint32_t vecbase;
302 uint32_t exception_vector[EXC_MAX];
303 unsigned ninterrupt;
304 unsigned nlevel;
305 uint32_t interrupt_vector[MAX_NLEVEL + MAX_NNMI + 1];
306 uint32_t level_mask[MAX_NLEVEL + MAX_NNMI + 1];
307 uint32_t inttype_mask[INTTYPE_MAX];
308 struct {
309 uint32_t level;
310 interrupt_type inttype;
311 } interrupt[MAX_NINTERRUPT];
312 unsigned nccompare;
313 uint32_t timerint[MAX_NCCOMPARE];
314 unsigned nextint;
315 unsigned extint[MAX_NINTERRUPT];
316
317 unsigned debug_level;
318 unsigned nibreak;
319 unsigned ndbreak;
320
321 uint32_t clock_freq_khz;
322
323 xtensa_tlb itlb;
324 xtensa_tlb dtlb;
325 } XtensaConfig;
326
327 typedef struct XtensaConfigList {
328 const XtensaConfig *config;
329 struct XtensaConfigList *next;
330 } XtensaConfigList;
331
332 typedef struct CPUXtensaState {
333 const XtensaConfig *config;
334 uint32_t regs[16];
335 uint32_t pc;
336 uint32_t sregs[256];
337 uint32_t uregs[256];
338 uint32_t phys_regs[MAX_NAREG];
339 float32 fregs[16];
340 float_status fp_status;
341
342 xtensa_tlb_entry itlb[7][MAX_TLB_WAY_SIZE];
343 xtensa_tlb_entry dtlb[10][MAX_TLB_WAY_SIZE];
344 unsigned autorefill_idx;
345
346 int pending_irq_level; /* level of last raised IRQ */
347 void **irq_inputs;
348 QEMUTimer *ccompare_timer;
349 uint32_t wake_ccount;
350 int64_t halt_clock;
351
352 int exception_taken;
353
354 /* Watchpoints for DBREAK registers */
355 CPUWatchpoint *cpu_watchpoint[MAX_NDBREAK];
356
357 CPU_COMMON
358 } CPUXtensaState;
359
360 #include "cpu-qom.h"
361
362 #define cpu_exec cpu_xtensa_exec
363 #define cpu_gen_code cpu_xtensa_gen_code
364 #define cpu_signal_handler cpu_xtensa_signal_handler
365 #define cpu_list xtensa_cpu_list
366
367 #ifdef TARGET_WORDS_BIGENDIAN
368 #define XTENSA_DEFAULT_CPU_MODEL "fsf"
369 #else
370 #define XTENSA_DEFAULT_CPU_MODEL "dc232b"
371 #endif
372
373 XtensaCPU *cpu_xtensa_init(const char *cpu_model);
374
375 static inline CPUXtensaState *cpu_init(const char *cpu_model)
376 {
377 XtensaCPU *cpu = cpu_xtensa_init(cpu_model);
378 if (cpu == NULL) {
379 return NULL;
380 }
381 return &cpu->env;
382 }
383
384 void xtensa_translate_init(void);
385 int cpu_xtensa_exec(CPUXtensaState *s);
386 void xtensa_register_core(XtensaConfigList *node);
387 void do_interrupt(CPUXtensaState *s);
388 void check_interrupts(CPUXtensaState *s);
389 void xtensa_irq_init(CPUXtensaState *env);
390 void *xtensa_get_extint(CPUXtensaState *env, unsigned extint);
391 void xtensa_advance_ccount(CPUXtensaState *env, uint32_t d);
392 void xtensa_timer_irq(CPUXtensaState *env, uint32_t id, uint32_t active);
393 void xtensa_rearm_ccompare_timer(CPUXtensaState *env);
394 int cpu_xtensa_signal_handler(int host_signum, void *pinfo, void *puc);
395 void xtensa_cpu_list(FILE *f, fprintf_function cpu_fprintf);
396 void xtensa_sync_window_from_phys(CPUXtensaState *env);
397 void xtensa_sync_phys_from_window(CPUXtensaState *env);
398 uint32_t xtensa_tlb_get_addr_mask(const CPUXtensaState *env, bool dtlb, uint32_t way);
399 void split_tlb_entry_spec_way(const CPUXtensaState *env, uint32_t v, bool dtlb,
400 uint32_t *vpn, uint32_t wi, uint32_t *ei);
401 int xtensa_tlb_lookup(const CPUXtensaState *env, uint32_t addr, bool dtlb,
402 uint32_t *pwi, uint32_t *pei, uint8_t *pring);
403 void xtensa_tlb_set_entry_mmu(const CPUXtensaState *env,
404 xtensa_tlb_entry *entry, bool dtlb,
405 unsigned wi, unsigned ei, uint32_t vpn, uint32_t pte);
406 void xtensa_tlb_set_entry(CPUXtensaState *env, bool dtlb,
407 unsigned wi, unsigned ei, uint32_t vpn, uint32_t pte);
408 int xtensa_get_physical_addr(CPUXtensaState *env, bool update_tlb,
409 uint32_t vaddr, int is_write, int mmu_idx,
410 uint32_t *paddr, uint32_t *page_size, unsigned *access);
411 void reset_mmu(CPUXtensaState *env);
412 void dump_mmu(FILE *f, fprintf_function cpu_fprintf, CPUXtensaState *env);
413 void debug_exception_env(CPUXtensaState *new_env, uint32_t cause);
414
415
416 #define XTENSA_OPTION_BIT(opt) (((uint64_t)1) << (opt))
417
418 static inline bool xtensa_option_bits_enabled(const XtensaConfig *config,
419 uint64_t opt)
420 {
421 return (config->options & opt) != 0;
422 }
423
424 static inline bool xtensa_option_enabled(const XtensaConfig *config, int opt)
425 {
426 return xtensa_option_bits_enabled(config, XTENSA_OPTION_BIT(opt));
427 }
428
429 static inline int xtensa_get_cintlevel(const CPUXtensaState *env)
430 {
431 int level = (env->sregs[PS] & PS_INTLEVEL) >> PS_INTLEVEL_SHIFT;
432 if ((env->sregs[PS] & PS_EXCM) && env->config->excm_level > level) {
433 level = env->config->excm_level;
434 }
435 return level;
436 }
437
438 static inline int xtensa_get_ring(const CPUXtensaState *env)
439 {
440 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
441 return (env->sregs[PS] & PS_RING) >> PS_RING_SHIFT;
442 } else {
443 return 0;
444 }
445 }
446
447 static inline int xtensa_get_cring(const CPUXtensaState *env)
448 {
449 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU) &&
450 (env->sregs[PS] & PS_EXCM) == 0) {
451 return (env->sregs[PS] & PS_RING) >> PS_RING_SHIFT;
452 } else {
453 return 0;
454 }
455 }
456
457 static inline xtensa_tlb_entry *xtensa_tlb_get_entry(CPUXtensaState *env,
458 bool dtlb, unsigned wi, unsigned ei)
459 {
460 return dtlb ?
461 env->dtlb[wi] + ei :
462 env->itlb[wi] + ei;
463 }
464
465 /* MMU modes definitions */
466 #define MMU_MODE0_SUFFIX _ring0
467 #define MMU_MODE1_SUFFIX _ring1
468 #define MMU_MODE2_SUFFIX _ring2
469 #define MMU_MODE3_SUFFIX _ring3
470
471 static inline int cpu_mmu_index(CPUXtensaState *env)
472 {
473 return xtensa_get_cring(env);
474 }
475
476 #define XTENSA_TBFLAG_RING_MASK 0x3
477 #define XTENSA_TBFLAG_EXCM 0x4
478 #define XTENSA_TBFLAG_LITBASE 0x8
479 #define XTENSA_TBFLAG_DEBUG 0x10
480 #define XTENSA_TBFLAG_ICOUNT 0x20
481 #define XTENSA_TBFLAG_CPENABLE_MASK 0x3fc0
482 #define XTENSA_TBFLAG_CPENABLE_SHIFT 6
483
484 static inline void cpu_get_tb_cpu_state(CPUXtensaState *env, target_ulong *pc,
485 target_ulong *cs_base, int *flags)
486 {
487 *pc = env->pc;
488 *cs_base = 0;
489 *flags = 0;
490 *flags |= xtensa_get_ring(env);
491 if (env->sregs[PS] & PS_EXCM) {
492 *flags |= XTENSA_TBFLAG_EXCM;
493 }
494 if (xtensa_option_enabled(env->config, XTENSA_OPTION_EXTENDED_L32R) &&
495 (env->sregs[LITBASE] & 1)) {
496 *flags |= XTENSA_TBFLAG_LITBASE;
497 }
498 if (xtensa_option_enabled(env->config, XTENSA_OPTION_DEBUG)) {
499 if (xtensa_get_cintlevel(env) < env->config->debug_level) {
500 *flags |= XTENSA_TBFLAG_DEBUG;
501 }
502 if (xtensa_get_cintlevel(env) < env->sregs[ICOUNTLEVEL]) {
503 *flags |= XTENSA_TBFLAG_ICOUNT;
504 }
505 }
506 if (xtensa_option_enabled(env->config, XTENSA_OPTION_COPROCESSOR)) {
507 *flags |= env->sregs[CPENABLE] << XTENSA_TBFLAG_CPENABLE_SHIFT;
508 }
509 }
510
511 #include "cpu-all.h"
512 #include "exec-all.h"
513
514 static inline int cpu_has_work(CPUState *cpu)
515 {
516 CPUXtensaState *env = &XTENSA_CPU(cpu)->env;
517
518 return env->pending_irq_level;
519 }
520
521 static inline void cpu_pc_from_tb(CPUXtensaState *env, TranslationBlock *tb)
522 {
523 env->pc = tb->pc;
524 }
525
526 #endif