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"
23 #include "exec/exec-all.h"
25 #include "helper_regs.h"
26 #include "hw/ppc/ppc.h"
31 #include "exec/helper-proto.h"
32 #include "exec/cpu_ldst.h"
35 /*****************************************************************************/
36 /* Exception processing */
37 #if !defined(CONFIG_USER_ONLY)
39 static const char *powerpc_excp_name(int excp
)
42 case POWERPC_EXCP_CRITICAL
: return "CRITICAL";
43 case POWERPC_EXCP_MCHECK
: return "MCHECK";
44 case POWERPC_EXCP_DSI
: return "DSI";
45 case POWERPC_EXCP_ISI
: return "ISI";
46 case POWERPC_EXCP_EXTERNAL
: return "EXTERNAL";
47 case POWERPC_EXCP_ALIGN
: return "ALIGN";
48 case POWERPC_EXCP_PROGRAM
: return "PROGRAM";
49 case POWERPC_EXCP_FPU
: return "FPU";
50 case POWERPC_EXCP_SYSCALL
: return "SYSCALL";
51 case POWERPC_EXCP_APU
: return "APU";
52 case POWERPC_EXCP_DECR
: return "DECR";
53 case POWERPC_EXCP_FIT
: return "FIT";
54 case POWERPC_EXCP_WDT
: return "WDT";
55 case POWERPC_EXCP_DTLB
: return "DTLB";
56 case POWERPC_EXCP_ITLB
: return "ITLB";
57 case POWERPC_EXCP_DEBUG
: return "DEBUG";
58 case POWERPC_EXCP_SPEU
: return "SPEU";
59 case POWERPC_EXCP_EFPDI
: return "EFPDI";
60 case POWERPC_EXCP_EFPRI
: return "EFPRI";
61 case POWERPC_EXCP_EPERFM
: return "EPERFM";
62 case POWERPC_EXCP_DOORI
: return "DOORI";
63 case POWERPC_EXCP_DOORCI
: return "DOORCI";
64 case POWERPC_EXCP_GDOORI
: return "GDOORI";
65 case POWERPC_EXCP_GDOORCI
: return "GDOORCI";
66 case POWERPC_EXCP_HYPPRIV
: return "HYPPRIV";
67 case POWERPC_EXCP_RESET
: return "RESET";
68 case POWERPC_EXCP_DSEG
: return "DSEG";
69 case POWERPC_EXCP_ISEG
: return "ISEG";
70 case POWERPC_EXCP_HDECR
: return "HDECR";
71 case POWERPC_EXCP_TRACE
: return "TRACE";
72 case POWERPC_EXCP_HDSI
: return "HDSI";
73 case POWERPC_EXCP_HISI
: return "HISI";
74 case POWERPC_EXCP_HDSEG
: return "HDSEG";
75 case POWERPC_EXCP_HISEG
: return "HISEG";
76 case POWERPC_EXCP_VPU
: return "VPU";
77 case POWERPC_EXCP_PIT
: return "PIT";
78 case POWERPC_EXCP_EMUL
: return "EMUL";
79 case POWERPC_EXCP_IFTLB
: return "IFTLB";
80 case POWERPC_EXCP_DLTLB
: return "DLTLB";
81 case POWERPC_EXCP_DSTLB
: return "DSTLB";
82 case POWERPC_EXCP_FPA
: return "FPA";
83 case POWERPC_EXCP_DABR
: return "DABR";
84 case POWERPC_EXCP_IABR
: return "IABR";
85 case POWERPC_EXCP_SMI
: return "SMI";
86 case POWERPC_EXCP_PERFM
: return "PERFM";
87 case POWERPC_EXCP_THERM
: return "THERM";
88 case POWERPC_EXCP_VPUA
: return "VPUA";
89 case POWERPC_EXCP_SOFTP
: return "SOFTP";
90 case POWERPC_EXCP_MAINT
: return "MAINT";
91 case POWERPC_EXCP_MEXTBR
: return "MEXTBR";
92 case POWERPC_EXCP_NMEXTBR
: return "NMEXTBR";
93 case POWERPC_EXCP_ITLBE
: return "ITLBE";
94 case POWERPC_EXCP_DTLBE
: return "DTLBE";
95 case POWERPC_EXCP_VSXU
: return "VSXU";
96 case POWERPC_EXCP_FU
: return "FU";
97 case POWERPC_EXCP_HV_EMU
: return "HV_EMU";
98 case POWERPC_EXCP_HV_MAINT
: return "HV_MAINT";
99 case POWERPC_EXCP_HV_FU
: return "HV_FU";
100 case POWERPC_EXCP_SDOOR
: return "SDOOR";
101 case POWERPC_EXCP_SDOOR_HV
: return "SDOOR_HV";
102 case POWERPC_EXCP_HVIRT
: return "HVIRT";
103 case POWERPC_EXCP_SYSCALL_VECTORED
: return "SYSCALL_VECTORED";
105 g_assert_not_reached();
109 static void dump_syscall(CPUPPCState
*env
)
111 qemu_log_mask(CPU_LOG_INT
, "syscall r0=%016" PRIx64
112 " r3=%016" PRIx64
" r4=%016" PRIx64
" r5=%016" PRIx64
113 " r6=%016" PRIx64
" r7=%016" PRIx64
" r8=%016" PRIx64
114 " nip=" TARGET_FMT_lx
"\n",
115 ppc_dump_gpr(env
, 0), ppc_dump_gpr(env
, 3),
116 ppc_dump_gpr(env
, 4), ppc_dump_gpr(env
, 5),
117 ppc_dump_gpr(env
, 6), ppc_dump_gpr(env
, 7),
118 ppc_dump_gpr(env
, 8), env
->nip
);
121 static void dump_hcall(CPUPPCState
*env
)
123 qemu_log_mask(CPU_LOG_INT
, "hypercall r3=%016" PRIx64
124 " r4=%016" PRIx64
" r5=%016" PRIx64
" r6=%016" PRIx64
125 " r7=%016" PRIx64
" r8=%016" PRIx64
" r9=%016" PRIx64
126 " r10=%016" PRIx64
" r11=%016" PRIx64
" r12=%016" PRIx64
127 " nip=" TARGET_FMT_lx
"\n",
128 ppc_dump_gpr(env
, 3), ppc_dump_gpr(env
, 4),
129 ppc_dump_gpr(env
, 5), ppc_dump_gpr(env
, 6),
130 ppc_dump_gpr(env
, 7), ppc_dump_gpr(env
, 8),
131 ppc_dump_gpr(env
, 9), ppc_dump_gpr(env
, 10),
132 ppc_dump_gpr(env
, 11), ppc_dump_gpr(env
, 12),
136 static void ppc_excp_debug_sw_tlb(CPUPPCState
*env
, int excp
)
139 target_ulong
*miss
, *cmp
;
142 if (!qemu_loglevel_mask(CPU_LOG_MMU
)) {
146 if (excp
== POWERPC_EXCP_IFTLB
) {
149 miss
= &env
->spr
[SPR_IMISS
];
150 cmp
= &env
->spr
[SPR_ICMP
];
152 if (excp
== POWERPC_EXCP_DLTLB
) {
158 miss
= &env
->spr
[SPR_DMISS
];
159 cmp
= &env
->spr
[SPR_DCMP
];
161 qemu_log("6xx %sTLB miss: %cM " TARGET_FMT_lx
" %cC "
162 TARGET_FMT_lx
" H1 " TARGET_FMT_lx
" H2 "
163 TARGET_FMT_lx
" %08x\n", es
, en
, *miss
, en
, *cmp
,
164 env
->spr
[SPR_HASH1
], env
->spr
[SPR_HASH2
],
168 #if defined(TARGET_PPC64)
169 static int powerpc_reset_wakeup(CPUState
*cs
, CPUPPCState
*env
, int excp
,
172 /* We no longer are in a PM state */
173 env
->resume_as_sreset
= false;
175 /* Pretend to be returning from doze always as we don't lose state */
176 *msr
|= SRR1_WS_NOLOSS
;
178 /* Machine checks are sent normally */
179 if (excp
== POWERPC_EXCP_MCHECK
) {
183 case POWERPC_EXCP_RESET
:
184 *msr
|= SRR1_WAKERESET
;
186 case POWERPC_EXCP_EXTERNAL
:
189 case POWERPC_EXCP_DECR
:
190 *msr
|= SRR1_WAKEDEC
;
192 case POWERPC_EXCP_SDOOR
:
193 *msr
|= SRR1_WAKEDBELL
;
195 case POWERPC_EXCP_SDOOR_HV
:
196 *msr
|= SRR1_WAKEHDBELL
;
198 case POWERPC_EXCP_HV_MAINT
:
199 *msr
|= SRR1_WAKEHMI
;
201 case POWERPC_EXCP_HVIRT
:
202 *msr
|= SRR1_WAKEHVI
;
205 cpu_abort(cs
, "Unsupported exception %d in Power Save mode\n",
208 return POWERPC_EXCP_RESET
;
212 * AIL - Alternate Interrupt Location, a mode that allows interrupts to be
213 * taken with the MMU on, and which uses an alternate location (e.g., so the
214 * kernel/hv can map the vectors there with an effective address).
216 * An interrupt is considered to be taken "with AIL" or "AIL applies" if they
217 * are delivered in this way. AIL requires the LPCR to be set to enable this
218 * mode, and then a number of conditions have to be true for AIL to apply.
220 * First of all, SRESET, MCE, and HMI are always delivered without AIL, because
221 * they specifically want to be in real mode (e.g., the MCE might be signaling
222 * a SLB multi-hit which requires SLB flush before the MMU can be enabled).
224 * After that, behaviour depends on the current MSR[IR], MSR[DR], MSR[HV],
225 * whether or not the interrupt changes MSR[HV] from 0 to 1, and the current
226 * radix mode (LPCR[HR]).
228 * POWER8, POWER9 with LPCR[HR]=0
229 * | LPCR[AIL] | MSR[IR||DR] | MSR[HV] | new MSR[HV] | AIL |
230 * +-----------+-------------+---------+-------------+-----+
231 * | a | 00/01/10 | x | x | 0 |
232 * | a | 11 | 0 | 1 | 0 |
233 * | a | 11 | 1 | 1 | a |
234 * | a | 11 | 0 | 0 | a |
235 * +-------------------------------------------------------+
237 * POWER9 with LPCR[HR]=1
238 * | LPCR[AIL] | MSR[IR||DR] | MSR[HV] | new MSR[HV] | AIL |
239 * +-----------+-------------+---------+-------------+-----+
240 * | a | 00/01/10 | x | x | 0 |
241 * | a | 11 | x | x | a |
242 * +-------------------------------------------------------+
244 * The difference with POWER9 being that MSR[HV] 0->1 interrupts can be sent to
245 * the hypervisor in AIL mode if the guest is radix. This is good for
246 * performance but allows the guest to influence the AIL of hypervisor
247 * interrupts using its MSR, and also the hypervisor must disallow guest
248 * interrupts (MSR[HV] 0->0) from using AIL if the hypervisor does not want to
249 * use AIL for its MSR[HV] 0->1 interrupts.
251 * POWER10 addresses those issues with a new LPCR[HAIL] bit that is applied to
252 * interrupts that begin execution with MSR[HV]=1 (so both MSR[HV] 0->1 and
255 * HAIL=1 is equivalent to AIL=3, for interrupts delivered with MSR[HV]=1.
257 * POWER10 behaviour is
258 * | LPCR[AIL] | LPCR[HAIL] | MSR[IR||DR] | MSR[HV] | new MSR[HV] | AIL |
259 * +-----------+------------+-------------+---------+-------------+-----+
260 * | a | h | 00/01/10 | 0 | 0 | 0 |
261 * | a | h | 11 | 0 | 0 | a |
262 * | a | h | x | 0 | 1 | h |
263 * | a | h | 00/01/10 | 1 | 1 | 0 |
264 * | a | h | 11 | 1 | 1 | h |
265 * +--------------------------------------------------------------------+
267 static void ppc_excp_apply_ail(PowerPCCPU
*cpu
, int excp
, target_ulong msr
,
268 target_ulong
*new_msr
, target_ulong
*vector
)
270 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cpu
);
271 CPUPPCState
*env
= &cpu
->env
;
272 bool mmu_all_on
= ((msr
>> MSR_IR
) & 1) && ((msr
>> MSR_DR
) & 1);
273 bool hv_escalation
= !(msr
& MSR_HVB
) && (*new_msr
& MSR_HVB
);
276 if (excp
== POWERPC_EXCP_MCHECK
||
277 excp
== POWERPC_EXCP_RESET
||
278 excp
== POWERPC_EXCP_HV_MAINT
) {
279 /* SRESET, MCE, HMI never apply AIL */
283 if (!(pcc
->lpcr_mask
& LPCR_AIL
)) {
284 /* This CPU does not have AIL */
289 if (!(pcc
->lpcr_mask
& LPCR_HAIL
)) {
291 /* AIL only works if MSR[IR] and MSR[DR] are both enabled. */
294 if (hv_escalation
&& !(env
->spr
[SPR_LPCR
] & LPCR_HR
)) {
296 * AIL does not work if there is a MSR[HV] 0->1 transition and the
297 * partition is in HPT mode. For radix guests, such interrupts are
298 * allowed to be delivered to the hypervisor in ail mode.
303 ail
= (env
->spr
[SPR_LPCR
] & LPCR_AIL
) >> LPCR_AIL_SHIFT
;
308 /* AIL=1 is reserved, treat it like AIL=0 */
314 if (!mmu_all_on
&& !hv_escalation
) {
316 * AIL works for HV interrupts even with guest MSR[IR/DR] disabled.
317 * Guest->guest and HV->HV interrupts do require MMU on.
322 if (*new_msr
& MSR_HVB
) {
323 if (!(env
->spr
[SPR_LPCR
] & LPCR_HAIL
)) {
324 /* HV interrupts depend on LPCR[HAIL] */
327 ail
= 3; /* HAIL=1 gives AIL=3 behaviour for HV interrupts */
329 ail
= (env
->spr
[SPR_LPCR
] & LPCR_AIL
) >> LPCR_AIL_SHIFT
;
334 if (ail
== 1 || ail
== 2) {
335 /* AIL=1 and AIL=2 are reserved, treat them like AIL=0 */
341 * AIL applies, so the new MSR gets IR and DR set, and an offset applied
344 *new_msr
|= (1 << MSR_IR
) | (1 << MSR_DR
);
346 if (excp
!= POWERPC_EXCP_SYSCALL_VECTORED
) {
348 *vector
|= 0x0000000000018000ull
;
349 } else if (ail
== 3) {
350 *vector
|= 0xc000000000004000ull
;
354 * scv AIL is a little different. AIL=2 does not change the address,
355 * only the MSR. AIL=3 replaces the 0x17000 base with 0xc...3000.
358 *vector
&= ~0x0000000000017000ull
; /* Un-apply the base offset */
359 *vector
|= 0xc000000000003000ull
; /* Apply scv's AIL=3 offset */
365 static void powerpc_reset_excp_state(PowerPCCPU
*cpu
)
367 CPUState
*cs
= CPU(cpu
);
368 CPUPPCState
*env
= &cpu
->env
;
370 /* Reset exception state */
371 cs
->exception_index
= POWERPC_EXCP_NONE
;
375 static void powerpc_set_excp_state(PowerPCCPU
*cpu
, target_ulong vector
,
378 CPUPPCState
*env
= &cpu
->env
;
380 assert((msr
& env
->msr_mask
) == msr
);
383 * We don't use hreg_store_msr here as already have treated any
384 * special case that could occur. Just store MSR and update hflags
386 * Note: We *MUST* not use hreg_store_msr() as-is anyway because it
387 * will prevent setting of the HV bit which some exceptions might need
392 hreg_compute_hflags(env
);
393 ppc_maybe_interrupt(env
);
395 powerpc_reset_excp_state(cpu
);
398 * Any interrupt is context synchronizing, check if TCG TLB needs
399 * a delayed flush on ppc64
401 check_tlb_flush(env
, false);
403 /* Reset the reservation */
404 env
->reserve_addr
= -1;
407 static void powerpc_excp_40x(PowerPCCPU
*cpu
, int excp
)
409 CPUState
*cs
= CPU(cpu
);
410 CPUPPCState
*env
= &cpu
->env
;
411 target_ulong msr
, new_msr
, vector
;
414 /* new srr1 value excluding must-be-zero bits */
415 msr
= env
->msr
& ~0x783f0000ULL
;
418 * new interrupt handler msr preserves existing ME unless
419 * explicitly overriden.
421 new_msr
= env
->msr
& (((target_ulong
)1 << MSR_ME
));
423 /* target registers */
428 * Hypervisor emulation assistance interrupt only exists on server
429 * arch 2.05 server or later.
431 if (excp
== POWERPC_EXCP_HV_EMU
) {
432 excp
= POWERPC_EXCP_PROGRAM
;
435 vector
= env
->excp_vectors
[excp
];
436 if (vector
== (target_ulong
)-1ULL) {
437 cpu_abort(cs
, "Raised an exception without defined vector %d\n",
441 vector
|= env
->excp_prefix
;
444 case POWERPC_EXCP_CRITICAL
: /* Critical input */
448 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
449 if (!FIELD_EX64(env
->msr
, MSR
, ME
)) {
451 * Machine check exception is not enabled. Enter
454 fprintf(stderr
, "Machine check while not allowed. "
455 "Entering checkstop state\n");
456 if (qemu_log_separate()) {
457 qemu_log("Machine check while not allowed. "
458 "Entering checkstop state\n");
461 cpu_interrupt_exittb(cs
);
464 /* machine check exceptions don't have ME set */
465 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
470 case POWERPC_EXCP_DSI
: /* Data storage exception */
471 trace_ppc_excp_dsi(env
->spr
[SPR_40x_ESR
], env
->spr
[SPR_40x_DEAR
]);
473 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
474 trace_ppc_excp_isi(msr
, env
->nip
);
476 case POWERPC_EXCP_EXTERNAL
: /* External input */
478 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
480 case POWERPC_EXCP_PROGRAM
: /* Program exception */
481 switch (env
->error_code
& ~0xF) {
482 case POWERPC_EXCP_FP
:
483 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
484 trace_ppc_excp_fp_ignore();
485 powerpc_reset_excp_state(cpu
);
488 env
->spr
[SPR_40x_ESR
] = ESR_FP
;
490 case POWERPC_EXCP_INVAL
:
491 trace_ppc_excp_inval(env
->nip
);
492 env
->spr
[SPR_40x_ESR
] = ESR_PIL
;
494 case POWERPC_EXCP_PRIV
:
495 env
->spr
[SPR_40x_ESR
] = ESR_PPR
;
497 case POWERPC_EXCP_TRAP
:
498 env
->spr
[SPR_40x_ESR
] = ESR_PTR
;
501 cpu_abort(cs
, "Invalid program exception %d. Aborting\n",
506 case POWERPC_EXCP_SYSCALL
: /* System call exception */
510 * We need to correct the NIP which in this case is supposed
511 * to point to the next instruction
515 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
516 trace_ppc_excp_print("FIT");
518 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
519 trace_ppc_excp_print("WDT");
521 case POWERPC_EXCP_DTLB
: /* Data TLB error */
522 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
524 case POWERPC_EXCP_PIT
: /* Programmable interval timer interrupt */
525 trace_ppc_excp_print("PIT");
527 case POWERPC_EXCP_DEBUG
: /* Debug interrupt */
528 cpu_abort(cs
, "%s exception not implemented\n",
529 powerpc_excp_name(excp
));
532 cpu_abort(cs
, "Invalid PowerPC exception %d. Aborting\n", excp
);
537 env
->spr
[srr0
] = env
->nip
;
540 env
->spr
[srr1
] = msr
;
542 powerpc_set_excp_state(cpu
, vector
, new_msr
);
545 static void powerpc_excp_6xx(PowerPCCPU
*cpu
, int excp
)
547 CPUState
*cs
= CPU(cpu
);
548 CPUPPCState
*env
= &cpu
->env
;
549 target_ulong msr
, new_msr
, vector
;
551 /* new srr1 value excluding must-be-zero bits */
552 msr
= env
->msr
& ~0x783f0000ULL
;
555 * new interrupt handler msr preserves existing ME unless
556 * explicitly overriden
558 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
561 * Hypervisor emulation assistance interrupt only exists on server
562 * arch 2.05 server or later.
564 if (excp
== POWERPC_EXCP_HV_EMU
) {
565 excp
= POWERPC_EXCP_PROGRAM
;
568 vector
= env
->excp_vectors
[excp
];
569 if (vector
== (target_ulong
)-1ULL) {
570 cpu_abort(cs
, "Raised an exception without defined vector %d\n",
574 vector
|= env
->excp_prefix
;
577 case POWERPC_EXCP_CRITICAL
: /* Critical input */
579 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
580 if (!FIELD_EX64(env
->msr
, MSR
, ME
)) {
582 * Machine check exception is not enabled. Enter
585 fprintf(stderr
, "Machine check while not allowed. "
586 "Entering checkstop state\n");
587 if (qemu_log_separate()) {
588 qemu_log("Machine check while not allowed. "
589 "Entering checkstop state\n");
592 cpu_interrupt_exittb(cs
);
595 /* machine check exceptions don't have ME set */
596 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
599 case POWERPC_EXCP_DSI
: /* Data storage exception */
600 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
602 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
603 trace_ppc_excp_isi(msr
, env
->nip
);
604 msr
|= env
->error_code
;
606 case POWERPC_EXCP_EXTERNAL
: /* External input */
608 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
609 /* Get rS/rD and rA from faulting opcode */
611 * Note: the opcode fields will not be set properly for a
612 * direct store load/store, but nobody cares as nobody
613 * actually uses direct store segments.
615 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
617 case POWERPC_EXCP_PROGRAM
: /* Program exception */
618 switch (env
->error_code
& ~0xF) {
619 case POWERPC_EXCP_FP
:
620 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
621 trace_ppc_excp_fp_ignore();
622 powerpc_reset_excp_state(cpu
);
627 * FP exceptions always have NIP pointing to the faulting
628 * instruction, so always use store_next and claim we are
629 * precise in the MSR.
633 case POWERPC_EXCP_INVAL
:
634 trace_ppc_excp_inval(env
->nip
);
637 case POWERPC_EXCP_PRIV
:
640 case POWERPC_EXCP_TRAP
:
644 /* Should never occur */
645 cpu_abort(cs
, "Invalid program exception %d. Aborting\n",
650 case POWERPC_EXCP_SYSCALL
: /* System call exception */
654 * We need to correct the NIP which in this case is supposed
655 * to point to the next instruction
659 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
660 case POWERPC_EXCP_DECR
: /* Decrementer exception */
662 case POWERPC_EXCP_DTLB
: /* Data TLB error */
663 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
665 case POWERPC_EXCP_RESET
: /* System reset exception */
666 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
667 cpu_abort(cs
, "Trying to deliver power-saving system reset "
668 "exception %d with no HV support\n", excp
);
671 case POWERPC_EXCP_TRACE
: /* Trace exception */
673 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
674 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
675 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
676 /* Swap temporary saved registers with GPRs */
677 if (!(new_msr
& ((target_ulong
)1 << MSR_TGPR
))) {
678 new_msr
|= (target_ulong
)1 << MSR_TGPR
;
679 hreg_swap_gpr_tgpr(env
);
682 ppc_excp_debug_sw_tlb(env
, excp
);
684 msr
|= env
->crf
[0] << 28;
685 msr
|= env
->error_code
; /* key, D/I, S/L bits */
686 /* Set way using a LRU mechanism */
687 msr
|= ((env
->last_way
+ 1) & (env
->nb_ways
- 1)) << 17;
689 case POWERPC_EXCP_FPA
: /* Floating-point assist exception */
690 case POWERPC_EXCP_DABR
: /* Data address breakpoint */
691 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
692 case POWERPC_EXCP_SMI
: /* System management interrupt */
693 case POWERPC_EXCP_MEXTBR
: /* Maskable external breakpoint */
694 case POWERPC_EXCP_NMEXTBR
: /* Non maskable external breakpoint */
695 cpu_abort(cs
, "%s exception not implemented\n",
696 powerpc_excp_name(excp
));
699 cpu_abort(cs
, "Invalid PowerPC exception %d. Aborting\n", excp
);
704 * Sort out endianness of interrupt, this differs depending on the
705 * CPU, the HV mode, etc...
707 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
708 new_msr
|= (target_ulong
)1 << MSR_LE
;
712 env
->spr
[SPR_SRR0
] = env
->nip
;
715 env
->spr
[SPR_SRR1
] = msr
;
717 powerpc_set_excp_state(cpu
, vector
, new_msr
);
720 static void powerpc_excp_7xx(PowerPCCPU
*cpu
, int excp
)
722 CPUState
*cs
= CPU(cpu
);
723 CPUPPCState
*env
= &cpu
->env
;
724 target_ulong msr
, new_msr
, vector
;
726 /* new srr1 value excluding must-be-zero bits */
727 msr
= env
->msr
& ~0x783f0000ULL
;
730 * new interrupt handler msr preserves existing ME unless
731 * explicitly overriden
733 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
736 * Hypervisor emulation assistance interrupt only exists on server
737 * arch 2.05 server or later.
739 if (excp
== POWERPC_EXCP_HV_EMU
) {
740 excp
= POWERPC_EXCP_PROGRAM
;
743 vector
= env
->excp_vectors
[excp
];
744 if (vector
== (target_ulong
)-1ULL) {
745 cpu_abort(cs
, "Raised an exception without defined vector %d\n",
749 vector
|= env
->excp_prefix
;
752 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
753 if (!FIELD_EX64(env
->msr
, MSR
, ME
)) {
755 * Machine check exception is not enabled. Enter
758 fprintf(stderr
, "Machine check while not allowed. "
759 "Entering checkstop state\n");
760 if (qemu_log_separate()) {
761 qemu_log("Machine check while not allowed. "
762 "Entering checkstop state\n");
765 cpu_interrupt_exittb(cs
);
768 /* machine check exceptions don't have ME set */
769 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
772 case POWERPC_EXCP_DSI
: /* Data storage exception */
773 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
775 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
776 trace_ppc_excp_isi(msr
, env
->nip
);
777 msr
|= env
->error_code
;
779 case POWERPC_EXCP_EXTERNAL
: /* External input */
781 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
782 /* Get rS/rD and rA from faulting opcode */
784 * Note: the opcode fields will not be set properly for a
785 * direct store load/store, but nobody cares as nobody
786 * actually uses direct store segments.
788 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
790 case POWERPC_EXCP_PROGRAM
: /* Program exception */
791 switch (env
->error_code
& ~0xF) {
792 case POWERPC_EXCP_FP
:
793 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
794 trace_ppc_excp_fp_ignore();
795 powerpc_reset_excp_state(cpu
);
800 * FP exceptions always have NIP pointing to the faulting
801 * instruction, so always use store_next and claim we are
802 * precise in the MSR.
806 case POWERPC_EXCP_INVAL
:
807 trace_ppc_excp_inval(env
->nip
);
810 case POWERPC_EXCP_PRIV
:
813 case POWERPC_EXCP_TRAP
:
817 /* Should never occur */
818 cpu_abort(cs
, "Invalid program exception %d. Aborting\n",
823 case POWERPC_EXCP_SYSCALL
: /* System call exception */
825 int lev
= env
->error_code
;
827 if (lev
== 1 && cpu
->vhyp
) {
834 * We need to correct the NIP which in this case is supposed
835 * to point to the next instruction
840 * The Virtual Open Firmware (VOF) relies on the 'sc 1'
841 * instruction to communicate with QEMU. The pegasos2 machine
842 * uses VOF and the 7xx CPUs, so although the 7xx don't have
843 * HV mode, we need to keep hypercall support.
845 if (lev
== 1 && cpu
->vhyp
) {
846 PPCVirtualHypervisorClass
*vhc
=
847 PPC_VIRTUAL_HYPERVISOR_GET_CLASS(cpu
->vhyp
);
848 vhc
->hypercall(cpu
->vhyp
, cpu
);
854 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
855 case POWERPC_EXCP_DECR
: /* Decrementer exception */
857 case POWERPC_EXCP_RESET
: /* System reset exception */
858 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
859 cpu_abort(cs
, "Trying to deliver power-saving system reset "
860 "exception %d with no HV support\n", excp
);
863 case POWERPC_EXCP_TRACE
: /* Trace exception */
865 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
866 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
867 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
868 ppc_excp_debug_sw_tlb(env
, excp
);
870 msr
|= env
->crf
[0] << 28;
871 msr
|= env
->error_code
; /* key, D/I, S/L bits */
872 /* Set way using a LRU mechanism */
873 msr
|= ((env
->last_way
+ 1) & (env
->nb_ways
- 1)) << 17;
876 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
877 case POWERPC_EXCP_SMI
: /* System management interrupt */
878 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
879 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor interrupt */
880 cpu_abort(cs
, "%s exception not implemented\n",
881 powerpc_excp_name(excp
));
884 cpu_abort(cs
, "Invalid PowerPC exception %d. Aborting\n", excp
);
889 * Sort out endianness of interrupt, this differs depending on the
890 * CPU, the HV mode, etc...
892 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
893 new_msr
|= (target_ulong
)1 << MSR_LE
;
897 env
->spr
[SPR_SRR0
] = env
->nip
;
900 env
->spr
[SPR_SRR1
] = msr
;
902 powerpc_set_excp_state(cpu
, vector
, new_msr
);
905 static void powerpc_excp_74xx(PowerPCCPU
*cpu
, int excp
)
907 CPUState
*cs
= CPU(cpu
);
908 CPUPPCState
*env
= &cpu
->env
;
909 target_ulong msr
, new_msr
, vector
;
911 /* new srr1 value excluding must-be-zero bits */
912 msr
= env
->msr
& ~0x783f0000ULL
;
915 * new interrupt handler msr preserves existing ME unless
916 * explicitly overriden
918 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
921 * Hypervisor emulation assistance interrupt only exists on server
922 * arch 2.05 server or later.
924 if (excp
== POWERPC_EXCP_HV_EMU
) {
925 excp
= POWERPC_EXCP_PROGRAM
;
928 vector
= env
->excp_vectors
[excp
];
929 if (vector
== (target_ulong
)-1ULL) {
930 cpu_abort(cs
, "Raised an exception without defined vector %d\n",
934 vector
|= env
->excp_prefix
;
937 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
938 if (!FIELD_EX64(env
->msr
, MSR
, ME
)) {
940 * Machine check exception is not enabled. Enter
943 fprintf(stderr
, "Machine check while not allowed. "
944 "Entering checkstop state\n");
945 if (qemu_log_separate()) {
946 qemu_log("Machine check while not allowed. "
947 "Entering checkstop state\n");
950 cpu_interrupt_exittb(cs
);
953 /* machine check exceptions don't have ME set */
954 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
957 case POWERPC_EXCP_DSI
: /* Data storage exception */
958 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
960 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
961 trace_ppc_excp_isi(msr
, env
->nip
);
962 msr
|= env
->error_code
;
964 case POWERPC_EXCP_EXTERNAL
: /* External input */
966 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
967 /* Get rS/rD and rA from faulting opcode */
969 * Note: the opcode fields will not be set properly for a
970 * direct store load/store, but nobody cares as nobody
971 * actually uses direct store segments.
973 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
975 case POWERPC_EXCP_PROGRAM
: /* Program exception */
976 switch (env
->error_code
& ~0xF) {
977 case POWERPC_EXCP_FP
:
978 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
979 trace_ppc_excp_fp_ignore();
980 powerpc_reset_excp_state(cpu
);
985 * FP exceptions always have NIP pointing to the faulting
986 * instruction, so always use store_next and claim we are
987 * precise in the MSR.
991 case POWERPC_EXCP_INVAL
:
992 trace_ppc_excp_inval(env
->nip
);
995 case POWERPC_EXCP_PRIV
:
998 case POWERPC_EXCP_TRAP
:
1002 /* Should never occur */
1003 cpu_abort(cs
, "Invalid program exception %d. Aborting\n",
1008 case POWERPC_EXCP_SYSCALL
: /* System call exception */
1010 int lev
= env
->error_code
;
1012 if ((lev
== 1) && cpu
->vhyp
) {
1019 * We need to correct the NIP which in this case is supposed
1020 * to point to the next instruction
1025 * The Virtual Open Firmware (VOF) relies on the 'sc 1'
1026 * instruction to communicate with QEMU. The pegasos2 machine
1027 * uses VOF and the 74xx CPUs, so although the 74xx don't have
1028 * HV mode, we need to keep hypercall support.
1030 if ((lev
== 1) && cpu
->vhyp
) {
1031 PPCVirtualHypervisorClass
*vhc
=
1032 PPC_VIRTUAL_HYPERVISOR_GET_CLASS(cpu
->vhyp
);
1033 vhc
->hypercall(cpu
->vhyp
, cpu
);
1039 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
1040 case POWERPC_EXCP_DECR
: /* Decrementer exception */
1042 case POWERPC_EXCP_RESET
: /* System reset exception */
1043 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
1044 cpu_abort(cs
, "Trying to deliver power-saving system reset "
1045 "exception %d with no HV support\n", excp
);
1048 case POWERPC_EXCP_TRACE
: /* Trace exception */
1050 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
1052 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
1053 case POWERPC_EXCP_SMI
: /* System management interrupt */
1054 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
1055 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor interrupt */
1056 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
1057 cpu_abort(cs
, "%s exception not implemented\n",
1058 powerpc_excp_name(excp
));
1061 cpu_abort(cs
, "Invalid PowerPC exception %d. Aborting\n", excp
);
1066 * Sort out endianness of interrupt, this differs depending on the
1067 * CPU, the HV mode, etc...
1069 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
1070 new_msr
|= (target_ulong
)1 << MSR_LE
;
1074 env
->spr
[SPR_SRR0
] = env
->nip
;
1077 env
->spr
[SPR_SRR1
] = msr
;
1079 powerpc_set_excp_state(cpu
, vector
, new_msr
);
1082 static void powerpc_excp_booke(PowerPCCPU
*cpu
, int excp
)
1084 CPUState
*cs
= CPU(cpu
);
1085 CPUPPCState
*env
= &cpu
->env
;
1086 target_ulong msr
, new_msr
, vector
;
1092 * new interrupt handler msr preserves existing ME unless
1093 * explicitly overriden
1095 new_msr
= env
->msr
& ((target_ulong
)1 << MSR_ME
);
1097 /* target registers */
1102 * Hypervisor emulation assistance interrupt only exists on server
1103 * arch 2.05 server or later.
1105 if (excp
== POWERPC_EXCP_HV_EMU
) {
1106 excp
= POWERPC_EXCP_PROGRAM
;
1111 * SPEU and VPU share the same IVOR but they exist in different
1112 * processors. SPEU is e500v1/2 only and VPU is e6500 only.
1114 if (excp
== POWERPC_EXCP_VPU
) {
1115 excp
= POWERPC_EXCP_SPEU
;
1119 vector
= env
->excp_vectors
[excp
];
1120 if (vector
== (target_ulong
)-1ULL) {
1121 cpu_abort(cs
, "Raised an exception without defined vector %d\n",
1125 vector
|= env
->excp_prefix
;
1128 case POWERPC_EXCP_CRITICAL
: /* Critical input */
1129 srr0
= SPR_BOOKE_CSRR0
;
1130 srr1
= SPR_BOOKE_CSRR1
;
1132 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
1133 if (!FIELD_EX64(env
->msr
, MSR
, ME
)) {
1135 * Machine check exception is not enabled. Enter
1138 fprintf(stderr
, "Machine check while not allowed. "
1139 "Entering checkstop state\n");
1140 if (qemu_log_separate()) {
1141 qemu_log("Machine check while not allowed. "
1142 "Entering checkstop state\n");
1145 cpu_interrupt_exittb(cs
);
1148 /* machine check exceptions don't have ME set */
1149 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
1151 /* FIXME: choose one or the other based on CPU type */
1152 srr0
= SPR_BOOKE_MCSRR0
;
1153 srr1
= SPR_BOOKE_MCSRR1
;
1155 env
->spr
[SPR_BOOKE_CSRR0
] = env
->nip
;
1156 env
->spr
[SPR_BOOKE_CSRR1
] = msr
;
1159 case POWERPC_EXCP_DSI
: /* Data storage exception */
1160 trace_ppc_excp_dsi(env
->spr
[SPR_BOOKE_ESR
], env
->spr
[SPR_BOOKE_DEAR
]);
1162 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
1163 trace_ppc_excp_isi(msr
, env
->nip
);
1165 case POWERPC_EXCP_EXTERNAL
: /* External input */
1166 if (env
->mpic_proxy
) {
1167 /* IACK the IRQ on delivery */
1168 env
->spr
[SPR_BOOKE_EPR
] = ldl_phys(cs
->as
, env
->mpic_iack
);
1171 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
1173 case POWERPC_EXCP_PROGRAM
: /* Program exception */
1174 switch (env
->error_code
& ~0xF) {
1175 case POWERPC_EXCP_FP
:
1176 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
1177 trace_ppc_excp_fp_ignore();
1178 powerpc_reset_excp_state(cpu
);
1183 * FP exceptions always have NIP pointing to the faulting
1184 * instruction, so always use store_next and claim we are
1185 * precise in the MSR.
1188 env
->spr
[SPR_BOOKE_ESR
] = ESR_FP
;
1190 case POWERPC_EXCP_INVAL
:
1191 trace_ppc_excp_inval(env
->nip
);
1193 env
->spr
[SPR_BOOKE_ESR
] = ESR_PIL
;
1195 case POWERPC_EXCP_PRIV
:
1197 env
->spr
[SPR_BOOKE_ESR
] = ESR_PPR
;
1199 case POWERPC_EXCP_TRAP
:
1201 env
->spr
[SPR_BOOKE_ESR
] = ESR_PTR
;
1204 /* Should never occur */
1205 cpu_abort(cs
, "Invalid program exception %d. Aborting\n",
1210 case POWERPC_EXCP_SYSCALL
: /* System call exception */
1214 * We need to correct the NIP which in this case is supposed
1215 * to point to the next instruction
1219 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
1220 case POWERPC_EXCP_APU
: /* Auxiliary processor unavailable */
1221 case POWERPC_EXCP_DECR
: /* Decrementer exception */
1223 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
1225 trace_ppc_excp_print("FIT");
1227 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
1228 trace_ppc_excp_print("WDT");
1229 srr0
= SPR_BOOKE_CSRR0
;
1230 srr1
= SPR_BOOKE_CSRR1
;
1232 case POWERPC_EXCP_DTLB
: /* Data TLB error */
1233 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
1235 case POWERPC_EXCP_DEBUG
: /* Debug interrupt */
1236 if (env
->flags
& POWERPC_FLAG_DE
) {
1237 /* FIXME: choose one or the other based on CPU type */
1238 srr0
= SPR_BOOKE_DSRR0
;
1239 srr1
= SPR_BOOKE_DSRR1
;
1241 env
->spr
[SPR_BOOKE_CSRR0
] = env
->nip
;
1242 env
->spr
[SPR_BOOKE_CSRR1
] = msr
;
1244 /* DBSR already modified by caller */
1246 cpu_abort(cs
, "Debug exception triggered on unsupported model\n");
1249 case POWERPC_EXCP_SPEU
: /* SPE/embedded floating-point unavailable/VPU */
1250 env
->spr
[SPR_BOOKE_ESR
] = ESR_SPV
;
1252 case POWERPC_EXCP_DOORI
: /* Embedded doorbell interrupt */
1254 case POWERPC_EXCP_DOORCI
: /* Embedded doorbell critical interrupt */
1255 srr0
= SPR_BOOKE_CSRR0
;
1256 srr1
= SPR_BOOKE_CSRR1
;
1258 case POWERPC_EXCP_RESET
: /* System reset exception */
1259 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
1260 cpu_abort(cs
, "Trying to deliver power-saving system reset "
1261 "exception %d with no HV support\n", excp
);
1264 case POWERPC_EXCP_EFPDI
: /* Embedded floating-point data interrupt */
1265 case POWERPC_EXCP_EFPRI
: /* Embedded floating-point round interrupt */
1266 cpu_abort(cs
, "%s exception not implemented\n",
1267 powerpc_excp_name(excp
));
1270 cpu_abort(cs
, "Invalid PowerPC exception %d. Aborting\n", excp
);
1274 #if defined(TARGET_PPC64)
1275 if (env
->spr
[SPR_BOOKE_EPCR
] & EPCR_ICM
) {
1276 /* Cat.64-bit: EPCR.ICM is copied to MSR.CM */
1277 new_msr
|= (target_ulong
)1 << MSR_CM
;
1279 vector
= (uint32_t)vector
;
1284 env
->spr
[srr0
] = env
->nip
;
1287 env
->spr
[srr1
] = msr
;
1289 powerpc_set_excp_state(cpu
, vector
, new_msr
);
1293 * When running a nested HV guest under vhyp, external interrupts are
1294 * delivered as HVIRT.
1296 static bool books_vhyp_promotes_external_to_hvirt(PowerPCCPU
*cpu
)
1299 return vhyp_cpu_in_nested(cpu
);
1306 * When running under vhyp, hcalls are always intercepted and sent to the
1307 * vhc->hypercall handler.
1309 static bool books_vhyp_handles_hcall(PowerPCCPU
*cpu
)
1312 return !vhyp_cpu_in_nested(cpu
);
1318 * When running a nested KVM HV guest under vhyp, HV exceptions are not
1319 * delivered to the guest (because there is no concept of HV support), but
1320 * rather they are sent tothe vhyp to exit from the L2 back to the L1 and
1321 * return from the H_ENTER_NESTED hypercall.
1323 static bool books_vhyp_handles_hv_excp(PowerPCCPU
*cpu
)
1326 return vhyp_cpu_in_nested(cpu
);
1331 static void powerpc_excp_books(PowerPCCPU
*cpu
, int excp
)
1333 CPUState
*cs
= CPU(cpu
);
1334 CPUPPCState
*env
= &cpu
->env
;
1335 target_ulong msr
, new_msr
, vector
;
1336 int srr0
, srr1
, lev
= -1;
1338 /* new srr1 value excluding must-be-zero bits */
1339 msr
= env
->msr
& ~0x783f0000ULL
;
1342 * new interrupt handler msr preserves existing HV and ME unless
1343 * explicitly overriden
1345 new_msr
= env
->msr
& (((target_ulong
)1 << MSR_ME
) | MSR_HVB
);
1347 /* target registers */
1352 * check for special resume at 0x100 from doze/nap/sleep/winkle on
1355 if (env
->resume_as_sreset
) {
1356 excp
= powerpc_reset_wakeup(cs
, env
, excp
, &msr
);
1360 * We don't want to generate a Hypervisor Emulation Assistance
1361 * Interrupt if we don't have HVB in msr_mask (PAPR mode).
1363 if (excp
== POWERPC_EXCP_HV_EMU
&& !(env
->msr_mask
& MSR_HVB
)) {
1364 excp
= POWERPC_EXCP_PROGRAM
;
1367 vector
= env
->excp_vectors
[excp
];
1368 if (vector
== (target_ulong
)-1ULL) {
1369 cpu_abort(cs
, "Raised an exception without defined vector %d\n",
1373 vector
|= env
->excp_prefix
;
1376 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
1377 if (!FIELD_EX64(env
->msr
, MSR
, ME
)) {
1379 * Machine check exception is not enabled. Enter
1382 fprintf(stderr
, "Machine check while not allowed. "
1383 "Entering checkstop state\n");
1384 if (qemu_log_separate()) {
1385 qemu_log("Machine check while not allowed. "
1386 "Entering checkstop state\n");
1389 cpu_interrupt_exittb(cs
);
1391 if (env
->msr_mask
& MSR_HVB
) {
1393 * ISA specifies HV, but can be delivered to guest with HV
1394 * clear (e.g., see FWNMI in PAPR).
1396 new_msr
|= (target_ulong
)MSR_HVB
;
1399 /* machine check exceptions don't have ME set */
1400 new_msr
&= ~((target_ulong
)1 << MSR_ME
);
1403 case POWERPC_EXCP_DSI
: /* Data storage exception */
1404 trace_ppc_excp_dsi(env
->spr
[SPR_DSISR
], env
->spr
[SPR_DAR
]);
1406 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
1407 trace_ppc_excp_isi(msr
, env
->nip
);
1408 msr
|= env
->error_code
;
1410 case POWERPC_EXCP_EXTERNAL
: /* External input */
1415 * LPES0 is only taken into consideration if we support HV
1416 * mode for this CPU.
1418 if (!env
->has_hv_mode
) {
1422 lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1425 new_msr
|= (target_ulong
)MSR_HVB
;
1426 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1433 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
1434 /* Get rS/rD and rA from faulting opcode */
1436 * Note: the opcode fields will not be set properly for a
1437 * direct store load/store, but nobody cares as nobody
1438 * actually uses direct store segments.
1440 env
->spr
[SPR_DSISR
] |= (env
->error_code
& 0x03FF0000) >> 16;
1442 case POWERPC_EXCP_PROGRAM
: /* Program exception */
1443 switch (env
->error_code
& ~0xF) {
1444 case POWERPC_EXCP_FP
:
1445 if (!FIELD_EX64_FE(env
->msr
) || !FIELD_EX64(env
->msr
, MSR
, FP
)) {
1446 trace_ppc_excp_fp_ignore();
1447 powerpc_reset_excp_state(cpu
);
1452 * FP exceptions always have NIP pointing to the faulting
1453 * instruction, so always use store_next and claim we are
1454 * precise in the MSR.
1458 case POWERPC_EXCP_INVAL
:
1459 trace_ppc_excp_inval(env
->nip
);
1462 case POWERPC_EXCP_PRIV
:
1465 case POWERPC_EXCP_TRAP
:
1469 /* Should never occur */
1470 cpu_abort(cs
, "Invalid program exception %d. Aborting\n",
1475 case POWERPC_EXCP_SYSCALL
: /* System call exception */
1476 lev
= env
->error_code
;
1478 if ((lev
== 1) && cpu
->vhyp
) {
1485 * We need to correct the NIP which in this case is supposed
1486 * to point to the next instruction
1490 /* "PAPR mode" built-in hypercall emulation */
1491 if ((lev
== 1) && books_vhyp_handles_hcall(cpu
)) {
1492 PPCVirtualHypervisorClass
*vhc
=
1493 PPC_VIRTUAL_HYPERVISOR_GET_CLASS(cpu
->vhyp
);
1494 vhc
->hypercall(cpu
->vhyp
, cpu
);
1498 new_msr
|= (target_ulong
)MSR_HVB
;
1501 case POWERPC_EXCP_SYSCALL_VECTORED
: /* scv exception */
1502 lev
= env
->error_code
;
1505 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_EE
);
1506 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1508 vector
+= lev
* 0x20;
1513 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
1514 case POWERPC_EXCP_DECR
: /* Decrementer exception */
1516 case POWERPC_EXCP_RESET
: /* System reset exception */
1517 /* A power-saving exception sets ME, otherwise it is unchanged */
1518 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
1519 /* indicate that we resumed from power save mode */
1521 new_msr
|= ((target_ulong
)1 << MSR_ME
);
1523 if (env
->msr_mask
& MSR_HVB
) {
1525 * ISA specifies HV, but can be delivered to guest with HV
1526 * clear (e.g., see FWNMI in PAPR, NMI injection in QEMU).
1528 new_msr
|= (target_ulong
)MSR_HVB
;
1530 if (FIELD_EX64(env
->msr
, MSR
, POW
)) {
1531 cpu_abort(cs
, "Trying to deliver power-saving system reset "
1532 "exception %d with no HV support\n", excp
);
1536 case POWERPC_EXCP_DSEG
: /* Data segment exception */
1537 case POWERPC_EXCP_ISEG
: /* Instruction segment exception */
1538 case POWERPC_EXCP_TRACE
: /* Trace exception */
1540 case POWERPC_EXCP_HISI
: /* Hypervisor instruction storage exception */
1541 msr
|= env
->error_code
;
1543 case POWERPC_EXCP_HDECR
: /* Hypervisor decrementer exception */
1544 case POWERPC_EXCP_HDSI
: /* Hypervisor data storage exception */
1545 case POWERPC_EXCP_SDOOR_HV
: /* Hypervisor Doorbell interrupt */
1546 case POWERPC_EXCP_HV_EMU
:
1547 case POWERPC_EXCP_HVIRT
: /* Hypervisor virtualization */
1550 new_msr
|= (target_ulong
)MSR_HVB
;
1551 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1553 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
1554 case POWERPC_EXCP_VSXU
: /* VSX unavailable exception */
1555 case POWERPC_EXCP_FU
: /* Facility unavailable exception */
1556 env
->spr
[SPR_FSCR
] |= ((target_ulong
)env
->error_code
<< 56);
1558 case POWERPC_EXCP_HV_FU
: /* Hypervisor Facility Unavailable Exception */
1559 env
->spr
[SPR_HFSCR
] |= ((target_ulong
)env
->error_code
<< FSCR_IC_POS
);
1562 new_msr
|= (target_ulong
)MSR_HVB
;
1563 new_msr
|= env
->msr
& ((target_ulong
)1 << MSR_RI
);
1565 case POWERPC_EXCP_PERFM_EBB
: /* Performance Monitor EBB Exception */
1566 case POWERPC_EXCP_EXTERNAL_EBB
: /* External EBB Exception */
1567 env
->spr
[SPR_BESCR
] &= ~BESCR_GE
;
1570 * Save NIP for rfebb insn in SPR_EBBRR. Next nip is
1571 * stored in the EBB Handler SPR_EBBHR.
1573 env
->spr
[SPR_EBBRR
] = env
->nip
;
1574 powerpc_set_excp_state(cpu
, env
->spr
[SPR_EBBHR
], env
->msr
);
1577 * This exception is handled in userspace. No need to proceed.
1580 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
1581 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor interrupt */
1582 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
1583 case POWERPC_EXCP_MAINT
: /* Maintenance exception */
1584 case POWERPC_EXCP_SDOOR
: /* Doorbell interrupt */
1585 case POWERPC_EXCP_HV_MAINT
: /* Hypervisor Maintenance exception */
1586 cpu_abort(cs
, "%s exception not implemented\n",
1587 powerpc_excp_name(excp
));
1590 cpu_abort(cs
, "Invalid PowerPC exception %d. Aborting\n", excp
);
1595 * Sort out endianness of interrupt, this differs depending on the
1596 * CPU, the HV mode, etc...
1598 if (ppc_interrupts_little_endian(cpu
, !!(new_msr
& MSR_HVB
))) {
1599 new_msr
|= (target_ulong
)1 << MSR_LE
;
1602 new_msr
|= (target_ulong
)1 << MSR_SF
;
1604 if (excp
!= POWERPC_EXCP_SYSCALL_VECTORED
) {
1606 env
->spr
[srr0
] = env
->nip
;
1609 env
->spr
[srr1
] = msr
;
1612 if ((new_msr
& MSR_HVB
) && books_vhyp_handles_hv_excp(cpu
)) {
1613 PPCVirtualHypervisorClass
*vhc
=
1614 PPC_VIRTUAL_HYPERVISOR_GET_CLASS(cpu
->vhyp
);
1615 /* Deliver interrupt to L1 by returning from the H_ENTER_NESTED call */
1616 vhc
->deliver_hv_excp(cpu
, excp
);
1618 powerpc_reset_excp_state(cpu
);
1622 if (!(env
->msr_mask
& MSR_HVB
) && srr0
== SPR_HSRR0
) {
1623 cpu_abort(cs
, "Trying to deliver HV exception (HSRR) %d with "
1624 "no HV support\n", excp
);
1627 /* This can update new_msr and vector if AIL applies */
1628 ppc_excp_apply_ail(cpu
, excp
, msr
, &new_msr
, &vector
);
1630 powerpc_set_excp_state(cpu
, vector
, new_msr
);
1634 static inline void powerpc_excp_books(PowerPCCPU
*cpu
, int excp
)
1636 g_assert_not_reached();
1640 static void powerpc_excp(PowerPCCPU
*cpu
, int excp
)
1642 CPUState
*cs
= CPU(cpu
);
1643 CPUPPCState
*env
= &cpu
->env
;
1645 if (excp
<= POWERPC_EXCP_NONE
|| excp
>= POWERPC_EXCP_NB
) {
1646 cpu_abort(cs
, "Invalid PowerPC exception %d. Aborting\n", excp
);
1649 qemu_log_mask(CPU_LOG_INT
, "Raise exception at " TARGET_FMT_lx
1650 " => %s (%d) error=%02x\n", env
->nip
, powerpc_excp_name(excp
),
1651 excp
, env
->error_code
);
1653 switch (env
->excp_model
) {
1654 case POWERPC_EXCP_40x
:
1655 powerpc_excp_40x(cpu
, excp
);
1657 case POWERPC_EXCP_6xx
:
1658 powerpc_excp_6xx(cpu
, excp
);
1660 case POWERPC_EXCP_7xx
:
1661 powerpc_excp_7xx(cpu
, excp
);
1663 case POWERPC_EXCP_74xx
:
1664 powerpc_excp_74xx(cpu
, excp
);
1666 case POWERPC_EXCP_BOOKE
:
1667 powerpc_excp_booke(cpu
, excp
);
1669 case POWERPC_EXCP_970
:
1670 case POWERPC_EXCP_POWER7
:
1671 case POWERPC_EXCP_POWER8
:
1672 case POWERPC_EXCP_POWER9
:
1673 case POWERPC_EXCP_POWER10
:
1674 powerpc_excp_books(cpu
, excp
);
1677 g_assert_not_reached();
1681 void ppc_cpu_do_interrupt(CPUState
*cs
)
1683 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
1685 powerpc_excp(cpu
, cs
->exception_index
);
1688 #if defined(TARGET_PPC64)
1689 #define P7_UNUSED_INTERRUPTS \
1690 (PPC_INTERRUPT_RESET | PPC_INTERRUPT_HVIRT | PPC_INTERRUPT_CEXT | \
1691 PPC_INTERRUPT_WDT | PPC_INTERRUPT_CDOORBELL | PPC_INTERRUPT_FIT | \
1692 PPC_INTERRUPT_PIT | PPC_INTERRUPT_DOORBELL | PPC_INTERRUPT_HDOORBELL | \
1693 PPC_INTERRUPT_THERM | PPC_INTERRUPT_EBB)
1695 static int p7_interrupt_powersave(CPUPPCState
*env
)
1697 if ((env
->pending_interrupts
& PPC_INTERRUPT_EXT
) &&
1698 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE0
)) {
1699 return PPC_INTERRUPT_EXT
;
1701 if ((env
->pending_interrupts
& PPC_INTERRUPT_DECR
) &&
1702 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE1
)) {
1703 return PPC_INTERRUPT_DECR
;
1705 if ((env
->pending_interrupts
& PPC_INTERRUPT_MCK
) &&
1706 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE2
)) {
1707 return PPC_INTERRUPT_MCK
;
1709 if ((env
->pending_interrupts
& PPC_INTERRUPT_HMI
) &&
1710 (env
->spr
[SPR_LPCR
] & LPCR_P7_PECE2
)) {
1711 return PPC_INTERRUPT_HMI
;
1713 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
1714 return PPC_INTERRUPT_RESET
;
1719 static int p7_next_unmasked_interrupt(CPUPPCState
*env
)
1721 PowerPCCPU
*cpu
= env_archcpu(env
);
1722 CPUState
*cs
= CPU(cpu
);
1723 /* Ignore MSR[EE] when coming out of some power management states */
1724 bool msr_ee
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
1726 assert((env
->pending_interrupts
& P7_UNUSED_INTERRUPTS
) == 0);
1729 /* LPCR[PECE] controls which interrupts can exit power-saving mode */
1730 return p7_interrupt_powersave(env
);
1733 /* Machine check exception */
1734 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1735 return PPC_INTERRUPT_MCK
;
1738 /* Hypervisor decrementer exception */
1739 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
1740 /* LPCR will be clear when not supported so this will work */
1741 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
1742 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
1743 /* HDEC clears on delivery */
1744 return PPC_INTERRUPT_HDECR
;
1748 /* External interrupt can ignore MSR:EE under some circumstances */
1749 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
1750 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1751 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1752 /* HEIC blocks delivery to the hypervisor */
1753 if ((msr_ee
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
1754 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
1755 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
1756 return PPC_INTERRUPT_EXT
;
1760 /* Decrementer exception */
1761 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
1762 return PPC_INTERRUPT_DECR
;
1764 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
1765 return PPC_INTERRUPT_PERFM
;
1772 #define P8_UNUSED_INTERRUPTS \
1773 (PPC_INTERRUPT_RESET | PPC_INTERRUPT_DEBUG | PPC_INTERRUPT_HVIRT | \
1774 PPC_INTERRUPT_CEXT | PPC_INTERRUPT_WDT | PPC_INTERRUPT_CDOORBELL | \
1775 PPC_INTERRUPT_FIT | PPC_INTERRUPT_PIT | PPC_INTERRUPT_THERM)
1777 static int p8_interrupt_powersave(CPUPPCState
*env
)
1779 if ((env
->pending_interrupts
& PPC_INTERRUPT_EXT
) &&
1780 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE2
)) {
1781 return PPC_INTERRUPT_EXT
;
1783 if ((env
->pending_interrupts
& PPC_INTERRUPT_DECR
) &&
1784 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE3
)) {
1785 return PPC_INTERRUPT_DECR
;
1787 if ((env
->pending_interrupts
& PPC_INTERRUPT_MCK
) &&
1788 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE4
)) {
1789 return PPC_INTERRUPT_MCK
;
1791 if ((env
->pending_interrupts
& PPC_INTERRUPT_HMI
) &&
1792 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE4
)) {
1793 return PPC_INTERRUPT_HMI
;
1795 if ((env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) &&
1796 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE0
)) {
1797 return PPC_INTERRUPT_DOORBELL
;
1799 if ((env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) &&
1800 (env
->spr
[SPR_LPCR
] & LPCR_P8_PECE1
)) {
1801 return PPC_INTERRUPT_HDOORBELL
;
1803 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
1804 return PPC_INTERRUPT_RESET
;
1809 static int p8_next_unmasked_interrupt(CPUPPCState
*env
)
1811 PowerPCCPU
*cpu
= env_archcpu(env
);
1812 CPUState
*cs
= CPU(cpu
);
1813 /* Ignore MSR[EE] when coming out of some power management states */
1814 bool msr_ee
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
1816 assert((env
->pending_interrupts
& P8_UNUSED_INTERRUPTS
) == 0);
1819 /* LPCR[PECE] controls which interrupts can exit power-saving mode */
1820 return p8_interrupt_powersave(env
);
1823 /* Machine check exception */
1824 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1825 return PPC_INTERRUPT_MCK
;
1828 /* Hypervisor decrementer exception */
1829 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
1830 /* LPCR will be clear when not supported so this will work */
1831 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
1832 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
1833 /* HDEC clears on delivery */
1834 return PPC_INTERRUPT_HDECR
;
1838 /* External interrupt can ignore MSR:EE under some circumstances */
1839 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
1840 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1841 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1842 /* HEIC blocks delivery to the hypervisor */
1843 if ((msr_ee
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
1844 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
1845 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
1846 return PPC_INTERRUPT_EXT
;
1850 /* Decrementer exception */
1851 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
1852 return PPC_INTERRUPT_DECR
;
1854 if (env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) {
1855 return PPC_INTERRUPT_DOORBELL
;
1857 if (env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) {
1858 return PPC_INTERRUPT_HDOORBELL
;
1860 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
1861 return PPC_INTERRUPT_PERFM
;
1864 if (env
->pending_interrupts
& PPC_INTERRUPT_EBB
) {
1866 * EBB exception must be taken in problem state and
1867 * with BESCR_GE set.
1869 if (FIELD_EX64(env
->msr
, MSR
, PR
) &&
1870 (env
->spr
[SPR_BESCR
] & BESCR_GE
)) {
1871 return PPC_INTERRUPT_EBB
;
1879 #define P9_UNUSED_INTERRUPTS \
1880 (PPC_INTERRUPT_RESET | PPC_INTERRUPT_DEBUG | PPC_INTERRUPT_CEXT | \
1881 PPC_INTERRUPT_WDT | PPC_INTERRUPT_CDOORBELL | PPC_INTERRUPT_FIT | \
1882 PPC_INTERRUPT_PIT | PPC_INTERRUPT_THERM)
1884 static int p9_interrupt_powersave(CPUPPCState
*env
)
1886 /* External Exception */
1887 if ((env
->pending_interrupts
& PPC_INTERRUPT_EXT
) &&
1888 (env
->spr
[SPR_LPCR
] & LPCR_EEE
)) {
1889 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1890 if (!heic
|| !FIELD_EX64_HV(env
->msr
) ||
1891 FIELD_EX64(env
->msr
, MSR
, PR
)) {
1892 return PPC_INTERRUPT_EXT
;
1895 /* Decrementer Exception */
1896 if ((env
->pending_interrupts
& PPC_INTERRUPT_DECR
) &&
1897 (env
->spr
[SPR_LPCR
] & LPCR_DEE
)) {
1898 return PPC_INTERRUPT_DECR
;
1900 /* Machine Check or Hypervisor Maintenance Exception */
1901 if (env
->spr
[SPR_LPCR
] & LPCR_OEE
) {
1902 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1903 return PPC_INTERRUPT_MCK
;
1905 if (env
->pending_interrupts
& PPC_INTERRUPT_HMI
) {
1906 return PPC_INTERRUPT_HMI
;
1909 /* Privileged Doorbell Exception */
1910 if ((env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) &&
1911 (env
->spr
[SPR_LPCR
] & LPCR_PDEE
)) {
1912 return PPC_INTERRUPT_DOORBELL
;
1914 /* Hypervisor Doorbell Exception */
1915 if ((env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) &&
1916 (env
->spr
[SPR_LPCR
] & LPCR_HDEE
)) {
1917 return PPC_INTERRUPT_HDOORBELL
;
1919 /* Hypervisor virtualization exception */
1920 if ((env
->pending_interrupts
& PPC_INTERRUPT_HVIRT
) &&
1921 (env
->spr
[SPR_LPCR
] & LPCR_HVEE
)) {
1922 return PPC_INTERRUPT_HVIRT
;
1924 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
1925 return PPC_INTERRUPT_RESET
;
1930 static int p9_next_unmasked_interrupt(CPUPPCState
*env
)
1932 PowerPCCPU
*cpu
= env_archcpu(env
);
1933 CPUState
*cs
= CPU(cpu
);
1934 /* Ignore MSR[EE] when coming out of some power management states */
1935 bool msr_ee
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
1937 assert((env
->pending_interrupts
& P9_UNUSED_INTERRUPTS
) == 0);
1940 if (env
->spr
[SPR_PSSCR
] & PSSCR_EC
) {
1942 * When PSSCR[EC] is set, LPCR[PECE] controls which interrupts can
1943 * wakeup the processor
1945 return p9_interrupt_powersave(env
);
1948 * When it's clear, any system-caused exception exits power-saving
1949 * mode, even the ones that gate on MSR[EE].
1955 /* Machine check exception */
1956 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
1957 return PPC_INTERRUPT_MCK
;
1960 /* Hypervisor decrementer exception */
1961 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
1962 /* LPCR will be clear when not supported so this will work */
1963 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
1964 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
1965 /* HDEC clears on delivery */
1966 return PPC_INTERRUPT_HDECR
;
1970 /* Hypervisor virtualization interrupt */
1971 if (env
->pending_interrupts
& PPC_INTERRUPT_HVIRT
) {
1972 /* LPCR will be clear when not supported so this will work */
1973 bool hvice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HVICE
);
1974 if ((msr_ee
|| !FIELD_EX64_HV(env
->msr
)) && hvice
) {
1975 return PPC_INTERRUPT_HVIRT
;
1979 /* External interrupt can ignore MSR:EE under some circumstances */
1980 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
1981 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
1982 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
1983 /* HEIC blocks delivery to the hypervisor */
1984 if ((msr_ee
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
1985 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
1986 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
1987 return PPC_INTERRUPT_EXT
;
1991 /* Decrementer exception */
1992 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
1993 return PPC_INTERRUPT_DECR
;
1995 if (env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) {
1996 return PPC_INTERRUPT_DOORBELL
;
1998 if (env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) {
1999 return PPC_INTERRUPT_HDOORBELL
;
2001 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
2002 return PPC_INTERRUPT_PERFM
;
2005 if (env
->pending_interrupts
& PPC_INTERRUPT_EBB
) {
2007 * EBB exception must be taken in problem state and
2008 * with BESCR_GE set.
2010 if (FIELD_EX64(env
->msr
, MSR
, PR
) &&
2011 (env
->spr
[SPR_BESCR
] & BESCR_GE
)) {
2012 return PPC_INTERRUPT_EBB
;
2021 static int ppc_next_unmasked_interrupt_generic(CPUPPCState
*env
)
2025 /* External reset */
2026 if (env
->pending_interrupts
& PPC_INTERRUPT_RESET
) {
2027 return PPC_INTERRUPT_RESET
;
2029 /* Machine check exception */
2030 if (env
->pending_interrupts
& PPC_INTERRUPT_MCK
) {
2031 return PPC_INTERRUPT_MCK
;
2034 /* External debug exception */
2035 if (env
->pending_interrupts
& PPC_INTERRUPT_DEBUG
) {
2036 return PPC_INTERRUPT_DEBUG
;
2041 * For interrupts that gate on MSR:EE, we need to do something a
2042 * bit more subtle, as we need to let them through even when EE is
2043 * clear when coming out of some power management states (in order
2044 * for them to become a 0x100).
2046 async_deliver
= FIELD_EX64(env
->msr
, MSR
, EE
) || env
->resume_as_sreset
;
2048 /* Hypervisor decrementer exception */
2049 if (env
->pending_interrupts
& PPC_INTERRUPT_HDECR
) {
2050 /* LPCR will be clear when not supported so this will work */
2051 bool hdice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HDICE
);
2052 if ((async_deliver
|| !FIELD_EX64_HV(env
->msr
)) && hdice
) {
2053 /* HDEC clears on delivery */
2054 return PPC_INTERRUPT_HDECR
;
2058 /* Hypervisor virtualization interrupt */
2059 if (env
->pending_interrupts
& PPC_INTERRUPT_HVIRT
) {
2060 /* LPCR will be clear when not supported so this will work */
2061 bool hvice
= !!(env
->spr
[SPR_LPCR
] & LPCR_HVICE
);
2062 if ((async_deliver
|| !FIELD_EX64_HV(env
->msr
)) && hvice
) {
2063 return PPC_INTERRUPT_HVIRT
;
2067 /* External interrupt can ignore MSR:EE under some circumstances */
2068 if (env
->pending_interrupts
& PPC_INTERRUPT_EXT
) {
2069 bool lpes0
= !!(env
->spr
[SPR_LPCR
] & LPCR_LPES0
);
2070 bool heic
= !!(env
->spr
[SPR_LPCR
] & LPCR_HEIC
);
2071 /* HEIC blocks delivery to the hypervisor */
2072 if ((async_deliver
&& !(heic
&& FIELD_EX64_HV(env
->msr
) &&
2073 !FIELD_EX64(env
->msr
, MSR
, PR
))) ||
2074 (env
->has_hv_mode
&& !FIELD_EX64_HV(env
->msr
) && !lpes0
)) {
2075 return PPC_INTERRUPT_EXT
;
2078 if (FIELD_EX64(env
->msr
, MSR
, CE
)) {
2079 /* External critical interrupt */
2080 if (env
->pending_interrupts
& PPC_INTERRUPT_CEXT
) {
2081 return PPC_INTERRUPT_CEXT
;
2084 if (async_deliver
!= 0) {
2085 /* Watchdog timer on embedded PowerPC */
2086 if (env
->pending_interrupts
& PPC_INTERRUPT_WDT
) {
2087 return PPC_INTERRUPT_WDT
;
2089 if (env
->pending_interrupts
& PPC_INTERRUPT_CDOORBELL
) {
2090 return PPC_INTERRUPT_CDOORBELL
;
2092 /* Fixed interval timer on embedded PowerPC */
2093 if (env
->pending_interrupts
& PPC_INTERRUPT_FIT
) {
2094 return PPC_INTERRUPT_FIT
;
2096 /* Programmable interval timer on embedded PowerPC */
2097 if (env
->pending_interrupts
& PPC_INTERRUPT_PIT
) {
2098 return PPC_INTERRUPT_PIT
;
2100 /* Decrementer exception */
2101 if (env
->pending_interrupts
& PPC_INTERRUPT_DECR
) {
2102 return PPC_INTERRUPT_DECR
;
2104 if (env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) {
2105 return PPC_INTERRUPT_DOORBELL
;
2107 if (env
->pending_interrupts
& PPC_INTERRUPT_HDOORBELL
) {
2108 return PPC_INTERRUPT_HDOORBELL
;
2110 if (env
->pending_interrupts
& PPC_INTERRUPT_PERFM
) {
2111 return PPC_INTERRUPT_PERFM
;
2113 /* Thermal interrupt */
2114 if (env
->pending_interrupts
& PPC_INTERRUPT_THERM
) {
2115 return PPC_INTERRUPT_THERM
;
2118 if (env
->pending_interrupts
& PPC_INTERRUPT_EBB
) {
2120 * EBB exception must be taken in problem state and
2121 * with BESCR_GE set.
2123 if (FIELD_EX64(env
->msr
, MSR
, PR
) &&
2124 (env
->spr
[SPR_BESCR
] & BESCR_GE
)) {
2125 return PPC_INTERRUPT_EBB
;
2133 static int ppc_next_unmasked_interrupt(CPUPPCState
*env
)
2135 switch (env
->excp_model
) {
2136 #if defined(TARGET_PPC64)
2137 case POWERPC_EXCP_POWER7
:
2138 return p7_next_unmasked_interrupt(env
);
2139 case POWERPC_EXCP_POWER8
:
2140 return p8_next_unmasked_interrupt(env
);
2141 case POWERPC_EXCP_POWER9
:
2142 case POWERPC_EXCP_POWER10
:
2143 return p9_next_unmasked_interrupt(env
);
2146 return ppc_next_unmasked_interrupt_generic(env
);
2151 * Sets CPU_INTERRUPT_HARD if there is at least one unmasked interrupt to be
2152 * delivered and clears CPU_INTERRUPT_HARD otherwise.
2154 * This method is called by ppc_set_interrupt when an interrupt is raised or
2155 * lowered, and should also be called whenever an interrupt masking condition
2157 * - When relevant bits of MSR are altered, like EE, HV, PR, etc.;
2158 * - When relevant bits of LPCR are altered, like PECE, HDICE, HVICE, etc.;
2159 * - When PSSCR[EC] or env->resume_as_sreset are changed;
2160 * - When cs->halted is changed and the CPU has a different interrupt masking
2161 * logic in power-saving mode (e.g., POWER7/8/9/10);
2163 void ppc_maybe_interrupt(CPUPPCState
*env
)
2165 CPUState
*cs
= env_cpu(env
);
2166 bool locked
= false;
2168 if (!qemu_mutex_iothread_locked()) {
2170 qemu_mutex_lock_iothread();
2173 if (ppc_next_unmasked_interrupt(env
)) {
2174 cpu_interrupt(cs
, CPU_INTERRUPT_HARD
);
2176 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
2180 qemu_mutex_unlock_iothread();
2184 #if defined(TARGET_PPC64)
2185 static void p7_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2187 PowerPCCPU
*cpu
= env_archcpu(env
);
2188 CPUState
*cs
= env_cpu(env
);
2190 switch (interrupt
) {
2191 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2192 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2193 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2196 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2197 /* HDEC clears on delivery */
2198 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2199 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2202 case PPC_INTERRUPT_EXT
:
2203 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2204 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2206 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2210 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2211 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2213 case PPC_INTERRUPT_PERFM
:
2214 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2215 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2219 * This is a bug ! It means that has_work took us out of halt without
2220 * anything to deliver while in a PM state that requires getting
2223 * This means we will incorrectly execute past the power management
2224 * instruction instead of triggering a reset.
2226 * It generally means a discrepancy between the wakeup conditions in the
2227 * processor has_work implementation and the logic in this function.
2229 assert(!env
->resume_as_sreset
);
2232 cpu_abort(cs
, "Invalid PowerPC interrupt %d. Aborting\n", interrupt
);
2236 static void p8_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2238 PowerPCCPU
*cpu
= env_archcpu(env
);
2239 CPUState
*cs
= env_cpu(env
);
2241 switch (interrupt
) {
2242 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2243 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2244 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2247 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2248 /* HDEC clears on delivery */
2249 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2250 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2253 case PPC_INTERRUPT_EXT
:
2254 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2255 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2257 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2261 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2262 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2264 case PPC_INTERRUPT_DOORBELL
:
2265 env
->pending_interrupts
&= ~PPC_INTERRUPT_DOORBELL
;
2266 if (is_book3s_arch2x(env
)) {
2267 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR
);
2269 powerpc_excp(cpu
, POWERPC_EXCP_DOORI
);
2272 case PPC_INTERRUPT_HDOORBELL
:
2273 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDOORBELL
;
2274 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR_HV
);
2276 case PPC_INTERRUPT_PERFM
:
2277 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2278 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2280 case PPC_INTERRUPT_EBB
: /* EBB exception */
2281 env
->pending_interrupts
&= ~PPC_INTERRUPT_EBB
;
2282 if (env
->spr
[SPR_BESCR
] & BESCR_PMEO
) {
2283 powerpc_excp(cpu
, POWERPC_EXCP_PERFM_EBB
);
2284 } else if (env
->spr
[SPR_BESCR
] & BESCR_EEO
) {
2285 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL_EBB
);
2290 * This is a bug ! It means that has_work took us out of halt without
2291 * anything to deliver while in a PM state that requires getting
2294 * This means we will incorrectly execute past the power management
2295 * instruction instead of triggering a reset.
2297 * It generally means a discrepancy between the wakeup conditions in the
2298 * processor has_work implementation and the logic in this function.
2300 assert(!env
->resume_as_sreset
);
2303 cpu_abort(cs
, "Invalid PowerPC interrupt %d. Aborting\n", interrupt
);
2307 static void p9_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2309 PowerPCCPU
*cpu
= env_archcpu(env
);
2310 CPUState
*cs
= env_cpu(env
);
2312 if (cs
->halted
&& !(env
->spr
[SPR_PSSCR
] & PSSCR_EC
) &&
2313 !FIELD_EX64(env
->msr
, MSR
, EE
)) {
2315 * A pending interrupt took us out of power-saving, but MSR[EE] says
2316 * that we should return to NIP+4 instead of delivering it.
2321 switch (interrupt
) {
2322 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2323 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2324 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2327 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2328 /* HDEC clears on delivery */
2329 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2330 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2332 case PPC_INTERRUPT_HVIRT
: /* Hypervisor virtualization interrupt */
2333 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2336 case PPC_INTERRUPT_EXT
:
2337 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2338 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2340 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2344 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2345 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2347 case PPC_INTERRUPT_DOORBELL
:
2348 env
->pending_interrupts
&= ~PPC_INTERRUPT_DOORBELL
;
2349 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR
);
2351 case PPC_INTERRUPT_HDOORBELL
:
2352 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDOORBELL
;
2353 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR_HV
);
2355 case PPC_INTERRUPT_PERFM
:
2356 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2357 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2359 case PPC_INTERRUPT_EBB
: /* EBB exception */
2360 env
->pending_interrupts
&= ~PPC_INTERRUPT_EBB
;
2361 if (env
->spr
[SPR_BESCR
] & BESCR_PMEO
) {
2362 powerpc_excp(cpu
, POWERPC_EXCP_PERFM_EBB
);
2363 } else if (env
->spr
[SPR_BESCR
] & BESCR_EEO
) {
2364 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL_EBB
);
2369 * This is a bug ! It means that has_work took us out of halt without
2370 * anything to deliver while in a PM state that requires getting
2373 * This means we will incorrectly execute past the power management
2374 * instruction instead of triggering a reset.
2376 * It generally means a discrepancy between the wakeup conditions in the
2377 * processor has_work implementation and the logic in this function.
2379 assert(!env
->resume_as_sreset
);
2382 cpu_abort(cs
, "Invalid PowerPC interrupt %d. Aborting\n", interrupt
);
2387 static void ppc_deliver_interrupt_generic(CPUPPCState
*env
, int interrupt
)
2389 PowerPCCPU
*cpu
= env_archcpu(env
);
2390 CPUState
*cs
= env_cpu(env
);
2392 switch (interrupt
) {
2393 case PPC_INTERRUPT_RESET
: /* External reset */
2394 env
->pending_interrupts
&= ~PPC_INTERRUPT_RESET
;
2395 powerpc_excp(cpu
, POWERPC_EXCP_RESET
);
2397 case PPC_INTERRUPT_MCK
: /* Machine check exception */
2398 env
->pending_interrupts
&= ~PPC_INTERRUPT_MCK
;
2399 powerpc_excp(cpu
, POWERPC_EXCP_MCHECK
);
2402 case PPC_INTERRUPT_HDECR
: /* Hypervisor decrementer exception */
2403 /* HDEC clears on delivery */
2404 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDECR
;
2405 powerpc_excp(cpu
, POWERPC_EXCP_HDECR
);
2407 case PPC_INTERRUPT_HVIRT
: /* Hypervisor virtualization interrupt */
2408 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2411 case PPC_INTERRUPT_EXT
:
2412 if (books_vhyp_promotes_external_to_hvirt(cpu
)) {
2413 powerpc_excp(cpu
, POWERPC_EXCP_HVIRT
);
2415 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL
);
2418 case PPC_INTERRUPT_CEXT
: /* External critical interrupt */
2419 powerpc_excp(cpu
, POWERPC_EXCP_CRITICAL
);
2422 case PPC_INTERRUPT_WDT
: /* Watchdog timer on embedded PowerPC */
2423 env
->pending_interrupts
&= ~PPC_INTERRUPT_WDT
;
2424 powerpc_excp(cpu
, POWERPC_EXCP_WDT
);
2426 case PPC_INTERRUPT_CDOORBELL
:
2427 env
->pending_interrupts
&= ~PPC_INTERRUPT_CDOORBELL
;
2428 powerpc_excp(cpu
, POWERPC_EXCP_DOORCI
);
2430 case PPC_INTERRUPT_FIT
: /* Fixed interval timer on embedded PowerPC */
2431 env
->pending_interrupts
&= ~PPC_INTERRUPT_FIT
;
2432 powerpc_excp(cpu
, POWERPC_EXCP_FIT
);
2434 case PPC_INTERRUPT_PIT
: /* Programmable interval timer on embedded ppc */
2435 env
->pending_interrupts
&= ~PPC_INTERRUPT_PIT
;
2436 powerpc_excp(cpu
, POWERPC_EXCP_PIT
);
2438 case PPC_INTERRUPT_DECR
: /* Decrementer exception */
2439 if (ppc_decr_clear_on_delivery(env
)) {
2440 env
->pending_interrupts
&= ~PPC_INTERRUPT_DECR
;
2442 powerpc_excp(cpu
, POWERPC_EXCP_DECR
);
2444 case PPC_INTERRUPT_DOORBELL
:
2445 env
->pending_interrupts
&= ~PPC_INTERRUPT_DOORBELL
;
2446 if (is_book3s_arch2x(env
)) {
2447 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR
);
2449 powerpc_excp(cpu
, POWERPC_EXCP_DOORI
);
2452 case PPC_INTERRUPT_HDOORBELL
:
2453 env
->pending_interrupts
&= ~PPC_INTERRUPT_HDOORBELL
;
2454 powerpc_excp(cpu
, POWERPC_EXCP_SDOOR_HV
);
2456 case PPC_INTERRUPT_PERFM
:
2457 env
->pending_interrupts
&= ~PPC_INTERRUPT_PERFM
;
2458 powerpc_excp(cpu
, POWERPC_EXCP_PERFM
);
2460 case PPC_INTERRUPT_THERM
: /* Thermal interrupt */
2461 env
->pending_interrupts
&= ~PPC_INTERRUPT_THERM
;
2462 powerpc_excp(cpu
, POWERPC_EXCP_THERM
);
2464 case PPC_INTERRUPT_EBB
: /* EBB exception */
2465 env
->pending_interrupts
&= ~PPC_INTERRUPT_EBB
;
2466 if (env
->spr
[SPR_BESCR
] & BESCR_PMEO
) {
2467 powerpc_excp(cpu
, POWERPC_EXCP_PERFM_EBB
);
2468 } else if (env
->spr
[SPR_BESCR
] & BESCR_EEO
) {
2469 powerpc_excp(cpu
, POWERPC_EXCP_EXTERNAL_EBB
);
2474 * This is a bug ! It means that has_work took us out of halt without
2475 * anything to deliver while in a PM state that requires getting
2478 * This means we will incorrectly execute past the power management
2479 * instruction instead of triggering a reset.
2481 * It generally means a discrepancy between the wakeup conditions in the
2482 * processor has_work implementation and the logic in this function.
2484 assert(!env
->resume_as_sreset
);
2487 cpu_abort(cs
, "Invalid PowerPC interrupt %d. Aborting\n", interrupt
);
2491 static void ppc_deliver_interrupt(CPUPPCState
*env
, int interrupt
)
2493 switch (env
->excp_model
) {
2494 #if defined(TARGET_PPC64)
2495 case POWERPC_EXCP_POWER7
:
2496 p7_deliver_interrupt(env
, interrupt
);
2498 case POWERPC_EXCP_POWER8
:
2499 p8_deliver_interrupt(env
, interrupt
);
2501 case POWERPC_EXCP_POWER9
:
2502 case POWERPC_EXCP_POWER10
:
2503 p9_deliver_interrupt(env
, interrupt
);
2507 ppc_deliver_interrupt_generic(env
, interrupt
);
2511 void ppc_cpu_do_system_reset(CPUState
*cs
)
2513 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2515 powerpc_excp(cpu
, POWERPC_EXCP_RESET
);
2518 void ppc_cpu_do_fwnmi_machine_check(CPUState
*cs
, target_ulong vector
)
2520 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2521 CPUPPCState
*env
= &cpu
->env
;
2522 target_ulong msr
= 0;
2525 * Set MSR and NIP for the handler, SRR0/1, DAR and DSISR have already
2528 msr
= (1ULL << MSR_ME
);
2529 msr
|= env
->msr
& (1ULL << MSR_SF
);
2530 if (ppc_interrupts_little_endian(cpu
, false)) {
2531 msr
|= (1ULL << MSR_LE
);
2534 /* Anything for nested required here? MSR[HV] bit? */
2536 powerpc_set_excp_state(cpu
, vector
, msr
);
2539 bool ppc_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
)
2541 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2542 CPUPPCState
*env
= &cpu
->env
;
2545 if ((interrupt_request
& CPU_INTERRUPT_HARD
) == 0) {
2549 interrupt
= ppc_next_unmasked_interrupt(env
);
2550 if (interrupt
== 0) {
2554 ppc_deliver_interrupt(env
, interrupt
);
2555 if (env
->pending_interrupts
== 0) {
2556 cpu_reset_interrupt(cs
, CPU_INTERRUPT_HARD
);
2561 #endif /* !CONFIG_USER_ONLY */
2563 /*****************************************************************************/
2564 /* Exceptions processing helpers */
2566 void raise_exception_err_ra(CPUPPCState
*env
, uint32_t exception
,
2567 uint32_t error_code
, uintptr_t raddr
)
2569 CPUState
*cs
= env_cpu(env
);
2571 cs
->exception_index
= exception
;
2572 env
->error_code
= error_code
;
2573 cpu_loop_exit_restore(cs
, raddr
);
2576 void raise_exception_err(CPUPPCState
*env
, uint32_t exception
,
2577 uint32_t error_code
)
2579 raise_exception_err_ra(env
, exception
, error_code
, 0);
2582 void raise_exception(CPUPPCState
*env
, uint32_t exception
)
2584 raise_exception_err_ra(env
, exception
, 0, 0);
2587 void raise_exception_ra(CPUPPCState
*env
, uint32_t exception
,
2590 raise_exception_err_ra(env
, exception
, 0, raddr
);
2594 void helper_raise_exception_err(CPUPPCState
*env
, uint32_t exception
,
2595 uint32_t error_code
)
2597 raise_exception_err_ra(env
, exception
, error_code
, 0);
2600 void helper_raise_exception(CPUPPCState
*env
, uint32_t exception
)
2602 raise_exception_err_ra(env
, exception
, 0, 0);
2606 #if !defined(CONFIG_USER_ONLY)
2608 void helper_store_msr(CPUPPCState
*env
, target_ulong val
)
2610 uint32_t excp
= hreg_store_msr(env
, val
, 0);
2613 CPUState
*cs
= env_cpu(env
);
2614 cpu_interrupt_exittb(cs
);
2615 raise_exception(env
, excp
);
2619 void helper_ppc_maybe_interrupt(CPUPPCState
*env
)
2621 ppc_maybe_interrupt(env
);
2624 #if defined(TARGET_PPC64)
2625 void helper_scv(CPUPPCState
*env
, uint32_t lev
)
2627 if (env
->spr
[SPR_FSCR
] & (1ull << FSCR_SCV
)) {
2628 raise_exception_err(env
, POWERPC_EXCP_SYSCALL_VECTORED
, lev
);
2630 raise_exception_err(env
, POWERPC_EXCP_FU
, FSCR_IC_SCV
);
2634 void helper_pminsn(CPUPPCState
*env
, powerpc_pm_insn_t insn
)
2641 /* Condition for waking up at 0x100 */
2642 env
->resume_as_sreset
= (insn
!= PPC_PM_STOP
) ||
2643 (env
->spr
[SPR_PSSCR
] & PSSCR_EC
);
2645 ppc_maybe_interrupt(env
);
2647 #endif /* defined(TARGET_PPC64) */
2649 static void do_rfi(CPUPPCState
*env
, target_ulong nip
, target_ulong msr
)
2651 CPUState
*cs
= env_cpu(env
);
2653 /* MSR:POW cannot be set by any form of rfi */
2654 msr
&= ~(1ULL << MSR_POW
);
2656 /* MSR:TGPR cannot be set by any form of rfi */
2657 if (env
->flags
& POWERPC_FLAG_TGPR
)
2658 msr
&= ~(1ULL << MSR_TGPR
);
2660 #if defined(TARGET_PPC64)
2661 /* Switching to 32-bit ? Crop the nip */
2662 if (!msr_is_64bit(env
, msr
)) {
2663 nip
= (uint32_t)nip
;
2666 nip
= (uint32_t)nip
;
2668 /* XXX: beware: this is false if VLE is supported */
2669 env
->nip
= nip
& ~((target_ulong
)0x00000003);
2670 hreg_store_msr(env
, msr
, 1);
2671 trace_ppc_excp_rfi(env
->nip
, env
->msr
);
2673 * No need to raise an exception here, as rfi is always the last
2676 cpu_interrupt_exittb(cs
);
2677 /* Reset the reservation */
2678 env
->reserve_addr
= -1;
2680 /* Context synchronizing: check if TCG TLB needs flush */
2681 check_tlb_flush(env
, false);
2684 void helper_rfi(CPUPPCState
*env
)
2686 do_rfi(env
, env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
] & 0xfffffffful
);
2689 #if defined(TARGET_PPC64)
2690 void helper_rfid(CPUPPCState
*env
)
2693 * The architecture defines a number of rules for which bits can
2694 * change but in practice, we handle this in hreg_store_msr()
2695 * which will be called by do_rfi(), so there is no need to filter
2698 do_rfi(env
, env
->spr
[SPR_SRR0
], env
->spr
[SPR_SRR1
]);
2701 void helper_rfscv(CPUPPCState
*env
)
2703 do_rfi(env
, env
->lr
, env
->ctr
);
2706 void helper_hrfid(CPUPPCState
*env
)
2708 do_rfi(env
, env
->spr
[SPR_HSRR0
], env
->spr
[SPR_HSRR1
]);
2712 #if defined(TARGET_PPC64) && !defined(CONFIG_USER_ONLY)
2713 void helper_rfebb(CPUPPCState
*env
, target_ulong s
)
2715 target_ulong msr
= env
->msr
;
2718 * Handling of BESCR bits 32:33 according to PowerISA v3.1:
2720 * "If BESCR 32:33 != 0b00 the instruction is treated as if
2721 * the instruction form were invalid."
2723 if (env
->spr
[SPR_BESCR
] & BESCR_INVALID
) {
2724 raise_exception_err(env
, POWERPC_EXCP_PROGRAM
,
2725 POWERPC_EXCP_INVAL
| POWERPC_EXCP_INVAL_INVAL
);
2728 env
->nip
= env
->spr
[SPR_EBBRR
];
2730 /* Switching to 32-bit ? Crop the nip */
2731 if (!msr_is_64bit(env
, msr
)) {
2732 env
->nip
= (uint32_t)env
->spr
[SPR_EBBRR
];
2736 env
->spr
[SPR_BESCR
] |= BESCR_GE
;
2738 env
->spr
[SPR_BESCR
] &= ~BESCR_GE
;
2743 * Triggers or queues an 'ebb_excp' EBB exception. All checks
2744 * but FSCR, HFSCR and msr_pr must be done beforehand.
2746 * PowerISA v3.1 isn't clear about whether an EBB should be
2747 * postponed or cancelled if the EBB facility is unavailable.
2748 * Our assumption here is that the EBB is cancelled if both
2749 * FSCR and HFSCR EBB facilities aren't available.
2751 static void do_ebb(CPUPPCState
*env
, int ebb_excp
)
2753 PowerPCCPU
*cpu
= env_archcpu(env
);
2756 * FSCR_EBB and FSCR_IC_EBB are the same bits used with
2759 helper_fscr_facility_check(env
, FSCR_EBB
, 0, FSCR_IC_EBB
);
2760 helper_hfscr_facility_check(env
, FSCR_EBB
, "EBB", FSCR_IC_EBB
);
2762 if (ebb_excp
== POWERPC_EXCP_PERFM_EBB
) {
2763 env
->spr
[SPR_BESCR
] |= BESCR_PMEO
;
2764 } else if (ebb_excp
== POWERPC_EXCP_EXTERNAL_EBB
) {
2765 env
->spr
[SPR_BESCR
] |= BESCR_EEO
;
2768 if (FIELD_EX64(env
->msr
, MSR
, PR
)) {
2769 powerpc_excp(cpu
, ebb_excp
);
2771 ppc_set_irq(cpu
, PPC_INTERRUPT_EBB
, 1);
2775 void raise_ebb_perfm_exception(CPUPPCState
*env
)
2777 bool perfm_ebb_enabled
= env
->spr
[SPR_POWER_MMCR0
] & MMCR0_EBE
&&
2778 env
->spr
[SPR_BESCR
] & BESCR_PME
&&
2779 env
->spr
[SPR_BESCR
] & BESCR_GE
;
2781 if (!perfm_ebb_enabled
) {
2785 do_ebb(env
, POWERPC_EXCP_PERFM_EBB
);
2789 /*****************************************************************************/
2790 /* Embedded PowerPC specific helpers */
2791 void helper_40x_rfci(CPUPPCState
*env
)
2793 do_rfi(env
, env
->spr
[SPR_40x_SRR2
], env
->spr
[SPR_40x_SRR3
]);
2796 void helper_rfci(CPUPPCState
*env
)
2798 do_rfi(env
, env
->spr
[SPR_BOOKE_CSRR0
], env
->spr
[SPR_BOOKE_CSRR1
]);
2801 void helper_rfdi(CPUPPCState
*env
)
2803 /* FIXME: choose CSRR1 or DSRR1 based on cpu type */
2804 do_rfi(env
, env
->spr
[SPR_BOOKE_DSRR0
], env
->spr
[SPR_BOOKE_DSRR1
]);
2807 void helper_rfmci(CPUPPCState
*env
)
2809 /* FIXME: choose CSRR1 or MCSRR1 based on cpu type */
2810 do_rfi(env
, env
->spr
[SPR_BOOKE_MCSRR0
], env
->spr
[SPR_BOOKE_MCSRR1
]);
2812 #endif /* CONFIG_TCG */
2813 #endif /* !defined(CONFIG_USER_ONLY) */
2816 void helper_tw(CPUPPCState
*env
, target_ulong arg1
, target_ulong arg2
,
2819 if (!likely(!(((int32_t)arg1
< (int32_t)arg2
&& (flags
& 0x10)) ||
2820 ((int32_t)arg1
> (int32_t)arg2
&& (flags
& 0x08)) ||
2821 ((int32_t)arg1
== (int32_t)arg2
&& (flags
& 0x04)) ||
2822 ((uint32_t)arg1
< (uint32_t)arg2
&& (flags
& 0x02)) ||
2823 ((uint32_t)arg1
> (uint32_t)arg2
&& (flags
& 0x01))))) {
2824 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2825 POWERPC_EXCP_TRAP
, GETPC());
2829 #if defined(TARGET_PPC64)
2830 void helper_td(CPUPPCState
*env
, target_ulong arg1
, target_ulong arg2
,
2833 if (!likely(!(((int64_t)arg1
< (int64_t)arg2
&& (flags
& 0x10)) ||
2834 ((int64_t)arg1
> (int64_t)arg2
&& (flags
& 0x08)) ||
2835 ((int64_t)arg1
== (int64_t)arg2
&& (flags
& 0x04)) ||
2836 ((uint64_t)arg1
< (uint64_t)arg2
&& (flags
& 0x02)) ||
2837 ((uint64_t)arg1
> (uint64_t)arg2
&& (flags
& 0x01))))) {
2838 raise_exception_err_ra(env
, POWERPC_EXCP_PROGRAM
,
2839 POWERPC_EXCP_TRAP
, GETPC());
2845 static uint32_t helper_SIMON_LIKE_32_64(uint32_t x
, uint64_t key
, uint32_t lane
)
2847 const uint16_t c
= 0xfffc;
2848 const uint64_t z0
= 0xfa2561cdf44ac398ULL
;
2849 uint16_t z
= 0, temp
;
2850 uint16_t k
[32], eff_k
[32], xleft
[33], xright
[33], fxleft
[32];
2852 for (int i
= 3; i
>= 0; i
--) {
2853 k
[i
] = key
& 0xffff;
2856 xleft
[0] = x
& 0xffff;
2857 xright
[0] = (x
>> 16) & 0xffff;
2859 for (int i
= 0; i
< 28; i
++) {
2860 z
= (z0
>> (63 - i
)) & 1;
2861 temp
= ror16(k
[i
+ 3], 3) ^ k
[i
+ 1];
2862 k
[i
+ 4] = c
^ z
^ k
[i
] ^ temp
^ ror16(temp
, 1);
2865 for (int i
= 0; i
< 8; i
++) {
2866 eff_k
[4 * i
+ 0] = k
[4 * i
+ ((0 + lane
) % 4)];
2867 eff_k
[4 * i
+ 1] = k
[4 * i
+ ((1 + lane
) % 4)];
2868 eff_k
[4 * i
+ 2] = k
[4 * i
+ ((2 + lane
) % 4)];
2869 eff_k
[4 * i
+ 3] = k
[4 * i
+ ((3 + lane
) % 4)];
2872 for (int i
= 0; i
< 32; i
++) {
2873 fxleft
[i
] = (rol16(xleft
[i
], 1) &
2874 rol16(xleft
[i
], 8)) ^ rol16(xleft
[i
], 2);
2875 xleft
[i
+ 1] = xright
[i
] ^ fxleft
[i
] ^ eff_k
[i
];
2876 xright
[i
+ 1] = xleft
[i
];
2879 return (((uint32_t)xright
[32]) << 16) | xleft
[32];
2882 static uint64_t hash_digest(uint64_t ra
, uint64_t rb
, uint64_t key
)
2884 uint64_t stage0_h
= 0ULL, stage0_l
= 0ULL;
2885 uint64_t stage1_h
, stage1_l
;
2887 for (int i
= 0; i
< 4; i
++) {
2888 stage0_h
|= ror64(rb
& 0xff, 8 * (2 * i
+ 1));
2889 stage0_h
|= ((ra
>> 32) & 0xff) << (8 * 2 * i
);
2890 stage0_l
|= ror64((rb
>> 32) & 0xff, 8 * (2 * i
+ 1));
2891 stage0_l
|= (ra
& 0xff) << (8 * 2 * i
);
2896 stage1_h
= (uint64_t)helper_SIMON_LIKE_32_64(stage0_h
>> 32, key
, 0) << 32;
2897 stage1_h
|= helper_SIMON_LIKE_32_64(stage0_h
, key
, 1);
2898 stage1_l
= (uint64_t)helper_SIMON_LIKE_32_64(stage0_l
>> 32, key
, 2) << 32;
2899 stage1_l
|= helper_SIMON_LIKE_32_64(stage0_l
, key
, 3);
2901 return stage1_h
^ stage1_l
;
2904 #include "qemu/guest-random.h"
2906 #define HELPER_HASH(op, key, store) \
2907 void helper_##op(CPUPPCState *env, target_ulong ea, target_ulong ra, \
2910 uint64_t calculated_hash = hash_digest(ra, rb, key), loaded_hash; \
2913 cpu_stq_data_ra(env, ea, calculated_hash, GETPC()); \
2915 loaded_hash = cpu_ldq_data_ra(env, ea, GETPC()); \
2916 if (loaded_hash != calculated_hash) { \
2917 raise_exception_err_ra(env, POWERPC_EXCP_PROGRAM, \
2918 POWERPC_EXCP_TRAP, GETPC()); \
2923 HELPER_HASH(HASHST
, env
->spr
[SPR_HASHKEYR
], true)
2924 HELPER_HASH(HASHCHK
, env
->spr
[SPR_HASHKEYR
], false)
2925 HELPER_HASH(HASHSTP
, env
->spr
[SPR_HASHPKEYR
], true)
2926 HELPER_HASH(HASHCHKP
, env
->spr
[SPR_HASHPKEYR
], false)
2928 #if !defined(CONFIG_USER_ONLY)
2932 /* Embedded.Processor Control */
2933 static int dbell2irq(target_ulong rb
)
2935 int msg
= rb
& DBELL_TYPE_MASK
;
2939 case DBELL_TYPE_DBELL
:
2940 irq
= PPC_INTERRUPT_DOORBELL
;
2942 case DBELL_TYPE_DBELL_CRIT
:
2943 irq
= PPC_INTERRUPT_CDOORBELL
;
2945 case DBELL_TYPE_G_DBELL
:
2946 case DBELL_TYPE_G_DBELL_CRIT
:
2947 case DBELL_TYPE_G_DBELL_MC
:
2956 void helper_msgclr(CPUPPCState
*env
, target_ulong rb
)
2958 int irq
= dbell2irq(rb
);
2964 ppc_set_irq(env_archcpu(env
), irq
, 0);
2967 void helper_msgsnd(target_ulong rb
)
2969 int irq
= dbell2irq(rb
);
2970 int pir
= rb
& DBELL_PIRTAG_MASK
;
2977 qemu_mutex_lock_iothread();
2979 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
2980 CPUPPCState
*cenv
= &cpu
->env
;
2982 if ((rb
& DBELL_BRDCAST
) || (cenv
->spr
[SPR_BOOKE_PIR
] == pir
)) {
2983 ppc_set_irq(cpu
, irq
, 1);
2986 qemu_mutex_unlock_iothread();
2989 /* Server Processor Control */
2991 static bool dbell_type_server(target_ulong rb
)
2994 * A Directed Hypervisor Doorbell message is sent only if the
2995 * message type is 5. All other types are reserved and the
2996 * instruction is a no-op
2998 return (rb
& DBELL_TYPE_MASK
) == DBELL_TYPE_DBELL_SERVER
;
3001 void helper_book3s_msgclr(CPUPPCState
*env
, target_ulong rb
)
3003 if (!dbell_type_server(rb
)) {
3007 ppc_set_irq(env_archcpu(env
), PPC_INTERRUPT_HDOORBELL
, 0);
3010 static void book3s_msgsnd_common(int pir
, int irq
)
3014 qemu_mutex_lock_iothread();
3016 PowerPCCPU
*cpu
= POWERPC_CPU(cs
);
3017 CPUPPCState
*cenv
= &cpu
->env
;
3019 /* TODO: broadcast message to all threads of the same processor */
3020 if (cenv
->spr_cb
[SPR_PIR
].default_value
== pir
) {
3021 ppc_set_irq(cpu
, irq
, 1);
3024 qemu_mutex_unlock_iothread();
3027 void helper_book3s_msgsnd(target_ulong rb
)
3029 int pir
= rb
& DBELL_PROCIDTAG_MASK
;
3031 if (!dbell_type_server(rb
)) {
3035 book3s_msgsnd_common(pir
, PPC_INTERRUPT_HDOORBELL
);
3038 #if defined(TARGET_PPC64)
3039 void helper_book3s_msgclrp(CPUPPCState
*env
, target_ulong rb
)
3041 helper_hfscr_facility_check(env
, HFSCR_MSGP
, "msgclrp", HFSCR_IC_MSGP
);
3043 if (!dbell_type_server(rb
)) {
3047 ppc_set_irq(env_archcpu(env
), PPC_INTERRUPT_HDOORBELL
, 0);
3051 * sends a message to other threads that are on the same
3052 * multi-threaded processor
3054 void helper_book3s_msgsndp(CPUPPCState
*env
, target_ulong rb
)
3056 int pir
= env
->spr_cb
[SPR_PIR
].default_value
;
3058 helper_hfscr_facility_check(env
, HFSCR_MSGP
, "msgsndp", HFSCR_IC_MSGP
);
3060 if (!dbell_type_server(rb
)) {
3064 /* TODO: TCG supports only one thread */
3066 book3s_msgsnd_common(pir
, PPC_INTERRUPT_DOORBELL
);
3068 #endif /* TARGET_PPC64 */
3070 void ppc_cpu_do_unaligned_access(CPUState
*cs
, vaddr vaddr
,
3071 MMUAccessType access_type
,
3072 int mmu_idx
, uintptr_t retaddr
)
3074 CPUPPCState
*env
= cs
->env_ptr
;
3077 /* Restore state and reload the insn we executed, for filling in DSISR. */
3078 cpu_restore_state(cs
, retaddr
);
3079 insn
= cpu_ldl_code(env
, env
->nip
);
3081 switch (env
->mmu_model
) {
3082 case POWERPC_MMU_SOFT_4xx
:
3083 env
->spr
[SPR_40x_DEAR
] = vaddr
;
3085 case POWERPC_MMU_BOOKE
:
3086 case POWERPC_MMU_BOOKE206
:
3087 env
->spr
[SPR_BOOKE_DEAR
] = vaddr
;
3090 env
->spr
[SPR_DAR
] = vaddr
;
3094 cs
->exception_index
= POWERPC_EXCP_ALIGN
;
3095 env
->error_code
= insn
& 0x03FF0000;
3098 #endif /* CONFIG_TCG */
3099 #endif /* !CONFIG_USER_ONLY */