]> git.proxmox.com Git - mirror_qemu.git/blame - target/riscv/cpu.h
target/riscv: Add host cpu type
[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
2e5b09fd 23#include "hw/core/cpu.h"
2b7168fc 24#include "hw/registerfields.h"
dc5bd18f 25#include "exec/cpu-defs.h"
135b03cb 26#include "fpu/softfloat-types.h"
db1015e9 27#include "qom/object.h"
961738ff 28#include "qemu/int128.h"
e91a7227 29#include "cpu_bits.h"
dc5bd18f 30
74433bf0
RH
31#define TCG_GUEST_DEFAULT_MO 0
32
dc5bd18f
MC
33#define TYPE_RISCV_CPU "riscv-cpu"
34
35#define RISCV_CPU_TYPE_SUFFIX "-" TYPE_RISCV_CPU
36#define RISCV_CPU_TYPE_NAME(name) (name RISCV_CPU_TYPE_SUFFIX)
0dacec87 37#define CPU_RESOLVING_TYPE TYPE_RISCV_CPU
dc5bd18f
MC
38
39#define TYPE_RISCV_CPU_ANY RISCV_CPU_TYPE_NAME("any")
8903bf6e
AF
40#define TYPE_RISCV_CPU_BASE32 RISCV_CPU_TYPE_NAME("rv32")
41#define TYPE_RISCV_CPU_BASE64 RISCV_CPU_TYPE_NAME("rv64")
332dab68 42#define TYPE_RISCV_CPU_BASE128 RISCV_CPU_TYPE_NAME("x-rv128")
36b80ad9 43#define TYPE_RISCV_CPU_IBEX RISCV_CPU_TYPE_NAME("lowrisc-ibex")
6ddc7069 44#define TYPE_RISCV_CPU_SHAKTI_C RISCV_CPU_TYPE_NAME("shakti-c")
dc5bd18f 45#define TYPE_RISCV_CPU_SIFIVE_E31 RISCV_CPU_TYPE_NAME("sifive-e31")
d784733b 46#define TYPE_RISCV_CPU_SIFIVE_E34 RISCV_CPU_TYPE_NAME("sifive-e34")
dc5bd18f
MC
47#define TYPE_RISCV_CPU_SIFIVE_E51 RISCV_CPU_TYPE_NAME("sifive-e51")
48#define TYPE_RISCV_CPU_SIFIVE_U34 RISCV_CPU_TYPE_NAME("sifive-u34")
49#define TYPE_RISCV_CPU_SIFIVE_U54 RISCV_CPU_TYPE_NAME("sifive-u54")
10f1ca27 50#define TYPE_RISCV_CPU_HOST RISCV_CPU_TYPE_NAME("host")
dc5bd18f 51
c0a635f3
AF
52#if defined(TARGET_RISCV32)
53# define TYPE_RISCV_CPU_BASE TYPE_RISCV_CPU_BASE32
54#elif defined(TARGET_RISCV64)
55# define TYPE_RISCV_CPU_BASE TYPE_RISCV_CPU_BASE64
56#endif
57
dc5bd18f
MC
58#define RV(x) ((target_ulong)1 << (x - 'A'))
59
60#define RVI RV('I')
79f86934 61#define RVE RV('E') /* E and I are mutually exclusive */
dc5bd18f
MC
62#define RVM RV('M')
63#define RVA RV('A')
64#define RVF RV('F')
65#define RVD RV('D')
ad9e5aa2 66#define RVV RV('V')
dc5bd18f
MC
67#define RVC RV('C')
68#define RVS RV('S')
69#define RVU RV('U')
af1fa003 70#define RVH RV('H')
53dcea58 71#define RVJ RV('J')
dc5bd18f
MC
72
73/* S extension denotes that Supervisor mode exists, however it is possible
74 to have a core that support S mode but does not have an MMU and there
75 is currently no bit in misa to indicate whether an MMU exists or not
a88365c1 76 so a cpu features bitfield is required, likewise for optional PMP support */
dc5bd18f 77enum {
a88365c1 78 RISCV_FEATURE_MMU,
f18637cd 79 RISCV_FEATURE_PMP,
4a345b2a 80 RISCV_FEATURE_EPMP,
f18637cd 81 RISCV_FEATURE_MISA
dc5bd18f
MC
82};
83
dc5bd18f 84#define PRIV_VERSION_1_10_0 0x00011000
6729dbbd 85#define PRIV_VERSION_1_11_0 0x00011100
dc5bd18f 86
9ec6622d 87#define VEXT_VERSION_1_00_0 0x00010000
32931383 88
33a9a57d
YJ
89enum {
90 TRANSLATE_SUCCESS,
91 TRANSLATE_FAIL,
92 TRANSLATE_PMP_FAIL,
93 TRANSLATE_G_STAGE_FAIL
94};
95
dc5bd18f
MC
96#define MMU_USER_IDX 3
97
98#define MAX_RISCV_PMPS (16)
99
100typedef struct CPURISCVState CPURISCVState;
101
bbf3d1b4 102#if !defined(CONFIG_USER_ONLY)
dc5bd18f 103#include "pmp.h"
bbf3d1b4 104#endif
dc5bd18f 105
8a4b5257 106#define RV_VLEN_MAX 1024
ad9e5aa2 107
33f1beaf
FC
108FIELD(VTYPE, VLMUL, 0, 3)
109FIELD(VTYPE, VSEW, 3, 3)
3479a814
FC
110FIELD(VTYPE, VTA, 6, 1)
111FIELD(VTYPE, VMA, 7, 1)
33f1beaf
FC
112FIELD(VTYPE, VEDIV, 8, 2)
113FIELD(VTYPE, RESERVED, 10, sizeof(target_ulong) * 8 - 11)
fbcbafa2 114FIELD(VTYPE, VILL, sizeof(target_ulong) * 8 - 1, 1)
2b7168fc 115
dc5bd18f
MC
116struct CPURISCVState {
117 target_ulong gpr[32];
2b547084 118 target_ulong gprh[32]; /* 64 top bits of the 128-bit registers */
dc5bd18f 119 uint64_t fpr[32]; /* assume both F and D extensions */
ad9e5aa2
LZ
120
121 /* vector coprocessor state. */
122 uint64_t vreg[32 * RV_VLEN_MAX / 64] QEMU_ALIGNED(16);
123 target_ulong vxrm;
124 target_ulong vxsat;
125 target_ulong vl;
126 target_ulong vstart;
127 target_ulong vtype;
128
dc5bd18f
MC
129 target_ulong pc;
130 target_ulong load_res;
131 target_ulong load_val;
132
133 target_ulong frm;
134
135 target_ulong badaddr;
48eaeb56
AF
136 uint32_t bins;
137
36a18664 138 target_ulong guest_phys_fault_addr;
dc5bd18f 139
dc5bd18f 140 target_ulong priv_ver;
d2c1a177 141 target_ulong bext_ver;
32931383 142 target_ulong vext_ver;
e91a7227
RH
143
144 /* RISCVMXL, but uint32_t for vmstate migration */
145 uint32_t misa_mxl; /* current mxl */
146 uint32_t misa_mxl_max; /* max mxl for this cpu */
147 uint32_t misa_ext; /* current extensions */
148 uint32_t misa_ext_mask; /* max ext for this cpu */
dc5bd18f 149
b3a5d1fb
FP
150 /* 128-bit helpers upper part return value */
151 target_ulong retxh;
152
dc5bd18f
MC
153 uint32_t features;
154
5836c3ec
KC
155#ifdef CONFIG_USER_ONLY
156 uint32_t elf_flags;
157#endif
158
dc5bd18f
MC
159#ifndef CONFIG_USER_ONLY
160 target_ulong priv;
ef6bb7b6
AF
161 /* This contains QEMU specific information about the virt state. */
162 target_ulong virt;
dc5bd18f
MC
163 target_ulong resetvec;
164
165 target_ulong mhartid;
284d697c
YJ
166 /*
167 * For RV32 this is 32-bit mstatus and 32-bit mstatush.
168 * For RV64 this is a 64-bit mstatus.
169 */
170 uint64_t mstatus;
85ba724f 171
02861613 172 target_ulong mip;
66e594f2 173
e3e7039c 174 uint32_t miclaim;
85ba724f 175
dc5bd18f
MC
176 target_ulong mie;
177 target_ulong mideleg;
178
dc5bd18f 179 target_ulong satp; /* since: priv-1.10.0 */
ac12b601 180 target_ulong stval;
dc5bd18f
MC
181 target_ulong medeleg;
182
183 target_ulong stvec;
184 target_ulong sepc;
185 target_ulong scause;
186
187 target_ulong mtvec;
188 target_ulong mepc;
189 target_ulong mcause;
190 target_ulong mtval; /* since: priv-1.10.0 */
191
bd023ce3
AF
192 /* Hypervisor CSRs */
193 target_ulong hstatus;
194 target_ulong hedeleg;
195 target_ulong hideleg;
196 target_ulong hcounteren;
197 target_ulong htval;
198 target_ulong htinst;
199 target_ulong hgatp;
c6957248 200 uint64_t htimedelta;
bd023ce3 201
2c64ab66
FP
202 /* Upper 64-bits of 128-bit CSRs */
203 uint64_t mscratchh;
204 uint64_t sscratchh;
205
bd023ce3 206 /* Virtual CSRs */
284d697c
YJ
207 /*
208 * For RV32 this is 32-bit vsstatus and 32-bit vsstatush.
209 * For RV64 this is a 64-bit vsstatus.
210 */
211 uint64_t vsstatus;
bd023ce3
AF
212 target_ulong vstvec;
213 target_ulong vsscratch;
214 target_ulong vsepc;
215 target_ulong vscause;
216 target_ulong vstval;
217 target_ulong vsatp;
218
219 target_ulong mtval2;
220 target_ulong mtinst;
221
66e594f2
AF
222 /* HS Backup CSRs */
223 target_ulong stvec_hs;
224 target_ulong sscratch_hs;
225 target_ulong sepc_hs;
226 target_ulong scause_hs;
227 target_ulong stval_hs;
228 target_ulong satp_hs;
284d697c 229 uint64_t mstatus_hs;
66e594f2 230
ec352d0c
GK
231 /* Signals whether the current exception occurred with two-stage address
232 translation active. */
233 bool two_stage_lookup;
234
8c59f5c1
MC
235 target_ulong scounteren;
236 target_ulong mcounteren;
dc5bd18f
MC
237
238 target_ulong sscratch;
239 target_ulong mscratch;
240
241 /* temporary htif regs */
242 uint64_t mfromhost;
243 uint64_t mtohost;
244 uint64_t timecmp;
245
246 /* physical memory protection */
247 pmp_table_t pmp_state;
2582a95c 248 target_ulong mseccfg;
753e3fe2 249
c6957248 250 /* machine specific rdtime callback */
a47ef6e9
BM
251 uint64_t (*rdtime_fn)(uint32_t);
252 uint32_t rdtime_fn_arg;
c6957248 253
753e3fe2
JW
254 /* True if in debugger mode. */
255 bool debugger;
4bbe8033
AB
256
257 /*
258 * CSRs for PointerMasking extension
259 */
260 target_ulong mmte;
261 target_ulong mpmmask;
262 target_ulong mpmbase;
263 target_ulong spmmask;
264 target_ulong spmbase;
265 target_ulong upmmask;
266 target_ulong upmbase;
dc5bd18f
MC
267#endif
268
269 float_status fp_status;
270
dc5bd18f
MC
271 /* Fields from here on are preserved across CPU reset. */
272 QEMUTimer *timer; /* Internal timer */
ad40be27
YJ
273
274 hwaddr kernel_addr;
275 hwaddr fdt_addr;
dc5bd18f
MC
276};
277
c821774a 278OBJECT_DECLARE_TYPE(RISCVCPU, RISCVCPUClass,
30b5707c 279 RISCV_CPU)
dc5bd18f
MC
280
281/**
282 * RISCVCPUClass:
283 * @parent_realize: The parent class' realize handler.
284 * @parent_reset: The parent class' reset handler.
285 *
286 * A RISCV CPU model.
287 */
db1015e9 288struct RISCVCPUClass {
dc5bd18f
MC
289 /*< private >*/
290 CPUClass parent_class;
291 /*< public >*/
292 DeviceRealize parent_realize;
781c67ca 293 DeviceReset parent_reset;
db1015e9 294};
dc5bd18f
MC
295
296/**
297 * RISCVCPU:
298 * @env: #CPURISCVState
299 *
300 * A RISCV CPU.
301 */
db1015e9 302struct RISCVCPU {
dc5bd18f
MC
303 /*< private >*/
304 CPUState parent_obj;
305 /*< public >*/
5b146dc7 306 CPUNegativeOffsetState neg;
dc5bd18f 307 CPURISCVState env;
c4e95030 308
b93777e1 309 char *dyn_csr_xml;
719d3561 310 char *dyn_vreg_xml;
b93777e1 311
c4e95030
AF
312 /* Configuration Settings */
313 struct {
b55d7d34
AF
314 bool ext_i;
315 bool ext_e;
316 bool ext_g;
317 bool ext_m;
318 bool ext_a;
319 bool ext_f;
320 bool ext_d;
321 bool ext_c;
322 bool ext_s;
323 bool ext_u;
c9eefe05 324 bool ext_h;
53dcea58 325 bool ext_j;
6bf91617 326 bool ext_v;
878dd0e9
PT
327 bool ext_zba;
328 bool ext_zbb;
329 bool ext_zbc;
330 bool ext_zbs;
0a13a5b8 331 bool ext_counters;
50fba816 332 bool ext_ifencei;
591bddea 333 bool ext_icsr;
915f77b2 334 bool ext_zfh;
2d258b42 335 bool ext_zfhmin;
b55d7d34 336
c4e95030
AF
337 char *priv_spec;
338 char *user_spec;
d2c1a177 339 char *bext_spec;
6bf91617 340 char *vext_spec;
32931383
LZ
341 uint16_t vlen;
342 uint16_t elen;
c4e95030
AF
343 bool mmu;
344 bool pmp;
5da9514e 345 bool epmp;
9b4c9b2b 346 uint64_t resetvec;
c4e95030 347 } cfg;
db1015e9 348};
dc5bd18f 349
dc5bd18f
MC
350static inline int riscv_has_ext(CPURISCVState *env, target_ulong ext)
351{
e91a7227 352 return (env->misa_ext & ext) != 0;
dc5bd18f
MC
353}
354
355static inline bool riscv_feature(CPURISCVState *env, int feature)
356{
357 return env->features & (1ULL << feature);
358}
359
360#include "cpu_user.h"
dc5bd18f
MC
361
362extern const char * const riscv_int_regnames[];
2b547084 363extern const char * const riscv_int_regnamesh[];
dc5bd18f 364extern const char * const riscv_fpr_regnames[];
dc5bd18f 365
c51a3f5d 366const char *riscv_cpu_get_trap_name(target_ulong cause, bool async);
dc5bd18f 367void riscv_cpu_do_interrupt(CPUState *cpu);
43a96588
YJ
368int riscv_cpu_write_elf64_note(WriteCoreDumpFunction f, CPUState *cs,
369 int cpuid, void *opaque);
370int riscv_cpu_write_elf32_note(WriteCoreDumpFunction f, CPUState *cs,
371 int cpuid, void *opaque);
a010bdbe 372int riscv_cpu_gdb_read_register(CPUState *cpu, GByteArray *buf, int reg);
dc5bd18f 373int riscv_cpu_gdb_write_register(CPUState *cpu, uint8_t *buf, int reg);
b345b480 374bool riscv_cpu_fp_enabled(CPURISCVState *env);
61b4b69d 375bool riscv_cpu_vector_enabled(CPURISCVState *env);
ef6bb7b6
AF
376bool riscv_cpu_virt_enabled(CPURISCVState *env);
377void riscv_cpu_set_virt_enabled(CPURISCVState *env, bool enable);
1c1c060a 378bool riscv_cpu_two_stage_lookup(int mmu_idx);
dc5bd18f
MC
379int riscv_cpu_mmu_index(CPURISCVState *env, bool ifetch);
380hwaddr riscv_cpu_get_phys_page_debug(CPUState *cpu, vaddr addr);
381void riscv_cpu_do_unaligned_access(CPUState *cs, vaddr addr,
382 MMUAccessType access_type, int mmu_idx,
fa947a66 383 uintptr_t retaddr) QEMU_NORETURN;
8a4ca3c1
RH
384bool riscv_cpu_tlb_fill(CPUState *cs, vaddr address, int size,
385 MMUAccessType access_type, int mmu_idx,
386 bool probe, uintptr_t retaddr);
37207e12
PD
387void riscv_cpu_do_transaction_failed(CPUState *cs, hwaddr physaddr,
388 vaddr addr, unsigned size,
389 MMUAccessType access_type,
390 int mmu_idx, MemTxAttrs attrs,
391 MemTxResult response, uintptr_t retaddr);
dc5bd18f 392char *riscv_isa_string(RISCVCPU *cpu);
0442428a 393void riscv_cpu_list(void);
dc5bd18f 394
dc5bd18f
MC
395#define cpu_list riscv_cpu_list
396#define cpu_mmu_index riscv_cpu_mmu_index
397
85ba724f 398#ifndef CONFIG_USER_ONLY
17b3c353 399bool riscv_cpu_exec_interrupt(CPUState *cs, int interrupt_request);
66e594f2 400void riscv_cpu_swap_hypervisor_regs(CPURISCVState *env);
e3e7039c 401int riscv_cpu_claim_interrupts(RISCVCPU *cpu, uint32_t interrupts);
85ba724f
MC
402uint32_t riscv_cpu_update_mip(RISCVCPU *cpu, uint32_t mask, uint32_t value);
403#define BOOL_TO_MASK(x) (-!!(x)) /* helper for riscv_cpu_update_mip value */
a47ef6e9
BM
404void riscv_cpu_set_rdtime_fn(CPURISCVState *env, uint64_t (*fn)(uint32_t),
405 uint32_t arg);
85ba724f 406#endif
fb738839 407void riscv_cpu_set_mode(CPURISCVState *env, target_ulong newpriv);
dc5bd18f
MC
408
409void riscv_translate_init(void);
fb738839
MC
410void QEMU_NORETURN riscv_raise_exception(CPURISCVState *env,
411 uint32_t exception, uintptr_t pc);
dc5bd18f 412
fb738839
MC
413target_ulong riscv_cpu_get_fflags(CPURISCVState *env);
414void riscv_cpu_set_fflags(CPURISCVState *env, target_ulong);
dc5bd18f 415
c445593d
AF
416#define TB_FLAGS_PRIV_MMU_MASK 3
417#define TB_FLAGS_PRIV_HYP_ACCESS_MASK (1 << 2)
83a71719 418#define TB_FLAGS_MSTATUS_FS MSTATUS_FS
61b4b69d 419#define TB_FLAGS_MSTATUS_VS MSTATUS_VS
dc5bd18f 420
2b7168fc
LZ
421typedef CPURISCVState CPUArchState;
422typedef RISCVCPU ArchCPU;
423#include "exec/cpu-all.h"
424
61d56494 425FIELD(TB_FLAGS, MEM_IDX, 0, 3)
33f1beaf 426FIELD(TB_FLAGS, LMUL, 3, 3)
61d56494 427FIELD(TB_FLAGS, SEW, 6, 3)
33f1beaf
FC
428/* Skip MSTATUS_VS (0x600) bits */
429FIELD(TB_FLAGS, VL_EQ_VLMAX, 11, 1)
430FIELD(TB_FLAGS, VILL, 12, 1)
431/* Skip MSTATUS_FS (0x6000) bits */
743077b3 432/* Is a Hypervisor instruction load/store allowed? */
33f1beaf
FC
433FIELD(TB_FLAGS, HLSX, 15, 1)
434FIELD(TB_FLAGS, MSTATUS_HS_FS, 16, 2)
435FIELD(TB_FLAGS, MSTATUS_HS_VS, 18, 2)
92371bd9 436/* The combination of MXL/SXL/UXL that applies to the current cpu mode. */
33f1beaf 437FIELD(TB_FLAGS, XL, 20, 2)
0774a7a1 438/* If PointerMasking should be applied */
33f1beaf 439FIELD(TB_FLAGS, PM_ENABLED, 22, 1)
2b7168fc 440
db23e5d9
RH
441#ifdef TARGET_RISCV32
442#define riscv_cpu_mxl(env) ((void)(env), MXL_RV32)
443#else
444static inline RISCVMXL riscv_cpu_mxl(CPURISCVState *env)
445{
446 return env->misa_mxl;
447}
448#endif
51ae0cab 449
2b7168fc 450/*
a689a82b
FC
451 * Encode LMUL to lmul as follows:
452 * LMUL vlmul lmul
453 * 1 000 0
454 * 2 001 1
455 * 4 010 2
456 * 8 011 3
457 * - 100 -
458 * 1/8 101 -3
459 * 1/4 110 -2
460 * 1/2 111 -1
461 *
462 * then, we can calculate VLMAX = vlen >> (vsew + 3 - lmul)
463 * e.g. vlen = 256 bits, SEW = 16, LMUL = 1/8
464 * => VLMAX = vlen >> (1 + 3 - (-3))
465 * = 256 >> 7
466 * = 2
2b7168fc
LZ
467 */
468static inline uint32_t vext_get_vlmax(RISCVCPU *cpu, target_ulong vtype)
469{
a689a82b
FC
470 uint8_t sew = FIELD_EX64(vtype, VTYPE, VSEW);
471 int8_t lmul = sextract32(FIELD_EX64(vtype, VTYPE, VLMUL), 0, 3);
2b7168fc
LZ
472 return cpu->cfg.vlen >> (sew + 3 - lmul);
473}
474
53677acf
RH
475void cpu_get_tb_cpu_state(CPURISCVState *env, target_ulong *pc,
476 target_ulong *cs_base, uint32_t *pflags);
dc5bd18f 477
533c91e8
AF
478RISCVException riscv_csrrw(CPURISCVState *env, int csrno,
479 target_ulong *ret_value,
480 target_ulong new_value, target_ulong write_mask);
481RISCVException riscv_csrrw_debug(CPURISCVState *env, int csrno,
482 target_ulong *ret_value,
483 target_ulong new_value,
484 target_ulong write_mask);
c7b95171 485
fb738839
MC
486static inline void riscv_csr_write(CPURISCVState *env, int csrno,
487 target_ulong val)
c7b95171
MC
488{
489 riscv_csrrw(env, csrno, NULL, val, MAKE_64BIT_MASK(0, TARGET_LONG_BITS));
490}
491
fb738839 492static inline target_ulong riscv_csr_read(CPURISCVState *env, int csrno)
c7b95171
MC
493{
494 target_ulong val = 0;
495 riscv_csrrw(env, csrno, &val, 0, 0);
496 return val;
497}
498
0e62f92e
AF
499typedef RISCVException (*riscv_csr_predicate_fn)(CPURISCVState *env,
500 int csrno);
605def6e
AF
501typedef RISCVException (*riscv_csr_read_fn)(CPURISCVState *env, int csrno,
502 target_ulong *ret_value);
503typedef RISCVException (*riscv_csr_write_fn)(CPURISCVState *env, int csrno,
504 target_ulong new_value);
505typedef RISCVException (*riscv_csr_op_fn)(CPURISCVState *env, int csrno,
506 target_ulong *ret_value,
507 target_ulong new_value,
508 target_ulong write_mask);
c7b95171 509
961738ff
FP
510RISCVException riscv_csrrw_i128(CPURISCVState *env, int csrno,
511 Int128 *ret_value,
512 Int128 new_value, Int128 write_mask);
513
457c360f
FP
514typedef RISCVException (*riscv_csr_read128_fn)(CPURISCVState *env, int csrno,
515 Int128 *ret_value);
516typedef RISCVException (*riscv_csr_write128_fn)(CPURISCVState *env, int csrno,
517 Int128 new_value);
518
c7b95171 519typedef struct {
8ceac5dc 520 const char *name;
a88365c1 521 riscv_csr_predicate_fn predicate;
c7b95171
MC
522 riscv_csr_read_fn read;
523 riscv_csr_write_fn write;
524 riscv_csr_op_fn op;
457c360f
FP
525 riscv_csr_read128_fn read128;
526 riscv_csr_write128_fn write128;
c7b95171
MC
527} riscv_csr_operations;
528
56118ee8
BM
529/* CSR function table constants */
530enum {
531 CSR_TABLE_SIZE = 0x1000
532};
533
534/* CSR function table */
6f03770d 535extern riscv_csr_operations csr_ops[CSR_TABLE_SIZE];
56118ee8 536
c7b95171
MC
537void riscv_get_csr_ops(int csrno, riscv_csr_operations *ops);
538void riscv_set_csr_ops(int csrno, riscv_csr_operations *ops);
dc5bd18f 539
5371f5cd
JW
540void riscv_cpu_register_gdb_regs_for_features(CPUState *cs);
541
dc5bd18f 542#endif /* RISCV_CPU_H */