Skip to content

Commit

Permalink
Add landing pad enable bit in core config
Browse files Browse the repository at this point in the history
  • Loading branch information
emanueleparisi committed Oct 19, 2024
1 parent d09ee19 commit 08fc081
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion core/include/config_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ package config_pkg;
bit CvxifEn;
// Zicond RISC-V extension
bit ZiCondExtEn;
// Control-Flow Integrity - Zicfilp extension
bit ZiCfiLPEn;
// CLIC extension
bit RVSCLIC;
// Single precision FP RISC-V extension
Expand Down Expand Up @@ -108,7 +110,7 @@ package config_pkg;
bit RVU;
// Address to jump when halt request
logic [63:0] HaltAddress;
// Address to jump when exception
// Address to jump when exception
logic [63:0] ExceptionAddress;
// Return address stack depth
int unsigned RASDepth;
Expand Down
2 changes: 2 additions & 0 deletions core/include/cv64a6_imafdch_sv39_wb_alsaqr_config_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ package cva6_config_pkg;
localparam CVA6ConfigVExtEn = 0;
localparam CVA6ConfigHExtEn = 1;
localparam CVA6ConfigZiCondExtEn = 1;
localparam CVA6ConfigZiCfiLPEn = 1;
localparam CVA6ConfigSclicExtEn = 0;

localparam CVA6ConfigAxiIdWidth = 4;
Expand Down Expand Up @@ -102,6 +103,7 @@ package cva6_config_pkg;
XFVec: bit'(CVA6ConfigFVecEn),
CvxifEn: bit'(CVA6ConfigCvxifEn),
ZiCondExtEn: bit'(CVA6ConfigZiCondExtEn),
ZiCfiLPEn: bit'(CVA6ConfigZiCfiLPEn),
RVSCLIC: bit'(CVA6ConfigSclicExtEn),
// Extended
RVF:
Expand Down

0 comments on commit 08fc081

Please sign in to comment.