icount: Take iothread lock when running QEMU timers
[qemu/ar7.git] / target / loongarch / op_helper.c
blob568c071601617123a8e4c00836db6b5f98fdf504
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /*
3 * LoongArch emulation helpers for QEMU.
5 * Copyright (c) 2021 Loongson Technology Corporation Limited
6 */
8 #include "qemu/osdep.h"
9 #include "qemu/log.h"
10 #include "qemu/main-loop.h"
11 #include "cpu.h"
12 #include "qemu/host-utils.h"
13 #include "exec/helper-proto.h"
14 #include "exec/exec-all.h"
15 #include "exec/cpu_ldst.h"
16 #include "internals.h"
17 #include "qemu/crc32c.h"
18 #include <zlib.h>
19 #include "cpu-csr.h"
21 /* Exceptions helpers */
22 void helper_raise_exception(CPULoongArchState *env, uint32_t exception)
24 do_raise_exception(env, exception, GETPC());
27 target_ulong helper_bitrev_w(target_ulong rj)
29 return (int32_t)revbit32(rj);
32 target_ulong helper_bitrev_d(target_ulong rj)
34 return revbit64(rj);
37 target_ulong helper_bitswap(target_ulong v)
39 v = ((v >> 1) & (target_ulong)0x5555555555555555ULL) |
40 ((v & (target_ulong)0x5555555555555555ULL) << 1);
41 v = ((v >> 2) & (target_ulong)0x3333333333333333ULL) |
42 ((v & (target_ulong)0x3333333333333333ULL) << 2);
43 v = ((v >> 4) & (target_ulong)0x0F0F0F0F0F0F0F0FULL) |
44 ((v & (target_ulong)0x0F0F0F0F0F0F0F0FULL) << 4);
45 return v;
48 /* loongarch assert op */
49 void helper_asrtle_d(CPULoongArchState *env, target_ulong rj, target_ulong rk)
51 if (rj > rk) {
52 do_raise_exception(env, EXCCODE_BCE, 0);
56 void helper_asrtgt_d(CPULoongArchState *env, target_ulong rj, target_ulong rk)
58 if (rj <= rk) {
59 do_raise_exception(env, EXCCODE_BCE, 0);
63 target_ulong helper_crc32(target_ulong val, target_ulong m, uint64_t sz)
65 uint8_t buf[8];
66 target_ulong mask = ((sz * 8) == 64) ? -1ULL : ((1ULL << (sz * 8)) - 1);
68 m &= mask;
69 stq_le_p(buf, m);
70 return (int32_t) (crc32(val ^ 0xffffffff, buf, sz) ^ 0xffffffff);
73 target_ulong helper_crc32c(target_ulong val, target_ulong m, uint64_t sz)
75 uint8_t buf[8];
76 target_ulong mask = ((sz * 8) == 64) ? -1ULL : ((1ULL << (sz * 8)) - 1);
77 m &= mask;
78 stq_le_p(buf, m);
79 return (int32_t) (crc32c(val, buf, sz) ^ 0xffffffff);
82 target_ulong helper_cpucfg(CPULoongArchState *env, target_ulong rj)
84 return rj >= ARRAY_SIZE(env->cpucfg) ? 0 : env->cpucfg[rj];
87 uint64_t helper_rdtime_d(CPULoongArchState *env)
89 #ifdef CONFIG_USER_ONLY
90 return cpu_get_host_ticks();
91 #else
92 uint64_t plv;
93 LoongArchCPU *cpu = env_archcpu(env);
95 plv = FIELD_EX64(env->CSR_CRMD, CSR_CRMD, PLV);
96 if (extract64(env->CSR_MISC, R_CSR_MISC_DRDTL_SHIFT + plv, 1)) {
97 do_raise_exception(env, EXCCODE_IPE, GETPC());
100 return cpu_loongarch_get_constant_timer_counter(cpu);
101 #endif
104 #ifndef CONFIG_USER_ONLY
105 void helper_ertn(CPULoongArchState *env)
107 uint64_t csr_pplv, csr_pie;
108 if (FIELD_EX64(env->CSR_TLBRERA, CSR_TLBRERA, ISTLBR)) {
109 csr_pplv = FIELD_EX64(env->CSR_TLBRPRMD, CSR_TLBRPRMD, PPLV);
110 csr_pie = FIELD_EX64(env->CSR_TLBRPRMD, CSR_TLBRPRMD, PIE);
112 env->CSR_TLBRERA = FIELD_DP64(env->CSR_TLBRERA, CSR_TLBRERA, ISTLBR, 0);
113 env->CSR_CRMD = FIELD_DP64(env->CSR_CRMD, CSR_CRMD, DA, 0);
114 env->CSR_CRMD = FIELD_DP64(env->CSR_CRMD, CSR_CRMD, PG, 1);
115 env->pc = env->CSR_TLBRERA;
116 qemu_log_mask(CPU_LOG_INT, "%s: TLBRERA " TARGET_FMT_lx "\n",
117 __func__, env->CSR_TLBRERA);
118 } else {
119 csr_pplv = FIELD_EX64(env->CSR_PRMD, CSR_PRMD, PPLV);
120 csr_pie = FIELD_EX64(env->CSR_PRMD, CSR_PRMD, PIE);
122 env->pc = env->CSR_ERA;
123 qemu_log_mask(CPU_LOG_INT, "%s: ERA " TARGET_FMT_lx "\n",
124 __func__, env->CSR_ERA);
126 env->CSR_CRMD = FIELD_DP64(env->CSR_CRMD, CSR_CRMD, PLV, csr_pplv);
127 env->CSR_CRMD = FIELD_DP64(env->CSR_CRMD, CSR_CRMD, IE, csr_pie);
129 env->lladdr = 1;
132 void helper_idle(CPULoongArchState *env)
134 CPUState *cs = env_cpu(env);
136 cs->halted = 1;
137 do_raise_exception(env, EXCP_HLT, 0);
139 #endif