4 * Copyright (c) 2003-2008 Fabrice Bellard
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program 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
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
22 #include "cpu_loop-common.h"
24 static inline uint64_t cpu_ppc_get_tb(CPUPPCState
*env
)
26 return cpu_get_host_ticks();
29 uint64_t cpu_ppc_load_tbl(CPUPPCState
*env
)
31 return cpu_ppc_get_tb(env
);
34 uint32_t cpu_ppc_load_tbu(CPUPPCState
*env
)
36 return cpu_ppc_get_tb(env
) >> 32;
39 uint64_t cpu_ppc_load_atbl(CPUPPCState
*env
)
41 return cpu_ppc_get_tb(env
);
44 uint32_t cpu_ppc_load_atbu(CPUPPCState
*env
)
46 return cpu_ppc_get_tb(env
) >> 32;
49 uint32_t cpu_ppc601_load_rtcu(CPUPPCState
*env
)
50 __attribute__ (( alias ("cpu_ppc_load_tbu") ));
52 uint32_t cpu_ppc601_load_rtcl(CPUPPCState
*env
)
54 return cpu_ppc_load_tbl(env
) & 0x3FFFFF80;
57 /* XXX: to be fixed */
58 int ppc_dcr_read (ppc_dcr_t
*dcr_env
, int dcrn
, uint32_t *valp
)
63 int ppc_dcr_write (ppc_dcr_t
*dcr_env
, int dcrn
, uint32_t val
)
68 void cpu_loop(CPUPPCState
*env
)
70 CPUState
*cs
= CPU(ppc_env_get_cpu(env
));
71 target_siginfo_t info
;
79 trapnr
= cpu_exec(cs
);
81 process_queued_cpu_work(cs
);
83 arch_interrupt
= true;
85 case POWERPC_EXCP_NONE
:
88 case POWERPC_EXCP_CRITICAL
: /* Critical input */
89 cpu_abort(cs
, "Critical interrupt while in user mode. "
92 case POWERPC_EXCP_MCHECK
: /* Machine check exception */
93 cpu_abort(cs
, "Machine check exception while in user mode. "
96 case POWERPC_EXCP_DSI
: /* Data storage exception */
97 /* XXX: check this. Seems bugged */
98 switch (env
->error_code
& 0xFF000000) {
101 info
.si_signo
= TARGET_SIGSEGV
;
103 info
.si_code
= TARGET_SEGV_MAPERR
;
106 info
.si_signo
= TARGET_SIGILL
;
108 info
.si_code
= TARGET_ILL_ILLADR
;
111 info
.si_signo
= TARGET_SIGSEGV
;
113 info
.si_code
= TARGET_SEGV_ACCERR
;
116 /* Let's send a regular segfault... */
117 EXCP_DUMP(env
, "Invalid segfault errno (%02x)\n",
119 info
.si_signo
= TARGET_SIGSEGV
;
121 info
.si_code
= TARGET_SEGV_MAPERR
;
124 info
._sifields
._sigfault
._addr
= env
->spr
[SPR_DAR
];
125 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
127 case POWERPC_EXCP_ISI
: /* Instruction storage exception */
128 /* XXX: check this */
129 switch (env
->error_code
& 0xFF000000) {
131 info
.si_signo
= TARGET_SIGSEGV
;
133 info
.si_code
= TARGET_SEGV_MAPERR
;
137 info
.si_signo
= TARGET_SIGSEGV
;
139 info
.si_code
= TARGET_SEGV_ACCERR
;
142 /* Let's send a regular segfault... */
143 EXCP_DUMP(env
, "Invalid segfault errno (%02x)\n",
145 info
.si_signo
= TARGET_SIGSEGV
;
147 info
.si_code
= TARGET_SEGV_MAPERR
;
150 info
._sifields
._sigfault
._addr
= env
->nip
- 4;
151 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
153 case POWERPC_EXCP_EXTERNAL
: /* External input */
154 cpu_abort(cs
, "External interrupt while in user mode. "
157 case POWERPC_EXCP_ALIGN
: /* Alignment exception */
158 /* XXX: check this */
159 info
.si_signo
= TARGET_SIGBUS
;
161 info
.si_code
= TARGET_BUS_ADRALN
;
162 info
._sifields
._sigfault
._addr
= env
->nip
;
163 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
165 case POWERPC_EXCP_PROGRAM
: /* Program exception */
166 case POWERPC_EXCP_HV_EMU
: /* HV emulation */
167 /* XXX: check this */
168 switch (env
->error_code
& ~0xF) {
169 case POWERPC_EXCP_FP
:
170 info
.si_signo
= TARGET_SIGFPE
;
172 switch (env
->error_code
& 0xF) {
173 case POWERPC_EXCP_FP_OX
:
174 info
.si_code
= TARGET_FPE_FLTOVF
;
176 case POWERPC_EXCP_FP_UX
:
177 info
.si_code
= TARGET_FPE_FLTUND
;
179 case POWERPC_EXCP_FP_ZX
:
180 case POWERPC_EXCP_FP_VXZDZ
:
181 info
.si_code
= TARGET_FPE_FLTDIV
;
183 case POWERPC_EXCP_FP_XX
:
184 info
.si_code
= TARGET_FPE_FLTRES
;
186 case POWERPC_EXCP_FP_VXSOFT
:
187 info
.si_code
= TARGET_FPE_FLTINV
;
189 case POWERPC_EXCP_FP_VXSNAN
:
190 case POWERPC_EXCP_FP_VXISI
:
191 case POWERPC_EXCP_FP_VXIDI
:
192 case POWERPC_EXCP_FP_VXIMZ
:
193 case POWERPC_EXCP_FP_VXVC
:
194 case POWERPC_EXCP_FP_VXSQRT
:
195 case POWERPC_EXCP_FP_VXCVI
:
196 info
.si_code
= TARGET_FPE_FLTSUB
;
199 EXCP_DUMP(env
, "Unknown floating point exception (%02x)\n",
204 case POWERPC_EXCP_INVAL
:
205 info
.si_signo
= TARGET_SIGILL
;
207 switch (env
->error_code
& 0xF) {
208 case POWERPC_EXCP_INVAL_INVAL
:
209 info
.si_code
= TARGET_ILL_ILLOPC
;
211 case POWERPC_EXCP_INVAL_LSWX
:
212 info
.si_code
= TARGET_ILL_ILLOPN
;
214 case POWERPC_EXCP_INVAL_SPR
:
215 info
.si_code
= TARGET_ILL_PRVREG
;
217 case POWERPC_EXCP_INVAL_FP
:
218 info
.si_code
= TARGET_ILL_COPROC
;
221 EXCP_DUMP(env
, "Unknown invalid operation (%02x)\n",
222 env
->error_code
& 0xF);
223 info
.si_code
= TARGET_ILL_ILLADR
;
227 case POWERPC_EXCP_PRIV
:
228 info
.si_signo
= TARGET_SIGILL
;
230 switch (env
->error_code
& 0xF) {
231 case POWERPC_EXCP_PRIV_OPC
:
232 info
.si_code
= TARGET_ILL_PRVOPC
;
234 case POWERPC_EXCP_PRIV_REG
:
235 info
.si_code
= TARGET_ILL_PRVREG
;
238 EXCP_DUMP(env
, "Unknown privilege violation (%02x)\n",
239 env
->error_code
& 0xF);
240 info
.si_code
= TARGET_ILL_PRVOPC
;
244 case POWERPC_EXCP_TRAP
:
245 cpu_abort(cs
, "Tried to call a TRAP\n");
248 /* Should not happen ! */
249 cpu_abort(cs
, "Unknown program exception (%02x)\n",
253 info
._sifields
._sigfault
._addr
= env
->nip
;
254 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
256 case POWERPC_EXCP_FPU
: /* Floating-point unavailable exception */
257 info
.si_signo
= TARGET_SIGILL
;
259 info
.si_code
= TARGET_ILL_COPROC
;
260 info
._sifields
._sigfault
._addr
= env
->nip
;
261 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
263 case POWERPC_EXCP_SYSCALL
: /* System call exception */
264 cpu_abort(cs
, "Syscall exception while in user mode. "
267 case POWERPC_EXCP_APU
: /* Auxiliary processor unavailable */
268 info
.si_signo
= TARGET_SIGILL
;
270 info
.si_code
= TARGET_ILL_COPROC
;
271 info
._sifields
._sigfault
._addr
= env
->nip
;
272 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
274 case POWERPC_EXCP_DECR
: /* Decrementer exception */
275 cpu_abort(cs
, "Decrementer interrupt while in user mode. "
278 case POWERPC_EXCP_FIT
: /* Fixed-interval timer interrupt */
279 cpu_abort(cs
, "Fix interval timer interrupt while in user mode. "
282 case POWERPC_EXCP_WDT
: /* Watchdog timer interrupt */
283 cpu_abort(cs
, "Watchdog timer interrupt while in user mode. "
286 case POWERPC_EXCP_DTLB
: /* Data TLB error */
287 cpu_abort(cs
, "Data TLB exception while in user mode. "
290 case POWERPC_EXCP_ITLB
: /* Instruction TLB error */
291 cpu_abort(cs
, "Instruction TLB exception while in user mode. "
294 case POWERPC_EXCP_SPEU
: /* SPE/embedded floating-point unavail. */
295 info
.si_signo
= TARGET_SIGILL
;
297 info
.si_code
= TARGET_ILL_COPROC
;
298 info
._sifields
._sigfault
._addr
= env
->nip
;
299 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
301 case POWERPC_EXCP_EFPDI
: /* Embedded floating-point data IRQ */
302 cpu_abort(cs
, "Embedded floating-point data IRQ not handled\n");
304 case POWERPC_EXCP_EFPRI
: /* Embedded floating-point round IRQ */
305 cpu_abort(cs
, "Embedded floating-point round IRQ not handled\n");
307 case POWERPC_EXCP_EPERFM
: /* Embedded performance monitor IRQ */
308 cpu_abort(cs
, "Performance monitor exception not handled\n");
310 case POWERPC_EXCP_DOORI
: /* Embedded doorbell interrupt */
311 cpu_abort(cs
, "Doorbell interrupt while in user mode. "
314 case POWERPC_EXCP_DOORCI
: /* Embedded doorbell critical interrupt */
315 cpu_abort(cs
, "Doorbell critical interrupt while in user mode. "
318 case POWERPC_EXCP_RESET
: /* System reset exception */
319 cpu_abort(cs
, "Reset interrupt while in user mode. "
322 case POWERPC_EXCP_DSEG
: /* Data segment exception */
323 cpu_abort(cs
, "Data segment exception while in user mode. "
326 case POWERPC_EXCP_ISEG
: /* Instruction segment exception */
327 cpu_abort(cs
, "Instruction segment exception "
328 "while in user mode. Aborting\n");
330 /* PowerPC 64 with hypervisor mode support */
331 case POWERPC_EXCP_HDECR
: /* Hypervisor decrementer exception */
332 cpu_abort(cs
, "Hypervisor decrementer interrupt "
333 "while in user mode. Aborting\n");
335 case POWERPC_EXCP_TRACE
: /* Trace exception */
337 * we use this exception to emulate step-by-step execution mode.
340 /* PowerPC 64 with hypervisor mode support */
341 case POWERPC_EXCP_HDSI
: /* Hypervisor data storage exception */
342 cpu_abort(cs
, "Hypervisor data storage exception "
343 "while in user mode. Aborting\n");
345 case POWERPC_EXCP_HISI
: /* Hypervisor instruction storage excp */
346 cpu_abort(cs
, "Hypervisor instruction storage exception "
347 "while in user mode. Aborting\n");
349 case POWERPC_EXCP_HDSEG
: /* Hypervisor data segment exception */
350 cpu_abort(cs
, "Hypervisor data segment exception "
351 "while in user mode. Aborting\n");
353 case POWERPC_EXCP_HISEG
: /* Hypervisor instruction segment excp */
354 cpu_abort(cs
, "Hypervisor instruction segment exception "
355 "while in user mode. Aborting\n");
357 case POWERPC_EXCP_VPU
: /* Vector unavailable exception */
358 info
.si_signo
= TARGET_SIGILL
;
360 info
.si_code
= TARGET_ILL_COPROC
;
361 info
._sifields
._sigfault
._addr
= env
->nip
;
362 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
364 case POWERPC_EXCP_PIT
: /* Programmable interval timer IRQ */
365 cpu_abort(cs
, "Programmable interval timer interrupt "
366 "while in user mode. Aborting\n");
368 case POWERPC_EXCP_IO
: /* IO error exception */
369 cpu_abort(cs
, "IO error exception while in user mode. "
372 case POWERPC_EXCP_RUNM
: /* Run mode exception */
373 cpu_abort(cs
, "Run mode exception while in user mode. "
376 case POWERPC_EXCP_EMUL
: /* Emulation trap exception */
377 cpu_abort(cs
, "Emulation trap exception not handled\n");
379 case POWERPC_EXCP_IFTLB
: /* Instruction fetch TLB error */
380 cpu_abort(cs
, "Instruction fetch TLB exception "
381 "while in user-mode. Aborting");
383 case POWERPC_EXCP_DLTLB
: /* Data load TLB miss */
384 cpu_abort(cs
, "Data load TLB exception while in user-mode. "
387 case POWERPC_EXCP_DSTLB
: /* Data store TLB miss */
388 cpu_abort(cs
, "Data store TLB exception while in user-mode. "
391 case POWERPC_EXCP_FPA
: /* Floating-point assist exception */
392 cpu_abort(cs
, "Floating-point assist exception not handled\n");
394 case POWERPC_EXCP_IABR
: /* Instruction address breakpoint */
395 cpu_abort(cs
, "Instruction address breakpoint exception "
398 case POWERPC_EXCP_SMI
: /* System management interrupt */
399 cpu_abort(cs
, "System management interrupt while in user mode. "
402 case POWERPC_EXCP_THERM
: /* Thermal interrupt */
403 cpu_abort(cs
, "Thermal interrupt interrupt while in user mode. "
406 case POWERPC_EXCP_PERFM
: /* Embedded performance monitor IRQ */
407 cpu_abort(cs
, "Performance monitor exception not handled\n");
409 case POWERPC_EXCP_VPUA
: /* Vector assist exception */
410 cpu_abort(cs
, "Vector assist exception not handled\n");
412 case POWERPC_EXCP_SOFTP
: /* Soft patch exception */
413 cpu_abort(cs
, "Soft patch exception not handled\n");
415 case POWERPC_EXCP_MAINT
: /* Maintenance exception */
416 cpu_abort(cs
, "Maintenance exception while in user mode. "
419 case POWERPC_EXCP_STOP
: /* stop translation */
420 /* We did invalidate the instruction cache. Go on */
422 case POWERPC_EXCP_BRANCH
: /* branch instruction: */
423 /* We just stopped because of a branch. Go on */
425 case POWERPC_EXCP_SYSCALL_USER
:
426 /* system call in user-mode emulation */
428 * PPC ABI uses overflow flag in cr0 to signal an error
433 ret
= do_syscall(env
, env
->gpr
[0], env
->gpr
[3], env
->gpr
[4],
434 env
->gpr
[5], env
->gpr
[6], env
->gpr
[7],
436 if (ret
== -TARGET_ERESTARTSYS
) {
440 if (ret
== (target_ulong
)(-TARGET_QEMU_ESIGRETURN
)) {
441 /* Returning from a successful sigreturn syscall.
442 Avoid corrupting register state. */
445 if (ret
> (target_ulong
)(-515)) {
452 info
.si_signo
= TARGET_SIGTRAP
;
454 info
.si_code
= TARGET_TRAP_BRKPT
;
455 queue_signal(env
, info
.si_signo
, QEMU_SI_FAULT
, &info
);
458 /* just indicate that signals should be handled asap */
461 cpu_exec_step_atomic(cs
);
462 arch_interrupt
= false;
465 cpu_abort(cs
, "Unknown exception 0x%x. Aborting\n", trapnr
);
468 process_pending_signals(env
);
470 /* Most of the traps imply a transition through kernel mode,
471 * which implies an REI instruction has been executed. Which
472 * means that RX and LOCK_ADDR should be cleared. But there
473 * are a few exceptions for traps internal to QEMU.
475 if (arch_interrupt
) {
476 env
->reserve_addr
= -1;
481 void target_cpu_copy_regs(CPUArchState
*env
, struct target_pt_regs
*regs
)
485 #if defined(TARGET_PPC64)
486 int flag
= (env
->insns_flags2
& PPC2_BOOKE206
) ? MSR_CM
: MSR_SF
;
487 #if defined(TARGET_ABI32)
488 env
->msr
&= ~((target_ulong
)1 << flag
);
490 env
->msr
|= (target_ulong
)1 << flag
;
493 env
->nip
= regs
->nip
;
494 for(i
= 0; i
< 32; i
++) {
495 env
->gpr
[i
] = regs
->gpr
[i
];