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 "qapi/error.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"
36 //#define DEBUG_SOFTWARE_TLB
37 //#define DUMP_PAGE_TABLES
38 //#define FLUSH_ALL_TLBS
41 # define LOG_MMU_STATE(cpu) log_cpu_state_mask(CPU_LOG_MMU, (cpu), 0)
43 # define LOG_MMU_STATE(cpu) do { } while (0)
46 #ifdef DEBUG_SOFTWARE_TLB
47 # define LOG_SWTLB(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)
49 # define LOG_SWTLB(...) do { } while (0)
53 # define LOG_BATS(...) qemu_log_mask(CPU_LOG_MMU, __VA_ARGS__)
55 # define LOG_BATS(...) do { } while (0)
58 /*****************************************************************************/
59 /* PowerPC MMU emulation */
61 /* Context used internally during MMU translations */
62 typedef struct mmu_ctx_t mmu_ctx_t
;
64 hwaddr raddr
; /* Real address */
65 hwaddr eaddr
; /* Effective address */
66 int prot
; /* Protection bits */
67 hwaddr hash
[2]; /* Pagetable hash values */
68 target_ulong ptem
; /* Virtual segment ID | API */
69 int key
; /* Access key */
70 int nx
; /* Non-execute area */
73 /* Common routines used by software and hardware TLBs emulation */
74 static inline int pte_is_valid(target_ulong pte0
)
76 return pte0
& 0x80000000 ? 1 : 0;
79 static inline void pte_invalidate(target_ulong
*pte0
)
84 #define PTE_PTEM_MASK 0x7FFFFFBF
85 #define PTE_CHECK_MASK (TARGET_PAGE_MASK | 0x7B)
87 static int pp_check(int key
, int pp
, int nx
)
91 /* Compute access rights */
114 access
= PAGE_READ
| PAGE_WRITE
;
125 static int check_prot(int prot
, int rw
, int access_type
)
129 if (access_type
== ACCESS_CODE
) {
130 if (prot
& PAGE_EXEC
) {
136 if (prot
& PAGE_WRITE
) {
142 if (prot
& PAGE_READ
) {
152 static inline int ppc6xx_tlb_pte_check(mmu_ctx_t
*ctx
, target_ulong pte0
,
153 target_ulong pte1
, int h
, int rw
, int type
)
155 target_ulong ptem
, mmask
;
156 int access
, ret
, pteh
, ptev
, pp
;
159 /* Check validity and table match */
160 ptev
= pte_is_valid(pte0
);
161 pteh
= (pte0
>> 6) & 1;
162 if (ptev
&& h
== pteh
) {
163 /* Check vsid & api */
164 ptem
= pte0
& PTE_PTEM_MASK
;
165 mmask
= PTE_CHECK_MASK
;
166 pp
= pte1
& 0x00000003;
167 if (ptem
== ctx
->ptem
) {
168 if (ctx
->raddr
!= (hwaddr
)-1ULL) {
169 /* all matches should have equal RPN, WIMG & PP */
170 if ((ctx
->raddr
& mmask
) != (pte1
& mmask
)) {
171 qemu_log_mask(CPU_LOG_MMU
, "Bad RPN/WIMG/PP\n");
175 /* Compute access rights */
176 access
= pp_check(ctx
->key
, pp
, ctx
->nx
);
177 /* Keep the matching PTE informations */
180 ret
= check_prot(ctx
->prot
, rw
, type
);
183 qemu_log_mask(CPU_LOG_MMU
, "PTE access granted !\n");
185 /* Access right violation */
186 qemu_log_mask(CPU_LOG_MMU
, "PTE access rejected\n");
194 static int pte_update_flags(mmu_ctx_t
*ctx
, target_ulong
*pte1p
,
199 /* Update page flags */
200 if (!(*pte1p
& 0x00000100)) {
201 /* Update accessed flag */
202 *pte1p
|= 0x00000100;
205 if (!(*pte1p
& 0x00000080)) {
206 if (rw
== 1 && ret
== 0) {
207 /* Update changed flag */
208 *pte1p
|= 0x00000080;
211 /* Force page fault for first write access */
212 ctx
->prot
&= ~PAGE_WRITE
;
219 /* Software driven TLB helpers */
220 static inline int ppc6xx_tlb_getnum(CPUPPCState
*env
, target_ulong eaddr
,
221 int way
, int is_code
)
225 /* Select TLB num in a way from address */
226 nr
= (eaddr
>> TARGET_PAGE_BITS
) & (env
->tlb_per_way
- 1);
228 nr
+= env
->tlb_per_way
* way
;
229 /* 6xx have separate TLBs for instructions and data */
230 if (is_code
&& env
->id_tlbs
== 1) {
237 static inline void ppc6xx_tlb_invalidate_all(CPUPPCState
*env
)
239 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
243 /* LOG_SWTLB("Invalidate all TLBs\n"); */
244 /* Invalidate all defined software TLB */
246 if (env
->id_tlbs
== 1) {
249 for (nr
= 0; nr
< max
; nr
++) {
250 tlb
= &env
->tlb
.tlb6
[nr
];
251 pte_invalidate(&tlb
->pte0
);
256 static inline void ppc6xx_tlb_invalidate_virt2(CPUPPCState
*env
,
258 int is_code
, int match_epn
)
260 #if !defined(FLUSH_ALL_TLBS)
261 CPUState
*cs
= CPU(ppc_env_get_cpu(env
));
265 /* Invalidate ITLB + DTLB, all ways */
266 for (way
= 0; way
< env
->nb_ways
; way
++) {
267 nr
= ppc6xx_tlb_getnum(env
, eaddr
, way
, is_code
);
268 tlb
= &env
->tlb
.tlb6
[nr
];
269 if (pte_is_valid(tlb
->pte0
) && (match_epn
== 0 || eaddr
== tlb
->EPN
)) {
270 LOG_SWTLB("TLB invalidate %d/%d " TARGET_FMT_lx
"\n", nr
,
272 pte_invalidate(&tlb
->pte0
);
273 tlb_flush_page(cs
, tlb
->EPN
);
277 /* XXX: PowerPC specification say this is valid as well */
278 ppc6xx_tlb_invalidate_all(env
);
282 static inline void ppc6xx_tlb_invalidate_virt(CPUPPCState
*env
,
283 target_ulong eaddr
, int is_code
)
285 ppc6xx_tlb_invalidate_virt2(env
, eaddr
, is_code
, 0);
288 static void ppc6xx_tlb_store(CPUPPCState
*env
, target_ulong EPN
, int way
,
289 int is_code
, target_ulong pte0
, target_ulong pte1
)
294 nr
= ppc6xx_tlb_getnum(env
, EPN
, way
, is_code
);
295 tlb
= &env
->tlb
.tlb6
[nr
];
296 LOG_SWTLB("Set TLB %d/%d EPN " TARGET_FMT_lx
" PTE0 " TARGET_FMT_lx
297 " PTE1 " TARGET_FMT_lx
"\n", nr
, env
->nb_tlb
, EPN
, pte0
, pte1
);
298 /* Invalidate any pending reference in QEMU for this virtual address */
299 ppc6xx_tlb_invalidate_virt2(env
, EPN
, is_code
, 1);
303 /* Store last way for LRU mechanism */
307 static inline int ppc6xx_tlb_check(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
308 target_ulong eaddr
, int rw
, int access_type
)
315 ret
= -1; /* No TLB found */
316 for (way
= 0; way
< env
->nb_ways
; way
++) {
317 nr
= ppc6xx_tlb_getnum(env
, eaddr
, way
,
318 access_type
== ACCESS_CODE
? 1 : 0);
319 tlb
= &env
->tlb
.tlb6
[nr
];
320 /* This test "emulates" the PTE index match for hardware TLBs */
321 if ((eaddr
& TARGET_PAGE_MASK
) != tlb
->EPN
) {
322 LOG_SWTLB("TLB %d/%d %s [" TARGET_FMT_lx
" " TARGET_FMT_lx
323 "] <> " TARGET_FMT_lx
"\n", nr
, env
->nb_tlb
,
324 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
325 tlb
->EPN
, tlb
->EPN
+ TARGET_PAGE_SIZE
, eaddr
);
328 LOG_SWTLB("TLB %d/%d %s " TARGET_FMT_lx
" <> " TARGET_FMT_lx
" "
329 TARGET_FMT_lx
" %c %c\n", nr
, env
->nb_tlb
,
330 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
331 tlb
->EPN
, eaddr
, tlb
->pte1
,
332 rw
? 'S' : 'L', access_type
== ACCESS_CODE
? 'I' : 'D');
333 switch (ppc6xx_tlb_pte_check(ctx
, tlb
->pte0
, tlb
->pte1
, 0, rw
, access_type
)) {
335 /* TLB inconsistency */
338 /* Access violation */
348 /* XXX: we should go on looping to check all TLBs consistency
349 * but we can speed-up the whole thing as the
350 * result would be undefined if TLBs are not consistent.
359 LOG_SWTLB("found TLB at addr " TARGET_FMT_plx
" prot=%01x ret=%d\n",
360 ctx
->raddr
& TARGET_PAGE_MASK
, ctx
->prot
, ret
);
361 /* Update page flags */
362 pte_update_flags(ctx
, &env
->tlb
.tlb6
[best
].pte1
, ret
, rw
);
368 /* Perform BAT hit & translation */
369 static inline void bat_size_prot(CPUPPCState
*env
, target_ulong
*blp
,
370 int *validp
, int *protp
, target_ulong
*BATu
,
376 bl
= (*BATu
& 0x00001FFC) << 15;
379 if (((msr_pr
== 0) && (*BATu
& 0x00000002)) ||
380 ((msr_pr
!= 0) && (*BATu
& 0x00000001))) {
382 pp
= *BATl
& 0x00000003;
384 prot
= PAGE_READ
| PAGE_EXEC
;
395 static int get_bat_6xx_tlb(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
396 target_ulong
virtual, int rw
, int type
)
398 target_ulong
*BATlt
, *BATut
, *BATu
, *BATl
;
399 target_ulong BEPIl
, BEPIu
, bl
;
403 LOG_BATS("%s: %cBAT v " TARGET_FMT_lx
"\n", __func__
,
404 type
== ACCESS_CODE
? 'I' : 'D', virtual);
407 BATlt
= env
->IBAT
[1];
408 BATut
= env
->IBAT
[0];
411 BATlt
= env
->DBAT
[1];
412 BATut
= env
->DBAT
[0];
415 for (i
= 0; i
< env
->nb_BATs
; i
++) {
418 BEPIu
= *BATu
& 0xF0000000;
419 BEPIl
= *BATu
& 0x0FFE0000;
420 bat_size_prot(env
, &bl
, &valid
, &prot
, BATu
, BATl
);
421 LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx
" BATu " TARGET_FMT_lx
422 " BATl " TARGET_FMT_lx
"\n", __func__
,
423 type
== ACCESS_CODE
? 'I' : 'D', i
, virtual, *BATu
, *BATl
);
424 if ((virtual & 0xF0000000) == BEPIu
&&
425 ((virtual & 0x0FFE0000) & ~bl
) == BEPIl
) {
428 /* Get physical address */
429 ctx
->raddr
= (*BATl
& 0xF0000000) |
430 ((virtual & 0x0FFE0000 & bl
) | (*BATl
& 0x0FFE0000)) |
431 (virtual & 0x0001F000);
432 /* Compute access rights */
434 ret
= check_prot(ctx
->prot
, rw
, type
);
436 LOG_BATS("BAT %d match: r " TARGET_FMT_plx
" prot=%c%c\n",
437 i
, ctx
->raddr
, ctx
->prot
& PAGE_READ
? 'R' : '-',
438 ctx
->prot
& PAGE_WRITE
? 'W' : '-');
445 #if defined(DEBUG_BATS)
446 if (qemu_log_enabled()) {
447 LOG_BATS("no BAT match for " TARGET_FMT_lx
":\n", virtual);
448 for (i
= 0; i
< 4; i
++) {
451 BEPIu
= *BATu
& 0xF0000000;
452 BEPIl
= *BATu
& 0x0FFE0000;
453 bl
= (*BATu
& 0x00001FFC) << 15;
454 LOG_BATS("%s: %cBAT%d v " TARGET_FMT_lx
" BATu " TARGET_FMT_lx
455 " BATl " TARGET_FMT_lx
"\n\t" TARGET_FMT_lx
" "
456 TARGET_FMT_lx
" " TARGET_FMT_lx
"\n",
457 __func__
, type
== ACCESS_CODE
? 'I' : 'D', i
, virtual,
458 *BATu
, *BATl
, BEPIu
, BEPIl
, bl
);
467 /* Perform segment based translation */
468 static inline int get_segment_6xx_tlb(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
469 target_ulong eaddr
, int rw
, int type
)
471 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
474 int ds
, pr
, target_page_bits
;
476 target_ulong sr
, pgidx
;
481 sr
= env
->sr
[eaddr
>> 28];
482 ctx
->key
= (((sr
& 0x20000000) && (pr
!= 0)) ||
483 ((sr
& 0x40000000) && (pr
== 0))) ? 1 : 0;
484 ds
= sr
& 0x80000000 ? 1 : 0;
485 ctx
->nx
= sr
& 0x10000000 ? 1 : 0;
486 vsid
= sr
& 0x00FFFFFF;
487 target_page_bits
= TARGET_PAGE_BITS
;
488 qemu_log_mask(CPU_LOG_MMU
,
489 "Check segment v=" TARGET_FMT_lx
" %d " TARGET_FMT_lx
490 " nip=" TARGET_FMT_lx
" lr=" TARGET_FMT_lx
491 " ir=%d dr=%d pr=%d %d t=%d\n",
492 eaddr
, (int)(eaddr
>> 28), sr
, env
->nip
, env
->lr
, (int)msr_ir
,
493 (int)msr_dr
, pr
!= 0 ? 1 : 0, rw
, type
);
494 pgidx
= (eaddr
& ~SEGMENT_MASK_256M
) >> target_page_bits
;
496 ctx
->ptem
= (vsid
<< 7) | (pgidx
>> 10);
498 qemu_log_mask(CPU_LOG_MMU
,
499 "pte segment: key=%d ds %d nx %d vsid " TARGET_FMT_lx
"\n",
500 ctx
->key
, ds
, ctx
->nx
, vsid
);
503 /* Check if instruction fetch is allowed, if needed */
504 if (type
!= ACCESS_CODE
|| ctx
->nx
== 0) {
505 /* Page address translation */
506 qemu_log_mask(CPU_LOG_MMU
, "htab_base " TARGET_FMT_plx
507 " htab_mask " TARGET_FMT_plx
508 " hash " TARGET_FMT_plx
"\n",
509 ppc_hash32_hpt_base(cpu
), ppc_hash32_hpt_mask(cpu
), hash
);
511 ctx
->hash
[1] = ~hash
;
513 /* Initialize real address with an invalid value */
514 ctx
->raddr
= (hwaddr
)-1ULL;
515 /* Software TLB search */
516 ret
= ppc6xx_tlb_check(env
, ctx
, eaddr
, rw
, type
);
517 #if defined(DUMP_PAGE_TABLES)
518 if (qemu_loglevel_mask(CPU_LOG_MMU
)) {
519 CPUState
*cs
= ENV_GET_CPU(env
);
521 uint32_t a0
, a1
, a2
, a3
;
523 qemu_log("Page table: " TARGET_FMT_plx
" len " TARGET_FMT_plx
524 "\n", ppc_hash32_hpt_base(cpu
),
525 ppc_hash32_hpt_mask(env
) + 0x80);
526 for (curaddr
= ppc_hash32_hpt_base(cpu
);
527 curaddr
< (ppc_hash32_hpt_base(cpu
)
528 + ppc_hash32_hpt_mask(cpu
) + 0x80);
530 a0
= ldl_phys(cs
->as
, curaddr
);
531 a1
= ldl_phys(cs
->as
, curaddr
+ 4);
532 a2
= ldl_phys(cs
->as
, curaddr
+ 8);
533 a3
= ldl_phys(cs
->as
, curaddr
+ 12);
534 if (a0
!= 0 || a1
!= 0 || a2
!= 0 || a3
!= 0) {
535 qemu_log(TARGET_FMT_plx
": %08x %08x %08x %08x\n",
536 curaddr
, a0
, a1
, a2
, a3
);
542 qemu_log_mask(CPU_LOG_MMU
, "No access allowed\n");
548 qemu_log_mask(CPU_LOG_MMU
, "direct store...\n");
549 /* Direct-store segment : absolutely *BUGGY* for now */
551 /* Direct-store implies a 32-bit MMU.
552 * Check the Segment Register's bus unit ID (BUID).
554 sr
= env
->sr
[eaddr
>> 28];
555 if ((sr
& 0x1FF00000) >> 20 == 0x07f) {
556 /* Memory-forced I/O controller interface access */
557 /* If T=1 and BUID=x'07F', the 601 performs a memory access
558 * to SR[28-31] LA[4-31], bypassing all protection mechanisms.
560 ctx
->raddr
= ((sr
& 0xF) << 28) | (eaddr
& 0x0FFFFFFF);
561 ctx
->prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
567 /* Integer load/store : only access allowed */
570 /* No code fetch is allowed in direct-store areas */
573 /* Floating point load/store */
576 /* lwarx, ldarx or srwcx. */
579 /* dcba, dcbt, dcbtst, dcbf, dcbi, dcbst, dcbz, or icbi */
580 /* Should make the instruction do no-op.
581 * As it already do no-op, it's quite easy :-)
589 qemu_log_mask(CPU_LOG_MMU
, "ERROR: instruction should not need "
590 "address translation\n");
593 if ((rw
== 1 || ctx
->key
!= 1) && (rw
== 0 || ctx
->key
!= 0)) {
604 /* Generic TLB check function for embedded PowerPC implementations */
605 static int ppcemb_tlb_check(CPUPPCState
*env
, ppcemb_tlb_t
*tlb
,
607 target_ulong address
, uint32_t pid
, int ext
,
612 /* Check valid flag */
613 if (!(tlb
->prot
& PAGE_VALID
)) {
616 mask
= ~(tlb
->size
- 1);
617 LOG_SWTLB("%s: TLB %d address " TARGET_FMT_lx
" PID %u <=> " TARGET_FMT_lx
618 " " TARGET_FMT_lx
" %u %x\n", __func__
, i
, address
, pid
, tlb
->EPN
,
619 mask
, (uint32_t)tlb
->PID
, tlb
->prot
);
621 if (tlb
->PID
!= 0 && tlb
->PID
!= pid
) {
624 /* Check effective address */
625 if ((address
& mask
) != tlb
->EPN
) {
628 *raddrp
= (tlb
->RPN
& mask
) | (address
& ~mask
);
630 /* Extend the physical address to 36 bits */
631 *raddrp
|= (uint64_t)(tlb
->RPN
& 0xF) << 32;
637 /* Generic TLB search function for PowerPC embedded implementations */
638 static int ppcemb_tlb_search(CPUPPCState
*env
, target_ulong address
,
645 /* Default return value is no match */
647 for (i
= 0; i
< env
->nb_tlb
; i
++) {
648 tlb
= &env
->tlb
.tlbe
[i
];
649 if (ppcemb_tlb_check(env
, tlb
, &raddr
, address
, pid
, 0, i
) == 0) {
658 /* Helpers specific to PowerPC 40x implementations */
659 static inline void ppc4xx_tlb_invalidate_all(CPUPPCState
*env
)
661 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
665 for (i
= 0; i
< env
->nb_tlb
; i
++) {
666 tlb
= &env
->tlb
.tlbe
[i
];
667 tlb
->prot
&= ~PAGE_VALID
;
672 static int mmu40x_get_physical_address(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
673 target_ulong address
, int rw
,
678 int i
, ret
, zsel
, zpr
, pr
;
681 raddr
= (hwaddr
)-1ULL;
683 for (i
= 0; i
< env
->nb_tlb
; i
++) {
684 tlb
= &env
->tlb
.tlbe
[i
];
685 if (ppcemb_tlb_check(env
, tlb
, &raddr
, address
,
686 env
->spr
[SPR_40x_PID
], 0, i
) < 0) {
689 zsel
= (tlb
->attr
>> 4) & 0xF;
690 zpr
= (env
->spr
[SPR_40x_ZPR
] >> (30 - (2 * zsel
))) & 0x3;
691 LOG_SWTLB("%s: TLB %d zsel %d zpr %d rw %d attr %08x\n",
692 __func__
, i
, zsel
, zpr
, rw
, tlb
->attr
);
693 /* Check execute enable bit */
701 /* All accesses granted */
702 ctx
->prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
707 /* Raise Zone protection fault. */
708 env
->spr
[SPR_40x_ESR
] = 1 << 22;
716 /* Check from TLB entry */
717 ctx
->prot
= tlb
->prot
;
718 ret
= check_prot(ctx
->prot
, rw
, access_type
);
720 env
->spr
[SPR_40x_ESR
] = 0;
726 LOG_SWTLB("%s: access granted " TARGET_FMT_lx
" => " TARGET_FMT_plx
727 " %d %d\n", __func__
, address
, ctx
->raddr
, ctx
->prot
,
732 LOG_SWTLB("%s: access refused " TARGET_FMT_lx
" => " TARGET_FMT_plx
733 " %d %d\n", __func__
, address
, raddr
, ctx
->prot
, ret
);
738 void store_40x_sler(CPUPPCState
*env
, uint32_t val
)
740 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
742 /* XXX: TO BE FIXED */
743 if (val
!= 0x00000000) {
744 cpu_abort(CPU(cpu
), "Little-endian regions are not supported by now\n");
746 env
->spr
[SPR_405_SLER
] = val
;
749 static inline int mmubooke_check_tlb(CPUPPCState
*env
, ppcemb_tlb_t
*tlb
,
750 hwaddr
*raddr
, int *prot
,
751 target_ulong address
, int rw
,
752 int access_type
, int i
)
756 if (ppcemb_tlb_check(env
, tlb
, raddr
, address
,
757 env
->spr
[SPR_BOOKE_PID
],
758 !env
->nb_pids
, i
) >= 0) {
762 if (env
->spr
[SPR_BOOKE_PID1
] &&
763 ppcemb_tlb_check(env
, tlb
, raddr
, address
,
764 env
->spr
[SPR_BOOKE_PID1
], 0, i
) >= 0) {
768 if (env
->spr
[SPR_BOOKE_PID2
] &&
769 ppcemb_tlb_check(env
, tlb
, raddr
, address
,
770 env
->spr
[SPR_BOOKE_PID2
], 0, i
) >= 0) {
774 LOG_SWTLB("%s: TLB entry not found\n", __func__
);
780 prot2
= tlb
->prot
& 0xF;
782 prot2
= (tlb
->prot
>> 4) & 0xF;
785 /* Check the address space */
786 if (access_type
== ACCESS_CODE
) {
787 if (msr_ir
!= (tlb
->attr
& 1)) {
788 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
793 if (prot2
& PAGE_EXEC
) {
794 LOG_SWTLB("%s: good TLB!\n", __func__
);
798 LOG_SWTLB("%s: no PAGE_EXEC: %x\n", __func__
, prot2
);
801 if (msr_dr
!= (tlb
->attr
& 1)) {
802 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
807 if ((!rw
&& prot2
& PAGE_READ
) || (rw
&& (prot2
& PAGE_WRITE
))) {
808 LOG_SWTLB("%s: found TLB!\n", __func__
);
812 LOG_SWTLB("%s: PAGE_READ/WRITE doesn't match: %x\n", __func__
, prot2
);
819 static int mmubooke_get_physical_address(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
820 target_ulong address
, int rw
,
828 raddr
= (hwaddr
)-1ULL;
829 for (i
= 0; i
< env
->nb_tlb
; i
++) {
830 tlb
= &env
->tlb
.tlbe
[i
];
831 ret
= mmubooke_check_tlb(env
, tlb
, &raddr
, &ctx
->prot
, address
, rw
,
840 LOG_SWTLB("%s: access granted " TARGET_FMT_lx
" => " TARGET_FMT_plx
841 " %d %d\n", __func__
, address
, ctx
->raddr
, ctx
->prot
,
844 LOG_SWTLB("%s: access refused " TARGET_FMT_lx
" => " TARGET_FMT_plx
845 " %d %d\n", __func__
, address
, raddr
, ctx
->prot
, ret
);
851 static void booke206_flush_tlb(CPUPPCState
*env
, int flags
,
852 const int check_iprot
)
854 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
857 ppcmas_tlb_t
*tlb
= env
->tlb
.tlbm
;
859 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
860 if (flags
& (1 << i
)) {
861 tlb_size
= booke206_tlb_size(env
, i
);
862 for (j
= 0; j
< tlb_size
; j
++) {
863 if (!check_iprot
|| !(tlb
[j
].mas1
& MAS1_IPROT
)) {
864 tlb
[j
].mas1
&= ~MAS1_VALID
;
868 tlb
+= booke206_tlb_size(env
, i
);
874 static hwaddr
booke206_tlb_to_page_size(CPUPPCState
*env
,
879 tlbm_size
= (tlb
->mas1
& MAS1_TSIZE_MASK
) >> MAS1_TSIZE_SHIFT
;
881 return 1024ULL << tlbm_size
;
884 /* TLB check function for MAS based SoftTLBs */
885 static int ppcmas_tlb_check(CPUPPCState
*env
, ppcmas_tlb_t
*tlb
,
886 hwaddr
*raddrp
, target_ulong address
,
893 /* In 32bit mode we can only address 32bit EAs */
894 address
= (uint32_t)address
;
897 /* Check valid flag */
898 if (!(tlb
->mas1
& MAS1_VALID
)) {
902 mask
= ~(booke206_tlb_to_page_size(env
, tlb
) - 1);
903 LOG_SWTLB("%s: TLB ADDR=0x" TARGET_FMT_lx
" PID=0x%x MAS1=0x%x MAS2=0x%"
904 PRIx64
" mask=0x%" HWADDR_PRIx
" MAS7_3=0x%" PRIx64
" MAS8=0x%"
905 PRIx32
"\n", __func__
, address
, pid
, tlb
->mas1
, tlb
->mas2
, mask
,
906 tlb
->mas7_3
, tlb
->mas8
);
909 tlb_pid
= (tlb
->mas1
& MAS1_TID_MASK
) >> MAS1_TID_SHIFT
;
910 if (tlb_pid
!= 0 && tlb_pid
!= pid
) {
914 /* Check effective address */
915 if ((address
& mask
) != (tlb
->mas2
& MAS2_EPN_MASK
)) {
920 *raddrp
= (tlb
->mas7_3
& mask
) | (address
& ~mask
);
926 static int mmubooke206_check_tlb(CPUPPCState
*env
, ppcmas_tlb_t
*tlb
,
927 hwaddr
*raddr
, int *prot
,
928 target_ulong address
, int rw
,
934 if (ppcmas_tlb_check(env
, tlb
, raddr
, address
,
935 env
->spr
[SPR_BOOKE_PID
]) >= 0) {
939 if (env
->spr
[SPR_BOOKE_PID1
] &&
940 ppcmas_tlb_check(env
, tlb
, raddr
, address
,
941 env
->spr
[SPR_BOOKE_PID1
]) >= 0) {
945 if (env
->spr
[SPR_BOOKE_PID2
] &&
946 ppcmas_tlb_check(env
, tlb
, raddr
, address
,
947 env
->spr
[SPR_BOOKE_PID2
]) >= 0) {
951 LOG_SWTLB("%s: TLB entry not found\n", __func__
);
957 if (tlb
->mas7_3
& MAS3_UR
) {
960 if (tlb
->mas7_3
& MAS3_UW
) {
963 if (tlb
->mas7_3
& MAS3_UX
) {
967 if (tlb
->mas7_3
& MAS3_SR
) {
970 if (tlb
->mas7_3
& MAS3_SW
) {
973 if (tlb
->mas7_3
& MAS3_SX
) {
978 /* Check the address space and permissions */
979 if (access_type
== ACCESS_CODE
) {
980 if (msr_ir
!= ((tlb
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
)) {
981 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
986 if (prot2
& PAGE_EXEC
) {
987 LOG_SWTLB("%s: good TLB!\n", __func__
);
991 LOG_SWTLB("%s: no PAGE_EXEC: %x\n", __func__
, prot2
);
994 if (msr_dr
!= ((tlb
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
)) {
995 LOG_SWTLB("%s: AS doesn't match\n", __func__
);
1000 if ((!rw
&& prot2
& PAGE_READ
) || (rw
&& (prot2
& PAGE_WRITE
))) {
1001 LOG_SWTLB("%s: found TLB!\n", __func__
);
1005 LOG_SWTLB("%s: PAGE_READ/WRITE doesn't match: %x\n", __func__
, prot2
);
1012 static int mmubooke206_get_physical_address(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
1013 target_ulong address
, int rw
,
1021 raddr
= (hwaddr
)-1ULL;
1023 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
1024 int ways
= booke206_tlb_ways(env
, i
);
1026 for (j
= 0; j
< ways
; j
++) {
1027 tlb
= booke206_get_tlbm(env
, i
, address
, j
);
1031 ret
= mmubooke206_check_tlb(env
, tlb
, &raddr
, &ctx
->prot
, address
,
1043 LOG_SWTLB("%s: access granted " TARGET_FMT_lx
" => " TARGET_FMT_plx
1044 " %d %d\n", __func__
, address
, ctx
->raddr
, ctx
->prot
,
1047 LOG_SWTLB("%s: access refused " TARGET_FMT_lx
" => " TARGET_FMT_plx
1048 " %d %d\n", __func__
, address
, raddr
, ctx
->prot
, ret
);
1054 static const char *book3e_tsize_to_str
[32] = {
1055 "1K", "2K", "4K", "8K", "16K", "32K", "64K", "128K", "256K", "512K",
1056 "1M", "2M", "4M", "8M", "16M", "32M", "64M", "128M", "256M", "512M",
1057 "1G", "2G", "4G", "8G", "16G", "32G", "64G", "128G", "256G", "512G",
1061 static void mmubooke_dump_mmu(FILE *f
, fprintf_function cpu_fprintf
,
1064 ppcemb_tlb_t
*entry
;
1067 if (kvm_enabled() && !env
->kvm_sw_tlb
) {
1068 cpu_fprintf(f
, "Cannot access KVM TLB\n");
1072 cpu_fprintf(f
, "\nTLB:\n");
1073 cpu_fprintf(f
, "Effective Physical Size PID Prot "
1076 entry
= &env
->tlb
.tlbe
[0];
1077 for (i
= 0; i
< env
->nb_tlb
; i
++, entry
++) {
1080 uint64_t size
= (uint64_t)entry
->size
;
1083 /* Check valid flag */
1084 if (!(entry
->prot
& PAGE_VALID
)) {
1088 mask
= ~(entry
->size
- 1);
1089 ea
= entry
->EPN
& mask
;
1090 pa
= entry
->RPN
& mask
;
1091 /* Extend the physical address to 36 bits */
1092 pa
|= (hwaddr
)(entry
->RPN
& 0xF) << 32;
1095 snprintf(size_buf
, sizeof(size_buf
), "%3" PRId64
"M", size
/ 1024);
1097 snprintf(size_buf
, sizeof(size_buf
), "%3" PRId64
"k", size
);
1099 cpu_fprintf(f
, "0x%016" PRIx64
" 0x%016" PRIx64
" %s %-5u %08x %08x\n",
1100 (uint64_t)ea
, (uint64_t)pa
, size_buf
, (uint32_t)entry
->PID
,
1101 entry
->prot
, entry
->attr
);
1106 static void mmubooke206_dump_one_tlb(FILE *f
, fprintf_function cpu_fprintf
,
1107 CPUPPCState
*env
, int tlbn
, int offset
,
1110 ppcmas_tlb_t
*entry
;
1113 cpu_fprintf(f
, "\nTLB%d:\n", tlbn
);
1114 cpu_fprintf(f
, "Effective Physical Size TID TS SRWX"
1115 " URWX WIMGE U0123\n");
1117 entry
= &env
->tlb
.tlbm
[offset
];
1118 for (i
= 0; i
< tlbsize
; i
++, entry
++) {
1119 hwaddr ea
, pa
, size
;
1122 if (!(entry
->mas1
& MAS1_VALID
)) {
1126 tsize
= (entry
->mas1
& MAS1_TSIZE_MASK
) >> MAS1_TSIZE_SHIFT
;
1127 size
= 1024ULL << tsize
;
1128 ea
= entry
->mas2
& ~(size
- 1);
1129 pa
= entry
->mas7_3
& ~(size
- 1);
1131 cpu_fprintf(f
, "0x%016" PRIx64
" 0x%016" PRIx64
" %4s %-5u %1u S%c%c%c"
1132 "U%c%c%c %c%c%c%c%c U%c%c%c%c\n",
1133 (uint64_t)ea
, (uint64_t)pa
,
1134 book3e_tsize_to_str
[tsize
],
1135 (entry
->mas1
& MAS1_TID_MASK
) >> MAS1_TID_SHIFT
,
1136 (entry
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
,
1137 entry
->mas7_3
& MAS3_SR
? 'R' : '-',
1138 entry
->mas7_3
& MAS3_SW
? 'W' : '-',
1139 entry
->mas7_3
& MAS3_SX
? 'X' : '-',
1140 entry
->mas7_3
& MAS3_UR
? 'R' : '-',
1141 entry
->mas7_3
& MAS3_UW
? 'W' : '-',
1142 entry
->mas7_3
& MAS3_UX
? 'X' : '-',
1143 entry
->mas2
& MAS2_W
? 'W' : '-',
1144 entry
->mas2
& MAS2_I
? 'I' : '-',
1145 entry
->mas2
& MAS2_M
? 'M' : '-',
1146 entry
->mas2
& MAS2_G
? 'G' : '-',
1147 entry
->mas2
& MAS2_E
? 'E' : '-',
1148 entry
->mas7_3
& MAS3_U0
? '0' : '-',
1149 entry
->mas7_3
& MAS3_U1
? '1' : '-',
1150 entry
->mas7_3
& MAS3_U2
? '2' : '-',
1151 entry
->mas7_3
& MAS3_U3
? '3' : '-');
1155 static void mmubooke206_dump_mmu(FILE *f
, fprintf_function cpu_fprintf
,
1161 if (kvm_enabled() && !env
->kvm_sw_tlb
) {
1162 cpu_fprintf(f
, "Cannot access KVM TLB\n");
1166 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
1167 int size
= booke206_tlb_size(env
, i
);
1173 mmubooke206_dump_one_tlb(f
, cpu_fprintf
, env
, i
, offset
, size
);
1178 static void mmu6xx_dump_BATs(FILE *f
, fprintf_function cpu_fprintf
,
1179 CPUPPCState
*env
, int type
)
1181 target_ulong
*BATlt
, *BATut
, *BATu
, *BATl
;
1182 target_ulong BEPIl
, BEPIu
, bl
;
1187 BATlt
= env
->IBAT
[1];
1188 BATut
= env
->IBAT
[0];
1191 BATlt
= env
->DBAT
[1];
1192 BATut
= env
->DBAT
[0];
1196 for (i
= 0; i
< env
->nb_BATs
; i
++) {
1199 BEPIu
= *BATu
& 0xF0000000;
1200 BEPIl
= *BATu
& 0x0FFE0000;
1201 bl
= (*BATu
& 0x00001FFC) << 15;
1202 cpu_fprintf(f
, "%s BAT%d BATu " TARGET_FMT_lx
1203 " BATl " TARGET_FMT_lx
"\n\t" TARGET_FMT_lx
" "
1204 TARGET_FMT_lx
" " TARGET_FMT_lx
"\n",
1205 type
== ACCESS_CODE
? "code" : "data", i
,
1206 *BATu
, *BATl
, BEPIu
, BEPIl
, bl
);
1210 static void mmu6xx_dump_mmu(FILE *f
, fprintf_function cpu_fprintf
,
1213 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1216 int type
, way
, entry
, i
;
1218 cpu_fprintf(f
, "HTAB base = 0x%"HWADDR_PRIx
"\n", ppc_hash32_hpt_base(cpu
));
1219 cpu_fprintf(f
, "HTAB mask = 0x%"HWADDR_PRIx
"\n", ppc_hash32_hpt_mask(cpu
));
1221 cpu_fprintf(f
, "\nSegment registers:\n");
1222 for (i
= 0; i
< 32; i
++) {
1224 if (sr
& 0x80000000) {
1225 cpu_fprintf(f
, "%02d T=%d Ks=%d Kp=%d BUID=0x%03x "
1226 "CNTLR_SPEC=0x%05x\n", i
,
1227 sr
& 0x80000000 ? 1 : 0, sr
& 0x40000000 ? 1 : 0,
1228 sr
& 0x20000000 ? 1 : 0, (uint32_t)((sr
>> 20) & 0x1FF),
1229 (uint32_t)(sr
& 0xFFFFF));
1231 cpu_fprintf(f
, "%02d T=%d Ks=%d Kp=%d N=%d VSID=0x%06x\n", i
,
1232 sr
& 0x80000000 ? 1 : 0, sr
& 0x40000000 ? 1 : 0,
1233 sr
& 0x20000000 ? 1 : 0, sr
& 0x10000000 ? 1 : 0,
1234 (uint32_t)(sr
& 0x00FFFFFF));
1238 cpu_fprintf(f
, "\nBATs:\n");
1239 mmu6xx_dump_BATs(f
, cpu_fprintf
, env
, ACCESS_INT
);
1240 mmu6xx_dump_BATs(f
, cpu_fprintf
, env
, ACCESS_CODE
);
1242 if (env
->id_tlbs
!= 1) {
1243 cpu_fprintf(f
, "ERROR: 6xx MMU should have separated TLB"
1244 " for code and data\n");
1247 cpu_fprintf(f
, "\nTLBs [EPN EPN + SIZE]\n");
1249 for (type
= 0; type
< 2; type
++) {
1250 for (way
= 0; way
< env
->nb_ways
; way
++) {
1251 for (entry
= env
->nb_tlb
* type
+ env
->tlb_per_way
* way
;
1252 entry
< (env
->nb_tlb
* type
+ env
->tlb_per_way
* (way
+ 1));
1255 tlb
= &env
->tlb
.tlb6
[entry
];
1256 cpu_fprintf(f
, "%s TLB %02d/%02d way:%d %s ["
1257 TARGET_FMT_lx
" " TARGET_FMT_lx
"]\n",
1258 type
? "code" : "data", entry
% env
->nb_tlb
,
1260 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
1261 tlb
->EPN
, tlb
->EPN
+ TARGET_PAGE_SIZE
);
1267 void dump_mmu(FILE *f
, fprintf_function cpu_fprintf
, CPUPPCState
*env
)
1269 switch (POWERPC_MMU_VER(env
->mmu_model
)) {
1270 case POWERPC_MMU_BOOKE
:
1271 mmubooke_dump_mmu(f
, cpu_fprintf
, env
);
1273 case POWERPC_MMU_BOOKE206
:
1274 mmubooke206_dump_mmu(f
, cpu_fprintf
, env
);
1276 case POWERPC_MMU_SOFT_6xx
:
1277 case POWERPC_MMU_SOFT_74xx
:
1278 mmu6xx_dump_mmu(f
, cpu_fprintf
, env
);
1280 #if defined(TARGET_PPC64)
1281 case POWERPC_MMU_VER_64B
:
1282 case POWERPC_MMU_VER_2_03
:
1283 case POWERPC_MMU_VER_2_06
:
1284 case POWERPC_MMU_VER_2_07
:
1285 dump_slb(f
, cpu_fprintf
, ppc_env_get_cpu(env
));
1287 case POWERPC_MMU_VER_3_00
:
1288 if (ppc64_radix_guest(ppc_env_get_cpu(env
))) {
1289 /* TODO - Unsupported */
1291 dump_slb(f
, cpu_fprintf
, ppc_env_get_cpu(env
));
1296 qemu_log_mask(LOG_UNIMP
, "%s: unimplemented\n", __func__
);
1300 static inline int check_physical(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
1301 target_ulong eaddr
, int rw
)
1306 ctx
->prot
= PAGE_READ
| PAGE_EXEC
;
1308 switch (env
->mmu_model
) {
1309 case POWERPC_MMU_SOFT_6xx
:
1310 case POWERPC_MMU_SOFT_74xx
:
1311 case POWERPC_MMU_SOFT_4xx
:
1312 case POWERPC_MMU_REAL
:
1313 case POWERPC_MMU_BOOKE
:
1314 ctx
->prot
|= PAGE_WRITE
;
1317 case POWERPC_MMU_SOFT_4xx_Z
:
1318 if (unlikely(msr_pe
!= 0)) {
1319 /* 403 family add some particular protections,
1320 * using PBL/PBU registers for accesses with no translation.
1323 /* Check PLB validity */
1324 (env
->pb
[0] < env
->pb
[1] &&
1325 /* and address in plb area */
1326 eaddr
>= env
->pb
[0] && eaddr
< env
->pb
[1]) ||
1327 (env
->pb
[2] < env
->pb
[3] &&
1328 eaddr
>= env
->pb
[2] && eaddr
< env
->pb
[3]) ? 1 : 0;
1329 if (in_plb
^ msr_px
) {
1330 /* Access in protected area */
1332 /* Access is not allowed */
1336 /* Read-write access is allowed */
1337 ctx
->prot
|= PAGE_WRITE
;
1343 /* Caller's checks mean we should never get here for other models */
1351 static int get_physical_address(CPUPPCState
*env
, mmu_ctx_t
*ctx
,
1352 target_ulong eaddr
, int rw
, int access_type
)
1354 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1356 bool real_mode
= (access_type
== ACCESS_CODE
&& msr_ir
== 0)
1357 || (access_type
!= ACCESS_CODE
&& msr_dr
== 0);
1360 qemu_log("%s\n", __func__
);
1363 switch (env
->mmu_model
) {
1364 case POWERPC_MMU_SOFT_6xx
:
1365 case POWERPC_MMU_SOFT_74xx
:
1367 ret
= check_physical(env
, ctx
, eaddr
, rw
);
1369 /* Try to find a BAT */
1370 if (env
->nb_BATs
!= 0) {
1371 ret
= get_bat_6xx_tlb(env
, ctx
, eaddr
, rw
, access_type
);
1374 /* We didn't match any BAT entry or don't have BATs */
1375 ret
= get_segment_6xx_tlb(env
, ctx
, eaddr
, rw
, access_type
);
1380 case POWERPC_MMU_SOFT_4xx
:
1381 case POWERPC_MMU_SOFT_4xx_Z
:
1383 ret
= check_physical(env
, ctx
, eaddr
, rw
);
1385 ret
= mmu40x_get_physical_address(env
, ctx
, eaddr
,
1389 case POWERPC_MMU_BOOKE
:
1390 ret
= mmubooke_get_physical_address(env
, ctx
, eaddr
,
1393 case POWERPC_MMU_BOOKE206
:
1394 ret
= mmubooke206_get_physical_address(env
, ctx
, eaddr
, rw
,
1397 case POWERPC_MMU_MPC8xx
:
1399 cpu_abort(CPU(cpu
), "MPC8xx MMU model is not implemented\n");
1401 case POWERPC_MMU_REAL
:
1403 ret
= check_physical(env
, ctx
, eaddr
, rw
);
1405 cpu_abort(CPU(cpu
), "PowerPC in real mode do not do any translation\n");
1409 cpu_abort(CPU(cpu
), "Unknown or invalid MMU model\n");
1413 qemu_log("%s address " TARGET_FMT_lx
" => %d " TARGET_FMT_plx
"\n",
1414 __func__
, eaddr
, ret
, ctx
->raddr
);
1420 hwaddr
ppc_cpu_get_phys_page_debug(CPUState
*cs
, vaddr addr
)
1422 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1423 CPUPPCState
*env
= &cpu
->env
;
1426 switch (POWERPC_MMU_VER(env
->mmu_model
)) {
1427 #if defined(TARGET_PPC64)
1428 case POWERPC_MMU_VER_64B
:
1429 case POWERPC_MMU_VER_2_03
:
1430 case POWERPC_MMU_VER_2_06
:
1431 case POWERPC_MMU_VER_2_07
:
1432 return ppc_hash64_get_phys_page_debug(cpu
, addr
);
1433 case POWERPC_MMU_VER_3_00
:
1434 if (ppc64_radix_guest(ppc_env_get_cpu(env
))) {
1435 /* TODO - Unsupported */
1437 return ppc_hash64_get_phys_page_debug(cpu
, addr
);
1442 case POWERPC_MMU_32B
:
1443 case POWERPC_MMU_601
:
1444 return ppc_hash32_get_phys_page_debug(cpu
, addr
);
1450 if (unlikely(get_physical_address(env
, &ctx
, addr
, 0, ACCESS_INT
) != 0)) {
1452 /* Some MMUs have separate TLBs for code and data. If we only try an
1453 * ACCESS_INT, we may not be able to read instructions mapped by code
1454 * TLBs, so we also try a ACCESS_CODE.
1456 if (unlikely(get_physical_address(env
, &ctx
, addr
, 0,
1457 ACCESS_CODE
) != 0)) {
1462 return ctx
.raddr
& TARGET_PAGE_MASK
;
1465 static void booke206_update_mas_tlb_miss(CPUPPCState
*env
, target_ulong address
,
1468 env
->spr
[SPR_BOOKE_MAS0
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TLBSELD_MASK
;
1469 env
->spr
[SPR_BOOKE_MAS1
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TSIZED_MASK
;
1470 env
->spr
[SPR_BOOKE_MAS2
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_WIMGED_MASK
;
1471 env
->spr
[SPR_BOOKE_MAS3
] = 0;
1472 env
->spr
[SPR_BOOKE_MAS6
] = 0;
1473 env
->spr
[SPR_BOOKE_MAS7
] = 0;
1476 if (((rw
== 2) && msr_ir
) || ((rw
!= 2) && msr_dr
)) {
1477 env
->spr
[SPR_BOOKE_MAS1
] |= MAS1_TS
;
1478 env
->spr
[SPR_BOOKE_MAS6
] |= MAS6_SAS
;
1481 env
->spr
[SPR_BOOKE_MAS1
] |= MAS1_VALID
;
1482 env
->spr
[SPR_BOOKE_MAS2
] |= address
& MAS2_EPN_MASK
;
1484 switch (env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TIDSELD_PIDZ
) {
1485 case MAS4_TIDSELD_PID0
:
1486 env
->spr
[SPR_BOOKE_MAS1
] |= env
->spr
[SPR_BOOKE_PID
] << MAS1_TID_SHIFT
;
1488 case MAS4_TIDSELD_PID1
:
1489 env
->spr
[SPR_BOOKE_MAS1
] |= env
->spr
[SPR_BOOKE_PID1
] << MAS1_TID_SHIFT
;
1491 case MAS4_TIDSELD_PID2
:
1492 env
->spr
[SPR_BOOKE_MAS1
] |= env
->spr
[SPR_BOOKE_PID2
] << MAS1_TID_SHIFT
;
1496 env
->spr
[SPR_BOOKE_MAS6
] |= env
->spr
[SPR_BOOKE_PID
] << 16;
1498 /* next victim logic */
1499 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_ESEL_SHIFT
;
1501 env
->last_way
&= booke206_tlb_ways(env
, 0) - 1;
1502 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_NV_SHIFT
;
1505 /* Perform address translation */
1506 static int cpu_ppc_handle_mmu_fault(CPUPPCState
*env
, target_ulong address
,
1507 int rw
, int mmu_idx
)
1509 CPUState
*cs
= CPU(ppc_env_get_cpu(env
));
1510 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1518 access_type
= ACCESS_CODE
;
1521 access_type
= env
->access_type
;
1523 ret
= get_physical_address(env
, &ctx
, address
, rw
, access_type
);
1525 tlb_set_page(cs
, address
& TARGET_PAGE_MASK
,
1526 ctx
.raddr
& TARGET_PAGE_MASK
, ctx
.prot
,
1527 mmu_idx
, TARGET_PAGE_SIZE
);
1529 } else if (ret
< 0) {
1531 if (access_type
== ACCESS_CODE
) {
1534 /* No matches in page tables or TLB */
1535 switch (env
->mmu_model
) {
1536 case POWERPC_MMU_SOFT_6xx
:
1537 cs
->exception_index
= POWERPC_EXCP_IFTLB
;
1538 env
->error_code
= 1 << 18;
1539 env
->spr
[SPR_IMISS
] = address
;
1540 env
->spr
[SPR_ICMP
] = 0x80000000 | ctx
.ptem
;
1542 case POWERPC_MMU_SOFT_74xx
:
1543 cs
->exception_index
= POWERPC_EXCP_IFTLB
;
1545 case POWERPC_MMU_SOFT_4xx
:
1546 case POWERPC_MMU_SOFT_4xx_Z
:
1547 cs
->exception_index
= POWERPC_EXCP_ITLB
;
1548 env
->error_code
= 0;
1549 env
->spr
[SPR_40x_DEAR
] = address
;
1550 env
->spr
[SPR_40x_ESR
] = 0x00000000;
1552 case POWERPC_MMU_BOOKE206
:
1553 booke206_update_mas_tlb_miss(env
, address
, rw
);
1555 case POWERPC_MMU_BOOKE
:
1556 cs
->exception_index
= POWERPC_EXCP_ITLB
;
1557 env
->error_code
= 0;
1558 env
->spr
[SPR_BOOKE_DEAR
] = address
;
1560 case POWERPC_MMU_MPC8xx
:
1562 cpu_abort(cs
, "MPC8xx MMU model is not implemented\n");
1564 case POWERPC_MMU_REAL
:
1565 cpu_abort(cs
, "PowerPC in real mode should never raise "
1566 "any MMU exceptions\n");
1569 cpu_abort(cs
, "Unknown or invalid MMU model\n");
1574 /* Access rights violation */
1575 cs
->exception_index
= POWERPC_EXCP_ISI
;
1576 env
->error_code
= 0x08000000;
1579 /* No execute protection violation */
1580 if ((env
->mmu_model
== POWERPC_MMU_BOOKE
) ||
1581 (env
->mmu_model
== POWERPC_MMU_BOOKE206
)) {
1582 env
->spr
[SPR_BOOKE_ESR
] = 0x00000000;
1584 cs
->exception_index
= POWERPC_EXCP_ISI
;
1585 env
->error_code
= 0x10000000;
1588 /* Direct store exception */
1589 /* No code fetch is allowed in direct-store areas */
1590 cs
->exception_index
= POWERPC_EXCP_ISI
;
1591 env
->error_code
= 0x10000000;
1597 /* No matches in page tables or TLB */
1598 switch (env
->mmu_model
) {
1599 case POWERPC_MMU_SOFT_6xx
:
1601 cs
->exception_index
= POWERPC_EXCP_DSTLB
;
1602 env
->error_code
= 1 << 16;
1604 cs
->exception_index
= POWERPC_EXCP_DLTLB
;
1605 env
->error_code
= 0;
1607 env
->spr
[SPR_DMISS
] = address
;
1608 env
->spr
[SPR_DCMP
] = 0x80000000 | ctx
.ptem
;
1610 env
->error_code
|= ctx
.key
<< 19;
1611 env
->spr
[SPR_HASH1
] = ppc_hash32_hpt_base(cpu
) +
1612 get_pteg_offset32(cpu
, ctx
.hash
[0]);
1613 env
->spr
[SPR_HASH2
] = ppc_hash32_hpt_base(cpu
) +
1614 get_pteg_offset32(cpu
, ctx
.hash
[1]);
1616 case POWERPC_MMU_SOFT_74xx
:
1618 cs
->exception_index
= POWERPC_EXCP_DSTLB
;
1620 cs
->exception_index
= POWERPC_EXCP_DLTLB
;
1623 /* Implement LRU algorithm */
1624 env
->error_code
= ctx
.key
<< 19;
1625 env
->spr
[SPR_TLBMISS
] = (address
& ~((target_ulong
)0x3)) |
1626 ((env
->last_way
+ 1) & (env
->nb_ways
- 1));
1627 env
->spr
[SPR_PTEHI
] = 0x80000000 | ctx
.ptem
;
1629 case POWERPC_MMU_SOFT_4xx
:
1630 case POWERPC_MMU_SOFT_4xx_Z
:
1631 cs
->exception_index
= POWERPC_EXCP_DTLB
;
1632 env
->error_code
= 0;
1633 env
->spr
[SPR_40x_DEAR
] = address
;
1635 env
->spr
[SPR_40x_ESR
] = 0x00800000;
1637 env
->spr
[SPR_40x_ESR
] = 0x00000000;
1640 case POWERPC_MMU_MPC8xx
:
1642 cpu_abort(cs
, "MPC8xx MMU model is not implemented\n");
1644 case POWERPC_MMU_BOOKE206
:
1645 booke206_update_mas_tlb_miss(env
, address
, rw
);
1647 case POWERPC_MMU_BOOKE
:
1648 cs
->exception_index
= POWERPC_EXCP_DTLB
;
1649 env
->error_code
= 0;
1650 env
->spr
[SPR_BOOKE_DEAR
] = address
;
1651 env
->spr
[SPR_BOOKE_ESR
] = rw
? ESR_ST
: 0;
1653 case POWERPC_MMU_REAL
:
1654 cpu_abort(cs
, "PowerPC in real mode should never raise "
1655 "any MMU exceptions\n");
1658 cpu_abort(cs
, "Unknown or invalid MMU model\n");
1663 /* Access rights violation */
1664 cs
->exception_index
= POWERPC_EXCP_DSI
;
1665 env
->error_code
= 0;
1666 if (env
->mmu_model
== POWERPC_MMU_SOFT_4xx
1667 || env
->mmu_model
== POWERPC_MMU_SOFT_4xx_Z
) {
1668 env
->spr
[SPR_40x_DEAR
] = address
;
1670 env
->spr
[SPR_40x_ESR
] |= 0x00800000;
1672 } else if ((env
->mmu_model
== POWERPC_MMU_BOOKE
) ||
1673 (env
->mmu_model
== POWERPC_MMU_BOOKE206
)) {
1674 env
->spr
[SPR_BOOKE_DEAR
] = address
;
1675 env
->spr
[SPR_BOOKE_ESR
] = rw
? ESR_ST
: 0;
1677 env
->spr
[SPR_DAR
] = address
;
1679 env
->spr
[SPR_DSISR
] = 0x0A000000;
1681 env
->spr
[SPR_DSISR
] = 0x08000000;
1686 /* Direct store exception */
1687 switch (access_type
) {
1689 /* Floating point load/store */
1690 cs
->exception_index
= POWERPC_EXCP_ALIGN
;
1691 env
->error_code
= POWERPC_EXCP_ALIGN_FP
;
1692 env
->spr
[SPR_DAR
] = address
;
1695 /* lwarx, ldarx or stwcx. */
1696 cs
->exception_index
= POWERPC_EXCP_DSI
;
1697 env
->error_code
= 0;
1698 env
->spr
[SPR_DAR
] = address
;
1700 env
->spr
[SPR_DSISR
] = 0x06000000;
1702 env
->spr
[SPR_DSISR
] = 0x04000000;
1706 /* eciwx or ecowx */
1707 cs
->exception_index
= POWERPC_EXCP_DSI
;
1708 env
->error_code
= 0;
1709 env
->spr
[SPR_DAR
] = address
;
1711 env
->spr
[SPR_DSISR
] = 0x06100000;
1713 env
->spr
[SPR_DSISR
] = 0x04100000;
1717 printf("DSI: invalid exception (%d)\n", ret
);
1718 cs
->exception_index
= POWERPC_EXCP_PROGRAM
;
1720 POWERPC_EXCP_INVAL
| POWERPC_EXCP_INVAL_INVAL
;
1721 env
->spr
[SPR_DAR
] = address
;
1728 printf("%s: set exception to %d %02x\n", __func__
,
1729 cs
->exception
, env
->error_code
);
1737 /*****************************************************************************/
1738 /* BATs management */
1739 #if !defined(FLUSH_ALL_TLBS)
1740 static inline void do_invalidate_BAT(CPUPPCState
*env
, target_ulong BATu
,
1743 CPUState
*cs
= CPU(ppc_env_get_cpu(env
));
1744 target_ulong base
, end
, page
;
1746 base
= BATu
& ~0x0001FFFF;
1747 end
= base
+ mask
+ 0x00020000;
1748 LOG_BATS("Flush BAT from " TARGET_FMT_lx
" to " TARGET_FMT_lx
" ("
1749 TARGET_FMT_lx
")\n", base
, end
, mask
);
1750 for (page
= base
; page
!= end
; page
+= TARGET_PAGE_SIZE
) {
1751 tlb_flush_page(cs
, page
);
1753 LOG_BATS("Flush done\n");
1757 static inline void dump_store_bat(CPUPPCState
*env
, char ID
, int ul
, int nr
,
1760 LOG_BATS("Set %cBAT%d%c to " TARGET_FMT_lx
" (" TARGET_FMT_lx
")\n", ID
,
1761 nr
, ul
== 0 ? 'u' : 'l', value
, env
->nip
);
1764 void helper_store_ibatu(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1767 #if defined(FLUSH_ALL_TLBS)
1768 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1771 dump_store_bat(env
, 'I', 0, nr
, value
);
1772 if (env
->IBAT
[0][nr
] != value
) {
1773 mask
= (value
<< 15) & 0x0FFE0000UL
;
1774 #if !defined(FLUSH_ALL_TLBS)
1775 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1777 /* When storing valid upper BAT, mask BEPI and BRPN
1778 * and invalidate all TLBs covered by this BAT
1780 mask
= (value
<< 15) & 0x0FFE0000UL
;
1781 env
->IBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1782 (value
& ~0x0001FFFFUL
& ~mask
);
1783 env
->IBAT
[1][nr
] = (env
->IBAT
[1][nr
] & 0x0000007B) |
1784 (env
->IBAT
[1][nr
] & ~0x0001FFFF & ~mask
);
1785 #if !defined(FLUSH_ALL_TLBS)
1786 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1788 tlb_flush(CPU(cpu
));
1793 void helper_store_ibatl(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1795 dump_store_bat(env
, 'I', 1, nr
, value
);
1796 env
->IBAT
[1][nr
] = value
;
1799 void helper_store_dbatu(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1802 #if defined(FLUSH_ALL_TLBS)
1803 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1806 dump_store_bat(env
, 'D', 0, nr
, value
);
1807 if (env
->DBAT
[0][nr
] != value
) {
1808 /* When storing valid upper BAT, mask BEPI and BRPN
1809 * and invalidate all TLBs covered by this BAT
1811 mask
= (value
<< 15) & 0x0FFE0000UL
;
1812 #if !defined(FLUSH_ALL_TLBS)
1813 do_invalidate_BAT(env
, env
->DBAT
[0][nr
], mask
);
1815 mask
= (value
<< 15) & 0x0FFE0000UL
;
1816 env
->DBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1817 (value
& ~0x0001FFFFUL
& ~mask
);
1818 env
->DBAT
[1][nr
] = (env
->DBAT
[1][nr
] & 0x0000007B) |
1819 (env
->DBAT
[1][nr
] & ~0x0001FFFF & ~mask
);
1820 #if !defined(FLUSH_ALL_TLBS)
1821 do_invalidate_BAT(env
, env
->DBAT
[0][nr
], mask
);
1823 tlb_flush(CPU(cpu
));
1828 void helper_store_dbatl(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1830 dump_store_bat(env
, 'D', 1, nr
, value
);
1831 env
->DBAT
[1][nr
] = value
;
1834 void helper_store_601_batu(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1837 #if defined(FLUSH_ALL_TLBS)
1838 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1842 dump_store_bat(env
, 'I', 0, nr
, value
);
1843 if (env
->IBAT
[0][nr
] != value
) {
1844 #if defined(FLUSH_ALL_TLBS)
1847 mask
= (env
->IBAT
[1][nr
] << 17) & 0x0FFE0000UL
;
1848 if (env
->IBAT
[1][nr
] & 0x40) {
1849 /* Invalidate BAT only if it is valid */
1850 #if !defined(FLUSH_ALL_TLBS)
1851 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1856 /* When storing valid upper BAT, mask BEPI and BRPN
1857 * and invalidate all TLBs covered by this BAT
1859 env
->IBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1860 (value
& ~0x0001FFFFUL
& ~mask
);
1861 env
->DBAT
[0][nr
] = env
->IBAT
[0][nr
];
1862 if (env
->IBAT
[1][nr
] & 0x40) {
1863 #if !defined(FLUSH_ALL_TLBS)
1864 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1869 #if defined(FLUSH_ALL_TLBS)
1871 tlb_flush(CPU(cpu
));
1877 void helper_store_601_batl(CPUPPCState
*env
, uint32_t nr
, target_ulong value
)
1879 #if !defined(FLUSH_ALL_TLBS)
1882 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1886 dump_store_bat(env
, 'I', 1, nr
, value
);
1887 if (env
->IBAT
[1][nr
] != value
) {
1888 #if defined(FLUSH_ALL_TLBS)
1891 if (env
->IBAT
[1][nr
] & 0x40) {
1892 #if !defined(FLUSH_ALL_TLBS)
1893 mask
= (env
->IBAT
[1][nr
] << 17) & 0x0FFE0000UL
;
1894 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1900 #if !defined(FLUSH_ALL_TLBS)
1901 mask
= (value
<< 17) & 0x0FFE0000UL
;
1902 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1907 env
->IBAT
[1][nr
] = value
;
1908 env
->DBAT
[1][nr
] = value
;
1909 #if defined(FLUSH_ALL_TLBS)
1911 tlb_flush(CPU(cpu
));
1917 /*****************************************************************************/
1918 /* TLB management */
1919 void ppc_tlb_invalidate_all(CPUPPCState
*env
)
1921 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
1923 #if defined(TARGET_PPC64)
1924 if (env
->mmu_model
& POWERPC_MMU_64
) {
1925 env
->tlb_need_flush
= 0;
1926 tlb_flush(CPU(cpu
));
1928 #endif /* defined(TARGET_PPC64) */
1929 switch (env
->mmu_model
) {
1930 case POWERPC_MMU_SOFT_6xx
:
1931 case POWERPC_MMU_SOFT_74xx
:
1932 ppc6xx_tlb_invalidate_all(env
);
1934 case POWERPC_MMU_SOFT_4xx
:
1935 case POWERPC_MMU_SOFT_4xx_Z
:
1936 ppc4xx_tlb_invalidate_all(env
);
1938 case POWERPC_MMU_REAL
:
1939 cpu_abort(CPU(cpu
), "No TLB for PowerPC 4xx in real mode\n");
1941 case POWERPC_MMU_MPC8xx
:
1943 cpu_abort(CPU(cpu
), "MPC8xx MMU model is not implemented\n");
1945 case POWERPC_MMU_BOOKE
:
1946 tlb_flush(CPU(cpu
));
1948 case POWERPC_MMU_BOOKE206
:
1949 booke206_flush_tlb(env
, -1, 0);
1951 case POWERPC_MMU_32B
:
1952 case POWERPC_MMU_601
:
1953 env
->tlb_need_flush
= 0;
1954 tlb_flush(CPU(cpu
));
1958 cpu_abort(CPU(cpu
), "Unknown MMU model %x\n", env
->mmu_model
);
1963 void ppc_tlb_invalidate_one(CPUPPCState
*env
, target_ulong addr
)
1965 #if !defined(FLUSH_ALL_TLBS)
1966 addr
&= TARGET_PAGE_MASK
;
1967 #if defined(TARGET_PPC64)
1968 if (env
->mmu_model
& POWERPC_MMU_64
) {
1969 /* tlbie invalidate TLBs for all segments */
1970 /* XXX: given the fact that there are too many segments to invalidate,
1971 * and we still don't have a tlb_flush_mask(env, n, mask) in QEMU,
1972 * we just invalidate all TLBs
1974 env
->tlb_need_flush
|= TLB_NEED_LOCAL_FLUSH
;
1976 #endif /* defined(TARGET_PPC64) */
1977 switch (env
->mmu_model
) {
1978 case POWERPC_MMU_SOFT_6xx
:
1979 case POWERPC_MMU_SOFT_74xx
:
1980 ppc6xx_tlb_invalidate_virt(env
, addr
, 0);
1981 if (env
->id_tlbs
== 1) {
1982 ppc6xx_tlb_invalidate_virt(env
, addr
, 1);
1985 case POWERPC_MMU_32B
:
1986 case POWERPC_MMU_601
:
1987 /* Actual CPUs invalidate entire congruence classes based on the
1988 * geometry of their TLBs and some OSes take that into account,
1989 * we just mark the TLB to be flushed later (context synchronizing
1990 * event or sync instruction on 32-bit).
1992 env
->tlb_need_flush
|= TLB_NEED_LOCAL_FLUSH
;
1995 /* Should never reach here with other MMU models */
1999 ppc_tlb_invalidate_all(env
);
2003 /*****************************************************************************/
2004 /* Special registers manipulation */
2005 void ppc_store_sdr1(CPUPPCState
*env
, target_ulong value
)
2007 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2008 qemu_log_mask(CPU_LOG_MMU
, "%s: " TARGET_FMT_lx
"\n", __func__
, value
);
2010 #if defined(TARGET_PPC64)
2011 if (env
->mmu_model
& POWERPC_MMU_64
) {
2012 target_ulong sdr_mask
= SDR_64_HTABORG
| SDR_64_HTABSIZE
;
2013 target_ulong htabsize
= value
& SDR_64_HTABSIZE
;
2015 if (value
& ~sdr_mask
) {
2016 error_report("Invalid bits 0x"TARGET_FMT_lx
" set in SDR1",
2020 if (htabsize
> 28) {
2021 error_report("Invalid HTABSIZE 0x" TARGET_FMT_lx
" stored in SDR1",
2026 #endif /* defined(TARGET_PPC64) */
2027 /* FIXME: Should check for valid HTABMASK values in 32-bit case */
2028 env
->spr
[SPR_SDR1
] = value
;
2031 /* Segment registers load and store */
2032 target_ulong
helper_load_sr(CPUPPCState
*env
, target_ulong sr_num
)
2034 #if defined(TARGET_PPC64)
2035 if (env
->mmu_model
& POWERPC_MMU_64
) {
2040 return env
->sr
[sr_num
];
2043 void helper_store_sr(CPUPPCState
*env
, target_ulong srnum
, target_ulong value
)
2045 qemu_log_mask(CPU_LOG_MMU
,
2046 "%s: reg=%d " TARGET_FMT_lx
" " TARGET_FMT_lx
"\n", __func__
,
2047 (int)srnum
, value
, env
->sr
[srnum
]);
2048 #if defined(TARGET_PPC64)
2049 if (env
->mmu_model
& POWERPC_MMU_64
) {
2050 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2051 uint64_t esid
, vsid
;
2054 esid
= ((uint64_t)(srnum
& 0xf) << 28) | SLB_ESID_V
;
2057 vsid
= (value
& 0xfffffff) << 12;
2059 vsid
|= ((value
>> 27) & 0xf) << 8;
2061 ppc_store_slb(cpu
, srnum
, esid
, vsid
);
2064 if (env
->sr
[srnum
] != value
) {
2065 env
->sr
[srnum
] = value
;
2066 /* Invalidating 256MB of virtual memory in 4kB pages is way longer than
2067 flusing the whole TLB. */
2068 #if !defined(FLUSH_ALL_TLBS) && 0
2070 target_ulong page
, end
;
2071 /* Invalidate 256 MB of virtual memory */
2072 page
= (16 << 20) * srnum
;
2073 end
= page
+ (16 << 20);
2074 for (; page
!= end
; page
+= TARGET_PAGE_SIZE
) {
2075 tlb_flush_page(CPU(cpu
), page
);
2079 env
->tlb_need_flush
|= TLB_NEED_LOCAL_FLUSH
;
2084 /* TLB management */
2085 void helper_tlbia(CPUPPCState
*env
)
2087 ppc_tlb_invalidate_all(env
);
2090 void helper_tlbie(CPUPPCState
*env
, target_ulong addr
)
2092 ppc_tlb_invalidate_one(env
, addr
);
2095 void helper_tlbiva(CPUPPCState
*env
, target_ulong addr
)
2097 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2099 /* tlbiva instruction only exists on BookE */
2100 assert(env
->mmu_model
== POWERPC_MMU_BOOKE
);
2102 cpu_abort(CPU(cpu
), "BookE MMU model is not implemented\n");
2105 /* Software driven TLBs management */
2106 /* PowerPC 602/603 software TLB load instructions helpers */
2107 static void do_6xx_tlb(CPUPPCState
*env
, target_ulong new_EPN
, int is_code
)
2109 target_ulong RPN
, CMP
, EPN
;
2112 RPN
= env
->spr
[SPR_RPA
];
2114 CMP
= env
->spr
[SPR_ICMP
];
2115 EPN
= env
->spr
[SPR_IMISS
];
2117 CMP
= env
->spr
[SPR_DCMP
];
2118 EPN
= env
->spr
[SPR_DMISS
];
2120 way
= (env
->spr
[SPR_SRR1
] >> 17) & 1;
2121 (void)EPN
; /* avoid a compiler warning */
2122 LOG_SWTLB("%s: EPN " TARGET_FMT_lx
" " TARGET_FMT_lx
" PTE0 " TARGET_FMT_lx
2123 " PTE1 " TARGET_FMT_lx
" way %d\n", __func__
, new_EPN
, EPN
, CMP
,
2125 /* Store this TLB */
2126 ppc6xx_tlb_store(env
, (uint32_t)(new_EPN
& TARGET_PAGE_MASK
),
2127 way
, is_code
, CMP
, RPN
);
2130 void helper_6xx_tlbd(CPUPPCState
*env
, target_ulong EPN
)
2132 do_6xx_tlb(env
, EPN
, 0);
2135 void helper_6xx_tlbi(CPUPPCState
*env
, target_ulong EPN
)
2137 do_6xx_tlb(env
, EPN
, 1);
2140 /* PowerPC 74xx software TLB load instructions helpers */
2141 static void do_74xx_tlb(CPUPPCState
*env
, target_ulong new_EPN
, int is_code
)
2143 target_ulong RPN
, CMP
, EPN
;
2146 RPN
= env
->spr
[SPR_PTELO
];
2147 CMP
= env
->spr
[SPR_PTEHI
];
2148 EPN
= env
->spr
[SPR_TLBMISS
] & ~0x3;
2149 way
= env
->spr
[SPR_TLBMISS
] & 0x3;
2150 (void)EPN
; /* avoid a compiler warning */
2151 LOG_SWTLB("%s: EPN " TARGET_FMT_lx
" " TARGET_FMT_lx
" PTE0 " TARGET_FMT_lx
2152 " PTE1 " TARGET_FMT_lx
" way %d\n", __func__
, new_EPN
, EPN
, CMP
,
2154 /* Store this TLB */
2155 ppc6xx_tlb_store(env
, (uint32_t)(new_EPN
& TARGET_PAGE_MASK
),
2156 way
, is_code
, CMP
, RPN
);
2159 void helper_74xx_tlbd(CPUPPCState
*env
, target_ulong EPN
)
2161 do_74xx_tlb(env
, EPN
, 0);
2164 void helper_74xx_tlbi(CPUPPCState
*env
, target_ulong EPN
)
2166 do_74xx_tlb(env
, EPN
, 1);
2169 /*****************************************************************************/
2170 /* PowerPC 601 specific instructions (POWER bridge) */
2172 target_ulong
helper_rac(CPUPPCState
*env
, target_ulong addr
)
2176 target_ulong ret
= 0;
2178 /* We don't have to generate many instances of this instruction,
2179 * as rac is supervisor only.
2181 /* XXX: FIX THIS: Pretend we have no BAT */
2182 nb_BATs
= env
->nb_BATs
;
2184 if (get_physical_address(env
, &ctx
, addr
, 0, ACCESS_INT
) == 0) {
2187 env
->nb_BATs
= nb_BATs
;
2191 static inline target_ulong
booke_tlb_to_page_size(int size
)
2193 return 1024 << (2 * size
);
2196 static inline int booke_page_size_to_tlb(target_ulong page_size
)
2200 switch (page_size
) {
2234 #if defined(TARGET_PPC64)
2235 case 0x000100000000ULL
:
2238 case 0x000400000000ULL
:
2241 case 0x001000000000ULL
:
2244 case 0x004000000000ULL
:
2247 case 0x010000000000ULL
:
2259 /* Helpers for 4xx TLB management */
2260 #define PPC4XX_TLB_ENTRY_MASK 0x0000003f /* Mask for 64 TLB entries */
2262 #define PPC4XX_TLBHI_V 0x00000040
2263 #define PPC4XX_TLBHI_E 0x00000020
2264 #define PPC4XX_TLBHI_SIZE_MIN 0
2265 #define PPC4XX_TLBHI_SIZE_MAX 7
2266 #define PPC4XX_TLBHI_SIZE_DEFAULT 1
2267 #define PPC4XX_TLBHI_SIZE_SHIFT 7
2268 #define PPC4XX_TLBHI_SIZE_MASK 0x00000007
2270 #define PPC4XX_TLBLO_EX 0x00000200
2271 #define PPC4XX_TLBLO_WR 0x00000100
2272 #define PPC4XX_TLBLO_ATTR_MASK 0x000000FF
2273 #define PPC4XX_TLBLO_RPN_MASK 0xFFFFFC00
2275 target_ulong
helper_4xx_tlbre_hi(CPUPPCState
*env
, target_ulong entry
)
2281 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2282 tlb
= &env
->tlb
.tlbe
[entry
];
2284 if (tlb
->prot
& PAGE_VALID
) {
2285 ret
|= PPC4XX_TLBHI_V
;
2287 size
= booke_page_size_to_tlb(tlb
->size
);
2288 if (size
< PPC4XX_TLBHI_SIZE_MIN
|| size
> PPC4XX_TLBHI_SIZE_MAX
) {
2289 size
= PPC4XX_TLBHI_SIZE_DEFAULT
;
2291 ret
|= size
<< PPC4XX_TLBHI_SIZE_SHIFT
;
2292 env
->spr
[SPR_40x_PID
] = tlb
->PID
;
2296 target_ulong
helper_4xx_tlbre_lo(CPUPPCState
*env
, target_ulong entry
)
2301 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2302 tlb
= &env
->tlb
.tlbe
[entry
];
2304 if (tlb
->prot
& PAGE_EXEC
) {
2305 ret
|= PPC4XX_TLBLO_EX
;
2307 if (tlb
->prot
& PAGE_WRITE
) {
2308 ret
|= PPC4XX_TLBLO_WR
;
2313 void helper_4xx_tlbwe_hi(CPUPPCState
*env
, target_ulong entry
,
2316 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2317 CPUState
*cs
= CPU(cpu
);
2319 target_ulong page
, end
;
2321 LOG_SWTLB("%s entry %d val " TARGET_FMT_lx
"\n", __func__
, (int)entry
,
2323 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2324 tlb
= &env
->tlb
.tlbe
[entry
];
2325 /* Invalidate previous TLB (if it's valid) */
2326 if (tlb
->prot
& PAGE_VALID
) {
2327 end
= tlb
->EPN
+ tlb
->size
;
2328 LOG_SWTLB("%s: invalidate old TLB %d start " TARGET_FMT_lx
" end "
2329 TARGET_FMT_lx
"\n", __func__
, (int)entry
, tlb
->EPN
, end
);
2330 for (page
= tlb
->EPN
; page
< end
; page
+= TARGET_PAGE_SIZE
) {
2331 tlb_flush_page(cs
, page
);
2334 tlb
->size
= booke_tlb_to_page_size((val
>> PPC4XX_TLBHI_SIZE_SHIFT
)
2335 & PPC4XX_TLBHI_SIZE_MASK
);
2336 /* We cannot handle TLB size < TARGET_PAGE_SIZE.
2337 * If this ever occurs, one should use the ppcemb target instead
2338 * of the ppc or ppc64 one
2340 if ((val
& PPC4XX_TLBHI_V
) && tlb
->size
< TARGET_PAGE_SIZE
) {
2341 cpu_abort(cs
, "TLB size " TARGET_FMT_lu
" < %u "
2342 "are not supported (%d)\n",
2343 tlb
->size
, TARGET_PAGE_SIZE
, (int)((val
>> 7) & 0x7));
2345 tlb
->EPN
= val
& ~(tlb
->size
- 1);
2346 if (val
& PPC4XX_TLBHI_V
) {
2347 tlb
->prot
|= PAGE_VALID
;
2348 if (val
& PPC4XX_TLBHI_E
) {
2349 /* XXX: TO BE FIXED */
2351 "Little-endian TLB entries are not supported by now\n");
2354 tlb
->prot
&= ~PAGE_VALID
;
2356 tlb
->PID
= env
->spr
[SPR_40x_PID
]; /* PID */
2357 LOG_SWTLB("%s: set up TLB %d RPN " TARGET_FMT_plx
" EPN " TARGET_FMT_lx
2358 " size " TARGET_FMT_lx
" prot %c%c%c%c PID %d\n", __func__
,
2359 (int)entry
, tlb
->RPN
, tlb
->EPN
, tlb
->size
,
2360 tlb
->prot
& PAGE_READ
? 'r' : '-',
2361 tlb
->prot
& PAGE_WRITE
? 'w' : '-',
2362 tlb
->prot
& PAGE_EXEC
? 'x' : '-',
2363 tlb
->prot
& PAGE_VALID
? 'v' : '-', (int)tlb
->PID
);
2364 /* Invalidate new TLB (if valid) */
2365 if (tlb
->prot
& PAGE_VALID
) {
2366 end
= tlb
->EPN
+ tlb
->size
;
2367 LOG_SWTLB("%s: invalidate TLB %d start " TARGET_FMT_lx
" end "
2368 TARGET_FMT_lx
"\n", __func__
, (int)entry
, tlb
->EPN
, end
);
2369 for (page
= tlb
->EPN
; page
< end
; page
+= TARGET_PAGE_SIZE
) {
2370 tlb_flush_page(cs
, page
);
2375 void helper_4xx_tlbwe_lo(CPUPPCState
*env
, target_ulong entry
,
2380 LOG_SWTLB("%s entry %i val " TARGET_FMT_lx
"\n", __func__
, (int)entry
,
2382 entry
&= PPC4XX_TLB_ENTRY_MASK
;
2383 tlb
= &env
->tlb
.tlbe
[entry
];
2384 tlb
->attr
= val
& PPC4XX_TLBLO_ATTR_MASK
;
2385 tlb
->RPN
= val
& PPC4XX_TLBLO_RPN_MASK
;
2386 tlb
->prot
= PAGE_READ
;
2387 if (val
& PPC4XX_TLBLO_EX
) {
2388 tlb
->prot
|= PAGE_EXEC
;
2390 if (val
& PPC4XX_TLBLO_WR
) {
2391 tlb
->prot
|= PAGE_WRITE
;
2393 LOG_SWTLB("%s: set up TLB %d RPN " TARGET_FMT_plx
" EPN " TARGET_FMT_lx
2394 " size " TARGET_FMT_lx
" prot %c%c%c%c PID %d\n", __func__
,
2395 (int)entry
, tlb
->RPN
, tlb
->EPN
, tlb
->size
,
2396 tlb
->prot
& PAGE_READ
? 'r' : '-',
2397 tlb
->prot
& PAGE_WRITE
? 'w' : '-',
2398 tlb
->prot
& PAGE_EXEC
? 'x' : '-',
2399 tlb
->prot
& PAGE_VALID
? 'v' : '-', (int)tlb
->PID
);
2402 target_ulong
helper_4xx_tlbsx(CPUPPCState
*env
, target_ulong address
)
2404 return ppcemb_tlb_search(env
, address
, env
->spr
[SPR_40x_PID
]);
2407 /* PowerPC 440 TLB management */
2408 void helper_440_tlbwe(CPUPPCState
*env
, uint32_t word
, target_ulong entry
,
2411 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2413 target_ulong EPN
, RPN
, size
;
2416 LOG_SWTLB("%s word %d entry %d value " TARGET_FMT_lx
"\n",
2417 __func__
, word
, (int)entry
, value
);
2420 tlb
= &env
->tlb
.tlbe
[entry
];
2423 /* Just here to please gcc */
2425 EPN
= value
& 0xFFFFFC00;
2426 if ((tlb
->prot
& PAGE_VALID
) && EPN
!= tlb
->EPN
) {
2430 size
= booke_tlb_to_page_size((value
>> 4) & 0xF);
2431 if ((tlb
->prot
& PAGE_VALID
) && tlb
->size
< size
) {
2436 tlb
->attr
|= (value
>> 8) & 1;
2437 if (value
& 0x200) {
2438 tlb
->prot
|= PAGE_VALID
;
2440 if (tlb
->prot
& PAGE_VALID
) {
2441 tlb
->prot
&= ~PAGE_VALID
;
2445 tlb
->PID
= env
->spr
[SPR_440_MMUCR
] & 0x000000FF;
2446 if (do_flush_tlbs
) {
2447 tlb_flush(CPU(cpu
));
2451 RPN
= value
& 0xFFFFFC0F;
2452 if ((tlb
->prot
& PAGE_VALID
) && tlb
->RPN
!= RPN
) {
2453 tlb_flush(CPU(cpu
));
2458 tlb
->attr
= (tlb
->attr
& 0x1) | (value
& 0x0000FF00);
2459 tlb
->prot
= tlb
->prot
& PAGE_VALID
;
2461 tlb
->prot
|= PAGE_READ
<< 4;
2464 tlb
->prot
|= PAGE_WRITE
<< 4;
2467 tlb
->prot
|= PAGE_EXEC
<< 4;
2470 tlb
->prot
|= PAGE_READ
;
2473 tlb
->prot
|= PAGE_WRITE
;
2476 tlb
->prot
|= PAGE_EXEC
;
2482 target_ulong
helper_440_tlbre(CPUPPCState
*env
, uint32_t word
,
2490 tlb
= &env
->tlb
.tlbe
[entry
];
2493 /* Just here to please gcc */
2496 size
= booke_page_size_to_tlb(tlb
->size
);
2497 if (size
< 0 || size
> 0xF) {
2501 if (tlb
->attr
& 0x1) {
2504 if (tlb
->prot
& PAGE_VALID
) {
2507 env
->spr
[SPR_440_MMUCR
] &= ~0x000000FF;
2508 env
->spr
[SPR_440_MMUCR
] |= tlb
->PID
;
2514 ret
= tlb
->attr
& ~0x1;
2515 if (tlb
->prot
& (PAGE_READ
<< 4)) {
2518 if (tlb
->prot
& (PAGE_WRITE
<< 4)) {
2521 if (tlb
->prot
& (PAGE_EXEC
<< 4)) {
2524 if (tlb
->prot
& PAGE_READ
) {
2527 if (tlb
->prot
& PAGE_WRITE
) {
2530 if (tlb
->prot
& PAGE_EXEC
) {
2538 target_ulong
helper_440_tlbsx(CPUPPCState
*env
, target_ulong address
)
2540 return ppcemb_tlb_search(env
, address
, env
->spr
[SPR_440_MMUCR
] & 0xFF);
2543 /* PowerPC BookE 2.06 TLB management */
2545 static ppcmas_tlb_t
*booke206_cur_tlb(CPUPPCState
*env
)
2547 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2548 uint32_t tlbncfg
= 0;
2549 int esel
= (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_ESEL_MASK
) >> MAS0_ESEL_SHIFT
;
2550 int ea
= (env
->spr
[SPR_BOOKE_MAS2
] & MAS2_EPN_MASK
);
2553 tlb
= (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_TLBSEL_MASK
) >> MAS0_TLBSEL_SHIFT
;
2554 tlbncfg
= env
->spr
[SPR_BOOKE_TLB0CFG
+ tlb
];
2556 if ((tlbncfg
& TLBnCFG_HES
) && (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_HES
)) {
2557 cpu_abort(CPU(cpu
), "we don't support HES yet\n");
2560 return booke206_get_tlbm(env
, tlb
, ea
, esel
);
2563 void helper_booke_setpid(CPUPPCState
*env
, uint32_t pidn
, target_ulong pid
)
2565 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2567 env
->spr
[pidn
] = pid
;
2568 /* changing PIDs mean we're in a different address space now */
2569 tlb_flush(CPU(cpu
));
2572 void helper_booke206_tlbwe(CPUPPCState
*env
)
2574 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2575 uint32_t tlbncfg
, tlbn
;
2577 uint32_t size_tlb
, size_ps
;
2581 switch (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_WQ_MASK
) {
2582 case MAS0_WQ_ALWAYS
:
2583 /* good to go, write that entry */
2586 /* XXX check if reserved */
2591 case MAS0_WQ_CLR_RSRV
:
2592 /* XXX clear entry */
2595 /* no idea what to do */
2599 if (((env
->spr
[SPR_BOOKE_MAS0
] & MAS0_ATSEL
) == MAS0_ATSEL_LRAT
) &&
2601 /* XXX we don't support direct LRAT setting yet */
2602 fprintf(stderr
, "cpu: don't support LRAT setting yet\n");
2606 tlbn
= (env
->spr
[SPR_BOOKE_MAS0
] & MAS0_TLBSEL_MASK
) >> MAS0_TLBSEL_SHIFT
;
2607 tlbncfg
= env
->spr
[SPR_BOOKE_TLB0CFG
+ tlbn
];
2609 tlb
= booke206_cur_tlb(env
);
2612 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2613 POWERPC_EXCP_INVAL
|
2614 POWERPC_EXCP_INVAL_INVAL
, GETPC());
2617 /* check that we support the targeted size */
2618 size_tlb
= (env
->spr
[SPR_BOOKE_MAS1
] & MAS1_TSIZE_MASK
) >> MAS1_TSIZE_SHIFT
;
2619 size_ps
= booke206_tlbnps(env
, tlbn
);
2620 if ((env
->spr
[SPR_BOOKE_MAS1
] & MAS1_VALID
) && (tlbncfg
& TLBnCFG_AVAIL
) &&
2621 !(size_ps
& (1 << size_tlb
))) {
2622 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2623 POWERPC_EXCP_INVAL
|
2624 POWERPC_EXCP_INVAL_INVAL
, GETPC());
2628 cpu_abort(CPU(cpu
), "missing HV implementation\n");
2630 tlb
->mas7_3
= ((uint64_t)env
->spr
[SPR_BOOKE_MAS7
] << 32) |
2631 env
->spr
[SPR_BOOKE_MAS3
];
2632 tlb
->mas1
= env
->spr
[SPR_BOOKE_MAS1
];
2635 if (!(tlbncfg
& TLBnCFG_AVAIL
)) {
2636 /* force !AVAIL TLB entries to correct page size */
2637 tlb
->mas1
&= ~MAS1_TSIZE_MASK
;
2638 /* XXX can be configured in MMUCSR0 */
2639 tlb
->mas1
|= (tlbncfg
& TLBnCFG_MINSIZE
) >> 12;
2642 /* Make a mask from TLB size to discard invalid bits in EPN field */
2643 mask
= ~(booke206_tlb_to_page_size(env
, tlb
) - 1);
2644 /* Add a mask for page attributes */
2645 mask
|= MAS2_ACM
| MAS2_VLE
| MAS2_W
| MAS2_I
| MAS2_M
| MAS2_G
| MAS2_E
;
2648 /* Executing a tlbwe instruction in 32-bit mode will set
2649 * bits 0:31 of the TLB EPN field to zero.
2654 tlb
->mas2
= env
->spr
[SPR_BOOKE_MAS2
] & mask
;
2656 if (!(tlbncfg
& TLBnCFG_IPROT
)) {
2657 /* no IPROT supported by TLB */
2658 tlb
->mas1
&= ~MAS1_IPROT
;
2661 if (booke206_tlb_to_page_size(env
, tlb
) == TARGET_PAGE_SIZE
) {
2662 tlb_flush_page(CPU(cpu
), tlb
->mas2
& MAS2_EPN_MASK
);
2664 tlb_flush(CPU(cpu
));
2668 static inline void booke206_tlb_to_mas(CPUPPCState
*env
, ppcmas_tlb_t
*tlb
)
2670 int tlbn
= booke206_tlbm_to_tlbn(env
, tlb
);
2671 int way
= booke206_tlbm_to_way(env
, tlb
);
2673 env
->spr
[SPR_BOOKE_MAS0
] = tlbn
<< MAS0_TLBSEL_SHIFT
;
2674 env
->spr
[SPR_BOOKE_MAS0
] |= way
<< MAS0_ESEL_SHIFT
;
2675 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_NV_SHIFT
;
2677 env
->spr
[SPR_BOOKE_MAS1
] = tlb
->mas1
;
2678 env
->spr
[SPR_BOOKE_MAS2
] = tlb
->mas2
;
2679 env
->spr
[SPR_BOOKE_MAS3
] = tlb
->mas7_3
;
2680 env
->spr
[SPR_BOOKE_MAS7
] = tlb
->mas7_3
>> 32;
2683 void helper_booke206_tlbre(CPUPPCState
*env
)
2685 ppcmas_tlb_t
*tlb
= NULL
;
2687 tlb
= booke206_cur_tlb(env
);
2689 env
->spr
[SPR_BOOKE_MAS1
] = 0;
2691 booke206_tlb_to_mas(env
, tlb
);
2695 void helper_booke206_tlbsx(CPUPPCState
*env
, target_ulong address
)
2697 ppcmas_tlb_t
*tlb
= NULL
;
2702 spid
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SPID_MASK
) >> MAS6_SPID_SHIFT
;
2703 sas
= env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SAS
;
2705 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
2706 int ways
= booke206_tlb_ways(env
, i
);
2708 for (j
= 0; j
< ways
; j
++) {
2709 tlb
= booke206_get_tlbm(env
, i
, address
, j
);
2715 if (ppcmas_tlb_check(env
, tlb
, &raddr
, address
, spid
)) {
2719 if (sas
!= ((tlb
->mas1
& MAS1_TS
) >> MAS1_TS_SHIFT
)) {
2723 booke206_tlb_to_mas(env
, tlb
);
2728 /* no entry found, fill with defaults */
2729 env
->spr
[SPR_BOOKE_MAS0
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TLBSELD_MASK
;
2730 env
->spr
[SPR_BOOKE_MAS1
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_TSIZED_MASK
;
2731 env
->spr
[SPR_BOOKE_MAS2
] = env
->spr
[SPR_BOOKE_MAS4
] & MAS4_WIMGED_MASK
;
2732 env
->spr
[SPR_BOOKE_MAS3
] = 0;
2733 env
->spr
[SPR_BOOKE_MAS7
] = 0;
2735 if (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SAS
) {
2736 env
->spr
[SPR_BOOKE_MAS1
] |= MAS1_TS
;
2739 env
->spr
[SPR_BOOKE_MAS1
] |= (env
->spr
[SPR_BOOKE_MAS6
] >> 16)
2742 /* next victim logic */
2743 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_ESEL_SHIFT
;
2745 env
->last_way
&= booke206_tlb_ways(env
, 0) - 1;
2746 env
->spr
[SPR_BOOKE_MAS0
] |= env
->last_way
<< MAS0_NV_SHIFT
;
2749 static inline void booke206_invalidate_ea_tlb(CPUPPCState
*env
, int tlbn
,
2753 int ways
= booke206_tlb_ways(env
, tlbn
);
2756 for (i
= 0; i
< ways
; i
++) {
2757 ppcmas_tlb_t
*tlb
= booke206_get_tlbm(env
, tlbn
, ea
, i
);
2761 mask
= ~(booke206_tlb_to_page_size(env
, tlb
) - 1);
2762 if (((tlb
->mas2
& MAS2_EPN_MASK
) == (ea
& mask
)) &&
2763 !(tlb
->mas1
& MAS1_IPROT
)) {
2764 tlb
->mas1
&= ~MAS1_VALID
;
2769 void helper_booke206_tlbivax(CPUPPCState
*env
, target_ulong address
)
2773 if (address
& 0x4) {
2774 /* flush all entries */
2775 if (address
& 0x8) {
2776 /* flush all of TLB1 */
2777 booke206_flush_tlb(env
, BOOKE206_FLUSH_TLB1
, 1);
2779 /* flush all of TLB0 */
2780 booke206_flush_tlb(env
, BOOKE206_FLUSH_TLB0
, 0);
2785 if (address
& 0x8) {
2786 /* flush TLB1 entries */
2787 booke206_invalidate_ea_tlb(env
, 1, address
);
2792 /* flush TLB0 entries */
2793 booke206_invalidate_ea_tlb(env
, 0, address
);
2795 tlb_flush_page(cs
, address
& MAS2_EPN_MASK
);
2800 void helper_booke206_tlbilx0(CPUPPCState
*env
, target_ulong address
)
2802 /* XXX missing LPID handling */
2803 booke206_flush_tlb(env
, -1, 1);
2806 void helper_booke206_tlbilx1(CPUPPCState
*env
, target_ulong address
)
2808 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2810 int tid
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SPID
);
2811 ppcmas_tlb_t
*tlb
= env
->tlb
.tlbm
;
2814 /* XXX missing LPID handling */
2815 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
2816 tlb_size
= booke206_tlb_size(env
, i
);
2817 for (j
= 0; j
< tlb_size
; j
++) {
2818 if (!(tlb
[j
].mas1
& MAS1_IPROT
) &&
2819 ((tlb
[j
].mas1
& MAS1_TID_MASK
) == tid
)) {
2820 tlb
[j
].mas1
&= ~MAS1_VALID
;
2823 tlb
+= booke206_tlb_size(env
, i
);
2825 tlb_flush(CPU(cpu
));
2828 void helper_booke206_tlbilx3(CPUPPCState
*env
, target_ulong address
)
2830 PowerPCCPU
*cpu
= ppc_env_get_cpu(env
);
2833 int tid
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SPID
);
2834 int pid
= tid
>> MAS6_SPID_SHIFT
;
2835 int sgs
= env
->spr
[SPR_BOOKE_MAS5
] & MAS5_SGS
;
2836 int ind
= (env
->spr
[SPR_BOOKE_MAS6
] & MAS6_SIND
) ? MAS1_IND
: 0;
2837 /* XXX check for unsupported isize and raise an invalid opcode then */
2838 int size
= env
->spr
[SPR_BOOKE_MAS6
] & MAS6_ISIZE_MASK
;
2839 /* XXX implement MAV2 handling */
2842 /* XXX missing LPID handling */
2843 /* flush by pid and ea */
2844 for (i
= 0; i
< BOOKE206_MAX_TLBN
; i
++) {
2845 int ways
= booke206_tlb_ways(env
, i
);
2847 for (j
= 0; j
< ways
; j
++) {
2848 tlb
= booke206_get_tlbm(env
, i
, address
, j
);
2852 if ((ppcmas_tlb_check(env
, tlb
, NULL
, address
, pid
) != 0) ||
2853 (tlb
->mas1
& MAS1_IPROT
) ||
2854 ((tlb
->mas1
& MAS1_IND
) != ind
) ||
2855 ((tlb
->mas8
& MAS8_TGS
) != sgs
)) {
2858 if (mav2
&& ((tlb
->mas1
& MAS1_TSIZE_MASK
) != size
)) {
2859 /* XXX only check when MMUCFG[TWC] || TLBnCFG[HES] */
2862 /* XXX e500mc doesn't match SAS, but other cores might */
2863 tlb
->mas1
&= ~MAS1_VALID
;
2866 tlb_flush(CPU(cpu
));
2869 void helper_booke206_tlbflush(CPUPPCState
*env
, target_ulong type
)
2874 flags
|= BOOKE206_FLUSH_TLB1
;
2878 flags
|= BOOKE206_FLUSH_TLB0
;
2881 booke206_flush_tlb(env
, flags
, 1);
2885 void helper_check_tlb_flush_local(CPUPPCState
*env
)
2887 check_tlb_flush(env
, false);
2890 void helper_check_tlb_flush_global(CPUPPCState
*env
)
2892 check_tlb_flush(env
, true);
2895 /*****************************************************************************/
2897 /* try to fill the TLB and return an exception if error. If retaddr is
2898 NULL, it means that the function was called in C code (i.e. not
2899 from generated code or from helper.c) */
2900 /* XXX: fix it to restore all registers */
2901 void tlb_fill(CPUState
*cs
, target_ulong addr
, MMUAccessType access_type
,
2902 int mmu_idx
, uintptr_t retaddr
)
2904 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2905 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cs
);
2906 CPUPPCState
*env
= &cpu
->env
;
2909 if (pcc
->handle_mmu_fault
) {
2910 ret
= pcc
->handle_mmu_fault(cpu
, addr
, access_type
, mmu_idx
);
2912 ret
= cpu_ppc_handle_mmu_fault(env
, addr
, access_type
, mmu_idx
);
2914 if (unlikely(ret
!= 0)) {
2915 raise_exception_err_ra(env
, cs
->exception_index
, env
->error_code
,