]> git.proxmox.com Git - qemu.git/blame - target-xtensa/helper.c
milkymist: Store LM32 in ResetInfo
[qemu.git] / target-xtensa / helper.c
CommitLineData
2328826b
MF
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#include "cpu.h"
29#include "exec-all.h"
30#include "gdbstub.h"
2328826b
MF
31#include "host-utils.h"
32#if !defined(CONFIG_USER_ONLY)
33#include "hw/loader.h"
34#endif
35
1bba0dc9 36void cpu_state_reset(CPUXtensaState *env)
2328826b 37{
5087a72c 38 cpu_reset(ENV_GET_CPU(env));
2328826b
MF
39}
40
ac8b7db4
MF
41static struct XtensaConfigList *xtensa_cores;
42
43void xtensa_register_core(XtensaConfigList *node)
44{
45 node->next = xtensa_cores;
46 xtensa_cores = node;
47}
dedc5eae 48
97129ac8 49static uint32_t check_hw_breakpoints(CPUXtensaState *env)
f14c4b5f
MF
50{
51 unsigned i;
52
53 for (i = 0; i < env->config->ndbreak; ++i) {
54 if (env->cpu_watchpoint[i] &&
55 env->cpu_watchpoint[i]->flags & BP_WATCHPOINT_HIT) {
56 return DEBUGCAUSE_DB | (i << DEBUGCAUSE_DBNUM_SHIFT);
57 }
58 }
59 return 0;
60}
61
62static CPUDebugExcpHandler *prev_debug_excp_handler;
63
97129ac8 64static void breakpoint_handler(CPUXtensaState *env)
f14c4b5f
MF
65{
66 if (env->watchpoint_hit) {
67 if (env->watchpoint_hit->flags & BP_CPU) {
68 uint32_t cause;
69
70 env->watchpoint_hit = NULL;
71 cause = check_hw_breakpoints(env);
72 if (cause) {
73 debug_exception_env(env, cause);
74 }
75 cpu_resume_from_signal(env, NULL);
76 }
77 }
78 if (prev_debug_excp_handler) {
79 prev_debug_excp_handler(env);
80 }
81}
82
2328826b
MF
83CPUXtensaState *cpu_xtensa_init(const char *cpu_model)
84{
85 static int tcg_inited;
f14c4b5f 86 static int debug_handler_inited;
a4633e16 87 XtensaCPU *cpu;
2328826b 88 CPUXtensaState *env;
dedc5eae 89 const XtensaConfig *config = NULL;
ac8b7db4 90 XtensaConfigList *core = xtensa_cores;
dedc5eae 91
ac8b7db4
MF
92 for (; core; core = core->next)
93 if (strcmp(core->config->name, cpu_model) == 0) {
94 config = core->config;
dedc5eae
MF
95 break;
96 }
97
98 if (config == NULL) {
99 return NULL;
100 }
2328826b 101
a4633e16
AF
102 cpu = XTENSA_CPU(object_new(TYPE_XTENSA_CPU));
103 env = &cpu->env;
dedc5eae 104 env->config = config;
2328826b
MF
105
106 if (!tcg_inited) {
107 tcg_inited = 1;
108 xtensa_translate_init();
109 }
110
f14c4b5f
MF
111 if (!debug_handler_inited && tcg_enabled()) {
112 debug_handler_inited = 1;
113 prev_debug_excp_handler =
114 cpu_set_debug_excp_handler(breakpoint_handler);
115 }
116
b994e91b 117 xtensa_irq_init(env);
2328826b
MF
118 qemu_init_vcpu(env);
119 return env;
120}
121
122
123void xtensa_cpu_list(FILE *f, fprintf_function cpu_fprintf)
124{
ac8b7db4 125 XtensaConfigList *core = xtensa_cores;
dedc5eae 126 cpu_fprintf(f, "Available CPUs:\n");
ac8b7db4
MF
127 for (; core; core = core->next) {
128 cpu_fprintf(f, " %s\n", core->config->name);
dedc5eae 129 }
2328826b
MF
130}
131
97129ac8 132target_phys_addr_t cpu_get_phys_page_debug(CPUXtensaState *env, target_ulong addr)
2328826b 133{
b67ea0cd
MF
134 uint32_t paddr;
135 uint32_t page_size;
136 unsigned access;
137
138 if (xtensa_get_physical_addr(env, addr, 0, 0,
139 &paddr, &page_size, &access) == 0) {
140 return paddr;
141 }
142 if (xtensa_get_physical_addr(env, addr, 2, 0,
143 &paddr, &page_size, &access) == 0) {
144 return paddr;
145 }
146 return ~0;
2328826b
MF
147}
148
97129ac8 149static uint32_t relocated_vector(CPUXtensaState *env, uint32_t vector)
97836cee
MF
150{
151 if (xtensa_option_enabled(env->config,
152 XTENSA_OPTION_RELOCATABLE_VECTOR)) {
153 return vector - env->config->vecbase + env->sregs[VECBASE];
154 } else {
155 return vector;
156 }
157}
158
b994e91b
MF
159/*!
160 * Handle penging IRQ.
161 * For the high priority interrupt jump to the corresponding interrupt vector.
162 * For the level-1 interrupt convert it to either user, kernel or double
163 * exception with the 'level-1 interrupt' exception cause.
164 */
97129ac8 165static void handle_interrupt(CPUXtensaState *env)
b994e91b
MF
166{
167 int level = env->pending_irq_level;
168
169 if (level > xtensa_get_cintlevel(env) &&
170 level <= env->config->nlevel &&
171 (env->config->level_mask[level] &
172 env->sregs[INTSET] &
173 env->sregs[INTENABLE])) {
174 if (level > 1) {
175 env->sregs[EPC1 + level - 1] = env->pc;
176 env->sregs[EPS2 + level - 2] = env->sregs[PS];
177 env->sregs[PS] =
178 (env->sregs[PS] & ~PS_INTLEVEL) | level | PS_EXCM;
97836cee
MF
179 env->pc = relocated_vector(env,
180 env->config->interrupt_vector[level]);
b994e91b
MF
181 } else {
182 env->sregs[EXCCAUSE] = LEVEL1_INTERRUPT_CAUSE;
183
184 if (env->sregs[PS] & PS_EXCM) {
185 if (env->config->ndepc) {
186 env->sregs[DEPC] = env->pc;
187 } else {
188 env->sregs[EPC1] = env->pc;
189 }
190 env->exception_index = EXC_DOUBLE;
191 } else {
192 env->sregs[EPC1] = env->pc;
193 env->exception_index =
194 (env->sregs[PS] & PS_UM) ? EXC_USER : EXC_KERNEL;
195 }
196 env->sregs[PS] |= PS_EXCM;
197 }
198 env->exception_taken = 1;
199 }
200}
201
97129ac8 202void do_interrupt(CPUXtensaState *env)
2328826b 203{
b994e91b
MF
204 if (env->exception_index == EXC_IRQ) {
205 qemu_log_mask(CPU_LOG_INT,
206 "%s(EXC_IRQ) level = %d, cintlevel = %d, "
207 "pc = %08x, a0 = %08x, ps = %08x, "
208 "intset = %08x, intenable = %08x, "
209 "ccount = %08x\n",
210 __func__, env->pending_irq_level, xtensa_get_cintlevel(env),
211 env->pc, env->regs[0], env->sregs[PS],
212 env->sregs[INTSET], env->sregs[INTENABLE],
213 env->sregs[CCOUNT]);
214 handle_interrupt(env);
215 }
216
40643d7c
MF
217 switch (env->exception_index) {
218 case EXC_WINDOW_OVERFLOW4:
219 case EXC_WINDOW_UNDERFLOW4:
220 case EXC_WINDOW_OVERFLOW8:
221 case EXC_WINDOW_UNDERFLOW8:
222 case EXC_WINDOW_OVERFLOW12:
223 case EXC_WINDOW_UNDERFLOW12:
224 case EXC_KERNEL:
225 case EXC_USER:
226 case EXC_DOUBLE:
e61dc8f7 227 case EXC_DEBUG:
b994e91b
MF
228 qemu_log_mask(CPU_LOG_INT, "%s(%d) "
229 "pc = %08x, a0 = %08x, ps = %08x, ccount = %08x\n",
230 __func__, env->exception_index,
231 env->pc, env->regs[0], env->sregs[PS], env->sregs[CCOUNT]);
40643d7c 232 if (env->config->exception_vector[env->exception_index]) {
97836cee
MF
233 env->pc = relocated_vector(env,
234 env->config->exception_vector[env->exception_index]);
40643d7c
MF
235 env->exception_taken = 1;
236 } else {
237 qemu_log("%s(pc = %08x) bad exception_index: %d\n",
238 __func__, env->pc, env->exception_index);
239 }
240 break;
241
b994e91b
MF
242 case EXC_IRQ:
243 break;
244
245 default:
246 qemu_log("%s(pc = %08x) unknown exception_index: %d\n",
247 __func__, env->pc, env->exception_index);
248 break;
40643d7c 249 }
b994e91b 250 check_interrupts(env);
2328826b 251}
b67ea0cd 252
97129ac8 253static void reset_tlb_mmu_all_ways(CPUXtensaState *env,
b67ea0cd
MF
254 const xtensa_tlb *tlb, xtensa_tlb_entry entry[][MAX_TLB_WAY_SIZE])
255{
256 unsigned wi, ei;
257
258 for (wi = 0; wi < tlb->nways; ++wi) {
259 for (ei = 0; ei < tlb->way_size[wi]; ++ei) {
260 entry[wi][ei].asid = 0;
261 entry[wi][ei].variable = true;
262 }
263 }
264}
265
97129ac8 266static void reset_tlb_mmu_ways56(CPUXtensaState *env,
b67ea0cd
MF
267 const xtensa_tlb *tlb, xtensa_tlb_entry entry[][MAX_TLB_WAY_SIZE])
268{
269 if (!tlb->varway56) {
270 static const xtensa_tlb_entry way5[] = {
271 {
272 .vaddr = 0xd0000000,
273 .paddr = 0,
274 .asid = 1,
275 .attr = 7,
276 .variable = false,
277 }, {
278 .vaddr = 0xd8000000,
279 .paddr = 0,
280 .asid = 1,
281 .attr = 3,
282 .variable = false,
283 }
284 };
285 static const xtensa_tlb_entry way6[] = {
286 {
287 .vaddr = 0xe0000000,
288 .paddr = 0xf0000000,
289 .asid = 1,
290 .attr = 7,
291 .variable = false,
292 }, {
293 .vaddr = 0xf0000000,
294 .paddr = 0xf0000000,
295 .asid = 1,
296 .attr = 3,
297 .variable = false,
298 }
299 };
300 memcpy(entry[5], way5, sizeof(way5));
301 memcpy(entry[6], way6, sizeof(way6));
302 } else {
303 uint32_t ei;
304 for (ei = 0; ei < 8; ++ei) {
305 entry[6][ei].vaddr = ei << 29;
306 entry[6][ei].paddr = ei << 29;
307 entry[6][ei].asid = 1;
0fdd2e1d 308 entry[6][ei].attr = 3;
b67ea0cd
MF
309 }
310 }
311}
312
97129ac8 313static void reset_tlb_region_way0(CPUXtensaState *env,
b67ea0cd
MF
314 xtensa_tlb_entry entry[][MAX_TLB_WAY_SIZE])
315{
316 unsigned ei;
317
318 for (ei = 0; ei < 8; ++ei) {
319 entry[0][ei].vaddr = ei << 29;
320 entry[0][ei].paddr = ei << 29;
321 entry[0][ei].asid = 1;
322 entry[0][ei].attr = 2;
323 entry[0][ei].variable = true;
324 }
325}
326
5087a72c 327void reset_mmu(CPUXtensaState *env)
b67ea0cd
MF
328{
329 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
330 env->sregs[RASID] = 0x04030201;
331 env->sregs[ITLBCFG] = 0;
332 env->sregs[DTLBCFG] = 0;
333 env->autorefill_idx = 0;
334 reset_tlb_mmu_all_ways(env, &env->config->itlb, env->itlb);
335 reset_tlb_mmu_all_ways(env, &env->config->dtlb, env->dtlb);
336 reset_tlb_mmu_ways56(env, &env->config->itlb, env->itlb);
337 reset_tlb_mmu_ways56(env, &env->config->dtlb, env->dtlb);
338 } else {
339 reset_tlb_region_way0(env, env->itlb);
340 reset_tlb_region_way0(env, env->dtlb);
341 }
342}
343
97129ac8 344static unsigned get_ring(const CPUXtensaState *env, uint8_t asid)
b67ea0cd
MF
345{
346 unsigned i;
347 for (i = 0; i < 4; ++i) {
348 if (((env->sregs[RASID] >> i * 8) & 0xff) == asid) {
349 return i;
350 }
351 }
352 return 0xff;
353}
354
355/*!
356 * Lookup xtensa TLB for the given virtual address.
357 * See ISA, 4.6.2.2
358 *
359 * \param pwi: [out] way index
360 * \param pei: [out] entry index
361 * \param pring: [out] access ring
362 * \return 0 if ok, exception cause code otherwise
363 */
97129ac8 364int xtensa_tlb_lookup(const CPUXtensaState *env, uint32_t addr, bool dtlb,
b67ea0cd
MF
365 uint32_t *pwi, uint32_t *pei, uint8_t *pring)
366{
367 const xtensa_tlb *tlb = dtlb ?
368 &env->config->dtlb : &env->config->itlb;
369 const xtensa_tlb_entry (*entry)[MAX_TLB_WAY_SIZE] = dtlb ?
370 env->dtlb : env->itlb;
371
372 int nhits = 0;
373 unsigned wi;
374
375 for (wi = 0; wi < tlb->nways; ++wi) {
376 uint32_t vpn;
377 uint32_t ei;
378 split_tlb_entry_spec_way(env, addr, dtlb, &vpn, wi, &ei);
379 if (entry[wi][ei].vaddr == vpn && entry[wi][ei].asid) {
380 unsigned ring = get_ring(env, entry[wi][ei].asid);
381 if (ring < 4) {
382 if (++nhits > 1) {
383 return dtlb ?
384 LOAD_STORE_TLB_MULTI_HIT_CAUSE :
385 INST_TLB_MULTI_HIT_CAUSE;
386 }
387 *pwi = wi;
388 *pei = ei;
389 *pring = ring;
390 }
391 }
392 }
393 return nhits ? 0 :
394 (dtlb ? LOAD_STORE_TLB_MISS_CAUSE : INST_TLB_MISS_CAUSE);
395}
396
397/*!
398 * Convert MMU ATTR to PAGE_{READ,WRITE,EXEC} mask.
399 * See ISA, 4.6.5.10
400 */
401static unsigned mmu_attr_to_access(uint32_t attr)
402{
403 unsigned access = 0;
404 if (attr < 12) {
405 access |= PAGE_READ;
406 if (attr & 0x1) {
407 access |= PAGE_EXEC;
408 }
409 if (attr & 0x2) {
410 access |= PAGE_WRITE;
411 }
412 } else if (attr == 13) {
413 access |= PAGE_READ | PAGE_WRITE;
414 }
415 return access;
416}
417
418/*!
419 * Convert region protection ATTR to PAGE_{READ,WRITE,EXEC} mask.
420 * See ISA, 4.6.3.3
421 */
422static unsigned region_attr_to_access(uint32_t attr)
423{
424 unsigned access = 0;
425 if ((attr < 6 && attr != 3) || attr == 14) {
426 access |= PAGE_READ | PAGE_WRITE;
427 }
428 if (attr > 0 && attr < 6) {
429 access |= PAGE_EXEC;
430 }
431 return access;
432}
433
434static bool is_access_granted(unsigned access, int is_write)
435{
436 switch (is_write) {
437 case 0:
438 return access & PAGE_READ;
439
440 case 1:
441 return access & PAGE_WRITE;
442
443 case 2:
444 return access & PAGE_EXEC;
445
446 default:
447 return 0;
448 }
449}
450
97129ac8 451static int autorefill_mmu(CPUXtensaState *env, uint32_t vaddr, bool dtlb,
b67ea0cd
MF
452 uint32_t *wi, uint32_t *ei, uint8_t *ring);
453
97129ac8 454static int get_physical_addr_mmu(CPUXtensaState *env,
b67ea0cd
MF
455 uint32_t vaddr, int is_write, int mmu_idx,
456 uint32_t *paddr, uint32_t *page_size, unsigned *access)
457{
458 bool dtlb = is_write != 2;
459 uint32_t wi;
460 uint32_t ei;
461 uint8_t ring;
462 int ret = xtensa_tlb_lookup(env, vaddr, dtlb, &wi, &ei, &ring);
463
464 if ((ret == INST_TLB_MISS_CAUSE || ret == LOAD_STORE_TLB_MISS_CAUSE) &&
465 (mmu_idx != 0 || ((vaddr ^ env->sregs[PTEVADDR]) & 0xffc00000)) &&
466 autorefill_mmu(env, vaddr, dtlb, &wi, &ei, &ring) == 0) {
467 ret = 0;
468 }
469 if (ret != 0) {
470 return ret;
471 }
472
473 const xtensa_tlb_entry *entry =
474 xtensa_tlb_get_entry(env, dtlb, wi, ei);
475
476 if (ring < mmu_idx) {
477 return dtlb ?
478 LOAD_STORE_PRIVILEGE_CAUSE :
479 INST_FETCH_PRIVILEGE_CAUSE;
480 }
481
482 *access = mmu_attr_to_access(entry->attr);
483 if (!is_access_granted(*access, is_write)) {
484 return dtlb ?
485 (is_write ?
486 STORE_PROHIBITED_CAUSE :
487 LOAD_PROHIBITED_CAUSE) :
488 INST_FETCH_PROHIBITED_CAUSE;
489 }
490
491 *paddr = entry->paddr | (vaddr & ~xtensa_tlb_get_addr_mask(env, dtlb, wi));
492 *page_size = ~xtensa_tlb_get_addr_mask(env, dtlb, wi) + 1;
493
494 return 0;
495}
496
97129ac8 497static int autorefill_mmu(CPUXtensaState *env, uint32_t vaddr, bool dtlb,
b67ea0cd
MF
498 uint32_t *wi, uint32_t *ei, uint8_t *ring)
499{
500 uint32_t paddr;
501 uint32_t page_size;
502 unsigned access;
503 uint32_t pt_vaddr =
504 (env->sregs[PTEVADDR] | (vaddr >> 10)) & 0xfffffffc;
505 int ret = get_physical_addr_mmu(env, pt_vaddr, 0, 0,
506 &paddr, &page_size, &access);
507
508 qemu_log("%s: trying autorefill(%08x) -> %08x\n", __func__,
509 vaddr, ret ? ~0 : paddr);
510
511 if (ret == 0) {
512 uint32_t vpn;
513 uint32_t pte = ldl_phys(paddr);
514
515 *ring = (pte >> 4) & 0x3;
516 *wi = (++env->autorefill_idx) & 0x3;
517 split_tlb_entry_spec_way(env, vaddr, dtlb, &vpn, *wi, ei);
518 xtensa_tlb_set_entry(env, dtlb, *wi, *ei, vpn, pte);
519 qemu_log("%s: autorefill(%08x): %08x -> %08x\n",
520 __func__, vaddr, vpn, pte);
521 }
522 return ret;
523}
524
97129ac8 525static int get_physical_addr_region(CPUXtensaState *env,
b67ea0cd
MF
526 uint32_t vaddr, int is_write, int mmu_idx,
527 uint32_t *paddr, uint32_t *page_size, unsigned *access)
528{
529 bool dtlb = is_write != 2;
530 uint32_t wi = 0;
531 uint32_t ei = (vaddr >> 29) & 0x7;
532 const xtensa_tlb_entry *entry =
533 xtensa_tlb_get_entry(env, dtlb, wi, ei);
534
535 *access = region_attr_to_access(entry->attr);
536 if (!is_access_granted(*access, is_write)) {
537 return dtlb ?
538 (is_write ?
539 STORE_PROHIBITED_CAUSE :
540 LOAD_PROHIBITED_CAUSE) :
541 INST_FETCH_PROHIBITED_CAUSE;
542 }
543
544 *paddr = entry->paddr | (vaddr & ~REGION_PAGE_MASK);
545 *page_size = ~REGION_PAGE_MASK + 1;
546
547 return 0;
548}
549
550/*!
551 * Convert virtual address to physical addr.
552 * MMU may issue pagewalk and change xtensa autorefill TLB way entry.
553 *
554 * \return 0 if ok, exception cause code otherwise
555 */
97129ac8 556int xtensa_get_physical_addr(CPUXtensaState *env,
b67ea0cd
MF
557 uint32_t vaddr, int is_write, int mmu_idx,
558 uint32_t *paddr, uint32_t *page_size, unsigned *access)
559{
560 if (xtensa_option_enabled(env->config, XTENSA_OPTION_MMU)) {
561 return get_physical_addr_mmu(env, vaddr, is_write, mmu_idx,
562 paddr, page_size, access);
563 } else if (xtensa_option_bits_enabled(env->config,
564 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_PROTECTION) |
565 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_TRANSLATION))) {
566 return get_physical_addr_region(env, vaddr, is_write, mmu_idx,
567 paddr, page_size, access);
568 } else {
569 *paddr = vaddr;
570 *page_size = TARGET_PAGE_SIZE;
571 *access = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
572 return 0;
573 }
574}
692f737c
MF
575
576static void dump_tlb(FILE *f, fprintf_function cpu_fprintf,
97129ac8 577 CPUXtensaState *env, bool dtlb)
692f737c
MF
578{
579 unsigned wi, ei;
580 const xtensa_tlb *conf =
581 dtlb ? &env->config->dtlb : &env->config->itlb;
582 unsigned (*attr_to_access)(uint32_t) =
583 xtensa_option_enabled(env->config, XTENSA_OPTION_MMU) ?
584 mmu_attr_to_access : region_attr_to_access;
585
586 for (wi = 0; wi < conf->nways; ++wi) {
587 uint32_t sz = ~xtensa_tlb_get_addr_mask(env, dtlb, wi) + 1;
588 const char *sz_text;
589 bool print_header = true;
590
591 if (sz >= 0x100000) {
592 sz >>= 20;
593 sz_text = "MB";
594 } else {
595 sz >>= 10;
596 sz_text = "KB";
597 }
598
599 for (ei = 0; ei < conf->way_size[wi]; ++ei) {
600 const xtensa_tlb_entry *entry =
601 xtensa_tlb_get_entry(env, dtlb, wi, ei);
602
603 if (entry->asid) {
604 unsigned access = attr_to_access(entry->attr);
605
606 if (print_header) {
607 print_header = false;
608 cpu_fprintf(f, "Way %u (%d %s)\n", wi, sz, sz_text);
609 cpu_fprintf(f,
610 "\tVaddr Paddr ASID Attr RWX\n"
611 "\t---------- ---------- ---- ---- ---\n");
612 }
613 cpu_fprintf(f,
614 "\t0x%08x 0x%08x 0x%02x 0x%02x %c%c%c\n",
615 entry->vaddr,
616 entry->paddr,
617 entry->asid,
618 entry->attr,
619 (access & PAGE_READ) ? 'R' : '-',
620 (access & PAGE_WRITE) ? 'W' : '-',
621 (access & PAGE_EXEC) ? 'X' : '-');
622 }
623 }
624 }
625}
626
97129ac8 627void dump_mmu(FILE *f, fprintf_function cpu_fprintf, CPUXtensaState *env)
692f737c
MF
628{
629 if (xtensa_option_bits_enabled(env->config,
630 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_PROTECTION) |
631 XTENSA_OPTION_BIT(XTENSA_OPTION_REGION_TRANSLATION) |
632 XTENSA_OPTION_BIT(XTENSA_OPTION_MMU))) {
633
634 cpu_fprintf(f, "ITLB:\n");
635 dump_tlb(f, cpu_fprintf, env, false);
636 cpu_fprintf(f, "\nDTLB:\n");
637 dump_tlb(f, cpu_fprintf, env, true);
638 } else {
639 cpu_fprintf(f, "No TLB for this CPU core\n");
640 }
641}