2 * Miscellaneous PowerPC emulation helpers for QEMU.
4 * Copyright (c) 2003-2007 Jocelyn Mayer
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.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/>.
20 #include "qemu/osdep.h"
23 #include "exec/exec-all.h"
24 #include "exec/helper-proto.h"
25 #include "qemu/error-report.h"
26 #include "qemu/main-loop.h"
27 #include "mmu-book3s-v3.h"
28 #include "hw/ppc/ppc.h"
30 #include "helper_regs.h"
32 /*****************************************************************************/
34 void helper_load_dump_spr(CPUPPCState
*env
, uint32_t sprn
)
36 qemu_log("Read SPR %d %03x => " TARGET_FMT_lx
"\n", sprn
, sprn
,
40 void helper_store_dump_spr(CPUPPCState
*env
, uint32_t sprn
)
42 qemu_log("Write SPR %d %03x <= " TARGET_FMT_lx
"\n", sprn
, sprn
,
47 static void raise_hv_fu_exception(CPUPPCState
*env
, uint32_t bit
,
48 const char *caller
, uint32_t cause
,
51 qemu_log_mask(CPU_LOG_INT
, "HV Facility %d is unavailable (%s)\n",
54 env
->spr
[SPR_HFSCR
] &= ~((target_ulong
)FSCR_IC_MASK
<< FSCR_IC_POS
);
56 raise_exception_err_ra(env
, POWERPC_EXCP_HV_FU
, cause
, raddr
);
59 static void raise_fu_exception(CPUPPCState
*env
, uint32_t bit
,
60 uint32_t sprn
, uint32_t cause
,
63 qemu_log("Facility SPR %d is unavailable (SPR FSCR:%d)\n", sprn
, bit
);
65 env
->spr
[SPR_FSCR
] &= ~((target_ulong
)FSCR_IC_MASK
<< FSCR_IC_POS
);
66 cause
&= FSCR_IC_MASK
;
67 env
->spr
[SPR_FSCR
] |= (target_ulong
)cause
<< FSCR_IC_POS
;
69 raise_exception_err_ra(env
, POWERPC_EXCP_FU
, 0, raddr
);
73 void helper_hfscr_facility_check(CPUPPCState
*env
, uint32_t bit
,
74 const char *caller
, uint32_t cause
)
77 if ((env
->msr_mask
& MSR_HVB
) && !FIELD_EX64(env
->msr
, MSR
, HV
) &&
78 !(env
->spr
[SPR_HFSCR
] & (1UL << bit
))) {
79 raise_hv_fu_exception(env
, bit
, caller
, cause
, GETPC());
84 void helper_fscr_facility_check(CPUPPCState
*env
, uint32_t bit
,
85 uint32_t sprn
, uint32_t cause
)
88 if (env
->spr
[SPR_FSCR
] & (1ULL << bit
)) {
89 /* Facility is enabled, continue */
92 raise_fu_exception(env
, bit
, sprn
, cause
, GETPC());
96 void helper_msr_facility_check(CPUPPCState
*env
, uint32_t bit
,
97 uint32_t sprn
, uint32_t cause
)
100 if (env
->msr
& (1ULL << bit
)) {
101 /* Facility is enabled, continue */
104 raise_fu_exception(env
, bit
, sprn
, cause
, GETPC());
108 #if !defined(CONFIG_USER_ONLY)
110 void helper_store_sdr1(CPUPPCState
*env
, target_ulong val
)
112 if (env
->spr
[SPR_SDR1
] != val
) {
113 ppc_store_sdr1(env
, val
);
114 tlb_flush(env_cpu(env
));
118 #if defined(TARGET_PPC64)
119 void helper_store_ptcr(CPUPPCState
*env
, target_ulong val
)
121 if (env
->spr
[SPR_PTCR
] != val
) {
122 PowerPCCPU
*cpu
= env_archcpu(env
);
123 target_ulong ptcr_mask
= PTCR_PATB
| PTCR_PATS
;
124 target_ulong patbsize
= val
& PTCR_PATS
;
126 qemu_log_mask(CPU_LOG_MMU
, "%s: " TARGET_FMT_lx
"\n", __func__
, val
);
129 assert(env
->mmu_model
& POWERPC_MMU_3_00
);
131 if (val
& ~ptcr_mask
) {
132 error_report("Invalid bits 0x"TARGET_FMT_lx
" set in PTCR",
138 error_report("Invalid Partition Table size 0x" TARGET_FMT_lx
139 " stored in PTCR", patbsize
);
143 env
->spr
[SPR_PTCR
] = val
;
144 tlb_flush(env_cpu(env
));
148 void helper_store_pcr(CPUPPCState
*env
, target_ulong value
)
150 PowerPCCPU
*cpu
= env_archcpu(env
);
151 PowerPCCPUClass
*pcc
= POWERPC_CPU_GET_CLASS(cpu
);
153 env
->spr
[SPR_PCR
] = value
& pcc
->pcr_mask
;
157 * DPDES register is shared. Each bit reflects the state of the
158 * doorbell interrupt of a thread of the same core.
160 target_ulong
helper_load_dpdes(CPUPPCState
*env
)
162 target_ulong dpdes
= 0;
164 helper_hfscr_facility_check(env
, HFSCR_MSGP
, "load DPDES", HFSCR_IC_MSGP
);
166 /* TODO: TCG supports only one thread */
167 if (env
->pending_interrupts
& PPC_INTERRUPT_DOORBELL
) {
174 void helper_store_dpdes(CPUPPCState
*env
, target_ulong val
)
176 PowerPCCPU
*cpu
= env_archcpu(env
);
178 helper_hfscr_facility_check(env
, HFSCR_MSGP
, "store DPDES", HFSCR_IC_MSGP
);
180 /* TODO: TCG supports only one thread */
182 qemu_log_mask(LOG_GUEST_ERROR
, "Invalid DPDES register value "
183 TARGET_FMT_lx
"\n", val
);
187 ppc_set_irq(cpu
, PPC_INTERRUPT_DOORBELL
, val
& 0x1);
189 #endif /* defined(TARGET_PPC64) */
191 void helper_store_pidr(CPUPPCState
*env
, target_ulong val
)
193 env
->spr
[SPR_BOOKS_PID
] = val
;
194 tlb_flush(env_cpu(env
));
197 void helper_store_lpidr(CPUPPCState
*env
, target_ulong val
)
199 env
->spr
[SPR_LPIDR
] = val
;
202 * We need to flush the TLB on LPID changes as we only tag HV vs
203 * guest in TCG TLB. Also the quadrants means the HV will
204 * potentially access and cache entries for the current LPID as
207 tlb_flush(env_cpu(env
));
210 void helper_store_40x_dbcr0(CPUPPCState
*env
, target_ulong val
)
212 /* Bits 26 & 27 affect single-stepping. */
213 hreg_compute_hflags(env
);
214 /* Bits 28 & 29 affect reset or shutdown. */
215 store_40x_dbcr0(env
, val
);
218 void helper_store_40x_sler(CPUPPCState
*env
, target_ulong val
)
220 store_40x_sler(env
, val
);
224 /*****************************************************************************/
225 /* Special registers manipulation */
228 * This code is lifted from MacOnLinux. It is called whenever THRM1,2
229 * or 3 is read an fixes up the values in such a way that will make
230 * MacOS not hang. These registers exist on some 75x and 74xx
233 void helper_fixup_thrm(CPUPPCState
*env
)
238 #define THRM1_TIN (1 << 31)
239 #define THRM1_TIV (1 << 30)
240 #define THRM1_THRES(x) (((x) & 0x7f) << 23)
241 #define THRM1_TID (1 << 2)
242 #define THRM1_TIE (1 << 1)
243 #define THRM1_V (1 << 0)
244 #define THRM3_E (1 << 0)
246 if (!(env
->spr
[SPR_THRM3
] & THRM3_E
)) {
250 /* Note: Thermal interrupts are unimplemented */
251 for (i
= SPR_THRM1
; i
<= SPR_THRM2
; i
++) {
253 if (!(v
& THRM1_V
)) {
258 t
= v
& THRM1_THRES(127);
259 if ((v
& THRM1_TID
) && t
< THRM1_THRES(24)) {
262 if (!(v
& THRM1_TID
) && t
> THRM1_THRES(24)) {