]> git.ipfire.org Git - thirdparty/qemu.git/blame - target/riscv/cpu.h
target/riscv: Restructure deprecatd CPUs
[thirdparty/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
dc5bd18f
MC
23#include "qom/cpu.h"
24#include "exec/cpu-defs.h"
25#include "fpu/softfloat.h"
26
74433bf0
RH
27#define TCG_GUEST_DEFAULT_MO 0
28
dc5bd18f
MC
29#define TYPE_RISCV_CPU "riscv-cpu"
30
31#define RISCV_CPU_TYPE_SUFFIX "-" TYPE_RISCV_CPU
32#define RISCV_CPU_TYPE_NAME(name) (name RISCV_CPU_TYPE_SUFFIX)
0dacec87 33#define CPU_RESOLVING_TYPE TYPE_RISCV_CPU
dc5bd18f
MC
34
35#define TYPE_RISCV_CPU_ANY RISCV_CPU_TYPE_NAME("any")
8903bf6e
AF
36#define TYPE_RISCV_CPU_BASE32 RISCV_CPU_TYPE_NAME("rv32")
37#define TYPE_RISCV_CPU_BASE64 RISCV_CPU_TYPE_NAME("rv64")
dc5bd18f
MC
38#define TYPE_RISCV_CPU_SIFIVE_E31 RISCV_CPU_TYPE_NAME("sifive-e31")
39#define TYPE_RISCV_CPU_SIFIVE_E51 RISCV_CPU_TYPE_NAME("sifive-e51")
40#define TYPE_RISCV_CPU_SIFIVE_U34 RISCV_CPU_TYPE_NAME("sifive-u34")
41#define TYPE_RISCV_CPU_SIFIVE_U54 RISCV_CPU_TYPE_NAME("sifive-u54")
c1fb65e6
AF
42/* Deprecated */
43#define TYPE_RISCV_CPU_RV32IMACU_NOMMU RISCV_CPU_TYPE_NAME("rv32imacu-nommu")
44#define TYPE_RISCV_CPU_RV32GCSU_V1_09_1 RISCV_CPU_TYPE_NAME("rv32gcsu-v1.9.1")
45#define TYPE_RISCV_CPU_RV32GCSU_V1_10_0 RISCV_CPU_TYPE_NAME("rv32gcsu-v1.10.0")
46#define TYPE_RISCV_CPU_RV64IMACU_NOMMU RISCV_CPU_TYPE_NAME("rv64imacu-nommu")
47#define TYPE_RISCV_CPU_RV64GCSU_V1_09_1 RISCV_CPU_TYPE_NAME("rv64gcsu-v1.9.1")
48#define TYPE_RISCV_CPU_RV64GCSU_V1_10_0 RISCV_CPU_TYPE_NAME("rv64gcsu-v1.10.0")
dc5bd18f
MC
49
50#define RV32 ((target_ulong)1 << (TARGET_LONG_BITS - 2))
51#define RV64 ((target_ulong)2 << (TARGET_LONG_BITS - 2))
52
53#if defined(TARGET_RISCV32)
54#define RVXLEN RV32
55#elif defined(TARGET_RISCV64)
56#define RVXLEN RV64
57#endif
58
59#define RV(x) ((target_ulong)1 << (x - 'A'))
60
61#define RVI RV('I')
79f86934 62#define RVE RV('E') /* E and I are mutually exclusive */
dc5bd18f
MC
63#define RVM RV('M')
64#define RVA RV('A')
65#define RVF RV('F')
66#define RVD RV('D')
67#define RVC RV('C')
68#define RVS RV('S')
69#define RVU RV('U')
70
71/* S extension denotes that Supervisor mode exists, however it is possible
72 to have a core that support S mode but does not have an MMU and there
73 is currently no bit in misa to indicate whether an MMU exists or not
a88365c1 74 so a cpu features bitfield is required, likewise for optional PMP support */
dc5bd18f 75enum {
a88365c1 76 RISCV_FEATURE_MMU,
f18637cd
MC
77 RISCV_FEATURE_PMP,
78 RISCV_FEATURE_MISA
dc5bd18f
MC
79};
80
81#define USER_VERSION_2_02_0 0x00020200
82#define PRIV_VERSION_1_09_1 0x00010901
83#define PRIV_VERSION_1_10_0 0x00011000
84
1f447aec 85#define TRANSLATE_PMP_FAIL 2
dc5bd18f
MC
86#define TRANSLATE_FAIL 1
87#define TRANSLATE_SUCCESS 0
dc5bd18f
MC
88#define MMU_USER_IDX 3
89
90#define MAX_RISCV_PMPS (16)
91
92typedef struct CPURISCVState CPURISCVState;
93
94#include "pmp.h"
95
96struct CPURISCVState {
97 target_ulong gpr[32];
98 uint64_t fpr[32]; /* assume both F and D extensions */
99 target_ulong pc;
100 target_ulong load_res;
101 target_ulong load_val;
102
103 target_ulong frm;
104
105 target_ulong badaddr;
106
107 target_ulong user_ver;
108 target_ulong priv_ver;
109 target_ulong misa;
f18637cd 110 target_ulong misa_mask;
dc5bd18f
MC
111
112 uint32_t features;
113
5836c3ec
KC
114#ifdef CONFIG_USER_ONLY
115 uint32_t elf_flags;
116#endif
117
dc5bd18f
MC
118#ifndef CONFIG_USER_ONLY
119 target_ulong priv;
120 target_ulong resetvec;
121
122 target_ulong mhartid;
123 target_ulong mstatus;
85ba724f 124
dc5bd18f
MC
125 /*
126 * CAUTION! Unlike the rest of this struct, mip is accessed asynchonously
85ba724f
MC
127 * by I/O threads. It should be read with atomic_read. It should be updated
128 * using riscv_cpu_update_mip with the iothread mutex held. The iothread
129 * mutex must be held because mip must be consistent with the CPU inturrept
130 * state. riscv_cpu_update_mip calls cpu_interrupt or cpu_reset_interrupt
131 * wuth the invariant that CPU_INTERRUPT_HARD is set iff mip is non-zero.
132 * mip is 32-bits to allow atomic_read on 32-bit hosts.
dc5bd18f 133 */
85ba724f 134 uint32_t mip;
e3e7039c 135 uint32_t miclaim;
85ba724f 136
dc5bd18f
MC
137 target_ulong mie;
138 target_ulong mideleg;
139
140 target_ulong sptbr; /* until: priv-1.9.1 */
141 target_ulong satp; /* since: priv-1.10.0 */
142 target_ulong sbadaddr;
143 target_ulong mbadaddr;
144 target_ulong medeleg;
145
146 target_ulong stvec;
147 target_ulong sepc;
148 target_ulong scause;
149
150 target_ulong mtvec;
151 target_ulong mepc;
152 target_ulong mcause;
153 target_ulong mtval; /* since: priv-1.10.0 */
154
8c59f5c1
MC
155 target_ulong scounteren;
156 target_ulong mcounteren;
dc5bd18f
MC
157
158 target_ulong sscratch;
159 target_ulong mscratch;
160
161 /* temporary htif regs */
162 uint64_t mfromhost;
163 uint64_t mtohost;
164 uint64_t timecmp;
165
166 /* physical memory protection */
167 pmp_table_t pmp_state;
753e3fe2
JW
168
169 /* True if in debugger mode. */
170 bool debugger;
dc5bd18f
MC
171#endif
172
173 float_status fp_status;
174
dc5bd18f
MC
175 /* Fields from here on are preserved across CPU reset. */
176 QEMUTimer *timer; /* Internal timer */
177};
178
179#define RISCV_CPU_CLASS(klass) \
180 OBJECT_CLASS_CHECK(RISCVCPUClass, (klass), TYPE_RISCV_CPU)
181#define RISCV_CPU(obj) \
182 OBJECT_CHECK(RISCVCPU, (obj), TYPE_RISCV_CPU)
183#define RISCV_CPU_GET_CLASS(obj) \
184 OBJECT_GET_CLASS(RISCVCPUClass, (obj), TYPE_RISCV_CPU)
185
186/**
187 * RISCVCPUClass:
188 * @parent_realize: The parent class' realize handler.
189 * @parent_reset: The parent class' reset handler.
190 *
191 * A RISCV CPU model.
192 */
193typedef struct RISCVCPUClass {
194 /*< private >*/
195 CPUClass parent_class;
196 /*< public >*/
197 DeviceRealize parent_realize;
198 void (*parent_reset)(CPUState *cpu);
199} RISCVCPUClass;
200
201/**
202 * RISCVCPU:
203 * @env: #CPURISCVState
204 *
205 * A RISCV CPU.
206 */
207typedef struct RISCVCPU {
208 /*< private >*/
209 CPUState parent_obj;
210 /*< public >*/
5b146dc7 211 CPUNegativeOffsetState neg;
dc5bd18f 212 CPURISCVState env;
c4e95030
AF
213
214 /* Configuration Settings */
215 struct {
b55d7d34
AF
216 bool ext_i;
217 bool ext_e;
218 bool ext_g;
219 bool ext_m;
220 bool ext_a;
221 bool ext_f;
222 bool ext_d;
223 bool ext_c;
224 bool ext_s;
225 bool ext_u;
226
c4e95030
AF
227 char *priv_spec;
228 char *user_spec;
229 bool mmu;
230 bool pmp;
231 } cfg;
dc5bd18f
MC
232} RISCVCPU;
233
dc5bd18f
MC
234static inline int riscv_has_ext(CPURISCVState *env, target_ulong ext)
235{
236 return (env->misa & ext) != 0;
237}
238
239static inline bool riscv_feature(CPURISCVState *env, int feature)
240{
241 return env->features & (1ULL << feature);
242}
243
244#include "cpu_user.h"
245#include "cpu_bits.h"
246
247extern const char * const riscv_int_regnames[];
248extern const char * const riscv_fpr_regnames[];
249extern const char * const riscv_excp_names[];
250extern const char * const riscv_intr_names[];
251
dc5bd18f
MC
252void riscv_cpu_do_interrupt(CPUState *cpu);
253int riscv_cpu_gdb_read_register(CPUState *cpu, uint8_t *buf, int reg);
254int riscv_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg);
255bool riscv_cpu_exec_interrupt(CPUState *cs, int interrupt_request);
256int riscv_cpu_mmu_index(CPURISCVState *env, bool ifetch);
257hwaddr riscv_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
258void riscv_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
259 MMUAccessType access_type, int mmu_idx,
260 uintptr_t retaddr);
8a4ca3c1
RH
261bool riscv_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
262 MMUAccessType access_type, int mmu_idx,
263 bool probe, uintptr_t retaddr);
cbf58276
MC
264void riscv_cpu_unassigned_access(CPUState *cpu, hwaddr addr, bool is_write,
265 bool is_exec, int unused, unsigned size);
dc5bd18f 266char *riscv_isa_string(RISCVCPU *cpu);
0442428a 267void riscv_cpu_list(void);
dc5bd18f 268
fb738839 269#define cpu_signal_handler riscv_cpu_signal_handler
dc5bd18f
MC
270#define cpu_list riscv_cpu_list
271#define cpu_mmu_index riscv_cpu_mmu_index
272
85ba724f 273#ifndef CONFIG_USER_ONLY
e3e7039c 274int riscv_cpu_claim_interrupts(RISCVCPU *cpu, uint32_t interrupts);
85ba724f
MC
275uint32_t riscv_cpu_update_mip(RISCVCPU *cpu, uint32_t mask, uint32_t value);
276#define BOOL_TO_MASK(x) (-!!(x)) /* helper for riscv_cpu_update_mip value */
277#endif
fb738839 278void riscv_cpu_set_mode(CPURISCVState *env, target_ulong newpriv);
dc5bd18f
MC
279
280void riscv_translate_init(void);
fb738839
MC
281int riscv_cpu_signal_handler(int host_signum, void *pinfo, void *puc);
282void QEMU_NORETURN riscv_raise_exception(CPURISCVState *env,
283 uint32_t exception, uintptr_t pc);
dc5bd18f 284
fb738839
MC
285target_ulong riscv_cpu_get_fflags(CPURISCVState *env);
286void riscv_cpu_set_fflags(CPURISCVState *env, target_ulong);
dc5bd18f 287
83a71719
RH
288#define TB_FLAGS_MMU_MASK 3
289#define TB_FLAGS_MSTATUS_FS MSTATUS_FS
dc5bd18f
MC
290
291static inline void cpu_get_tb_cpu_state(CPURISCVState *env, target_ulong *pc,
292 target_ulong *cs_base, uint32_t *flags)
293{
294 *pc = env->pc;
295 *cs_base = 0;
296#ifdef CONFIG_USER_ONLY
83a71719 297 *flags = TB_FLAGS_MSTATUS_FS;
dc5bd18f
MC
298#else
299 *flags = cpu_mmu_index(env, 0) | (env->mstatus & MSTATUS_FS);
300#endif
301}
302
c7b95171
MC
303int riscv_csrrw(CPURISCVState *env, int csrno, target_ulong *ret_value,
304 target_ulong new_value, target_ulong write_mask);
753e3fe2
JW
305int riscv_csrrw_debug(CPURISCVState *env, int csrno, target_ulong *ret_value,
306 target_ulong new_value, target_ulong write_mask);
c7b95171 307
fb738839
MC
308static inline void riscv_csr_write(CPURISCVState *env, int csrno,
309 target_ulong val)
c7b95171
MC
310{
311 riscv_csrrw(env, csrno, NULL, val, MAKE_64BIT_MASK(0, TARGET_LONG_BITS));
312}
313
fb738839 314static inline target_ulong riscv_csr_read(CPURISCVState *env, int csrno)
c7b95171
MC
315{
316 target_ulong val = 0;
317 riscv_csrrw(env, csrno, &val, 0, 0);
318 return val;
319}
320
321typedef int (*riscv_csr_predicate_fn)(CPURISCVState *env, int csrno);
322typedef int (*riscv_csr_read_fn)(CPURISCVState *env, int csrno,
323 target_ulong *ret_value);
324typedef int (*riscv_csr_write_fn)(CPURISCVState *env, int csrno,
325 target_ulong new_value);
326typedef int (*riscv_csr_op_fn)(CPURISCVState *env, int csrno,
327 target_ulong *ret_value, target_ulong new_value, target_ulong write_mask);
328
329typedef struct {
a88365c1 330 riscv_csr_predicate_fn predicate;
c7b95171
MC
331 riscv_csr_read_fn read;
332 riscv_csr_write_fn write;
333 riscv_csr_op_fn op;
334} riscv_csr_operations;
335
336void riscv_get_csr_ops(int csrno, riscv_csr_operations *ops);
337void riscv_set_csr_ops(int csrno, riscv_csr_operations *ops);
dc5bd18f 338
5371f5cd
JW
339void riscv_cpu_register_gdb_regs_for_features(CPUState *cs);
340
4f7c64b3 341typedef CPURISCVState CPUArchState;
2161a612 342typedef RISCVCPU ArchCPU;
4f7c64b3 343
dc5bd18f
MC
344#include "exec/cpu-all.h"
345
346#endif /* RISCV_CPU_H */