-
Notifications
You must be signed in to change notification settings - Fork 79
Add DCSR and DPC CSRs #614
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
Merged
dhower-qc
merged 27 commits into
riscv-software-src:main
from
neverlandiz:add-dcsr-and-dpc-csrs
Aug 6, 2025
Merged
Changes from 3 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
38e64d7
add dcsr and dpc csrs
neverlandiz abef190
Merge branch 'main' into add-dcsr-and-dpc-csrs
neverlandiz 05af687
docs(debug csrs): change dcsr and dpc to D mode
neverlandiz a5c6bab
docs(debug csrs): add definedBy to fields
neverlandiz c47a850
docs(debug csrs): add DXLEN length type
neverlandiz 36de286
docs(debug csrs): fix privilege mode
neverlandiz fd39d4e
docs(debug csrs): add params and sw_write for checking MPRVEN impleme…
neverlandiz cc34768
docs(debug csrs): fix description
neverlandiz ba6b5d4
docs(debug csrs): fix MPRVEN param
neverlandiz ee80efe
docs(debug csrs): add type() and reset_value()
neverlandiz beaeb61
docs(debug csr): add DXLEN to csr.rb
neverlandiz d885542
docs(debug csrs): removed DXLEN
neverlandiz 0ee560a
docs(Sdext): fix CI failures
neverlandiz 8a9525d
docs(dcsr): fix syntax error
neverlandiz 51aafde
docs(dcsr): fix syntax error
neverlandiz b4b3927
docs(debug mode): add D-mode to modes_with_access
neverlandiz 3ec854b
docs(debug mode): add D mode to multi_xlen_in_mode
neverlandiz 871382b
docs(dcsr): add STEPIE, STOPCOUNT, and STOPTIME params
neverlandiz fab9c49
docs(dcsr): add return statements
neverlandiz 1d4351b
docs(dcsr): add asserts
neverlandiz d360f7b
docs(Sdext): change tied-to to read-only
neverlandiz e6b9c80
fix(debug csrs): file rebase
neverlandiz 9aba8e6
Merge branch 'main' into add-dcsr-and-dpc-csrs
neverlandiz 39978d9
Update cfg_arch.rb
neverlandiz 82fadef
docs(debug csrs): add copyright and license information
neverlandiz 0edfaf8
fix(debug csrs): edit copyright information
neverlandiz 2ed52f5
Merge branch 'main' into add-dcsr-and-dpc-csrs
dhower-qc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,218 @@ | ||
| # yaml-language-server: $schema=../../schemas/csr_schema.json | ||
|
|
||
| $schema: "csr_schema.json#" | ||
| kind: csr | ||
| name: dcsr | ||
| long_name: Debug Control and Status Register | ||
| address: 0x7B0 | ||
| priv_mode: D | ||
| length: 32 | ||
| description: | | ||
| Upon entry into Debug Mode, v and prv are updated with the privilege level the hart was previously in, | ||
| and cause is updated with the reason for Debug Mode entry. Other than these fields and nmip, the | ||
| other fields of dcsr are only writable by the external debugger. | ||
| Priority of reasons for entering Debug Mode from highest to lowest is shown below. | ||
| 5:: resethaltreq | ||
| 6:: halt group | ||
| 3:: haltreq | ||
| 2:: trigger | ||
| 1:: ebreak | ||
| 4:: step | ||
| For compatibility with old versions of this spec, resethaltreq and | ||
| haltreq are allowed to be at different positions than shown as long as: | ||
| 1. resethaltreq is higher priority than haltreq | ||
| 2. the relative order of the other four causes is maintained | ||
| This CSR is read/write. | ||
| definedBy: Sdext | ||
| fields: | ||
| DEBUGVER: | ||
| location: 31-28 | ||
| type: RO | ||
| description: | | ||
| 0 (none):: There is no debug support. | ||
| 4 (1.0):: Debug support exists as it is described in this document. | ||
| 15 (custom):: There is debug support, but it does not conform to any available version of this spec. | ||
| reset_value: UNDEFINED_LEGAL | ||
| EXTCAUSE: | ||
| location: 26-24 | ||
| type: RO | ||
| description: | | ||
| When cause is 7, this optional field contains the value of a more specific halt reason than "other." | ||
| Otherwise it contains 0. | ||
| 0 (critical error):: The hart entered a critical error state, as defined in the Smdbltrp extension. | ||
| All other values are reserved for future versions of this spec, or for use by other RISC-V extensions. | ||
| reset_value: 0 | ||
| CETRIG: | ||
| location: 19 | ||
| type: RW | ||
| description: | | ||
| This bit is part of Smdbltrp and only exists when that extension is implemented. | ||
| 0 (disabled):: A hart in a critical error state does not enter | ||
| Debug Mode but instead asserts the critical-error signal to | ||
| the platform. | ||
| 1 (enabled):: A hart in a critical error state enters Debug | ||
| Mode instead of asserting the critical-error signal to the | ||
| platform. Upon such entry into Debug Mode, the cause | ||
| field is set to 7, and the extcause field is set to 0, indicating | ||
| a critical error triggered the Debug Mode entry. This cause | ||
| has the highest priority among all reasons for entering | ||
| Debug Mode. Resuming from Debug Mode following an | ||
| entry from the critical error state returns the hart to the | ||
| critical error state. | ||
| When cetrig is 1, resuming from Debug Mode following an entry due to a critical | ||
| error will result in an immediate re-entry into Debug Mode due to the critical error. | ||
| The debugger may resume with cetrig set to 0 to allow the platform defined actions on | ||
| critical-error signal to occur. Other possible actions include initiating a hart or platform | ||
| reset using the Debug Module reset control. | ||
| reset_value: 0 | ||
| PELP: | ||
| location: 18 | ||
| type: RW | ||
| description: | | ||
| This bit is part of Zicfilp and only exists when that extension is implemented. | ||
ThinkOpenly marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| 0 (NO_LP_EXPECTED):: No landing pad instruction expected. | ||
| 1 (LP_EXPECTED):: A landing pad instruction is expected. | ||
| reset_value: 0 | ||
| EBREAKVS: | ||
| location: 17 | ||
| type: RW | ||
| description: | | ||
| 0 (exception):: ebreak instructions in VS-mode behave as described in the Privileged Spec. | ||
| 1 (debug mode):: ebreak instructions in VS-mode enter Debug Mode. | ||
| This bit is hardwired to 0 if the hart does not support virtualization mode. | ||
ThinkOpenly marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| reset_value: 0 | ||
| EBREAKVU: | ||
| location: 16 | ||
| type: RW | ||
| description: | | ||
| 0 (exception):: ebreak instructions in VU-mode behave as described in the Privileged Spec. | ||
| 1 (debug mode):: ebreak instructions in VU-mode enter Debug Mode. | ||
| This bit is hardwired to 0 if the hart does not support virtualization mode. | ||
ThinkOpenly marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| reset_value: 0 | ||
| EBREAKM: | ||
| location: 15 | ||
| type: RW | ||
| description: | | ||
| 0 (exception):: ebreak instructions in M-mode behave as described in the Privileged Spec. | ||
| 1 (debug mode):: ebreak instructions in M-mode enter Debug Mode. | ||
| reset_value: 0 | ||
| EBREAKS: | ||
| location: 13 | ||
| type: RW | ||
| description: | | ||
| 0 (exception):: ebreak instructions in S-mode behave as described in the Privileged Spec. | ||
| 1 (debug mode):: ebreak instructions in S-mode enter Debug Mode. | ||
| This bit is hardwired to 0 if the hart does not support S-mode. | ||
ThinkOpenly marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| reset_value: 0 | ||
| EBREAKU: | ||
| location: 12 | ||
| type: RW | ||
| description: | | ||
| 0 (exception):: ebreak instructions in U-mode behave as described in the Privileged Spec. | ||
| 1 (debug mode):: ebreak instructions in U-mode enter Debug Mode. | ||
| This bit is hardwired to 0 if the hart does not support U-mode. | ||
ThinkOpenly marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| reset_value: 0 | ||
| STEPIE: | ||
| location: 11 | ||
| type: RW | ||
| description: | | ||
| 0 (interrupts disabled):: Interrupts (including NMI) are disabled during single stepping with step set. | ||
| This value should be supported. | ||
| 1 (interrupts enabled):: Interrupts (including NMI) are enabled during single stepping with step set. | ||
| Implementations may hard wire this bit to 0. In that case interrupt behavior can be emulated by the | ||
| debugger. The debugger must not change the value of this bit while the hart is running. | ||
| reset_value: 0 | ||
| STOPCOUNT: | ||
| location: 10 | ||
| type: RW | ||
| description: | | ||
| 0 (normal):: Increment counters as usual. | ||
| 1 (freeze):: Don’t increment any hart-local counters while in Debug Mode or on ebreak instructions | ||
| that cause entry into Debug Mode. These counters include the instret CSR. On single-hart cores cycle | ||
| should be stopped, but on multi-hart cores it must keep incrementing. | ||
| An implementation may hardwire this bit to 0 or 1. | ||
| reset_value: UNDEFINED_LEGAL | ||
| STOPTIME: | ||
| location: 9 | ||
| type: RW | ||
| description: | | ||
| 0 (normal):: time continues to reflect mtime. | ||
| 1 (freeze):: time is frozen at the time that Debug Mode was entered. When leaving Debug Mode, | ||
| time will reflect the latest value of mtime again. | ||
| While all harts have stoptime=1 and are in Debug Mode, mtime is allowed to stop incrementing. | ||
| An implementation may hardwire this bit to 0 or 1. | ||
| reset_value: UNDEFINED_LEGAL | ||
| CAUSE: | ||
| location: 8-6 | ||
| type: RO | ||
| description: | | ||
| Explains why Debug Mode was entered. | ||
| When there are multiple reasons to enter Debug Mode in a | ||
| single cycle, hardware should set cause to the cause with | ||
| the highest priority. | ||
| 1 (ebreak):: An ebreak instruction was executed. | ||
| 2 (trigger):: A Trigger Module trigger fired with action=1. | ||
| 3 (haltreq):: The debugger requested entry to Debug Mode | ||
| using haltreq. | ||
| 4 (step):: The hart single stepped because step was set. | ||
| 5 (resethaltreq):: The hart halted directly out of reset due to | ||
| resethaltreq It is also acceptable to report 3 when this | ||
| happens. | ||
| 6 (group):: The hart halted because it’s part of a halt group. | ||
| Harts may report 3 for this cause instead. | ||
| 7 (other):: The hart halted for a reason other than the ones | ||
| mentioned above. extcause may contain a more specific | ||
| reason. | ||
| reset_value: 0 | ||
| V: | ||
| location: 5 | ||
| type: RW | ||
| description: | | ||
| Extends the prv field with the virtualization mode the hart was operating in | ||
| when Debug Mode was entered. A debugger can change this value to change the | ||
| hart’s virtualization mode when exiting Debug Mode. This bit is hardwired to 0 on harts | ||
| that do not support virtualization mode. | ||
ThinkOpenly marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| reset_value: 0 | ||
| MPRVEN: | ||
| location: 4 | ||
| type: RW | ||
| description: | | ||
| 0 (disabled):: mprv in mstatus is ignored in Debug Mode. | ||
| 1 (enabled):: mprv in mstatus takes effect in Debug Mode. | ||
| Implementing this bit is optional. It may be tied to either 0 or 1. | ||
ThinkOpenly marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| reset_value: UNDEFINED_LEGAL | ||
| NMIP: | ||
| location: 3 | ||
| type: RO | ||
| description: | | ||
| When set, there is a Non-Maskable-Interrupt (NMI) pending for the hart. | ||
| Since an NMI can indicate a hardware error condition, reliable debugging | ||
| may no longer be possible once this bit becomes set. This is implementation-dependent. | ||
| reset_value: 0 | ||
| STEP: | ||
| location: 2 | ||
| type: RW | ||
| description: | | ||
| When set and not in Debug Mode, the hart will only execute a single instruction | ||
| and then enter Debug Mode. | ||
| The debugger must not change the value of this bit while the hart is running. | ||
| reset_value: 0 | ||
| PRV: | ||
| location: 1-0 | ||
| type: RW | ||
| description: | | ||
| Contains the privilege mode the hart was operating in when Debug Mode was entered. | ||
| A debugger can change this value to change the hart’s privilege mode when exiting | ||
| Debug Mode. | ||
| Not all privilege modes are supported on all harts. If the encoding written is not | ||
| supported or the debugger is not allowed to change to it, the hart may change to any | ||
| supported privilege mode. | ||
| reset_value: 3 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| # yaml-language-server: $schema=../../schemas/csr_schema.json | ||
|
|
||
| $schema: "csr_schema.json#" | ||
| kind: csr | ||
| name: dpc | ||
| long_name: Debug PC Register | ||
| address: 0x7B1 | ||
| priv_mode: D | ||
| length: XLEN | ||
ThinkOpenly marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| description: | | ||
| Upon entry to debug mode, dpc is updated with the virtual address of the next instruction to be executed. | ||
| Executing the Program Buffer may cause the value of dpc to become UNSPECIFIED. If that is the case, | ||
| it must be possible to read/write dpc using an abstract command with postexec not set. The debugger | ||
| must attempt to save dpc between halting and executing a Program Buffer, and then restore dpc before | ||
| leaving Debug Mode. | ||
| If the Access Register abstract command supports reading dpc while the hart is running, then the | ||
| value read should be the address of a recently executed instruction. | ||
| If the Access Register abstract command supports writing dpc while the hart is running, then the | ||
| executing program should jump to the written address shortly after the write occurs. | ||
| The writability of dpc follows the same rules as mepc as defined in the Privileged Spec. In particular, | ||
| dpc must be able to hold all valid virtual addresses and the writability of the low bits depends on | ||
| IALIGN. | ||
| When resuming, the hart’s PC is updated to the virtual address stored in dpc. A debugger may write | ||
| dpc to change where the hart resumes. | ||
| This CSR is read/write. | ||
| definedBy: Sdext | ||
| fields: | ||
| DPC: | ||
| location_rv32: 31-0 | ||
| location_rv64: 63-0 | ||
| type: RW | ||
| description: DPC Value | ||
ThinkOpenly marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| reset_value: UNDEFINED_LEGAL | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.