-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tie dcsr.mprven to 1. Add dcsr.stopcount. #718
Tie dcsr.mprven to 1. Add dcsr.stopcount. #718
Conversation
Signed-off-by: Oivind Ekelund <[email protected]>
rtl/cv32e40x_cs_registers.sv
Outdated
@@ -1010,6 +1012,8 @@ module cv32e40x_cs_registers import cv32e40x_pkg::*; | |||
xdebugver : dcsr_rdata.xdebugver, | |||
ebreakm : dcsr_rdata.ebreakm, | |||
stepie : dcsr_rdata.stepie, | |||
stopcount : dcsr_rdata.stopcount, | |||
mprven : 1'b1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dcsr_rdata.mprven
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated
rtl/cv32e40x_cs_registers.sv
Outdated
@@ -644,6 +644,8 @@ module cv32e40x_cs_registers import cv32e40x_pkg::*; | |||
xdebugver : dcsr_rdata.xdebugver, | |||
ebreakm : csr_wdata_int[15], | |||
stepie : csr_wdata_int[11], | |||
stopcount : csr_wdata_int[10], | |||
mprven : 1'b1, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dcsr_rdata.mprven
(treat the same as dcsr_rdata.xdebugver)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated.
Signed-off-by: Oivind Ekelund <[email protected]>
Fix for openhwgroup/cv32e40s#343.
Implementation of dcsr.stopcount functionality will come in a later PR.