2 * Copyright (c) 2011, Max Filippov, Open Source and Linux Lab.
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.
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.
32 #define TARGET_LONG_BITS 32
34 #define CPUArchState struct CPUXtensaState
36 #include "qemu-common.h"
38 #include "exec/cpu-defs.h"
39 #include "fpu/softfloat.h"
41 #define NB_MMU_MODES 4
43 #define TARGET_PHYS_ADDR_SPACE_BITS 32
44 #define TARGET_VIRT_ADDR_SPACE_BITS 32
45 #define TARGET_PAGE_BITS 12
48 /* Additional instructions */
49 XTENSA_OPTION_CODE_DENSITY
,
51 XTENSA_OPTION_EXTENDED_L32R
,
52 XTENSA_OPTION_16_BIT_IMUL
,
53 XTENSA_OPTION_32_BIT_IMUL
,
54 XTENSA_OPTION_32_BIT_IMUL_HIGH
,
55 XTENSA_OPTION_32_BIT_IDIV
,
57 XTENSA_OPTION_MISC_OP_NSA
,
58 XTENSA_OPTION_MISC_OP_MINMAX
,
59 XTENSA_OPTION_MISC_OP_SEXT
,
60 XTENSA_OPTION_MISC_OP_CLAMPS
,
61 XTENSA_OPTION_COPROCESSOR
,
62 XTENSA_OPTION_BOOLEAN
,
63 XTENSA_OPTION_FP_COPROCESSOR
,
64 XTENSA_OPTION_MP_SYNCHRO
,
65 XTENSA_OPTION_CONDITIONAL_STORE
,
66 XTENSA_OPTION_ATOMCTL
,
67 XTENSA_OPTION_DEPBITS
,
69 /* Interrupts and exceptions */
70 XTENSA_OPTION_EXCEPTION
,
71 XTENSA_OPTION_RELOCATABLE_VECTOR
,
72 XTENSA_OPTION_UNALIGNED_EXCEPTION
,
73 XTENSA_OPTION_INTERRUPT
,
74 XTENSA_OPTION_HIGH_PRIORITY_INTERRUPT
,
75 XTENSA_OPTION_TIMER_INTERRUPT
,
79 XTENSA_OPTION_ICACHE_TEST
,
80 XTENSA_OPTION_ICACHE_INDEX_LOCK
,
82 XTENSA_OPTION_DCACHE_TEST
,
83 XTENSA_OPTION_DCACHE_INDEX_LOCK
,
89 XTENSA_OPTION_HW_ALIGNMENT
,
90 XTENSA_OPTION_MEMORY_ECC_PARITY
,
92 /* Memory protection and translation */
93 XTENSA_OPTION_REGION_PROTECTION
,
94 XTENSA_OPTION_REGION_TRANSLATION
,
96 XTENSA_OPTION_CACHEATTR
,
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
,
105 XTENSA_OPTION_TRACE_PORT
,
106 XTENSA_OPTION_EXTERN_REGS
,
162 #define PS_INTLEVEL 0xf
163 #define PS_INTLEVEL_SHIFT 0
169 #define PS_RING_SHIFT 6
172 #define PS_OWB_SHIFT 8
174 #define PS_CALLINC 0x30000
175 #define PS_CALLINC_SHIFT 16
176 #define PS_CALLINC_LEN 2
178 #define PS_WOE 0x40000
180 #define DEBUGCAUSE_IC 0x1
181 #define DEBUGCAUSE_IB 0x2
182 #define DEBUGCAUSE_DB 0x4
183 #define DEBUGCAUSE_BI 0x8
184 #define DEBUGCAUSE_BN 0x10
185 #define DEBUGCAUSE_DI 0x20
186 #define DEBUGCAUSE_DBNUM 0xf00
187 #define DEBUGCAUSE_DBNUM_SHIFT 8
189 #define DBREAKC_SB 0x80000000
190 #define DBREAKC_LB 0x40000000
191 #define DBREAKC_SB_LB (DBREAKC_SB | DBREAKC_LB)
192 #define DBREAKC_MASK 0x3f
194 #define MEMCTL_INIT 0x00800000
195 #define MEMCTL_IUSEWAYS_SHIFT 18
196 #define MEMCTL_IUSEWAYS_LEN 5
197 #define MEMCTL_IUSEWAYS_MASK 0x007c0000
198 #define MEMCTL_DALLOCWAYS_SHIFT 13
199 #define MEMCTL_DALLOCWAYS_LEN 5
200 #define MEMCTL_DALLOCWAYS_MASK 0x0003e000
201 #define MEMCTL_DUSEWAYS_SHIFT 8
202 #define MEMCTL_DUSEWAYS_LEN 5
203 #define MEMCTL_DUSEWAYS_MASK 0x00001f00
204 #define MEMCTL_ISNP 0x4
205 #define MEMCTL_DSNP 0x2
206 #define MEMCTL_IL0EN 0x1
209 #define MAX_NINTERRUPT 32
212 #define MAX_NCCOMPARE 3
213 #define MAX_TLB_WAY_SIZE 8
214 #define MAX_NDBREAK 2
215 #define MAX_NMEMORY 4
217 #define REGION_PAGE_MASK 0xe0000000
219 #define PAGE_CACHE_MASK 0x700
220 #define PAGE_CACHE_SHIFT 8
221 #define PAGE_CACHE_INVALID 0x000
222 #define PAGE_CACHE_BYPASS 0x100
223 #define PAGE_CACHE_WT 0x200
224 #define PAGE_CACHE_WB 0x400
225 #define PAGE_CACHE_ISOLATE 0x600
233 /* Dynamic vectors */
234 EXC_WINDOW_OVERFLOW4
,
235 EXC_WINDOW_UNDERFLOW4
,
236 EXC_WINDOW_OVERFLOW8
,
237 EXC_WINDOW_UNDERFLOW8
,
238 EXC_WINDOW_OVERFLOW12
,
239 EXC_WINDOW_UNDERFLOW12
,
249 ILLEGAL_INSTRUCTION_CAUSE
= 0,
251 INSTRUCTION_FETCH_ERROR_CAUSE
,
252 LOAD_STORE_ERROR_CAUSE
,
253 LEVEL1_INTERRUPT_CAUSE
,
255 INTEGER_DIVIDE_BY_ZERO_CAUSE
,
256 PRIVILEGED_CAUSE
= 8,
257 LOAD_STORE_ALIGNMENT_CAUSE
,
259 INSTR_PIF_DATA_ERROR_CAUSE
= 12,
260 LOAD_STORE_PIF_DATA_ERROR_CAUSE
,
261 INSTR_PIF_ADDR_ERROR_CAUSE
,
262 LOAD_STORE_PIF_ADDR_ERROR_CAUSE
,
265 INST_TLB_MULTI_HIT_CAUSE
,
266 INST_FETCH_PRIVILEGE_CAUSE
,
267 INST_FETCH_PROHIBITED_CAUSE
= 20,
268 LOAD_STORE_TLB_MISS_CAUSE
= 24,
269 LOAD_STORE_TLB_MULTI_HIT_CAUSE
,
270 LOAD_STORE_PRIVILEGE_CAUSE
,
271 LOAD_PROHIBITED_CAUSE
= 28,
272 STORE_PROHIBITED_CAUSE
,
274 COPROCESSOR0_DISABLED
= 32,
289 struct CPUXtensaState
;
291 typedef struct xtensa_tlb_entry
{
299 typedef struct xtensa_tlb
{
301 const unsigned way_size
[10];
303 unsigned nrefillentries
;
306 typedef struct XtensaGdbReg
{
313 typedef struct XtensaGdbRegmap
{
316 /* PC + a + ar + sr + ur */
317 XtensaGdbReg reg
[1 + 16 + 64 + 256 + 256];
320 typedef struct XtensaCcompareTimer
{
321 struct CPUXtensaState
*env
;
323 } XtensaCcompareTimer
;
325 typedef struct XtensaMemory
{
327 struct XtensaMemoryRegion
{
330 } location
[MAX_NMEMORY
];
333 struct XtensaConfig
{
336 XtensaGdbRegmap gdb_regmap
;
341 uint32_t exception_vector
[EXC_MAX
];
344 uint32_t interrupt_vector
[MAX_NLEVEL
+ MAX_NNMI
+ 1];
345 uint32_t level_mask
[MAX_NLEVEL
+ MAX_NNMI
+ 1];
346 uint32_t inttype_mask
[INTTYPE_MAX
];
349 interrupt_type inttype
;
350 } interrupt
[MAX_NINTERRUPT
];
352 uint32_t timerint
[MAX_NCCOMPARE
];
354 unsigned extint
[MAX_NINTERRUPT
];
356 unsigned debug_level
;
360 unsigned icache_ways
;
361 unsigned dcache_ways
;
362 uint32_t memctl_mask
;
364 XtensaMemory instrom
;
365 XtensaMemory instram
;
366 XtensaMemory datarom
;
367 XtensaMemory dataram
;
371 uint32_t configid
[2];
373 uint32_t clock_freq_khz
;
379 typedef struct XtensaConfigList
{
380 const XtensaConfig
*config
;
381 struct XtensaConfigList
*next
;
384 #ifdef HOST_WORDS_BIGENDIAN
396 typedef struct CPUXtensaState
{
397 const XtensaConfig
*config
;
402 uint32_t phys_regs
[MAX_NAREG
];
407 float_status fp_status
;
409 xtensa_tlb_entry itlb
[7][MAX_TLB_WAY_SIZE
];
410 xtensa_tlb_entry dtlb
[10][MAX_TLB_WAY_SIZE
];
411 unsigned autorefill_idx
;
413 AddressSpace
*address_space_er
;
414 MemoryRegion
*system_er
;
415 int pending_irq_level
; /* level of last raised IRQ */
417 XtensaCcompareTimer ccompare
[MAX_NCCOMPARE
];
419 uint64_t ccount_time
;
420 uint32_t ccount_base
;
424 unsigned static_vectors
;
426 /* Watchpoints for DBREAK registers */
427 struct CPUWatchpoint
*cpu_watchpoint
[MAX_NDBREAK
];
434 * @env: #CPUXtensaState
446 static inline XtensaCPU
*xtensa_env_get_cpu(const CPUXtensaState
*env
)
448 return container_of(env
, XtensaCPU
, env
);
451 #define ENV_GET_CPU(e) CPU(xtensa_env_get_cpu(e))
453 #define ENV_OFFSET offsetof(XtensaCPU, env)
455 void xtensa_cpu_do_interrupt(CPUState
*cpu
);
456 bool xtensa_cpu_exec_interrupt(CPUState
*cpu
, int interrupt_request
);
457 void xtensa_cpu_do_unassigned_access(CPUState
*cpu
, hwaddr addr
,
458 bool is_write
, bool is_exec
, int opaque
,
460 void xtensa_cpu_dump_state(CPUState
*cpu
, FILE *f
,
461 fprintf_function cpu_fprintf
, int flags
);
462 hwaddr
xtensa_cpu_get_phys_page_debug(CPUState
*cpu
, vaddr addr
);
463 int xtensa_cpu_gdb_read_register(CPUState
*cpu
, uint8_t *buf
, int reg
);
464 int xtensa_cpu_gdb_write_register(CPUState
*cpu
, uint8_t *buf
, int reg
);
465 void xtensa_cpu_do_unaligned_access(CPUState
*cpu
, vaddr addr
,
466 MMUAccessType access_type
,
467 int mmu_idx
, uintptr_t retaddr
);
469 #define cpu_signal_handler cpu_xtensa_signal_handler
470 #define cpu_list xtensa_cpu_list
472 #ifdef TARGET_WORDS_BIGENDIAN
473 #define XTENSA_DEFAULT_CPU_MODEL "fsf"
475 #define XTENSA_DEFAULT_CPU_MODEL "dc232b"
478 XtensaCPU
*cpu_xtensa_init(const char *cpu_model
);
480 #define cpu_init(cpu_model) CPU(cpu_xtensa_init(cpu_model))
482 void xtensa_translate_init(void);
483 void xtensa_breakpoint_handler(CPUState
*cs
);
484 void xtensa_finalize_config(XtensaConfig
*config
);
485 void xtensa_register_core(XtensaConfigList
*node
);
486 void check_interrupts(CPUXtensaState
*s
);
487 void xtensa_irq_init(CPUXtensaState
*env
);
488 void *xtensa_get_extint(CPUXtensaState
*env
, unsigned extint
);
489 void xtensa_timer_irq(CPUXtensaState
*env
, uint32_t id
, uint32_t active
);
490 int cpu_xtensa_signal_handler(int host_signum
, void *pinfo
, void *puc
);
491 void xtensa_cpu_list(FILE *f
, fprintf_function cpu_fprintf
);
492 void xtensa_sync_window_from_phys(CPUXtensaState
*env
);
493 void xtensa_sync_phys_from_window(CPUXtensaState
*env
);
494 uint32_t xtensa_tlb_get_addr_mask(const CPUXtensaState
*env
, bool dtlb
, uint32_t way
);
495 void split_tlb_entry_spec_way(const CPUXtensaState
*env
, uint32_t v
, bool dtlb
,
496 uint32_t *vpn
, uint32_t wi
, uint32_t *ei
);
497 int xtensa_tlb_lookup(const CPUXtensaState
*env
, uint32_t addr
, bool dtlb
,
498 uint32_t *pwi
, uint32_t *pei
, uint8_t *pring
);
499 void xtensa_tlb_set_entry_mmu(const CPUXtensaState
*env
,
500 xtensa_tlb_entry
*entry
, bool dtlb
,
501 unsigned wi
, unsigned ei
, uint32_t vpn
, uint32_t pte
);
502 void xtensa_tlb_set_entry(CPUXtensaState
*env
, bool dtlb
,
503 unsigned wi
, unsigned ei
, uint32_t vpn
, uint32_t pte
);
504 int xtensa_get_physical_addr(CPUXtensaState
*env
, bool update_tlb
,
505 uint32_t vaddr
, int is_write
, int mmu_idx
,
506 uint32_t *paddr
, uint32_t *page_size
, unsigned *access
);
507 void reset_mmu(CPUXtensaState
*env
);
508 void dump_mmu(FILE *f
, fprintf_function cpu_fprintf
, CPUXtensaState
*env
);
509 void debug_exception_env(CPUXtensaState
*new_env
, uint32_t cause
);
510 static inline MemoryRegion
*xtensa_get_er_region(CPUXtensaState
*env
)
512 return env
->system_er
;
515 static inline void xtensa_select_static_vectors(CPUXtensaState
*env
,
519 env
->static_vectors
= n
;
521 void xtensa_runstall(CPUXtensaState
*env
, bool runstall
);
523 #define XTENSA_OPTION_BIT(opt) (((uint64_t)1) << (opt))
524 #define XTENSA_OPTION_ALL (~(uint64_t)0)
526 static inline bool xtensa_option_bits_enabled(const XtensaConfig
*config
,
529 return (config
->options
& opt
) != 0;
532 static inline bool xtensa_option_enabled(const XtensaConfig
*config
, int opt
)
534 return xtensa_option_bits_enabled(config
, XTENSA_OPTION_BIT(opt
));
537 static inline int xtensa_get_cintlevel(const CPUXtensaState
*env
)
539 int level
= (env
->sregs
[PS
] & PS_INTLEVEL
) >> PS_INTLEVEL_SHIFT
;
540 if ((env
->sregs
[PS
] & PS_EXCM
) && env
->config
->excm_level
> level
) {
541 level
= env
->config
->excm_level
;
546 static inline int xtensa_get_ring(const CPUXtensaState
*env
)
548 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_MMU
)) {
549 return (env
->sregs
[PS
] & PS_RING
) >> PS_RING_SHIFT
;
555 static inline int xtensa_get_cring(const CPUXtensaState
*env
)
557 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_MMU
) &&
558 (env
->sregs
[PS
] & PS_EXCM
) == 0) {
559 return (env
->sregs
[PS
] & PS_RING
) >> PS_RING_SHIFT
;
565 static inline xtensa_tlb_entry
*xtensa_tlb_get_entry(CPUXtensaState
*env
,
566 bool dtlb
, unsigned wi
, unsigned ei
)
573 static inline uint32_t xtensa_replicate_windowstart(CPUXtensaState
*env
)
575 return env
->sregs
[WINDOW_START
] |
576 (env
->sregs
[WINDOW_START
] << env
->config
->nareg
/ 4);
579 /* MMU modes definitions */
580 #define MMU_MODE0_SUFFIX _ring0
581 #define MMU_MODE1_SUFFIX _ring1
582 #define MMU_MODE2_SUFFIX _ring2
583 #define MMU_MODE3_SUFFIX _ring3
585 static inline int cpu_mmu_index(CPUXtensaState
*env
, bool ifetch
)
587 return xtensa_get_cring(env
);
590 #define XTENSA_TBFLAG_RING_MASK 0x3
591 #define XTENSA_TBFLAG_EXCM 0x4
592 #define XTENSA_TBFLAG_LITBASE 0x8
593 #define XTENSA_TBFLAG_DEBUG 0x10
594 #define XTENSA_TBFLAG_ICOUNT 0x20
595 #define XTENSA_TBFLAG_CPENABLE_MASK 0x3fc0
596 #define XTENSA_TBFLAG_CPENABLE_SHIFT 6
597 #define XTENSA_TBFLAG_EXCEPTION 0x4000
598 #define XTENSA_TBFLAG_WINDOW_MASK 0x18000
599 #define XTENSA_TBFLAG_WINDOW_SHIFT 15
600 #define XTENSA_TBFLAG_YIELD 0x20000
602 static inline void cpu_get_tb_cpu_state(CPUXtensaState
*env
, target_ulong
*pc
,
603 target_ulong
*cs_base
, uint32_t *flags
)
605 CPUState
*cs
= CPU(xtensa_env_get_cpu(env
));
610 *flags
|= xtensa_get_ring(env
);
611 if (env
->sregs
[PS
] & PS_EXCM
) {
612 *flags
|= XTENSA_TBFLAG_EXCM
;
614 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_EXTENDED_L32R
) &&
615 (env
->sregs
[LITBASE
] & 1)) {
616 *flags
|= XTENSA_TBFLAG_LITBASE
;
618 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_DEBUG
)) {
619 if (xtensa_get_cintlevel(env
) < env
->config
->debug_level
) {
620 *flags
|= XTENSA_TBFLAG_DEBUG
;
622 if (xtensa_get_cintlevel(env
) < env
->sregs
[ICOUNTLEVEL
]) {
623 *flags
|= XTENSA_TBFLAG_ICOUNT
;
626 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_COPROCESSOR
)) {
627 *flags
|= env
->sregs
[CPENABLE
] << XTENSA_TBFLAG_CPENABLE_SHIFT
;
629 if (cs
->singlestep_enabled
&& env
->exception_taken
) {
630 *flags
|= XTENSA_TBFLAG_EXCEPTION
;
632 if (xtensa_option_enabled(env
->config
, XTENSA_OPTION_WINDOWED_REGISTER
) &&
633 (env
->sregs
[PS
] & (PS_WOE
| PS_EXCM
)) == PS_WOE
) {
634 uint32_t windowstart
= xtensa_replicate_windowstart(env
) >>
635 (env
->sregs
[WINDOW_BASE
] + 1);
636 uint32_t w
= ctz32(windowstart
| 0x8);
638 *flags
|= w
<< XTENSA_TBFLAG_WINDOW_SHIFT
;
640 *flags
|= 3 << XTENSA_TBFLAG_WINDOW_SHIFT
;
642 if (env
->yield_needed
) {
643 *flags
|= XTENSA_TBFLAG_YIELD
;
647 #include "exec/cpu-all.h"