trace: forbid use of %m in trace event format strings
[qemu/ar7.git] / target / ppc / misc_helper.c
blobb884930096090f6a573d36afeba028aeb6570460
1 /*
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 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 "cpu.h"
21 #include "exec/exec-all.h"
22 #include "exec/helper-proto.h"
23 #include "qemu/error-report.h"
25 #include "helper_regs.h"
27 /*****************************************************************************/
28 /* SPR accesses */
29 void helper_load_dump_spr(CPUPPCState *env, uint32_t sprn)
31 qemu_log("Read SPR %d %03x => " TARGET_FMT_lx "\n", sprn, sprn,
32 env->spr[sprn]);
35 void helper_store_dump_spr(CPUPPCState *env, uint32_t sprn)
37 qemu_log("Write SPR %d %03x <= " TARGET_FMT_lx "\n", sprn, sprn,
38 env->spr[sprn]);
41 #ifdef TARGET_PPC64
42 static void raise_fu_exception(CPUPPCState *env, uint32_t bit,
43 uint32_t sprn, uint32_t cause,
44 uintptr_t raddr)
46 qemu_log("Facility SPR %d is unavailable (SPR FSCR:%d)\n", sprn, bit);
48 env->spr[SPR_FSCR] &= ~((target_ulong)FSCR_IC_MASK << FSCR_IC_POS);
49 cause &= FSCR_IC_MASK;
50 env->spr[SPR_FSCR] |= (target_ulong)cause << FSCR_IC_POS;
52 raise_exception_err_ra(env, POWERPC_EXCP_FU, 0, raddr);
54 #endif
56 void helper_fscr_facility_check(CPUPPCState *env, uint32_t bit,
57 uint32_t sprn, uint32_t cause)
59 #ifdef TARGET_PPC64
60 if (env->spr[SPR_FSCR] & (1ULL << bit)) {
61 /* Facility is enabled, continue */
62 return;
64 raise_fu_exception(env, bit, sprn, cause, GETPC());
65 #endif
68 void helper_msr_facility_check(CPUPPCState *env, uint32_t bit,
69 uint32_t sprn, uint32_t cause)
71 #ifdef TARGET_PPC64
72 if (env->msr & (1ULL << bit)) {
73 /* Facility is enabled, continue */
74 return;
76 raise_fu_exception(env, bit, sprn, cause, GETPC());
77 #endif
80 #if !defined(CONFIG_USER_ONLY)
82 void helper_store_sdr1(CPUPPCState *env, target_ulong val)
84 PowerPCCPU *cpu = ppc_env_get_cpu(env);
86 if (env->spr[SPR_SDR1] != val) {
87 ppc_store_sdr1(env, val);
88 tlb_flush(CPU(cpu));
92 #if defined(TARGET_PPC64)
93 void helper_store_ptcr(CPUPPCState *env, target_ulong val)
95 PowerPCCPU *cpu = ppc_env_get_cpu(env);
97 if (env->spr[SPR_PTCR] != val) {
98 ppc_store_ptcr(env, val);
99 tlb_flush(CPU(cpu));
103 void helper_store_pcr(CPUPPCState *env, target_ulong value)
105 PowerPCCPU *cpu = ppc_env_get_cpu(env);
106 PowerPCCPUClass *pcc = POWERPC_CPU_GET_CLASS(cpu);
108 env->spr[SPR_PCR] = value & pcc->pcr_mask;
110 #endif /* defined(TARGET_PPC64) */
112 void helper_store_pidr(CPUPPCState *env, target_ulong val)
114 PowerPCCPU *cpu = ppc_env_get_cpu(env);
116 env->spr[SPR_BOOKS_PID] = val;
117 tlb_flush(CPU(cpu));
120 void helper_store_hid0_601(CPUPPCState *env, target_ulong val)
122 target_ulong hid0;
124 hid0 = env->spr[SPR_HID0];
125 if ((val ^ hid0) & 0x00000008) {
126 /* Change current endianness */
127 env->hflags &= ~(1 << MSR_LE);
128 env->hflags_nmsr &= ~(1 << MSR_LE);
129 env->hflags_nmsr |= (1 << MSR_LE) & (((val >> 3) & 1) << MSR_LE);
130 env->hflags |= env->hflags_nmsr;
131 qemu_log("%s: set endianness to %c => " TARGET_FMT_lx "\n", __func__,
132 val & 0x8 ? 'l' : 'b', env->hflags);
134 env->spr[SPR_HID0] = (uint32_t)val;
137 void helper_store_403_pbr(CPUPPCState *env, uint32_t num, target_ulong value)
139 PowerPCCPU *cpu = ppc_env_get_cpu(env);
141 if (likely(env->pb[num] != value)) {
142 env->pb[num] = value;
143 /* Should be optimized */
144 tlb_flush(CPU(cpu));
148 void helper_store_40x_dbcr0(CPUPPCState *env, target_ulong val)
150 store_40x_dbcr0(env, val);
153 void helper_store_40x_sler(CPUPPCState *env, target_ulong val)
155 store_40x_sler(env, val);
157 #endif
158 /*****************************************************************************/
159 /* PowerPC 601 specific instructions (POWER bridge) */
161 target_ulong helper_clcs(CPUPPCState *env, uint32_t arg)
163 switch (arg) {
164 case 0x0CUL:
165 /* Instruction cache line size */
166 return env->icache_line_size;
167 break;
168 case 0x0DUL:
169 /* Data cache line size */
170 return env->dcache_line_size;
171 break;
172 case 0x0EUL:
173 /* Minimum cache line size */
174 return (env->icache_line_size < env->dcache_line_size) ?
175 env->icache_line_size : env->dcache_line_size;
176 break;
177 case 0x0FUL:
178 /* Maximum cache line size */
179 return (env->icache_line_size > env->dcache_line_size) ?
180 env->icache_line_size : env->dcache_line_size;
181 break;
182 default:
183 /* Undefined */
184 return 0;
185 break;
189 /*****************************************************************************/
190 /* Special registers manipulation */
192 /* GDBstub can read and write MSR... */
193 void ppc_store_msr(CPUPPCState *env, target_ulong value)
195 hreg_store_msr(env, value, 0);
198 /* This code is lifted from MacOnLinux. It is called whenever
199 * THRM1,2 or 3 is read an fixes up the values in such a way
200 * that will make MacOS not hang. These registers exist on some
201 * 75x and 74xx processors.
203 void helper_fixup_thrm(CPUPPCState *env)
205 target_ulong v, t;
206 int i;
208 #define THRM1_TIN (1 << 31)
209 #define THRM1_TIV (1 << 30)
210 #define THRM1_THRES(x) (((x) & 0x7f) << 23)
211 #define THRM1_TID (1 << 2)
212 #define THRM1_TIE (1 << 1)
213 #define THRM1_V (1 << 0)
214 #define THRM3_E (1 << 0)
216 if (!(env->spr[SPR_THRM3] & THRM3_E)) {
217 return;
220 /* Note: Thermal interrupts are unimplemented */
221 for (i = SPR_THRM1; i <= SPR_THRM2; i++) {
222 v = env->spr[i];
223 if (!(v & THRM1_V)) {
224 continue;
226 v |= THRM1_TIV;
227 v &= ~THRM1_TIN;
228 t = v & THRM1_THRES(127);
229 if ((v & THRM1_TID) && t < THRM1_THRES(24)) {
230 v |= THRM1_TIN;
232 if (!(v & THRM1_TID) && t > THRM1_THRES(24)) {
233 v |= THRM1_TIN;
235 env->spr[i] = v;