Skip to content
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

Fix yet another asciidoc conversion problem #1101

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Sdtrig.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ that writing 0 to {csr-tdata1} disables the trigger, and leaves it in a state wh

As a result, a debugger can write any supported trigger as follows:

. Write 0 to {csr-tdata1}. (This will result in containing a non-zero value, since the register is *WARL*.)
. Write 0 to {csr-tdata1}. (This will result in {csr-tdata1} containing a non-zero value, since the register is *WARL*.)
. Write desired values to {csr-tdata2} and {csr-tdata3}.
. Write desired value to {csr-tdata1}.

Expand Down
4 changes: 2 additions & 2 deletions debug_module.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ While the reset is on-going, harts are either in the running state,
indicating it's possible to perform some abstract commands during this
time, or in the unavailable state, indicating it's not possible to
perform any abstract commands during this time. Once a hart's reset is
complete, `havereset` becomes set. When a hart comes out of reset and {dmcontrol-haltreq} or {dmstatus-hasresethaltreq}
complete, `havereset` becomes set. When a hart comes out of reset and {dmcontrol-haltreq} or `resethaltreq`
are set, the hart will immediately enter Debug Mode (halted state).
Otherwise, if the hart was initially running it will execute normally
(running state) and if the hart was initially halted it should now be
Expand Down Expand Up @@ -190,7 +190,7 @@ Which states a hart that is reset goes through is implementation
dependent. Harts may be unavailable while reset is asserted, and some
time after reset is deasserted. They might transition to running for
some time after reset is deasserted. Finally they end up either running
or halted, depending on {dmcontrol-haltreq} and {dmstatus-hasresethaltreq}.
or halted, depending on {dmcontrol-haltreq} and `resethaltreq`.

[[runcontrol]]
=== Run Control
Expand Down
12 changes: 6 additions & 6 deletions introduction.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -144,17 +144,17 @@ https://github.com/riscv/riscv-debug-spec/pull/505[#505]
. System bus autoincrement only happens if an access actually takes place.
({dm-sbdata0}) https://github.com/riscv/riscv-debug-spec/pull/507[#507]
. Bump {tinfo-version} to 3. https://github.com/riscv/riscv-debug-spec/pull/512[#512]
, Require debugger to poll {dmcontrol-dmactive} after lowering it.
. Require debugger to poll {dmcontrol-dmactive} after lowering it.
https://github.com/riscv/riscv-debug-spec/pull/566[#566]
. Add {icount-pending} to {csr-icount} . https://github.com/riscv/riscv-debug-spec/pull/574[#574]
. When a selected trigger is disabled, {csr-tdata2} and {csr-tdata3} can be written with any value supported by any of the types this trigger supports.
https://github.com/riscv/riscv-debug-spec/pull/721[#721]
. {csr-tcontrol} fields only apply to breakpoint traps, not any trap.
https://github.com/riscv/riscv-debug-spec/pull/723[#723]
. If {tinfo-version} is greater than 0, then {mcontrol6-hit0} (previously called {csr-mcontrol}.``hit``) now contains 0 when a trigger fires more than one instruction after the
instruction that matched. (This information is now reflected in .)
. If {tinfo-version} is greater than 0, then {mcontrol6-hit0} (previously called {csr-mcontrol6}.``hit``) now contains 0 when a trigger fires more than one instruction after the
instruction that matched. (This information is now reflected in {mcontrol6-hit1}.)
https://github.com/riscv/riscv-debug-spec/pull/795[#795]
. If {tinfo-version} is greater than 0, then bit 20 of {csr-mcontrol6} is no longer used for timing information. (Previously the bit was called {csr-mcontrol}.``timing``.)
. If {tinfo-version} is greater than 0, then bit 20 of {csr-mcontrol6} is no longer used for timing information. (Previously the bit was called {csr-mcontrol6}.``timing``.)
https://github.com/riscv/riscv-debug-spec/pull/807[#807]
. If {tinfo-version} is greater than 0, then the encodings of {mcontrol6-size} for sizes greater than 64 bit have changed.
https://github.com/riscv/riscv-debug-spec/pull/807[#807]
Expand Down Expand Up @@ -193,7 +193,7 @@ https://github.com/riscv/riscv-debug-spec/pull/585[#585]
. Writing 0 to {csr-tdata1} forces a state where {csr-tdata2} and {csr-tdata3} are writable.
https://github.com/riscv/riscv-debug-spec/pull/598[#598]
. Solutions to deal with reentrancy in <<nativetrigger>> prevent triggers from
_matching_, not merely _firing_. This primarily affects behavior.
_matching_, not merely _firing_. This primarily affects {csr-icount} behavior.
https://github.com/riscv/riscv-debug-spec/pull/722[#722]
. Attempts to access an unimplemented CSR raise an illegal instruction
exception. https://github.com/riscv/riscv-debug-spec/pull/791[#791]
Expand All @@ -204,7 +204,7 @@ New backwards-compatible feature that did not exist before:

. Add halt groups and external triggers in <<hrgroups>>.
https://github.com/riscv/riscv-debug-spec/pull/404[#404]
. Reserve some DMI space for non-standard use. See {dm-custom}, and {dm-custom0} through .
. Reserve some DMI space for non-standard use. See {dm-custom}, and {dm-custom0} through `custom15`.
https://github.com/riscv/riscv-debug-spec/pull/406[#406]
. Reserve trigger {tdata1-type} values for non-standard use.
https://github.com/riscv/riscv-debug-spec/pull/417[#417]
Expand Down
Loading