hw/dma: Add SiFive platform DMA controller emulation
[qemu/ar7.git] / target / sh4 / op_helper.c
blob14c3db0f485c78f4e80125d5675e69ed29a2fbda
1 /*
2 * SH4 emulation
4 * Copyright (c) 2005 Samuel Tardieu
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 "cpu.h"
21 #include "exec/helper-proto.h"
22 #include "exec/exec-all.h"
23 #include "exec/cpu_ldst.h"
24 #include "fpu/softfloat.h"
26 #ifndef CONFIG_USER_ONLY
28 void superh_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
29 MMUAccessType access_type,
30 int mmu_idx, uintptr_t retaddr)
32 switch (access_type) {
33 case MMU_INST_FETCH:
34 case MMU_DATA_LOAD:
35 cs->exception_index = 0x0e0;
36 break;
37 case MMU_DATA_STORE:
38 cs->exception_index = 0x100;
39 break;
41 cpu_loop_exit_restore(cs, retaddr);
44 #endif
46 void helper_ldtlb(CPUSH4State *env)
48 #ifdef CONFIG_USER_ONLY
49 cpu_abort(env_cpu(env), "Unhandled ldtlb");
50 #else
51 cpu_load_tlb(env);
52 #endif
55 static inline void QEMU_NORETURN raise_exception(CPUSH4State *env, int index,
56 uintptr_t retaddr)
58 CPUState *cs = env_cpu(env);
60 cs->exception_index = index;
61 cpu_loop_exit_restore(cs, retaddr);
64 void helper_raise_illegal_instruction(CPUSH4State *env)
66 raise_exception(env, 0x180, 0);
69 void helper_raise_slot_illegal_instruction(CPUSH4State *env)
71 raise_exception(env, 0x1a0, 0);
74 void helper_raise_fpu_disable(CPUSH4State *env)
76 raise_exception(env, 0x800, 0);
79 void helper_raise_slot_fpu_disable(CPUSH4State *env)
81 raise_exception(env, 0x820, 0);
84 void helper_debug(CPUSH4State *env)
86 raise_exception(env, EXCP_DEBUG, 0);
89 void helper_sleep(CPUSH4State *env)
91 CPUState *cs = env_cpu(env);
93 cs->halted = 1;
94 env->in_sleep = 1;
95 raise_exception(env, EXCP_HLT, 0);
98 void helper_trapa(CPUSH4State *env, uint32_t tra)
100 env->tra = tra << 2;
101 raise_exception(env, 0x160, 0);
104 void helper_exclusive(CPUSH4State *env)
106 /* We do not want cpu_restore_state to run. */
107 cpu_loop_exit_atomic(env_cpu(env), 0);
110 void helper_movcal(CPUSH4State *env, uint32_t address, uint32_t value)
112 if (cpu_sh4_is_cached (env, address))
114 memory_content *r = g_new(memory_content, 1);
116 r->address = address;
117 r->value = value;
118 r->next = NULL;
120 *(env->movcal_backup_tail) = r;
121 env->movcal_backup_tail = &(r->next);
125 void helper_discard_movcal_backup(CPUSH4State *env)
127 memory_content *current = env->movcal_backup;
129 while(current)
131 memory_content *next = current->next;
132 g_free(current);
133 env->movcal_backup = current = next;
134 if (current == NULL)
135 env->movcal_backup_tail = &(env->movcal_backup);
139 void helper_ocbi(CPUSH4State *env, uint32_t address)
141 memory_content **current = &(env->movcal_backup);
142 while (*current)
144 uint32_t a = (*current)->address;
145 if ((a & ~0x1F) == (address & ~0x1F))
147 memory_content *next = (*current)->next;
148 cpu_stl_data(env, a, (*current)->value);
150 if (next == NULL)
152 env->movcal_backup_tail = current;
155 g_free(*current);
156 *current = next;
157 break;
162 void helper_macl(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
164 int64_t res;
166 res = ((uint64_t) env->mach << 32) | env->macl;
167 res += (int64_t) (int32_t) arg0 *(int64_t) (int32_t) arg1;
168 env->mach = (res >> 32) & 0xffffffff;
169 env->macl = res & 0xffffffff;
170 if (env->sr & (1u << SR_S)) {
171 if (res < 0)
172 env->mach |= 0xffff0000;
173 else
174 env->mach &= 0x00007fff;
178 void helper_macw(CPUSH4State *env, uint32_t arg0, uint32_t arg1)
180 int64_t res;
182 res = ((uint64_t) env->mach << 32) | env->macl;
183 res += (int64_t) (int16_t) arg0 *(int64_t) (int16_t) arg1;
184 env->mach = (res >> 32) & 0xffffffff;
185 env->macl = res & 0xffffffff;
186 if (env->sr & (1u << SR_S)) {
187 if (res < -0x80000000) {
188 env->mach = 1;
189 env->macl = 0x80000000;
190 } else if (res > 0x000000007fffffff) {
191 env->mach = 1;
192 env->macl = 0x7fffffff;
197 void helper_ld_fpscr(CPUSH4State *env, uint32_t val)
199 env->fpscr = val & FPSCR_MASK;
200 if ((val & FPSCR_RM_MASK) == FPSCR_RM_ZERO) {
201 set_float_rounding_mode(float_round_to_zero, &env->fp_status);
202 } else {
203 set_float_rounding_mode(float_round_nearest_even, &env->fp_status);
205 set_flush_to_zero((val & FPSCR_DN) != 0, &env->fp_status);
208 static void update_fpscr(CPUSH4State *env, uintptr_t retaddr)
210 int xcpt, cause, enable;
212 xcpt = get_float_exception_flags(&env->fp_status);
214 /* Clear the cause entries */
215 env->fpscr &= ~FPSCR_CAUSE_MASK;
217 if (unlikely(xcpt)) {
218 if (xcpt & float_flag_invalid) {
219 env->fpscr |= FPSCR_CAUSE_V;
221 if (xcpt & float_flag_divbyzero) {
222 env->fpscr |= FPSCR_CAUSE_Z;
224 if (xcpt & float_flag_overflow) {
225 env->fpscr |= FPSCR_CAUSE_O;
227 if (xcpt & float_flag_underflow) {
228 env->fpscr |= FPSCR_CAUSE_U;
230 if (xcpt & float_flag_inexact) {
231 env->fpscr |= FPSCR_CAUSE_I;
234 /* Accumulate in flag entries */
235 env->fpscr |= (env->fpscr & FPSCR_CAUSE_MASK)
236 >> (FPSCR_CAUSE_SHIFT - FPSCR_FLAG_SHIFT);
238 /* Generate an exception if enabled */
239 cause = (env->fpscr & FPSCR_CAUSE_MASK) >> FPSCR_CAUSE_SHIFT;
240 enable = (env->fpscr & FPSCR_ENABLE_MASK) >> FPSCR_ENABLE_SHIFT;
241 if (cause & enable) {
242 raise_exception(env, 0x120, retaddr);
247 float32 helper_fadd_FT(CPUSH4State *env, float32 t0, float32 t1)
249 set_float_exception_flags(0, &env->fp_status);
250 t0 = float32_add(t0, t1, &env->fp_status);
251 update_fpscr(env, GETPC());
252 return t0;
255 float64 helper_fadd_DT(CPUSH4State *env, float64 t0, float64 t1)
257 set_float_exception_flags(0, &env->fp_status);
258 t0 = float64_add(t0, t1, &env->fp_status);
259 update_fpscr(env, GETPC());
260 return t0;
263 uint32_t helper_fcmp_eq_FT(CPUSH4State *env, float32 t0, float32 t1)
265 int relation;
267 set_float_exception_flags(0, &env->fp_status);
268 relation = float32_compare(t0, t1, &env->fp_status);
269 update_fpscr(env, GETPC());
270 return relation == float_relation_equal;
273 uint32_t helper_fcmp_eq_DT(CPUSH4State *env, float64 t0, float64 t1)
275 int relation;
277 set_float_exception_flags(0, &env->fp_status);
278 relation = float64_compare(t0, t1, &env->fp_status);
279 update_fpscr(env, GETPC());
280 return relation == float_relation_equal;
283 uint32_t helper_fcmp_gt_FT(CPUSH4State *env, float32 t0, float32 t1)
285 int relation;
287 set_float_exception_flags(0, &env->fp_status);
288 relation = float32_compare(t0, t1, &env->fp_status);
289 update_fpscr(env, GETPC());
290 return relation == float_relation_greater;
293 uint32_t helper_fcmp_gt_DT(CPUSH4State *env, float64 t0, float64 t1)
295 int relation;
297 set_float_exception_flags(0, &env->fp_status);
298 relation = float64_compare(t0, t1, &env->fp_status);
299 update_fpscr(env, GETPC());
300 return relation == float_relation_greater;
303 float64 helper_fcnvsd_FT_DT(CPUSH4State *env, float32 t0)
305 float64 ret;
306 set_float_exception_flags(0, &env->fp_status);
307 ret = float32_to_float64(t0, &env->fp_status);
308 update_fpscr(env, GETPC());
309 return ret;
312 float32 helper_fcnvds_DT_FT(CPUSH4State *env, float64 t0)
314 float32 ret;
315 set_float_exception_flags(0, &env->fp_status);
316 ret = float64_to_float32(t0, &env->fp_status);
317 update_fpscr(env, GETPC());
318 return ret;
321 float32 helper_fdiv_FT(CPUSH4State *env, float32 t0, float32 t1)
323 set_float_exception_flags(0, &env->fp_status);
324 t0 = float32_div(t0, t1, &env->fp_status);
325 update_fpscr(env, GETPC());
326 return t0;
329 float64 helper_fdiv_DT(CPUSH4State *env, float64 t0, float64 t1)
331 set_float_exception_flags(0, &env->fp_status);
332 t0 = float64_div(t0, t1, &env->fp_status);
333 update_fpscr(env, GETPC());
334 return t0;
337 float32 helper_float_FT(CPUSH4State *env, uint32_t t0)
339 float32 ret;
340 set_float_exception_flags(0, &env->fp_status);
341 ret = int32_to_float32(t0, &env->fp_status);
342 update_fpscr(env, GETPC());
343 return ret;
346 float64 helper_float_DT(CPUSH4State *env, uint32_t t0)
348 float64 ret;
349 set_float_exception_flags(0, &env->fp_status);
350 ret = int32_to_float64(t0, &env->fp_status);
351 update_fpscr(env, GETPC());
352 return ret;
355 float32 helper_fmac_FT(CPUSH4State *env, float32 t0, float32 t1, float32 t2)
357 set_float_exception_flags(0, &env->fp_status);
358 t0 = float32_muladd(t0, t1, t2, 0, &env->fp_status);
359 update_fpscr(env, GETPC());
360 return t0;
363 float32 helper_fmul_FT(CPUSH4State *env, float32 t0, float32 t1)
365 set_float_exception_flags(0, &env->fp_status);
366 t0 = float32_mul(t0, t1, &env->fp_status);
367 update_fpscr(env, GETPC());
368 return t0;
371 float64 helper_fmul_DT(CPUSH4State *env, float64 t0, float64 t1)
373 set_float_exception_flags(0, &env->fp_status);
374 t0 = float64_mul(t0, t1, &env->fp_status);
375 update_fpscr(env, GETPC());
376 return t0;
379 float32 helper_fsqrt_FT(CPUSH4State *env, float32 t0)
381 set_float_exception_flags(0, &env->fp_status);
382 t0 = float32_sqrt(t0, &env->fp_status);
383 update_fpscr(env, GETPC());
384 return t0;
387 float64 helper_fsqrt_DT(CPUSH4State *env, float64 t0)
389 set_float_exception_flags(0, &env->fp_status);
390 t0 = float64_sqrt(t0, &env->fp_status);
391 update_fpscr(env, GETPC());
392 return t0;
395 float32 helper_fsrra_FT(CPUSH4State *env, float32 t0)
397 set_float_exception_flags(0, &env->fp_status);
398 /* "Approximate" 1/sqrt(x) via actual computation. */
399 t0 = float32_sqrt(t0, &env->fp_status);
400 t0 = float32_div(float32_one, t0, &env->fp_status);
401 /* Since this is supposed to be an approximation, an imprecision
402 exception is required. One supposes this also follows the usual
403 IEEE rule that other exceptions take precidence. */
404 if (get_float_exception_flags(&env->fp_status) == 0) {
405 set_float_exception_flags(float_flag_inexact, &env->fp_status);
407 update_fpscr(env, GETPC());
408 return t0;
411 float32 helper_fsub_FT(CPUSH4State *env, float32 t0, float32 t1)
413 set_float_exception_flags(0, &env->fp_status);
414 t0 = float32_sub(t0, t1, &env->fp_status);
415 update_fpscr(env, GETPC());
416 return t0;
419 float64 helper_fsub_DT(CPUSH4State *env, float64 t0, float64 t1)
421 set_float_exception_flags(0, &env->fp_status);
422 t0 = float64_sub(t0, t1, &env->fp_status);
423 update_fpscr(env, GETPC());
424 return t0;
427 uint32_t helper_ftrc_FT(CPUSH4State *env, float32 t0)
429 uint32_t ret;
430 set_float_exception_flags(0, &env->fp_status);
431 ret = float32_to_int32_round_to_zero(t0, &env->fp_status);
432 update_fpscr(env, GETPC());
433 return ret;
436 uint32_t helper_ftrc_DT(CPUSH4State *env, float64 t0)
438 uint32_t ret;
439 set_float_exception_flags(0, &env->fp_status);
440 ret = float64_to_int32_round_to_zero(t0, &env->fp_status);
441 update_fpscr(env, GETPC());
442 return ret;
445 void helper_fipr(CPUSH4State *env, uint32_t m, uint32_t n)
447 int bank, i;
448 float32 r, p;
450 bank = (env->sr & FPSCR_FR) ? 16 : 0;
451 r = float32_zero;
452 set_float_exception_flags(0, &env->fp_status);
454 for (i = 0 ; i < 4 ; i++) {
455 p = float32_mul(env->fregs[bank + m + i],
456 env->fregs[bank + n + i],
457 &env->fp_status);
458 r = float32_add(r, p, &env->fp_status);
460 update_fpscr(env, GETPC());
462 env->fregs[bank + n + 3] = r;
465 void helper_ftrv(CPUSH4State *env, uint32_t n)
467 int bank_matrix, bank_vector;
468 int i, j;
469 float32 r[4];
470 float32 p;
472 bank_matrix = (env->sr & FPSCR_FR) ? 0 : 16;
473 bank_vector = (env->sr & FPSCR_FR) ? 16 : 0;
474 set_float_exception_flags(0, &env->fp_status);
475 for (i = 0 ; i < 4 ; i++) {
476 r[i] = float32_zero;
477 for (j = 0 ; j < 4 ; j++) {
478 p = float32_mul(env->fregs[bank_matrix + 4 * j + i],
479 env->fregs[bank_vector + j],
480 &env->fp_status);
481 r[i] = float32_add(r[i], p, &env->fp_status);
484 update_fpscr(env, GETPC());
486 for (i = 0 ; i < 4 ; i++) {
487 env->fregs[bank_vector + i] = r[i];