Skip to content

Commit 8637d9d

Browse files
akashlevyhcallahan-lowrisc
authored andcommitted
Update google_riscv-dv to chipsalliance/riscv-dv@71666eb
Update code from upstream repository https://github.com/chipsalliance/riscv-dv to revision 71666ebacd69266b1abb7cdbad5e1897ce5884e6 Signed-off-by: Akash Levy <akash@silimate.com>
1 parent 577986e commit 8637d9d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

vendor/google_riscv-dv/euvm/riscv/gen/riscv_instr_pkg.d

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,10 @@ enum privileged_reg_t: ushort { // 12'b
11021102
VXRM = 0x00A, // Fixed point rounding mode
11031103
VL = 0xC20, // Vector length
11041104
VTYPE = 0xC21, // Vector data type register
1105-
VLENB = 0xC22 // VLEN/8 (vector register length in bytes)
1105+
VLENB = 0xC22, // VLEN/8 (vector register length in bytes)
1106+
// Ibex Registers
1107+
CPUCTRLSTS = 0x7C0, // CPU Control and Status (Ibex Specific)
1108+
SECURESEED = 0x7C1 // Secure Seed (Ibex Specific)
11061109
}
11071110

11081111
enum privileged_reg_fld_t: ubyte {

vendor/google_riscv-dv/src/riscv_instr_pkg.sv

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,10 @@ package riscv_instr_pkg;
10971097
VXRM = 'h00A, // Fixed point rounding mode
10981098
VL = 'hC20, // Vector length
10991099
VTYPE = 'hC21, // Vector data type register
1100-
VLENB = 'hC22 // VLEN/8 (vector register length in bytes)
1100+
VLENB = 'hC22, // VLEN/8 (vector register length in bytes)
1101+
// Ibex Registers
1102+
CPUCTRLSTS = 'h7C0, // CPU Control and Status (Ibex Specific)
1103+
SECURESEED = 'h7C1 // Secure Seed (Ibex Specific)
11011104
} privileged_reg_t;
11021105

11031106
typedef enum bit [5:0] {

0 commit comments

Comments
 (0)