aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Waterman <andrew@sifive.com>2024-07-23 16:33:41 -0700
committerGitHub <noreply@github.com>2024-07-23 16:33:41 -0700
commitbc6a9b7cea1a8cf108d4c16fc6b68c18f50bdba1 (patch)
treedc4497f7b8a1b897459f77b07be1747cd811b252 /src
parent05175a75e9ac5a74176feca10386d4f6e6dfe947 (diff)
downloadriscv-isa-manual-bc6a9b7cea1a8cf108d4c16fc6b68c18f50bdba1.zip
riscv-isa-manual-bc6a9b7cea1a8cf108d4c16fc6b68c18f50bdba1.tar.gz
riscv-isa-manual-bc6a9b7cea1a8cf108d4c16fc6b68c18f50bdba1.tar.bz2
Diffstat (limited to 'src')
-rw-r--r--src/machine.adoc10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/machine.adoc b/src/machine.adoc
index a81f7bb..24a0a75 100644
--- a/src/machine.adoc
+++ b/src/machine.adoc
@@ -1575,9 +1575,9 @@ counters, the counters can be directly exposed to lower privilege modes.
The `cycle`, `instret`, and `hpmcountern` CSRs are read-only shadows of
`mcycle`, `minstret`, and `mhpmcounter n`, respectively. The `time` CSR
is a read-only shadow of the memory-mapped `mtime` register.
-Analogously, on RV32I the `cycleh`, `instreth` and `hpmcounternh` CSRs
+Analogously, when XLEN=32, the `cycleh`, `instreth` and `hpmcounternh` CSRs
are read-only shadows of `mcycleh`, `minstreth` and `mhpmcounternh`,
-respectively. On RV32I the `timeh` CSR is a read-only shadow of the
+respectively. When XLEN=32, the `timeh` CSR is a read-only shadow of the
upper 32 bits of the memory-mapped `mtime` register, while `time`
shadows only the lower 32 bits of `mtime`.
@@ -2336,6 +2336,12 @@ For RV64, naturally aligned 64-bit memory accesses to the `mtime` and
....
+The `time` CSR is a read-only shadow of the memory-mapped `mtime` register.
+When XLEN=32, the `timeh` CSR is a read-only shadow of the upper 32 bits of the
+memory-mapped `mtime` register, while `time` shadows only the lower 32 bits of
+`mtime`.
+When `mtime` changes, it is guaranteed to be reflected in `time` and `timeh`
+eventually, but not necessarily immediately.
=== Machine-Mode Privileged Instructions