2 * PowerPC MMU, TLB, SLB and BAT emulation helpers for QEMU.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
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/>.
19 #include "qemu/osdep.h"
20 #include "qemu/units.h"
22 #include "exec/helper-proto.h"
23 #include "sysemu/kvm.h"
25 #include "mmu-hash64.h"
26 #include "mmu-hash32.h"
27 #include "exec/exec-all.h"
28 #include "exec/cpu_ldst.h"
30 #include "helper_regs.h"
31 #include "qemu/error-report.h"
32 #include "mmu-book3s-v3.h"
33 #include "mmu-radix64.h"
37 //#define DEBUG_SOFTWARE_TLB
38 //#define DUMP_PAGE_TABLES
39 //#define FLUSH_ALL_TLBS
42 # define LOG_MMU_STATE(cpu) log_cpu_state_mask(CPU_LOG_MMU, (cpu), 0)
44 # define LOG_MMU_STATE(cpu) do { } while (0)
47 #ifdef DEBUG_SOFTWARE_TLB
48 # define LOG_SWTLB(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)
50 # define LOG_SWTLB(...) do { } while (0)
54 # define LOG_BATS(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)
56 # define LOG_BATS(...) do { } while (0)
59 /*****************************************************************************/
60 /* PowerPC MMU emulation */
62 /* Context used internally during MMU translations */
63 typedef struct mmu_ctx_t mmu_ctx_t
;
65 hwaddr raddr
; /* Real address */
66 hwaddr eaddr
; /* Effective address */
67 int prot
; /* Protection bits */
68 hwaddr hash
[2]; /* Pagetable hash values */
69 target_ulong ptem
; /* Virtual segment ID | API */
70 int key
; /* Access key */
71 int nx
; /* Non-execute area */
74 /* Common routines used by software and hardware TLBs emulation */
75 static inline int pte_is_valid(target_ulong pte0
)
77 return pte0
& 0x80000000 ? 1 : 0;
80 static inline void pte_invalidate(target_ulong
*pte0
)
85 #define PTE_PTEM_MASK 0x7FFFFFBF
86 #define PTE_CHECK_MASK (TARGET_PAGE_MASK | 0x7B)
88 static int pp_check(int key
, int pp
, int nx
)
92 /* Compute access rights */
115 access
= PAGE_READ
| PAGE_WRITE
;
126 static int check_prot(int prot
, int rw
, int access_type
)
130 if (access_type
== ACCESS_CODE
) {
131 if (prot
& PAGE_EXEC
) {
137 if (prot
& PAGE_WRITE
) {
143 if (prot
& PAGE_READ
) {
153 static inline int ppc6xx_tlb_pte_check(mmu_ctx_t
*ctx
, target_ulong pte0
,
154 target_ulong pte1
, int h
, int rw
, int type
)
156 target_ulong ptem
, mmask
;
157 int access
, ret
, pteh
, ptev
, pp
;
160 /* Check validity and table match */
161 ptev
= pte_is_valid(pte0
);
162 pteh
= (pte0
>> 6) & 1;
163 if (ptev
&& h
== pteh
) {
164 /* Check vsid & api */
165 ptem
= pte0
& PTE_PTEM_MASK
;
166 mmask
= PTE_CHECK_MASK
;
167 pp
= pte1
& 0x00000003;
168 if (ptem
== ctx
->ptem
) {
169 if (ctx
->raddr
!= (hwaddr
)-1ULL) {
170 /* all matches should have equal RPN, WIMG & PP */
171 if ((ctx
->raddr
& mmask
) != (pte1
& mmask
)) {
172 qemu_log_mask(CPU_LOG_MMU
, "Bad RPN/WIMG/PP\n");
176 /* Compute access rights */
177 access
= pp_check(ctx
->key
, pp
, ctx
->nx
);
178 /* Keep the matching PTE informations */
181 ret
= check_prot(ctx
->prot
, rw
, type
);
184 qemu_log_mask(CPU_LOG_MMU
, "PTE access granted !\n");
186 /* Access right violation */
187 qemu_log_mask(CPU_LOG_MMU
, "PTE access rejected\n");
195 static int pte_update_flags(mmu_ctx_t
*ctx
, target_ulong
*pte1p
,
200 /* Update page flags */
201 if (!(*pte1p
& 0x00000100)) {
202 /* Update accessed flag */
203 *pte1p
|= 0x00000100;
206 if (!(*pte1p
& 0x00000080)) {
207 if (rw
== 1 && ret
== 0) {
208 /* Update changed flag */
209 *pte1p
|= 0x00000080;
212 /* Force page fault for first write access */
213 ctx
->prot
&= ~PAGE_WRITE
;
220 /* Software driven TLB helpers */
221 static inline int ppc6xx_tlb_getnum(CPUPPCState
*env
, target_ulong eaddr
,
222 int way
, int is_code
)
226 /* Select TLB num in a way from address */
227 nr
= (eaddr
>> TARGET_PAGE_BITS
) & (env
->tlb_per_way
- 1);
229 nr
+= env
->tlb_per_way
* way
;
230 /* 6xx have separate TLBs for instructions and data */
231 if (is_code
&& env
->id_tlbs
== 1) {
238 static inline void ppc6xx_tlb_invalidate_all(CPUPPCState
*env
)
240 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
244 /* LOG_SWTLB("Invalidate all TLBs\n"); */
245 /* Invalidate all defined software TLB */
247 if (env
->id_tlbs
== 1) {
250 for (nr
= 0; nr
< max
; nr
++) {
251 tlb
= &env
->tlb
.tlb6
[nr
];
252 pte_invalidate(&tlb
->pte0
);
257 static inline void ppc6xx_tlb_invalidate_virt2(CPUPPCState
*env
,
259 int is_code
, int match_epn
)
261 #if !defined(FLUSH_ALL_TLBS)
262 CPUState
*cs
= CPU(ppc_env_get_cpu(env
));
266 /* Invalidate ITLB + DTLB, all ways */
267 for (way
= 0; way
< env
->nb_ways
; way
++) {
268 nr
= ppc6xx_tlb_getnum(env
, eaddr
, way
, is_code
);
269 tlb
= &env
->tlb
.tlb6
[nr
];
270 if (pte_is_valid(tlb
->pte0
) && (match_epn
== 0 || eaddr
== tlb
->EPN
)) {
271 LOG_SWTLB("TLB invalidate %d/%d " TARGET_FMT_lx
"\n", nr
,
273 pte_invalidate(&tlb
->pte0
);
274 tlb_flush_page(cs
, tlb
->EPN
);
278 /* XXX: PowerPC specification say this is valid as well */
279 ppc6xx_tlb_invalidate_all(env
);
283 static inline void ppc6xx_tlb_invalidate_virt(CPUPPCState
*env
,
284 target_ulong eaddr
, int is_code
)
286 ppc6xx_tlb_invalidate_virt2(env
, eaddr
, is_code
, 0);
289 static void ppc6xx_tlb_store(CPUPPCState
*env
, target_ulong EPN
, int way
,
290 int is_code
, target_ulong pte0
, target_ulong pte1
)
295 nr
= ppc6xx_tlb_getnum(env
, EPN
, way
, is_code
);
296 tlb
= &env
->tlb
.tlb6
[nr
];
297 LOG_SWTLB("Set TLB %d/%d EPN " TARGET_FMT_lx
" PTE0 " TARGET_FMT_lx
298 " PTE1 " TARGET_FMT_lx
"\n", nr
, env
->nb_tlb
, EPN
, pte0
, pte1
);
299 /* Invalidate any pending reference in QEMU for this virtual address */
300 ppc6xx_tlb_invalidate_virt2(env
, EPN
, is_code
, 1);
304 /* Store last way for LRU mechanism */
308 static inline int ppc6xx_tlb_check(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
309 target_ulong eaddr
, int rw
, int access_type
)
316 ret
= -1; /* No TLB found */
317 for (way
= 0; way
< env
->nb_ways
; way
++) {
318 nr
= ppc6xx_tlb_getnum(env
, eaddr
, way
,
319 access_type
== ACCESS_CODE
? 1 : 0);
320 tlb
= &env
->tlb
.tlb6
[nr
];
321 /* This test "emulates" the PTE index match for hardware TLBs */
322 if ((eaddr
& TARGET_PAGE_MASK
) != tlb
->EPN
) {
323 LOG_SWTLB("TLB %d/%d %s [" TARGET_FMT_lx
" " TARGET_FMT_lx
324 "] <> " TARGET_FMT_lx
"\n", nr
, env
->nb_tlb
,
325 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
326 tlb
->EPN
, tlb
->EPN
+ TARGET_PAGE_SIZE
, eaddr
);
329 LOG_SWTLB("TLB %d/%d %s " TARGET_FMT_lx
" <> " TARGET_FMT_lx
" "
330 TARGET_FMT_lx
" %c %c\n", nr
, env
->nb_tlb
,
331 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
332 tlb
->EPN
, eaddr
, tlb
->pte1
,
333 rw
? 'S' : 'L', access_type
== ACCESS_CODE
? 'I' : 'D');
334 switch (ppc6xx_tlb_pte_check(ctx
, tlb
->pte0
, tlb
->pte1
, 0, rw
, access_type
)) {
336 /* TLB inconsistency */
339 /* Access violation */
349 /* XXX: we should go on looping to check all TLBs consistency
350 * but we can speed-up the whole thing as the
351 * result would be undefined if TLBs are not consistent.
360 LOG_SWTLB("found TLB at addr " TARGET_FMT_plx
" prot=%01x ret=%d\n",
361 ctx
->raddr
& TARGET_PAGE_MASK
, ctx
->prot
, ret
);
362 /* Update page flags */
363 pte_update_flags(ctx
, &env
->tlb
.tlb6
[best
].pte1
, ret
, rw
);
369 /* Perform BAT hit & translation */
370 static inline void bat_size_prot(CPUPPCState
*env
, target_ulong
*blp
,
371 int *validp
, int *protp
, target_ulong
*BATu
,
377 bl
= (*BATu
& 0x00001FFC) << 15;
380 if (((msr_pr
== 0) && (*BATu
& 0x00000002)) ||
381 ((msr_pr
!= 0) && (*BATu
& 0x00000001))) {
383 pp
= *BATl
& 0x00000003;
385 prot
= PAGE_READ
| PAGE_EXEC
;
396 static int get_bat_6xx_tlb(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
397 target_ulong
virtual, int rw
, int type
)
399 target_ulong
*BATlt
, *BATut
, *BATu
, *BATl
;
400 target_ulong BEPIl
, BEPIu
, bl
;
404 LOG_BATS("%s: %cBAT v " TARGET_FMT_lx
"\n", __func__
,
405 type
== ACCESS_CODE
? 'I' : 'D', virtual);
408 BATlt
= env
->IBAT
[1];
409 BATut
= env
->IBAT
[0];
412 BATlt
= env
->DBAT
[1];
413 BATut
= env
->DBAT
[0];
416 for (i
= 0; i
< env
->nb_BATs
; i
++) {
419 BEPIu
= *BATu
& 0xF0000000;
420 BEPIl
= *BATu
& 0x0FFE0000;
421 bat_size_prot(env
, &bl
, &valid
, &prot
, BATu
, BATl
);
422 LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx
" BATu " TARGET_FMT_lx
423 " BATl " TARGET_FMT_lx
"\n", __func__
,
424 type
== ACCESS_CODE
? 'I' : 'D', i
, virtual, *BATu
, *BATl
);
425 if ((virtual & 0xF0000000) == BEPIu
&&
426 ((virtual & 0x0FFE0000) & ~bl
) == BEPIl
) {
429 /* Get physical address */
430 ctx
->raddr
= (*BATl
& 0xF0000000) |
431 ((virtual & 0x0FFE0000 & bl
) | (*BATl
& 0x0FFE0000)) |
432 (virtual & 0x0001F000);
433 /* Compute access rights */
435 ret
= check_prot(ctx
->prot
, rw
, type
);
437 LOG_BATS("BAT %d match: r " TARGET_FMT_plx
" prot=%c%c\n",
438 i
, ctx
->raddr
, ctx
->prot
& PAGE_READ
? 'R' : '-',
439 ctx
->prot
& PAGE_WRITE
? 'W' : '-');
446 #if defined(DEBUG_BATS)
447 if (qemu_log_enabled()) {
448 LOG_BATS("no BAT match for " TARGET_FMT_lx
":\n", virtual);
449 for (i
= 0; i
< 4; i
++) {
452 BEPIu
= *BATu
& 0xF0000000;
453 BEPIl
= *BATu
& 0x0FFE0000;
454 bl
= (*BATu
& 0x00001FFC) << 15;
455 LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx
" BATu " TARGET_FMT_lx
456 " BATl " TARGET_FMT_lx
"\n\t" TARGET_FMT_lx
" "
457 TARGET_FMT_lx
" " TARGET_FMT_lx
"\n",
458 __func__
, type
== ACCESS_CODE
? 'I' : 'D', i
, virtual,
459 *BATu
, *BATl
, BEPIu
, BEPIl
, bl
);
468 /* Perform segment based translation */
469 static inline int get_segment_6xx_tlb(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
470 target_ulong eaddr
, int rw
, int type
)
472 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
475 int ds
, pr
, target_page_bits
;
477 target_ulong sr
, pgidx
;
482 sr
= env
->sr
[eaddr
>> 28];
483 ctx
->key
= (((sr
& 0x20000000) && (pr
!= 0)) ||
484 ((sr
& 0x40000000) && (pr
== 0))) ? 1 : 0;
485 ds
= sr
& 0x80000000 ? 1 : 0;
486 ctx
->nx
= sr
& 0x10000000 ? 1 : 0;
487 vsid
= sr
& 0x00FFFFFF;
488 target_page_bits
= TARGET_PAGE_BITS
;
489 qemu_log_mask(CPU_LOG_MMU
,
490 "Check segment v=" TARGET_FMT_lx
" %d " TARGET_FMT_lx
491 " nip=" TARGET_FMT_lx
" lr=" TARGET_FMT_lx
492 " ir=%d dr=%d pr=%d %d t=%d\n",
493 eaddr
, (int)(eaddr
>> 28), sr
, env
->nip
, env
->lr
, (int)msr_ir
,
494 (int)msr_dr
, pr
!= 0 ? 1 : 0, rw
, type
);
495 pgidx
= (eaddr
& ~SEGMENT_MASK_256M
) >> target_page_bits
;
497 ctx
->ptem
= (vsid
<< 7) | (pgidx
>> 10);
499 qemu_log_mask(CPU_LOG_MMU
,
500 "pte segment: key=%d ds %d nx %d vsid " TARGET_FMT_lx
"\n",
501 ctx
->key
, ds
, ctx
->nx
, vsid
);
504 /* Check if instruction fetch is allowed, if needed */
505 if (type
!= ACCESS_CODE
|| ctx
->nx
== 0) {
506 /* Page address translation */
507 qemu_log_mask(CPU_LOG_MMU
, "htab_base " TARGET_FMT_plx
508 " htab_mask " TARGET_FMT_plx
509 " hash " TARGET_FMT_plx
"\n",
510 ppc_hash32_hpt_base(cpu
), ppc_hash32_hpt_mask(cpu
), hash
);
512 ctx
->hash
[1] = ~hash
;
514 /* Initialize real address with an invalid value */
515 ctx
->raddr
= (hwaddr
)-1ULL;
516 /* Software TLB search */
517 ret
= ppc6xx_tlb_check(env
, ctx
, eaddr
, rw
, type
);
518 #if defined(DUMP_PAGE_TABLES)
519 if (qemu_loglevel_mask(CPU_LOG_MMU
)) {
520 CPUState
*cs
= ENV_GET_CPU(env
);
522 uint32_t a0
, a1
, a2
, a3
;
524 qemu_log("Page table: " TARGET_FMT_plx
" len " TARGET_FMT_plx
525 "\n", ppc_hash32_hpt_base(cpu
),
526 ppc_hash32_hpt_mask(env
) + 0x80);
527 for (curaddr
= ppc_hash32_hpt_base(cpu
);
528 curaddr
< (ppc_hash32_hpt_base(cpu
)
529 + ppc_hash32_hpt_mask(cpu
) + 0x80);
531 a0
= ldl_phys(cs
->as
, curaddr
);
532 a1
= ldl_phys(cs
->as
, curaddr
+ 4);
533 a2
= ldl_phys(cs
->as
, curaddr
+ 8);
534 a3
= ldl_phys(cs
->as
, curaddr
+ 12);
535 if (a0
!= 0 || a1
!= 0 || a2
!= 0 || a3
!= 0) {
536 qemu_log(TARGET_FMT_plx
": %08x %08x %08x %08x\n",
537 curaddr
, a0
, a1
, a2
, a3
);
543 qemu_log_mask(CPU_LOG_MMU
, "No access allowed\n");
549 qemu_log_mask(CPU_LOG_MMU
, "direct store...\n");
550 /* Direct-store segment : absolutely *BUGGY* for now */
552 /* Direct-store implies a 32-bit MMU.
553 * Check the Segment Register's bus unit ID (BUID).
555 sr
= env
->sr
[eaddr
>> 28];
556 if ((sr
& 0x1FF00000) >> 20 == 0x07f) {
557 /* Memory-forced I/O controller interface access */
558 /* If T=1 and BUID=x'07F', the 601 performs a memory access
559 * to SR[28-31] LA[4-31], bypassing all protection mechanisms.
561 ctx
->raddr
= ((sr
& 0xF) << 28) | (eaddr
& 0x0FFFFFFF);
562 ctx
->prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
568 /* Integer load/store : only access allowed */
571 /* No code fetch is allowed in direct-store areas */
574 /* Floating point load/store */
577 /* lwarx, ldarx or srwcx. */
580 /* dcba, dcbt, dcbtst, dcbf, dcbi, dcbst, dcbz, or icbi */
581 /* Should make the instruction do no-op.
582 * As it already do no-op, it's quite easy :-)
590 qemu_log_mask(CPU_LOG_MMU
, "ERROR: instruction should not need "
591 "address translation\n");
594 if ((rw
== 1 || ctx
->key
!= 1) && (rw
== 0 || ctx
->key
!= 0)) {
605 /* Generic TLB check function for embedded PowerPC implementations */
606 static int ppcemb_tlb_check(CPUPPCState
*env
, ppcemb_tlb_t
*tlb
,
608 target_ulong address
, uint32_t pid
, int ext
,
613 /* Check valid flag */
614 if (!(tlb
->prot
& PAGE_VALID
)) {
617 mask
= ~(tlb
->size
- 1);
618 LOG_SWTLB("%s: TLB %d address " TARGET_FMT_lx
" PID %u <=> " TARGET_FMT_lx
619 " " TARGET_FMT_lx
" %u %x\n", __func__
, i
, address
, pid
, tlb
->EPN
,
620 mask
, (uint32_t)tlb
->PID
, tlb
->prot
);
622 if (tlb
->PID
!= 0 && tlb
->PID
!= pid
) {
625 /* Check effective address */
626 if ((address
& mask
) != tlb
->EPN
) {
629 *raddrp
= (tlb
->RPN
& mask
) | (address
& ~mask
);
631 /* Extend the physical address to 36 bits */
632 *raddrp
|= (uint64_t)(tlb
->RPN
& 0xF) << 32;
638 /* Generic TLB search function for PowerPC embedded implementations */
639 static int ppcemb_tlb_search(CPUPPCState
*env
, target_ulong address
,
646 /* Default return value is no match */
648 for (i
= 0; i
< env
->nb_tlb
; i
++) {
649 tlb
= &env
->tlb
.tlbe
[i
];
650 if (ppcemb_tlb_check(env
, tlb
, &raddr
, address
, pid
, 0, i
) == 0) {
659 /* Helpers specific to PowerPC 40x implementations */
660 static inline void ppc4xx_tlb_invalidate_all(CPUPPCState
*env
)
662 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
666 for (i
= 0; i
< env
->nb_tlb
; i
++) {
667 tlb
= &env
->tlb
.tlbe
[i
];
668 tlb
->prot
&= ~PAGE_VALID
;
673 static int mmu40x_get_physical_address(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
674 target_ulong address
, int rw
,
679 int i
, ret
, zsel
, zpr
, pr
;
682 raddr
= (hwaddr
)-1ULL;
684 for (i
= 0; i
< env
->nb_tlb
; i
++) {
685 tlb
= &env
->tlb
.tlbe
[i
];
686 if (ppcemb_tlb_check(env
, tlb
, &raddr
, address
,
687 env
->spr
[SPR_40x_PID
], 0, i
) < 0) {
690 zsel
= (tlb
->attr
>> 4) & 0xF;
691 zpr
= (env
->spr
[SPR_40x_ZPR
] >> (30 - (2 * zsel
))) & 0x3;
692 LOG_SWTLB("%s: TLB %d zsel %d zpr %d rw %d attr %08x\n",
693 __func__
, i
, zsel
, zpr
, rw
, tlb
->attr
);
694 /* Check execute enable bit */
702 /* All accesses granted */
703 ctx
->prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
708 /* Raise Zone protection fault. */
709 env
->spr
[SPR_40x_ESR
] = 1 << 22;
717 /* Check from TLB entry */
718 ctx
->prot
= tlb
->prot
;
719 ret
= check_prot(ctx
->prot
, rw
, access_type
);
721 env
->spr
[SPR_40x_ESR
] = 0;
727 LOG_SWTLB("%s: access granted " TARGET_FMT_lx
" => " TARGET_FMT_plx
728 " %d %d\n", __func__
, address
, ctx
->raddr
, ctx
->prot
,
733 LOG_SWTLB("%s: access refused " TARGET_FMT_lx
" => " TARGET_FMT_plx
734 " %d %d\n", __func__
, address
, raddr
, ctx
->prot
, ret
);
739 void store_40x_sler(CPUPPCState
*env
, uint32_t val
)
741 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
743 /* XXX: TO BE FIXED */
744 if (val
!= 0x00000000) {
745 cpu_abort(CPU(cpu
), "Little-endian regions are not supported by now\n");
747 env
->spr
[SPR_405_SLER
] = val
;
750 static inline int mmubooke_check_tlb(CPUPPCState
*env
, ppcemb_tlb_t
*tlb
,
751 hwaddr
*raddr
, int *prot
,
752 target_ulong address
, int rw
,
753 int access_type
, int i
)
757 if (ppcemb_tlb_check(env
, tlb
, raddr
, address
,
758 env
->spr
[SPR_BOOKE_PID
],
759 !env
->nb_pids
, i
) >= 0) {
763 if (env
->spr
[SPR_BOOKE_PID1
] &&
764 ppcemb_tlb_check(env
, tlb
, raddr
, address
,
765 env
->spr
[SPR_BOOKE_PID1
], 0, i
) >= 0) {
769 if (env
->spr
[SPR_BOOKE_PID2
] &&
770 ppcemb_tlb_check(env
, tlb
, raddr
, address
,
771 env
->spr
[SPR_BOOKE_PID2
], 0, i
) >= 0) {
775 LOG_SWTLB("%s: TLB entry not found\n", __func__
);
781 prot2
= tlb
->prot
& 0xF;
783 prot2
= (tlb
->prot
>> 4) & 0xF;
786 /* Check the address space */
787 if (access_type
== ACCESS_CODE
) {
788 if (msr_ir
!= (tlb
->attr
& 1)) {
789 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
794 if (prot2
& PAGE_EXEC
) {
795 LOG_SWTLB("%s: good TLB!\n", __func__
);
799 LOG_SWTLB("%s: no PAGE_EXEC: %x\n", __func__
, prot2
);
802 if (msr_dr
!= (tlb
->attr
& 1)) {
803 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
808 if ((!rw
&& prot2
& PAGE_READ
) || (rw
&& (prot2
& PAGE_WRITE
))) {
809 LOG_SWTLB("%s: found TLB!\n", __func__
);
813 LOG_SWTLB("%s: PAGE_READ/WRITE doesn't match: %x\n", __func__
, prot2
);
820 static int mmubooke_get_physical_address(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
821 target_ulong address
, int rw
,
829 raddr
= (hwaddr
)-1ULL;
830 for (i
= 0; i
< env
->nb_tlb
; i
++) {
831 tlb
= &env
->tlb
.tlbe
[i
];
832 ret
= mmubooke_check_tlb(env
, tlb
, &raddr
, &ctx
->prot
, address
, rw
,
841 LOG_SWTLB("%s: access granted " TARGET_FMT_lx
" => " TARGET_FMT_plx
842 " %d %d\n", __func__
, address
, ctx
->raddr
, ctx
->prot
,
845 LOG_SWTLB("%s: access refused " TARGET_FMT_lx
" => " TARGET_FMT_plx
846 " %d %d\n", __func__
, address
, raddr
, ctx
->prot
, ret
);
852 static void booke206_flush_tlb(CPUPPCState
*env
, int flags
,
853 const int check_iprot
)
855 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
858 ppcmas_tlb_t
*tlb
= env
->tlb
.tlbm
;
860 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
861 if (flags
& (1 << i
)) {
862 tlb_size
= booke206_tlb_size(env
, i
);
863 for (j
= 0; j
< tlb_size
; j
++) {
864 if (!check_iprot
|| !(tlb
[j
].mas1
& MAS1_IPROT
)) {
865 tlb
[j
].mas1
&= ~MAS1_VALID
;
869 tlb
+= booke206_tlb_size(env
, i
);
875 static hwaddr
booke206_tlb_to_page_size(CPUPPCState
*env
,
880 tlbm_size
= (tlb
->mas1
& MAS1_TSIZE_MASK
) >> MAS1_TSIZE_SHIFT
;
882 return 1024ULL << tlbm_size
;
885 /* TLB check function for MAS based SoftTLBs */
886 static int ppcmas_tlb_check(CPUPPCState
*env
, ppcmas_tlb_t
*tlb
,
887 hwaddr
*raddrp
, target_ulong address
,
894 /* In 32bit mode we can only address 32bit EAs */
895 address
= (uint32_t)address
;
898 /* Check valid flag */
899 if (!(tlb
->mas1
& MAS1_VALID
)) {
903 mask
= ~(booke206_tlb_to_page_size(env
, tlb
) - 1);
904 LOG_SWTLB("%s: TLB ADDR=0x" TARGET_FMT_lx
" PID=0x%x MAS1=0x%x MAS2=0x%"
905 PRIx64
" mask=0x%" HWADDR_PRIx
" MAS7_3=0x%" PRIx64
" MAS8=0x%"
906 PRIx32
"\n", __func__
, address
, pid
, tlb
->mas1
, tlb
->mas2
, mask
,
907 tlb
->mas7_3
, tlb
->mas8
);
910 tlb_pid
= (tlb
->mas1
& MAS1_TID_MASK
) >> MAS1_TID_SHIFT
;
911 if (tlb_pid
!= 0 && tlb_pid
!= pid
) {
915 /* Check effective address */
916 if ((address
& mask
) != (tlb
->mas2
& MAS2_EPN_MASK
)) {
921 *raddrp
= (tlb
->mas7_3
& mask
) | (address
& ~mask
);
927 static bool is_epid_mmu(int mmu_idx
)
929 return mmu_idx
== PPC_TLB_EPID_STORE
|| mmu_idx
== PPC_TLB_EPID_LOAD
;
932 static uint32_t mmubooke206_esr(int mmu_idx
, bool rw
)
938 if (is_epid_mmu(mmu_idx
)) {
944 /* Get EPID register given the mmu_idx. If this is regular load,
945 * construct the EPID access bits from current processor state */
947 /* Get the effective AS and PR bits and the PID. The PID is returned only if
948 * EPID load is requested, otherwise the caller must detect the correct EPID.
949 * Return true if valid EPID is returned. */
950 static bool mmubooke206_get_as(CPUPPCState
*env
,
951 int mmu_idx
, uint32_t *epid_out
,
952 bool *as_out
, bool *pr_out
)
954 if (is_epid_mmu(mmu_idx
)) {
956 if (mmu_idx
== PPC_TLB_EPID_STORE
) {
957 epidr
= env
->spr
[SPR_BOOKE_EPSC
];
959 epidr
= env
->spr
[SPR_BOOKE_EPLC
];
961 *epid_out
= (epidr
& EPID_EPID
) >> EPID_EPID_SHIFT
;
962 *as_out
= !!(epidr
& EPID_EAS
);
963 *pr_out
= !!(epidr
& EPID_EPR
);
972 /* Check if the tlb found by hashing really matches */
973 static int mmubooke206_check_tlb(CPUPPCState
*env
, ppcmas_tlb_t
*tlb
,
974 hwaddr
*raddr
, int *prot
,
975 target_ulong address
, int rw
,
976 int access_type
, int mmu_idx
)
982 bool use_epid
= mmubooke206_get_as(env
, mmu_idx
, &epid
, &as
, &pr
);
985 if (ppcmas_tlb_check(env
, tlb
, raddr
, address
,
986 env
->spr
[SPR_BOOKE_PID
]) >= 0) {
990 if (env
->spr
[SPR_BOOKE_PID1
] &&
991 ppcmas_tlb_check(env
, tlb
, raddr
, address
,
992 env
->spr
[SPR_BOOKE_PID1
]) >= 0) {
996 if (env
->spr
[SPR_BOOKE_PID2
] &&
997 ppcmas_tlb_check(env
, tlb
, raddr
, address
,
998 env
->spr
[SPR_BOOKE_PID2
]) >= 0) {
1002 if (ppcmas_tlb_check(env
, tlb
, raddr
, address
, epid
) >= 0) {
1007 LOG_SWTLB("%s: TLB entry not found\n", __func__
);
1013 if (tlb
->mas7_3
& MAS3_UR
) {
1016 if (tlb
->mas7_3
& MAS3_UW
) {
1017 prot2
|= PAGE_WRITE
;
1019 if (tlb
->mas7_3
& MAS3_UX
) {
1023 if (tlb
->mas7_3
& MAS3_SR
) {
1026 if (tlb
->mas7_3
& MAS3_SW
) {
1027 prot2
|= PAGE_WRITE
;
1029 if (tlb
->mas7_3
& MAS3_SX
) {
1034 /* Check the address space and permissions */
1035 if (access_type
== ACCESS_CODE
) {
1036 /* There is no way to fetch code using epid load */
1038 if (msr_ir
!= ((tlb
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
)) {
1039 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
1044 if (prot2
& PAGE_EXEC
) {
1045 LOG_SWTLB("%s: good TLB!\n", __func__
);
1049 LOG_SWTLB("%s: no PAGE_EXEC: %x\n", __func__
, prot2
);
1052 if (as
!= ((tlb
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
)) {
1053 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
1058 if ((!rw
&& prot2
& PAGE_READ
) || (rw
&& (prot2
& PAGE_WRITE
))) {
1059 LOG_SWTLB("%s: found TLB!\n", __func__
);
1063 LOG_SWTLB("%s: PAGE_READ/WRITE doesn't match: %x\n", __func__
, prot2
);
1070 static int mmubooke206_get_physical_address(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
1071 target_ulong address
, int rw
,
1072 int access_type
, int mmu_idx
)
1079 raddr
= (hwaddr
)-1ULL;
1081 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
1082 int ways
= booke206_tlb_ways(env
, i
);
1084 for (j
= 0; j
< ways
; j
++) {
1085 tlb
= booke206_get_tlbm(env
, i
, address
, j
);
1089 ret
= mmubooke206_check_tlb(env
, tlb
, &raddr
, &ctx
->prot
, address
,
1090 rw
, access_type
, mmu_idx
);
1101 LOG_SWTLB("%s: access granted " TARGET_FMT_lx
" => " TARGET_FMT_plx
1102 " %d %d\n", __func__
, address
, ctx
->raddr
, ctx
->prot
,
1105 LOG_SWTLB("%s: access refused " TARGET_FMT_lx
" => " TARGET_FMT_plx
1106 " %d %d\n", __func__
, address
, raddr
, ctx
->prot
, ret
);
1112 static const char *book3e_tsize_to_str
[32] = {
1113 "1K", "2K", "4K", "8K", "16K", "32K", "64K", "128K", "256K", "512K",
1114 "1M", "2M", "4M", "8M", "16M", "32M", "64M", "128M", "256M", "512M",
1115 "1G", "2G", "4G", "8G", "16G", "32G", "64G", "128G", "256G", "512G",
1119 static void mmubooke_dump_mmu(FILE *f
, fprintf_function cpu_fprintf
,
1122 ppcemb_tlb_t
*entry
;
1125 if (kvm_enabled() && !env
->kvm_sw_tlb
) {
1126 cpu_fprintf(f
, "Cannot access KVM TLB\n");
1130 cpu_fprintf(f
, "\nTLB:\n");
1131 cpu_fprintf(f
, "Effective Physical Size PID Prot "
1134 entry
= &env
->tlb
.tlbe
[0];
1135 for (i
= 0; i
< env
->nb_tlb
; i
++, entry
++) {
1138 uint64_t size
= (uint64_t)entry
->size
;
1141 /* Check valid flag */
1142 if (!(entry
->prot
& PAGE_VALID
)) {
1146 mask
= ~(entry
->size
- 1);
1147 ea
= entry
->EPN
& mask
;
1148 pa
= entry
->RPN
& mask
;
1149 /* Extend the physical address to 36 bits */
1150 pa
|= (hwaddr
)(entry
->RPN
& 0xF) << 32;
1151 if (size
>= 1 * MiB
) {
1152 snprintf(size_buf
, sizeof(size_buf
), "%3" PRId64
"M", size
/ MiB
);
1154 snprintf(size_buf
, sizeof(size_buf
), "%3" PRId64
"k", size
/ KiB
);
1156 cpu_fprintf(f
, "0x%016" PRIx64
" 0x%016" PRIx64
" %s %-5u %08x %08x\n",
1157 (uint64_t)ea
, (uint64_t)pa
, size_buf
, (uint32_t)entry
->PID
,
1158 entry
->prot
, entry
->attr
);
1163 static void mmubooke206_dump_one_tlb(FILE *f
, fprintf_function cpu_fprintf
,
1164 CPUPPCState
*env
, int tlbn
, int offset
,
1167 ppcmas_tlb_t
*entry
;
1170 cpu_fprintf(f
, "\nTLB%d:\n", tlbn
);
1171 cpu_fprintf(f
, "Effective Physical Size TID TS SRWX"
1172 " URWX WIMGE U0123\n");
1174 entry
= &env
->tlb
.tlbm
[offset
];
1175 for (i
= 0; i
< tlbsize
; i
++, entry
++) {
1176 hwaddr ea
, pa
, size
;
1179 if (!(entry
->mas1
& MAS1_VALID
)) {
1183 tsize
= (entry
->mas1
& MAS1_TSIZE_MASK
) >> MAS1_TSIZE_SHIFT
;
1184 size
= 1024ULL << tsize
;
1185 ea
= entry
->mas2
& ~(size
- 1);
1186 pa
= entry
->mas7_3
& ~(size
- 1);
1188 cpu_fprintf(f
, "0x%016" PRIx64
" 0x%016" PRIx64
" %4s %-5u %1u S%c%c%c"
1189 "U%c%c%c %c%c%c%c%c U%c%c%c%c\n",
1190 (uint64_t)ea
, (uint64_t)pa
,
1191 book3e_tsize_to_str
[tsize
],
1192 (entry
->mas1
& MAS1_TID_MASK
) >> MAS1_TID_SHIFT
,
1193 (entry
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
,
1194 entry
->mas7_3
& MAS3_SR
? 'R' : '-',
1195 entry
->mas7_3
& MAS3_SW
? 'W' : '-',
1196 entry
->mas7_3
& MAS3_SX
? 'X' : '-',
1197 entry
->mas7_3
& MAS3_UR
? 'R' : '-',
1198 entry
->mas7_3
& MAS3_UW
? 'W' : '-',
1199 entry
->mas7_3
& MAS3_UX
? 'X' : '-',
1200 entry
->mas2
& MAS2_W
? 'W' : '-',
1201 entry
->mas2
& MAS2_I
? 'I' : '-',
1202 entry
->mas2
& MAS2_M
? 'M' : '-',
1203 entry
->mas2
& MAS2_G
? 'G' : '-',
1204 entry
->mas2
& MAS2_E
? 'E' : '-',
1205 entry
->mas7_3
& MAS3_U0
? '0' : '-',
1206 entry
->mas7_3
& MAS3_U1
? '1' : '-',
1207 entry
->mas7_3
& MAS3_U2
? '2' : '-',
1208 entry
->mas7_3
& MAS3_U3
? '3' : '-');
1212 static void mmubooke206_dump_mmu(FILE *f
, fprintf_function cpu_fprintf
,
1218 if (kvm_enabled() && !env
->kvm_sw_tlb
) {
1219 cpu_fprintf(f
, "Cannot access KVM TLB\n");
1223 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
1224 int size
= booke206_tlb_size(env
, i
);
1230 mmubooke206_dump_one_tlb(f
, cpu_fprintf
, env
, i
, offset
, size
);
1235 static void mmu6xx_dump_BATs(FILE *f
, fprintf_function cpu_fprintf
,
1236 CPUPPCState
*env
, int type
)
1238 target_ulong
*BATlt
, *BATut
, *BATu
, *BATl
;
1239 target_ulong BEPIl
, BEPIu
, bl
;
1244 BATlt
= env
->IBAT
[1];
1245 BATut
= env
->IBAT
[0];
1248 BATlt
= env
->DBAT
[1];
1249 BATut
= env
->DBAT
[0];
1253 for (i
= 0; i
< env
->nb_BATs
; i
++) {
1256 BEPIu
= *BATu
& 0xF0000000;
1257 BEPIl
= *BATu
& 0x0FFE0000;
1258 bl
= (*BATu
& 0x00001FFC) << 15;
1259 cpu_fprintf(f
, "%s BAT%d BATu " TARGET_FMT_lx
1260 " BATl " TARGET_FMT_lx
"\n\t" TARGET_FMT_lx
" "
1261 TARGET_FMT_lx
" " TARGET_FMT_lx
"\n",
1262 type
== ACCESS_CODE
? "code" : "data", i
,
1263 *BATu
, *BATl
, BEPIu
, BEPIl
, bl
);
1267 static void mmu6xx_dump_mmu(FILE *f
, fprintf_function cpu_fprintf
,
1270 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1273 int type
, way
, entry
, i
;
1275 cpu_fprintf(f
, "HTAB base = 0x%"HWADDR_PRIx
"\n", ppc_hash32_hpt_base(cpu
));
1276 cpu_fprintf(f
, "HTAB mask = 0x%"HWADDR_PRIx
"\n", ppc_hash32_hpt_mask(cpu
));
1278 cpu_fprintf(f
, "\nSegment registers:\n");
1279 for (i
= 0; i
< 32; i
++) {
1281 if (sr
& 0x80000000) {
1282 cpu_fprintf(f
, "%02d T=%d Ks=%d Kp=%d BUID=0x%03x "
1283 "CNTLR_SPEC=0x%05x\n", i
,
1284 sr
& 0x80000000 ? 1 : 0, sr
& 0x40000000 ? 1 : 0,
1285 sr
& 0x20000000 ? 1 : 0, (uint32_t)((sr
>> 20) & 0x1FF),
1286 (uint32_t)(sr
& 0xFFFFF));
1288 cpu_fprintf(f
, "%02d T=%d Ks=%d Kp=%d N=%d VSID=0x%06x\n", i
,
1289 sr
& 0x80000000 ? 1 : 0, sr
& 0x40000000 ? 1 : 0,
1290 sr
& 0x20000000 ? 1 : 0, sr
& 0x10000000 ? 1 : 0,
1291 (uint32_t)(sr
& 0x00FFFFFF));
1295 cpu_fprintf(f
, "\nBATs:\n");
1296 mmu6xx_dump_BATs(f
, cpu_fprintf
, env
, ACCESS_INT
);
1297 mmu6xx_dump_BATs(f
, cpu_fprintf
, env
, ACCESS_CODE
);
1299 if (env
->id_tlbs
!= 1) {
1300 cpu_fprintf(f
, "ERROR: 6xx MMU should have separated TLB"
1301 " for code and data\n");
1304 cpu_fprintf(f
, "\nTLBs [EPN EPN + SIZE]\n");
1306 for (type
= 0; type
< 2; type
++) {
1307 for (way
= 0; way
< env
->nb_ways
; way
++) {
1308 for (entry
= env
->nb_tlb
* type
+ env
->tlb_per_way
* way
;
1309 entry
< (env
->nb_tlb
* type
+ env
->tlb_per_way
* (way
+ 1));
1312 tlb
= &env
->tlb
.tlb6
[entry
];
1313 cpu_fprintf(f
, "%s TLB %02d/%02d way:%d %s ["
1314 TARGET_FMT_lx
" " TARGET_FMT_lx
"]\n",
1315 type
? "code" : "data", entry
% env
->nb_tlb
,
1317 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
1318 tlb
->EPN
, tlb
->EPN
+ TARGET_PAGE_SIZE
);
1324 void dump_mmu(FILE *f
, fprintf_function cpu_fprintf
, CPUPPCState
*env
)
1326 switch (env
->mmu_model
) {
1327 case POWERPC_MMU_BOOKE
:
1328 mmubooke_dump_mmu(f
, cpu_fprintf
, env
);
1330 case POWERPC_MMU_BOOKE206
:
1331 mmubooke206_dump_mmu(f
, cpu_fprintf
, env
);
1333 case POWERPC_MMU_SOFT_6xx
:
1334 case POWERPC_MMU_SOFT_74xx
:
1335 mmu6xx_dump_mmu(f
, cpu_fprintf
, env
);
1337 #if defined(TARGET_PPC64)
1338 case POWERPC_MMU_64B
:
1339 case POWERPC_MMU_2_03
:
1340 case POWERPC_MMU_2_06
:
1341 case POWERPC_MMU_2_07
:
1342 dump_slb(f
, cpu_fprintf
, ppc_env_get_cpu(env
));
1344 case POWERPC_MMU_3_00
:
1345 if (ppc64_v3_radix(ppc_env_get_cpu(env
))) {
1346 /* TODO - Unsupported */
1348 dump_slb(f
, cpu_fprintf
, ppc_env_get_cpu(env
));
1353 qemu_log_mask(LOG_UNIMP
, "%s: unimplemented\n", __func__
);
1357 static inline int check_physical(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
1358 target_ulong eaddr
, int rw
)
1363 ctx
->prot
= PAGE_READ
| PAGE_EXEC
;
1365 switch (env
->mmu_model
) {
1366 case POWERPC_MMU_SOFT_6xx
:
1367 case POWERPC_MMU_SOFT_74xx
:
1368 case POWERPC_MMU_SOFT_4xx
:
1369 case POWERPC_MMU_REAL
:
1370 case POWERPC_MMU_BOOKE
:
1371 ctx
->prot
|= PAGE_WRITE
;
1374 case POWERPC_MMU_SOFT_4xx_Z
:
1375 if (unlikely(msr_pe
!= 0)) {
1376 /* 403 family add some particular protections,
1377 * using PBL/PBU registers for accesses with no translation.
1380 /* Check PLB validity */
1381 (env
->pb
[0] < env
->pb
[1] &&
1382 /* and address in plb area */
1383 eaddr
>= env
->pb
[0] && eaddr
< env
->pb
[1]) ||
1384 (env
->pb
[2] < env
->pb
[3] &&
1385 eaddr
>= env
->pb
[2] && eaddr
< env
->pb
[3]) ? 1 : 0;
1386 if (in_plb
^ msr_px
) {
1387 /* Access in protected area */
1389 /* Access is not allowed */
1393 /* Read-write access is allowed */
1394 ctx
->prot
|= PAGE_WRITE
;
1400 /* Caller's checks mean we should never get here for other models */
1408 static int get_physical_address_wtlb(
1409 CPUPPCState
*env
, mmu_ctx_t
*ctx
,
1410 target_ulong eaddr
, int rw
, int access_type
,
1413 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1415 bool real_mode
= (access_type
== ACCESS_CODE
&& msr_ir
== 0)
1416 || (access_type
!= ACCESS_CODE
&& msr_dr
== 0);
1418 switch (env
->mmu_model
) {
1419 case POWERPC_MMU_SOFT_6xx
:
1420 case POWERPC_MMU_SOFT_74xx
:
1422 ret
= check_physical(env
, ctx
, eaddr
, rw
);
1424 /* Try to find a BAT */
1425 if (env
->nb_BATs
!= 0) {
1426 ret
= get_bat_6xx_tlb(env
, ctx
, eaddr
, rw
, access_type
);
1429 /* We didn't match any BAT entry or don't have BATs */
1430 ret
= get_segment_6xx_tlb(env
, ctx
, eaddr
, rw
, access_type
);
1435 case POWERPC_MMU_SOFT_4xx
:
1436 case POWERPC_MMU_SOFT_4xx_Z
:
1438 ret
= check_physical(env
, ctx
, eaddr
, rw
);
1440 ret
= mmu40x_get_physical_address(env
, ctx
, eaddr
,
1444 case POWERPC_MMU_BOOKE
:
1445 ret
= mmubooke_get_physical_address(env
, ctx
, eaddr
,
1448 case POWERPC_MMU_BOOKE206
:
1449 ret
= mmubooke206_get_physical_address(env
, ctx
, eaddr
, rw
,
1450 access_type
, mmu_idx
);
1452 case POWERPC_MMU_MPC8xx
:
1454 cpu_abort(CPU(cpu
), "MPC8xx MMU model is not implemented\n");
1456 case POWERPC_MMU_REAL
:
1458 ret
= check_physical(env
, ctx
, eaddr
, rw
);
1460 cpu_abort(CPU(cpu
), "PowerPC in real mode do not do any translation\n");
1464 cpu_abort(CPU(cpu
), "Unknown or invalid MMU model\n");
1471 static int get_physical_address(
1472 CPUPPCState
*env
, mmu_ctx_t
*ctx
,
1473 target_ulong eaddr
, int rw
, int access_type
)
1475 return get_physical_address_wtlb(env
, ctx
, eaddr
, rw
, access_type
, 0);
1478 hwaddr
ppc_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
1480 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1481 CPUPPCState
*env
= &cpu
->env
;
1484 switch (env
->mmu_model
) {
1485 #if defined(TARGET_PPC64)
1486 case POWERPC_MMU_64B
:
1487 case POWERPC_MMU_2_03
:
1488 case POWERPC_MMU_2_06
:
1489 case POWERPC_MMU_2_07
:
1490 return ppc_hash64_get_phys_page_debug(cpu
, addr
);
1491 case POWERPC_MMU_3_00
:
1492 return ppc64_v3_get_phys_page_debug(cpu
, addr
);
1495 case POWERPC_MMU_32B
:
1496 case POWERPC_MMU_601
:
1497 return ppc_hash32_get_phys_page_debug(cpu
, addr
);
1503 if (unlikely(get_physical_address(env
, &ctx
, addr
, 0, ACCESS_INT
) != 0)) {
1505 /* Some MMUs have separate TLBs for code and data. If we only try an
1506 * ACCESS_INT, we may not be able to read instructions mapped by code
1507 * TLBs, so we also try a ACCESS_CODE.
1509 if (unlikely(get_physical_address(env
, &ctx
, addr
, 0,
1510 ACCESS_CODE
) != 0)) {
1515 return ctx
.raddr
& TARGET_PAGE_MASK
;
1518 static void booke206_update_mas_tlb_miss(CPUPPCState
*env
, target_ulong address
,
1519 int rw
, int mmu_idx
)
1523 uint32_t missed_tid
= 0;
1524 bool use_epid
= mmubooke206_get_as(env
, mmu_idx
, &epid
, &as
, &pr
);
1528 env
->spr
[SPR_BOOKE_MAS0
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TLBSELD_MASK
;
1529 env
->spr
[SPR_BOOKE_MAS1
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TSIZED_MASK
;
1530 env
->spr
[SPR_BOOKE_MAS2
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_WIMGED_MASK
;
1531 env
->spr
[SPR_BOOKE_MAS3
] = 0;
1532 env
->spr
[SPR_BOOKE_MAS6
] = 0;
1533 env
->spr
[SPR_BOOKE_MAS7
] = 0;
1537 env
->spr
[SPR_BOOKE_MAS1
] |= MAS1_TS
;
1538 env
->spr
[SPR_BOOKE_MAS6
] |= MAS6_SAS
;
1541 env
->spr
[SPR_BOOKE_MAS1
] |= MAS1_VALID
;
1542 env
->spr
[SPR_BOOKE_MAS2
] |= address
& MAS2_EPN_MASK
;
1545 switch (env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TIDSELD_PIDZ
) {
1546 case MAS4_TIDSELD_PID0
:
1547 missed_tid
= env
->spr
[SPR_BOOKE_PID
];
1549 case MAS4_TIDSELD_PID1
:
1550 missed_tid
= env
->spr
[SPR_BOOKE_PID1
];
1552 case MAS4_TIDSELD_PID2
:
1553 missed_tid
= env
->spr
[SPR_BOOKE_PID2
];
1556 env
->spr
[SPR_BOOKE_MAS6
] |= env
->spr
[SPR_BOOKE_PID
] << 16;
1559 env
->spr
[SPR_BOOKE_MAS6
] |= missed_tid
<< 16;
1561 env
->spr
[SPR_BOOKE_MAS1
] |= (missed_tid
<< MAS1_TID_SHIFT
);
1564 /* next victim logic */
1565 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_ESEL_SHIFT
;
1567 env
->last_way
&= booke206_tlb_ways(env
, 0) - 1;
1568 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_NV_SHIFT
;
1571 /* Perform address translation */
1572 static int cpu_ppc_handle_mmu_fault(CPUPPCState
*env
, target_ulong address
,
1573 int rw
, int mmu_idx
)
1575 CPUState
*cs
= CPU(ppc_env_get_cpu(env
));
1576 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1584 access_type
= ACCESS_CODE
;
1587 access_type
= env
->access_type
;
1589 ret
= get_physical_address_wtlb(env
, &ctx
, address
, rw
,
1590 access_type
, mmu_idx
);
1592 tlb_set_page(cs
, address
& TARGET_PAGE_MASK
,
1593 ctx
.raddr
& TARGET_PAGE_MASK
, ctx
.prot
,
1594 mmu_idx
, TARGET_PAGE_SIZE
);
1596 } else if (ret
< 0) {
1598 if (access_type
== ACCESS_CODE
) {
1601 /* No matches in page tables or TLB */
1602 switch (env
->mmu_model
) {
1603 case POWERPC_MMU_SOFT_6xx
:
1604 cs
->exception_index
= POWERPC_EXCP_IFTLB
;
1605 env
->error_code
= 1 << 18;
1606 env
->spr
[SPR_IMISS
] = address
;
1607 env
->spr
[SPR_ICMP
] = 0x80000000 | ctx
.ptem
;
1609 case POWERPC_MMU_SOFT_74xx
:
1610 cs
->exception_index
= POWERPC_EXCP_IFTLB
;
1612 case POWERPC_MMU_SOFT_4xx
:
1613 case POWERPC_MMU_SOFT_4xx_Z
:
1614 cs
->exception_index
= POWERPC_EXCP_ITLB
;
1615 env
->error_code
= 0;
1616 env
->spr
[SPR_40x_DEAR
] = address
;
1617 env
->spr
[SPR_40x_ESR
] = 0x00000000;
1619 case POWERPC_MMU_BOOKE206
:
1620 booke206_update_mas_tlb_miss(env
, address
, 2, mmu_idx
);
1622 case POWERPC_MMU_BOOKE
:
1623 cs
->exception_index
= POWERPC_EXCP_ITLB
;
1624 env
->error_code
= 0;
1625 env
->spr
[SPR_BOOKE_DEAR
] = address
;
1626 env
->spr
[SPR_BOOKE_ESR
] = mmubooke206_esr(mmu_idx
, 0);
1628 case POWERPC_MMU_MPC8xx
:
1630 cpu_abort(cs
, "MPC8xx MMU model is not implemented\n");
1632 case POWERPC_MMU_REAL
:
1633 cpu_abort(cs
, "PowerPC in real mode should never raise "
1634 "any MMU exceptions\n");
1637 cpu_abort(cs
, "Unknown or invalid MMU model\n");
1642 /* Access rights violation */
1643 cs
->exception_index
= POWERPC_EXCP_ISI
;
1644 env
->error_code
= 0x08000000;
1647 /* No execute protection violation */
1648 if ((env
->mmu_model
== POWERPC_MMU_BOOKE
) ||
1649 (env
->mmu_model
== POWERPC_MMU_BOOKE206
)) {
1650 env
->spr
[SPR_BOOKE_ESR
] = 0x00000000;
1652 cs
->exception_index
= POWERPC_EXCP_ISI
;
1653 env
->error_code
= 0x10000000;
1656 /* Direct store exception */
1657 /* No code fetch is allowed in direct-store areas */
1658 cs
->exception_index
= POWERPC_EXCP_ISI
;
1659 env
->error_code
= 0x10000000;
1665 /* No matches in page tables or TLB */
1666 switch (env
->mmu_model
) {
1667 case POWERPC_MMU_SOFT_6xx
:
1669 cs
->exception_index
= POWERPC_EXCP_DSTLB
;
1670 env
->error_code
= 1 << 16;
1672 cs
->exception_index
= POWERPC_EXCP_DLTLB
;
1673 env
->error_code
= 0;
1675 env
->spr
[SPR_DMISS
] = address
;
1676 env
->spr
[SPR_DCMP
] = 0x80000000 | ctx
.ptem
;
1678 env
->error_code
|= ctx
.key
<< 19;
1679 env
->spr
[SPR_HASH1
] = ppc_hash32_hpt_base(cpu
) +
1680 get_pteg_offset32(cpu
, ctx
.hash
[0]);
1681 env
->spr
[SPR_HASH2
] = ppc_hash32_hpt_base(cpu
) +
1682 get_pteg_offset32(cpu
, ctx
.hash
[1]);
1684 case POWERPC_MMU_SOFT_74xx
:
1686 cs
->exception_index
= POWERPC_EXCP_DSTLB
;
1688 cs
->exception_index
= POWERPC_EXCP_DLTLB
;
1691 /* Implement LRU algorithm */
1692 env
->error_code
= ctx
.key
<< 19;
1693 env
->spr
[SPR_TLBMISS
] = (address
& ~((target_ulong
)0x3)) |
1694 ((env
->last_way
+ 1) & (env
->nb_ways
- 1));
1695 env
->spr
[SPR_PTEHI
] = 0x80000000 | ctx
.ptem
;
1697 case POWERPC_MMU_SOFT_4xx
:
1698 case POWERPC_MMU_SOFT_4xx_Z
:
1699 cs
->exception_index
= POWERPC_EXCP_DTLB
;
1700 env
->error_code
= 0;
1701 env
->spr
[SPR_40x_DEAR
] = address
;
1703 env
->spr
[SPR_40x_ESR
] = 0x00800000;
1705 env
->spr
[SPR_40x_ESR
] = 0x00000000;
1708 case POWERPC_MMU_MPC8xx
:
1710 cpu_abort(cs
, "MPC8xx MMU model is not implemented\n");
1712 case POWERPC_MMU_BOOKE206
:
1713 booke206_update_mas_tlb_miss(env
, address
, rw
, mmu_idx
);
1715 case POWERPC_MMU_BOOKE
:
1716 cs
->exception_index
= POWERPC_EXCP_DTLB
;
1717 env
->error_code
= 0;
1718 env
->spr
[SPR_BOOKE_DEAR
] = address
;
1719 env
->spr
[SPR_BOOKE_ESR
] = mmubooke206_esr(mmu_idx
, rw
);
1721 case POWERPC_MMU_REAL
:
1722 cpu_abort(cs
, "PowerPC in real mode should never raise "
1723 "any MMU exceptions\n");
1726 cpu_abort(cs
, "Unknown or invalid MMU model\n");
1731 /* Access rights violation */
1732 cs
->exception_index
= POWERPC_EXCP_DSI
;
1733 env
->error_code
= 0;
1734 if (env
->mmu_model
== POWERPC_MMU_SOFT_4xx
1735 || env
->mmu_model
== POWERPC_MMU_SOFT_4xx_Z
) {
1736 env
->spr
[SPR_40x_DEAR
] = address
;
1738 env
->spr
[SPR_40x_ESR
] |= 0x00800000;
1740 } else if ((env
->mmu_model
== POWERPC_MMU_BOOKE
) ||
1741 (env
->mmu_model
== POWERPC_MMU_BOOKE206
)) {
1742 env
->spr
[SPR_BOOKE_DEAR
] = address
;
1743 env
->spr
[SPR_BOOKE_ESR
] = mmubooke206_esr(mmu_idx
, rw
);
1745 env
->spr
[SPR_DAR
] = address
;
1747 env
->spr
[SPR_DSISR
] = 0x0A000000;
1749 env
->spr
[SPR_DSISR
] = 0x08000000;
1754 /* Direct store exception */
1755 switch (access_type
) {
1757 /* Floating point load/store */
1758 cs
->exception_index
= POWERPC_EXCP_ALIGN
;
1759 env
->error_code
= POWERPC_EXCP_ALIGN_FP
;
1760 env
->spr
[SPR_DAR
] = address
;
1763 /* lwarx, ldarx or stwcx. */
1764 cs
->exception_index
= POWERPC_EXCP_DSI
;
1765 env
->error_code
= 0;
1766 env
->spr
[SPR_DAR
] = address
;
1768 env
->spr
[SPR_DSISR
] = 0x06000000;
1770 env
->spr
[SPR_DSISR
] = 0x04000000;
1774 /* eciwx or ecowx */
1775 cs
->exception_index
= POWERPC_EXCP_DSI
;
1776 env
->error_code
= 0;
1777 env
->spr
[SPR_DAR
] = address
;
1779 env
->spr
[SPR_DSISR
] = 0x06100000;
1781 env
->spr
[SPR_DSISR
] = 0x04100000;
1785 printf("DSI: invalid exception (%d)\n", ret
);
1786 cs
->exception_index
= POWERPC_EXCP_PROGRAM
;
1788 POWERPC_EXCP_INVAL
| POWERPC_EXCP_INVAL_INVAL
;
1789 env
->spr
[SPR_DAR
] = address
;
1801 /*****************************************************************************/
1802 /* BATs management */
1803 #if !defined(FLUSH_ALL_TLBS)
1804 static inline void do_invalidate_BAT(CPUPPCState
*env
, target_ulong BATu
,
1807 CPUState
*cs
= CPU(ppc_env_get_cpu(env
));
1808 target_ulong base
, end
, page
;
1810 base
= BATu
& ~0x0001FFFF;
1811 end
= base
+ mask
+ 0x00020000;
1812 LOG_BATS("Flush BAT from " TARGET_FMT_lx
" to " TARGET_FMT_lx
" ("
1813 TARGET_FMT_lx
")\n", base
, end
, mask
);
1814 for (page
= base
; page
!= end
; page
+= TARGET_PAGE_SIZE
) {
1815 tlb_flush_page(cs
, page
);
1817 LOG_BATS("Flush done\n");
1821 static inline void dump_store_bat(CPUPPCState
*env
, char ID
, int ul
, int nr
,
1824 LOG_BATS("Set %cBAT%d%c to " TARGET_FMT_lx
" (" TARGET_FMT_lx
")\n", ID
,
1825 nr
, ul
== 0 ? 'u' : 'l', value
, env
->nip
);
1828 void helper_store_ibatu(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1831 #if defined(FLUSH_ALL_TLBS)
1832 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1835 dump_store_bat(env
, 'I', 0, nr
, value
);
1836 if (env
->IBAT
[0][nr
] != value
) {
1837 mask
= (value
<< 15) & 0x0FFE0000UL
;
1838 #if !defined(FLUSH_ALL_TLBS)
1839 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1841 /* When storing valid upper BAT, mask BEPI and BRPN
1842 * and invalidate all TLBs covered by this BAT
1844 mask
= (value
<< 15) & 0x0FFE0000UL
;
1845 env
->IBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1846 (value
& ~0x0001FFFFUL
& ~mask
);
1847 env
->IBAT
[1][nr
] = (env
->IBAT
[1][nr
] & 0x0000007B) |
1848 (env
->IBAT
[1][nr
] & ~0x0001FFFF & ~mask
);
1849 #if !defined(FLUSH_ALL_TLBS)
1850 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1852 tlb_flush(CPU(cpu
));
1857 void helper_store_ibatl(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1859 dump_store_bat(env
, 'I', 1, nr
, value
);
1860 env
->IBAT
[1][nr
] = value
;
1863 void helper_store_dbatu(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1866 #if defined(FLUSH_ALL_TLBS)
1867 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1870 dump_store_bat(env
, 'D', 0, nr
, value
);
1871 if (env
->DBAT
[0][nr
] != value
) {
1872 /* When storing valid upper BAT, mask BEPI and BRPN
1873 * and invalidate all TLBs covered by this BAT
1875 mask
= (value
<< 15) & 0x0FFE0000UL
;
1876 #if !defined(FLUSH_ALL_TLBS)
1877 do_invalidate_BAT(env
, env
->DBAT
[0][nr
], mask
);
1879 mask
= (value
<< 15) & 0x0FFE0000UL
;
1880 env
->DBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1881 (value
& ~0x0001FFFFUL
& ~mask
);
1882 env
->DBAT
[1][nr
] = (env
->DBAT
[1][nr
] & 0x0000007B) |
1883 (env
->DBAT
[1][nr
] & ~0x0001FFFF & ~mask
);
1884 #if !defined(FLUSH_ALL_TLBS)
1885 do_invalidate_BAT(env
, env
->DBAT
[0][nr
], mask
);
1887 tlb_flush(CPU(cpu
));
1892 void helper_store_dbatl(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1894 dump_store_bat(env
, 'D', 1, nr
, value
);
1895 env
->DBAT
[1][nr
] = value
;
1898 void helper_store_601_batu(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1901 #if defined(FLUSH_ALL_TLBS)
1902 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1906 dump_store_bat(env
, 'I', 0, nr
, value
);
1907 if (env
->IBAT
[0][nr
] != value
) {
1908 #if defined(FLUSH_ALL_TLBS)
1911 mask
= (env
->IBAT
[1][nr
] << 17) & 0x0FFE0000UL
;
1912 if (env
->IBAT
[1][nr
] & 0x40) {
1913 /* Invalidate BAT only if it is valid */
1914 #if !defined(FLUSH_ALL_TLBS)
1915 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1920 /* When storing valid upper BAT, mask BEPI and BRPN
1921 * and invalidate all TLBs covered by this BAT
1923 env
->IBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1924 (value
& ~0x0001FFFFUL
& ~mask
);
1925 env
->DBAT
[0][nr
] = env
->IBAT
[0][nr
];
1926 if (env
->IBAT
[1][nr
] & 0x40) {
1927 #if !defined(FLUSH_ALL_TLBS)
1928 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1933 #if defined(FLUSH_ALL_TLBS)
1935 tlb_flush(CPU(cpu
));
1941 void helper_store_601_batl(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1943 #if !defined(FLUSH_ALL_TLBS)
1946 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1950 dump_store_bat(env
, 'I', 1, nr
, value
);
1951 if (env
->IBAT
[1][nr
] != value
) {
1952 #if defined(FLUSH_ALL_TLBS)
1955 if (env
->IBAT
[1][nr
] & 0x40) {
1956 #if !defined(FLUSH_ALL_TLBS)
1957 mask
= (env
->IBAT
[1][nr
] << 17) & 0x0FFE0000UL
;
1958 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1964 #if !defined(FLUSH_ALL_TLBS)
1965 mask
= (value
<< 17) & 0x0FFE0000UL
;
1966 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1971 env
->IBAT
[1][nr
] = value
;
1972 env
->DBAT
[1][nr
] = value
;
1973 #if defined(FLUSH_ALL_TLBS)
1975 tlb_flush(CPU(cpu
));
1981 /*****************************************************************************/
1982 /* TLB management */
1983 void ppc_tlb_invalidate_all(CPUPPCState
*env
)
1985 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1987 #if defined(TARGET_PPC64)
1988 if (env
->mmu_model
& POWERPC_MMU_64
) {
1989 env
->tlb_need_flush
= 0;
1990 tlb_flush(CPU(cpu
));
1992 #endif /* defined(TARGET_PPC64) */
1993 switch (env
->mmu_model
) {
1994 case POWERPC_MMU_SOFT_6xx
:
1995 case POWERPC_MMU_SOFT_74xx
:
1996 ppc6xx_tlb_invalidate_all(env
);
1998 case POWERPC_MMU_SOFT_4xx
:
1999 case POWERPC_MMU_SOFT_4xx_Z
:
2000 ppc4xx_tlb_invalidate_all(env
);
2002 case POWERPC_MMU_REAL
:
2003 cpu_abort(CPU(cpu
), "No TLB for PowerPC 4xx in real mode\n");
2005 case POWERPC_MMU_MPC8xx
:
2007 cpu_abort(CPU(cpu
), "MPC8xx MMU model is not implemented\n");
2009 case POWERPC_MMU_BOOKE
:
2010 tlb_flush(CPU(cpu
));
2012 case POWERPC_MMU_BOOKE206
:
2013 booke206_flush_tlb(env
, -1, 0);
2015 case POWERPC_MMU_32B
:
2016 case POWERPC_MMU_601
:
2017 env
->tlb_need_flush
= 0;
2018 tlb_flush(CPU(cpu
));
2022 cpu_abort(CPU(cpu
), "Unknown MMU model %x\n", env
->mmu_model
);
2027 void ppc_tlb_invalidate_one(CPUPPCState
*env
, target_ulong addr
)
2029 #if !defined(FLUSH_ALL_TLBS)
2030 addr
&= TARGET_PAGE_MASK
;
2031 #if defined(TARGET_PPC64)
2032 if (env
->mmu_model
& POWERPC_MMU_64
) {
2033 /* tlbie invalidate TLBs for all segments */
2034 /* XXX: given the fact that there are too many segments to invalidate,
2035 * and we still don't have a tlb_flush_mask(env, n, mask) in QEMU,
2036 * we just invalidate all TLBs
2038 env
->tlb_need_flush
|= TLB_NEED_LOCAL_FLUSH
;
2040 #endif /* defined(TARGET_PPC64) */
2041 switch (env
->mmu_model
) {
2042 case POWERPC_MMU_SOFT_6xx
:
2043 case POWERPC_MMU_SOFT_74xx
:
2044 ppc6xx_tlb_invalidate_virt(env
, addr
, 0);
2045 if (env
->id_tlbs
== 1) {
2046 ppc6xx_tlb_invalidate_virt(env
, addr
, 1);
2049 case POWERPC_MMU_32B
:
2050 case POWERPC_MMU_601
:
2051 /* Actual CPUs invalidate entire congruence classes based on the
2052 * geometry of their TLBs and some OSes take that into account,
2053 * we just mark the TLB to be flushed later (context synchronizing
2054 * event or sync instruction on 32-bit).
2056 env
->tlb_need_flush
|= TLB_NEED_LOCAL_FLUSH
;
2059 /* Should never reach here with other MMU models */
2063 ppc_tlb_invalidate_all(env
);
2067 /*****************************************************************************/
2068 /* Special registers manipulation */
2069 void ppc_store_sdr1(CPUPPCState
*env
, target_ulong value
)
2071 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2072 qemu_log_mask(CPU_LOG_MMU
, "%s: " TARGET_FMT_lx
"\n", __func__
, value
);
2074 #if defined(TARGET_PPC64)
2075 if (env
->mmu_model
& POWERPC_MMU_64
) {
2076 target_ulong sdr_mask
= SDR_64_HTABORG
| SDR_64_HTABSIZE
;
2077 target_ulong htabsize
= value
& SDR_64_HTABSIZE
;
2079 if (value
& ~sdr_mask
) {
2080 error_report("Invalid bits 0x"TARGET_FMT_lx
" set in SDR1",
2084 if (htabsize
> 28) {
2085 error_report("Invalid HTABSIZE 0x" TARGET_FMT_lx
" stored in SDR1",
2090 #endif /* defined(TARGET_PPC64) */
2091 /* FIXME: Should check for valid HTABMASK values in 32-bit case */
2092 env
->spr
[SPR_SDR1
] = value
;
2095 #if defined(TARGET_PPC64)
2096 void ppc_store_ptcr(CPUPPCState
*env
, target_ulong value
)
2098 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2099 target_ulong ptcr_mask
= PTCR_PATB
| PTCR_PATS
;
2100 target_ulong patbsize
= value
& PTCR_PATS
;
2102 qemu_log_mask(CPU_LOG_MMU
, "%s: " TARGET_FMT_lx
"\n", __func__
, value
);
2105 assert(env
->mmu_model
& POWERPC_MMU_3_00
);
2107 if (value
& ~ptcr_mask
) {
2108 error_report("Invalid bits 0x"TARGET_FMT_lx
" set in PTCR",
2109 value
& ~ptcr_mask
);
2113 if (patbsize
> 24) {
2114 error_report("Invalid Partition Table size 0x" TARGET_FMT_lx
2115 " stored in PTCR", patbsize
);
2119 env
->spr
[SPR_PTCR
] = value
;
2122 #endif /* defined(TARGET_PPC64) */
2124 /* Segment registers load and store */
2125 target_ulong
helper_load_sr(CPUPPCState
*env
, target_ulong sr_num
)
2127 #if defined(TARGET_PPC64)
2128 if (env
->mmu_model
& POWERPC_MMU_64
) {
2133 return env
->sr
[sr_num
];
2136 void helper_store_sr(CPUPPCState
*env
, target_ulong srnum
, target_ulong value
)
2138 qemu_log_mask(CPU_LOG_MMU
,
2139 "%s: reg=%d " TARGET_FMT_lx
" " TARGET_FMT_lx
"\n", __func__
,
2140 (int)srnum
, value
, env
->sr
[srnum
]);
2141 #if defined(TARGET_PPC64)
2142 if (env
->mmu_model
& POWERPC_MMU_64
) {
2143 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2144 uint64_t esid
, vsid
;
2147 esid
= ((uint64_t)(srnum
& 0xf) << 28) | SLB_ESID_V
;
2150 vsid
= (value
& 0xfffffff) << 12;
2152 vsid
|= ((value
>> 27) & 0xf) << 8;
2154 ppc_store_slb(cpu
, srnum
, esid
, vsid
);
2157 if (env
->sr
[srnum
] != value
) {
2158 env
->sr
[srnum
] = value
;
2159 /* Invalidating 256MB of virtual memory in 4kB pages is way longer than
2160 flusing the whole TLB. */
2161 #if !defined(FLUSH_ALL_TLBS) && 0
2163 target_ulong page
, end
;
2164 /* Invalidate 256 MB of virtual memory */
2165 page
= (16 << 20) * srnum
;
2166 end
= page
+ (16 << 20);
2167 for (; page
!= end
; page
+= TARGET_PAGE_SIZE
) {
2168 tlb_flush_page(CPU(cpu
), page
);
2172 env
->tlb_need_flush
|= TLB_NEED_LOCAL_FLUSH
;
2177 /* TLB management */
2178 void helper_tlbia(CPUPPCState
*env
)
2180 ppc_tlb_invalidate_all(env
);
2183 void helper_tlbie(CPUPPCState
*env
, target_ulong addr
)
2185 ppc_tlb_invalidate_one(env
, addr
);
2188 void helper_tlbiva(CPUPPCState
*env
, target_ulong addr
)
2190 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2192 /* tlbiva instruction only exists on BookE */
2193 assert(env
->mmu_model
== POWERPC_MMU_BOOKE
);
2195 cpu_abort(CPU(cpu
), "BookE MMU model is not implemented\n");
2198 /* Software driven TLBs management */
2199 /* PowerPC 602/603 software TLB load instructions helpers */
2200 static void do_6xx_tlb(CPUPPCState
*env
, target_ulong new_EPN
, int is_code
)
2202 target_ulong RPN
, CMP
, EPN
;
2205 RPN
= env
->spr
[SPR_RPA
];
2207 CMP
= env
->spr
[SPR_ICMP
];
2208 EPN
= env
->spr
[SPR_IMISS
];
2210 CMP
= env
->spr
[SPR_DCMP
];
2211 EPN
= env
->spr
[SPR_DMISS
];
2213 way
= (env
->spr
[SPR_SRR1
] >> 17) & 1;
2214 (void)EPN
; /* avoid a compiler warning */
2215 LOG_SWTLB("%s: EPN " TARGET_FMT_lx
" " TARGET_FMT_lx
" PTE0 " TARGET_FMT_lx
2216 " PTE1 " TARGET_FMT_lx
" way %d\n", __func__
, new_EPN
, EPN
, CMP
,
2218 /* Store this TLB */
2219 ppc6xx_tlb_store(env
, (uint32_t)(new_EPN
& TARGET_PAGE_MASK
),
2220 way
, is_code
, CMP
, RPN
);
2223 void helper_6xx_tlbd(CPUPPCState
*env
, target_ulong EPN
)
2225 do_6xx_tlb(env
, EPN
, 0);
2228 void helper_6xx_tlbi(CPUPPCState
*env
, target_ulong EPN
)
2230 do_6xx_tlb(env
, EPN
, 1);
2233 /* PowerPC 74xx software TLB load instructions helpers */
2234 static void do_74xx_tlb(CPUPPCState
*env
, target_ulong new_EPN
, int is_code
)
2236 target_ulong RPN
, CMP
, EPN
;
2239 RPN
= env
->spr
[SPR_PTELO
];
2240 CMP
= env
->spr
[SPR_PTEHI
];
2241 EPN
= env
->spr
[SPR_TLBMISS
] & ~0x3;
2242 way
= env
->spr
[SPR_TLBMISS
] & 0x3;
2243 (void)EPN
; /* avoid a compiler warning */
2244 LOG_SWTLB("%s: EPN " TARGET_FMT_lx
" " TARGET_FMT_lx
" PTE0 " TARGET_FMT_lx
2245 " PTE1 " TARGET_FMT_lx
" way %d\n", __func__
, new_EPN
, EPN
, CMP
,
2247 /* Store this TLB */
2248 ppc6xx_tlb_store(env
, (uint32_t)(new_EPN
& TARGET_PAGE_MASK
),
2249 way
, is_code
, CMP
, RPN
);
2252 void helper_74xx_tlbd(CPUPPCState
*env
, target_ulong EPN
)
2254 do_74xx_tlb(env
, EPN
, 0);
2257 void helper_74xx_tlbi(CPUPPCState
*env
, target_ulong EPN
)
2259 do_74xx_tlb(env
, EPN
, 1);
2262 /*****************************************************************************/
2263 /* PowerPC 601 specific instructions (POWER bridge) */
2265 target_ulong
helper_rac(CPUPPCState
*env
, target_ulong addr
)
2269 target_ulong ret
= 0;
2271 /* We don't have to generate many instances of this instruction,
2272 * as rac is supervisor only.
2274 /* XXX: FIX THIS: Pretend we have no BAT */
2275 nb_BATs
= env
->nb_BATs
;
2277 if (get_physical_address(env
, &ctx
, addr
, 0, ACCESS_INT
) == 0) {
2280 env
->nb_BATs
= nb_BATs
;
2284 static inline target_ulong
booke_tlb_to_page_size(int size
)
2286 return 1024 << (2 * size
);
2289 static inline int booke_page_size_to_tlb(target_ulong page_size
)
2293 switch (page_size
) {
2327 #if defined(TARGET_PPC64)
2328 case 0x000100000000ULL
:
2331 case 0x000400000000ULL
:
2334 case 0x001000000000ULL
:
2337 case 0x004000000000ULL
:
2340 case 0x010000000000ULL
:
2352 /* Helpers for 4xx TLB management */
2353 #define PPC4XX_TLB_ENTRY_MASK 0x0000003f /* Mask for 64 TLB entries */
2355 #define PPC4XX_TLBHI_V 0x00000040
2356 #define PPC4XX_TLBHI_E 0x00000020
2357 #define PPC4XX_TLBHI_SIZE_MIN 0
2358 #define PPC4XX_TLBHI_SIZE_MAX 7
2359 #define PPC4XX_TLBHI_SIZE_DEFAULT 1
2360 #define PPC4XX_TLBHI_SIZE_SHIFT 7
2361 #define PPC4XX_TLBHI_SIZE_MASK 0x00000007
2363 #define PPC4XX_TLBLO_EX 0x00000200
2364 #define PPC4XX_TLBLO_WR 0x00000100
2365 #define PPC4XX_TLBLO_ATTR_MASK 0x000000FF
2366 #define PPC4XX_TLBLO_RPN_MASK 0xFFFFFC00
2368 target_ulong
helper_4xx_tlbre_hi(CPUPPCState
*env
, target_ulong entry
)
2374 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2375 tlb
= &env
->tlb
.tlbe
[entry
];
2377 if (tlb
->prot
& PAGE_VALID
) {
2378 ret
|= PPC4XX_TLBHI_V
;
2380 size
= booke_page_size_to_tlb(tlb
->size
);
2381 if (size
< PPC4XX_TLBHI_SIZE_MIN
|| size
> PPC4XX_TLBHI_SIZE_MAX
) {
2382 size
= PPC4XX_TLBHI_SIZE_DEFAULT
;
2384 ret
|= size
<< PPC4XX_TLBHI_SIZE_SHIFT
;
2385 env
->spr
[SPR_40x_PID
] = tlb
->PID
;
2389 target_ulong
helper_4xx_tlbre_lo(CPUPPCState
*env
, target_ulong entry
)
2394 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2395 tlb
= &env
->tlb
.tlbe
[entry
];
2397 if (tlb
->prot
& PAGE_EXEC
) {
2398 ret
|= PPC4XX_TLBLO_EX
;
2400 if (tlb
->prot
& PAGE_WRITE
) {
2401 ret
|= PPC4XX_TLBLO_WR
;
2406 void helper_4xx_tlbwe_hi(CPUPPCState
*env
, target_ulong entry
,
2409 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2410 CPUState
*cs
= CPU(cpu
);
2412 target_ulong page
, end
;
2414 LOG_SWTLB("%s entry %d val " TARGET_FMT_lx
"\n", __func__
, (int)entry
,
2416 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2417 tlb
= &env
->tlb
.tlbe
[entry
];
2418 /* Invalidate previous TLB (if it's valid) */
2419 if (tlb
->prot
& PAGE_VALID
) {
2420 end
= tlb
->EPN
+ tlb
->size
;
2421 LOG_SWTLB("%s: invalidate old TLB %d start " TARGET_FMT_lx
" end "
2422 TARGET_FMT_lx
"\n", __func__
, (int)entry
, tlb
->EPN
, end
);
2423 for (page
= tlb
->EPN
; page
< end
; page
+= TARGET_PAGE_SIZE
) {
2424 tlb_flush_page(cs
, page
);
2427 tlb
->size
= booke_tlb_to_page_size((val
>> PPC4XX_TLBHI_SIZE_SHIFT
)
2428 & PPC4XX_TLBHI_SIZE_MASK
);
2429 /* We cannot handle TLB size < TARGET_PAGE_SIZE.
2430 * If this ever occurs, we should implement TARGET_PAGE_BITS_VARY
2432 if ((val
& PPC4XX_TLBHI_V
) && tlb
->size
< TARGET_PAGE_SIZE
) {
2433 cpu_abort(cs
, "TLB size " TARGET_FMT_lu
" < %u "
2434 "are not supported (%d)\n"
2435 "Please implement TARGET_PAGE_BITS_VARY\n",
2436 tlb
->size
, TARGET_PAGE_SIZE
, (int)((val
>> 7) & 0x7));
2438 tlb
->EPN
= val
& ~(tlb
->size
- 1);
2439 if (val
& PPC4XX_TLBHI_V
) {
2440 tlb
->prot
|= PAGE_VALID
;
2441 if (val
& PPC4XX_TLBHI_E
) {
2442 /* XXX: TO BE FIXED */
2444 "Little-endian TLB entries are not supported by now\n");
2447 tlb
->prot
&= ~PAGE_VALID
;
2449 tlb
->PID
= env
->spr
[SPR_40x_PID
]; /* PID */
2450 LOG_SWTLB("%s: set up TLB %d RPN " TARGET_FMT_plx
" EPN " TARGET_FMT_lx
2451 " size " TARGET_FMT_lx
" prot %c%c%c%c PID %d\n", __func__
,
2452 (int)entry
, tlb
->RPN
, tlb
->EPN
, tlb
->size
,
2453 tlb
->prot
& PAGE_READ
? 'r' : '-',
2454 tlb
->prot
& PAGE_WRITE
? 'w' : '-',
2455 tlb
->prot
& PAGE_EXEC
? 'x' : '-',
2456 tlb
->prot
& PAGE_VALID
? 'v' : '-', (int)tlb
->PID
);
2457 /* Invalidate new TLB (if valid) */
2458 if (tlb
->prot
& PAGE_VALID
) {
2459 end
= tlb
->EPN
+ tlb
->size
;
2460 LOG_SWTLB("%s: invalidate TLB %d start " TARGET_FMT_lx
" end "
2461 TARGET_FMT_lx
"\n", __func__
, (int)entry
, tlb
->EPN
, end
);
2462 for (page
= tlb
->EPN
; page
< end
; page
+= TARGET_PAGE_SIZE
) {
2463 tlb_flush_page(cs
, page
);
2468 void helper_4xx_tlbwe_lo(CPUPPCState
*env
, target_ulong entry
,
2473 LOG_SWTLB("%s entry %i val " TARGET_FMT_lx
"\n", __func__
, (int)entry
,
2475 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2476 tlb
= &env
->tlb
.tlbe
[entry
];
2477 tlb
->attr
= val
& PPC4XX_TLBLO_ATTR_MASK
;
2478 tlb
->RPN
= val
& PPC4XX_TLBLO_RPN_MASK
;
2479 tlb
->prot
= PAGE_READ
;
2480 if (val
& PPC4XX_TLBLO_EX
) {
2481 tlb
->prot
|= PAGE_EXEC
;
2483 if (val
& PPC4XX_TLBLO_WR
) {
2484 tlb
->prot
|= PAGE_WRITE
;
2486 LOG_SWTLB("%s: set up TLB %d RPN " TARGET_FMT_plx
" EPN " TARGET_FMT_lx
2487 " size " TARGET_FMT_lx
" prot %c%c%c%c PID %d\n", __func__
,
2488 (int)entry
, tlb
->RPN
, tlb
->EPN
, tlb
->size
,
2489 tlb
->prot
& PAGE_READ
? 'r' : '-',
2490 tlb
->prot
& PAGE_WRITE
? 'w' : '-',
2491 tlb
->prot
& PAGE_EXEC
? 'x' : '-',
2492 tlb
->prot
& PAGE_VALID
? 'v' : '-', (int)tlb
->PID
);
2495 target_ulong
helper_4xx_tlbsx(CPUPPCState
*env
, target_ulong address
)
2497 return ppcemb_tlb_search(env
, address
, env
->spr
[SPR_40x_PID
]);
2500 /* PowerPC 440 TLB management */
2501 void helper_440_tlbwe(CPUPPCState
*env
, uint32_t word
, target_ulong entry
,
2504 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2506 target_ulong EPN
, RPN
, size
;
2509 LOG_SWTLB("%s word %d entry %d value " TARGET_FMT_lx
"\n",
2510 __func__
, word
, (int)entry
, value
);
2513 tlb
= &env
->tlb
.tlbe
[entry
];
2516 /* Just here to please gcc */
2518 EPN
= value
& 0xFFFFFC00;
2519 if ((tlb
->prot
& PAGE_VALID
) && EPN
!= tlb
->EPN
) {
2523 size
= booke_tlb_to_page_size((value
>> 4) & 0xF);
2524 if ((tlb
->prot
& PAGE_VALID
) && tlb
->size
< size
) {
2529 tlb
->attr
|= (value
>> 8) & 1;
2530 if (value
& 0x200) {
2531 tlb
->prot
|= PAGE_VALID
;
2533 if (tlb
->prot
& PAGE_VALID
) {
2534 tlb
->prot
&= ~PAGE_VALID
;
2538 tlb
->PID
= env
->spr
[SPR_440_MMUCR
] & 0x000000FF;
2539 if (do_flush_tlbs
) {
2540 tlb_flush(CPU(cpu
));
2544 RPN
= value
& 0xFFFFFC0F;
2545 if ((tlb
->prot
& PAGE_VALID
) && tlb
->RPN
!= RPN
) {
2546 tlb_flush(CPU(cpu
));
2551 tlb
->attr
= (tlb
->attr
& 0x1) | (value
& 0x0000FF00);
2552 tlb
->prot
= tlb
->prot
& PAGE_VALID
;
2554 tlb
->prot
|= PAGE_READ
<< 4;
2557 tlb
->prot
|= PAGE_WRITE
<< 4;
2560 tlb
->prot
|= PAGE_EXEC
<< 4;
2563 tlb
->prot
|= PAGE_READ
;
2566 tlb
->prot
|= PAGE_WRITE
;
2569 tlb
->prot
|= PAGE_EXEC
;
2575 target_ulong
helper_440_tlbre(CPUPPCState
*env
, uint32_t word
,
2583 tlb
= &env
->tlb
.tlbe
[entry
];
2586 /* Just here to please gcc */
2589 size
= booke_page_size_to_tlb(tlb
->size
);
2590 if (size
< 0 || size
> 0xF) {
2594 if (tlb
->attr
& 0x1) {
2597 if (tlb
->prot
& PAGE_VALID
) {
2600 env
->spr
[SPR_440_MMUCR
] &= ~0x000000FF;
2601 env
->spr
[SPR_440_MMUCR
] |= tlb
->PID
;
2607 ret
= tlb
->attr
& ~0x1;
2608 if (tlb
->prot
& (PAGE_READ
<< 4)) {
2611 if (tlb
->prot
& (PAGE_WRITE
<< 4)) {
2614 if (tlb
->prot
& (PAGE_EXEC
<< 4)) {
2617 if (tlb
->prot
& PAGE_READ
) {
2620 if (tlb
->prot
& PAGE_WRITE
) {
2623 if (tlb
->prot
& PAGE_EXEC
) {
2631 target_ulong
helper_440_tlbsx(CPUPPCState
*env
, target_ulong address
)
2633 return ppcemb_tlb_search(env
, address
, env
->spr
[SPR_440_MMUCR
] & 0xFF);
2636 /* PowerPC BookE 2.06 TLB management */
2638 static ppcmas_tlb_t
*booke206_cur_tlb(CPUPPCState
*env
)
2640 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2641 uint32_t tlbncfg
= 0;
2642 int esel
= (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_ESEL_MASK
) >> MAS0_ESEL_SHIFT
;
2643 int ea
= (env
->spr
[SPR_BOOKE_MAS2
] & MAS2_EPN_MASK
);
2646 tlb
= (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_TLBSEL_MASK
) >> MAS0_TLBSEL_SHIFT
;
2647 tlbncfg
= env
->spr
[SPR_BOOKE_TLB0CFG
+ tlb
];
2649 if ((tlbncfg
& TLBnCFG_HES
) && (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_HES
)) {
2650 cpu_abort(CPU(cpu
), "we don't support HES yet\n");
2653 return booke206_get_tlbm(env
, tlb
, ea
, esel
);
2656 void helper_booke_setpid(CPUPPCState
*env
, uint32_t pidn
, target_ulong pid
)
2658 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2660 env
->spr
[pidn
] = pid
;
2661 /* changing PIDs mean we're in a different address space now */
2662 tlb_flush(CPU(cpu
));
2665 void helper_booke_set_eplc(CPUPPCState
*env
, target_ulong val
)
2667 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2668 env
->spr
[SPR_BOOKE_EPLC
] = val
& EPID_MASK
;
2669 tlb_flush_by_mmuidx(CPU(cpu
), 1 << PPC_TLB_EPID_LOAD
);
2671 void helper_booke_set_epsc(CPUPPCState
*env
, target_ulong val
)
2673 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2674 env
->spr
[SPR_BOOKE_EPSC
] = val
& EPID_MASK
;
2675 tlb_flush_by_mmuidx(CPU(cpu
), 1 << PPC_TLB_EPID_STORE
);
2678 static inline void flush_page(CPUPPCState
*env
, ppcmas_tlb_t
*tlb
)
2680 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2682 if (booke206_tlb_to_page_size(env
, tlb
) == TARGET_PAGE_SIZE
) {
2683 tlb_flush_page(CPU(cpu
), tlb
->mas2
& MAS2_EPN_MASK
);
2685 tlb_flush(CPU(cpu
));
2689 void helper_booke206_tlbwe(CPUPPCState
*env
)
2691 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2692 uint32_t tlbncfg
, tlbn
;
2694 uint32_t size_tlb
, size_ps
;
2698 switch (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_WQ_MASK
) {
2699 case MAS0_WQ_ALWAYS
:
2700 /* good to go, write that entry */
2703 /* XXX check if reserved */
2708 case MAS0_WQ_CLR_RSRV
:
2709 /* XXX clear entry */
2712 /* no idea what to do */
2716 if (((env
->spr
[SPR_BOOKE_MAS0
] & MAS0_ATSEL
) == MAS0_ATSEL_LRAT
) &&
2718 /* XXX we don't support direct LRAT setting yet */
2719 fprintf(stderr
, "cpu: don't support LRAT setting yet\n");
2723 tlbn
= (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_TLBSEL_MASK
) >> MAS0_TLBSEL_SHIFT
;
2724 tlbncfg
= env
->spr
[SPR_BOOKE_TLB0CFG
+ tlbn
];
2726 tlb
= booke206_cur_tlb(env
);
2729 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2730 POWERPC_EXCP_INVAL
|
2731 POWERPC_EXCP_INVAL_INVAL
, GETPC());
2734 /* check that we support the targeted size */
2735 size_tlb
= (env
->spr
[SPR_BOOKE_MAS1
] & MAS1_TSIZE_MASK
) >> MAS1_TSIZE_SHIFT
;
2736 size_ps
= booke206_tlbnps(env
, tlbn
);
2737 if ((env
->spr
[SPR_BOOKE_MAS1
] & MAS1_VALID
) && (tlbncfg
& TLBnCFG_AVAIL
) &&
2738 !(size_ps
& (1 << size_tlb
))) {
2739 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2740 POWERPC_EXCP_INVAL
|
2741 POWERPC_EXCP_INVAL_INVAL
, GETPC());
2745 cpu_abort(CPU(cpu
), "missing HV implementation\n");
2748 if (tlb
->mas1
& MAS1_VALID
) {
2749 /* Invalidate the page in QEMU TLB if it was a valid entry.
2751 * In "PowerPC e500 Core Family Reference Manual, Rev. 1",
2752 * Section "12.4.2 TLB Write Entry (tlbwe) Instruction":
2753 * (https://www.nxp.com/docs/en/reference-manual/E500CORERM.pdf)
2755 * "Note that when an L2 TLB entry is written, it may be displacing an
2756 * already valid entry in the same L2 TLB location (a victim). If a
2757 * valid L1 TLB entry corresponds to the L2 MMU victim entry, that L1
2758 * TLB entry is automatically invalidated." */
2759 flush_page(env
, tlb
);
2762 tlb
->mas7_3
= ((uint64_t)env
->spr
[SPR_BOOKE_MAS7
] << 32) |
2763 env
->spr
[SPR_BOOKE_MAS3
];
2764 tlb
->mas1
= env
->spr
[SPR_BOOKE_MAS1
];
2766 if ((env
->spr
[SPR_MMUCFG
] & MMUCFG_MAVN
) == MMUCFG_MAVN_V2
) {
2767 /* For TLB which has a fixed size TSIZE is ignored with MAV2 */
2768 booke206_fixed_size_tlbn(env
, tlbn
, tlb
);
2770 if (!(tlbncfg
& TLBnCFG_AVAIL
)) {
2771 /* force !AVAIL TLB entries to correct page size */
2772 tlb
->mas1
&= ~MAS1_TSIZE_MASK
;
2773 /* XXX can be configured in MMUCSR0 */
2774 tlb
->mas1
|= (tlbncfg
& TLBnCFG_MINSIZE
) >> 12;
2778 /* Make a mask from TLB size to discard invalid bits in EPN field */
2779 mask
= ~(booke206_tlb_to_page_size(env
, tlb
) - 1);
2780 /* Add a mask for page attributes */
2781 mask
|= MAS2_ACM
| MAS2_VLE
| MAS2_W
| MAS2_I
| MAS2_M
| MAS2_G
| MAS2_E
;
2784 /* Executing a tlbwe instruction in 32-bit mode will set
2785 * bits 0:31 of the TLB EPN field to zero.
2790 tlb
->mas2
= env
->spr
[SPR_BOOKE_MAS2
] & mask
;
2792 if (!(tlbncfg
& TLBnCFG_IPROT
)) {
2793 /* no IPROT supported by TLB */
2794 tlb
->mas1
&= ~MAS1_IPROT
;
2797 flush_page(env
, tlb
);
2800 static inline void booke206_tlb_to_mas(CPUPPCState
*env
, ppcmas_tlb_t
*tlb
)
2802 int tlbn
= booke206_tlbm_to_tlbn(env
, tlb
);
2803 int way
= booke206_tlbm_to_way(env
, tlb
);
2805 env
->spr
[SPR_BOOKE_MAS0
] = tlbn
<< MAS0_TLBSEL_SHIFT
;
2806 env
->spr
[SPR_BOOKE_MAS0
] |= way
<< MAS0_ESEL_SHIFT
;
2807 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_NV_SHIFT
;
2809 env
->spr
[SPR_BOOKE_MAS1
] = tlb
->mas1
;
2810 env
->spr
[SPR_BOOKE_MAS2
] = tlb
->mas2
;
2811 env
->spr
[SPR_BOOKE_MAS3
] = tlb
->mas7_3
;
2812 env
->spr
[SPR_BOOKE_MAS7
] = tlb
->mas7_3
>> 32;
2815 void helper_booke206_tlbre(CPUPPCState
*env
)
2817 ppcmas_tlb_t
*tlb
= NULL
;
2819 tlb
= booke206_cur_tlb(env
);
2821 env
->spr
[SPR_BOOKE_MAS1
] = 0;
2823 booke206_tlb_to_mas(env
, tlb
);
2827 void helper_booke206_tlbsx(CPUPPCState
*env
, target_ulong address
)
2829 ppcmas_tlb_t
*tlb
= NULL
;
2834 spid
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SPID_MASK
) >> MAS6_SPID_SHIFT
;
2835 sas
= env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SAS
;
2837 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
2838 int ways
= booke206_tlb_ways(env
, i
);
2840 for (j
= 0; j
< ways
; j
++) {
2841 tlb
= booke206_get_tlbm(env
, i
, address
, j
);
2847 if (ppcmas_tlb_check(env
, tlb
, &raddr
, address
, spid
)) {
2851 if (sas
!= ((tlb
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
)) {
2855 booke206_tlb_to_mas(env
, tlb
);
2860 /* no entry found, fill with defaults */
2861 env
->spr
[SPR_BOOKE_MAS0
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TLBSELD_MASK
;
2862 env
->spr
[SPR_BOOKE_MAS1
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TSIZED_MASK
;
2863 env
->spr
[SPR_BOOKE_MAS2
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_WIMGED_MASK
;
2864 env
->spr
[SPR_BOOKE_MAS3
] = 0;
2865 env
->spr
[SPR_BOOKE_MAS7
] = 0;
2867 if (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SAS
) {
2868 env
->spr
[SPR_BOOKE_MAS1
] |= MAS1_TS
;
2871 env
->spr
[SPR_BOOKE_MAS1
] |= (env
->spr
[SPR_BOOKE_MAS6
] >> 16)
2874 /* next victim logic */
2875 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_ESEL_SHIFT
;
2877 env
->last_way
&= booke206_tlb_ways(env
, 0) - 1;
2878 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_NV_SHIFT
;
2881 static inline void booke206_invalidate_ea_tlb(CPUPPCState
*env
, int tlbn
,
2885 int ways
= booke206_tlb_ways(env
, tlbn
);
2888 for (i
= 0; i
< ways
; i
++) {
2889 ppcmas_tlb_t
*tlb
= booke206_get_tlbm(env
, tlbn
, ea
, i
);
2893 mask
= ~(booke206_tlb_to_page_size(env
, tlb
) - 1);
2894 if (((tlb
->mas2
& MAS2_EPN_MASK
) == (ea
& mask
)) &&
2895 !(tlb
->mas1
& MAS1_IPROT
)) {
2896 tlb
->mas1
&= ~MAS1_VALID
;
2901 void helper_booke206_tlbivax(CPUPPCState
*env
, target_ulong address
)
2905 if (address
& 0x4) {
2906 /* flush all entries */
2907 if (address
& 0x8) {
2908 /* flush all of TLB1 */
2909 booke206_flush_tlb(env
, BOOKE206_FLUSH_TLB1
, 1);
2911 /* flush all of TLB0 */
2912 booke206_flush_tlb(env
, BOOKE206_FLUSH_TLB0
, 0);
2917 if (address
& 0x8) {
2918 /* flush TLB1 entries */
2919 booke206_invalidate_ea_tlb(env
, 1, address
);
2924 /* flush TLB0 entries */
2925 booke206_invalidate_ea_tlb(env
, 0, address
);
2927 tlb_flush_page(cs
, address
& MAS2_EPN_MASK
);
2932 void helper_booke206_tlbilx0(CPUPPCState
*env
, target_ulong address
)
2934 /* XXX missing LPID handling */
2935 booke206_flush_tlb(env
, -1, 1);
2938 void helper_booke206_tlbilx1(CPUPPCState
*env
, target_ulong address
)
2940 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2942 int tid
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SPID
);
2943 ppcmas_tlb_t
*tlb
= env
->tlb
.tlbm
;
2946 /* XXX missing LPID handling */
2947 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
2948 tlb_size
= booke206_tlb_size(env
, i
);
2949 for (j
= 0; j
< tlb_size
; j
++) {
2950 if (!(tlb
[j
].mas1
& MAS1_IPROT
) &&
2951 ((tlb
[j
].mas1
& MAS1_TID_MASK
) == tid
)) {
2952 tlb
[j
].mas1
&= ~MAS1_VALID
;
2955 tlb
+= booke206_tlb_size(env
, i
);
2957 tlb_flush(CPU(cpu
));
2960 void helper_booke206_tlbilx3(CPUPPCState
*env
, target_ulong address
)
2962 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2965 int tid
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SPID
);
2966 int pid
= tid
>> MAS6_SPID_SHIFT
;
2967 int sgs
= env
->spr
[SPR_BOOKE_MAS5
] & MAS5_SGS
;
2968 int ind
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SIND
) ? MAS1_IND
: 0;
2969 /* XXX check for unsupported isize and raise an invalid opcode then */
2970 int size
= env
->spr
[SPR_BOOKE_MAS6
] & MAS6_ISIZE_MASK
;
2971 /* XXX implement MAV2 handling */
2974 /* XXX missing LPID handling */
2975 /* flush by pid and ea */
2976 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
2977 int ways
= booke206_tlb_ways(env
, i
);
2979 for (j
= 0; j
< ways
; j
++) {
2980 tlb
= booke206_get_tlbm(env
, i
, address
, j
);
2984 if ((ppcmas_tlb_check(env
, tlb
, NULL
, address
, pid
) != 0) ||
2985 (tlb
->mas1
& MAS1_IPROT
) ||
2986 ((tlb
->mas1
& MAS1_IND
) != ind
) ||
2987 ((tlb
->mas8
& MAS8_TGS
) != sgs
)) {
2990 if (mav2
&& ((tlb
->mas1
& MAS1_TSIZE_MASK
) != size
)) {
2991 /* XXX only check when MMUCFG[TWC] || TLBnCFG[HES] */
2994 /* XXX e500mc doesn't match SAS, but other cores might */
2995 tlb
->mas1
&= ~MAS1_VALID
;
2998 tlb_flush(CPU(cpu
));
3001 void helper_booke206_tlbflush(CPUPPCState
*env
, target_ulong type
)
3006 flags
|= BOOKE206_FLUSH_TLB1
;
3010 flags
|= BOOKE206_FLUSH_TLB0
;
3013 booke206_flush_tlb(env
, flags
, 1);
3017 void helper_check_tlb_flush_local(CPUPPCState
*env
)
3019 check_tlb_flush(env
, false);
3022 void helper_check_tlb_flush_global(CPUPPCState
*env
)
3024 check_tlb_flush(env
, true);
3027 /*****************************************************************************/
3029 /* try to fill the TLB and return an exception if error. If retaddr is
3030 NULL, it means that the function was called in C code (i.e. not
3031 from generated code or from helper.c) */
3032 /* XXX: fix it to restore all registers */
3033 void tlb_fill(CPUState
*cs
, target_ulong addr
, int size
,
3034 MMUAccessType access_type
, int mmu_idx
, uintptr_t retaddr
)
3036 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
3037 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cs
);
3038 CPUPPCState
*env
= &cpu
->env
;
3041 if (pcc
->handle_mmu_fault
) {
3042 ret
= pcc
->handle_mmu_fault(cpu
, addr
, access_type
, mmu_idx
);
3044 ret
= cpu_ppc_handle_mmu_fault(env
, addr
, access_type
, mmu_idx
);
3046 if (unlikely(ret
!= 0)) {
3047 raise_exception_err_ra(env
, cs
->exception_index
, env
->error_code
,