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/>.
23 /* QEMU addressing/paging config */
24 #define TARGET_PAGE_BITS 12 /* 4 KiB Pages */
25 #if defined(TARGET_RISCV64)
26 #define TARGET_LONG_BITS 64
27 #define TARGET_PHYS_ADDR_SPACE_BITS 56 /* 44-bit PPN */
28 #define TARGET_VIRT_ADDR_SPACE_BITS 48 /* sv48 */
29 #elif defined(TARGET_RISCV32)
30 #define TARGET_LONG_BITS 32
31 #define TARGET_PHYS_ADDR_SPACE_BITS 34 /* 22-bit PPN */
32 #define TARGET_VIRT_ADDR_SPACE_BITS 32 /* sv32 */
35 #define TCG_GUEST_DEFAULT_MO 0
37 #define CPUArchState struct CPURISCVState
39 #include "qemu-common.h"
41 #include "exec/cpu-defs.h"
42 #include "fpu/softfloat.h"
44 #define TYPE_RISCV_CPU "riscv-cpu"
46 #define RISCV_CPU_TYPE_SUFFIX "-" TYPE_RISCV_CPU
47 #define RISCV_CPU_TYPE_NAME(name) (name RISCV_CPU_TYPE_SUFFIX)
48 #define CPU_RESOLVING_TYPE TYPE_RISCV_CPU
50 #define TYPE_RISCV_CPU_ANY RISCV_CPU_TYPE_NAME("any")
51 #define TYPE_RISCV_CPU_RV32GCSU_V1_09_1 RISCV_CPU_TYPE_NAME("rv32gcsu-v1.9.1")
52 #define TYPE_RISCV_CPU_RV32GCSU_V1_10_0 RISCV_CPU_TYPE_NAME("rv32gcsu-v1.10.0")
53 #define TYPE_RISCV_CPU_RV32IMACU_NOMMU RISCV_CPU_TYPE_NAME("rv32imacu-nommu")
54 #define TYPE_RISCV_CPU_RV64GCSU_V1_09_1 RISCV_CPU_TYPE_NAME("rv64gcsu-v1.9.1")
55 #define TYPE_RISCV_CPU_RV64GCSU_V1_10_0 RISCV_CPU_TYPE_NAME("rv64gcsu-v1.10.0")
56 #define TYPE_RISCV_CPU_RV64IMACU_NOMMU RISCV_CPU_TYPE_NAME("rv64imacu-nommu")
57 #define TYPE_RISCV_CPU_SIFIVE_E31 RISCV_CPU_TYPE_NAME("sifive-e31")
58 #define TYPE_RISCV_CPU_SIFIVE_E51 RISCV_CPU_TYPE_NAME("sifive-e51")
59 #define TYPE_RISCV_CPU_SIFIVE_U34 RISCV_CPU_TYPE_NAME("sifive-u34")
60 #define TYPE_RISCV_CPU_SIFIVE_U54 RISCV_CPU_TYPE_NAME("sifive-u54")
62 #define RV32 ((target_ulong)1 << (TARGET_LONG_BITS - 2))
63 #define RV64 ((target_ulong)2 << (TARGET_LONG_BITS - 2))
65 #if defined(TARGET_RISCV32)
67 #elif defined(TARGET_RISCV64)
71 #define RV(x) ((target_ulong)1 << (x - 'A'))
74 #define RVE RV('E') /* E and I are mutually exclusive */
83 /* S extension denotes that Supervisor mode exists, however it is possible
84 to have a core that support S mode but does not have an MMU and there
85 is currently no bit in misa to indicate whether an MMU exists or not
86 so a cpu features bitfield is required, likewise for optional PMP support */
92 #define USER_VERSION_2_02_0 0x00020200
93 #define PRIV_VERSION_1_09_1 0x00010901
94 #define PRIV_VERSION_1_10_0 0x00011000
96 #define TRANSLATE_FAIL 1
97 #define TRANSLATE_SUCCESS 0
98 #define NB_MMU_MODES 4
99 #define MMU_USER_IDX 3
101 #define MAX_RISCV_PMPS (16)
103 typedef struct CPURISCVState CPURISCVState
;
107 struct CPURISCVState
{
108 target_ulong gpr
[32];
109 uint64_t fpr
[32]; /* assume both F and D extensions */
111 target_ulong load_res
;
112 target_ulong load_val
;
116 target_ulong badaddr
;
118 target_ulong user_ver
;
119 target_ulong priv_ver
;
124 #ifndef CONFIG_USER_ONLY
126 target_ulong resetvec
;
128 target_ulong mhartid
;
129 target_ulong mstatus
;
132 * CAUTION! Unlike the rest of this struct, mip is accessed asynchonously
133 * by I/O threads. It should be read with atomic_read. It should be updated
134 * using riscv_cpu_update_mip with the iothread mutex held. The iothread
135 * mutex must be held because mip must be consistent with the CPU inturrept
136 * state. riscv_cpu_update_mip calls cpu_interrupt or cpu_reset_interrupt
137 * wuth the invariant that CPU_INTERRUPT_HARD is set iff mip is non-zero.
138 * mip is 32-bits to allow atomic_read on 32-bit hosts.
143 target_ulong mideleg
;
145 target_ulong sptbr
; /* until: priv-1.9.1 */
146 target_ulong satp
; /* since: priv-1.10.0 */
147 target_ulong sbadaddr
;
148 target_ulong mbadaddr
;
149 target_ulong medeleg
;
158 target_ulong mtval
; /* since: priv-1.10.0 */
160 target_ulong scounteren
;
161 target_ulong mcounteren
;
163 target_ulong sscratch
;
164 target_ulong mscratch
;
166 /* temporary htif regs */
171 /* physical memory protection */
172 pmp_table_t pmp_state
;
175 float_status fp_status
;
180 /* Fields from here on are preserved across CPU reset. */
181 QEMUTimer
*timer
; /* Internal timer */
184 #define RISCV_CPU_CLASS(klass) \
185 OBJECT_CLASS_CHECK(RISCVCPUClass, (klass), TYPE_RISCV_CPU)
186 #define RISCV_CPU(obj) \
187 OBJECT_CHECK(RISCVCPU, (obj), TYPE_RISCV_CPU)
188 #define RISCV_CPU_GET_CLASS(obj) \
189 OBJECT_GET_CLASS(RISCVCPUClass, (obj), TYPE_RISCV_CPU)
193 * @parent_realize: The parent class' realize handler.
194 * @parent_reset: The parent class' reset handler.
198 typedef struct RISCVCPUClass
{
200 CPUClass parent_class
;
202 DeviceRealize parent_realize
;
203 void (*parent_reset
)(CPUState
*cpu
);
208 * @env: #CPURISCVState
212 typedef struct RISCVCPU
{
219 static inline RISCVCPU
*riscv_env_get_cpu(CPURISCVState
*env
)
221 return container_of(env
, RISCVCPU
, env
);
224 static inline int riscv_has_ext(CPURISCVState
*env
, target_ulong ext
)
226 return (env
->misa
& ext
) != 0;
229 static inline bool riscv_feature(CPURISCVState
*env
, int feature
)
231 return env
->features
& (1ULL << feature
);
234 #include "cpu_user.h"
235 #include "cpu_bits.h"
237 extern const char * const riscv_int_regnames
[];
238 extern const char * const riscv_fpr_regnames
[];
239 extern const char * const riscv_excp_names
[];
240 extern const char * const riscv_intr_names
[];
242 #define ENV_GET_CPU(e) CPU(riscv_env_get_cpu(e))
243 #define ENV_OFFSET offsetof(RISCVCPU, env)
245 void riscv_cpu_do_interrupt(CPUState
*cpu
);
246 int riscv_cpu_gdb_read_register(CPUState
*cpu
, uint8_t *buf
, int reg
);
247 int riscv_cpu_gdb_write_register(CPUState
*cpu
, uint8_t *buf
, int reg
);
248 bool riscv_cpu_exec_interrupt(CPUState
*cs
, int interrupt_request
);
249 int riscv_cpu_mmu_index(CPURISCVState
*env
, bool ifetch
);
250 hwaddr
riscv_cpu_get_phys_page_debug(CPUState
*cpu
, vaddr addr
);
251 void riscv_cpu_do_unaligned_access(CPUState
*cs
, vaddr addr
,
252 MMUAccessType access_type
, int mmu_idx
,
254 int riscv_cpu_handle_mmu_fault(CPUState
*cpu
, vaddr address
, int size
,
255 int rw
, int mmu_idx
);
256 char *riscv_isa_string(RISCVCPU
*cpu
);
257 void riscv_cpu_list(FILE *f
, fprintf_function cpu_fprintf
);
259 #define cpu_signal_handler cpu_riscv_signal_handler
260 #define cpu_list riscv_cpu_list
261 #define cpu_mmu_index riscv_cpu_mmu_index
263 #ifndef CONFIG_USER_ONLY
264 uint32_t riscv_cpu_update_mip(RISCVCPU
*cpu
, uint32_t mask
, uint32_t value
);
265 #define BOOL_TO_MASK(x) (-!!(x)) /* helper for riscv_cpu_update_mip value */
267 void riscv_set_mode(CPURISCVState
*env
, target_ulong newpriv
);
269 void riscv_translate_init(void);
270 RISCVCPU
*cpu_riscv_init(const char *cpu_model
);
271 int cpu_riscv_signal_handler(int host_signum
, void *pinfo
, void *puc
);
272 void QEMU_NORETURN
do_raise_exception_err(CPURISCVState
*env
,
273 uint32_t exception
, uintptr_t pc
);
275 target_ulong
cpu_riscv_get_fflags(CPURISCVState
*env
);
276 void cpu_riscv_set_fflags(CPURISCVState
*env
, target_ulong
);
278 #define TB_FLAGS_MMU_MASK 3
279 #define TB_FLAGS_FP_ENABLE MSTATUS_FS
281 static inline void cpu_get_tb_cpu_state(CPURISCVState
*env
, target_ulong
*pc
,
282 target_ulong
*cs_base
, uint32_t *flags
)
286 #ifdef CONFIG_USER_ONLY
287 *flags
= TB_FLAGS_FP_ENABLE
;
289 *flags
= cpu_mmu_index(env
, 0) | (env
->mstatus
& MSTATUS_FS
);
293 int riscv_csrrw(CPURISCVState
*env
, int csrno
, target_ulong
*ret_value
,
294 target_ulong new_value
, target_ulong write_mask
);
296 static inline void csr_write_helper(CPURISCVState
*env
, target_ulong val
,
299 riscv_csrrw(env
, csrno
, NULL
, val
, MAKE_64BIT_MASK(0, TARGET_LONG_BITS
));
302 static inline target_ulong
csr_read_helper(CPURISCVState
*env
, int csrno
)
304 target_ulong val
= 0;
305 riscv_csrrw(env
, csrno
, &val
, 0, 0);
309 typedef int (*riscv_csr_predicate_fn
)(CPURISCVState
*env
, int csrno
);
310 typedef int (*riscv_csr_read_fn
)(CPURISCVState
*env
, int csrno
,
311 target_ulong
*ret_value
);
312 typedef int (*riscv_csr_write_fn
)(CPURISCVState
*env
, int csrno
,
313 target_ulong new_value
);
314 typedef int (*riscv_csr_op_fn
)(CPURISCVState
*env
, int csrno
,
315 target_ulong
*ret_value
, target_ulong new_value
, target_ulong write_mask
);
318 riscv_csr_predicate_fn predicate
;
319 riscv_csr_read_fn read
;
320 riscv_csr_write_fn write
;
322 } riscv_csr_operations
;
324 void riscv_get_csr_ops(int csrno
, riscv_csr_operations
*ops
);
325 void riscv_set_csr_ops(int csrno
, riscv_csr_operations
*ops
);
327 #include "exec/cpu-all.h"
329 #endif /* RISCV_CPU_H */