hw/arm/virt: formatting: memory map
[qemu/ar7.git] / target-sparc / mmu_helper.c
blob61afbcf048cafd58a44e59e9e6559e3c2c2d93c4
1 /*
2 * Sparc MMU helpers
4 * Copyright (c) 2003-2005 Fabrice Bellard
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.
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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
20 #include "cpu.h"
21 #include "trace.h"
22 #include "exec/address-spaces.h"
24 /* Sparc MMU emulation */
26 #if defined(CONFIG_USER_ONLY)
28 int sparc_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
29 int mmu_idx)
31 if (rw & 2) {
32 cs->exception_index = TT_TFAULT;
33 } else {
34 cs->exception_index = TT_DFAULT;
36 return 1;
39 #else
41 #ifndef TARGET_SPARC64
43 * Sparc V8 Reference MMU (SRMMU)
45 static const int access_table[8][8] = {
46 { 0, 0, 0, 0, 8, 0, 12, 12 },
47 { 0, 0, 0, 0, 8, 0, 0, 0 },
48 { 8, 8, 0, 0, 0, 8, 12, 12 },
49 { 8, 8, 0, 0, 0, 8, 0, 0 },
50 { 8, 0, 8, 0, 8, 8, 12, 12 },
51 { 8, 0, 8, 0, 8, 0, 8, 0 },
52 { 8, 8, 8, 0, 8, 8, 12, 12 },
53 { 8, 8, 8, 0, 8, 8, 8, 0 }
56 static const int perm_table[2][8] = {
58 PAGE_READ,
59 PAGE_READ | PAGE_WRITE,
60 PAGE_READ | PAGE_EXEC,
61 PAGE_READ | PAGE_WRITE | PAGE_EXEC,
62 PAGE_EXEC,
63 PAGE_READ | PAGE_WRITE,
64 PAGE_READ | PAGE_EXEC,
65 PAGE_READ | PAGE_WRITE | PAGE_EXEC
68 PAGE_READ,
69 PAGE_READ | PAGE_WRITE,
70 PAGE_READ | PAGE_EXEC,
71 PAGE_READ | PAGE_WRITE | PAGE_EXEC,
72 PAGE_EXEC,
73 PAGE_READ,
79 static int get_physical_address(CPUSPARCState *env, hwaddr *physical,
80 int *prot, int *access_index,
81 target_ulong address, int rw, int mmu_idx,
82 target_ulong *page_size)
84 int access_perms = 0;
85 hwaddr pde_ptr;
86 uint32_t pde;
87 int error_code = 0, is_dirty, is_user;
88 unsigned long page_offset;
89 CPUState *cs = CPU(sparc_env_get_cpu(env));
91 is_user = mmu_idx == MMU_USER_IDX;
93 if ((env->mmuregs[0] & MMU_E) == 0) { /* MMU disabled */
94 *page_size = TARGET_PAGE_SIZE;
95 /* Boot mode: instruction fetches are taken from PROM */
96 if (rw == 2 && (env->mmuregs[0] & env->def->mmu_bm)) {
97 *physical = env->prom_addr | (address & 0x7ffffULL);
98 *prot = PAGE_READ | PAGE_EXEC;
99 return 0;
101 *physical = address;
102 *prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
103 return 0;
106 *access_index = ((rw & 1) << 2) | (rw & 2) | (is_user ? 0 : 1);
107 *physical = 0xffffffffffff0000ULL;
109 /* SPARC reference MMU table walk: Context table->L1->L2->PTE */
110 /* Context base + context number */
111 pde_ptr = (env->mmuregs[1] << 4) + (env->mmuregs[2] << 2);
112 pde = ldl_phys(cs->as, pde_ptr);
114 /* Ctx pde */
115 switch (pde & PTE_ENTRYTYPE_MASK) {
116 default:
117 case 0: /* Invalid */
118 return 1 << 2;
119 case 2: /* L0 PTE, maybe should not happen? */
120 case 3: /* Reserved */
121 return 4 << 2;
122 case 1: /* L0 PDE */
123 pde_ptr = ((address >> 22) & ~3) + ((pde & ~3) << 4);
124 pde = ldl_phys(cs->as, pde_ptr);
126 switch (pde & PTE_ENTRYTYPE_MASK) {
127 default:
128 case 0: /* Invalid */
129 return (1 << 8) | (1 << 2);
130 case 3: /* Reserved */
131 return (1 << 8) | (4 << 2);
132 case 1: /* L1 PDE */
133 pde_ptr = ((address & 0xfc0000) >> 16) + ((pde & ~3) << 4);
134 pde = ldl_phys(cs->as, pde_ptr);
136 switch (pde & PTE_ENTRYTYPE_MASK) {
137 default:
138 case 0: /* Invalid */
139 return (2 << 8) | (1 << 2);
140 case 3: /* Reserved */
141 return (2 << 8) | (4 << 2);
142 case 1: /* L2 PDE */
143 pde_ptr = ((address & 0x3f000) >> 10) + ((pde & ~3) << 4);
144 pde = ldl_phys(cs->as, pde_ptr);
146 switch (pde & PTE_ENTRYTYPE_MASK) {
147 default:
148 case 0: /* Invalid */
149 return (3 << 8) | (1 << 2);
150 case 1: /* PDE, should not happen */
151 case 3: /* Reserved */
152 return (3 << 8) | (4 << 2);
153 case 2: /* L3 PTE */
154 page_offset = 0;
156 *page_size = TARGET_PAGE_SIZE;
157 break;
158 case 2: /* L2 PTE */
159 page_offset = address & 0x3f000;
160 *page_size = 0x40000;
162 break;
163 case 2: /* L1 PTE */
164 page_offset = address & 0xfff000;
165 *page_size = 0x1000000;
169 /* check access */
170 access_perms = (pde & PTE_ACCESS_MASK) >> PTE_ACCESS_SHIFT;
171 error_code = access_table[*access_index][access_perms];
172 if (error_code && !((env->mmuregs[0] & MMU_NF) && is_user)) {
173 return error_code;
176 /* update page modified and dirty bits */
177 is_dirty = (rw & 1) && !(pde & PG_MODIFIED_MASK);
178 if (!(pde & PG_ACCESSED_MASK) || is_dirty) {
179 pde |= PG_ACCESSED_MASK;
180 if (is_dirty) {
181 pde |= PG_MODIFIED_MASK;
183 stl_phys_notdirty(cs->as, pde_ptr, pde);
186 /* the page can be put in the TLB */
187 *prot = perm_table[is_user][access_perms];
188 if (!(pde & PG_MODIFIED_MASK)) {
189 /* only set write access if already dirty... otherwise wait
190 for dirty access */
191 *prot &= ~PAGE_WRITE;
194 /* Even if large ptes, we map only one 4KB page in the cache to
195 avoid filling it too fast */
196 *physical = ((hwaddr)(pde & PTE_ADDR_MASK) << 4) + page_offset;
197 return error_code;
200 /* Perform address translation */
201 int sparc_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
202 int mmu_idx)
204 SPARCCPU *cpu = SPARC_CPU(cs);
205 CPUSPARCState *env = &cpu->env;
206 hwaddr paddr;
207 target_ulong vaddr;
208 target_ulong page_size;
209 int error_code = 0, prot, access_index;
211 address &= TARGET_PAGE_MASK;
212 error_code = get_physical_address(env, &paddr, &prot, &access_index,
213 address, rw, mmu_idx, &page_size);
214 vaddr = address;
215 if (error_code == 0) {
216 #ifdef DEBUG_MMU
217 printf("Translate at %" VADDR_PRIx " -> " TARGET_FMT_plx ", vaddr "
218 TARGET_FMT_lx "\n", address, paddr, vaddr);
219 #endif
220 tlb_set_page(cs, vaddr, paddr, prot, mmu_idx, page_size);
221 return 0;
224 if (env->mmuregs[3]) { /* Fault status register */
225 env->mmuregs[3] = 1; /* overflow (not read before another fault) */
227 env->mmuregs[3] |= (access_index << 5) | error_code | 2;
228 env->mmuregs[4] = address; /* Fault address register */
230 if ((env->mmuregs[0] & MMU_NF) || env->psret == 0) {
231 /* No fault mode: if a mapping is available, just override
232 permissions. If no mapping is available, redirect accesses to
233 neverland. Fake/overridden mappings will be flushed when
234 switching to normal mode. */
235 prot = PAGE_READ | PAGE_WRITE | PAGE_EXEC;
236 tlb_set_page(cs, vaddr, paddr, prot, mmu_idx, TARGET_PAGE_SIZE);
237 return 0;
238 } else {
239 if (rw & 2) {
240 cs->exception_index = TT_TFAULT;
241 } else {
242 cs->exception_index = TT_DFAULT;
244 return 1;
248 target_ulong mmu_probe(CPUSPARCState *env, target_ulong address, int mmulev)
250 CPUState *cs = CPU(sparc_env_get_cpu(env));
251 hwaddr pde_ptr;
252 uint32_t pde;
254 /* Context base + context number */
255 pde_ptr = (hwaddr)(env->mmuregs[1] << 4) +
256 (env->mmuregs[2] << 2);
257 pde = ldl_phys(cs->as, pde_ptr);
259 switch (pde & PTE_ENTRYTYPE_MASK) {
260 default:
261 case 0: /* Invalid */
262 case 2: /* PTE, maybe should not happen? */
263 case 3: /* Reserved */
264 return 0;
265 case 1: /* L1 PDE */
266 if (mmulev == 3) {
267 return pde;
269 pde_ptr = ((address >> 22) & ~3) + ((pde & ~3) << 4);
270 pde = ldl_phys(cs->as, pde_ptr);
272 switch (pde & PTE_ENTRYTYPE_MASK) {
273 default:
274 case 0: /* Invalid */
275 case 3: /* Reserved */
276 return 0;
277 case 2: /* L1 PTE */
278 return pde;
279 case 1: /* L2 PDE */
280 if (mmulev == 2) {
281 return pde;
283 pde_ptr = ((address & 0xfc0000) >> 16) + ((pde & ~3) << 4);
284 pde = ldl_phys(cs->as, pde_ptr);
286 switch (pde & PTE_ENTRYTYPE_MASK) {
287 default:
288 case 0: /* Invalid */
289 case 3: /* Reserved */
290 return 0;
291 case 2: /* L2 PTE */
292 return pde;
293 case 1: /* L3 PDE */
294 if (mmulev == 1) {
295 return pde;
297 pde_ptr = ((address & 0x3f000) >> 10) + ((pde & ~3) << 4);
298 pde = ldl_phys(cs->as, pde_ptr);
300 switch (pde & PTE_ENTRYTYPE_MASK) {
301 default:
302 case 0: /* Invalid */
303 case 1: /* PDE, should not happen */
304 case 3: /* Reserved */
305 return 0;
306 case 2: /* L3 PTE */
307 return pde;
312 return 0;
315 void dump_mmu(FILE *f, fprintf_function cpu_fprintf, CPUSPARCState *env)
317 CPUState *cs = CPU(sparc_env_get_cpu(env));
318 target_ulong va, va1, va2;
319 unsigned int n, m, o;
320 hwaddr pde_ptr, pa;
321 uint32_t pde;
323 pde_ptr = (env->mmuregs[1] << 4) + (env->mmuregs[2] << 2);
324 pde = ldl_phys(cs->as, pde_ptr);
325 (*cpu_fprintf)(f, "Root ptr: " TARGET_FMT_plx ", ctx: %d\n",
326 (hwaddr)env->mmuregs[1] << 4, env->mmuregs[2]);
327 for (n = 0, va = 0; n < 256; n++, va += 16 * 1024 * 1024) {
328 pde = mmu_probe(env, va, 2);
329 if (pde) {
330 pa = cpu_get_phys_page_debug(cs, va);
331 (*cpu_fprintf)(f, "VA: " TARGET_FMT_lx ", PA: " TARGET_FMT_plx
332 " PDE: " TARGET_FMT_lx "\n", va, pa, pde);
333 for (m = 0, va1 = va; m < 64; m++, va1 += 256 * 1024) {
334 pde = mmu_probe(env, va1, 1);
335 if (pde) {
336 pa = cpu_get_phys_page_debug(cs, va1);
337 (*cpu_fprintf)(f, " VA: " TARGET_FMT_lx ", PA: "
338 TARGET_FMT_plx " PDE: " TARGET_FMT_lx "\n",
339 va1, pa, pde);
340 for (o = 0, va2 = va1; o < 64; o++, va2 += 4 * 1024) {
341 pde = mmu_probe(env, va2, 0);
342 if (pde) {
343 pa = cpu_get_phys_page_debug(cs, va2);
344 (*cpu_fprintf)(f, " VA: " TARGET_FMT_lx ", PA: "
345 TARGET_FMT_plx " PTE: "
346 TARGET_FMT_lx "\n",
347 va2, pa, pde);
356 /* Gdb expects all registers windows to be flushed in ram. This function handles
357 * reads (and only reads) in stack frames as if windows were flushed. We assume
358 * that the sparc ABI is followed.
360 int sparc_cpu_memory_rw_debug(CPUState *cs, vaddr address,
361 uint8_t *buf, int len, bool is_write)
363 SPARCCPU *cpu = SPARC_CPU(cs);
364 CPUSPARCState *env = &cpu->env;
365 target_ulong addr = address;
366 int i;
367 int len1;
368 int cwp = env->cwp;
370 if (!is_write) {
371 for (i = 0; i < env->nwindows; i++) {
372 int off;
373 target_ulong fp = env->regbase[cwp * 16 + 22];
375 /* Assume fp == 0 means end of frame. */
376 if (fp == 0) {
377 break;
380 cwp = cpu_cwp_inc(env, cwp + 1);
382 /* Invalid window ? */
383 if (env->wim & (1 << cwp)) {
384 break;
387 /* According to the ABI, the stack is growing downward. */
388 if (addr + len < fp) {
389 break;
392 /* Not in this frame. */
393 if (addr > fp + 64) {
394 continue;
397 /* Handle access before this window. */
398 if (addr < fp) {
399 len1 = fp - addr;
400 if (cpu_memory_rw_debug(cs, addr, buf, len1, is_write) != 0) {
401 return -1;
403 addr += len1;
404 len -= len1;
405 buf += len1;
408 /* Access byte per byte to registers. Not very efficient but speed
409 * is not critical.
411 off = addr - fp;
412 len1 = 64 - off;
414 if (len1 > len) {
415 len1 = len;
418 for (; len1; len1--) {
419 int reg = cwp * 16 + 8 + (off >> 2);
420 union {
421 uint32_t v;
422 uint8_t c[4];
423 } u;
424 u.v = cpu_to_be32(env->regbase[reg]);
425 *buf++ = u.c[off & 3];
426 addr++;
427 len--;
428 off++;
431 if (len == 0) {
432 return 0;
436 return cpu_memory_rw_debug(cs, addr, buf, len, is_write);
439 #else /* !TARGET_SPARC64 */
441 /* 41 bit physical address space */
442 static inline hwaddr ultrasparc_truncate_physical(uint64_t x)
444 return x & 0x1ffffffffffULL;
448 * UltraSparc IIi I/DMMUs
451 /* Returns true if TTE tag is valid and matches virtual address value
452 in context requires virtual address mask value calculated from TTE
453 entry size */
454 static inline int ultrasparc_tag_match(SparcTLBEntry *tlb,
455 uint64_t address, uint64_t context,
456 hwaddr *physical)
458 uint64_t mask;
460 switch (TTE_PGSIZE(tlb->tte)) {
461 default:
462 case 0x0: /* 8k */
463 mask = 0xffffffffffffe000ULL;
464 break;
465 case 0x1: /* 64k */
466 mask = 0xffffffffffff0000ULL;
467 break;
468 case 0x2: /* 512k */
469 mask = 0xfffffffffff80000ULL;
470 break;
471 case 0x3: /* 4M */
472 mask = 0xffffffffffc00000ULL;
473 break;
476 /* valid, context match, virtual address match? */
477 if (TTE_IS_VALID(tlb->tte) &&
478 (TTE_IS_GLOBAL(tlb->tte) || tlb_compare_context(tlb, context))
479 && compare_masked(address, tlb->tag, mask)) {
480 /* decode physical address */
481 *physical = ((tlb->tte & mask) | (address & ~mask)) & 0x1ffffffe000ULL;
482 return 1;
485 return 0;
488 static int get_physical_address_data(CPUSPARCState *env,
489 hwaddr *physical, int *prot,
490 target_ulong address, int rw, int mmu_idx)
492 CPUState *cs = CPU(sparc_env_get_cpu(env));
493 unsigned int i;
494 uint64_t context;
495 uint64_t sfsr = 0;
497 int is_user = (mmu_idx == MMU_USER_IDX ||
498 mmu_idx == MMU_USER_SECONDARY_IDX);
500 if ((env->lsu & DMMU_E) == 0) { /* DMMU disabled */
501 *physical = ultrasparc_truncate_physical(address);
502 *prot = PAGE_READ | PAGE_WRITE;
503 return 0;
506 switch (mmu_idx) {
507 case MMU_USER_IDX:
508 case MMU_KERNEL_IDX:
509 context = env->dmmu.mmu_primary_context & 0x1fff;
510 sfsr |= SFSR_CT_PRIMARY;
511 break;
512 case MMU_USER_SECONDARY_IDX:
513 case MMU_KERNEL_SECONDARY_IDX:
514 context = env->dmmu.mmu_secondary_context & 0x1fff;
515 sfsr |= SFSR_CT_SECONDARY;
516 break;
517 case MMU_NUCLEUS_IDX:
518 sfsr |= SFSR_CT_NUCLEUS;
519 /* FALLTHRU */
520 default:
521 context = 0;
522 break;
525 if (rw == 1) {
526 sfsr |= SFSR_WRITE_BIT;
527 } else if (rw == 4) {
528 sfsr |= SFSR_NF_BIT;
531 for (i = 0; i < 64; i++) {
532 /* ctx match, vaddr match, valid? */
533 if (ultrasparc_tag_match(&env->dtlb[i], address, context, physical)) {
534 int do_fault = 0;
536 /* access ok? */
537 /* multiple bits in SFSR.FT may be set on TT_DFAULT */
538 if (TTE_IS_PRIV(env->dtlb[i].tte) && is_user) {
539 do_fault = 1;
540 sfsr |= SFSR_FT_PRIV_BIT; /* privilege violation */
541 trace_mmu_helper_dfault(address, context, mmu_idx, env->tl);
543 if (rw == 4) {
544 if (TTE_IS_SIDEEFFECT(env->dtlb[i].tte)) {
545 do_fault = 1;
546 sfsr |= SFSR_FT_NF_E_BIT;
548 } else {
549 if (TTE_IS_NFO(env->dtlb[i].tte)) {
550 do_fault = 1;
551 sfsr |= SFSR_FT_NFO_BIT;
555 if (do_fault) {
556 /* faults above are reported with TT_DFAULT. */
557 cs->exception_index = TT_DFAULT;
558 } else if (!TTE_IS_W_OK(env->dtlb[i].tte) && (rw == 1)) {
559 do_fault = 1;
560 cs->exception_index = TT_DPROT;
562 trace_mmu_helper_dprot(address, context, mmu_idx, env->tl);
565 if (!do_fault) {
566 *prot = PAGE_READ;
567 if (TTE_IS_W_OK(env->dtlb[i].tte)) {
568 *prot |= PAGE_WRITE;
571 TTE_SET_USED(env->dtlb[i].tte);
573 return 0;
576 if (env->dmmu.sfsr & SFSR_VALID_BIT) { /* Fault status register */
577 sfsr |= SFSR_OW_BIT; /* overflow (not read before
578 another fault) */
581 if (env->pstate & PS_PRIV) {
582 sfsr |= SFSR_PR_BIT;
585 /* FIXME: ASI field in SFSR must be set */
586 env->dmmu.sfsr = sfsr | SFSR_VALID_BIT;
588 env->dmmu.sfar = address; /* Fault address register */
590 env->dmmu.tag_access = (address & ~0x1fffULL) | context;
592 return 1;
596 trace_mmu_helper_dmiss(address, context);
599 * On MMU misses:
600 * - UltraSPARC IIi: SFSR and SFAR unmodified
601 * - JPS1: SFAR updated and some fields of SFSR updated
603 env->dmmu.tag_access = (address & ~0x1fffULL) | context;
604 cs->exception_index = TT_DMISS;
605 return 1;
608 static int get_physical_address_code(CPUSPARCState *env,
609 hwaddr *physical, int *prot,
610 target_ulong address, int mmu_idx)
612 CPUState *cs = CPU(sparc_env_get_cpu(env));
613 unsigned int i;
614 uint64_t context;
616 int is_user = (mmu_idx == MMU_USER_IDX ||
617 mmu_idx == MMU_USER_SECONDARY_IDX);
619 if ((env->lsu & IMMU_E) == 0 || (env->pstate & PS_RED) != 0) {
620 /* IMMU disabled */
621 *physical = ultrasparc_truncate_physical(address);
622 *prot = PAGE_EXEC;
623 return 0;
626 if (env->tl == 0) {
627 /* PRIMARY context */
628 context = env->dmmu.mmu_primary_context & 0x1fff;
629 } else {
630 /* NUCLEUS context */
631 context = 0;
634 for (i = 0; i < 64; i++) {
635 /* ctx match, vaddr match, valid? */
636 if (ultrasparc_tag_match(&env->itlb[i],
637 address, context, physical)) {
638 /* access ok? */
639 if (TTE_IS_PRIV(env->itlb[i].tte) && is_user) {
640 /* Fault status register */
641 if (env->immu.sfsr & SFSR_VALID_BIT) {
642 env->immu.sfsr = SFSR_OW_BIT; /* overflow (not read before
643 another fault) */
644 } else {
645 env->immu.sfsr = 0;
647 if (env->pstate & PS_PRIV) {
648 env->immu.sfsr |= SFSR_PR_BIT;
650 if (env->tl > 0) {
651 env->immu.sfsr |= SFSR_CT_NUCLEUS;
654 /* FIXME: ASI field in SFSR must be set */
655 env->immu.sfsr |= SFSR_FT_PRIV_BIT | SFSR_VALID_BIT;
656 cs->exception_index = TT_TFAULT;
658 env->immu.tag_access = (address & ~0x1fffULL) | context;
660 trace_mmu_helper_tfault(address, context);
662 return 1;
664 *prot = PAGE_EXEC;
665 TTE_SET_USED(env->itlb[i].tte);
666 return 0;
670 trace_mmu_helper_tmiss(address, context);
672 /* Context is stored in DMMU (dmmuregs[1]) also for IMMU */
673 env->immu.tag_access = (address & ~0x1fffULL) | context;
674 cs->exception_index = TT_TMISS;
675 return 1;
678 static int get_physical_address(CPUSPARCState *env, hwaddr *physical,
679 int *prot, int *access_index,
680 target_ulong address, int rw, int mmu_idx,
681 target_ulong *page_size)
683 /* ??? We treat everything as a small page, then explicitly flush
684 everything when an entry is evicted. */
685 *page_size = TARGET_PAGE_SIZE;
687 /* safety net to catch wrong softmmu index use from dynamic code */
688 if (env->tl > 0 && mmu_idx != MMU_NUCLEUS_IDX) {
689 if (rw == 2) {
690 trace_mmu_helper_get_phys_addr_code(env->tl, mmu_idx,
691 env->dmmu.mmu_primary_context,
692 env->dmmu.mmu_secondary_context,
693 address);
694 } else {
695 trace_mmu_helper_get_phys_addr_data(env->tl, mmu_idx,
696 env->dmmu.mmu_primary_context,
697 env->dmmu.mmu_secondary_context,
698 address);
702 if (rw == 2) {
703 return get_physical_address_code(env, physical, prot, address,
704 mmu_idx);
705 } else {
706 return get_physical_address_data(env, physical, prot, address, rw,
707 mmu_idx);
711 /* Perform address translation */
712 int sparc_cpu_handle_mmu_fault(CPUState *cs, vaddr address, int rw,
713 int mmu_idx)
715 SPARCCPU *cpu = SPARC_CPU(cs);
716 CPUSPARCState *env = &cpu->env;
717 target_ulong vaddr;
718 hwaddr paddr;
719 target_ulong page_size;
720 int error_code = 0, prot, access_index;
722 address &= TARGET_PAGE_MASK;
723 error_code = get_physical_address(env, &paddr, &prot, &access_index,
724 address, rw, mmu_idx, &page_size);
725 if (error_code == 0) {
726 vaddr = address;
728 trace_mmu_helper_mmu_fault(address, paddr, mmu_idx, env->tl,
729 env->dmmu.mmu_primary_context,
730 env->dmmu.mmu_secondary_context);
732 tlb_set_page(cs, vaddr, paddr, prot, mmu_idx, page_size);
733 return 0;
735 /* XXX */
736 return 1;
739 void dump_mmu(FILE *f, fprintf_function cpu_fprintf, CPUSPARCState *env)
741 unsigned int i;
742 const char *mask;
744 (*cpu_fprintf)(f, "MMU contexts: Primary: %" PRId64 ", Secondary: %"
745 PRId64 "\n",
746 env->dmmu.mmu_primary_context,
747 env->dmmu.mmu_secondary_context);
748 if ((env->lsu & DMMU_E) == 0) {
749 (*cpu_fprintf)(f, "DMMU disabled\n");
750 } else {
751 (*cpu_fprintf)(f, "DMMU dump\n");
752 for (i = 0; i < 64; i++) {
753 switch (TTE_PGSIZE(env->dtlb[i].tte)) {
754 default:
755 case 0x0:
756 mask = " 8k";
757 break;
758 case 0x1:
759 mask = " 64k";
760 break;
761 case 0x2:
762 mask = "512k";
763 break;
764 case 0x3:
765 mask = " 4M";
766 break;
768 if (TTE_IS_VALID(env->dtlb[i].tte)) {
769 (*cpu_fprintf)(f, "[%02u] VA: %" PRIx64 ", PA: %llx"
770 ", %s, %s, %s, %s, ctx %" PRId64 " %s\n",
772 env->dtlb[i].tag & (uint64_t)~0x1fffULL,
773 TTE_PA(env->dtlb[i].tte),
774 mask,
775 TTE_IS_PRIV(env->dtlb[i].tte) ? "priv" : "user",
776 TTE_IS_W_OK(env->dtlb[i].tte) ? "RW" : "RO",
777 TTE_IS_LOCKED(env->dtlb[i].tte) ?
778 "locked" : "unlocked",
779 env->dtlb[i].tag & (uint64_t)0x1fffULL,
780 TTE_IS_GLOBAL(env->dtlb[i].tte) ?
781 "global" : "local");
785 if ((env->lsu & IMMU_E) == 0) {
786 (*cpu_fprintf)(f, "IMMU disabled\n");
787 } else {
788 (*cpu_fprintf)(f, "IMMU dump\n");
789 for (i = 0; i < 64; i++) {
790 switch (TTE_PGSIZE(env->itlb[i].tte)) {
791 default:
792 case 0x0:
793 mask = " 8k";
794 break;
795 case 0x1:
796 mask = " 64k";
797 break;
798 case 0x2:
799 mask = "512k";
800 break;
801 case 0x3:
802 mask = " 4M";
803 break;
805 if (TTE_IS_VALID(env->itlb[i].tte)) {
806 (*cpu_fprintf)(f, "[%02u] VA: %" PRIx64 ", PA: %llx"
807 ", %s, %s, %s, ctx %" PRId64 " %s\n",
809 env->itlb[i].tag & (uint64_t)~0x1fffULL,
810 TTE_PA(env->itlb[i].tte),
811 mask,
812 TTE_IS_PRIV(env->itlb[i].tte) ? "priv" : "user",
813 TTE_IS_LOCKED(env->itlb[i].tte) ?
814 "locked" : "unlocked",
815 env->itlb[i].tag & (uint64_t)0x1fffULL,
816 TTE_IS_GLOBAL(env->itlb[i].tte) ?
817 "global" : "local");
823 #endif /* TARGET_SPARC64 */
825 static int cpu_sparc_get_phys_page(CPUSPARCState *env, hwaddr *phys,
826 target_ulong addr, int rw, int mmu_idx)
828 target_ulong page_size;
829 int prot, access_index;
831 return get_physical_address(env, phys, &prot, &access_index, addr, rw,
832 mmu_idx, &page_size);
835 #if defined(TARGET_SPARC64)
836 hwaddr cpu_get_phys_page_nofault(CPUSPARCState *env, target_ulong addr,
837 int mmu_idx)
839 hwaddr phys_addr;
841 if (cpu_sparc_get_phys_page(env, &phys_addr, addr, 4, mmu_idx) != 0) {
842 return -1;
844 return phys_addr;
846 #endif
848 hwaddr sparc_cpu_get_phys_page_debug(CPUState *cs, vaddr addr)
850 SPARCCPU *cpu = SPARC_CPU(cs);
851 CPUSPARCState *env = &cpu->env;
852 hwaddr phys_addr;
853 int mmu_idx = cpu_mmu_index(env);
854 MemoryRegionSection section;
856 if (cpu_sparc_get_phys_page(env, &phys_addr, addr, 2, mmu_idx) != 0) {
857 if (cpu_sparc_get_phys_page(env, &phys_addr, addr, 0, mmu_idx) != 0) {
858 return -1;
861 section = memory_region_find(get_system_memory(), phys_addr, 1);
862 memory_region_unref(section.mr);
863 if (!int128_nz(section.size)) {
864 return -1;
866 return phys_addr;
868 #endif