2 * PowerPC 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/>.
28 #include "helper_regs.h"
29 #include "qemu-common.h"
36 //#define DEBUG_SOFTWARE_TLB
37 //#define DUMP_PAGE_TABLES
38 //#define DEBUG_EXCEPTIONS
39 //#define FLUSH_ALL_TLBS
42 # define LOG_MMU(...) qemu_log(__VA_ARGS__)
43 # define LOG_MMU_STATE(env) log_cpu_state((env), 0)
45 # define LOG_MMU(...) do { } while (0)
46 # define LOG_MMU_STATE(...) do { } while (0)
50 #ifdef DEBUG_SOFTWARE_TLB
51 # define LOG_SWTLB(...) qemu_log(__VA_ARGS__)
53 # define LOG_SWTLB(...) do { } while (0)
57 # define LOG_BATS(...) qemu_log(__VA_ARGS__)
59 # define LOG_BATS(...) do { } while (0)
63 # define LOG_SLB(...) qemu_log(__VA_ARGS__)
65 # define LOG_SLB(...) do { } while (0)
68 #ifdef DEBUG_EXCEPTIONS
69 # define LOG_EXCP(...) qemu_log(__VA_ARGS__)
71 # define LOG_EXCP(...) do { } while (0)
75 /*****************************************************************************/
76 /* PowerPC MMU emulation */
78 #if defined(CONFIG_USER_ONLY)
79 int cpu_ppc_handle_mmu_fault (CPUState
*env
, target_ulong address
, int rw
,
80 int mmu_idx
, int is_softmmu
)
82 int exception
, error_code
;
85 exception
= POWERPC_EXCP_ISI
;
86 error_code
= 0x40000000;
88 exception
= POWERPC_EXCP_DSI
;
89 error_code
= 0x40000000;
91 error_code
|= 0x02000000;
92 env
->spr
[SPR_DAR
] = address
;
93 env
->spr
[SPR_DSISR
] = error_code
;
95 env
->exception_index
= exception
;
96 env
->error_code
= error_code
;
101 target_phys_addr_t
cpu_get_phys_page_debug (CPUState
*env
, target_ulong addr
)
107 /* Common routines used by software and hardware TLBs emulation */
108 static always_inline
int pte_is_valid (target_ulong pte0
)
110 return pte0
& 0x80000000 ? 1 : 0;
113 static always_inline
void pte_invalidate (target_ulong
*pte0
)
115 *pte0
&= ~0x80000000;
118 #if defined(TARGET_PPC64)
119 static always_inline
int pte64_is_valid (target_ulong pte0
)
121 return pte0
& 0x0000000000000001ULL
? 1 : 0;
124 static always_inline
void pte64_invalidate (target_ulong
*pte0
)
126 *pte0
&= ~0x0000000000000001ULL
;
130 #define PTE_PTEM_MASK 0x7FFFFFBF
131 #define PTE_CHECK_MASK (TARGET_PAGE_MASK | 0x7B)
132 #if defined(TARGET_PPC64)
133 #define PTE64_PTEM_MASK 0xFFFFFFFFFFFFFF80ULL
134 #define PTE64_CHECK_MASK (TARGET_PAGE_MASK | 0x7F)
137 static always_inline
int pp_check (int key
, int pp
, int nx
)
141 /* Compute access rights */
142 /* When pp is 3/7, the result is undefined. Set it to noaccess */
149 access
|= PAGE_WRITE
;
167 access
= PAGE_READ
| PAGE_WRITE
;
177 static always_inline
int check_prot (int prot
, int rw
, int access_type
)
181 if (access_type
== ACCESS_CODE
) {
182 if (prot
& PAGE_EXEC
)
187 if (prot
& PAGE_WRITE
)
192 if (prot
& PAGE_READ
)
201 static always_inline
int _pte_check (mmu_ctx_t
*ctx
, int is_64b
,
202 target_ulong pte0
, target_ulong pte1
,
203 int h
, int rw
, int type
)
205 target_ulong ptem
, mmask
;
206 int access
, ret
, pteh
, ptev
, pp
;
210 /* Check validity and table match */
211 #if defined(TARGET_PPC64)
213 ptev
= pte64_is_valid(pte0
);
214 pteh
= (pte0
>> 1) & 1;
218 ptev
= pte_is_valid(pte0
);
219 pteh
= (pte0
>> 6) & 1;
221 if (ptev
&& h
== pteh
) {
222 /* Check vsid & api */
223 #if defined(TARGET_PPC64)
225 ptem
= pte0
& PTE64_PTEM_MASK
;
226 mmask
= PTE64_CHECK_MASK
;
227 pp
= (pte1
& 0x00000003) | ((pte1
>> 61) & 0x00000004);
228 ctx
->nx
= (pte1
>> 2) & 1; /* No execute bit */
229 ctx
->nx
|= (pte1
>> 3) & 1; /* Guarded bit */
233 ptem
= pte0
& PTE_PTEM_MASK
;
234 mmask
= PTE_CHECK_MASK
;
235 pp
= pte1
& 0x00000003;
237 if (ptem
== ctx
->ptem
) {
238 if (ctx
->raddr
!= (target_phys_addr_t
)-1ULL) {
239 /* all matches should have equal RPN, WIMG & PP */
240 if ((ctx
->raddr
& mmask
) != (pte1
& mmask
)) {
241 qemu_log("Bad RPN/WIMG/PP\n");
245 /* Compute access rights */
246 access
= pp_check(ctx
->key
, pp
, ctx
->nx
);
247 /* Keep the matching PTE informations */
250 ret
= check_prot(ctx
->prot
, rw
, type
);
253 LOG_MMU("PTE access granted !\n");
255 /* Access right violation */
256 LOG_MMU("PTE access rejected\n");
264 static always_inline
int pte32_check (mmu_ctx_t
*ctx
,
265 target_ulong pte0
, target_ulong pte1
,
266 int h
, int rw
, int type
)
268 return _pte_check(ctx
, 0, pte0
, pte1
, h
, rw
, type
);
271 #if defined(TARGET_PPC64)
272 static always_inline
int pte64_check (mmu_ctx_t
*ctx
,
273 target_ulong pte0
, target_ulong pte1
,
274 int h
, int rw
, int type
)
276 return _pte_check(ctx
, 1, pte0
, pte1
, h
, rw
, type
);
280 static always_inline
int pte_update_flags (mmu_ctx_t
*ctx
, target_ulong
*pte1p
,
285 /* Update page flags */
286 if (!(*pte1p
& 0x00000100)) {
287 /* Update accessed flag */
288 *pte1p
|= 0x00000100;
291 if (!(*pte1p
& 0x00000080)) {
292 if (rw
== 1 && ret
== 0) {
293 /* Update changed flag */
294 *pte1p
|= 0x00000080;
297 /* Force page fault for first write access */
298 ctx
->prot
&= ~PAGE_WRITE
;
305 /* Software driven TLB helpers */
306 static always_inline
int ppc6xx_tlb_getnum (CPUState
*env
, target_ulong eaddr
,
307 int way
, int is_code
)
311 /* Select TLB num in a way from address */
312 nr
= (eaddr
>> TARGET_PAGE_BITS
) & (env
->tlb_per_way
- 1);
314 nr
+= env
->tlb_per_way
* way
;
315 /* 6xx have separate TLBs for instructions and data */
316 if (is_code
&& env
->id_tlbs
== 1)
322 static always_inline
void ppc6xx_tlb_invalidate_all (CPUState
*env
)
327 //LOG_SWTLB("Invalidate all TLBs\n");
328 /* Invalidate all defined software TLB */
330 if (env
->id_tlbs
== 1)
332 for (nr
= 0; nr
< max
; nr
++) {
333 tlb
= &env
->tlb
[nr
].tlb6
;
334 pte_invalidate(&tlb
->pte0
);
339 static always_inline
void __ppc6xx_tlb_invalidate_virt (CPUState
*env
,
344 #if !defined(FLUSH_ALL_TLBS)
348 /* Invalidate ITLB + DTLB, all ways */
349 for (way
= 0; way
< env
->nb_ways
; way
++) {
350 nr
= ppc6xx_tlb_getnum(env
, eaddr
, way
, is_code
);
351 tlb
= &env
->tlb
[nr
].tlb6
;
352 if (pte_is_valid(tlb
->pte0
) && (match_epn
== 0 || eaddr
== tlb
->EPN
)) {
353 LOG_SWTLB("TLB invalidate %d/%d " ADDRX
"\n",
354 nr
, env
->nb_tlb
, eaddr
);
355 pte_invalidate(&tlb
->pte0
);
356 tlb_flush_page(env
, tlb
->EPN
);
360 /* XXX: PowerPC specification say this is valid as well */
361 ppc6xx_tlb_invalidate_all(env
);
365 static always_inline
void ppc6xx_tlb_invalidate_virt (CPUState
*env
,
369 __ppc6xx_tlb_invalidate_virt(env
, eaddr
, is_code
, 0);
372 void ppc6xx_tlb_store (CPUState
*env
, target_ulong EPN
, int way
, int is_code
,
373 target_ulong pte0
, target_ulong pte1
)
378 nr
= ppc6xx_tlb_getnum(env
, EPN
, way
, is_code
);
379 tlb
= &env
->tlb
[nr
].tlb6
;
380 LOG_SWTLB("Set TLB %d/%d EPN " ADDRX
" PTE0 " ADDRX
381 " PTE1 " ADDRX
"\n", nr
, env
->nb_tlb
, EPN
, pte0
, pte1
);
382 /* Invalidate any pending reference in Qemu for this virtual address */
383 __ppc6xx_tlb_invalidate_virt(env
, EPN
, is_code
, 1);
387 /* Store last way for LRU mechanism */
391 static always_inline
int ppc6xx_tlb_check (CPUState
*env
, mmu_ctx_t
*ctx
,
392 target_ulong eaddr
, int rw
,
400 ret
= -1; /* No TLB found */
401 for (way
= 0; way
< env
->nb_ways
; way
++) {
402 nr
= ppc6xx_tlb_getnum(env
, eaddr
, way
,
403 access_type
== ACCESS_CODE
? 1 : 0);
404 tlb
= &env
->tlb
[nr
].tlb6
;
405 /* This test "emulates" the PTE index match for hardware TLBs */
406 if ((eaddr
& TARGET_PAGE_MASK
) != tlb
->EPN
) {
407 LOG_SWTLB("TLB %d/%d %s [" ADDRX
" " ADDRX
410 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
411 tlb
->EPN
, tlb
->EPN
+ TARGET_PAGE_SIZE
, eaddr
);
414 LOG_SWTLB("TLB %d/%d %s " ADDRX
" <> " ADDRX
" " ADDRX
417 pte_is_valid(tlb
->pte0
) ? "valid" : "inval",
418 tlb
->EPN
, eaddr
, tlb
->pte1
,
419 rw
? 'S' : 'L', access_type
== ACCESS_CODE
? 'I' : 'D');
420 switch (pte32_check(ctx
, tlb
->pte0
, tlb
->pte1
, 0, rw
, access_type
)) {
422 /* TLB inconsistency */
425 /* Access violation */
435 /* XXX: we should go on looping to check all TLBs consistency
436 * but we can speed-up the whole thing as the
437 * result would be undefined if TLBs are not consistent.
446 LOG_SWTLB("found TLB at addr " PADDRX
" prot=%01x ret=%d\n",
447 ctx
->raddr
& TARGET_PAGE_MASK
, ctx
->prot
, ret
);
448 /* Update page flags */
449 pte_update_flags(ctx
, &env
->tlb
[best
].tlb6
.pte1
, ret
, rw
);
455 /* Perform BAT hit & translation */
456 static always_inline
void bat_size_prot (CPUState
*env
, target_ulong
*blp
,
457 int *validp
, int *protp
,
458 target_ulong
*BATu
, target_ulong
*BATl
)
463 bl
= (*BATu
& 0x00001FFC) << 15;
466 if (((msr_pr
== 0) && (*BATu
& 0x00000002)) ||
467 ((msr_pr
!= 0) && (*BATu
& 0x00000001))) {
469 pp
= *BATl
& 0x00000003;
471 prot
= PAGE_READ
| PAGE_EXEC
;
481 static always_inline
void bat_601_size_prot (CPUState
*env
,target_ulong
*blp
,
482 int *validp
, int *protp
,
487 int key
, pp
, valid
, prot
;
489 bl
= (*BATl
& 0x0000003F) << 17;
490 LOG_BATS("b %02x ==> bl " ADDRX
" msk " ADDRX
"\n",
491 (uint8_t)(*BATl
& 0x0000003F), bl
, ~bl
);
493 valid
= (*BATl
>> 6) & 1;
495 pp
= *BATu
& 0x00000003;
497 key
= (*BATu
>> 3) & 1;
499 key
= (*BATu
>> 2) & 1;
500 prot
= pp_check(key
, pp
, 0);
507 static always_inline
int get_bat (CPUState
*env
, mmu_ctx_t
*ctx
,
508 target_ulong
virtual, int rw
, int type
)
510 target_ulong
*BATlt
, *BATut
, *BATu
, *BATl
;
511 target_ulong base
, BEPIl
, BEPIu
, bl
;
515 LOG_BATS("%s: %cBAT v " ADDRX
"\n", __func__
,
516 type
== ACCESS_CODE
? 'I' : 'D', virtual);
519 BATlt
= env
->IBAT
[1];
520 BATut
= env
->IBAT
[0];
523 BATlt
= env
->DBAT
[1];
524 BATut
= env
->DBAT
[0];
527 base
= virtual & 0xFFFC0000;
528 for (i
= 0; i
< env
->nb_BATs
; i
++) {
531 BEPIu
= *BATu
& 0xF0000000;
532 BEPIl
= *BATu
& 0x0FFE0000;
533 if (unlikely(env
->mmu_model
== POWERPC_MMU_601
)) {
534 bat_601_size_prot(env
, &bl
, &valid
, &prot
, BATu
, BATl
);
536 bat_size_prot(env
, &bl
, &valid
, &prot
, BATu
, BATl
);
538 LOG_BATS("%s: %cBAT%d v " ADDRX
" BATu " ADDRX
539 " BATl " ADDRX
"\n", __func__
,
540 type
== ACCESS_CODE
? 'I' : 'D', i
, virtual, *BATu
, *BATl
);
541 if ((virtual & 0xF0000000) == BEPIu
&&
542 ((virtual & 0x0FFE0000) & ~bl
) == BEPIl
) {
545 /* Get physical address */
546 ctx
->raddr
= (*BATl
& 0xF0000000) |
547 ((virtual & 0x0FFE0000 & bl
) | (*BATl
& 0x0FFE0000)) |
548 (virtual & 0x0001F000);
549 /* Compute access rights */
551 ret
= check_prot(ctx
->prot
, rw
, type
);
553 LOG_BATS("BAT %d match: r " PADDRX
" prot=%c%c\n",
554 i
, ctx
->raddr
, ctx
->prot
& PAGE_READ
? 'R' : '-',
555 ctx
->prot
& PAGE_WRITE
? 'W' : '-');
561 #if defined(DEBUG_BATS)
562 if (qemu_log_enabled()) {
563 LOG_BATS("no BAT match for " ADDRX
":\n", virtual);
564 for (i
= 0; i
< 4; i
++) {
567 BEPIu
= *BATu
& 0xF0000000;
568 BEPIl
= *BATu
& 0x0FFE0000;
569 bl
= (*BATu
& 0x00001FFC) << 15;
570 LOG_BATS("%s: %cBAT%d v " ADDRX
" BATu " ADDRX
571 " BATl " ADDRX
" \n\t" ADDRX
" " ADDRX
" " ADDRX
"\n",
572 __func__
, type
== ACCESS_CODE
? 'I' : 'D', i
, virtual,
573 *BATu
, *BATl
, BEPIu
, BEPIl
, bl
);
582 /* PTE table lookup */
583 static always_inline
int _find_pte (mmu_ctx_t
*ctx
, int is_64b
, int h
,
585 int target_page_bits
)
587 target_ulong base
, pte0
, pte1
;
591 ret
= -1; /* No entry found */
592 base
= ctx
->pg_addr
[h
];
593 for (i
= 0; i
< 8; i
++) {
594 #if defined(TARGET_PPC64)
596 pte0
= ldq_phys(base
+ (i
* 16));
597 pte1
= ldq_phys(base
+ (i
* 16) + 8);
599 /* We have a TLB that saves 4K pages, so let's
600 * split a huge page to 4k chunks */
601 if (target_page_bits
!= TARGET_PAGE_BITS
)
602 pte1
|= (ctx
->eaddr
& (( 1 << target_page_bits
) - 1))
605 r
= pte64_check(ctx
, pte0
, pte1
, h
, rw
, type
);
606 LOG_MMU("Load pte from " ADDRX
" => " ADDRX
" " ADDRX
607 " %d %d %d " ADDRX
"\n",
608 base
+ (i
* 16), pte0
, pte1
,
609 (int)(pte0
& 1), h
, (int)((pte0
>> 1) & 1),
614 pte0
= ldl_phys(base
+ (i
* 8));
615 pte1
= ldl_phys(base
+ (i
* 8) + 4);
616 r
= pte32_check(ctx
, pte0
, pte1
, h
, rw
, type
);
617 LOG_MMU("Load pte from " ADDRX
" => " ADDRX
" " ADDRX
618 " %d %d %d " ADDRX
"\n",
619 base
+ (i
* 8), pte0
, pte1
,
620 (int)(pte0
>> 31), h
, (int)((pte0
>> 6) & 1),
625 /* PTE inconsistency */
628 /* Access violation */
638 /* XXX: we should go on looping to check all PTEs consistency
639 * but if we can speed-up the whole thing as the
640 * result would be undefined if PTEs are not consistent.
649 LOG_MMU("found PTE at addr " PADDRX
" prot=%01x ret=%d\n",
650 ctx
->raddr
, ctx
->prot
, ret
);
651 /* Update page flags */
653 if (pte_update_flags(ctx
, &pte1
, ret
, rw
) == 1) {
654 #if defined(TARGET_PPC64)
656 stq_phys_notdirty(base
+ (good
* 16) + 8, pte1
);
660 stl_phys_notdirty(base
+ (good
* 8) + 4, pte1
);
668 static always_inline
int find_pte32 (mmu_ctx_t
*ctx
, int h
, int rw
,
669 int type
, int target_page_bits
)
671 return _find_pte(ctx
, 0, h
, rw
, type
, target_page_bits
);
674 #if defined(TARGET_PPC64)
675 static always_inline
int find_pte64 (mmu_ctx_t
*ctx
, int h
, int rw
,
676 int type
, int target_page_bits
)
678 return _find_pte(ctx
, 1, h
, rw
, type
, target_page_bits
);
682 static always_inline
int find_pte (CPUState
*env
, mmu_ctx_t
*ctx
,
683 int h
, int rw
, int type
,
684 int target_page_bits
)
686 #if defined(TARGET_PPC64)
687 if (env
->mmu_model
& POWERPC_MMU_64
)
688 return find_pte64(ctx
, h
, rw
, type
, target_page_bits
);
691 return find_pte32(ctx
, h
, rw
, type
, target_page_bits
);
694 #if defined(TARGET_PPC64)
695 static ppc_slb_t
*slb_get_entry(CPUPPCState
*env
, int nr
)
697 ppc_slb_t
*retval
= &env
->slb
[nr
];
699 #if 0 // XXX implement bridge mode?
700 if (env
->spr
[SPR_ASR
] & 1) {
701 target_phys_addr_t sr_base
;
703 sr_base
= env
->spr
[SPR_ASR
] & 0xfffffffffffff000;
704 sr_base
+= (12 * nr
);
706 retval
->tmp64
= ldq_phys(sr_base
);
707 retval
->tmp
= ldl_phys(sr_base
+ 8);
714 static void slb_set_entry(CPUPPCState
*env
, int nr
, ppc_slb_t
*slb
)
716 ppc_slb_t
*entry
= &env
->slb
[nr
];
721 entry
->tmp64
= slb
->tmp64
;
722 entry
->tmp
= slb
->tmp
;
725 static always_inline
int slb_is_valid (ppc_slb_t
*slb
)
727 return (int)(slb
->tmp64
& 0x0000000008000000ULL
);
730 static always_inline
void slb_invalidate (ppc_slb_t
*slb
)
732 slb
->tmp64
&= ~0x0000000008000000ULL
;
735 static always_inline
int slb_lookup (CPUPPCState
*env
, target_ulong eaddr
,
737 target_ulong
*page_mask
, int *attr
,
738 int *target_page_bits
)
744 LOG_SLB("%s: eaddr " ADDRX
"\n", __func__
, eaddr
);
745 mask
= 0x0000000000000000ULL
; /* Avoid gcc warning */
746 for (n
= 0; n
< env
->slb_nr
; n
++) {
747 ppc_slb_t
*slb
= slb_get_entry(env
, n
);
749 LOG_SLB("%s: seg %d %016" PRIx64
" %08"
750 PRIx32
"\n", __func__
, n
, slb
->tmp64
, slb
->tmp
);
751 if (slb_is_valid(slb
)) {
752 /* SLB entry is valid */
753 if (slb
->tmp
& 0x8) {
755 mask
= 0xFFFF000000000000ULL
;
756 if (target_page_bits
)
757 *target_page_bits
= 24; // XXX 16M pages?
760 mask
= 0xFFFFFFFFF0000000ULL
;
761 if (target_page_bits
)
762 *target_page_bits
= TARGET_PAGE_BITS
;
764 if ((eaddr
& mask
) == (slb
->tmp64
& mask
)) {
766 *vsid
= ((slb
->tmp64
<< 24) | (slb
->tmp
>> 8)) & 0x0003FFFFFFFFFFFFULL
;
768 *attr
= slb
->tmp
& 0xFF;
778 void ppc_slb_invalidate_all (CPUPPCState
*env
)
780 int n
, do_invalidate
;
783 /* XXX: Warning: slbia never invalidates the first segment */
784 for (n
= 1; n
< env
->slb_nr
; n
++) {
785 ppc_slb_t
*slb
= slb_get_entry(env
, n
);
787 if (slb_is_valid(slb
)) {
789 slb_set_entry(env
, n
, slb
);
790 /* XXX: given the fact that segment size is 256 MB or 1TB,
791 * and we still don't have a tlb_flush_mask(env, n, mask)
792 * in Qemu, we just invalidate all TLBs
801 void ppc_slb_invalidate_one (CPUPPCState
*env
, uint64_t T0
)
803 target_ulong vsid
, page_mask
;
807 n
= slb_lookup(env
, T0
, &vsid
, &page_mask
, &attr
, NULL
);
809 ppc_slb_t
*slb
= slb_get_entry(env
, n
);
811 if (slb_is_valid(slb
)) {
813 slb_set_entry(env
, n
, slb
);
814 /* XXX: given the fact that segment size is 256 MB or 1TB,
815 * and we still don't have a tlb_flush_mask(env, n, mask)
816 * in Qemu, we just invalidate all TLBs
823 target_ulong
ppc_load_slb (CPUPPCState
*env
, int slb_nr
)
826 ppc_slb_t
*slb
= slb_get_entry(env
, slb_nr
);
828 if (slb_is_valid(slb
)) {
829 /* SLB entry is valid */
830 /* Copy SLB bits 62:88 to Rt 37:63 (VSID 23:49) */
831 rt
= slb
->tmp
>> 8; /* 65:88 => 40:63 */
832 rt
|= (slb
->tmp64
& 0x7) << 24; /* 62:64 => 37:39 */
833 /* Copy SLB bits 89:92 to Rt 33:36 (KsKpNL) */
834 rt
|= ((slb
->tmp
>> 4) & 0xF) << 27;
838 LOG_SLB("%s: %016" PRIx64
" %08" PRIx32
" => %d "
839 ADDRX
"\n", __func__
, slb
->tmp64
, slb
->tmp
, slb_nr
, rt
);
844 void ppc_store_slb (CPUPPCState
*env
, target_ulong rb
, target_ulong rs
)
850 int flags
, valid
, slb_nr
;
853 flags
= ((rs
>> 8) & 0xf);
856 valid
= (rb
& (1 << 27));
859 slb
= slb_get_entry(env
, slb_nr
);
860 slb
->tmp64
= (esid
<< 28) | valid
| (vsid
>> 24);
861 slb
->tmp
= (vsid
<< 8) | (flags
<< 3);
863 LOG_SLB("%s: %d " ADDRX
" - " ADDRX
" => %016" PRIx64
864 " %08" PRIx32
"\n", __func__
,
865 slb_nr
, rb
, rs
, slb
->tmp64
, slb
->tmp
);
867 slb_set_entry(env
, slb_nr
, slb
);
869 #endif /* defined(TARGET_PPC64) */
871 /* Perform segment based translation */
872 static always_inline target_phys_addr_t
get_pgaddr (target_phys_addr_t sdr1
,
874 target_phys_addr_t hash
,
875 target_phys_addr_t mask
)
877 return (sdr1
& ((target_phys_addr_t
)(-1ULL) << sdr_sh
)) | (hash
& mask
);
880 static always_inline
int get_segment (CPUState
*env
, mmu_ctx_t
*ctx
,
881 target_ulong eaddr
, int rw
, int type
)
883 target_phys_addr_t sdr
, hash
, mask
, sdr_mask
, htab_mask
;
884 target_ulong sr
, vsid
, vsid_mask
, pgidx
, page_mask
;
885 #if defined(TARGET_PPC64)
888 int ds
, vsid_sh
, sdr_sh
, pr
, target_page_bits
;
892 #if defined(TARGET_PPC64)
893 if (env
->mmu_model
& POWERPC_MMU_64
) {
894 LOG_MMU("Check SLBs\n");
895 ret
= slb_lookup(env
, eaddr
, &vsid
, &page_mask
, &attr
,
899 ctx
->key
= ((attr
& 0x40) && (pr
!= 0)) ||
900 ((attr
& 0x80) && (pr
== 0)) ? 1 : 0;
902 ctx
->nx
= attr
& 0x10 ? 1 : 0;
904 vsid_mask
= 0x00003FFFFFFFFF80ULL
;
909 #endif /* defined(TARGET_PPC64) */
911 sr
= env
->sr
[eaddr
>> 28];
912 page_mask
= 0x0FFFFFFF;
913 ctx
->key
= (((sr
& 0x20000000) && (pr
!= 0)) ||
914 ((sr
& 0x40000000) && (pr
== 0))) ? 1 : 0;
915 ds
= sr
& 0x80000000 ? 1 : 0;
916 ctx
->nx
= sr
& 0x10000000 ? 1 : 0;
917 vsid
= sr
& 0x00FFFFFF;
918 vsid_mask
= 0x01FFFFC0;
922 target_page_bits
= TARGET_PAGE_BITS
;
923 LOG_MMU("Check segment v=" ADDRX
" %d " ADDRX
924 " nip=" ADDRX
" lr=" ADDRX
" ir=%d dr=%d pr=%d %d t=%d\n",
925 eaddr
, (int)(eaddr
>> 28), sr
, env
->nip
,
926 env
->lr
, (int)msr_ir
, (int)msr_dr
, pr
!= 0 ? 1 : 0,
929 LOG_MMU("pte segment: key=%d ds %d nx %d vsid " ADDRX
"\n",
930 ctx
->key
, ds
, ctx
->nx
, vsid
);
933 /* Check if instruction fetch is allowed, if needed */
934 if (type
!= ACCESS_CODE
|| ctx
->nx
== 0) {
935 /* Page address translation */
936 /* Primary table address */
938 pgidx
= (eaddr
& page_mask
) >> target_page_bits
;
939 #if defined(TARGET_PPC64)
940 if (env
->mmu_model
& POWERPC_MMU_64
) {
941 htab_mask
= 0x0FFFFFFF >> (28 - (sdr
& 0x1F));
942 /* XXX: this is false for 1 TB segments */
943 hash
= ((vsid
^ pgidx
) << vsid_sh
) & vsid_mask
;
947 htab_mask
= sdr
& 0x000001FF;
948 hash
= ((vsid
^ pgidx
) << vsid_sh
) & vsid_mask
;
950 mask
= (htab_mask
<< sdr_sh
) | sdr_mask
;
951 LOG_MMU("sdr " PADDRX
" sh %d hash " PADDRX
952 " mask " PADDRX
" " ADDRX
"\n",
953 sdr
, sdr_sh
, hash
, mask
, page_mask
);
954 ctx
->pg_addr
[0] = get_pgaddr(sdr
, sdr_sh
, hash
, mask
);
955 /* Secondary table address */
956 hash
= (~hash
) & vsid_mask
;
957 LOG_MMU("sdr " PADDRX
" sh %d hash " PADDRX
958 " mask " PADDRX
"\n",
959 sdr
, sdr_sh
, hash
, mask
);
960 ctx
->pg_addr
[1] = get_pgaddr(sdr
, sdr_sh
, hash
, mask
);
961 #if defined(TARGET_PPC64)
962 if (env
->mmu_model
& POWERPC_MMU_64
) {
963 /* Only 5 bits of the page index are used in the AVPN */
964 if (target_page_bits
> 23) {
965 ctx
->ptem
= (vsid
<< 12) |
966 ((pgidx
<< (target_page_bits
- 16)) & 0xF80);
968 ctx
->ptem
= (vsid
<< 12) | ((pgidx
>> 4) & 0x0F80);
973 ctx
->ptem
= (vsid
<< 7) | (pgidx
>> 10);
975 /* Initialize real address with an invalid value */
976 ctx
->raddr
= (target_phys_addr_t
)-1ULL;
977 if (unlikely(env
->mmu_model
== POWERPC_MMU_SOFT_6xx
||
978 env
->mmu_model
== POWERPC_MMU_SOFT_74xx
)) {
979 /* Software TLB search */
980 ret
= ppc6xx_tlb_check(env
, ctx
, eaddr
, rw
, type
);
982 LOG_MMU("0 sdr1=" PADDRX
" vsid=" ADDRX
" "
983 "api=" ADDRX
" hash=" PADDRX
984 " pg_addr=" PADDRX
"\n",
985 sdr
, vsid
, pgidx
, hash
, ctx
->pg_addr
[0]);
986 /* Primary table lookup */
987 ret
= find_pte(env
, ctx
, 0, rw
, type
, target_page_bits
);
989 /* Secondary table lookup */
990 if (eaddr
!= 0xEFFFFFFF)
991 LOG_MMU("1 sdr1=" PADDRX
" vsid=" ADDRX
" "
992 "api=" ADDRX
" hash=" PADDRX
993 " pg_addr=" PADDRX
"\n",
994 sdr
, vsid
, pgidx
, hash
, ctx
->pg_addr
[1]);
995 ret2
= find_pte(env
, ctx
, 1, rw
, type
,
1001 #if defined (DUMP_PAGE_TABLES)
1002 if (qemu_log_enabled()) {
1003 target_phys_addr_t curaddr
;
1004 uint32_t a0
, a1
, a2
, a3
;
1005 qemu_log("Page table: " PADDRX
" len " PADDRX
"\n",
1007 for (curaddr
= sdr
; curaddr
< (sdr
+ mask
+ 0x80);
1009 a0
= ldl_phys(curaddr
);
1010 a1
= ldl_phys(curaddr
+ 4);
1011 a2
= ldl_phys(curaddr
+ 8);
1012 a3
= ldl_phys(curaddr
+ 12);
1013 if (a0
!= 0 || a1
!= 0 || a2
!= 0 || a3
!= 0) {
1014 qemu_log(PADDRX
": %08x %08x %08x %08x\n",
1015 curaddr
, a0
, a1
, a2
, a3
);
1021 LOG_MMU("No access allowed\n");
1025 LOG_MMU("direct store...\n");
1026 /* Direct-store segment : absolutely *BUGGY* for now */
1029 /* Integer load/store : only access allowed */
1032 /* No code fetch is allowed in direct-store areas */
1035 /* Floating point load/store */
1038 /* lwarx, ldarx or srwcx. */
1041 /* dcba, dcbt, dcbtst, dcbf, dcbi, dcbst, dcbz, or icbi */
1042 /* Should make the instruction do no-op.
1043 * As it already do no-op, it's quite easy :-)
1048 /* eciwx or ecowx */
1051 qemu_log("ERROR: instruction should not need "
1052 "address translation\n");
1055 if ((rw
== 1 || ctx
->key
!= 1) && (rw
== 0 || ctx
->key
!= 0)) {
1066 /* Generic TLB check function for embedded PowerPC implementations */
1067 static always_inline
int ppcemb_tlb_check (CPUState
*env
, ppcemb_tlb_t
*tlb
,
1068 target_phys_addr_t
*raddrp
,
1069 target_ulong address
,
1070 uint32_t pid
, int ext
, int i
)
1074 /* Check valid flag */
1075 if (!(tlb
->prot
& PAGE_VALID
)) {
1076 qemu_log("%s: TLB %d not valid\n", __func__
, i
);
1079 mask
= ~(tlb
->size
- 1);
1080 LOG_SWTLB("%s: TLB %d address " ADDRX
" PID %u <=> " ADDRX
1082 __func__
, i
, address
, pid
, tlb
->EPN
, mask
, (uint32_t)tlb
->PID
);
1084 if (tlb
->PID
!= 0 && tlb
->PID
!= pid
)
1086 /* Check effective address */
1087 if ((address
& mask
) != tlb
->EPN
)
1089 *raddrp
= (tlb
->RPN
& mask
) | (address
& ~mask
);
1090 #if (TARGET_PHYS_ADDR_BITS >= 36)
1092 /* Extend the physical address to 36 bits */
1093 *raddrp
|= (target_phys_addr_t
)(tlb
->RPN
& 0xF) << 32;
1100 /* Generic TLB search function for PowerPC embedded implementations */
1101 int ppcemb_tlb_search (CPUPPCState
*env
, target_ulong address
, uint32_t pid
)
1104 target_phys_addr_t raddr
;
1107 /* Default return value is no match */
1109 for (i
= 0; i
< env
->nb_tlb
; i
++) {
1110 tlb
= &env
->tlb
[i
].tlbe
;
1111 if (ppcemb_tlb_check(env
, tlb
, &raddr
, address
, pid
, 0, i
) == 0) {
1120 /* Helpers specific to PowerPC 40x implementations */
1121 static always_inline
void ppc4xx_tlb_invalidate_all (CPUState
*env
)
1126 for (i
= 0; i
< env
->nb_tlb
; i
++) {
1127 tlb
= &env
->tlb
[i
].tlbe
;
1128 tlb
->prot
&= ~PAGE_VALID
;
1133 static always_inline
void ppc4xx_tlb_invalidate_virt (CPUState
*env
,
1137 #if !defined(FLUSH_ALL_TLBS)
1139 target_phys_addr_t raddr
;
1140 target_ulong page
, end
;
1143 for (i
= 0; i
< env
->nb_tlb
; i
++) {
1144 tlb
= &env
->tlb
[i
].tlbe
;
1145 if (ppcemb_tlb_check(env
, tlb
, &raddr
, eaddr
, pid
, 0, i
) == 0) {
1146 end
= tlb
->EPN
+ tlb
->size
;
1147 for (page
= tlb
->EPN
; page
< end
; page
+= TARGET_PAGE_SIZE
)
1148 tlb_flush_page(env
, page
);
1149 tlb
->prot
&= ~PAGE_VALID
;
1154 ppc4xx_tlb_invalidate_all(env
);
1158 static int mmu40x_get_physical_address (CPUState
*env
, mmu_ctx_t
*ctx
,
1159 target_ulong address
, int rw
, int access_type
)
1162 target_phys_addr_t raddr
;
1163 int i
, ret
, zsel
, zpr
, pr
;
1166 raddr
= (target_phys_addr_t
)-1ULL;
1168 for (i
= 0; i
< env
->nb_tlb
; i
++) {
1169 tlb
= &env
->tlb
[i
].tlbe
;
1170 if (ppcemb_tlb_check(env
, tlb
, &raddr
, address
,
1171 env
->spr
[SPR_40x_PID
], 0, i
) < 0)
1173 zsel
= (tlb
->attr
>> 4) & 0xF;
1174 zpr
= (env
->spr
[SPR_40x_ZPR
] >> (28 - (2 * zsel
))) & 0x3;
1175 LOG_SWTLB("%s: TLB %d zsel %d zpr %d rw %d attr %08x\n",
1176 __func__
, i
, zsel
, zpr
, rw
, tlb
->attr
);
1177 /* Check execute enable bit */
1184 /* All accesses granted */
1185 ctx
->prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
1197 /* Check from TLB entry */
1198 /* XXX: there is a problem here or in the TLB fill code... */
1199 ctx
->prot
= tlb
->prot
;
1200 ctx
->prot
|= PAGE_EXEC
;
1201 ret
= check_prot(ctx
->prot
, rw
, access_type
);
1206 LOG_SWTLB("%s: access granted " ADDRX
" => " PADDRX
1207 " %d %d\n", __func__
, address
, ctx
->raddr
, ctx
->prot
,
1212 LOG_SWTLB("%s: access refused " ADDRX
" => " PADDRX
1213 " %d %d\n", __func__
, address
, raddr
, ctx
->prot
,
1219 void store_40x_sler (CPUPPCState
*env
, uint32_t val
)
1221 /* XXX: TO BE FIXED */
1222 if (val
!= 0x00000000) {
1223 cpu_abort(env
, "Little-endian regions are not supported by now\n");
1225 env
->spr
[SPR_405_SLER
] = val
;
1228 static int mmubooke_get_physical_address (CPUState
*env
, mmu_ctx_t
*ctx
,
1229 target_ulong address
, int rw
,
1233 target_phys_addr_t raddr
;
1237 raddr
= (target_phys_addr_t
)-1ULL;
1238 for (i
= 0; i
< env
->nb_tlb
; i
++) {
1239 tlb
= &env
->tlb
[i
].tlbe
;
1240 if (ppcemb_tlb_check(env
, tlb
, &raddr
, address
,
1241 env
->spr
[SPR_BOOKE_PID
], 1, i
) < 0)
1244 prot
= tlb
->prot
& 0xF;
1246 prot
= (tlb
->prot
>> 4) & 0xF;
1247 /* Check the address space */
1248 if (access_type
== ACCESS_CODE
) {
1249 if (msr_ir
!= (tlb
->attr
& 1))
1252 if (prot
& PAGE_EXEC
) {
1258 if (msr_dr
!= (tlb
->attr
& 1))
1261 if ((!rw
&& prot
& PAGE_READ
) || (rw
&& (prot
& PAGE_WRITE
))) {
1274 static always_inline
int check_physical (CPUState
*env
, mmu_ctx_t
*ctx
,
1275 target_ulong eaddr
, int rw
)
1280 ctx
->prot
= PAGE_READ
| PAGE_EXEC
;
1282 switch (env
->mmu_model
) {
1283 case POWERPC_MMU_32B
:
1284 case POWERPC_MMU_601
:
1285 case POWERPC_MMU_SOFT_6xx
:
1286 case POWERPC_MMU_SOFT_74xx
:
1287 case POWERPC_MMU_SOFT_4xx
:
1288 case POWERPC_MMU_REAL
:
1289 case POWERPC_MMU_BOOKE
:
1290 ctx
->prot
|= PAGE_WRITE
;
1292 #if defined(TARGET_PPC64)
1293 case POWERPC_MMU_620
:
1294 case POWERPC_MMU_64B
:
1295 /* Real address are 60 bits long */
1296 ctx
->raddr
&= 0x0FFFFFFFFFFFFFFFULL
;
1297 ctx
->prot
|= PAGE_WRITE
;
1300 case POWERPC_MMU_SOFT_4xx_Z
:
1301 if (unlikely(msr_pe
!= 0)) {
1302 /* 403 family add some particular protections,
1303 * using PBL/PBU registers for accesses with no translation.
1306 /* Check PLB validity */
1307 (env
->pb
[0] < env
->pb
[1] &&
1308 /* and address in plb area */
1309 eaddr
>= env
->pb
[0] && eaddr
< env
->pb
[1]) ||
1310 (env
->pb
[2] < env
->pb
[3] &&
1311 eaddr
>= env
->pb
[2] && eaddr
< env
->pb
[3]) ? 1 : 0;
1312 if (in_plb
^ msr_px
) {
1313 /* Access in protected area */
1315 /* Access is not allowed */
1319 /* Read-write access is allowed */
1320 ctx
->prot
|= PAGE_WRITE
;
1324 case POWERPC_MMU_MPC8xx
:
1326 cpu_abort(env
, "MPC8xx MMU model is not implemented\n");
1328 case POWERPC_MMU_BOOKE_FSL
:
1330 cpu_abort(env
, "BookE FSL MMU model not implemented\n");
1333 cpu_abort(env
, "Unknown or invalid MMU model\n");
1340 int get_physical_address (CPUState
*env
, mmu_ctx_t
*ctx
, target_ulong eaddr
,
1341 int rw
, int access_type
)
1346 qemu_log("%s\n", __func__
);
1348 if ((access_type
== ACCESS_CODE
&& msr_ir
== 0) ||
1349 (access_type
!= ACCESS_CODE
&& msr_dr
== 0)) {
1350 /* No address translation */
1351 ret
= check_physical(env
, ctx
, eaddr
, rw
);
1354 switch (env
->mmu_model
) {
1355 case POWERPC_MMU_32B
:
1356 case POWERPC_MMU_601
:
1357 case POWERPC_MMU_SOFT_6xx
:
1358 case POWERPC_MMU_SOFT_74xx
:
1359 /* Try to find a BAT */
1360 if (env
->nb_BATs
!= 0)
1361 ret
= get_bat(env
, ctx
, eaddr
, rw
, access_type
);
1362 #if defined(TARGET_PPC64)
1363 case POWERPC_MMU_620
:
1364 case POWERPC_MMU_64B
:
1367 /* We didn't match any BAT entry or don't have BATs */
1368 ret
= get_segment(env
, ctx
, eaddr
, rw
, access_type
);
1371 case POWERPC_MMU_SOFT_4xx
:
1372 case POWERPC_MMU_SOFT_4xx_Z
:
1373 ret
= mmu40x_get_physical_address(env
, ctx
, eaddr
,
1376 case POWERPC_MMU_BOOKE
:
1377 ret
= mmubooke_get_physical_address(env
, ctx
, eaddr
,
1380 case POWERPC_MMU_MPC8xx
:
1382 cpu_abort(env
, "MPC8xx MMU model is not implemented\n");
1384 case POWERPC_MMU_BOOKE_FSL
:
1386 cpu_abort(env
, "BookE FSL MMU model not implemented\n");
1388 case POWERPC_MMU_REAL
:
1389 cpu_abort(env
, "PowerPC in real mode do not do any translation\n");
1392 cpu_abort(env
, "Unknown or invalid MMU model\n");
1397 qemu_log("%s address " ADDRX
" => %d " PADDRX
"\n",
1398 __func__
, eaddr
, ret
, ctx
->raddr
);
1404 target_phys_addr_t
cpu_get_phys_page_debug (CPUState
*env
, target_ulong addr
)
1408 if (unlikely(get_physical_address(env
, &ctx
, addr
, 0, ACCESS_INT
) != 0))
1411 return ctx
.raddr
& TARGET_PAGE_MASK
;
1414 /* Perform address translation */
1415 int cpu_ppc_handle_mmu_fault (CPUState
*env
, target_ulong address
, int rw
,
1416 int mmu_idx
, int is_softmmu
)
1425 access_type
= ACCESS_CODE
;
1428 access_type
= env
->access_type
;
1430 ret
= get_physical_address(env
, &ctx
, address
, rw
, access_type
);
1432 ret
= tlb_set_page_exec(env
, address
& TARGET_PAGE_MASK
,
1433 ctx
.raddr
& TARGET_PAGE_MASK
, ctx
.prot
,
1434 mmu_idx
, is_softmmu
);
1435 } else if (ret
< 0) {
1437 if (access_type
== ACCESS_CODE
) {
1440 /* No matches in page tables or TLB */
1441 switch (env
->mmu_model
) {
1442 case POWERPC_MMU_SOFT_6xx
:
1443 env
->exception_index
= POWERPC_EXCP_IFTLB
;
1444 env
->error_code
= 1 << 18;
1445 env
->spr
[SPR_IMISS
] = address
;
1446 env
->spr
[SPR_ICMP
] = 0x80000000 | ctx
.ptem
;
1448 case POWERPC_MMU_SOFT_74xx
:
1449 env
->exception_index
= POWERPC_EXCP_IFTLB
;
1451 case POWERPC_MMU_SOFT_4xx
:
1452 case POWERPC_MMU_SOFT_4xx_Z
:
1453 env
->exception_index
= POWERPC_EXCP_ITLB
;
1454 env
->error_code
= 0;
1455 env
->spr
[SPR_40x_DEAR
] = address
;
1456 env
->spr
[SPR_40x_ESR
] = 0x00000000;
1458 case POWERPC_MMU_32B
:
1459 case POWERPC_MMU_601
:
1460 #if defined(TARGET_PPC64)
1461 case POWERPC_MMU_620
:
1462 case POWERPC_MMU_64B
:
1464 env
->exception_index
= POWERPC_EXCP_ISI
;
1465 env
->error_code
= 0x40000000;
1467 case POWERPC_MMU_BOOKE
:
1469 cpu_abort(env
, "BookE MMU model is not implemented\n");
1471 case POWERPC_MMU_BOOKE_FSL
:
1473 cpu_abort(env
, "BookE FSL MMU model is not implemented\n");
1475 case POWERPC_MMU_MPC8xx
:
1477 cpu_abort(env
, "MPC8xx MMU model is not implemented\n");
1479 case POWERPC_MMU_REAL
:
1480 cpu_abort(env
, "PowerPC in real mode should never raise "
1481 "any MMU exceptions\n");
1484 cpu_abort(env
, "Unknown or invalid MMU model\n");
1489 /* Access rights violation */
1490 env
->exception_index
= POWERPC_EXCP_ISI
;
1491 env
->error_code
= 0x08000000;
1494 /* No execute protection violation */
1495 env
->exception_index
= POWERPC_EXCP_ISI
;
1496 env
->error_code
= 0x10000000;
1499 /* Direct store exception */
1500 /* No code fetch is allowed in direct-store areas */
1501 env
->exception_index
= POWERPC_EXCP_ISI
;
1502 env
->error_code
= 0x10000000;
1504 #if defined(TARGET_PPC64)
1506 /* No match in segment table */
1507 if (env
->mmu_model
== POWERPC_MMU_620
) {
1508 env
->exception_index
= POWERPC_EXCP_ISI
;
1509 /* XXX: this might be incorrect */
1510 env
->error_code
= 0x40000000;
1512 env
->exception_index
= POWERPC_EXCP_ISEG
;
1513 env
->error_code
= 0;
1521 /* No matches in page tables or TLB */
1522 switch (env
->mmu_model
) {
1523 case POWERPC_MMU_SOFT_6xx
:
1525 env
->exception_index
= POWERPC_EXCP_DSTLB
;
1526 env
->error_code
= 1 << 16;
1528 env
->exception_index
= POWERPC_EXCP_DLTLB
;
1529 env
->error_code
= 0;
1531 env
->spr
[SPR_DMISS
] = address
;
1532 env
->spr
[SPR_DCMP
] = 0x80000000 | ctx
.ptem
;
1534 env
->error_code
|= ctx
.key
<< 19;
1535 env
->spr
[SPR_HASH1
] = ctx
.pg_addr
[0];
1536 env
->spr
[SPR_HASH2
] = ctx
.pg_addr
[1];
1538 case POWERPC_MMU_SOFT_74xx
:
1540 env
->exception_index
= POWERPC_EXCP_DSTLB
;
1542 env
->exception_index
= POWERPC_EXCP_DLTLB
;
1545 /* Implement LRU algorithm */
1546 env
->error_code
= ctx
.key
<< 19;
1547 env
->spr
[SPR_TLBMISS
] = (address
& ~((target_ulong
)0x3)) |
1548 ((env
->last_way
+ 1) & (env
->nb_ways
- 1));
1549 env
->spr
[SPR_PTEHI
] = 0x80000000 | ctx
.ptem
;
1551 case POWERPC_MMU_SOFT_4xx
:
1552 case POWERPC_MMU_SOFT_4xx_Z
:
1553 env
->exception_index
= POWERPC_EXCP_DTLB
;
1554 env
->error_code
= 0;
1555 env
->spr
[SPR_40x_DEAR
] = address
;
1557 env
->spr
[SPR_40x_ESR
] = 0x00800000;
1559 env
->spr
[SPR_40x_ESR
] = 0x00000000;
1561 case POWERPC_MMU_32B
:
1562 case POWERPC_MMU_601
:
1563 #if defined(TARGET_PPC64)
1564 case POWERPC_MMU_620
:
1565 case POWERPC_MMU_64B
:
1567 env
->exception_index
= POWERPC_EXCP_DSI
;
1568 env
->error_code
= 0;
1569 env
->spr
[SPR_DAR
] = address
;
1571 env
->spr
[SPR_DSISR
] = 0x42000000;
1573 env
->spr
[SPR_DSISR
] = 0x40000000;
1575 case POWERPC_MMU_MPC8xx
:
1577 cpu_abort(env
, "MPC8xx MMU model is not implemented\n");
1579 case POWERPC_MMU_BOOKE
:
1581 cpu_abort(env
, "BookE MMU model is not implemented\n");
1583 case POWERPC_MMU_BOOKE_FSL
:
1585 cpu_abort(env
, "BookE FSL MMU model is not implemented\n");
1587 case POWERPC_MMU_REAL
:
1588 cpu_abort(env
, "PowerPC in real mode should never raise "
1589 "any MMU exceptions\n");
1592 cpu_abort(env
, "Unknown or invalid MMU model\n");
1597 /* Access rights violation */
1598 env
->exception_index
= POWERPC_EXCP_DSI
;
1599 env
->error_code
= 0;
1600 env
->spr
[SPR_DAR
] = address
;
1602 env
->spr
[SPR_DSISR
] = 0x0A000000;
1604 env
->spr
[SPR_DSISR
] = 0x08000000;
1607 /* Direct store exception */
1608 switch (access_type
) {
1610 /* Floating point load/store */
1611 env
->exception_index
= POWERPC_EXCP_ALIGN
;
1612 env
->error_code
= POWERPC_EXCP_ALIGN_FP
;
1613 env
->spr
[SPR_DAR
] = address
;
1616 /* lwarx, ldarx or stwcx. */
1617 env
->exception_index
= POWERPC_EXCP_DSI
;
1618 env
->error_code
= 0;
1619 env
->spr
[SPR_DAR
] = address
;
1621 env
->spr
[SPR_DSISR
] = 0x06000000;
1623 env
->spr
[SPR_DSISR
] = 0x04000000;
1626 /* eciwx or ecowx */
1627 env
->exception_index
= POWERPC_EXCP_DSI
;
1628 env
->error_code
= 0;
1629 env
->spr
[SPR_DAR
] = address
;
1631 env
->spr
[SPR_DSISR
] = 0x06100000;
1633 env
->spr
[SPR_DSISR
] = 0x04100000;
1636 printf("DSI: invalid exception (%d)\n", ret
);
1637 env
->exception_index
= POWERPC_EXCP_PROGRAM
;
1639 POWERPC_EXCP_INVAL
| POWERPC_EXCP_INVAL_INVAL
;
1640 env
->spr
[SPR_DAR
] = address
;
1644 #if defined(TARGET_PPC64)
1646 /* No match in segment table */
1647 if (env
->mmu_model
== POWERPC_MMU_620
) {
1648 env
->exception_index
= POWERPC_EXCP_DSI
;
1649 env
->error_code
= 0;
1650 env
->spr
[SPR_DAR
] = address
;
1651 /* XXX: this might be incorrect */
1653 env
->spr
[SPR_DSISR
] = 0x42000000;
1655 env
->spr
[SPR_DSISR
] = 0x40000000;
1657 env
->exception_index
= POWERPC_EXCP_DSEG
;
1658 env
->error_code
= 0;
1659 env
->spr
[SPR_DAR
] = address
;
1666 printf("%s: set exception to %d %02x\n", __func__
,
1667 env
->exception
, env
->error_code
);
1675 /*****************************************************************************/
1676 /* BATs management */
1677 #if !defined(FLUSH_ALL_TLBS)
1678 static always_inline
void do_invalidate_BAT (CPUPPCState
*env
,
1682 target_ulong base
, end
, page
;
1684 base
= BATu
& ~0x0001FFFF;
1685 end
= base
+ mask
+ 0x00020000;
1686 LOG_BATS("Flush BAT from " ADDRX
" to " ADDRX
" (" ADDRX
")\n",
1688 for (page
= base
; page
!= end
; page
+= TARGET_PAGE_SIZE
)
1689 tlb_flush_page(env
, page
);
1690 LOG_BATS("Flush done\n");
1694 static always_inline
void dump_store_bat (CPUPPCState
*env
, char ID
,
1695 int ul
, int nr
, target_ulong value
)
1697 LOG_BATS("Set %cBAT%d%c to " ADDRX
" (" ADDRX
")\n",
1698 ID
, nr
, ul
== 0 ? 'u' : 'l', value
, env
->nip
);
1701 void ppc_store_ibatu (CPUPPCState
*env
, int nr
, target_ulong value
)
1705 dump_store_bat(env
, 'I', 0, nr
, value
);
1706 if (env
->IBAT
[0][nr
] != value
) {
1707 mask
= (value
<< 15) & 0x0FFE0000UL
;
1708 #if !defined(FLUSH_ALL_TLBS)
1709 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1711 /* When storing valid upper BAT, mask BEPI and BRPN
1712 * and invalidate all TLBs covered by this BAT
1714 mask
= (value
<< 15) & 0x0FFE0000UL
;
1715 env
->IBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1716 (value
& ~0x0001FFFFUL
& ~mask
);
1717 env
->IBAT
[1][nr
] = (env
->IBAT
[1][nr
] & 0x0000007B) |
1718 (env
->IBAT
[1][nr
] & ~0x0001FFFF & ~mask
);
1719 #if !defined(FLUSH_ALL_TLBS)
1720 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1727 void ppc_store_ibatl (CPUPPCState
*env
, int nr
, target_ulong value
)
1729 dump_store_bat(env
, 'I', 1, nr
, value
);
1730 env
->IBAT
[1][nr
] = value
;
1733 void ppc_store_dbatu (CPUPPCState
*env
, int nr
, target_ulong value
)
1737 dump_store_bat(env
, 'D', 0, nr
, value
);
1738 if (env
->DBAT
[0][nr
] != value
) {
1739 /* When storing valid upper BAT, mask BEPI and BRPN
1740 * and invalidate all TLBs covered by this BAT
1742 mask
= (value
<< 15) & 0x0FFE0000UL
;
1743 #if !defined(FLUSH_ALL_TLBS)
1744 do_invalidate_BAT(env
, env
->DBAT
[0][nr
], mask
);
1746 mask
= (value
<< 15) & 0x0FFE0000UL
;
1747 env
->DBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1748 (value
& ~0x0001FFFFUL
& ~mask
);
1749 env
->DBAT
[1][nr
] = (env
->DBAT
[1][nr
] & 0x0000007B) |
1750 (env
->DBAT
[1][nr
] & ~0x0001FFFF & ~mask
);
1751 #if !defined(FLUSH_ALL_TLBS)
1752 do_invalidate_BAT(env
, env
->DBAT
[0][nr
], mask
);
1759 void ppc_store_dbatl (CPUPPCState
*env
, int nr
, target_ulong value
)
1761 dump_store_bat(env
, 'D', 1, nr
, value
);
1762 env
->DBAT
[1][nr
] = value
;
1765 void ppc_store_ibatu_601 (CPUPPCState
*env
, int nr
, target_ulong value
)
1770 dump_store_bat(env
, 'I', 0, nr
, value
);
1771 if (env
->IBAT
[0][nr
] != value
) {
1773 mask
= (env
->IBAT
[1][nr
] << 17) & 0x0FFE0000UL
;
1774 if (env
->IBAT
[1][nr
] & 0x40) {
1775 /* Invalidate BAT only if it is valid */
1776 #if !defined(FLUSH_ALL_TLBS)
1777 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1782 /* When storing valid upper BAT, mask BEPI and BRPN
1783 * and invalidate all TLBs covered by this BAT
1785 env
->IBAT
[0][nr
] = (value
& 0x00001FFFUL
) |
1786 (value
& ~0x0001FFFFUL
& ~mask
);
1787 env
->DBAT
[0][nr
] = env
->IBAT
[0][nr
];
1788 if (env
->IBAT
[1][nr
] & 0x40) {
1789 #if !defined(FLUSH_ALL_TLBS)
1790 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1795 #if defined(FLUSH_ALL_TLBS)
1802 void ppc_store_ibatl_601 (CPUPPCState
*env
, int nr
, target_ulong value
)
1807 dump_store_bat(env
, 'I', 1, nr
, value
);
1808 if (env
->IBAT
[1][nr
] != value
) {
1810 if (env
->IBAT
[1][nr
] & 0x40) {
1811 #if !defined(FLUSH_ALL_TLBS)
1812 mask
= (env
->IBAT
[1][nr
] << 17) & 0x0FFE0000UL
;
1813 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1819 #if !defined(FLUSH_ALL_TLBS)
1820 mask
= (value
<< 17) & 0x0FFE0000UL
;
1821 do_invalidate_BAT(env
, env
->IBAT
[0][nr
], mask
);
1826 env
->IBAT
[1][nr
] = value
;
1827 env
->DBAT
[1][nr
] = value
;
1828 #if defined(FLUSH_ALL_TLBS)
1835 /*****************************************************************************/
1836 /* TLB management */
1837 void ppc_tlb_invalidate_all (CPUPPCState
*env
)
1839 switch (env
->mmu_model
) {
1840 case POWERPC_MMU_SOFT_6xx
:
1841 case POWERPC_MMU_SOFT_74xx
:
1842 ppc6xx_tlb_invalidate_all(env
);
1844 case POWERPC_MMU_SOFT_4xx
:
1845 case POWERPC_MMU_SOFT_4xx_Z
:
1846 ppc4xx_tlb_invalidate_all(env
);
1848 case POWERPC_MMU_REAL
:
1849 cpu_abort(env
, "No TLB for PowerPC 4xx in real mode\n");
1851 case POWERPC_MMU_MPC8xx
:
1853 cpu_abort(env
, "MPC8xx MMU model is not implemented\n");
1855 case POWERPC_MMU_BOOKE
:
1857 cpu_abort(env
, "BookE MMU model is not implemented\n");
1859 case POWERPC_MMU_BOOKE_FSL
:
1862 cpu_abort(env
, "BookE MMU model is not implemented\n");
1864 case POWERPC_MMU_32B
:
1865 case POWERPC_MMU_601
:
1866 #if defined(TARGET_PPC64)
1867 case POWERPC_MMU_620
:
1868 case POWERPC_MMU_64B
:
1869 #endif /* defined(TARGET_PPC64) */
1874 cpu_abort(env
, "Unknown MMU model\n");
1879 void ppc_tlb_invalidate_one (CPUPPCState
*env
, target_ulong addr
)
1881 #if !defined(FLUSH_ALL_TLBS)
1882 addr
&= TARGET_PAGE_MASK
;
1883 switch (env
->mmu_model
) {
1884 case POWERPC_MMU_SOFT_6xx
:
1885 case POWERPC_MMU_SOFT_74xx
:
1886 ppc6xx_tlb_invalidate_virt(env
, addr
, 0);
1887 if (env
->id_tlbs
== 1)
1888 ppc6xx_tlb_invalidate_virt(env
, addr
, 1);
1890 case POWERPC_MMU_SOFT_4xx
:
1891 case POWERPC_MMU_SOFT_4xx_Z
:
1892 ppc4xx_tlb_invalidate_virt(env
, addr
, env
->spr
[SPR_40x_PID
]);
1894 case POWERPC_MMU_REAL
:
1895 cpu_abort(env
, "No TLB for PowerPC 4xx in real mode\n");
1897 case POWERPC_MMU_MPC8xx
:
1899 cpu_abort(env
, "MPC8xx MMU model is not implemented\n");
1901 case POWERPC_MMU_BOOKE
:
1903 cpu_abort(env
, "BookE MMU model is not implemented\n");
1905 case POWERPC_MMU_BOOKE_FSL
:
1907 cpu_abort(env
, "BookE FSL MMU model is not implemented\n");
1909 case POWERPC_MMU_32B
:
1910 case POWERPC_MMU_601
:
1911 /* tlbie invalidate TLBs for all segments */
1912 addr
&= ~((target_ulong
)-1ULL << 28);
1913 /* XXX: this case should be optimized,
1914 * giving a mask to tlb_flush_page
1916 tlb_flush_page(env
, addr
| (0x0 << 28));
1917 tlb_flush_page(env
, addr
| (0x1 << 28));
1918 tlb_flush_page(env
, addr
| (0x2 << 28));
1919 tlb_flush_page(env
, addr
| (0x3 << 28));
1920 tlb_flush_page(env
, addr
| (0x4 << 28));
1921 tlb_flush_page(env
, addr
| (0x5 << 28));
1922 tlb_flush_page(env
, addr
| (0x6 << 28));
1923 tlb_flush_page(env
, addr
| (0x7 << 28));
1924 tlb_flush_page(env
, addr
| (0x8 << 28));
1925 tlb_flush_page(env
, addr
| (0x9 << 28));
1926 tlb_flush_page(env
, addr
| (0xA << 28));
1927 tlb_flush_page(env
, addr
| (0xB << 28));
1928 tlb_flush_page(env
, addr
| (0xC << 28));
1929 tlb_flush_page(env
, addr
| (0xD << 28));
1930 tlb_flush_page(env
, addr
| (0xE << 28));
1931 tlb_flush_page(env
, addr
| (0xF << 28));
1933 #if defined(TARGET_PPC64)
1934 case POWERPC_MMU_620
:
1935 case POWERPC_MMU_64B
:
1936 /* tlbie invalidate TLBs for all segments */
1937 /* XXX: given the fact that there are too many segments to invalidate,
1938 * and we still don't have a tlb_flush_mask(env, n, mask) in Qemu,
1939 * we just invalidate all TLBs
1943 #endif /* defined(TARGET_PPC64) */
1946 cpu_abort(env
, "Unknown MMU model\n");
1950 ppc_tlb_invalidate_all(env
);
1954 /*****************************************************************************/
1955 /* Special registers manipulation */
1956 #if defined(TARGET_PPC64)
1957 void ppc_store_asr (CPUPPCState
*env
, target_ulong value
)
1959 if (env
->asr
!= value
) {
1966 void ppc_store_sdr1 (CPUPPCState
*env
, target_ulong value
)
1968 LOG_MMU("%s: " ADDRX
"\n", __func__
, value
);
1969 if (env
->sdr1
!= value
) {
1970 /* XXX: for PowerPC 64, should check that the HTABSIZE value
1978 #if defined(TARGET_PPC64)
1979 target_ulong
ppc_load_sr (CPUPPCState
*env
, int slb_nr
)
1986 void ppc_store_sr (CPUPPCState
*env
, int srnum
, target_ulong value
)
1988 LOG_MMU("%s: reg=%d " ADDRX
" " ADDRX
"\n",
1989 __func__
, srnum
, value
, env
->sr
[srnum
]);
1990 #if defined(TARGET_PPC64)
1991 if (env
->mmu_model
& POWERPC_MMU_64
) {
1992 uint64_t rb
= 0, rs
= 0;
1995 rb
|= ((uint32_t)srnum
& 0xf) << 28;
1996 /* Set the valid bit */
1999 rb
|= (uint32_t)srnum
;
2002 rs
|= (value
& 0xfffffff) << 12;
2004 rs
|= ((value
>> 27) & 0xf) << 9;
2006 ppc_store_slb(env
, rb
, rs
);
2009 if (env
->sr
[srnum
] != value
) {
2010 env
->sr
[srnum
] = value
;
2011 /* Invalidating 256MB of virtual memory in 4kB pages is way longer than
2012 flusing the whole TLB. */
2013 #if !defined(FLUSH_ALL_TLBS) && 0
2015 target_ulong page
, end
;
2016 /* Invalidate 256 MB of virtual memory */
2017 page
= (16 << 20) * srnum
;
2018 end
= page
+ (16 << 20);
2019 for (; page
!= end
; page
+= TARGET_PAGE_SIZE
)
2020 tlb_flush_page(env
, page
);
2027 #endif /* !defined (CONFIG_USER_ONLY) */
2029 /* GDBstub can read and write MSR... */
2030 void ppc_store_msr (CPUPPCState
*env
, target_ulong value
)
2032 hreg_store_msr(env
, value
, 0);
2035 /*****************************************************************************/
2036 /* Exception processing */
2037 #if defined (CONFIG_USER_ONLY)
2038 void do_interrupt (CPUState
*env
)
2040 env
->exception_index
= POWERPC_EXCP_NONE
;
2041 env
->error_code
= 0;
2044 void ppc_hw_interrupt (CPUState
*env
)
2046 env
->exception_index
= POWERPC_EXCP_NONE
;
2047 env
->error_code
= 0;
2049 #else /* defined (CONFIG_USER_ONLY) */
2050 static always_inline
void dump_syscall (CPUState
*env
)
2052 qemu_log_mask(CPU_LOG_INT
, "syscall r0=" REGX
" r3=" REGX
" r4=" REGX
2053 " r5=" REGX
" r6=" REGX
" nip=" ADDRX
"\n",
2054 ppc_dump_gpr(env
, 0), ppc_dump_gpr(env
, 3), ppc_dump_gpr(env
, 4),
2055 ppc_dump_gpr(env
, 5), ppc_dump_gpr(env
, 6), env
->nip
);
2058 /* Note that this function should be greatly optimized
2059 * when called with a constant excp, from ppc_hw_interrupt
2061 static always_inline
void powerpc_excp (CPUState
*env
,
2062 int excp_model
, int excp
)
2064 target_ulong msr
, new_msr
, vector
;
2065 int srr0
, srr1
, asrr0
, asrr1
;
2066 int lpes0
, lpes1
, lev
;
2069 /* XXX: find a suitable condition to enable the hypervisor mode */
2070 lpes0
= (env
->spr
[SPR_LPCR
] >> 1) & 1;
2071 lpes1
= (env
->spr
[SPR_LPCR
] >> 2) & 1;
2073 /* Those values ensure we won't enter the hypervisor mode */
2078 qemu_log_mask(CPU_LOG_INT
, "Raise exception at " ADDRX
" => %08x (%02x)\n",
2079 env
->nip
, excp
, env
->error_code
);
2086 msr
&= ~((target_ulong
)0x783F0000);
2088 case POWERPC_EXCP_NONE
:
2089 /* Should never happen */
2091 case POWERPC_EXCP_CRITICAL
: /* Critical input */
2092 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2093 switch (excp_model
) {
2094 case POWERPC_EXCP_40x
:
2095 srr0
= SPR_40x_SRR2
;
2096 srr1
= SPR_40x_SRR3
;
2098 case POWERPC_EXCP_BOOKE
:
2099 srr0
= SPR_BOOKE_CSRR0
;
2100 srr1
= SPR_BOOKE_CSRR1
;
2102 case POWERPC_EXCP_G2
:
2108 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
2110 /* Machine check exception is not enabled.
2111 * Enter checkstop state.
2113 if (qemu_log_enabled()) {
2114 qemu_log("Machine check while not allowed. "
2115 "Entering checkstop state\n");
2117 fprintf(stderr
, "Machine check while not allowed. "
2118 "Entering checkstop state\n");
2121 env
->interrupt_request
|= CPU_INTERRUPT_EXITTB
;
2123 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2124 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
2126 /* XXX: find a suitable condition to enable the hypervisor mode */
2127 new_msr
|= (target_ulong
)MSR_HVB
;
2129 /* XXX: should also have something loaded in DAR / DSISR */
2130 switch (excp_model
) {
2131 case POWERPC_EXCP_40x
:
2132 srr0
= SPR_40x_SRR2
;
2133 srr1
= SPR_40x_SRR3
;
2135 case POWERPC_EXCP_BOOKE
:
2136 srr0
= SPR_BOOKE_MCSRR0
;
2137 srr1
= SPR_BOOKE_MCSRR1
;
2138 asrr0
= SPR_BOOKE_CSRR0
;
2139 asrr1
= SPR_BOOKE_CSRR1
;
2145 case POWERPC_EXCP_DSI
: /* Data storage exception */
2146 LOG_EXCP("DSI exception: DSISR=" ADDRX
" DAR=" ADDRX
"\n",
2147 env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
2148 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2150 new_msr
|= (target_ulong
)MSR_HVB
;
2152 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
2153 LOG_EXCP("ISI exception: msr=" ADDRX
", nip=" ADDRX
"\n",
2155 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2157 new_msr
|= (target_ulong
)MSR_HVB
;
2158 msr
|= env
->error_code
;
2160 case POWERPC_EXCP_EXTERNAL
: /* External input */
2161 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2163 new_msr
|= (target_ulong
)MSR_HVB
;
2165 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
2166 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2168 new_msr
|= (target_ulong
)MSR_HVB
;
2169 /* XXX: this is false */
2170 /* Get rS/rD and rA from faulting opcode */
2171 env
->spr
[SPR_DSISR
] |= (ldl_code((env
->nip
- 4)) & 0x03FF0000) >> 16;
2173 case POWERPC_EXCP_PROGRAM
: /* Program exception */
2174 switch (env
->error_code
& ~0xF) {
2175 case POWERPC_EXCP_FP
:
2176 if ((msr_fe0
== 0 && msr_fe1
== 0) || msr_fp
== 0) {
2177 LOG_EXCP("Ignore floating point exception\n");
2178 env
->exception_index
= POWERPC_EXCP_NONE
;
2179 env
->error_code
= 0;
2182 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2184 new_msr
|= (target_ulong
)MSR_HVB
;
2186 if (msr_fe0
== msr_fe1
)
2190 case POWERPC_EXCP_INVAL
:
2191 LOG_EXCP("Invalid instruction at " ADDRX
"\n",
2193 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2195 new_msr
|= (target_ulong
)MSR_HVB
;
2198 case POWERPC_EXCP_PRIV
:
2199 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2201 new_msr
|= (target_ulong
)MSR_HVB
;
2204 case POWERPC_EXCP_TRAP
:
2205 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2207 new_msr
|= (target_ulong
)MSR_HVB
;
2211 /* Should never occur */
2212 cpu_abort(env
, "Invalid program exception %d. Aborting\n",
2217 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
2218 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2220 new_msr
|= (target_ulong
)MSR_HVB
;
2222 case POWERPC_EXCP_SYSCALL
: /* System call exception */
2223 /* NOTE: this is a temporary hack to support graphics OSI
2224 calls from the MOL driver */
2225 /* XXX: To be removed */
2226 if (env
->gpr
[3] == 0x113724fa && env
->gpr
[4] == 0x77810f9b &&
2228 if (env
->osi_call(env
) != 0) {
2229 env
->exception_index
= POWERPC_EXCP_NONE
;
2230 env
->error_code
= 0;
2235 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2236 lev
= env
->error_code
;
2237 if (lev
== 1 || (lpes0
== 0 && lpes1
== 0))
2238 new_msr
|= (target_ulong
)MSR_HVB
;
2240 case POWERPC_EXCP_APU
: /* Auxiliary processor unavailable */
2241 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2243 case POWERPC_EXCP_DECR
: /* Decrementer exception */
2244 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2246 new_msr
|= (target_ulong
)MSR_HVB
;
2248 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
2250 LOG_EXCP("FIT exception\n");
2251 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2253 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
2254 LOG_EXCP("WDT exception\n");
2255 switch (excp_model
) {
2256 case POWERPC_EXCP_BOOKE
:
2257 srr0
= SPR_BOOKE_CSRR0
;
2258 srr1
= SPR_BOOKE_CSRR1
;
2263 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2265 case POWERPC_EXCP_DTLB
: /* Data TLB error */
2266 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2268 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
2269 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2271 case POWERPC_EXCP_DEBUG
: /* Debug interrupt */
2272 switch (excp_model
) {
2273 case POWERPC_EXCP_BOOKE
:
2274 srr0
= SPR_BOOKE_DSRR0
;
2275 srr1
= SPR_BOOKE_DSRR1
;
2276 asrr0
= SPR_BOOKE_CSRR0
;
2277 asrr1
= SPR_BOOKE_CSRR1
;
2283 cpu_abort(env
, "Debug exception is not implemented yet !\n");
2285 case POWERPC_EXCP_SPEU
: /* SPE/embedded floating-point unavailable */
2286 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2288 case POWERPC_EXCP_EFPDI
: /* Embedded floating-point data interrupt */
2290 cpu_abort(env
, "Embedded floating point data exception "
2291 "is not implemented yet !\n");
2293 case POWERPC_EXCP_EFPRI
: /* Embedded floating-point round interrupt */
2295 cpu_abort(env
, "Embedded floating point round exception "
2296 "is not implemented yet !\n");
2298 case POWERPC_EXCP_EPERFM
: /* Embedded performance monitor interrupt */
2299 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2302 "Performance counter exception is not implemented yet !\n");
2304 case POWERPC_EXCP_DOORI
: /* Embedded doorbell interrupt */
2307 "Embedded doorbell interrupt is not implemented yet !\n");
2309 case POWERPC_EXCP_DOORCI
: /* Embedded doorbell critical interrupt */
2310 switch (excp_model
) {
2311 case POWERPC_EXCP_BOOKE
:
2312 srr0
= SPR_BOOKE_CSRR0
;
2313 srr1
= SPR_BOOKE_CSRR1
;
2319 cpu_abort(env
, "Embedded doorbell critical interrupt "
2320 "is not implemented yet !\n");
2322 case POWERPC_EXCP_RESET
: /* System reset exception */
2323 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2325 /* XXX: find a suitable condition to enable the hypervisor mode */
2326 new_msr
|= (target_ulong
)MSR_HVB
;
2329 case POWERPC_EXCP_DSEG
: /* Data segment exception */
2330 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2332 new_msr
|= (target_ulong
)MSR_HVB
;
2334 case POWERPC_EXCP_ISEG
: /* Instruction segment exception */
2335 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2337 new_msr
|= (target_ulong
)MSR_HVB
;
2339 case POWERPC_EXCP_HDECR
: /* Hypervisor decrementer exception */
2342 new_msr
|= (target_ulong
)MSR_HVB
;
2344 case POWERPC_EXCP_TRACE
: /* Trace exception */
2345 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2347 new_msr
|= (target_ulong
)MSR_HVB
;
2349 case POWERPC_EXCP_HDSI
: /* Hypervisor data storage exception */
2352 new_msr
|= (target_ulong
)MSR_HVB
;
2354 case POWERPC_EXCP_HISI
: /* Hypervisor instruction storage exception */
2357 new_msr
|= (target_ulong
)MSR_HVB
;
2359 case POWERPC_EXCP_HDSEG
: /* Hypervisor data segment exception */
2362 new_msr
|= (target_ulong
)MSR_HVB
;
2364 case POWERPC_EXCP_HISEG
: /* Hypervisor instruction segment exception */
2367 new_msr
|= (target_ulong
)MSR_HVB
;
2369 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
2370 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2372 new_msr
|= (target_ulong
)MSR_HVB
;
2374 case POWERPC_EXCP_PIT
: /* Programmable interval timer interrupt */
2375 LOG_EXCP("PIT exception\n");
2376 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2378 case POWERPC_EXCP_IO
: /* IO error exception */
2380 cpu_abort(env
, "601 IO error exception is not implemented yet !\n");
2382 case POWERPC_EXCP_RUNM
: /* Run mode exception */
2384 cpu_abort(env
, "601 run mode exception is not implemented yet !\n");
2386 case POWERPC_EXCP_EMUL
: /* Emulation trap exception */
2388 cpu_abort(env
, "602 emulation trap exception "
2389 "is not implemented yet !\n");
2391 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
2392 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2393 if (lpes1
== 0) /* XXX: check this */
2394 new_msr
|= (target_ulong
)MSR_HVB
;
2395 switch (excp_model
) {
2396 case POWERPC_EXCP_602
:
2397 case POWERPC_EXCP_603
:
2398 case POWERPC_EXCP_603E
:
2399 case POWERPC_EXCP_G2
:
2401 case POWERPC_EXCP_7x5
:
2403 case POWERPC_EXCP_74xx
:
2406 cpu_abort(env
, "Invalid instruction TLB miss exception\n");
2410 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
2411 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2412 if (lpes1
== 0) /* XXX: check this */
2413 new_msr
|= (target_ulong
)MSR_HVB
;
2414 switch (excp_model
) {
2415 case POWERPC_EXCP_602
:
2416 case POWERPC_EXCP_603
:
2417 case POWERPC_EXCP_603E
:
2418 case POWERPC_EXCP_G2
:
2420 case POWERPC_EXCP_7x5
:
2422 case POWERPC_EXCP_74xx
:
2425 cpu_abort(env
, "Invalid data load TLB miss exception\n");
2429 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
2430 new_msr
&= ~((target_ulong
)1 << MSR_RI
); /* XXX: check this */
2431 if (lpes1
== 0) /* XXX: check this */
2432 new_msr
|= (target_ulong
)MSR_HVB
;
2433 switch (excp_model
) {
2434 case POWERPC_EXCP_602
:
2435 case POWERPC_EXCP_603
:
2436 case POWERPC_EXCP_603E
:
2437 case POWERPC_EXCP_G2
:
2439 /* Swap temporary saved registers with GPRs */
2440 if (!(new_msr
& ((target_ulong
)1 << MSR_TGPR
))) {
2441 new_msr
|= (target_ulong
)1 << MSR_TGPR
;
2442 hreg_swap_gpr_tgpr(env
);
2445 case POWERPC_EXCP_7x5
:
2447 #if defined (DEBUG_SOFTWARE_TLB)
2448 if (qemu_log_enabled()) {
2450 target_ulong
*miss
, *cmp
;
2452 if (excp
== POWERPC_EXCP_IFTLB
) {
2455 miss
= &env
->spr
[SPR_IMISS
];
2456 cmp
= &env
->spr
[SPR_ICMP
];
2458 if (excp
== POWERPC_EXCP_DLTLB
)
2463 miss
= &env
->spr
[SPR_DMISS
];
2464 cmp
= &env
->spr
[SPR_DCMP
];
2466 qemu_log("6xx %sTLB miss: %cM " ADDRX
" %cC " ADDRX
2467 " H1 " ADDRX
" H2 " ADDRX
" %08x\n",
2468 es
, en
, *miss
, en
, *cmp
,
2469 env
->spr
[SPR_HASH1
], env
->spr
[SPR_HASH2
],
2473 msr
|= env
->crf
[0] << 28;
2474 msr
|= env
->error_code
; /* key, D/I, S/L bits */
2475 /* Set way using a LRU mechanism */
2476 msr
|= ((env
->last_way
+ 1) & (env
->nb_ways
- 1)) << 17;
2478 case POWERPC_EXCP_74xx
:
2480 #if defined (DEBUG_SOFTWARE_TLB)
2481 if (qemu_log_enabled()) {
2483 target_ulong
*miss
, *cmp
;
2485 if (excp
== POWERPC_EXCP_IFTLB
) {
2488 miss
= &env
->spr
[SPR_TLBMISS
];
2489 cmp
= &env
->spr
[SPR_PTEHI
];
2491 if (excp
== POWERPC_EXCP_DLTLB
)
2496 miss
= &env
->spr
[SPR_TLBMISS
];
2497 cmp
= &env
->spr
[SPR_PTEHI
];
2499 qemu_log("74xx %sTLB miss: %cM " ADDRX
" %cC " ADDRX
2501 es
, en
, *miss
, en
, *cmp
, env
->error_code
);
2504 msr
|= env
->error_code
; /* key bit */
2507 cpu_abort(env
, "Invalid data store TLB miss exception\n");
2511 case POWERPC_EXCP_FPA
: /* Floating-point assist exception */
2513 cpu_abort(env
, "Floating point assist exception "
2514 "is not implemented yet !\n");
2516 case POWERPC_EXCP_DABR
: /* Data address breakpoint */
2518 cpu_abort(env
, "DABR exception is not implemented yet !\n");
2520 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
2522 cpu_abort(env
, "IABR exception is not implemented yet !\n");
2524 case POWERPC_EXCP_SMI
: /* System management interrupt */
2526 cpu_abort(env
, "SMI exception is not implemented yet !\n");
2528 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
2530 cpu_abort(env
, "Thermal management exception "
2531 "is not implemented yet !\n");
2533 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor interrupt */
2534 new_msr
&= ~((target_ulong
)1 << MSR_RI
);
2536 new_msr
|= (target_ulong
)MSR_HVB
;
2539 "Performance counter exception is not implemented yet !\n");
2541 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
2543 cpu_abort(env
, "VPU assist exception is not implemented yet !\n");
2545 case POWERPC_EXCP_SOFTP
: /* Soft patch exception */
2548 "970 soft-patch exception is not implemented yet !\n");
2550 case POWERPC_EXCP_MAINT
: /* Maintenance exception */
2553 "970 maintenance exception is not implemented yet !\n");
2555 case POWERPC_EXCP_MEXTBR
: /* Maskable external breakpoint */
2557 cpu_abort(env
, "Maskable external exception "
2558 "is not implemented yet !\n");
2560 case POWERPC_EXCP_NMEXTBR
: /* Non maskable external breakpoint */
2562 cpu_abort(env
, "Non maskable external exception "
2563 "is not implemented yet !\n");
2567 cpu_abort(env
, "Invalid PowerPC exception %d. Aborting\n", excp
);
2570 /* save current instruction location */
2571 env
->spr
[srr0
] = env
->nip
- 4;
2574 /* save next instruction location */
2575 env
->spr
[srr0
] = env
->nip
;
2579 env
->spr
[srr1
] = msr
;
2580 /* If any alternate SRR register are defined, duplicate saved values */
2582 env
->spr
[asrr0
] = env
->spr
[srr0
];
2584 env
->spr
[asrr1
] = env
->spr
[srr1
];
2585 /* If we disactivated any translation, flush TLBs */
2586 if (new_msr
& ((1 << MSR_IR
) | (1 << MSR_DR
)))
2588 /* reload MSR with correct bits */
2589 new_msr
&= ~((target_ulong
)1 << MSR_EE
);
2590 new_msr
&= ~((target_ulong
)1 << MSR_PR
);
2591 new_msr
&= ~((target_ulong
)1 << MSR_FP
);
2592 new_msr
&= ~((target_ulong
)1 << MSR_FE0
);
2593 new_msr
&= ~((target_ulong
)1 << MSR_SE
);
2594 new_msr
&= ~((target_ulong
)1 << MSR_BE
);
2595 new_msr
&= ~((target_ulong
)1 << MSR_FE1
);
2596 new_msr
&= ~((target_ulong
)1 << MSR_IR
);
2597 new_msr
&= ~((target_ulong
)1 << MSR_DR
);
2598 #if 0 /* Fix this: not on all targets */
2599 new_msr
&= ~((target_ulong
)1 << MSR_PMM
);
2601 new_msr
&= ~((target_ulong
)1 << MSR_LE
);
2603 new_msr
|= (target_ulong
)1 << MSR_LE
;
2605 new_msr
&= ~((target_ulong
)1 << MSR_LE
);
2606 /* Jump to handler */
2607 vector
= env
->excp_vectors
[excp
];
2608 if (vector
== (target_ulong
)-1ULL) {
2609 cpu_abort(env
, "Raised an exception without defined vector %d\n",
2612 vector
|= env
->excp_prefix
;
2613 #if defined(TARGET_PPC64)
2614 if (excp_model
== POWERPC_EXCP_BOOKE
) {
2616 new_msr
&= ~((target_ulong
)1 << MSR_CM
);
2617 vector
= (uint32_t)vector
;
2619 new_msr
|= (target_ulong
)1 << MSR_CM
;
2622 if (!msr_isf
&& !(env
->mmu_model
& POWERPC_MMU_64
)) {
2623 new_msr
&= ~((target_ulong
)1 << MSR_SF
);
2624 vector
= (uint32_t)vector
;
2626 new_msr
|= (target_ulong
)1 << MSR_SF
;
2630 /* XXX: we don't use hreg_store_msr here as already have treated
2631 * any special case that could occur. Just store MSR and update hflags
2633 env
->msr
= new_msr
& env
->msr_mask
;
2634 hreg_compute_hflags(env
);
2636 /* Reset exception state */
2637 env
->exception_index
= POWERPC_EXCP_NONE
;
2638 env
->error_code
= 0;
2641 void do_interrupt (CPUState
*env
)
2643 powerpc_excp(env
, env
->excp_model
, env
->exception_index
);
2646 void ppc_hw_interrupt (CPUPPCState
*env
)
2651 qemu_log_mask(CPU_LOG_INT
, "%s: %p pending %08x req %08x me %d ee %d\n",
2652 __func__
, env
, env
->pending_interrupts
,
2653 env
->interrupt_request
, (int)msr_me
, (int)msr_ee
);
2655 /* External reset */
2656 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_RESET
)) {
2657 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_RESET
);
2658 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_RESET
);
2661 /* Machine check exception */
2662 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_MCK
)) {
2663 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_MCK
);
2664 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_MCHECK
);
2668 /* External debug exception */
2669 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_DEBUG
)) {
2670 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_DEBUG
);
2671 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_DEBUG
);
2676 /* XXX: find a suitable condition to enable the hypervisor mode */
2677 hdice
= env
->spr
[SPR_LPCR
] & 1;
2681 if ((msr_ee
!= 0 || msr_hv
== 0 || msr_pr
!= 0) && hdice
!= 0) {
2682 /* Hypervisor decrementer exception */
2683 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_HDECR
)) {
2684 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_HDECR
);
2685 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_HDECR
);
2690 /* External critical interrupt */
2691 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_CEXT
)) {
2692 /* Taking a critical external interrupt does not clear the external
2693 * critical interrupt status
2696 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_CEXT
);
2698 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_CRITICAL
);
2703 /* Watchdog timer on embedded PowerPC */
2704 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_WDT
)) {
2705 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_WDT
);
2706 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_WDT
);
2709 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_CDOORBELL
)) {
2710 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_CDOORBELL
);
2711 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_DOORCI
);
2714 /* Fixed interval timer on embedded PowerPC */
2715 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_FIT
)) {
2716 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_FIT
);
2717 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_FIT
);
2720 /* Programmable interval timer on embedded PowerPC */
2721 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_PIT
)) {
2722 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_PIT
);
2723 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_PIT
);
2726 /* Decrementer exception */
2727 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_DECR
)) {
2728 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_DECR
);
2729 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_DECR
);
2732 /* External interrupt */
2733 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_EXT
)) {
2734 /* Taking an external interrupt does not clear the external
2738 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_EXT
);
2740 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_EXTERNAL
);
2743 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_DOORBELL
)) {
2744 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_DOORBELL
);
2745 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_DOORI
);
2748 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_PERFM
)) {
2749 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_PERFM
);
2750 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_PERFM
);
2753 /* Thermal interrupt */
2754 if (env
->pending_interrupts
& (1 << PPC_INTERRUPT_THERM
)) {
2755 env
->pending_interrupts
&= ~(1 << PPC_INTERRUPT_THERM
);
2756 powerpc_excp(env
, env
->excp_model
, POWERPC_EXCP_THERM
);
2761 #endif /* !CONFIG_USER_ONLY */
2763 void cpu_dump_rfi (target_ulong RA
, target_ulong msr
)
2765 qemu_log("Return from exception at " ADDRX
" with flags " ADDRX
"\n",
2769 void cpu_ppc_reset (void *opaque
)
2771 CPUPPCState
*env
= opaque
;
2774 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
2775 qemu_log("CPU Reset (CPU %d)\n", env
->cpu_index
);
2776 log_cpu_state(env
, 0);
2779 msr
= (target_ulong
)0;
2781 /* XXX: find a suitable condition to enable the hypervisor mode */
2782 msr
|= (target_ulong
)MSR_HVB
;
2784 msr
|= (target_ulong
)0 << MSR_AP
; /* TO BE CHECKED */
2785 msr
|= (target_ulong
)0 << MSR_SA
; /* TO BE CHECKED */
2786 msr
|= (target_ulong
)1 << MSR_EP
;
2787 #if defined (DO_SINGLE_STEP) && 0
2788 /* Single step trace mode */
2789 msr
|= (target_ulong
)1 << MSR_SE
;
2790 msr
|= (target_ulong
)1 << MSR_BE
;
2792 #if defined(CONFIG_USER_ONLY)
2793 msr
|= (target_ulong
)1 << MSR_FP
; /* Allow floating point usage */
2794 msr
|= (target_ulong
)1 << MSR_VR
; /* Allow altivec usage */
2795 msr
|= (target_ulong
)1 << MSR_SPE
; /* Allow SPE usage */
2796 msr
|= (target_ulong
)1 << MSR_PR
;
2798 env
->excp_prefix
= env
->hreset_excp_prefix
;
2799 env
->nip
= env
->hreset_vector
| env
->excp_prefix
;
2800 if (env
->mmu_model
!= POWERPC_MMU_REAL
)
2801 ppc_tlb_invalidate_all(env
);
2803 env
->msr
= msr
& env
->msr_mask
;
2804 #if defined(TARGET_PPC64)
2805 if (env
->mmu_model
& POWERPC_MMU_64
)
2806 env
->msr
|= (1ULL << MSR_SF
);
2808 hreg_compute_hflags(env
);
2809 env
->reserve
= (target_ulong
)-1ULL;
2810 /* Be sure no exception or interrupt is pending */
2811 env
->pending_interrupts
= 0;
2812 env
->exception_index
= POWERPC_EXCP_NONE
;
2813 env
->error_code
= 0;
2814 /* Flush all TLBs */
2818 CPUPPCState
*cpu_ppc_init (const char *cpu_model
)
2821 const ppc_def_t
*def
;
2823 def
= cpu_ppc_find_by_name(cpu_model
);
2827 env
= qemu_mallocz(sizeof(CPUPPCState
));
2829 ppc_translate_init();
2830 env
->cpu_model_str
= cpu_model
;
2831 cpu_ppc_register_internal(env
, def
);
2834 qemu_init_vcpu(env
);
2839 void cpu_ppc_close (CPUPPCState
*env
)
2841 /* Should also remove all opcode tables... */