URL
https://opencores.org/ocsvn/neorv32/neorv32/trunk
Subversion Repositories neorv32
[/] [neorv32/] [trunk/] [docs/] [datasheet/] [soc_mtime.adoc] - Rev 60
Go to most recent revision | Compare with Previous | Blame | View Log
<<<
:sectnums:
==== Machine System Timer (MTIME)
[cols="<3,<3,<4"]
[frame="topbot",grid="none"]
|=======================
| Hardware source file(s): | neorv32_mtime.vhd |
| Software driver file(s): | neorv32_mtime.c |
| | neorv32_mtime.h |
| Top entity port: | `mtime_i` | System time input from external MTIME
| | `mtime_o` | System time output (64-bit) for SoC
| Configuration generics: | _IO_MTIME_EN_ | implement MTIME when _true_
| CPU interrupts: | `MTI` | machine timer interrupt (see <<_processor_interrupts>>)
|=======================
**Theory of Operation**
The MTIME machine system timer implements the memory-mapped MTIME timer from the official RISC-V
specifications. This unit features a 64-bit system timer incremented with the primary processor clock.
The current system time can also be obtained using the `time[h]` CSRs and is made available for processor-external
use via the top's `mtime_o` signal.
[NOTE]
If the processor-internal **MTIME unit is NOT implemented**, the top's `mtime_i` input signal is used to update the `time[h]` CSRs
and the `MTI` machine timer interrupt) CPU interrupt is directly connected to the top's `mtime_irq_i` input.
The 64-bit system time can be accessed via the `MTIME_LO` and `MTIME_HI` memory-mapped registers (read/write) and also via
the CPU's `time[h]` CSRs (read-only). A 64-bit time compare register – accessible via memory-mapped `MTIMECMP_LO` and `MTIMECMP_HI`
registers – are used to configure an interrupt to the CPU. The interrupt is triggered
whenever `MTIME` (high & low part) >= `MTIMECMP` (high & low part) and is directly forwarded to the CPU's `MTI` interrupt.
[TIP]
The interrupt request is a single-shot signal,
so the CPU is triggered once if the system time is greater than or equal to the compare time. Hence,
another MTIME IRQ is only possible when updating `MTIMECMP`.
The 64-bit counter and the 64-bit comparator are implemented as 2×32-bit counters and comparators with a
registered carry to prevent a 64-bit carry chain and thus, to simplify timing closure.
.MTIME register map
[cols="<3,<3,^1,^1,<6"]
[options="header",grid="all"]
|=======================
| Address | Name [C] | Bits | R/W | Function
| `0xffffff90` | _MTIME_LO_ | 31:0 | r/w | machine system time, low word
| `0xffffff94` | _MTIME_HI_ | 31:0 | r/w | machine system time, high word
| `0xffffff98` | _MTIMECMP_LO_ | 31:0 | r/w | time compare, low word
| `0xffffff9c` | _MTIMECMP_HI_ | 31:0 | r/w | time compare, high word
|=======================
Go to most recent revision | Compare with Previous | Blame | View Log