2 * PowerPC exception 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.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu/osdep.h"
20 #include "qemu/main-loop.h"
22 #include "sysemu/sysemu.h"
23 #include "sysemu/runstate.h"
25 #include "exec/exec-all.h"
27 #include "helper_regs.h"
28 #include "hw/ppc/ppc.h"
33 #include "sysemu/tcg.h"
34 #include "exec/helper-proto.h"
35 #include "exec/cpu_ldst.h"
38 /*****************************************************************************/
39 /* Exception processing */
40 #ifndef CONFIG_USER_ONLY
42 static const char *powerpc_excp_name(int excp
)
45 case POWERPC_EXCP_CRITICAL
: return "CRITICAL";
46 case POWERPC_EXCP_MCHECK
: return "MCHECK";
47 case POWERPC_EXCP_DSI
: return "DSI";
48 case POWERPC_EXCP_ISI
: return "ISI";
49 case POWERPC_EXCP_EXTERNAL
: return "EXTERNAL";
50 case POWERPC_EXCP_ALIGN
: return "ALIGN";
51 case POWERPC_EXCP_PROGRAM
: return "PROGRAM";
52 case POWERPC_EXCP_FPU
: return "FPU";
53 case POWERPC_EXCP_SYSCALL
: return "SYSCALL";
54 case POWERPC_EXCP_APU
: return "APU";
55 case POWERPC_EXCP_DECR
: return "DECR";
56 case POWERPC_EXCP_FIT
: return "FIT";
57 case POWERPC_EXCP_WDT
: return "WDT";
58 case POWERPC_EXCP_DTLB
: return "DTLB";
59 case POWERPC_EXCP_ITLB
: return "ITLB";
60 case POWERPC_EXCP_DEBUG
: return "DEBUG";
61 case POWERPC_EXCP_SPEU
: return "SPEU";
62 case POWERPC_EXCP_EFPDI
: return "EFPDI";
63 case POWERPC_EXCP_EFPRI
: return "EFPRI";
64 case POWERPC_EXCP_EPERFM
: return "EPERFM";
65 case POWERPC_EXCP_DOORI
: return "DOORI";
66 case POWERPC_EXCP_DOORCI
: return "DOORCI";
67 case POWERPC_EXCP_GDOORI
: return "GDOORI";
68 case POWERPC_EXCP_GDOORCI
: return "GDOORCI";
69 case POWERPC_EXCP_HYPPRIV
: return "HYPPRIV";
70 case POWERPC_EXCP_RESET
: return "RESET";
71 case POWERPC_EXCP_DSEG
: return "DSEG";
72 case POWERPC_EXCP_ISEG
: return "ISEG";
73 case POWERPC_EXCP_HDECR
: return "HDECR";
74 case POWERPC_EXCP_TRACE
: return "TRACE";
75 case POWERPC_EXCP_HDSI
: return "HDSI";
76 case POWERPC_EXCP_HISI
: return "HISI";
77 case POWERPC_EXCP_HDSEG
: return "HDSEG";
78 case POWERPC_EXCP_HISEG
: return "HISEG";
79 case POWERPC_EXCP_VPU
: return "VPU";
80 case POWERPC_EXCP_PIT
: return "PIT";
81 case POWERPC_EXCP_EMUL
: return "EMUL";
82 case POWERPC_EXCP_IFTLB
: return "IFTLB";
83 case POWERPC_EXCP_DLTLB
: return "DLTLB";
84 case POWERPC_EXCP_DSTLB
: return "DSTLB";
85 case POWERPC_EXCP_FPA
: return "FPA";
86 case POWERPC_EXCP_DABR
: return "DABR";
87 case POWERPC_EXCP_IABR
: return "IABR";
88 case POWERPC_EXCP_SMI
: return "SMI";
89 case POWERPC_EXCP_PERFM
: return "PERFM";
90 case POWERPC_EXCP_THERM
: return "THERM";
91 case POWERPC_EXCP_VPUA
: return "VPUA";
92 case POWERPC_EXCP_SOFTP
: return "SOFTP";
93 case POWERPC_EXCP_MAINT
: return "MAINT";
94 case POWERPC_EXCP_MEXTBR
: return "MEXTBR";
95 case POWERPC_EXCP_NMEXTBR
: return "NMEXTBR";
96 case POWERPC_EXCP_ITLBE
: return "ITLBE";
97 case POWERPC_EXCP_DTLBE
: return "DTLBE";
98 case POWERPC_EXCP_VSXU
: return "VSXU";
99 case POWERPC_EXCP_FU
: return "FU";
100 case POWERPC_EXCP_HV_EMU
: return "HV_EMU";
101 case POWERPC_EXCP_HV_MAINT
: return "HV_MAINT";
102 case POWERPC_EXCP_HV_FU
: return "HV_FU";
103 case POWERPC_EXCP_SDOOR
: return "SDOOR";
104 case POWERPC_EXCP_SDOOR_HV
: return "SDOOR_HV";
105 case POWERPC_EXCP_HVIRT
: return "HVIRT";
106 case POWERPC_EXCP_SYSCALL_VECTORED
: return "SYSCALL_VECTORED";
108 g_assert_not_reached();
112 static void dump_syscall(CPUPPCState
*env
)
114 qemu_log_mask(CPU_LOG_INT
, "syscall r0=%016" PRIx64
115 " r3=%016" PRIx64
" r4=%016" PRIx64
" r5=%016" PRIx64
116 " r6=%016" PRIx64
" r7=%016" PRIx64
" r8=%016" PRIx64
117 " nip=" TARGET_FMT_lx
"\n",
118 ppc_dump_gpr(env
, 0), ppc_dump_gpr(env
, 3),
119 ppc_dump_gpr(env
, 4), ppc_dump_gpr(env
, 5),
120 ppc_dump_gpr(env
, 6), ppc_dump_gpr(env
, 7),
121 ppc_dump_gpr(env
, 8), env
->nip
);
124 static void dump_hcall(CPUPPCState
*env
)
126 qemu_log_mask(CPU_LOG_INT
, "hypercall r3=%016" PRIx64
127 " r4=%016" PRIx64
" r5=%016" PRIx64
" r6=%016" PRIx64
128 " r7=%016" PRIx64
" r8=%016" PRIx64
" r9=%016" PRIx64
129 " r10=%016" PRIx64
" r11=%016" PRIx64
" r12=%016" PRIx64
130 " nip=" TARGET_FMT_lx
"\n",
131 ppc_dump_gpr(env
, 3), ppc_dump_gpr(env
, 4),
132 ppc_dump_gpr(env
, 5), ppc_dump_gpr(env
, 6),
133 ppc_dump_gpr(env
, 7), ppc_dump_gpr(env
, 8),
134 ppc_dump_gpr(env
, 9), ppc_dump_gpr(env
, 10),
135 ppc_dump_gpr(env
, 11), ppc_dump_gpr(env
, 12),
140 /* Return true iff byteswap is needed to load instruction */
141 static inline bool insn_need_byteswap(CPUArchState
*env
)
143 /* SYSTEM builds TARGET_BIG_ENDIAN. Need to swap when MSR[LE] is set */
144 return !!(env
->msr
& ((target_ulong
)1 << MSR_LE
));
147 static uint32_t ppc_ldl_code(CPUArchState
*env
, target_ulong addr
)
149 uint32_t insn
= cpu_ldl_code(env
, addr
);
151 if (insn_need_byteswap(env
)) {
152 insn
= bswap32(insn
);
160 static void ppc_excp_debug_sw_tlb(CPUPPCState
*env
, int excp
)
163 target_ulong
*miss
, *cmp
;
166 if (!qemu_loglevel_mask(CPU_LOG_MMU
)) {
170 if (excp
== POWERPC_EXCP_IFTLB
) {
173 miss
= &env
->spr
[SPR_IMISS
];
174 cmp
= &env
->spr
[SPR_ICMP
];
176 if (excp
== POWERPC_EXCP_DLTLB
) {
182 miss
= &env
->spr
[SPR_DMISS
];
183 cmp
= &env
->spr
[SPR_DCMP
];
185 qemu_log("6xx %sTLB miss: %cM " TARGET_FMT_lx
" %cC "
186 TARGET_FMT_lx
" H1 " TARGET_FMT_lx
" H2 "
187 TARGET_FMT_lx
" %08x\n", es
, en
, *miss
, en
, *cmp
,
188 env
->spr
[SPR_HASH1
], env
->spr
[SPR_HASH2
],
193 static int powerpc_reset_wakeup(CPUPPCState
*env
, int excp
, target_ulong
*msr
)
195 /* We no longer are in a PM state */
196 env
->resume_as_sreset
= false;
198 /* Pretend to be returning from doze always as we don't lose state */
199 *msr
|= SRR1_WS_NOLOSS
;
201 /* Machine checks are sent normally */
202 if (excp
== POWERPC_EXCP_MCHECK
) {
206 case POWERPC_EXCP_RESET
:
207 *msr
|= SRR1_WAKERESET
;
209 case POWERPC_EXCP_EXTERNAL
:
212 case POWERPC_EXCP_DECR
:
213 *msr
|= SRR1_WAKEDEC
;
215 case POWERPC_EXCP_SDOOR
:
216 *msr
|= SRR1_WAKEDBELL
;
218 case POWERPC_EXCP_SDOOR_HV
:
219 *msr
|= SRR1_WAKEHDBELL
;
221 case POWERPC_EXCP_HV_MAINT
:
222 *msr
|= SRR1_WAKEHMI
;
224 case POWERPC_EXCP_HVIRT
:
225 *msr
|= SRR1_WAKEHVI
;
228 cpu_abort(env_cpu(env
),
229 "Unsupported exception %d in Power Save mode\n", excp
);
231 return POWERPC_EXCP_RESET
;
235 * AIL - Alternate Interrupt Location, a mode that allows interrupts to be
236 * taken with the MMU on, and which uses an alternate location (e.g., so the
237 * kernel/hv can map the vectors there with an effective address).
239 * An interrupt is considered to be taken "with AIL" or "AIL applies" if they
240 * are delivered in this way. AIL requires the LPCR to be set to enable this
241 * mode, and then a number of conditions have to be true for AIL to apply.
243 * First of all, SRESET, MCE, and HMI are always delivered without AIL, because
244 * they specifically want to be in real mode (e.g., the MCE might be signaling
245 * a SLB multi-hit which requires SLB flush before the MMU can be enabled).
247 * After that, behaviour depends on the current MSR[IR], MSR[DR], MSR[HV],
248 * whether or not the interrupt changes MSR[HV] from 0 to 1, and the current
249 * radix mode (LPCR[HR]).
251 * POWER8, POWER9 with LPCR[HR]=0
252 * | LPCR[AIL] | MSR[IR||DR] | MSR[HV] | new MSR[HV] | AIL |
253 * +-----------+-------------+---------+-------------+-----+
254 * | a | 00/01/10 | x | x | 0 |
255 * | a | 11 | 0 | 1 | 0 |
256 * | a | 11 | 1 | 1 | a |
257 * | a | 11 | 0 | 0 | a |
258 * +-------------------------------------------------------+
260 * POWER9 with LPCR[HR]=1
261 * | LPCR[AIL] | MSR[IR||DR] | MSR[HV] | new MSR[HV] | AIL |
262 * +-----------+-------------+---------+-------------+-----+
263 * | a | 00/01/10 | x | x | 0 |
264 * | a | 11 | x | x | a |
265 * +-------------------------------------------------------+
267 * The difference with POWER9 being that MSR[HV] 0->1 interrupts can be sent to
268 * the hypervisor in AIL mode if the guest is radix. This is good for
269 * performance but allows the guest to influence the AIL of hypervisor
270 * interrupts using its MSR, and also the hypervisor must disallow guest
271 * interrupts (MSR[HV] 0->0) from using AIL if the hypervisor does not want to
272 * use AIL for its MSR[HV] 0->1 interrupts.
274 * POWER10 addresses those issues with a new LPCR[HAIL] bit that is applied to
275 * interrupts that begin execution with MSR[HV]=1 (so both MSR[HV] 0->1 and
278 * HAIL=1 is equivalent to AIL=3, for interrupts delivered with MSR[HV]=1.
280 * POWER10 behaviour is
281 * | LPCR[AIL] | LPCR[HAIL] | MSR[IR||DR] | MSR[HV] | new MSR[HV] | AIL |
282 * +-----------+------------+-------------+---------+-------------+-----+
283 * | a | h | 00/01/10 | 0 | 0 | 0 |
284 * | a | h | 11 | 0 | 0 | a |
285 * | a | h | x | 0 | 1 | h |
286 * | a | h | 00/01/10 | 1 | 1 | 0 |
287 * | a | h | 11 | 1 | 1 | h |
288 * +--------------------------------------------------------------------+
290 static void ppc_excp_apply_ail(PowerPCCPU
*cpu
, int excp
, target_ulong msr
,
291 target_ulong
*new_msr
, target_ulong
*vector
)
293 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cpu
);
294 CPUPPCState
*env
= &cpu
->env
;
295 bool mmu_all_on
= ((msr
>> MSR_IR
) & 1) && ((msr
>> MSR_DR
) & 1);
296 bool hv_escalation
= !(msr
& MSR_HVB
) && (*new_msr
& MSR_HVB
);
299 if (excp
== POWERPC_EXCP_MCHECK
||
300 excp
== POWERPC_EXCP_RESET
||
301 excp
== POWERPC_EXCP_HV_MAINT
) {
302 /* SRESET, MCE, HMI never apply AIL */
306 if (!(pcc
->lpcr_mask
& LPCR_AIL
)) {
307 /* This CPU does not have AIL */
312 if (!(pcc
->lpcr_mask
& LPCR_HAIL
)) {
314 /* AIL only works if MSR[IR] and MSR[DR] are both enabled. */
317 if (hv_escalation
&& !(env
->spr
[SPR_LPCR
] & LPCR_HR
)) {
319 * AIL does not work if there is a MSR[HV] 0->1 transition and the
320 * partition is in HPT mode. For radix guests, such interrupts are
321 * allowed to be delivered to the hypervisor in ail mode.
326 ail
= (env
->spr
[SPR_LPCR
] & LPCR_AIL
) >> LPCR_AIL_SHIFT
;
331 /* AIL=1 is reserved, treat it like AIL=0 */
337 if (!mmu_all_on
&& !hv_escalation
) {
339 * AIL works for HV interrupts even with guest MSR[IR/DR] disabled.
340 * Guest->guest and HV->HV interrupts do require MMU on.
345 if (*new_msr
& MSR_HVB
) {
346 if (!(env
->spr
[SPR_LPCR
] & LPCR_HAIL
)) {
347 /* HV interrupts depend on LPCR[HAIL] */
350 ail
= 3; /* HAIL=1 gives AIL=3 behaviour for HV interrupts */
352 ail
= (env
->spr
[SPR_LPCR
] & LPCR_AIL
) >> LPCR_AIL_SHIFT
;
357 if (ail
== 1 || ail
== 2) {
358 /* AIL=1 and AIL=2 are reserved, treat them like AIL=0 */
364 * AIL applies, so the new MSR gets IR and DR set, and an offset applied
367 *new_msr
|= (1 << MSR_IR
) | (1 << MSR_DR
);
369 if (excp
!= POWERPC_EXCP_SYSCALL_VECTORED
) {
371 *vector
|= 0x0000000000018000ull
;
372 } else if (ail
== 3) {
373 *vector
|= 0xc000000000004000ull
;
377 * scv AIL is a little different. AIL=2 does not change the address,
378 * only the MSR. AIL=3 replaces the 0x17000 base with 0xc...3000.
381 *vector
&= ~0x0000000000017000ull
; /* Un-apply the base offset */
382 *vector
|= 0xc000000000003000ull
; /* Apply scv's AIL=3 offset */
386 #endif /* TARGET_PPC64 */
388 static void powerpc_reset_excp_state(PowerPCCPU
*cpu
)
390 CPUState
*cs
= CPU(cpu
);
391 CPUPPCState
*env
= &cpu
->env
;
393 /* Reset exception state */
394 cs
->exception_index
= POWERPC_EXCP_NONE
;
398 static void powerpc_set_excp_state(PowerPCCPU
*cpu
, target_ulong vector
,
401 CPUPPCState
*env
= &cpu
->env
;
403 assert((msr
& env
->msr_mask
) == msr
);
406 * We don't use hreg_store_msr here as already have treated any
407 * special case that could occur. Just store MSR and update hflags
409 * Note: We *MUST* not use hreg_store_msr() as-is anyway because it will
410 * prevent setting of the HV bit which some exceptions might need to do.
414 hreg_compute_hflags(env
);
415 ppc_maybe_interrupt(env
);
417 powerpc_reset_excp_state(cpu
);
420 * Any interrupt is context synchronizing, check if TCG TLB needs
421 * a delayed flush on ppc64
423 check_tlb_flush(env
, false);
425 /* Reset the reservation */
426 env
->reserve_addr
= -1;
431 * This stops the machine and logs CPU state without killing QEMU (like
432 * cpu_abort()) because it is often a guest error as opposed to a QEMU error,
433 * so the machine can still be debugged.
435 static G_NORETURN
void powerpc_checkstop(CPUPPCState
*env
, const char *reason
)
437 CPUState
*cs
= env_cpu(env
);
440 f
= qemu_log_trylock();
442 fprintf(f
, "Entering checkstop state: %s\n", reason
);
443 cpu_dump_state(cs
, f
, CPU_DUMP_FPU
| CPU_DUMP_CCOP
);
448 * This stops the machine and logs CPU state without killing QEMU
449 * (like cpu_abort()) so the machine can still be debugged (because
450 * it is often a guest error).
452 qemu_system_guest_panicked(NULL
);
453 cpu_loop_exit_noexc(cs
);
456 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
457 void helper_attn(CPUPPCState
*env
)
459 /* POWER attn is unprivileged when enabled by HID, otherwise illegal */
460 if ((*env
->check_attn
)(env
)) {
461 powerpc_checkstop(env
, "host executed attn");
463 raise_exception_err(env
, POWERPC_EXCP_HV_EMU
,
464 POWERPC_EXCP_INVAL
| POWERPC_EXCP_INVAL_INVAL
);
468 #endif /* CONFIG_TCG */
470 static void powerpc_mcheck_checkstop(CPUPPCState
*env
)
472 /* KVM guests always have MSR[ME] enabled */
474 if (FIELD_EX64(env
->msr
, MSR
, ME
)) {
478 powerpc_checkstop(env
, "machine check with MSR[ME]=0");
482 static void powerpc_excp_40x(PowerPCCPU
*cpu
, int excp
)
484 CPUPPCState
*env
= &cpu
->env
;
485 target_ulong msr
, new_msr
, vector
;
486 int srr0
= SPR_SRR0
, srr1
= SPR_SRR1
;
488 /* new srr1 value excluding must-be-zero bits */
489 msr
= env
->msr
& ~0x783f0000ULL
;
491 /* new interrupt handler msr preserves ME unless explicitly overridden */
492 new_msr
= env
->msr
& (((target_ulong
)1 << MSR_ME
));
494 /* HV emu assistance interrupt only exists on server arch 2.05 or later */
495 if (excp
== POWERPC_EXCP_HV_EMU
) {
496 excp
= POWERPC_EXCP_PROGRAM
;
499 vector
= env
->excp_vectors
[excp
];
500 if (vector
== (target_ulong
)-1ULL) {
501 cpu_abort(env_cpu(env
),
502 "Raised an exception without defined vector %d\n", excp
);
504 vector
|= env
->excp_prefix
;
507 case POWERPC_EXCP_CRITICAL
: /* Critical input */
511 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
512 powerpc_mcheck_checkstop(env
);
513 /* machine check exceptions don't have ME set */
514 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
518 case POWERPC_EXCP_DSI
: /* Data storage exception */
519 trace_ppc_excp_dsi(env
->spr
[SPR_40x_ESR
], env
->spr
[SPR_40x_DEAR
]);
521 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
522 trace_ppc_excp_isi(msr
, env
->nip
);
524 case POWERPC_EXCP_EXTERNAL
: /* External input */
526 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
528 case POWERPC_EXCP_PROGRAM
: /* Program exception */
529 switch (env
->error_code
& ~0xF) {
530 case POWERPC_EXCP_FP
:
531 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
532 trace_ppc_excp_fp_ignore();
533 powerpc_reset_excp_state(cpu
);
536 env
->spr
[SPR_40x_ESR
] = ESR_FP
;
538 case POWERPC_EXCP_INVAL
:
539 trace_ppc_excp_inval(env
->nip
);
540 env
->spr
[SPR_40x_ESR
] = ESR_PIL
;
542 case POWERPC_EXCP_PRIV
:
543 env
->spr
[SPR_40x_ESR
] = ESR_PPR
;
545 case POWERPC_EXCP_TRAP
:
546 env
->spr
[SPR_40x_ESR
] = ESR_PTR
;
549 cpu_abort(env_cpu(env
), "Invalid program exception %d. Aborting\n",
554 case POWERPC_EXCP_SYSCALL
: /* System call exception */
558 * We need to correct the NIP which in this case is supposed
559 * to point to the next instruction
563 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
564 trace_ppc_excp_print("FIT");
566 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
567 trace_ppc_excp_print("WDT");
569 case POWERPC_EXCP_DTLB
: /* Data TLB error */
570 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
572 case POWERPC_EXCP_PIT
: /* Programmable interval timer interrupt */
573 trace_ppc_excp_print("PIT");
575 case POWERPC_EXCP_DEBUG
: /* Debug interrupt */
576 cpu_abort(env_cpu(env
), "%s exception not implemented\n",
577 powerpc_excp_name(excp
));
580 cpu_abort(env_cpu(env
), "Invalid PowerPC exception %d. Aborting\n",
585 env
->spr
[srr0
] = env
->nip
;
586 env
->spr
[srr1
] = msr
;
587 powerpc_set_excp_state(cpu
, vector
, new_msr
);
590 static void powerpc_excp_6xx(PowerPCCPU
*cpu
, int excp
)
592 CPUPPCState
*env
= &cpu
->env
;
593 target_ulong msr
, new_msr
, vector
;
595 /* new srr1 value excluding must-be-zero bits */
596 msr
= env
->msr
& ~0x783f0000ULL
;
598 /* new interrupt handler msr preserves ME unless explicitly overridden */
599 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
601 /* HV emu assistance interrupt only exists on server arch 2.05 or later */
602 if (excp
== POWERPC_EXCP_HV_EMU
) {
603 excp
= POWERPC_EXCP_PROGRAM
;
606 vector
= env
->excp_vectors
[excp
];
607 if (vector
== (target_ulong
)-1ULL) {
608 cpu_abort(env_cpu(env
),
609 "Raised an exception without defined vector %d\n", excp
);
611 vector
|= env
->excp_prefix
;
614 case POWERPC_EXCP_CRITICAL
: /* Critical input */
616 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
617 powerpc_mcheck_checkstop(env
);
618 /* machine check exceptions don't have ME set */
619 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
621 case POWERPC_EXCP_DSI
: /* Data storage exception */
622 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
624 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
625 trace_ppc_excp_isi(msr
, env
->nip
);
626 msr
|= env
->error_code
;
628 case POWERPC_EXCP_EXTERNAL
: /* External input */
630 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
631 /* Get rS/rD and rA from faulting opcode */
633 * Note: the opcode fields will not be set properly for a
634 * direct store load/store, but nobody cares as nobody
635 * actually uses direct store segments.
637 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
639 case POWERPC_EXCP_PROGRAM
: /* Program exception */
640 switch (env
->error_code
& ~0xF) {
641 case POWERPC_EXCP_FP
:
642 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
643 trace_ppc_excp_fp_ignore();
644 powerpc_reset_excp_state(cpu
);
648 * NIP always points to the faulting instruction for FP exceptions,
649 * so always use store_next and claim we are precise in the MSR.
653 case POWERPC_EXCP_INVAL
:
654 trace_ppc_excp_inval(env
->nip
);
657 case POWERPC_EXCP_PRIV
:
660 case POWERPC_EXCP_TRAP
:
664 /* Should never occur */
665 cpu_abort(env_cpu(env
), "Invalid program exception %d. Aborting\n",
670 case POWERPC_EXCP_SYSCALL
: /* System call exception */
674 * We need to correct the NIP which in this case is supposed
675 * to point to the next instruction
679 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
680 case POWERPC_EXCP_DECR
: /* Decrementer exception */
682 case POWERPC_EXCP_DTLB
: /* Data TLB error */
683 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
685 case POWERPC_EXCP_RESET
: /* System reset exception */
686 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
687 cpu_abort(env_cpu(env
),
688 "Trying to deliver power-saving system reset exception "
689 "%d with no HV support\n", excp
);
692 case POWERPC_EXCP_TRACE
: /* Trace exception */
694 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
695 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
696 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
697 /* Swap temporary saved registers with GPRs */
698 if (!(new_msr
& ((target_ulong
)1 << MSR_TGPR
))) {
699 new_msr
|= (target_ulong
)1 << MSR_TGPR
;
700 hreg_swap_gpr_tgpr(env
);
703 ppc_excp_debug_sw_tlb(env
, excp
);
705 msr
|= env
->crf
[0] << 28;
706 msr
|= env
->error_code
; /* key, D/I, S/L bits */
707 /* Set way using a LRU mechanism */
708 msr
|= ((env
->last_way
+ 1) & (env
->nb_ways
- 1)) << 17;
710 case POWERPC_EXCP_FPA
: /* Floating-point assist exception */
711 case POWERPC_EXCP_DABR
: /* Data address breakpoint */
712 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
713 case POWERPC_EXCP_SMI
: /* System management interrupt */
714 case POWERPC_EXCP_MEXTBR
: /* Maskable external breakpoint */
715 case POWERPC_EXCP_NMEXTBR
: /* Non maskable external breakpoint */
716 cpu_abort(env_cpu(env
), "%s exception not implemented\n",
717 powerpc_excp_name(excp
));
720 cpu_abort(env_cpu(env
), "Invalid PowerPC exception %d. Aborting\n",
725 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
726 new_msr
|= (target_ulong
)1 << MSR_LE
;
728 env
->spr
[SPR_SRR0
] = env
->nip
;
729 env
->spr
[SPR_SRR1
] = msr
;
730 powerpc_set_excp_state(cpu
, vector
, new_msr
);
733 static void powerpc_excp_7xx(PowerPCCPU
*cpu
, int excp
)
735 CPUPPCState
*env
= &cpu
->env
;
736 target_ulong msr
, new_msr
, vector
;
738 /* new srr1 value excluding must-be-zero bits */
739 msr
= env
->msr
& ~0x783f0000ULL
;
741 /* new interrupt handler msr preserves ME unless explicitly overridden */
742 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
744 /* HV emu assistance interrupt only exists on server arch 2.05 or later */
745 if (excp
== POWERPC_EXCP_HV_EMU
) {
746 excp
= POWERPC_EXCP_PROGRAM
;
749 vector
= env
->excp_vectors
[excp
];
750 if (vector
== (target_ulong
)-1ULL) {
751 cpu_abort(env_cpu(env
),
752 "Raised an exception without defined vector %d\n", excp
);
754 vector
|= env
->excp_prefix
;
757 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
758 powerpc_mcheck_checkstop(env
);
759 /* machine check exceptions don't have ME set */
760 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
762 case POWERPC_EXCP_DSI
: /* Data storage exception */
763 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
765 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
766 trace_ppc_excp_isi(msr
, env
->nip
);
767 msr
|= env
->error_code
;
769 case POWERPC_EXCP_EXTERNAL
: /* External input */
771 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
772 /* Get rS/rD and rA from faulting opcode */
774 * Note: the opcode fields will not be set properly for a
775 * direct store load/store, but nobody cares as nobody
776 * actually uses direct store segments.
778 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
780 case POWERPC_EXCP_PROGRAM
: /* Program exception */
781 switch (env
->error_code
& ~0xF) {
782 case POWERPC_EXCP_FP
:
783 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
784 trace_ppc_excp_fp_ignore();
785 powerpc_reset_excp_state(cpu
);
789 * NIP always points to the faulting instruction for FP exceptions,
790 * so always use store_next and claim we are precise in the MSR.
794 case POWERPC_EXCP_INVAL
:
795 trace_ppc_excp_inval(env
->nip
);
798 case POWERPC_EXCP_PRIV
:
801 case POWERPC_EXCP_TRAP
:
805 /* Should never occur */
806 cpu_abort(env_cpu(env
), "Invalid program exception %d. Aborting\n",
811 case POWERPC_EXCP_SYSCALL
: /* System call exception */
813 int lev
= env
->error_code
;
815 if (lev
== 1 && cpu
->vhyp
) {
822 * We need to correct the NIP which in this case is supposed
823 * to point to the next instruction
828 * The Virtual Open Firmware (VOF) relies on the 'sc 1'
829 * instruction to communicate with QEMU. The pegasos2 machine
830 * uses VOF and the 7xx CPUs, so although the 7xx don't have
831 * HV mode, we need to keep hypercall support.
833 if (lev
== 1 && cpu
->vhyp
) {
834 cpu
->vhyp_class
->hypercall(cpu
->vhyp
, cpu
);
835 powerpc_reset_excp_state(cpu
);
841 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
842 case POWERPC_EXCP_DECR
: /* Decrementer exception */
844 case POWERPC_EXCP_RESET
: /* System reset exception */
845 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
846 cpu_abort(env_cpu(env
),
847 "Trying to deliver power-saving system reset exception "
848 "%d with no HV support\n", excp
);
851 case POWERPC_EXCP_TRACE
: /* Trace exception */
853 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
854 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
855 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
856 ppc_excp_debug_sw_tlb(env
, excp
);
857 msr
|= env
->crf
[0] << 28;
858 msr
|= env
->error_code
; /* key, D/I, S/L bits */
859 /* Set way using a LRU mechanism */
860 msr
|= ((env
->last_way
+ 1) & (env
->nb_ways
- 1)) << 17;
862 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
863 case POWERPC_EXCP_SMI
: /* System management interrupt */
864 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
865 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor interrupt */
866 cpu_abort(env_cpu(env
), "%s exception not implemented\n",
867 powerpc_excp_name(excp
));
870 cpu_abort(env_cpu(env
), "Invalid PowerPC exception %d. Aborting\n",
875 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
876 new_msr
|= (target_ulong
)1 << MSR_LE
;
878 env
->spr
[SPR_SRR0
] = env
->nip
;
879 env
->spr
[SPR_SRR1
] = msr
;
880 powerpc_set_excp_state(cpu
, vector
, new_msr
);
883 static void powerpc_excp_74xx(PowerPCCPU
*cpu
, int excp
)
885 CPUPPCState
*env
= &cpu
->env
;
886 target_ulong msr
, new_msr
, vector
;
888 /* new srr1 value excluding must-be-zero bits */
889 msr
= env
->msr
& ~0x783f0000ULL
;
891 /* new interrupt handler msr preserves ME unless explicitly overridden */
892 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
894 /* HV emu assistance interrupt only exists on server arch 2.05 or later */
895 if (excp
== POWERPC_EXCP_HV_EMU
) {
896 excp
= POWERPC_EXCP_PROGRAM
;
899 vector
= env
->excp_vectors
[excp
];
900 if (vector
== (target_ulong
)-1ULL) {
901 cpu_abort(env_cpu(env
),
902 "Raised an exception without defined vector %d\n", excp
);
904 vector
|= env
->excp_prefix
;
907 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
908 powerpc_mcheck_checkstop(env
);
909 /* machine check exceptions don't have ME set */
910 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
912 case POWERPC_EXCP_DSI
: /* Data storage exception */
913 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
915 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
916 trace_ppc_excp_isi(msr
, env
->nip
);
917 msr
|= env
->error_code
;
919 case POWERPC_EXCP_EXTERNAL
: /* External input */
921 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
922 /* Get rS/rD and rA from faulting opcode */
924 * Note: the opcode fields will not be set properly for a
925 * direct store load/store, but nobody cares as nobody
926 * actually uses direct store segments.
928 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
930 case POWERPC_EXCP_PROGRAM
: /* Program exception */
931 switch (env
->error_code
& ~0xF) {
932 case POWERPC_EXCP_FP
:
933 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
934 trace_ppc_excp_fp_ignore();
935 powerpc_reset_excp_state(cpu
);
939 * NIP always points to the faulting instruction for FP exceptions,
940 * so always use store_next and claim we are precise in the MSR.
944 case POWERPC_EXCP_INVAL
:
945 trace_ppc_excp_inval(env
->nip
);
948 case POWERPC_EXCP_PRIV
:
951 case POWERPC_EXCP_TRAP
:
955 /* Should never occur */
956 cpu_abort(env_cpu(env
), "Invalid program exception %d. Aborting\n",
961 case POWERPC_EXCP_SYSCALL
: /* System call exception */
963 int lev
= env
->error_code
;
965 if (lev
== 1 && cpu
->vhyp
) {
972 * We need to correct the NIP which in this case is supposed
973 * to point to the next instruction
978 * The Virtual Open Firmware (VOF) relies on the 'sc 1'
979 * instruction to communicate with QEMU. The pegasos2 machine
980 * uses VOF and the 74xx CPUs, so although the 74xx don't have
981 * HV mode, we need to keep hypercall support.
983 if (lev
== 1 && cpu
->vhyp
) {
984 cpu
->vhyp_class
->hypercall(cpu
->vhyp
, cpu
);
985 powerpc_reset_excp_state(cpu
);
991 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
992 case POWERPC_EXCP_DECR
: /* Decrementer exception */
994 case POWERPC_EXCP_RESET
: /* System reset exception */
995 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
996 cpu_abort(env_cpu(env
),
997 "Trying to deliver power-saving system reset "
998 "exception %d with no HV support\n", excp
);
1001 case POWERPC_EXCP_TRACE
: /* Trace exception */
1003 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
1005 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
1006 case POWERPC_EXCP_SMI
: /* System management interrupt */
1007 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
1008 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor interrupt */
1009 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
1010 cpu_abort(env_cpu(env
), "%s exception not implemented\n",
1011 powerpc_excp_name(excp
));
1014 cpu_abort(env_cpu(env
), "Invalid PowerPC exception %d. Aborting\n",
1019 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
1020 new_msr
|= (target_ulong
)1 << MSR_LE
;
1022 env
->spr
[SPR_SRR0
] = env
->nip
;
1023 env
->spr
[SPR_SRR1
] = msr
;
1024 powerpc_set_excp_state(cpu
, vector
, new_msr
);
1027 static void powerpc_excp_booke(PowerPCCPU
*cpu
, int excp
)
1029 CPUPPCState
*env
= &cpu
->env
;
1030 target_ulong msr
, new_msr
, vector
;
1031 int srr0
= SPR_SRR0
, srr1
= SPR_SRR1
;
1034 * Book E does not play games with certain bits of xSRR1 being MSR save
1035 * bits and others being error status. xSRR1 is the old MSR, period.
1039 /* new interrupt handler msr preserves ME unless explicitly overridden */
1040 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
1042 /* HV emu assistance interrupt only exists on server arch 2.05 or later */
1043 if (excp
== POWERPC_EXCP_HV_EMU
) {
1044 excp
= POWERPC_EXCP_PROGRAM
;
1049 * SPEU and VPU share the same IVOR but they exist in different
1050 * processors. SPEU is e500v1/2 only and VPU is e6500 only.
1052 if (excp
== POWERPC_EXCP_VPU
) {
1053 excp
= POWERPC_EXCP_SPEU
;
1057 vector
= env
->excp_vectors
[excp
];
1058 if (vector
== (target_ulong
)-1ULL) {
1059 cpu_abort(env_cpu(env
),
1060 "Raised an exception without defined vector %d\n", excp
);
1062 vector
|= env
->excp_prefix
;
1065 case POWERPC_EXCP_CRITICAL
: /* Critical input */
1066 srr0
= SPR_BOOKE_CSRR0
;
1067 srr1
= SPR_BOOKE_CSRR1
;
1069 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
1070 powerpc_mcheck_checkstop(env
);
1071 /* machine check exceptions don't have ME set */
1072 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
1074 /* FIXME: choose one or the other based on CPU type */
1075 srr0
= SPR_BOOKE_MCSRR0
;
1076 srr1
= SPR_BOOKE_MCSRR1
;
1078 env
->spr
[SPR_BOOKE_CSRR0
] = env
->nip
;
1079 env
->spr
[SPR_BOOKE_CSRR1
] = msr
;
1082 case POWERPC_EXCP_DSI
: /* Data storage exception */
1083 trace_ppc_excp_dsi(env
->spr
[SPR_BOOKE_ESR
], env
->spr
[SPR_BOOKE_DEAR
]);
1085 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
1086 trace_ppc_excp_isi(msr
, env
->nip
);
1088 case POWERPC_EXCP_EXTERNAL
: /* External input */
1089 if (env
->mpic_proxy
) {
1090 CPUState
*cs
= env_cpu(env
);
1091 /* IACK the IRQ on delivery */
1092 env
->spr
[SPR_BOOKE_EPR
] = ldl_phys(cs
->as
, env
->mpic_iack
);
1095 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
1097 case POWERPC_EXCP_PROGRAM
: /* Program exception */
1098 switch (env
->error_code
& ~0xF) {
1099 case POWERPC_EXCP_FP
:
1100 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
1101 trace_ppc_excp_fp_ignore();
1102 powerpc_reset_excp_state(cpu
);
1106 * NIP always points to the faulting instruction for FP exceptions,
1107 * so always use store_next and claim we are precise in the MSR.
1110 env
->spr
[SPR_BOOKE_ESR
] = ESR_FP
;
1112 case POWERPC_EXCP_INVAL
:
1113 trace_ppc_excp_inval(env
->nip
);
1115 env
->spr
[SPR_BOOKE_ESR
] = ESR_PIL
;
1117 case POWERPC_EXCP_PRIV
:
1119 env
->spr
[SPR_BOOKE_ESR
] = ESR_PPR
;
1121 case POWERPC_EXCP_TRAP
:
1123 env
->spr
[SPR_BOOKE_ESR
] = ESR_PTR
;
1126 /* Should never occur */
1127 cpu_abort(env_cpu(env
), "Invalid program exception %d. Aborting\n",
1132 case POWERPC_EXCP_SYSCALL
: /* System call exception */
1136 * We need to correct the NIP which in this case is supposed
1137 * to point to the next instruction
1141 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
1142 case POWERPC_EXCP_APU
: /* Auxiliary processor unavailable */
1143 case POWERPC_EXCP_DECR
: /* Decrementer exception */
1145 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
1147 trace_ppc_excp_print("FIT");
1149 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
1150 trace_ppc_excp_print("WDT");
1151 srr0
= SPR_BOOKE_CSRR0
;
1152 srr1
= SPR_BOOKE_CSRR1
;
1154 case POWERPC_EXCP_DTLB
: /* Data TLB error */
1155 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
1157 case POWERPC_EXCP_DEBUG
: /* Debug interrupt */
1158 if (env
->flags
& POWERPC_FLAG_DE
) {
1159 /* FIXME: choose one or the other based on CPU type */
1160 srr0
= SPR_BOOKE_DSRR0
;
1161 srr1
= SPR_BOOKE_DSRR1
;
1163 env
->spr
[SPR_BOOKE_CSRR0
] = env
->nip
;
1164 env
->spr
[SPR_BOOKE_CSRR1
] = msr
;
1166 /* DBSR already modified by caller */
1168 cpu_abort(env_cpu(env
),
1169 "Debug exception triggered on unsupported model\n");
1172 case POWERPC_EXCP_SPEU
: /* SPE/embedded floating-point unavailable/VPU */
1173 env
->spr
[SPR_BOOKE_ESR
] = ESR_SPV
;
1175 case POWERPC_EXCP_DOORI
: /* Embedded doorbell interrupt */
1177 case POWERPC_EXCP_DOORCI
: /* Embedded doorbell critical interrupt */
1178 srr0
= SPR_BOOKE_CSRR0
;
1179 srr1
= SPR_BOOKE_CSRR1
;
1181 case POWERPC_EXCP_RESET
: /* System reset exception */
1182 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
1183 cpu_abort(env_cpu(env
),
1184 "Trying to deliver power-saving system reset "
1185 "exception %d with no HV support\n", excp
);
1188 case POWERPC_EXCP_EFPDI
: /* Embedded floating-point data interrupt */
1189 case POWERPC_EXCP_EFPRI
: /* Embedded floating-point round interrupt */
1190 cpu_abort(env_cpu(env
), "%s exception not implemented\n",
1191 powerpc_excp_name(excp
));
1194 cpu_abort(env_cpu(env
), "Invalid PowerPC exception %d. Aborting\n",
1200 if (env
->spr
[SPR_BOOKE_EPCR
] & EPCR_ICM
) {
1201 /* Cat.64-bit: EPCR.ICM is copied to MSR.CM */
1202 new_msr
|= (target_ulong
)1 << MSR_CM
;
1204 vector
= (uint32_t)vector
;
1208 env
->spr
[srr0
] = env
->nip
;
1209 env
->spr
[srr1
] = msr
;
1210 powerpc_set_excp_state(cpu
, vector
, new_msr
);
1214 * When running a nested HV guest under vhyp, external interrupts are
1215 * delivered as HVIRT.
1217 static bool books_vhyp_promotes_external_to_hvirt(PowerPCCPU
*cpu
)
1220 return vhyp_cpu_in_nested(cpu
);
1227 * When running under vhyp, hcalls are always intercepted and sent to the
1228 * vhc->hypercall handler.
1230 static bool books_vhyp_handles_hcall(PowerPCCPU
*cpu
)
1233 return !vhyp_cpu_in_nested(cpu
);
1239 * When running a nested KVM HV guest under vhyp, HV exceptions are not
1240 * delivered to the guest (because there is no concept of HV support), but
1241 * rather they are sent to the vhyp to exit from the L2 back to the L1 and
1242 * return from the H_ENTER_NESTED hypercall.
1244 static bool books_vhyp_handles_hv_excp(PowerPCCPU
*cpu
)
1247 return vhyp_cpu_in_nested(cpu
);
1253 static bool is_prefix_insn(CPUPPCState
*env
, uint32_t insn
)
1255 if (!(env
->insns_flags2
& PPC2_ISA310
)) {
1258 return ((insn
& 0xfc000000) == 0x04000000);
1261 static bool is_prefix_insn_excp(PowerPCCPU
*cpu
, int excp
)
1263 CPUPPCState
*env
= &cpu
->env
;
1265 if (!(env
->insns_flags2
& PPC2_ISA310
)) {
1269 if (!tcg_enabled()) {
1271 * This does not load instructions and set the prefix bit correctly
1272 * for injected interrupts with KVM. That may have to be discovered
1273 * and set by the KVM layer before injecting.
1279 case POWERPC_EXCP_MCHECK
:
1280 if (!(env
->error_code
& PPC_BIT(42))) {
1282 * Fetch attempt caused a machine check, so attempting to fetch
1283 * again would cause a recursive machine check.
1288 case POWERPC_EXCP_HDSI
:
1289 /* HDSI PRTABLE_FAULT has the originating access type in error_code */
1290 if ((env
->spr
[SPR_HDSISR
] & DSISR_PRTABLE_FAULT
) &&
1291 (env
->error_code
== MMU_INST_FETCH
)) {
1293 * Fetch failed due to partition scope translation, so prefix
1294 * indication is not relevant (and attempting to load the
1295 * instruction at NIP would cause recursive faults with the same
1302 case POWERPC_EXCP_DSI
:
1303 case POWERPC_EXCP_DSEG
:
1304 case POWERPC_EXCP_ALIGN
:
1305 case POWERPC_EXCP_PROGRAM
:
1306 case POWERPC_EXCP_FPU
:
1307 case POWERPC_EXCP_TRACE
:
1308 case POWERPC_EXCP_HV_EMU
:
1309 case POWERPC_EXCP_VPU
:
1310 case POWERPC_EXCP_VSXU
:
1311 case POWERPC_EXCP_FU
:
1312 case POWERPC_EXCP_HV_FU
:
1318 return is_prefix_insn(env
, ppc_ldl_code(env
, env
->nip
));
1321 static bool is_prefix_insn_excp(PowerPCCPU
*cpu
, int excp
)
1327 static void powerpc_excp_books(PowerPCCPU
*cpu
, int excp
)
1329 CPUPPCState
*env
= &cpu
->env
;
1330 target_ulong msr
, new_msr
, vector
;
1331 int srr0
= SPR_SRR0
, srr1
= SPR_SRR1
, lev
= -1;
1333 /* new srr1 value excluding must-be-zero bits */
1334 msr
= env
->msr
& ~0x783f0000ULL
;
1337 * new interrupt handler msr preserves HV and ME unless explicitly
1340 new_msr
= env
->msr
& (((target_ulong
)1 << MSR_ME
) | MSR_HVB
);
1343 * check for special resume at 0x100 from doze/nap/sleep/winkle on
1346 if (env
->resume_as_sreset
) {
1347 excp
= powerpc_reset_wakeup(env
, excp
, &msr
);
1351 * We don't want to generate a Hypervisor Emulation Assistance
1352 * Interrupt if we don't have HVB in msr_mask (PAPR mode),
1353 * unless running a nested-hv guest, in which case the L1
1354 * kernel wants the interrupt.
1356 if (excp
== POWERPC_EXCP_HV_EMU
&& !(env
->msr_mask
& MSR_HVB
) &&
1357 !books_vhyp_handles_hv_excp(cpu
)) {
1358 excp
= POWERPC_EXCP_PROGRAM
;
1361 vector
= env
->excp_vectors
[excp
];
1362 if (vector
== (target_ulong
)-1ULL) {
1363 cpu_abort(env_cpu(env
),
1364 "Raised an exception without defined vector %d\n", excp
);
1366 vector
|= env
->excp_prefix
;
1368 if (is_prefix_insn_excp(cpu
, excp
)) {
1373 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
1374 powerpc_mcheck_checkstop(env
);
1375 if (env
->msr_mask
& MSR_HVB
) {
1377 * ISA specifies HV, but can be delivered to guest with HV
1378 * clear (e.g., see FWNMI in PAPR).
1380 new_msr
|= (target_ulong
)MSR_HVB
;
1382 /* HV machine check exceptions don't have ME set */
1383 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
1386 msr
|= env
->error_code
;
1389 case POWERPC_EXCP_DSI
: /* Data storage exception */
1390 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
1392 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
1393 trace_ppc_excp_isi(msr
, env
->nip
);
1394 msr
|= env
->error_code
;
1396 case POWERPC_EXCP_EXTERNAL
: /* External input */
1400 /* LPES0 is only taken into consideration if we support HV mode */
1401 if (!env
->has_hv_mode
) {
1404 lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1406 new_msr
|= (target_ulong
)MSR_HVB
;
1407 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1413 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
1414 /* Optional DSISR update was removed from ISA v3.0 */
1415 if (!(env
->insns_flags2
& PPC2_ISA300
)) {
1416 /* Get rS/rD and rA from faulting opcode */
1418 * Note: the opcode fields will not be set properly for a
1419 * direct store load/store, but nobody cares as nobody
1420 * actually uses direct store segments.
1422 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
1425 case POWERPC_EXCP_PROGRAM
: /* Program exception */
1426 switch (env
->error_code
& ~0xF) {
1427 case POWERPC_EXCP_FP
:
1428 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
1429 trace_ppc_excp_fp_ignore();
1430 powerpc_reset_excp_state(cpu
);
1434 * NIP always points to the faulting instruction for FP exceptions,
1435 * so always use store_next and claim we are precise in the MSR.
1439 case POWERPC_EXCP_INVAL
:
1440 trace_ppc_excp_inval(env
->nip
);
1443 case POWERPC_EXCP_PRIV
:
1446 case POWERPC_EXCP_TRAP
:
1450 /* Should never occur */
1451 cpu_abort(env_cpu(env
), "Invalid program exception %d. Aborting\n",
1456 case POWERPC_EXCP_SYSCALL
: /* System call exception */
1457 lev
= env
->error_code
;
1459 if (lev
== 1 && cpu
->vhyp
) {
1466 * We need to correct the NIP which in this case is supposed
1467 * to point to the next instruction
1471 /* "PAPR mode" built-in hypercall emulation */
1472 if (lev
== 1 && books_vhyp_handles_hcall(cpu
)) {
1473 cpu
->vhyp_class
->hypercall(cpu
->vhyp
, cpu
);
1474 powerpc_reset_excp_state(cpu
);
1477 if (env
->insns_flags2
& PPC2_ISA310
) {
1478 /* ISAv3.1 puts LEV into SRR1 */
1482 new_msr
|= (target_ulong
)MSR_HVB
;
1485 case POWERPC_EXCP_SYSCALL_VECTORED
: /* scv exception */
1486 lev
= env
->error_code
;
1489 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_EE
);
1490 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1492 vector
+= lev
* 0x20;
1497 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
1498 case POWERPC_EXCP_DECR
: /* Decrementer exception */
1500 case POWERPC_EXCP_RESET
: /* System reset exception */
1501 /* A power-saving exception sets ME, otherwise it is unchanged */
1502 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
1503 /* indicate that we resumed from power save mode */
1505 new_msr
|= ((target_ulong
)1 << MSR_ME
);
1507 if (env
->msr_mask
& MSR_HVB
) {
1509 * ISA specifies HV, but can be delivered to guest with HV
1510 * clear (e.g., see FWNMI in PAPR, NMI injection in QEMU).
1512 new_msr
|= (target_ulong
)MSR_HVB
;
1514 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
1515 cpu_abort(env_cpu(env
),
1516 "Trying to deliver power-saving system reset "
1517 "exception %d with no HV support\n", excp
);
1521 case POWERPC_EXCP_TRACE
: /* Trace exception */
1522 msr
|= env
->error_code
;
1524 case POWERPC_EXCP_DSEG
: /* Data segment exception */
1525 case POWERPC_EXCP_ISEG
: /* Instruction segment exception */
1526 case POWERPC_EXCP_SDOOR
: /* Doorbell interrupt */
1527 case POWERPC_EXCP_PERFM
: /* Performance monitor interrupt */
1529 case POWERPC_EXCP_HISI
: /* Hypervisor instruction storage exception */
1530 msr
|= env
->error_code
;
1532 case POWERPC_EXCP_HDECR
: /* Hypervisor decrementer exception */
1533 case POWERPC_EXCP_HDSI
: /* Hypervisor data storage exception */
1534 case POWERPC_EXCP_SDOOR_HV
: /* Hypervisor Doorbell interrupt */
1535 case POWERPC_EXCP_HVIRT
: /* Hypervisor virtualization */
1538 new_msr
|= (target_ulong
)MSR_HVB
;
1539 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1542 case POWERPC_EXCP_HV_EMU
: {
1543 uint32_t insn
= ppc_ldl_code(env
, env
->nip
);
1544 env
->spr
[SPR_HEIR
] = insn
;
1545 if (is_prefix_insn(env
, insn
)) {
1546 uint32_t insn2
= ppc_ldl_code(env
, env
->nip
+ 4);
1547 env
->spr
[SPR_HEIR
] <<= 32;
1548 env
->spr
[SPR_HEIR
] |= insn2
;
1552 new_msr
|= (target_ulong
)MSR_HVB
;
1553 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1557 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
1558 case POWERPC_EXCP_VSXU
: /* VSX unavailable exception */
1559 case POWERPC_EXCP_FU
: /* Facility unavailable exception */
1560 env
->spr
[SPR_FSCR
] |= ((target_ulong
)env
->error_code
<< 56);
1562 case POWERPC_EXCP_HV_FU
: /* Hypervisor Facility Unavailable Exception */
1563 env
->spr
[SPR_HFSCR
] |= ((target_ulong
)env
->error_code
<< FSCR_IC_POS
);
1566 new_msr
|= (target_ulong
)MSR_HVB
;
1567 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1569 case POWERPC_EXCP_PERFM_EBB
: /* Performance Monitor EBB Exception */
1570 case POWERPC_EXCP_EXTERNAL_EBB
: /* External EBB Exception */
1571 env
->spr
[SPR_BESCR
] &= ~BESCR_GE
;
1574 * Save NIP for rfebb insn in SPR_EBBRR. Next nip is
1575 * stored in the EBB Handler SPR_EBBHR.
1577 env
->spr
[SPR_EBBRR
] = env
->nip
;
1578 powerpc_set_excp_state(cpu
, env
->spr
[SPR_EBBHR
], env
->msr
);
1581 * This exception is handled in userspace. No need to proceed.
1584 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
1585 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
1586 case POWERPC_EXCP_MAINT
: /* Maintenance exception */
1587 case POWERPC_EXCP_HV_MAINT
: /* Hypervisor Maintenance exception */
1588 cpu_abort(env_cpu(env
), "%s exception not implemented\n",
1589 powerpc_excp_name(excp
));
1592 cpu_abort(env_cpu(env
), "Invalid PowerPC exception %d. Aborting\n",
1597 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
1598 new_msr
|= (target_ulong
)1 << MSR_LE
;
1600 new_msr
|= (target_ulong
)1 << MSR_SF
;
1602 if (excp
!= POWERPC_EXCP_SYSCALL_VECTORED
) {
1603 env
->spr
[srr0
] = env
->nip
;
1604 env
->spr
[srr1
] = msr
;
1607 if ((new_msr
& MSR_HVB
) && books_vhyp_handles_hv_excp(cpu
)) {
1608 /* Deliver interrupt to L1 by returning from the H_ENTER_NESTED call */
1609 cpu
->vhyp_class
->deliver_hv_excp(cpu
, excp
);
1610 powerpc_reset_excp_state(cpu
);
1613 if (!(env
->msr_mask
& MSR_HVB
) && srr0
== SPR_HSRR0
) {
1614 cpu_abort(env_cpu(env
), "Trying to deliver HV exception (HSRR) %d "
1615 "with no HV support\n", excp
);
1617 /* This can update new_msr and vector if AIL applies */
1618 ppc_excp_apply_ail(cpu
, excp
, msr
, &new_msr
, &vector
);
1619 powerpc_set_excp_state(cpu
, vector
, new_msr
);
1623 static inline void powerpc_excp_books(PowerPCCPU
*cpu
, int excp
)
1625 g_assert_not_reached();
1627 #endif /* TARGET_PPC64 */
1629 static void powerpc_excp(PowerPCCPU
*cpu
, int excp
)
1631 CPUPPCState
*env
= &cpu
->env
;
1633 if (excp
<= POWERPC_EXCP_NONE
|| excp
>= POWERPC_EXCP_NB
) {
1634 cpu_abort(env_cpu(env
), "Invalid PowerPC exception %d. Aborting\n",
1638 qemu_log_mask(CPU_LOG_INT
, "Raise exception at " TARGET_FMT_lx
1639 " => %s (%d) error=%02x\n", env
->nip
, powerpc_excp_name(excp
),
1640 excp
, env
->error_code
);
1641 env
->excp_stats
[excp
]++;
1643 switch (env
->excp_model
) {
1644 case POWERPC_EXCP_40x
:
1645 powerpc_excp_40x(cpu
, excp
);
1647 case POWERPC_EXCP_6xx
:
1648 powerpc_excp_6xx(cpu
, excp
);
1650 case POWERPC_EXCP_7xx
:
1651 powerpc_excp_7xx(cpu
, excp
);
1653 case POWERPC_EXCP_74xx
:
1654 powerpc_excp_74xx(cpu
, excp
);
1656 case POWERPC_EXCP_BOOKE
:
1657 powerpc_excp_booke(cpu
, excp
);
1659 case POWERPC_EXCP_970
:
1660 case POWERPC_EXCP_POWER7
:
1661 case POWERPC_EXCP_POWER8
:
1662 case POWERPC_EXCP_POWER9
:
1663 case POWERPC_EXCP_POWER10
:
1664 powerpc_excp_books(cpu
, excp
);
1667 g_assert_not_reached();
1671 void ppc_cpu_do_interrupt(CPUState
*cs
)
1673 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1675 powerpc_excp(cpu
, cs
->exception_index
);
1679 #define P7_UNUSED_INTERRUPTS \
1680 (PPC_INTERRUPT_RESET | PPC_INTERRUPT_HVIRT | PPC_INTERRUPT_CEXT | \
1681 PPC_INTERRUPT_WDT | PPC_INTERRUPT_CDOORBELL | PPC_INTERRUPT_FIT | \
1682 PPC_INTERRUPT_PIT | PPC_INTERRUPT_DOORBELL | PPC_INTERRUPT_HDOORBELL | \
1683 PPC_INTERRUPT_THERM | PPC_INTERRUPT_EBB)
1685 static int p7_interrupt_powersave(CPUPPCState
*env
)
1687 if ((env
->pending_interrupts
& PPC_INTERRUPT_EXT
) &&
1688 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE0
)) {
1689 return PPC_INTERRUPT_EXT
;
1691 if ((env
->pending_interrupts
& PPC_INTERRUPT_DECR
) &&
1692 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE1
)) {
1693 return PPC_INTERRUPT_DECR
;
1695 if ((env
->pending_interrupts
& PPC_INTERRUPT_MCK
) &&
1696 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE2
)) {
1697 return PPC_INTERRUPT_MCK
;
1699 if ((env
->pending_interrupts
& PPC_INTERRUPT_HMI
) &&
1700 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE2
)) {
1701 return PPC_INTERRUPT_HMI
;
1703 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
1704 return PPC_INTERRUPT_RESET
;
1709 static int p7_next_unmasked_interrupt(CPUPPCState
*env
)
1711 CPUState
*cs
= env_cpu(env
);
1713 /* Ignore MSR[EE] when coming out of some power management states */
1714 bool msr_ee
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
1716 assert((env
->pending_interrupts
& P7_UNUSED_INTERRUPTS
) == 0);
1719 /* LPCR[PECE] controls which interrupts can exit power-saving mode */
1720 return p7_interrupt_powersave(env
);
1723 /* Machine check exception */
1724 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1725 return PPC_INTERRUPT_MCK
;
1728 /* Hypervisor decrementer exception */
1729 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
1730 /* LPCR will be clear when not supported so this will work */
1731 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
1732 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
1733 /* HDEC clears on delivery */
1734 return PPC_INTERRUPT_HDECR
;
1738 /* External interrupt can ignore MSR:EE under some circumstances */
1739 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
1740 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1741 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1742 /* HEIC blocks delivery to the hypervisor */
1743 if ((msr_ee
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
1744 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
1745 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
1746 return PPC_INTERRUPT_EXT
;
1750 /* Decrementer exception */
1751 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
1752 return PPC_INTERRUPT_DECR
;
1754 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
1755 return PPC_INTERRUPT_PERFM
;
1762 #define P8_UNUSED_INTERRUPTS \
1763 (PPC_INTERRUPT_RESET | PPC_INTERRUPT_DEBUG | PPC_INTERRUPT_HVIRT | \
1764 PPC_INTERRUPT_CEXT | PPC_INTERRUPT_WDT | PPC_INTERRUPT_CDOORBELL | \
1765 PPC_INTERRUPT_FIT | PPC_INTERRUPT_PIT | PPC_INTERRUPT_THERM)
1767 static int p8_interrupt_powersave(CPUPPCState
*env
)
1769 if ((env
->pending_interrupts
& PPC_INTERRUPT_EXT
) &&
1770 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE2
)) {
1771 return PPC_INTERRUPT_EXT
;
1773 if ((env
->pending_interrupts
& PPC_INTERRUPT_DECR
) &&
1774 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE3
)) {
1775 return PPC_INTERRUPT_DECR
;
1777 if ((env
->pending_interrupts
& PPC_INTERRUPT_MCK
) &&
1778 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE4
)) {
1779 return PPC_INTERRUPT_MCK
;
1781 if ((env
->pending_interrupts
& PPC_INTERRUPT_HMI
) &&
1782 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE4
)) {
1783 return PPC_INTERRUPT_HMI
;
1785 if ((env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) &&
1786 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE0
)) {
1787 return PPC_INTERRUPT_DOORBELL
;
1789 if ((env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) &&
1790 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE1
)) {
1791 return PPC_INTERRUPT_HDOORBELL
;
1793 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
1794 return PPC_INTERRUPT_RESET
;
1799 static int p8_next_unmasked_interrupt(CPUPPCState
*env
)
1801 CPUState
*cs
= env_cpu(env
);
1803 /* Ignore MSR[EE] when coming out of some power management states */
1804 bool msr_ee
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
1806 assert((env
->pending_interrupts
& P8_UNUSED_INTERRUPTS
) == 0);
1809 /* LPCR[PECE] controls which interrupts can exit power-saving mode */
1810 return p8_interrupt_powersave(env
);
1813 /* Machine check exception */
1814 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1815 return PPC_INTERRUPT_MCK
;
1818 /* Hypervisor decrementer exception */
1819 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
1820 /* LPCR will be clear when not supported so this will work */
1821 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
1822 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
1823 /* HDEC clears on delivery */
1824 return PPC_INTERRUPT_HDECR
;
1828 /* External interrupt can ignore MSR:EE under some circumstances */
1829 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
1830 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1831 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1832 /* HEIC blocks delivery to the hypervisor */
1833 if ((msr_ee
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
1834 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
1835 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
1836 return PPC_INTERRUPT_EXT
;
1840 /* Decrementer exception */
1841 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
1842 return PPC_INTERRUPT_DECR
;
1844 if (env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) {
1845 return PPC_INTERRUPT_DOORBELL
;
1847 if (env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) {
1848 return PPC_INTERRUPT_HDOORBELL
;
1850 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
1851 return PPC_INTERRUPT_PERFM
;
1854 if (env
->pending_interrupts
& PPC_INTERRUPT_EBB
) {
1856 * EBB exception must be taken in problem state and
1857 * with BESCR_GE set.
1859 if (FIELD_EX64(env
->msr
, MSR
, PR
) &&
1860 (env
->spr
[SPR_BESCR
] & BESCR_GE
)) {
1861 return PPC_INTERRUPT_EBB
;
1869 #define P9_UNUSED_INTERRUPTS \
1870 (PPC_INTERRUPT_RESET | PPC_INTERRUPT_DEBUG | PPC_INTERRUPT_CEXT | \
1871 PPC_INTERRUPT_WDT | PPC_INTERRUPT_CDOORBELL | PPC_INTERRUPT_FIT | \
1872 PPC_INTERRUPT_PIT | PPC_INTERRUPT_THERM)
1874 static int p9_interrupt_powersave(CPUPPCState
*env
)
1876 /* External Exception */
1877 if ((env
->pending_interrupts
& PPC_INTERRUPT_EXT
) &&
1878 (env
->spr
[SPR_LPCR
] & LPCR_EEE
)) {
1879 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1880 if (!heic
|| !FIELD_EX64_HV(env
->msr
) ||
1881 FIELD_EX64(env
->msr
, MSR
, PR
)) {
1882 return PPC_INTERRUPT_EXT
;
1885 /* Decrementer Exception */
1886 if ((env
->pending_interrupts
& PPC_INTERRUPT_DECR
) &&
1887 (env
->spr
[SPR_LPCR
] & LPCR_DEE
)) {
1888 return PPC_INTERRUPT_DECR
;
1890 /* Machine Check or Hypervisor Maintenance Exception */
1891 if (env
->spr
[SPR_LPCR
] & LPCR_OEE
) {
1892 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1893 return PPC_INTERRUPT_MCK
;
1895 if (env
->pending_interrupts
& PPC_INTERRUPT_HMI
) {
1896 return PPC_INTERRUPT_HMI
;
1899 /* Privileged Doorbell Exception */
1900 if ((env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) &&
1901 (env
->spr
[SPR_LPCR
] & LPCR_PDEE
)) {
1902 return PPC_INTERRUPT_DOORBELL
;
1904 /* Hypervisor Doorbell Exception */
1905 if ((env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) &&
1906 (env
->spr
[SPR_LPCR
] & LPCR_HDEE
)) {
1907 return PPC_INTERRUPT_HDOORBELL
;
1909 /* Hypervisor virtualization exception */
1910 if ((env
->pending_interrupts
& PPC_INTERRUPT_HVIRT
) &&
1911 (env
->spr
[SPR_LPCR
] & LPCR_HVEE
)) {
1912 return PPC_INTERRUPT_HVIRT
;
1914 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
1915 return PPC_INTERRUPT_RESET
;
1920 static int p9_next_unmasked_interrupt(CPUPPCState
*env
)
1922 CPUState
*cs
= env_cpu(env
);
1924 /* Ignore MSR[EE] when coming out of some power management states */
1925 bool msr_ee
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
1927 assert((env
->pending_interrupts
& P9_UNUSED_INTERRUPTS
) == 0);
1930 if (env
->spr
[SPR_PSSCR
] & PSSCR_EC
) {
1932 * When PSSCR[EC] is set, LPCR[PECE] controls which interrupts can
1933 * wakeup the processor
1935 return p9_interrupt_powersave(env
);
1938 * When it's clear, any system-caused exception exits power-saving
1939 * mode, even the ones that gate on MSR[EE].
1945 /* Machine check exception */
1946 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1947 return PPC_INTERRUPT_MCK
;
1950 /* Hypervisor decrementer exception */
1951 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
1952 /* LPCR will be clear when not supported so this will work */
1953 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
1954 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
1955 /* HDEC clears on delivery */
1956 return PPC_INTERRUPT_HDECR
;
1960 /* Hypervisor virtualization interrupt */
1961 if (env
->pending_interrupts
& PPC_INTERRUPT_HVIRT
) {
1962 /* LPCR will be clear when not supported so this will work */
1963 bool hvice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HVICE
);
1964 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hvice
) {
1965 return PPC_INTERRUPT_HVIRT
;
1969 /* External interrupt can ignore MSR:EE under some circumstances */
1970 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
1971 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1972 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1973 /* HEIC blocks delivery to the hypervisor */
1974 if ((msr_ee
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
1975 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
1976 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
1977 return PPC_INTERRUPT_EXT
;
1981 /* Decrementer exception */
1982 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
1983 return PPC_INTERRUPT_DECR
;
1985 if (env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) {
1986 return PPC_INTERRUPT_DOORBELL
;
1988 if (env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) {
1989 return PPC_INTERRUPT_HDOORBELL
;
1991 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
1992 return PPC_INTERRUPT_PERFM
;
1995 if (env
->pending_interrupts
& PPC_INTERRUPT_EBB
) {
1997 * EBB exception must be taken in problem state and
1998 * with BESCR_GE set.
2000 if (FIELD_EX64(env
->msr
, MSR
, PR
) &&
2001 (env
->spr
[SPR_BESCR
] & BESCR_GE
)) {
2002 return PPC_INTERRUPT_EBB
;
2009 #endif /* TARGET_PPC64 */
2011 static int ppc_next_unmasked_interrupt(CPUPPCState
*env
)
2014 switch (env
->excp_model
) {
2015 case POWERPC_EXCP_POWER7
:
2016 return p7_next_unmasked_interrupt(env
);
2017 case POWERPC_EXCP_POWER8
:
2018 return p8_next_unmasked_interrupt(env
);
2019 case POWERPC_EXCP_POWER9
:
2020 case POWERPC_EXCP_POWER10
:
2021 return p9_next_unmasked_interrupt(env
);
2028 /* External reset */
2029 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
2030 return PPC_INTERRUPT_RESET
;
2032 /* Machine check exception */
2033 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
2034 return PPC_INTERRUPT_MCK
;
2037 /* External debug exception */
2038 if (env
->pending_interrupts
& PPC_INTERRUPT_DEBUG
) {
2039 return PPC_INTERRUPT_DEBUG
;
2044 * For interrupts that gate on MSR:EE, we need to do something a
2045 * bit more subtle, as we need to let them through even when EE is
2046 * clear when coming out of some power management states (in order
2047 * for them to become a 0x100).
2049 async_deliver
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
2051 /* Hypervisor decrementer exception */
2052 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
2053 /* LPCR will be clear when not supported so this will work */
2054 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
2055 if ((async_deliver
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
2056 /* HDEC clears on delivery */
2057 return PPC_INTERRUPT_HDECR
;
2061 /* Hypervisor virtualization interrupt */
2062 if (env
->pending_interrupts
& PPC_INTERRUPT_HVIRT
) {
2063 /* LPCR will be clear when not supported so this will work */
2064 bool hvice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HVICE
);
2065 if ((async_deliver
|| !FIELD_EX64_HV(env
->msr
)) && hvice
) {
2066 return PPC_INTERRUPT_HVIRT
;
2070 /* External interrupt can ignore MSR:EE under some circumstances */
2071 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
2072 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
2073 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
2074 /* HEIC blocks delivery to the hypervisor */
2075 if ((async_deliver
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
2076 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
2077 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
2078 return PPC_INTERRUPT_EXT
;
2081 if (FIELD_EX64(env
->msr
, MSR
, CE
)) {
2082 /* External critical interrupt */
2083 if (env
->pending_interrupts
& PPC_INTERRUPT_CEXT
) {
2084 return PPC_INTERRUPT_CEXT
;
2087 if (async_deliver
!= 0) {
2088 /* Watchdog timer on embedded PowerPC */
2089 if (env
->pending_interrupts
& PPC_INTERRUPT_WDT
) {
2090 return PPC_INTERRUPT_WDT
;
2092 if (env
->pending_interrupts
& PPC_INTERRUPT_CDOORBELL
) {
2093 return PPC_INTERRUPT_CDOORBELL
;
2095 /* Fixed interval timer on embedded PowerPC */
2096 if (env
->pending_interrupts
& PPC_INTERRUPT_FIT
) {
2097 return PPC_INTERRUPT_FIT
;
2099 /* Programmable interval timer on embedded PowerPC */
2100 if (env
->pending_interrupts
& PPC_INTERRUPT_PIT
) {
2101 return PPC_INTERRUPT_PIT
;
2103 /* Decrementer exception */
2104 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
2105 return PPC_INTERRUPT_DECR
;
2107 if (env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) {
2108 return PPC_INTERRUPT_DOORBELL
;
2110 if (env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) {
2111 return PPC_INTERRUPT_HDOORBELL
;
2113 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
2114 return PPC_INTERRUPT_PERFM
;
2116 /* Thermal interrupt */
2117 if (env
->pending_interrupts
& PPC_INTERRUPT_THERM
) {
2118 return PPC_INTERRUPT_THERM
;
2121 if (env
->pending_interrupts
& PPC_INTERRUPT_EBB
) {
2123 * EBB exception must be taken in problem state and
2124 * with BESCR_GE set.
2126 if (FIELD_EX64(env
->msr
, MSR
, PR
) &&
2127 (env
->spr
[SPR_BESCR
] & BESCR_GE
)) {
2128 return PPC_INTERRUPT_EBB
;
2137 * Sets CPU_INTERRUPT_HARD if there is at least one unmasked interrupt to be
2138 * delivered and clears CPU_INTERRUPT_HARD otherwise.
2140 * This method is called by ppc_set_interrupt when an interrupt is raised or
2141 * lowered, and should also be called whenever an interrupt masking condition
2143 * - When relevant bits of MSR are altered, like EE, HV, PR, etc.;
2144 * - When relevant bits of LPCR are altered, like PECE, HDICE, HVICE, etc.;
2145 * - When PSSCR[EC] or env->resume_as_sreset are changed;
2146 * - When cs->halted is changed and the CPU has a different interrupt masking
2147 * logic in power-saving mode (e.g., POWER7/8/9/10);
2149 void ppc_maybe_interrupt(CPUPPCState
*env
)
2151 CPUState
*cs
= env_cpu(env
);
2154 if (ppc_next_unmasked_interrupt(env
)) {
2155 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
2157 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
2162 static void p7_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2164 PowerPCCPU
*cpu
= env_archcpu(env
);
2166 switch (interrupt
) {
2167 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2168 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2169 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2172 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2173 /* HDEC clears on delivery */
2174 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2175 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2178 case PPC_INTERRUPT_EXT
:
2179 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2180 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2182 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2186 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2187 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2189 case PPC_INTERRUPT_PERFM
:
2190 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2191 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2195 * This is a bug ! It means that has_work took us out of halt without
2196 * anything to deliver while in a PM state that requires getting
2199 * This means we will incorrectly execute past the power management
2200 * instruction instead of triggering a reset.
2202 * It generally means a discrepancy between the wakeup conditions in the
2203 * processor has_work implementation and the logic in this function.
2205 assert(!env
->resume_as_sreset
);
2208 cpu_abort(env_cpu(env
), "Invalid PowerPC interrupt %d. Aborting\n",
2213 static void p8_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2215 PowerPCCPU
*cpu
= env_archcpu(env
);
2217 switch (interrupt
) {
2218 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2219 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2220 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2223 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2224 /* HDEC clears on delivery */
2225 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2226 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2229 case PPC_INTERRUPT_EXT
:
2230 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2231 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2233 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2237 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2238 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2240 case PPC_INTERRUPT_DOORBELL
:
2241 env
->pending_interrupts
&= ~PPC_INTERRUPT_DOORBELL
;
2242 if (is_book3s_arch2x(env
)) {
2243 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR
);
2245 powerpc_excp(cpu
, POWERPC_EXCP_DOORI
);
2248 case PPC_INTERRUPT_HDOORBELL
:
2249 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDOORBELL
;
2250 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR_HV
);
2252 case PPC_INTERRUPT_PERFM
:
2253 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2254 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2256 case PPC_INTERRUPT_EBB
: /* EBB exception */
2257 env
->pending_interrupts
&= ~PPC_INTERRUPT_EBB
;
2258 if (env
->spr
[SPR_BESCR
] & BESCR_PMEO
) {
2259 powerpc_excp(cpu
, POWERPC_EXCP_PERFM_EBB
);
2260 } else if (env
->spr
[SPR_BESCR
] & BESCR_EEO
) {
2261 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL_EBB
);
2266 * This is a bug ! It means that has_work took us out of halt without
2267 * anything to deliver while in a PM state that requires getting
2270 * This means we will incorrectly execute past the power management
2271 * instruction instead of triggering a reset.
2273 * It generally means a discrepancy between the wakeup conditions in the
2274 * processor has_work implementation and the logic in this function.
2276 assert(!env
->resume_as_sreset
);
2279 cpu_abort(env_cpu(env
), "Invalid PowerPC interrupt %d. Aborting\n",
2284 static void p9_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2286 PowerPCCPU
*cpu
= env_archcpu(env
);
2287 CPUState
*cs
= env_cpu(env
);
2289 if (cs
->halted
&& !(env
->spr
[SPR_PSSCR
] & PSSCR_EC
) &&
2290 !FIELD_EX64(env
->msr
, MSR
, EE
)) {
2292 * A pending interrupt took us out of power-saving, but MSR[EE] says
2293 * that we should return to NIP+4 instead of delivering it.
2298 switch (interrupt
) {
2299 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2300 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2301 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2304 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2305 /* HDEC clears on delivery */
2306 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2307 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2309 case PPC_INTERRUPT_HVIRT
: /* Hypervisor virtualization interrupt */
2310 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2313 case PPC_INTERRUPT_EXT
:
2314 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2315 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2317 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2321 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2322 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2324 case PPC_INTERRUPT_DOORBELL
:
2325 env
->pending_interrupts
&= ~PPC_INTERRUPT_DOORBELL
;
2326 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR
);
2328 case PPC_INTERRUPT_HDOORBELL
:
2329 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDOORBELL
;
2330 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR_HV
);
2332 case PPC_INTERRUPT_PERFM
:
2333 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2334 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2336 case PPC_INTERRUPT_EBB
: /* EBB exception */
2337 env
->pending_interrupts
&= ~PPC_INTERRUPT_EBB
;
2338 if (env
->spr
[SPR_BESCR
] & BESCR_PMEO
) {
2339 powerpc_excp(cpu
, POWERPC_EXCP_PERFM_EBB
);
2340 } else if (env
->spr
[SPR_BESCR
] & BESCR_EEO
) {
2341 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL_EBB
);
2346 * This is a bug ! It means that has_work took us out of halt without
2347 * anything to deliver while in a PM state that requires getting
2350 * This means we will incorrectly execute past the power management
2351 * instruction instead of triggering a reset.
2353 * It generally means a discrepancy between the wakeup conditions in the
2354 * processor has_work implementation and the logic in this function.
2356 assert(!env
->resume_as_sreset
);
2359 cpu_abort(env_cpu(env
), "Invalid PowerPC interrupt %d. Aborting\n",
2363 #endif /* TARGET_PPC64 */
2365 static void ppc_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2368 switch (env
->excp_model
) {
2369 case POWERPC_EXCP_POWER7
:
2370 return p7_deliver_interrupt(env
, interrupt
);
2371 case POWERPC_EXCP_POWER8
:
2372 return p8_deliver_interrupt(env
, interrupt
);
2373 case POWERPC_EXCP_POWER9
:
2374 case POWERPC_EXCP_POWER10
:
2375 return p9_deliver_interrupt(env
, interrupt
);
2380 PowerPCCPU
*cpu
= env_archcpu(env
);
2382 switch (interrupt
) {
2383 case PPC_INTERRUPT_RESET
: /* External reset */
2384 env
->pending_interrupts
&= ~PPC_INTERRUPT_RESET
;
2385 powerpc_excp(cpu
, POWERPC_EXCP_RESET
);
2387 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2388 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2389 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2392 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2393 /* HDEC clears on delivery */
2394 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2395 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2397 case PPC_INTERRUPT_HVIRT
: /* Hypervisor virtualization interrupt */
2398 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2401 case PPC_INTERRUPT_EXT
:
2402 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2403 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2405 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2408 case PPC_INTERRUPT_CEXT
: /* External critical interrupt */
2409 powerpc_excp(cpu
, POWERPC_EXCP_CRITICAL
);
2412 case PPC_INTERRUPT_WDT
: /* Watchdog timer on embedded PowerPC */
2413 env
->pending_interrupts
&= ~PPC_INTERRUPT_WDT
;
2414 powerpc_excp(cpu
, POWERPC_EXCP_WDT
);
2416 case PPC_INTERRUPT_CDOORBELL
:
2417 env
->pending_interrupts
&= ~PPC_INTERRUPT_CDOORBELL
;
2418 powerpc_excp(cpu
, POWERPC_EXCP_DOORCI
);
2420 case PPC_INTERRUPT_FIT
: /* Fixed interval timer on embedded PowerPC */
2421 env
->pending_interrupts
&= ~PPC_INTERRUPT_FIT
;
2422 powerpc_excp(cpu
, POWERPC_EXCP_FIT
);
2424 case PPC_INTERRUPT_PIT
: /* Programmable interval timer on embedded ppc */
2425 env
->pending_interrupts
&= ~PPC_INTERRUPT_PIT
;
2426 powerpc_excp(cpu
, POWERPC_EXCP_PIT
);
2428 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2429 if (ppc_decr_clear_on_delivery(env
)) {
2430 env
->pending_interrupts
&= ~PPC_INTERRUPT_DECR
;
2432 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2434 case PPC_INTERRUPT_DOORBELL
:
2435 env
->pending_interrupts
&= ~PPC_INTERRUPT_DOORBELL
;
2436 if (is_book3s_arch2x(env
)) {
2437 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR
);
2439 powerpc_excp(cpu
, POWERPC_EXCP_DOORI
);
2442 case PPC_INTERRUPT_HDOORBELL
:
2443 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDOORBELL
;
2444 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR_HV
);
2446 case PPC_INTERRUPT_PERFM
:
2447 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2448 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2450 case PPC_INTERRUPT_THERM
: /* Thermal interrupt */
2451 env
->pending_interrupts
&= ~PPC_INTERRUPT_THERM
;
2452 powerpc_excp(cpu
, POWERPC_EXCP_THERM
);
2454 case PPC_INTERRUPT_EBB
: /* EBB exception */
2455 env
->pending_interrupts
&= ~PPC_INTERRUPT_EBB
;
2456 if (env
->spr
[SPR_BESCR
] & BESCR_PMEO
) {
2457 powerpc_excp(cpu
, POWERPC_EXCP_PERFM_EBB
);
2458 } else if (env
->spr
[SPR_BESCR
] & BESCR_EEO
) {
2459 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL_EBB
);
2464 * This is a bug ! It means that has_work took us out of halt without
2465 * anything to deliver while in a PM state that requires getting
2468 * This means we will incorrectly execute past the power management
2469 * instruction instead of triggering a reset.
2471 * It generally means a discrepancy between the wakeup conditions in the
2472 * processor has_work implementation and the logic in this function.
2474 assert(!env
->resume_as_sreset
);
2477 cpu_abort(env_cpu(env
), "Invalid PowerPC interrupt %d. Aborting\n",
2482 void ppc_cpu_do_system_reset(CPUState
*cs
)
2484 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2486 powerpc_excp(cpu
, POWERPC_EXCP_RESET
);
2489 void ppc_cpu_do_fwnmi_machine_check(CPUState
*cs
, target_ulong vector
)
2491 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2492 CPUPPCState
*env
= &cpu
->env
;
2493 target_ulong msr
= 0;
2496 * Set MSR and NIP for the handler, SRR0/1, DAR and DSISR have already
2499 msr
= (1ULL << MSR_ME
);
2500 msr
|= env
->msr
& (1ULL << MSR_SF
);
2501 if (ppc_interrupts_little_endian(cpu
, false)) {
2502 msr
|= (1ULL << MSR_LE
);
2505 /* Anything for nested required here? MSR[HV] bit? */
2507 powerpc_set_excp_state(cpu
, vector
, msr
);
2510 bool ppc_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
)
2512 CPUPPCState
*env
= cpu_env(cs
);
2515 if ((interrupt_request
& CPU_INTERRUPT_HARD
) == 0) {
2519 interrupt
= ppc_next_unmasked_interrupt(env
);
2520 if (interrupt
== 0) {
2524 ppc_deliver_interrupt(env
, interrupt
);
2525 if (env
->pending_interrupts
== 0) {
2526 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
2531 #endif /* !CONFIG_USER_ONLY */
2533 /*****************************************************************************/
2534 /* Exceptions processing helpers */
2536 void raise_exception_err_ra(CPUPPCState
*env
, uint32_t exception
,
2537 uint32_t error_code
, uintptr_t raddr
)
2539 CPUState
*cs
= env_cpu(env
);
2541 cs
->exception_index
= exception
;
2542 env
->error_code
= error_code
;
2543 cpu_loop_exit_restore(cs
, raddr
);
2546 void raise_exception_err(CPUPPCState
*env
, uint32_t exception
,
2547 uint32_t error_code
)
2549 raise_exception_err_ra(env
, exception
, error_code
, 0);
2552 void raise_exception(CPUPPCState
*env
, uint32_t exception
)
2554 raise_exception_err_ra(env
, exception
, 0, 0);
2557 void raise_exception_ra(CPUPPCState
*env
, uint32_t exception
,
2560 raise_exception_err_ra(env
, exception
, 0, raddr
);
2564 void helper_raise_exception_err(CPUPPCState
*env
, uint32_t exception
,
2565 uint32_t error_code
)
2567 raise_exception_err_ra(env
, exception
, error_code
, 0);
2570 void helper_raise_exception(CPUPPCState
*env
, uint32_t exception
)
2572 raise_exception_err_ra(env
, exception
, 0, 0);
2575 #ifndef CONFIG_USER_ONLY
2576 void helper_store_msr(CPUPPCState
*env
, target_ulong val
)
2578 uint32_t excp
= hreg_store_msr(env
, val
, 0);
2581 cpu_interrupt_exittb(env_cpu(env
));
2582 raise_exception(env
, excp
);
2586 void helper_ppc_maybe_interrupt(CPUPPCState
*env
)
2588 ppc_maybe_interrupt(env
);
2592 void helper_scv(CPUPPCState
*env
, uint32_t lev
)
2594 if (env
->spr
[SPR_FSCR
] & (1ull << FSCR_SCV
)) {
2595 raise_exception_err(env
, POWERPC_EXCP_SYSCALL_VECTORED
, lev
);
2597 raise_exception_err(env
, POWERPC_EXCP_FU
, FSCR_IC_SCV
);
2601 void helper_pminsn(CPUPPCState
*env
, uint32_t insn
)
2603 CPUState
*cs
= env_cpu(env
);
2607 /* Condition for waking up at 0x100 */
2608 env
->resume_as_sreset
= (insn
!= PPC_PM_STOP
) ||
2609 (env
->spr
[SPR_PSSCR
] & PSSCR_EC
);
2611 /* HDECR is not to wake from PM state, it may have already fired */
2612 if (env
->resume_as_sreset
) {
2613 PowerPCCPU
*cpu
= env_archcpu(env
);
2614 ppc_set_irq(cpu
, PPC_INTERRUPT_HDECR
, 0);
2617 ppc_maybe_interrupt(env
);
2619 #endif /* TARGET_PPC64 */
2621 static void do_rfi(CPUPPCState
*env
, target_ulong nip
, target_ulong msr
)
2623 /* MSR:POW cannot be set by any form of rfi */
2624 msr
&= ~(1ULL << MSR_POW
);
2626 /* MSR:TGPR cannot be set by any form of rfi */
2627 if (env
->flags
& POWERPC_FLAG_TGPR
)
2628 msr
&= ~(1ULL << MSR_TGPR
);
2631 /* Switching to 32-bit ? Crop the nip */
2632 if (!msr_is_64bit(env
, msr
)) {
2633 nip
= (uint32_t)nip
;
2636 nip
= (uint32_t)nip
;
2638 /* XXX: beware: this is false if VLE is supported */
2639 env
->nip
= nip
& ~((target_ulong
)0x00000003);
2640 hreg_store_msr(env
, msr
, 1);
2641 trace_ppc_excp_rfi(env
->nip
, env
->msr
);
2643 * No need to raise an exception here, as rfi is always the last
2646 cpu_interrupt_exittb(env_cpu(env
));
2647 /* Reset the reservation */
2648 env
->reserve_addr
= -1;
2650 /* Context synchronizing: check if TCG TLB needs flush */
2651 check_tlb_flush(env
, false);
2654 void helper_rfi(CPUPPCState
*env
)
2656 do_rfi(env
, env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
] & 0xfffffffful
);
2660 void helper_rfid(CPUPPCState
*env
)
2663 * The architecture defines a number of rules for which bits can
2664 * change but in practice, we handle this in hreg_store_msr()
2665 * which will be called by do_rfi(), so there is no need to filter
2668 do_rfi(env
, env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
]);
2671 void helper_rfscv(CPUPPCState
*env
)
2673 do_rfi(env
, env
->lr
, env
->ctr
);
2676 void helper_hrfid(CPUPPCState
*env
)
2678 do_rfi(env
, env
->spr
[SPR_HSRR0
], env
->spr
[SPR_HSRR1
]);
2681 void helper_rfebb(CPUPPCState
*env
, target_ulong s
)
2683 target_ulong msr
= env
->msr
;
2686 * Handling of BESCR bits 32:33 according to PowerISA v3.1:
2688 * "If BESCR 32:33 != 0b00 the instruction is treated as if
2689 * the instruction form were invalid."
2691 if (env
->spr
[SPR_BESCR
] & BESCR_INVALID
) {
2692 raise_exception_err(env
, POWERPC_EXCP_PROGRAM
,
2693 POWERPC_EXCP_INVAL
| POWERPC_EXCP_INVAL_INVAL
);
2696 env
->nip
= env
->spr
[SPR_EBBRR
];
2698 /* Switching to 32-bit ? Crop the nip */
2699 if (!msr_is_64bit(env
, msr
)) {
2700 env
->nip
= (uint32_t)env
->spr
[SPR_EBBRR
];
2704 env
->spr
[SPR_BESCR
] |= BESCR_GE
;
2706 env
->spr
[SPR_BESCR
] &= ~BESCR_GE
;
2711 * Triggers or queues an 'ebb_excp' EBB exception. All checks
2712 * but FSCR, HFSCR and msr_pr must be done beforehand.
2714 * PowerISA v3.1 isn't clear about whether an EBB should be
2715 * postponed or cancelled if the EBB facility is unavailable.
2716 * Our assumption here is that the EBB is cancelled if both
2717 * FSCR and HFSCR EBB facilities aren't available.
2719 static void do_ebb(CPUPPCState
*env
, int ebb_excp
)
2721 PowerPCCPU
*cpu
= env_archcpu(env
);
2724 * FSCR_EBB and FSCR_IC_EBB are the same bits used with
2727 helper_fscr_facility_check(env
, FSCR_EBB
, 0, FSCR_IC_EBB
);
2728 helper_hfscr_facility_check(env
, FSCR_EBB
, "EBB", FSCR_IC_EBB
);
2730 if (ebb_excp
== POWERPC_EXCP_PERFM_EBB
) {
2731 env
->spr
[SPR_BESCR
] |= BESCR_PMEO
;
2732 } else if (ebb_excp
== POWERPC_EXCP_EXTERNAL_EBB
) {
2733 env
->spr
[SPR_BESCR
] |= BESCR_EEO
;
2736 if (FIELD_EX64(env
->msr
, MSR
, PR
)) {
2737 powerpc_excp(cpu
, ebb_excp
);
2739 ppc_set_irq(cpu
, PPC_INTERRUPT_EBB
, 1);
2743 void raise_ebb_perfm_exception(CPUPPCState
*env
)
2745 bool perfm_ebb_enabled
= env
->spr
[SPR_POWER_MMCR0
] & MMCR0_EBE
&&
2746 env
->spr
[SPR_BESCR
] & BESCR_PME
&&
2747 env
->spr
[SPR_BESCR
] & BESCR_GE
;
2749 if (!perfm_ebb_enabled
) {
2753 do_ebb(env
, POWERPC_EXCP_PERFM_EBB
);
2755 #endif /* TARGET_PPC64 */
2757 /*****************************************************************************/
2758 /* Embedded PowerPC specific helpers */
2759 void helper_40x_rfci(CPUPPCState
*env
)
2761 do_rfi(env
, env
->spr
[SPR_40x_SRR2
], env
->spr
[SPR_40x_SRR3
]);
2764 void helper_rfci(CPUPPCState
*env
)
2766 do_rfi(env
, env
->spr
[SPR_BOOKE_CSRR0
], env
->spr
[SPR_BOOKE_CSRR1
]);
2769 void helper_rfdi(CPUPPCState
*env
)
2771 /* FIXME: choose CSRR1 or DSRR1 based on cpu type */
2772 do_rfi(env
, env
->spr
[SPR_BOOKE_DSRR0
], env
->spr
[SPR_BOOKE_DSRR1
]);
2775 void helper_rfmci(CPUPPCState
*env
)
2777 /* FIXME: choose CSRR1 or MCSRR1 based on cpu type */
2778 do_rfi(env
, env
->spr
[SPR_BOOKE_MCSRR0
], env
->spr
[SPR_BOOKE_MCSRR1
]);
2780 #endif /* !CONFIG_USER_ONLY */
2782 void helper_TW(CPUPPCState
*env
, target_ulong arg1
, target_ulong arg2
,
2785 if (!likely(!(((int32_t)arg1
< (int32_t)arg2
&& (flags
& 0x10)) ||
2786 ((int32_t)arg1
> (int32_t)arg2
&& (flags
& 0x08)) ||
2787 ((int32_t)arg1
== (int32_t)arg2
&& (flags
& 0x04)) ||
2788 ((uint32_t)arg1
< (uint32_t)arg2
&& (flags
& 0x02)) ||
2789 ((uint32_t)arg1
> (uint32_t)arg2
&& (flags
& 0x01))))) {
2790 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2791 POWERPC_EXCP_TRAP
, GETPC());
2796 void helper_TD(CPUPPCState
*env
, target_ulong arg1
, target_ulong arg2
,
2799 if (!likely(!(((int64_t)arg1
< (int64_t)arg2
&& (flags
& 0x10)) ||
2800 ((int64_t)arg1
> (int64_t)arg2
&& (flags
& 0x08)) ||
2801 ((int64_t)arg1
== (int64_t)arg2
&& (flags
& 0x04)) ||
2802 ((uint64_t)arg1
< (uint64_t)arg2
&& (flags
& 0x02)) ||
2803 ((uint64_t)arg1
> (uint64_t)arg2
&& (flags
& 0x01))))) {
2804 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2805 POWERPC_EXCP_TRAP
, GETPC());
2808 #endif /* TARGET_PPC64 */
2810 static uint32_t helper_SIMON_LIKE_32_64(uint32_t x
, uint64_t key
, uint32_t lane
)
2812 const uint16_t c
= 0xfffc;
2813 const uint64_t z0
= 0xfa2561cdf44ac398ULL
;
2814 uint16_t z
= 0, temp
;
2815 uint16_t k
[32], eff_k
[32], xleft
[33], xright
[33], fxleft
[32];
2817 for (int i
= 3; i
>= 0; i
--) {
2818 k
[i
] = key
& 0xffff;
2821 xleft
[0] = x
& 0xffff;
2822 xright
[0] = (x
>> 16) & 0xffff;
2824 for (int i
= 0; i
< 28; i
++) {
2825 z
= (z0
>> (63 - i
)) & 1;
2826 temp
= ror16(k
[i
+ 3], 3) ^ k
[i
+ 1];
2827 k
[i
+ 4] = c
^ z
^ k
[i
] ^ temp
^ ror16(temp
, 1);
2830 for (int i
= 0; i
< 8; i
++) {
2831 eff_k
[4 * i
+ 0] = k
[4 * i
+ ((0 + lane
) % 4)];
2832 eff_k
[4 * i
+ 1] = k
[4 * i
+ ((1 + lane
) % 4)];
2833 eff_k
[4 * i
+ 2] = k
[4 * i
+ ((2 + lane
) % 4)];
2834 eff_k
[4 * i
+ 3] = k
[4 * i
+ ((3 + lane
) % 4)];
2837 for (int i
= 0; i
< 32; i
++) {
2838 fxleft
[i
] = (rol16(xleft
[i
], 1) &
2839 rol16(xleft
[i
], 8)) ^ rol16(xleft
[i
], 2);
2840 xleft
[i
+ 1] = xright
[i
] ^ fxleft
[i
] ^ eff_k
[i
];
2841 xright
[i
+ 1] = xleft
[i
];
2844 return (((uint32_t)xright
[32]) << 16) | xleft
[32];
2847 static uint64_t hash_digest(uint64_t ra
, uint64_t rb
, uint64_t key
)
2849 uint64_t stage0_h
= 0ULL, stage0_l
= 0ULL;
2850 uint64_t stage1_h
, stage1_l
;
2852 for (int i
= 0; i
< 4; i
++) {
2853 stage0_h
|= ror64(rb
& 0xff, 8 * (2 * i
+ 1));
2854 stage0_h
|= ((ra
>> 32) & 0xff) << (8 * 2 * i
);
2855 stage0_l
|= ror64((rb
>> 32) & 0xff, 8 * (2 * i
+ 1));
2856 stage0_l
|= (ra
& 0xff) << (8 * 2 * i
);
2861 stage1_h
= (uint64_t)helper_SIMON_LIKE_32_64(stage0_h
>> 32, key
, 0) << 32;
2862 stage1_h
|= helper_SIMON_LIKE_32_64(stage0_h
, key
, 1);
2863 stage1_l
= (uint64_t)helper_SIMON_LIKE_32_64(stage0_l
>> 32, key
, 2) << 32;
2864 stage1_l
|= helper_SIMON_LIKE_32_64(stage0_l
, key
, 3);
2866 return stage1_h
^ stage1_l
;
2869 static void do_hash(CPUPPCState
*env
, target_ulong ea
, target_ulong ra
,
2870 target_ulong rb
, uint64_t key
, bool store
)
2872 uint64_t calculated_hash
= hash_digest(ra
, rb
, key
), loaded_hash
;
2875 cpu_stq_data_ra(env
, ea
, calculated_hash
, GETPC());
2877 loaded_hash
= cpu_ldq_data_ra(env
, ea
, GETPC());
2878 if (loaded_hash
!= calculated_hash
) {
2879 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2880 POWERPC_EXCP_TRAP
, GETPC());
2885 #include "qemu/guest-random.h"
2888 #define HELPER_HASH(op, key, store, dexcr_aspect) \
2889 void helper_##op(CPUPPCState *env, target_ulong ea, target_ulong ra, \
2892 if (env->msr & R_MSR_PR_MASK) { \
2893 if (!(env->spr[SPR_DEXCR] & R_DEXCR_PRO_##dexcr_aspect##_MASK || \
2894 env->spr[SPR_HDEXCR] & R_HDEXCR_ENF_##dexcr_aspect##_MASK)) \
2896 } else if (!(env->msr & R_MSR_HV_MASK)) { \
2897 if (!(env->spr[SPR_DEXCR] & R_DEXCR_PNH_##dexcr_aspect##_MASK || \
2898 env->spr[SPR_HDEXCR] & R_HDEXCR_ENF_##dexcr_aspect##_MASK)) \
2900 } else if (!(env->msr & R_MSR_S_MASK)) { \
2901 if (!(env->spr[SPR_HDEXCR] & R_HDEXCR_HNU_##dexcr_aspect##_MASK)) \
2905 do_hash(env, ea, ra, rb, key, store); \
2908 #define HELPER_HASH(op, key, store, dexcr_aspect) \
2909 void helper_##op(CPUPPCState *env, target_ulong ea, target_ulong ra, \
2912 do_hash(env, ea, ra, rb, key, store); \
2914 #endif /* TARGET_PPC64 */
2916 HELPER_HASH(HASHST
, env
->spr
[SPR_HASHKEYR
], true, NPHIE
)
2917 HELPER_HASH(HASHCHK
, env
->spr
[SPR_HASHKEYR
], false, NPHIE
)
2918 HELPER_HASH(HASHSTP
, env
->spr
[SPR_HASHPKEYR
], true, PHIE
)
2919 HELPER_HASH(HASHCHKP
, env
->spr
[SPR_HASHPKEYR
], false, PHIE
)
2921 #ifndef CONFIG_USER_ONLY
2922 /* Embedded.Processor Control */
2923 static int dbell2irq(target_ulong rb
)
2925 int msg
= rb
& DBELL_TYPE_MASK
;
2929 case DBELL_TYPE_DBELL
:
2930 irq
= PPC_INTERRUPT_DOORBELL
;
2932 case DBELL_TYPE_DBELL_CRIT
:
2933 irq
= PPC_INTERRUPT_CDOORBELL
;
2935 case DBELL_TYPE_G_DBELL
:
2936 case DBELL_TYPE_G_DBELL_CRIT
:
2937 case DBELL_TYPE_G_DBELL_MC
:
2946 void helper_msgclr(CPUPPCState
*env
, target_ulong rb
)
2948 int irq
= dbell2irq(rb
);
2954 ppc_set_irq(env_archcpu(env
), irq
, 0);
2957 void helper_msgsnd(target_ulong rb
)
2959 int irq
= dbell2irq(rb
);
2960 int pir
= rb
& DBELL_PIRTAG_MASK
;
2969 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2970 CPUPPCState
*cenv
= &cpu
->env
;
2972 if ((rb
& DBELL_BRDCAST_MASK
) || (cenv
->spr
[SPR_BOOKE_PIR
] == pir
)) {
2973 ppc_set_irq(cpu
, irq
, 1);
2979 /* Server Processor Control */
2981 static bool dbell_type_server(target_ulong rb
)
2984 * A Directed Hypervisor Doorbell message is sent only if the
2985 * message type is 5. All other types are reserved and the
2986 * instruction is a no-op
2988 return (rb
& DBELL_TYPE_MASK
) == DBELL_TYPE_DBELL_SERVER
;
2991 static inline bool dbell_bcast_core(target_ulong rb
)
2993 return (rb
& DBELL_BRDCAST_MASK
) == DBELL_BRDCAST_CORE
;
2996 static inline bool dbell_bcast_subproc(target_ulong rb
)
2998 return (rb
& DBELL_BRDCAST_MASK
) == DBELL_BRDCAST_SUBPROC
;
3002 * Send an interrupt to a thread in the same core as env).
3004 static void msgsnd_core_tir(CPUPPCState
*env
, uint32_t target_tir
, int irq
)
3006 PowerPCCPU
*cpu
= env_archcpu(env
);
3007 CPUState
*cs
= env_cpu(env
);
3009 if (ppc_cpu_lpar_single_threaded(cs
)) {
3010 if (target_tir
== 0) {
3011 ppc_set_irq(cpu
, irq
, 1);
3016 /* Does iothread need to be locked for walking CPU list? */
3018 THREAD_SIBLING_FOREACH(cs
, ccs
) {
3019 PowerPCCPU
*ccpu
= POWERPC_CPU(ccs
);
3020 if (target_tir
== ppc_cpu_tir(ccpu
)) {
3021 ppc_set_irq(ccpu
, irq
, 1);
3029 void helper_book3s_msgclr(CPUPPCState
*env
, target_ulong rb
)
3031 if (!dbell_type_server(rb
)) {
3035 ppc_set_irq(env_archcpu(env
), PPC_INTERRUPT_HDOORBELL
, 0);
3038 void helper_book3s_msgsnd(CPUPPCState
*env
, target_ulong rb
)
3040 int pir
= rb
& DBELL_PROCIDTAG_MASK
;
3041 bool brdcast
= false;
3045 if (!dbell_type_server(rb
)) {
3049 /* POWER8 msgsnd is like msgsndp (targets a thread within core) */
3050 if (!(env
->insns_flags2
& PPC2_ISA300
)) {
3051 msgsnd_core_tir(env
, rb
& PPC_BITMASK(57, 63), PPC_INTERRUPT_HDOORBELL
);
3055 /* POWER9 and later msgsnd is a global (targets any thread) */
3056 cpu
= ppc_get_vcpu_by_pir(pir
);
3062 if (dbell_bcast_core(rb
) || (dbell_bcast_subproc(rb
) &&
3063 (env
->flags
& POWERPC_FLAG_SMT_1LPAR
))) {
3067 if (ppc_cpu_core_single_threaded(cs
) || !brdcast
) {
3068 ppc_set_irq(cpu
, PPC_INTERRUPT_HDOORBELL
, 1);
3073 * Why is bql needed for walking CPU list? Answer seems to be because ppc
3074 * irq handling needs it, but ppc_set_irq takes the lock itself if needed,
3075 * so could this be removed?
3078 THREAD_SIBLING_FOREACH(cs
, ccs
) {
3079 ppc_set_irq(POWERPC_CPU(ccs
), PPC_INTERRUPT_HDOORBELL
, 1);
3085 void helper_book3s_msgclrp(CPUPPCState
*env
, target_ulong rb
)
3087 helper_hfscr_facility_check(env
, HFSCR_MSGP
, "msgclrp", HFSCR_IC_MSGP
);
3089 if (!dbell_type_server(rb
)) {
3093 ppc_set_irq(env_archcpu(env
), PPC_INTERRUPT_DOORBELL
, 0);
3097 * sends a message to another thread on the same
3098 * multi-threaded processor
3100 void helper_book3s_msgsndp(CPUPPCState
*env
, target_ulong rb
)
3102 helper_hfscr_facility_check(env
, HFSCR_MSGP
, "msgsndp", HFSCR_IC_MSGP
);
3104 if (!dbell_type_server(rb
)) {
3108 msgsnd_core_tir(env
, rb
& PPC_BITMASK(57, 63), PPC_INTERRUPT_DOORBELL
);
3110 #endif /* TARGET_PPC64 */
3112 /* Single-step tracing */
3113 void helper_book3s_trace(CPUPPCState
*env
, target_ulong prev_ip
)
3115 uint32_t error_code
= 0;
3116 if (env
->insns_flags2
& PPC2_ISA207S
) {
3117 /* Load/store reporting, SRR1[35, 36] and SDAR, are not implemented. */
3118 env
->spr
[SPR_POWER_SIAR
] = prev_ip
;
3119 error_code
= PPC_BIT(33);
3121 raise_exception_err(env
, POWERPC_EXCP_TRACE
, error_code
);
3124 void ppc_cpu_do_unaligned_access(CPUState
*cs
, vaddr vaddr
,
3125 MMUAccessType access_type
,
3126 int mmu_idx
, uintptr_t retaddr
)
3128 CPUPPCState
*env
= cpu_env(cs
);
3131 /* Restore state and reload the insn we executed, for filling in DSISR. */
3132 cpu_restore_state(cs
, retaddr
);
3133 insn
= ppc_ldl_code(env
, env
->nip
);
3135 switch (env
->mmu_model
) {
3136 case POWERPC_MMU_SOFT_4xx
:
3137 env
->spr
[SPR_40x_DEAR
] = vaddr
;
3139 case POWERPC_MMU_BOOKE
:
3140 case POWERPC_MMU_BOOKE206
:
3141 env
->spr
[SPR_BOOKE_DEAR
] = vaddr
;
3144 env
->spr
[SPR_DAR
] = vaddr
;
3148 cs
->exception_index
= POWERPC_EXCP_ALIGN
;
3149 env
->error_code
= insn
& 0x03FF0000;
3153 void ppc_cpu_do_transaction_failed(CPUState
*cs
, hwaddr physaddr
,
3154 vaddr vaddr
, unsigned size
,
3155 MMUAccessType access_type
,
3156 int mmu_idx
, MemTxAttrs attrs
,
3157 MemTxResult response
, uintptr_t retaddr
)
3159 CPUPPCState
*env
= cpu_env(cs
);
3161 switch (env
->excp_model
) {
3162 #if defined(TARGET_PPC64)
3163 case POWERPC_EXCP_POWER8
:
3164 case POWERPC_EXCP_POWER9
:
3165 case POWERPC_EXCP_POWER10
:
3167 * Machine check codes can be found in processor User Manual or
3168 * Linux or skiboot source.
3170 if (access_type
== MMU_DATA_LOAD
) {
3171 env
->spr
[SPR_DAR
] = vaddr
;
3172 env
->spr
[SPR_DSISR
] = PPC_BIT(57);
3173 env
->error_code
= PPC_BIT(42);
3175 } else if (access_type
== MMU_DATA_STORE
) {
3177 * MCE for stores in POWER is asynchronous so hardware does
3178 * not set DAR, but QEMU can do better.
3180 env
->spr
[SPR_DAR
] = vaddr
;
3181 env
->error_code
= PPC_BIT(36) | PPC_BIT(43) | PPC_BIT(45);
3182 env
->error_code
|= PPC_BIT(42);
3184 } else { /* Fetch */
3186 * is_prefix_insn_excp() tests !PPC_BIT(42) to avoid fetching
3187 * the instruction, so that must always be clear for fetches.
3189 env
->error_code
= PPC_BIT(36) | PPC_BIT(44) | PPC_BIT(45);
3195 * TODO: Check behaviour for other CPUs, for now do nothing.
3196 * Could add a basic MCE even if real hardware ignores.
3201 cs
->exception_index
= POWERPC_EXCP_MCHECK
;
3202 cpu_loop_exit_restore(cs
, retaddr
);
3205 void ppc_cpu_debug_excp_handler(CPUState
*cs
)
3207 #if defined(TARGET_PPC64)
3208 CPUPPCState
*env
= cpu_env(cs
);
3210 if (env
->insns_flags2
& PPC2_ISA207S
) {
3211 if (cs
->watchpoint_hit
) {
3212 if (cs
->watchpoint_hit
->flags
& BP_CPU
) {
3213 env
->spr
[SPR_DAR
] = cs
->watchpoint_hit
->hitaddr
;
3214 env
->spr
[SPR_DSISR
] = PPC_BIT(41);
3215 cs
->watchpoint_hit
= NULL
;
3216 raise_exception(env
, POWERPC_EXCP_DSI
);
3218 cs
->watchpoint_hit
= NULL
;
3219 } else if (cpu_breakpoint_test(cs
, env
->nip
, BP_CPU
)) {
3220 raise_exception_err(env
, POWERPC_EXCP_TRACE
,
3221 PPC_BIT(33) | PPC_BIT(43));
3227 bool ppc_cpu_debug_check_breakpoint(CPUState
*cs
)
3229 #if defined(TARGET_PPC64)
3230 CPUPPCState
*env
= cpu_env(cs
);
3232 if (env
->insns_flags2
& PPC2_ISA207S
) {
3235 priv
= env
->spr
[SPR_CIABR
] & PPC_BITMASK(62, 63);
3237 case 0x1: /* problem */
3238 return env
->msr
& ((target_ulong
)1 << MSR_PR
);
3239 case 0x2: /* supervisor */
3240 return (!(env
->msr
& ((target_ulong
)1 << MSR_PR
)) &&
3241 !(env
->msr
& ((target_ulong
)1 << MSR_HV
)));
3242 case 0x3: /* hypervisor */
3243 return (!(env
->msr
& ((target_ulong
)1 << MSR_PR
)) &&
3244 (env
->msr
& ((target_ulong
)1 << MSR_HV
)));
3246 g_assert_not_reached();
3254 bool ppc_cpu_debug_check_watchpoint(CPUState
*cs
, CPUWatchpoint
*wp
)
3256 #if defined(TARGET_PPC64)
3257 CPUPPCState
*env
= cpu_env(cs
);
3259 if (env
->insns_flags2
& PPC2_ISA207S
) {
3260 if (wp
== env
->dawr0_watchpoint
) {
3261 uint32_t dawrx
= env
->spr
[SPR_DAWRX0
];
3262 bool wt
= extract32(dawrx
, PPC_BIT_NR(59), 1);
3263 bool wti
= extract32(dawrx
, PPC_BIT_NR(60), 1);
3264 bool hv
= extract32(dawrx
, PPC_BIT_NR(61), 1);
3265 bool sv
= extract32(dawrx
, PPC_BIT_NR(62), 1);
3266 bool pr
= extract32(dawrx
, PPC_BIT_NR(62), 1);
3268 if ((env
->msr
& ((target_ulong
)1 << MSR_PR
)) && !pr
) {
3270 } else if ((env
->msr
& ((target_ulong
)1 << MSR_HV
)) && !hv
) {
3277 if (env
->msr
& ((target_ulong
)1 << MSR_DR
)) {
3296 #endif /* !CONFIG_USER_ONLY */
3297 #endif /* CONFIG_TCG */