2 * Microblaze helper routines.
5 * Copyright (c) 2009-2012 PetaLogix Qld Pty Ltd.
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
23 #include "exec/helper-proto.h"
24 #include "qemu/host-utils.h"
25 #include "exec/cpu_ldst.h"
29 #if !defined(CONFIG_USER_ONLY)
31 /* Try to fill the TLB and return an exception if error. If retaddr is
32 * NULL, it means that the function was called in C code (i.e. not
33 * from generated code or from helper.c)
35 void tlb_fill(CPUState *cs, target_ulong addr, int is_write, int mmu_idx,
40 ret = mb_cpu_handle_mmu_fault(cs, addr, is_write, mmu_idx);
43 /* now we have a real cpu fault */
44 cpu_restore_state(cs, retaddr);
51 void helper_put(uint32_t id, uint32_t ctrl, uint32_t data)
53 int test = ctrl & STREAM_TEST;
54 int atomic = ctrl & STREAM_ATOMIC;
55 int control = ctrl & STREAM_CONTROL;
56 int nonblock = ctrl & STREAM_NONBLOCK;
57 int exception = ctrl & STREAM_EXCEPTION;
59 qemu_log("Unhandled stream put to stream-id=%d data=%x %s%s%s%s%s\n",
68 uint32_t helper_get(uint32_t id, uint32_t ctrl)
70 int test = ctrl & STREAM_TEST;
71 int atomic = ctrl & STREAM_ATOMIC;
72 int control = ctrl & STREAM_CONTROL;
73 int nonblock = ctrl & STREAM_NONBLOCK;
74 int exception = ctrl & STREAM_EXCEPTION;
76 qemu_log("Unhandled stream get from stream-id=%d %s%s%s%s%s\n",
83 return 0xdead0000 | id;
86 void helper_raise_exception(CPUMBState *env, uint32_t index)
88 CPUState *cs = CPU(mb_env_get_cpu(env));
90 cs->exception_index = index;
94 void helper_debug(CPUMBState *env)
98 qemu_log("PC=%8.8x\n", env->sregs[SR_PC]);
99 qemu_log("rmsr=%x resr=%x rear=%x debug[%x] imm=%x iflags=%x\n",
100 env->sregs[SR_MSR], env->sregs[SR_ESR], env->sregs[SR_EAR],
101 env->debug, env->imm, env->iflags);
102 qemu_log("btaken=%d btarget=%x mode=%s(saved=%s) eip=%d ie=%d\n",
103 env->btaken, env->btarget,
104 (env->sregs[SR_MSR] & MSR_UM) ? "user" : "kernel",
105 (env->sregs[SR_MSR] & MSR_UMS) ? "user" : "kernel",
106 (env->sregs[SR_MSR] & MSR_EIP),
107 (env->sregs[SR_MSR] & MSR_IE));
108 for (i = 0; i < 32; i++) {
109 qemu_log("r%2.2d=%8.8x ", i, env->regs[i]);
110 if ((i + 1) % 4 == 0)
116 static inline uint32_t compute_carry(uint32_t a, uint32_t b, uint32_t cin)
120 if ((b == ~0) && cin)
122 else if ((~0 - a) < (b + cin))
127 uint32_t helper_cmp(uint32_t a, uint32_t b)
132 if ((b & 0x80000000) ^ (a & 0x80000000))
133 t = (t & 0x7fffffff) | (b & 0x80000000);
137 uint32_t helper_cmpu(uint32_t a, uint32_t b)
142 if ((b & 0x80000000) ^ (a & 0x80000000))
143 t = (t & 0x7fffffff) | (a & 0x80000000);
147 uint32_t helper_clz(uint32_t t0)
152 uint32_t helper_carry(uint32_t a, uint32_t b, uint32_t cf)
155 ncf = compute_carry(a, b, cf);
159 static inline int div_prepare(CPUMBState *env, uint32_t a, uint32_t b)
162 env->sregs[SR_MSR] |= MSR_DZ;
164 if ((env->sregs[SR_MSR] & MSR_EE)
165 && !(env->pvr.regs[2] & PVR2_DIV_ZERO_EXC_MASK)) {
166 env->sregs[SR_ESR] = ESR_EC_DIVZERO;
167 helper_raise_exception(env, EXCP_HW_EXCP);
171 env->sregs[SR_MSR] &= ~MSR_DZ;
175 uint32_t helper_divs(CPUMBState *env, uint32_t a, uint32_t b)
177 if (!div_prepare(env, a, b)) {
180 return (int32_t)a / (int32_t)b;
183 uint32_t helper_divu(CPUMBState *env, uint32_t a, uint32_t b)
185 if (!div_prepare(env, a, b)) {
191 /* raise FPU exception. */
192 static void raise_fpu_exception(CPUMBState *env)
194 env->sregs[SR_ESR] = ESR_EC_FPU;
195 helper_raise_exception(env, EXCP_HW_EXCP);
198 static void update_fpu_flags(CPUMBState *env, int flags)
202 if (flags & float_flag_invalid) {
203 env->sregs[SR_FSR] |= FSR_IO;
206 if (flags & float_flag_divbyzero) {
207 env->sregs[SR_FSR] |= FSR_DZ;
210 if (flags & float_flag_overflow) {
211 env->sregs[SR_FSR] |= FSR_OF;
214 if (flags & float_flag_underflow) {
215 env->sregs[SR_FSR] |= FSR_UF;
219 && (env->pvr.regs[2] & PVR2_FPU_EXC_MASK)
220 && (env->sregs[SR_MSR] & MSR_EE)) {
221 raise_fpu_exception(env);
225 uint32_t helper_fadd(CPUMBState *env, uint32_t a, uint32_t b)
227 CPU_FloatU fd, fa, fb;
230 set_float_exception_flags(0, &env->fp_status);
233 fd.f = float32_add(fa.f, fb.f, &env->fp_status);
235 flags = get_float_exception_flags(&env->fp_status);
236 update_fpu_flags(env, flags);
240 uint32_t helper_frsub(CPUMBState *env, uint32_t a, uint32_t b)
242 CPU_FloatU fd, fa, fb;
245 set_float_exception_flags(0, &env->fp_status);
248 fd.f = float32_sub(fb.f, fa.f, &env->fp_status);
249 flags = get_float_exception_flags(&env->fp_status);
250 update_fpu_flags(env, flags);
254 uint32_t helper_fmul(CPUMBState *env, uint32_t a, uint32_t b)
256 CPU_FloatU fd, fa, fb;
259 set_float_exception_flags(0, &env->fp_status);
262 fd.f = float32_mul(fa.f, fb.f, &env->fp_status);
263 flags = get_float_exception_flags(&env->fp_status);
264 update_fpu_flags(env, flags);
269 uint32_t helper_fdiv(CPUMBState *env, uint32_t a, uint32_t b)
271 CPU_FloatU fd, fa, fb;
274 set_float_exception_flags(0, &env->fp_status);
277 fd.f = float32_div(fb.f, fa.f, &env->fp_status);
278 flags = get_float_exception_flags(&env->fp_status);
279 update_fpu_flags(env, flags);
284 uint32_t helper_fcmp_un(CPUMBState *env, uint32_t a, uint32_t b)
292 if (float32_is_signaling_nan(fa.f) || float32_is_signaling_nan(fb.f)) {
293 update_fpu_flags(env, float_flag_invalid);
297 if (float32_is_quiet_nan(fa.f) || float32_is_quiet_nan(fb.f)) {
304 uint32_t helper_fcmp_lt(CPUMBState *env, uint32_t a, uint32_t b)
310 set_float_exception_flags(0, &env->fp_status);
313 r = float32_lt(fb.f, fa.f, &env->fp_status);
314 flags = get_float_exception_flags(&env->fp_status);
315 update_fpu_flags(env, flags & float_flag_invalid);
320 uint32_t helper_fcmp_eq(CPUMBState *env, uint32_t a, uint32_t b)
326 set_float_exception_flags(0, &env->fp_status);
329 r = float32_eq_quiet(fa.f, fb.f, &env->fp_status);
330 flags = get_float_exception_flags(&env->fp_status);
331 update_fpu_flags(env, flags & float_flag_invalid);
336 uint32_t helper_fcmp_le(CPUMBState *env, uint32_t a, uint32_t b)
344 set_float_exception_flags(0, &env->fp_status);
345 r = float32_le(fa.f, fb.f, &env->fp_status);
346 flags = get_float_exception_flags(&env->fp_status);
347 update_fpu_flags(env, flags & float_flag_invalid);
353 uint32_t helper_fcmp_gt(CPUMBState *env, uint32_t a, uint32_t b)
360 set_float_exception_flags(0, &env->fp_status);
361 r = float32_lt(fa.f, fb.f, &env->fp_status);
362 flags = get_float_exception_flags(&env->fp_status);
363 update_fpu_flags(env, flags & float_flag_invalid);
367 uint32_t helper_fcmp_ne(CPUMBState *env, uint32_t a, uint32_t b)
374 set_float_exception_flags(0, &env->fp_status);
375 r = !float32_eq_quiet(fa.f, fb.f, &env->fp_status);
376 flags = get_float_exception_flags(&env->fp_status);
377 update_fpu_flags(env, flags & float_flag_invalid);
382 uint32_t helper_fcmp_ge(CPUMBState *env, uint32_t a, uint32_t b)
389 set_float_exception_flags(0, &env->fp_status);
390 r = !float32_lt(fa.f, fb.f, &env->fp_status);
391 flags = get_float_exception_flags(&env->fp_status);
392 update_fpu_flags(env, flags & float_flag_invalid);
397 uint32_t helper_flt(CPUMBState *env, uint32_t a)
402 fd.f = int32_to_float32(fa.l, &env->fp_status);
406 uint32_t helper_fint(CPUMBState *env, uint32_t a)
412 set_float_exception_flags(0, &env->fp_status);
414 r = float32_to_int32(fa.f, &env->fp_status);
415 flags = get_float_exception_flags(&env->fp_status);
416 update_fpu_flags(env, flags);
421 uint32_t helper_fsqrt(CPUMBState *env, uint32_t a)
426 set_float_exception_flags(0, &env->fp_status);
428 fd.l = float32_sqrt(fa.f, &env->fp_status);
429 flags = get_float_exception_flags(&env->fp_status);
430 update_fpu_flags(env, flags);
435 uint32_t helper_pcmpbf(uint32_t a, uint32_t b)
438 uint32_t mask = 0xff000000;
440 for (i = 0; i < 4; i++) {
441 if ((a & mask) == (b & mask))
448 void helper_memalign(CPUMBState *env, uint32_t addr, uint32_t dr, uint32_t wr,
452 qemu_log_mask(CPU_LOG_INT,
453 "unaligned access addr=%x mask=%x, wr=%d dr=r%d\n",
455 env->sregs[SR_EAR] = addr;
456 env->sregs[SR_ESR] = ESR_EC_UNALIGNED_DATA | (wr << 10) \
459 env->sregs[SR_ESR] |= 1 << 11;
461 if (!(env->sregs[SR_MSR] & MSR_EE)) {
464 helper_raise_exception(env, EXCP_HW_EXCP);
468 void helper_stackprot(CPUMBState *env, uint32_t addr)
470 if (addr < env->slr || addr > env->shr) {
471 qemu_log("Stack protector violation at %x %x %x\n",
472 addr, env->slr, env->shr);
473 env->sregs[SR_EAR] = addr;
474 env->sregs[SR_ESR] = ESR_EC_STACKPROT;
475 helper_raise_exception(env, EXCP_HW_EXCP);
479 #if !defined(CONFIG_USER_ONLY)
480 /* Writes/reads to the MMU's special regs end up here. */
481 uint32_t helper_mmu_read(CPUMBState *env, uint32_t rn)
483 return mmu_read(env, rn);
486 void helper_mmu_write(CPUMBState *env, uint32_t rn, uint32_t v)
488 mmu_write(env, rn, v);
491 void mb_cpu_unassigned_access(CPUState *cs, hwaddr addr,
492 bool is_write, bool is_exec, int is_asi,
498 qemu_log_mask(CPU_LOG_INT, "Unassigned " TARGET_FMT_plx " wr=%d exe=%d\n",
499 addr, is_write ? 1 : 0, is_exec ? 1 : 0);
503 cpu = MICROBLAZE_CPU(cs);
505 if (!(env->sregs[SR_MSR] & MSR_EE)) {
509 env->sregs[SR_EAR] = addr;
511 if ((env->pvr.regs[2] & PVR2_IOPB_BUS_EXC_MASK)) {
512 env->sregs[SR_ESR] = ESR_EC_INSN_BUS;
513 helper_raise_exception(env, EXCP_HW_EXCP);
516 if ((env->pvr.regs[2] & PVR2_DOPB_BUS_EXC_MASK)) {
517 env->sregs[SR_ESR] = ESR_EC_DATA_BUS;
518 helper_raise_exception(env, EXCP_HW_EXCP);