]> git.proxmox.com Git - mirror_qemu.git/blame - target/riscv/cpu.h
RISC-V: Fixes to CSR_* register macros.
[mirror_qemu.git] / target / riscv / cpu.h
CommitLineData
dc5bd18f
MC
1/*
2 * QEMU RISC-V CPU
3 *
4 * Copyright (c) 2016-2017 Sagar Karandikar, sagark@eecs.berkeley.edu
5 * Copyright (c) 2017-2018 SiFive, Inc.
6 *
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.
10 *
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
14 * more details.
15 *
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/>.
18 */
19
20#ifndef RISCV_CPU_H
21#define RISCV_CPU_H
22
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
718a941e
MC
27#define TARGET_PHYS_ADDR_SPACE_BITS 56 /* 44-bit PPN */
28#define TARGET_VIRT_ADDR_SPACE_BITS 48 /* sv48 */
dc5bd18f
MC
29#elif defined(TARGET_RISCV32)
30#define TARGET_LONG_BITS 32
718a941e
MC
31#define TARGET_PHYS_ADDR_SPACE_BITS 34 /* 22-bit PPN */
32#define TARGET_VIRT_ADDR_SPACE_BITS 32 /* sv32 */
dc5bd18f
MC
33#endif
34
35#define TCG_GUEST_DEFAULT_MO 0
36
dc5bd18f
MC
37#define CPUArchState struct CPURISCVState
38
39#include "qemu-common.h"
40#include "qom/cpu.h"
41#include "exec/cpu-defs.h"
42#include "fpu/softfloat.h"
43
44#define TYPE_RISCV_CPU "riscv-cpu"
45
46#define RISCV_CPU_TYPE_SUFFIX "-" TYPE_RISCV_CPU
47#define RISCV_CPU_TYPE_NAME(name) (name RISCV_CPU_TYPE_SUFFIX)
0dacec87 48#define CPU_RESOLVING_TYPE TYPE_RISCV_CPU
dc5bd18f
MC
49
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")
61
62#define RV32 ((target_ulong)1 << (TARGET_LONG_BITS - 2))
63#define RV64 ((target_ulong)2 << (TARGET_LONG_BITS - 2))
64
65#if defined(TARGET_RISCV32)
66#define RVXLEN RV32
67#elif defined(TARGET_RISCV64)
68#define RVXLEN RV64
69#endif
70
71#define RV(x) ((target_ulong)1 << (x - 'A'))
72
73#define RVI RV('I')
79f86934 74#define RVE RV('E') /* E and I are mutually exclusive */
dc5bd18f
MC
75#define RVM RV('M')
76#define RVA RV('A')
77#define RVF RV('F')
78#define RVD RV('D')
79#define RVC RV('C')
80#define RVS RV('S')
81#define RVU RV('U')
82
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
a88365c1 86 so a cpu features bitfield is required, likewise for optional PMP support */
dc5bd18f 87enum {
a88365c1 88 RISCV_FEATURE_MMU,
f18637cd
MC
89 RISCV_FEATURE_PMP,
90 RISCV_FEATURE_MISA
dc5bd18f
MC
91};
92
93#define USER_VERSION_2_02_0 0x00020200
94#define PRIV_VERSION_1_09_1 0x00010901
95#define PRIV_VERSION_1_10_0 0x00011000
96
97#define TRANSLATE_FAIL 1
98#define TRANSLATE_SUCCESS 0
99#define NB_MMU_MODES 4
100#define MMU_USER_IDX 3
101
102#define MAX_RISCV_PMPS (16)
103
104typedef struct CPURISCVState CPURISCVState;
105
106#include "pmp.h"
107
108struct CPURISCVState {
109 target_ulong gpr[32];
110 uint64_t fpr[32]; /* assume both F and D extensions */
111 target_ulong pc;
112 target_ulong load_res;
113 target_ulong load_val;
114
115 target_ulong frm;
116
117 target_ulong badaddr;
118
119 target_ulong user_ver;
120 target_ulong priv_ver;
121 target_ulong misa;
f18637cd 122 target_ulong misa_mask;
dc5bd18f
MC
123
124 uint32_t features;
125
126#ifndef CONFIG_USER_ONLY
127 target_ulong priv;
128 target_ulong resetvec;
129
130 target_ulong mhartid;
131 target_ulong mstatus;
85ba724f 132
dc5bd18f
MC
133 /*
134 * CAUTION! Unlike the rest of this struct, mip is accessed asynchonously
85ba724f
MC
135 * by I/O threads. It should be read with atomic_read. It should be updated
136 * using riscv_cpu_update_mip with the iothread mutex held. The iothread
137 * mutex must be held because mip must be consistent with the CPU inturrept
138 * state. riscv_cpu_update_mip calls cpu_interrupt or cpu_reset_interrupt
139 * wuth the invariant that CPU_INTERRUPT_HARD is set iff mip is non-zero.
140 * mip is 32-bits to allow atomic_read on 32-bit hosts.
dc5bd18f 141 */
85ba724f
MC
142 uint32_t mip;
143
dc5bd18f
MC
144 target_ulong mie;
145 target_ulong mideleg;
146
147 target_ulong sptbr; /* until: priv-1.9.1 */
148 target_ulong satp; /* since: priv-1.10.0 */
149 target_ulong sbadaddr;
150 target_ulong mbadaddr;
151 target_ulong medeleg;
152
153 target_ulong stvec;
154 target_ulong sepc;
155 target_ulong scause;
156
157 target_ulong mtvec;
158 target_ulong mepc;
159 target_ulong mcause;
160 target_ulong mtval; /* since: priv-1.10.0 */
161
8c59f5c1
MC
162 target_ulong scounteren;
163 target_ulong mcounteren;
dc5bd18f
MC
164
165 target_ulong sscratch;
166 target_ulong mscratch;
167
168 /* temporary htif regs */
169 uint64_t mfromhost;
170 uint64_t mtohost;
171 uint64_t timecmp;
172
173 /* physical memory protection */
174 pmp_table_t pmp_state;
175#endif
176
177 float_status fp_status;
178
179 /* QEMU */
180 CPU_COMMON
181
182 /* Fields from here on are preserved across CPU reset. */
183 QEMUTimer *timer; /* Internal timer */
184};
185
186#define RISCV_CPU_CLASS(klass) \
187 OBJECT_CLASS_CHECK(RISCVCPUClass, (klass), TYPE_RISCV_CPU)
188#define RISCV_CPU(obj) \
189 OBJECT_CHECK(RISCVCPU, (obj), TYPE_RISCV_CPU)
190#define RISCV_CPU_GET_CLASS(obj) \
191 OBJECT_GET_CLASS(RISCVCPUClass, (obj), TYPE_RISCV_CPU)
192
193/**
194 * RISCVCPUClass:
195 * @parent_realize: The parent class' realize handler.
196 * @parent_reset: The parent class' reset handler.
197 *
198 * A RISCV CPU model.
199 */
200typedef struct RISCVCPUClass {
201 /*< private >*/
202 CPUClass parent_class;
203 /*< public >*/
204 DeviceRealize parent_realize;
205 void (*parent_reset)(CPUState *cpu);
206} RISCVCPUClass;
207
208/**
209 * RISCVCPU:
210 * @env: #CPURISCVState
211 *
212 * A RISCV CPU.
213 */
214typedef struct RISCVCPU {
215 /*< private >*/
216 CPUState parent_obj;
217 /*< public >*/
218 CPURISCVState env;
219} RISCVCPU;
220
221static inline RISCVCPU *riscv_env_get_cpu(CPURISCVState *env)
222{
223 return container_of(env, RISCVCPU, env);
224}
225
226static inline int riscv_has_ext(CPURISCVState *env, target_ulong ext)
227{
228 return (env->misa & ext) != 0;
229}
230
231static inline bool riscv_feature(CPURISCVState *env, int feature)
232{
233 return env->features & (1ULL << feature);
234}
235
236#include "cpu_user.h"
237#include "cpu_bits.h"
238
239extern const char * const riscv_int_regnames[];
240extern const char * const riscv_fpr_regnames[];
241extern const char * const riscv_excp_names[];
242extern const char * const riscv_intr_names[];
243
244#define ENV_GET_CPU(e) CPU(riscv_env_get_cpu(e))
245#define ENV_OFFSET offsetof(RISCVCPU, env)
246
247void riscv_cpu_do_interrupt(CPUState *cpu);
248int riscv_cpu_gdb_read_register(CPUState *cpu, uint8_t *buf, int reg);
249int riscv_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg);
250bool riscv_cpu_exec_interrupt(CPUState *cs, int interrupt_request);
251int riscv_cpu_mmu_index(CPURISCVState *env, bool ifetch);
252hwaddr riscv_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
253void riscv_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
254 MMUAccessType access_type, int mmu_idx,
255 uintptr_t retaddr);
256int riscv_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int size,
257 int rw, int mmu_idx);
dc5bd18f
MC
258char *riscv_isa_string(RISCVCPU *cpu);
259void riscv_cpu_list(FILE *f, fprintf_function cpu_fprintf);
260
fb738839 261#define cpu_signal_handler riscv_cpu_signal_handler
dc5bd18f
MC
262#define cpu_list riscv_cpu_list
263#define cpu_mmu_index riscv_cpu_mmu_index
264
85ba724f
MC
265#ifndef CONFIG_USER_ONLY
266uint32_t riscv_cpu_update_mip(RISCVCPU *cpu, uint32_t mask, uint32_t value);
267#define BOOL_TO_MASK(x) (-!!(x)) /* helper for riscv_cpu_update_mip value */
268#endif
fb738839 269void riscv_cpu_set_mode(CPURISCVState *env, target_ulong newpriv);
dc5bd18f
MC
270
271void riscv_translate_init(void);
fb738839
MC
272int riscv_cpu_signal_handler(int host_signum, void *pinfo, void *puc);
273void QEMU_NORETURN riscv_raise_exception(CPURISCVState *env,
274 uint32_t exception, uintptr_t pc);
dc5bd18f 275
fb738839
MC
276target_ulong riscv_cpu_get_fflags(CPURISCVState *env);
277void riscv_cpu_set_fflags(CPURISCVState *env, target_ulong);
dc5bd18f 278
83a71719
RH
279#define TB_FLAGS_MMU_MASK 3
280#define TB_FLAGS_MSTATUS_FS MSTATUS_FS
dc5bd18f
MC
281
282static inline void cpu_get_tb_cpu_state(CPURISCVState *env, target_ulong *pc,
283 target_ulong *cs_base, uint32_t *flags)
284{
285 *pc = env->pc;
286 *cs_base = 0;
287#ifdef CONFIG_USER_ONLY
83a71719 288 *flags = TB_FLAGS_MSTATUS_FS;
dc5bd18f
MC
289#else
290 *flags = cpu_mmu_index(env, 0) | (env->mstatus & MSTATUS_FS);
291#endif
292}
293
c7b95171
MC
294int riscv_csrrw(CPURISCVState *env, int csrno, target_ulong *ret_value,
295 target_ulong new_value, target_ulong write_mask);
296
fb738839
MC
297static inline void riscv_csr_write(CPURISCVState *env, int csrno,
298 target_ulong val)
c7b95171
MC
299{
300 riscv_csrrw(env, csrno, NULL, val, MAKE_64BIT_MASK(0, TARGET_LONG_BITS));
301}
302
fb738839 303static inline target_ulong riscv_csr_read(CPURISCVState *env, int csrno)
c7b95171
MC
304{
305 target_ulong val = 0;
306 riscv_csrrw(env, csrno, &val, 0, 0);
307 return val;
308}
309
310typedef int (*riscv_csr_predicate_fn)(CPURISCVState *env, int csrno);
311typedef int (*riscv_csr_read_fn)(CPURISCVState *env, int csrno,
312 target_ulong *ret_value);
313typedef int (*riscv_csr_write_fn)(CPURISCVState *env, int csrno,
314 target_ulong new_value);
315typedef int (*riscv_csr_op_fn)(CPURISCVState *env, int csrno,
316 target_ulong *ret_value, target_ulong new_value, target_ulong write_mask);
317
318typedef struct {
a88365c1 319 riscv_csr_predicate_fn predicate;
c7b95171
MC
320 riscv_csr_read_fn read;
321 riscv_csr_write_fn write;
322 riscv_csr_op_fn op;
323} riscv_csr_operations;
324
325void riscv_get_csr_ops(int csrno, riscv_csr_operations *ops);
326void riscv_set_csr_ops(int csrno, riscv_csr_operations *ops);
dc5bd18f 327
dc5bd18f
MC
328#include "exec/cpu-all.h"
329
330#endif /* RISCV_CPU_H */