]> git.proxmox.com Git - mirror_qemu.git/blob - target-xtensa/cpu.h
target-xtensa: implement instruction breakpoints
[mirror_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 CPUState struct CPUXtensaState
35
36 #include "config.h"
37 #include "qemu-common.h"
38 #include "cpu-defs.h"
39
40 #define TARGET_HAS_ICE 1
41
42 #define NB_MMU_MODES 4
43
44 #define TARGET_PHYS_ADDR_SPACE_BITS 32
45 #define TARGET_VIRT_ADDR_SPACE_BITS 32
46 #define TARGET_PAGE_BITS 12
47
48 enum {
49 /* Additional instructions */
50 XTENSA_OPTION_CODE_DENSITY,
51 XTENSA_OPTION_LOOP,
52 XTENSA_OPTION_EXTENDED_L32R,
53 XTENSA_OPTION_16_BIT_IMUL,
54 XTENSA_OPTION_32_BIT_IMUL,
55 XTENSA_OPTION_32_BIT_IMUL_HIGH,
56 XTENSA_OPTION_32_BIT_IDIV,
57 XTENSA_OPTION_MAC16,
58 XTENSA_OPTION_MISC_OP_NSA,
59 XTENSA_OPTION_MISC_OP_MINMAX,
60 XTENSA_OPTION_MISC_OP_SEXT,
61 XTENSA_OPTION_MISC_OP_CLAMPS,
62 XTENSA_OPTION_COPROCESSOR,
63 XTENSA_OPTION_BOOLEAN,
64 XTENSA_OPTION_FP_COPROCESSOR,
65 XTENSA_OPTION_MP_SYNCHRO,
66 XTENSA_OPTION_CONDITIONAL_STORE,
67
68 /* Interrupts and exceptions */
69 XTENSA_OPTION_EXCEPTION,
70 XTENSA_OPTION_RELOCATABLE_VECTOR,
71 XTENSA_OPTION_UNALIGNED_EXCEPTION,
72 XTENSA_OPTION_INTERRUPT,
73 XTENSA_OPTION_HIGH_PRIORITY_INTERRUPT,
74 XTENSA_OPTION_TIMER_INTERRUPT,
75
76 /* Local memory */
77 XTENSA_OPTION_ICACHE,
78 XTENSA_OPTION_ICACHE_TEST,
79 XTENSA_OPTION_ICACHE_INDEX_LOCK,
80 XTENSA_OPTION_DCACHE,
81 XTENSA_OPTION_DCACHE_TEST,
82 XTENSA_OPTION_DCACHE_INDEX_LOCK,
83 XTENSA_OPTION_IRAM,
84 XTENSA_OPTION_IROM,
85 XTENSA_OPTION_DRAM,
86 XTENSA_OPTION_DROM,
87 XTENSA_OPTION_XLMI,
88 XTENSA_OPTION_HW_ALIGNMENT,
89 XTENSA_OPTION_MEMORY_ECC_PARITY,
90
91 /* Memory protection and translation */
92 XTENSA_OPTION_REGION_PROTECTION,
93 XTENSA_OPTION_REGION_TRANSLATION,
94 XTENSA_OPTION_MMU,
95
96 /* Other */
97 XTENSA_OPTION_WINDOWED_REGISTER,
98 XTENSA_OPTION_PROCESSOR_INTERFACE,
99 XTENSA_OPTION_MISC_SR,
100 XTENSA_OPTION_THREAD_POINTER,
101 XTENSA_OPTION_PROCESSOR_ID,
102 XTENSA_OPTION_DEBUG,
103 XTENSA_OPTION_TRACE_PORT,
104 };
105
106 enum {
107 THREADPTR = 231,
108 FCR = 232,
109 FSR = 233,
110 };
111
112 enum {
113 LBEG = 0,
114 LEND = 1,
115 LCOUNT = 2,
116 SAR = 3,
117 BR = 4,
118 LITBASE = 5,
119 SCOMPARE1 = 12,
120 ACCLO = 16,
121 ACCHI = 17,
122 MR = 32,
123 WINDOW_BASE = 72,
124 WINDOW_START = 73,
125 PTEVADDR = 83,
126 RASID = 90,
127 ITLBCFG = 91,
128 DTLBCFG = 92,
129 IBREAKENABLE = 96,
130 IBREAKA = 128,
131 EPC1 = 177,
132 DEPC = 192,
133 EPS2 = 194,
134 EXCSAVE1 = 209,
135 CPENABLE = 224,
136 INTSET = 226,
137 INTCLEAR = 227,
138 INTENABLE = 228,
139 PS = 230,
140 VECBASE = 231,
141 EXCCAUSE = 232,
142 DEBUGCAUSE = 233,
143 CCOUNT = 234,
144 PRID = 235,
145 EXCVADDR = 238,
146 CCOMPARE = 240,
147 };
148
149 #define PS_INTLEVEL 0xf
150 #define PS_INTLEVEL_SHIFT 0
151
152 #define PS_EXCM 0x10
153 #define PS_UM 0x20
154
155 #define PS_RING 0xc0
156 #define PS_RING_SHIFT 6
157
158 #define PS_OWB 0xf00
159 #define PS_OWB_SHIFT 8
160
161 #define PS_CALLINC 0x30000
162 #define PS_CALLINC_SHIFT 16
163 #define PS_CALLINC_LEN 2
164
165 #define PS_WOE 0x40000
166
167 #define DEBUGCAUSE_IC 0x1
168 #define DEBUGCAUSE_IB 0x2
169 #define DEBUGCAUSE_DB 0x4
170 #define DEBUGCAUSE_BI 0x8
171 #define DEBUGCAUSE_BN 0x10
172 #define DEBUGCAUSE_DI 0x20
173 #define DEBUGCAUSE_DBNUM 0xf00
174 #define DEBUGCAUSE_DBNUM_SHIFT 8
175
176 #define MAX_NAREG 64
177 #define MAX_NINTERRUPT 32
178 #define MAX_NLEVEL 6
179 #define MAX_NNMI 1
180 #define MAX_NCCOMPARE 3
181 #define MAX_TLB_WAY_SIZE 8
182
183 #define REGION_PAGE_MASK 0xe0000000
184
185 enum {
186 /* Static vectors */
187 EXC_RESET,
188 EXC_MEMORY_ERROR,
189
190 /* Dynamic vectors */
191 EXC_WINDOW_OVERFLOW4,
192 EXC_WINDOW_UNDERFLOW4,
193 EXC_WINDOW_OVERFLOW8,
194 EXC_WINDOW_UNDERFLOW8,
195 EXC_WINDOW_OVERFLOW12,
196 EXC_WINDOW_UNDERFLOW12,
197 EXC_IRQ,
198 EXC_KERNEL,
199 EXC_USER,
200 EXC_DOUBLE,
201 EXC_DEBUG,
202 EXC_MAX
203 };
204
205 enum {
206 ILLEGAL_INSTRUCTION_CAUSE = 0,
207 SYSCALL_CAUSE,
208 INSTRUCTION_FETCH_ERROR_CAUSE,
209 LOAD_STORE_ERROR_CAUSE,
210 LEVEL1_INTERRUPT_CAUSE,
211 ALLOCA_CAUSE,
212 INTEGER_DIVIDE_BY_ZERO_CAUSE,
213 PRIVILEGED_CAUSE = 8,
214 LOAD_STORE_ALIGNMENT_CAUSE,
215
216 INSTR_PIF_DATA_ERROR_CAUSE = 12,
217 LOAD_STORE_PIF_DATA_ERROR_CAUSE,
218 INSTR_PIF_ADDR_ERROR_CAUSE,
219 LOAD_STORE_PIF_ADDR_ERROR_CAUSE,
220
221 INST_TLB_MISS_CAUSE,
222 INST_TLB_MULTI_HIT_CAUSE,
223 INST_FETCH_PRIVILEGE_CAUSE,
224 INST_FETCH_PROHIBITED_CAUSE = 20,
225 LOAD_STORE_TLB_MISS_CAUSE = 24,
226 LOAD_STORE_TLB_MULTI_HIT_CAUSE,
227 LOAD_STORE_PRIVILEGE_CAUSE,
228 LOAD_PROHIBITED_CAUSE = 28,
229 STORE_PROHIBITED_CAUSE,
230
231 COPROCESSOR0_DISABLED = 32,
232 };
233
234 typedef enum {
235 INTTYPE_LEVEL,
236 INTTYPE_EDGE,
237 INTTYPE_NMI,
238 INTTYPE_SOFTWARE,
239 INTTYPE_TIMER,
240 INTTYPE_DEBUG,
241 INTTYPE_WRITE_ERR,
242 INTTYPE_MAX
243 } interrupt_type;
244
245 typedef struct xtensa_tlb_entry {
246 uint32_t vaddr;
247 uint32_t paddr;
248 uint8_t asid;
249 uint8_t attr;
250 bool variable;
251 } xtensa_tlb_entry;
252
253 typedef struct xtensa_tlb {
254 unsigned nways;
255 const unsigned way_size[10];
256 bool varway56;
257 unsigned nrefillentries;
258 } xtensa_tlb;
259
260 typedef struct XtensaGdbReg {
261 int targno;
262 int type;
263 int group;
264 } XtensaGdbReg;
265
266 typedef struct XtensaGdbRegmap {
267 int num_regs;
268 int num_core_regs;
269 /* PC + a + ar + sr + ur */
270 XtensaGdbReg reg[1 + 16 + 64 + 256 + 256];
271 } XtensaGdbRegmap;
272
273 typedef struct XtensaConfig {
274 const char *name;
275 uint64_t options;
276 XtensaGdbRegmap gdb_regmap;
277 unsigned nareg;
278 int excm_level;
279 int ndepc;
280 uint32_t vecbase;
281 uint32_t exception_vector[EXC_MAX];
282 unsigned ninterrupt;
283 unsigned nlevel;
284 uint32_t interrupt_vector[MAX_NLEVEL + MAX_NNMI + 1];
285 uint32_t level_mask[MAX_NLEVEL + MAX_NNMI + 1];
286 uint32_t inttype_mask[INTTYPE_MAX];
287 struct {
288 uint32_t level;
289 interrupt_type inttype;
290 } interrupt[MAX_NINTERRUPT];
291 unsigned nccompare;
292 uint32_t timerint[MAX_NCCOMPARE];
293 unsigned nextint;
294 unsigned extint[MAX_NINTERRUPT];
295
296 unsigned debug_level;
297 unsigned nibreak;
298 unsigned ndbreak;
299
300 uint32_t clock_freq_khz;
301
302 xtensa_tlb itlb;
303 xtensa_tlb dtlb;
304 } XtensaConfig;
305
306 typedef struct XtensaConfigList {
307 const XtensaConfig *config;
308 struct XtensaConfigList *next;
309 } XtensaConfigList;
310
311 typedef struct CPUXtensaState {
312 const XtensaConfig *config;
313 uint32_t regs[16];
314 uint32_t pc;
315 uint32_t sregs[256];
316 uint32_t uregs[256];
317 uint32_t phys_regs[MAX_NAREG];
318
319 xtensa_tlb_entry itlb[7][MAX_TLB_WAY_SIZE];
320 xtensa_tlb_entry dtlb[10][MAX_TLB_WAY_SIZE];
321 unsigned autorefill_idx;
322
323 int pending_irq_level; /* level of last raised IRQ */
324 void **irq_inputs;
325 QEMUTimer *ccompare_timer;
326 uint32_t wake_ccount;
327 int64_t halt_clock;
328
329 int exception_taken;
330
331 CPU_COMMON
332 } CPUXtensaState;
333
334 #define cpu_init cpu_xtensa_init
335 #define cpu_exec cpu_xtensa_exec
336 #define cpu_gen_code cpu_xtensa_gen_code
337 #define cpu_signal_handler cpu_xtensa_signal_handler
338 #define cpu_list xtensa_cpu_list
339
340 CPUXtensaState *cpu_xtensa_init(const char *cpu_model);
341 void xtensa_translate_init(void);
342 int cpu_xtensa_exec(CPUXtensaState *s);
343 void xtensa_register_core(XtensaConfigList *node);
344 void do_interrupt(CPUXtensaState *s);
345 void check_interrupts(CPUXtensaState *s);
346 void xtensa_irq_init(CPUState *env);
347 void *xtensa_get_extint(CPUState *env, unsigned extint);
348 void xtensa_advance_ccount(CPUState *env, uint32_t d);
349 void xtensa_timer_irq(CPUState *env, uint32_t id, uint32_t active);
350 void xtensa_rearm_ccompare_timer(CPUState *env);
351 int cpu_xtensa_signal_handler(int host_signum, void *pinfo, void *puc);
352 void xtensa_cpu_list(FILE *f, fprintf_function cpu_fprintf);
353 void xtensa_sync_window_from_phys(CPUState *env);
354 void xtensa_sync_phys_from_window(CPUState *env);
355 uint32_t xtensa_tlb_get_addr_mask(const CPUState *env, bool dtlb, uint32_t way);
356 void split_tlb_entry_spec_way(const CPUState *env, uint32_t v, bool dtlb,
357 uint32_t *vpn, uint32_t wi, uint32_t *ei);
358 int xtensa_tlb_lookup(const CPUState *env, uint32_t addr, bool dtlb,
359 uint32_t *pwi, uint32_t *pei, uint8_t *pring);
360 void xtensa_tlb_set_entry(CPUState *env, bool dtlb,
361 unsigned wi, unsigned ei, uint32_t vpn, uint32_t pte);
362 int xtensa_get_physical_addr(CPUState *env,
363 uint32_t vaddr, int is_write, int mmu_idx,
364 uint32_t *paddr, uint32_t *page_size, unsigned *access);
365 void dump_mmu(FILE *f, fprintf_function cpu_fprintf, CPUState *env);
366
367
368 #define XTENSA_OPTION_BIT(opt) (((uint64_t)1) << (opt))
369
370 static inline bool xtensa_option_bits_enabled(const XtensaConfig *config,
371 uint64_t opt)
372 {
373 return (config->options & opt) != 0;
374 }
375
376 static inline bool xtensa_option_enabled(const XtensaConfig *config, int opt)
377 {
378 return xtensa_option_bits_enabled(config, XTENSA_OPTION_BIT(opt));
379 }
380
381 static inline int xtensa_get_cintlevel(const CPUState *env)
382 {
383 int level = (env->sregs[PS] & PS_INTLEVEL) >> PS_INTLEVEL_SHIFT;
384 if ((env->sregs[PS] & PS_EXCM) && env->config->excm_level > level) {
385 level = env->config->excm_level;
386 }
387 return level;
388 }
389
390 static inline int xtensa_get_ring(const CPUState *env)
391 {
392 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
393 return (env->sregs[PS] & PS_RING) >> PS_RING_SHIFT;
394 } else {
395 return 0;
396 }
397 }
398
399 static inline int xtensa_get_cring(const CPUState *env)
400 {
401 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU) &&
402 (env->sregs[PS] & PS_EXCM) == 0) {
403 return (env->sregs[PS] & PS_RING) >> PS_RING_SHIFT;
404 } else {
405 return 0;
406 }
407 }
408
409 static inline xtensa_tlb_entry *xtensa_tlb_get_entry(CPUState *env,
410 bool dtlb, unsigned wi, unsigned ei)
411 {
412 return dtlb ?
413 env->dtlb[wi] + ei :
414 env->itlb[wi] + ei;
415 }
416
417 /* MMU modes definitions */
418 #define MMU_MODE0_SUFFIX _ring0
419 #define MMU_MODE1_SUFFIX _ring1
420 #define MMU_MODE2_SUFFIX _ring2
421 #define MMU_MODE3_SUFFIX _ring3
422
423 static inline int cpu_mmu_index(CPUState *env)
424 {
425 return xtensa_get_cring(env);
426 }
427
428 #define XTENSA_TBFLAG_RING_MASK 0x3
429 #define XTENSA_TBFLAG_EXCM 0x4
430 #define XTENSA_TBFLAG_LITBASE 0x8
431 #define XTENSA_TBFLAG_DEBUG 0x10
432
433 static inline void cpu_get_tb_cpu_state(CPUState *env, target_ulong *pc,
434 target_ulong *cs_base, int *flags)
435 {
436 *pc = env->pc;
437 *cs_base = 0;
438 *flags = 0;
439 *flags |= xtensa_get_ring(env);
440 if (env->sregs[PS] & PS_EXCM) {
441 *flags |= XTENSA_TBFLAG_EXCM;
442 }
443 if (xtensa_option_enabled(env->config, XTENSA_OPTION_EXTENDED_L32R) &&
444 (env->sregs[LITBASE] & 1)) {
445 *flags |= XTENSA_TBFLAG_LITBASE;
446 }
447 if (xtensa_option_enabled(env->config, XTENSA_OPTION_DEBUG)) {
448 if (xtensa_get_cintlevel(env) < env->config->debug_level) {
449 *flags |= XTENSA_TBFLAG_DEBUG;
450 }
451 }
452 }
453
454 #include "cpu-all.h"
455 #include "exec-all.h"
456
457 static inline int cpu_has_work(CPUState *env)
458 {
459 return env->pending_irq_level;
460 }
461
462 static inline void cpu_pc_from_tb(CPUState *env, TranslationBlock *tb)
463 {
464 env->pc = tb->pc;
465 }
466
467 #endif