2 * RISC-V Emulation Helpers for QEMU.
4 * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5 * Copyright (c) 2017-2018 SiFive, Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2 or later, as published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 * You should have received a copy of the GNU General Public License along with
17 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "qemu/osdep.h"
23 #include "qemu/main-loop.h"
24 #include "exec/exec-all.h"
25 #include "exec/helper-proto.h"
27 /* Exceptions processing helpers */
28 void QEMU_NORETURN
riscv_raise_exception(CPURISCVState
*env
,
29 uint32_t exception
, uintptr_t pc
)
31 CPUState
*cs
= env_cpu(env
);
32 qemu_log_mask(CPU_LOG_INT
, "%s: %d\n", __func__
, exception
);
33 cs
->exception_index
= exception
;
34 cpu_loop_exit_restore(cs
, pc
);
37 void helper_raise_exception(CPURISCVState
*env
, uint32_t exception
)
39 riscv_raise_exception(env
, exception
, 0);
42 target_ulong
helper_csrrw(CPURISCVState
*env
, target_ulong src
,
46 if (riscv_csrrw(env
, csr
, &val
, src
, -1) < 0) {
47 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
52 target_ulong
helper_csrrs(CPURISCVState
*env
, target_ulong src
,
53 target_ulong csr
, target_ulong rs1_pass
)
56 if (riscv_csrrw(env
, csr
, &val
, -1, rs1_pass
? src
: 0) < 0) {
57 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
62 target_ulong
helper_csrrc(CPURISCVState
*env
, target_ulong src
,
63 target_ulong csr
, target_ulong rs1_pass
)
66 if (riscv_csrrw(env
, csr
, &val
, 0, rs1_pass
? src
: 0) < 0) {
67 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
72 #ifndef CONFIG_USER_ONLY
74 target_ulong
helper_sret(CPURISCVState
*env
, target_ulong cpu_pc_deb
)
76 target_ulong prev_priv
, prev_virt
, mstatus
;
78 if (!(env
->priv
>= PRV_S
)) {
79 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
82 target_ulong retpc
= env
->sepc
;
83 if (!riscv_has_ext(env
, RVC
) && (retpc
& 0x3)) {
84 riscv_raise_exception(env
, RISCV_EXCP_INST_ADDR_MIS
, GETPC());
87 if (env
->priv_ver
>= PRIV_VERSION_1_10_0
&&
88 get_field(env
->mstatus
, MSTATUS_TSR
) && !(env
->priv
>= PRV_M
)) {
89 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
92 mstatus
= env
->mstatus
;
94 if (riscv_has_ext(env
, RVH
) && !riscv_cpu_virt_enabled(env
)) {
95 /* We support Hypervisor extensions and virtulisation is disabled */
96 target_ulong hstatus
= env
->hstatus
;
98 prev_priv
= get_field(mstatus
, MSTATUS_SPP
);
99 prev_virt
= get_field(hstatus
, HSTATUS_SPV
);
101 hstatus
= set_field(hstatus
, HSTATUS_SPV
,
102 get_field(hstatus
, HSTATUS_SP2V
));
103 mstatus
= set_field(mstatus
, MSTATUS_SPP
,
104 get_field(hstatus
, HSTATUS_SP2P
));
105 hstatus
= set_field(hstatus
, HSTATUS_SP2V
, 0);
106 hstatus
= set_field(hstatus
, HSTATUS_SP2P
, 0);
107 mstatus
= set_field(mstatus
, SSTATUS_SIE
,
108 get_field(mstatus
, SSTATUS_SPIE
));
109 mstatus
= set_field(mstatus
, SSTATUS_SPIE
, 1);
111 env
->mstatus
= mstatus
;
112 env
->hstatus
= hstatus
;
115 riscv_cpu_swap_hypervisor_regs(env
);
118 riscv_cpu_set_virt_enabled(env
, prev_virt
);
120 prev_priv
= get_field(mstatus
, MSTATUS_SPP
);
122 mstatus
= set_field(mstatus
,
123 env
->priv_ver
>= PRIV_VERSION_1_10_0
?
124 MSTATUS_SIE
: MSTATUS_UIE
<< prev_priv
,
125 get_field(mstatus
, MSTATUS_SPIE
));
126 mstatus
= set_field(mstatus
, MSTATUS_SPIE
, 1);
127 mstatus
= set_field(mstatus
, MSTATUS_SPP
, PRV_U
);
128 env
->mstatus
= mstatus
;
131 riscv_cpu_set_mode(env
, prev_priv
);
136 target_ulong
helper_mret(CPURISCVState
*env
, target_ulong cpu_pc_deb
)
138 if (!(env
->priv
>= PRV_M
)) {
139 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
142 target_ulong retpc
= env
->mepc
;
143 if (!riscv_has_ext(env
, RVC
) && (retpc
& 0x3)) {
144 riscv_raise_exception(env
, RISCV_EXCP_INST_ADDR_MIS
, GETPC());
147 target_ulong mstatus
= env
->mstatus
;
148 target_ulong prev_priv
= get_field(mstatus
, MSTATUS_MPP
);
149 target_ulong prev_virt
= MSTATUS_MPV_ISSET(env
);
150 mstatus
= set_field(mstatus
,
151 env
->priv_ver
>= PRIV_VERSION_1_10_0
?
152 MSTATUS_MIE
: MSTATUS_UIE
<< prev_priv
,
153 get_field(mstatus
, MSTATUS_MPIE
));
154 mstatus
= set_field(mstatus
, MSTATUS_MPIE
, 1);
155 mstatus
= set_field(mstatus
, MSTATUS_MPP
, PRV_U
);
156 #ifdef TARGET_RISCV32
157 env
->mstatush
= set_field(env
->mstatush
, MSTATUS_MPV
, 0);
159 mstatus
= set_field(mstatus
, MSTATUS_MPV
, 0);
161 env
->mstatus
= mstatus
;
162 riscv_cpu_set_mode(env
, prev_priv
);
164 if (riscv_has_ext(env
, RVH
)) {
166 riscv_cpu_swap_hypervisor_regs(env
);
169 riscv_cpu_set_virt_enabled(env
, prev_virt
);
175 void helper_wfi(CPURISCVState
*env
)
177 CPUState
*cs
= env_cpu(env
);
179 if ((env
->priv
== PRV_S
&&
180 env
->priv_ver
>= PRIV_VERSION_1_10_0
&&
181 get_field(env
->mstatus
, MSTATUS_TW
)) ||
182 riscv_cpu_virt_enabled(env
)) {
183 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
186 cs
->exception_index
= EXCP_HLT
;
191 void helper_tlb_flush(CPURISCVState
*env
)
193 CPUState
*cs
= env_cpu(env
);
194 if (!(env
->priv
>= PRV_S
) ||
195 (env
->priv
== PRV_S
&&
196 env
->priv_ver
>= PRIV_VERSION_1_10_0
&&
197 get_field(env
->mstatus
, MSTATUS_TVM
))) {
198 riscv_raise_exception(env
, RISCV_EXCP_ILLEGAL_INST
, GETPC());
204 #endif /* !CONFIG_USER_ONLY */