Interrupt Controller Technical Specification
Overview
This document specifies the Interrupt Controller (RV_PLIC) functionality. This module conforms to the Comportable guideline for peripheral functionality. See that document for integration overview within the broader top level system.
Features
- RISC-V Platform-Level Interrupt Controller (PLIC) compliant interrupt controller
- Support arbitrary number of interrupt vectors (up to 255) and targets
- Support interrupt enable, interrupt status registers
- Memory-mapped MSIP register per HART for software interrupt control.
Description
The RV_PLIC module is designed to manage various interrupt sources from the
peripherals. It receives interrupt events as either edge or level of the
incoming interrupt signals (intr_src_i
) and can notify multiple targets.
Compatibility
The RV_PLIC is compatible with any RISC-V core implementing the RISC-V privilege specification.
Theory of Operations
Block Diagram
Hardware Interfaces
Referring to the Comportable guideline for peripheral device functionality, the module rv_plic
has the following hardware interfaces defined.
Primary Clock: clk_i
Other Clocks: none
Bus Device Interfaces (TL-UL): tl
Bus Host Interfaces (TL-UL): none
Peripheral Pins for Chip IO: none
Inter-Module Signals: Reference
Port Name | Package::Struct | Type | Act | Width | Description |
---|---|---|---|---|---|
irq | logic | uni | req | 1 | |
irq_id | logic | uni | req | 1 | |
msip | logic | uni | req | 1 | |
tl | tlul_pkg::tl | req_rsp | rsp | 1 |
Interrupts: none
Security Alerts:
Alert Name | Description |
---|---|
fatal_fault | This fatal alert is triggered when a fatal TL-UL bus integrity fault is detected. |
Security Countermeasures:
Countermeasure ID | Description |
---|---|
RV_PLIC.BUS.INTEGRITY | End-to-end bus integrity scheme. |
Design Details
Identifier
Each interrupt source has a unique ID assigned based upon its bit position
within the input intr_src_i
. ID ranges from 0 to N, the number of interrupt
sources. ID 0 is reserved and represents no interrupt. The bit 0 of
intr_src_i
shall be tied to 0 from the outside of RV_PLIC. The
intr_src_i[i]
bit has an ID of i
. This ID is used when targets “claim” the
interrupt and to “complete” the interrupt event.
Priority and Threshold
Interrupt sources have configurable priority values. The maximum value of the
priority is configurable through the localparam MAX_PRIO
in the rv_plic
top-level module. For each target there is a threshold value (
THRESHOLD0 for
target 0). RV_PLIC notifies a target of an interrupt only if it’s priority is
strictly greater than the target’s threshold. Note this means an interrupt with
a priority is 0 is effectively prevented from causing an interrupt at any target
and a target can suppress all interrupts by setting it’s threshold to the max
priority value.
MAX_PRIO
parameter is most area contributing option in RV_PLIC. If MAX_PRIO
is big, then finding the highest priority in Process module may consume a lot of
logic gates.
Interrupt Gateways
The Gateway observes incoming interrupt sources and converts them to a common
interrupt format used internally by RV_PLIC. It can be parameterized to detect
interrupts events on an edge (when the signal changes from 0 to 1) or
level basis (where the signal remains at 1).
The choice is a system-integration decision and can be configured via the design parameter LevelEdgeTrig
for each interrupt request.
When the gateway detects an interrupt event it raises the interrupt pending bit ( IP) for that interrupt source. When an interrupt is claimed by a target the relevant bit of IP is cleared. A bit in IP will not be reasserted until the target signals completion of the interrupt. Any new interrupt event between a bit in IP asserting and completing that interrupt is ignored. In particular this means that for edge triggered interrupts if a new edge is seen after the source’s IP bit is asserted but before completion, that edge will be ignored (counting missed edges as discussed in the RISC-V PLIC specification is not supported).
Note that there is no ability for a level triggered interrupt to be cancelled. If the interrupt drops after the gateway has set a bit in IP, the bit will remain set until the interrupt is completed. The SW handler should be conscious of this and check the interrupt still requires handling in the handler if this behaviour is possible.
Interrupt Enables
Each target has a set of Interrupt Enable ( IE0 for target 0) registers. Each bit in the IE0 registers controls the corresponding interrupt source. If an interrupt source is disabled for a target, then interrupt events from that source won’t trigger an interrupt at the target. RV_PLIC doesn’t have a global interrupt disable feature.
Interrupt Claims
“Claiming” an interrupt is done by a target reading the associated Claim/Completion register for the target ( CC0 for target 0). The return value of the CC0 read represents the ID of the pending interrupt that has the highest priority. If two or more pending interrupts have the same priority, RV_PLIC chooses the one with lowest ID. Only interrupts that that are enabled for the target can be claimed. The target priority threshold doesn’t matter (this only factors into whether an interrupt is signalled to the target) so lower priority interrupt IDs can be returned on a read from CC0. If no interrupt is pending (or all pending interrupts are disabled for the target) a read of CC0 returns an ID of 0.
Interrupt Completion
After an interrupt is claimed, the relevant bit of interrupt pending (
IP) is
cleared, regardless of the status of the intr_src_i
input value. Until a
target “completes” the interrupt, it won’t be re-asserted if a new event for the
interrupt occurs. A target completes the interrupt by writing the ID of the
interrupt to the Claim/Complete register (
CC0 for target 0). The write event
is forwarded to the Gateway logic, which resets the interrupt status to accept a
new interrupt event. The assumption is that the processor has cleaned up the
originating interrupt event during the time between claim and complete such that
intr_src_i[ID]
will have de-asserted (unless a new interrupt has occurred).
In the example above an interrupt for source ID i
is configured as a level
interrupt and is raised at a, this results in the target being notified of the
interrupt at b. The target claims the interrupt at c (reading i
from it’s
Claim/Complete register) so irq_o
deasserts though intr_src_i[i]
remains
raised. The SW handles the interrupt and it drops at e. However a new interrupt
quickly occurs at f. As complete hasn’t been signaled yet irq_o
isn’t
asserted. At g the interrupt is completed (by writing i
to it’s
Claim/Complete register) so at h irq_o
is asserted due to the new interrupt.
Programmers Guide
Initialization
After reset, RV_PLIC doesn’t generate any interrupts to any targets even if
interrupt sources are set, as all priorities and thresholds are 0 by default and
all IE
values are 0. Software should configure the above three registers.
PRIO0 .. PRIO31 registers are unique. So, only one of the targets shall configure them.
// Pseudo-code below
void plic_init() {
// Configure priority
// Note that PRIO0 register doesn't affect as intr_src_i[0] is tied to 0.
for (int i = 0; i < N_SOURCE; ++i) {
*(PRIO + i) = value(i);
}
}
void plic_threshold(tid, threshold) {
*(THRESHOLD + tid) = threshold;
}
void plic_enable(tid, iid) {
// iid: 0-based ID
int offset = ceil(N_SOURCE / 32) * tid + (iid >> 5);
*(IE + offset) = *(IE + offset) | (1 << (iid % 32));
}
Handling Interrupt Request Events
If software receives an interrupt request, it is recommended to follow the steps shown below (assuming target 0 which uses CC0 for claim/complete).
- Claim the interrupts right after entering to the interrupt service routine by reading the CC0 register.
- Determine which interrupt should be serviced based on the values read from the CC0 register.
- Execute ISR, clearing the originating peripheral interrupt.
- Write Interrupt ID to CC0
- Repeat as necessary for other pending interrupts.
It is possible to have multiple interrupt events claimed. If software claims one interrupt request, then the process module advertises any pending interrupts with lower priority unless new higher priority interrupt events occur. If a higher interrupt event occurs after previous interrupt is claimed, the RV_PLIC IP advertises the higher priority interrupt. Software may utilize an event manager inside a loop so that interrupt claiming and completion can be separated.
void interrupt_service() {
uint32_t tid = /* ... */;
uint32_t iid = *(CC + tid);
if (iid == 0) {
// Interrupt is claimed by one of other targets.
return;
}
do {
// Process interrupts...
// ...
// Finish.
*(CC + tid) = iid;
iid = *(CC + tid);
} while (iid != 0);
}
As a reference, default interrupt service routines are auto-generated for each IP, and are documented here.
Device Interface Functions (DIFs)
To use this DIF, include the following C header:
#include "sw/device/lib/dif/dif_rv_plic.h"
This header provides the following device interface functions:
dif_rv_plic_irq_claim
Claims an IRQ and gets the information about the source.dif_rv_plic_irq_complete
Completes the claimed IRQ.dif_rv_plic_irq_get_enabled
Checks whether a particular interrupt is currently enabled or disabled.dif_rv_plic_irq_is_pending
Returns whether a particular interrupt is currently pending.dif_rv_plic_irq_set_enabled
Sets whether a particular interrupt is currently enabled or disabled.dif_rv_plic_irq_set_priority
Sets IRQ source priority (0-3).dif_rv_plic_reset
Resets the PLIC to a clean state.dif_rv_plic_software_irq_acknowledge
Acknowledges the software interrupt for a particular target.dif_rv_plic_software_irq_force
Forces the software interrupt for a particular target.dif_rv_plic_software_irq_is_pending
Returns software interrupt pending state for a particular target.dif_rv_plic_target_set_threshold
Sets the target priority threshold.
Registers
The RV_PLIC in the top level is generated by topgen tool so that the number of interrupt sources may be different.
- IE: CEILING(N_SOURCE / DW) X N_TARGET Each bit enables corresponding interrupt source. Each target has IE set.
- PRIO: N_SOURCE Universal set across all targets. Lower n bits are valid. n is determined by MAX_PRIO parameter
- THRESHOLD: N_TARGET Priority threshold per target. Only priority of the interrupt greater than threshold can raise interrupt notification to the target.
- IP: CEILING(N_SOURCE / DW) Pending bits right after the gateways. Read-only
- CC: N_TARGET Claim by read, complete by write
Summary | |||
---|---|---|---|
Name | Offset | Length | Description |
rv_plic.PRIO0 | 0x0 | 4 | Interrupt Source 0 Priority |
rv_plic.PRIO1 | 0x4 | 4 | Interrupt Source 1 Priority |
rv_plic.PRIO2 | 0x8 | 4 | Interrupt Source 2 Priority |
rv_plic.PRIO3 | 0xc | 4 | Interrupt Source 3 Priority |
rv_plic.PRIO4 | 0x10 | 4 | Interrupt Source 4 Priority |
rv_plic.PRIO5 | 0x14 | 4 | Interrupt Source 5 Priority |
rv_plic.PRIO6 | 0x18 | 4 | Interrupt Source 6 Priority |
rv_plic.PRIO7 | 0x1c | 4 | Interrupt Source 7 Priority |
rv_plic.PRIO8 | 0x20 | 4 | Interrupt Source 8 Priority |
rv_plic.PRIO9 | 0x24 | 4 | Interrupt Source 9 Priority |
rv_plic.PRIO10 | 0x28 | 4 | Interrupt Source 10 Priority |
rv_plic.PRIO11 | 0x2c | 4 | Interrupt Source 11 Priority |
rv_plic.PRIO12 | 0x30 | 4 | Interrupt Source 12 Priority |
rv_plic.PRIO13 | 0x34 | 4 | Interrupt Source 13 Priority |
rv_plic.PRIO14 | 0x38 | 4 | Interrupt Source 14 Priority |
rv_plic.PRIO15 | 0x3c | 4 | Interrupt Source 15 Priority |
rv_plic.PRIO16 | 0x40 | 4 | Interrupt Source 16 Priority |
rv_plic.PRIO17 | 0x44 | 4 | Interrupt Source 17 Priority |
rv_plic.PRIO18 | 0x48 | 4 | Interrupt Source 18 Priority |
rv_plic.PRIO19 | 0x4c | 4 | Interrupt Source 19 Priority |
rv_plic.PRIO20 | 0x50 | 4 | Interrupt Source 20 Priority |
rv_plic.PRIO21 | 0x54 | 4 | Interrupt Source 21 Priority |
rv_plic.PRIO22 | 0x58 | 4 | Interrupt Source 22 Priority |
rv_plic.PRIO23 | 0x5c | 4 | Interrupt Source 23 Priority |
rv_plic.PRIO24 | 0x60 | 4 | Interrupt Source 24 Priority |
rv_plic.PRIO25 | 0x64 | 4 | Interrupt Source 25 Priority |
rv_plic.PRIO26 | 0x68 | 4 | Interrupt Source 26 Priority |
rv_plic.PRIO27 | 0x6c | 4 | Interrupt Source 27 Priority |
rv_plic.PRIO28 | 0x70 | 4 | Interrupt Source 28 Priority |
rv_plic.PRIO29 | 0x74 | 4 | Interrupt Source 29 Priority |
rv_plic.PRIO30 | 0x78 | 4 | Interrupt Source 30 Priority |
rv_plic.PRIO31 | 0x7c | 4 | Interrupt Source 31 Priority |
rv_plic.PRIO32 | 0x80 | 4 | Interrupt Source 32 Priority |
rv_plic.PRIO33 | 0x84 | 4 | Interrupt Source 33 Priority |
rv_plic.PRIO34 | 0x88 | 4 | Interrupt Source 34 Priority |
rv_plic.PRIO35 | 0x8c | 4 | Interrupt Source 35 Priority |
rv_plic.PRIO36 | 0x90 | 4 | Interrupt Source 36 Priority |
rv_plic.PRIO37 | 0x94 | 4 | Interrupt Source 37 Priority |
rv_plic.PRIO38 | 0x98 | 4 | Interrupt Source 38 Priority |
rv_plic.PRIO39 | 0x9c | 4 | Interrupt Source 39 Priority |
rv_plic.PRIO40 | 0xa0 | 4 | Interrupt Source 40 Priority |
rv_plic.PRIO41 | 0xa4 | 4 | Interrupt Source 41 Priority |
rv_plic.PRIO42 | 0xa8 | 4 | Interrupt Source 42 Priority |
rv_plic.PRIO43 | 0xac | 4 | Interrupt Source 43 Priority |
rv_plic.PRIO44 | 0xb0 | 4 | Interrupt Source 44 Priority |
rv_plic.PRIO45 | 0xb4 | 4 | Interrupt Source 45 Priority |
rv_plic.PRIO46 | 0xb8 | 4 | Interrupt Source 46 Priority |
rv_plic.PRIO47 | 0xbc | 4 | Interrupt Source 47 Priority |
rv_plic.PRIO48 | 0xc0 | 4 | Interrupt Source 48 Priority |
rv_plic.PRIO49 | 0xc4 | 4 | Interrupt Source 49 Priority |
rv_plic.PRIO50 | 0xc8 | 4 | Interrupt Source 50 Priority |
rv_plic.PRIO51 | 0xcc | 4 | Interrupt Source 51 Priority |
rv_plic.PRIO52 | 0xd0 | 4 | Interrupt Source 52 Priority |
rv_plic.PRIO53 | 0xd4 | 4 | Interrupt Source 53 Priority |
rv_plic.PRIO54 | 0xd8 | 4 | Interrupt Source 54 Priority |
rv_plic.PRIO55 | 0xdc | 4 | Interrupt Source 55 Priority |
rv_plic.PRIO56 | 0xe0 | 4 | Interrupt Source 56 Priority |
rv_plic.PRIO57 | 0xe4 | 4 | Interrupt Source 57 Priority |
rv_plic.PRIO58 | 0xe8 | 4 | Interrupt Source 58 Priority |
rv_plic.PRIO59 | 0xec | 4 | Interrupt Source 59 Priority |
rv_plic.PRIO60 | 0xf0 | 4 | Interrupt Source 60 Priority |
rv_plic.PRIO61 | 0xf4 | 4 | Interrupt Source 61 Priority |
rv_plic.PRIO62 | 0xf8 | 4 | Interrupt Source 62 Priority |
rv_plic.PRIO63 | 0xfc | 4 | Interrupt Source 63 Priority |
rv_plic.PRIO64 | 0x100 | 4 | Interrupt Source 64 Priority |
rv_plic.PRIO65 | 0x104 | 4 | Interrupt Source 65 Priority |
rv_plic.PRIO66 | 0x108 | 4 | Interrupt Source 66 Priority |
rv_plic.PRIO67 | 0x10c | 4 | Interrupt Source 67 Priority |
rv_plic.PRIO68 | 0x110 | 4 | Interrupt Source 68 Priority |
rv_plic.PRIO69 | 0x114 | 4 | Interrupt Source 69 Priority |
rv_plic.PRIO70 | 0x118 | 4 | Interrupt Source 70 Priority |
rv_plic.PRIO71 | 0x11c | 4 | Interrupt Source 71 Priority |
rv_plic.PRIO72 | 0x120 | 4 | Interrupt Source 72 Priority |
rv_plic.PRIO73 | 0x124 | 4 | Interrupt Source 73 Priority |
rv_plic.PRIO74 | 0x128 | 4 | Interrupt Source 74 Priority |
rv_plic.PRIO75 | 0x12c | 4 | Interrupt Source 75 Priority |
rv_plic.PRIO76 | 0x130 | 4 | Interrupt Source 76 Priority |
rv_plic.PRIO77 | 0x134 | 4 | Interrupt Source 77 Priority |
rv_plic.PRIO78 | 0x138 | 4 | Interrupt Source 78 Priority |
rv_plic.PRIO79 | 0x13c | 4 | Interrupt Source 79 Priority |
rv_plic.PRIO80 | 0x140 | 4 | Interrupt Source 80 Priority |
rv_plic.PRIO81 | 0x144 | 4 | Interrupt Source 81 Priority |
rv_plic.PRIO82 | 0x148 | 4 | Interrupt Source 82 Priority |
rv_plic.PRIO83 | 0x14c | 4 | Interrupt Source 83 Priority |
rv_plic.PRIO84 | 0x150 | 4 | Interrupt Source 84 Priority |
rv_plic.PRIO85 | 0x154 | 4 | Interrupt Source 85 Priority |
rv_plic.PRIO86 | 0x158 | 4 | Interrupt Source 86 Priority |
rv_plic.PRIO87 | 0x15c | 4 | Interrupt Source 87 Priority |
rv_plic.PRIO88 | 0x160 | 4 | Interrupt Source 88 Priority |
rv_plic.PRIO89 | 0x164 | 4 | Interrupt Source 89 Priority |
rv_plic.PRIO90 | 0x168 | 4 | Interrupt Source 90 Priority |
rv_plic.PRIO91 | 0x16c | 4 | Interrupt Source 91 Priority |
rv_plic.PRIO92 | 0x170 | 4 | Interrupt Source 92 Priority |
rv_plic.PRIO93 | 0x174 | 4 | Interrupt Source 93 Priority |
rv_plic.PRIO94 | 0x178 | 4 | Interrupt Source 94 Priority |
rv_plic.PRIO95 | 0x17c | 4 | Interrupt Source 95 Priority |
rv_plic.PRIO96 | 0x180 | 4 | Interrupt Source 96 Priority |
rv_plic.PRIO97 | 0x184 | 4 | Interrupt Source 97 Priority |
rv_plic.PRIO98 | 0x188 | 4 | Interrupt Source 98 Priority |
rv_plic.PRIO99 | 0x18c | 4 | Interrupt Source 99 Priority |
rv_plic.PRIO100 | 0x190 | 4 | Interrupt Source 100 Priority |
rv_plic.PRIO101 | 0x194 | 4 | Interrupt Source 101 Priority |
rv_plic.PRIO102 | 0x198 | 4 | Interrupt Source 102 Priority |
rv_plic.PRIO103 | 0x19c | 4 | Interrupt Source 103 Priority |
rv_plic.PRIO104 | 0x1a0 | 4 | Interrupt Source 104 Priority |
rv_plic.PRIO105 | 0x1a4 | 4 | Interrupt Source 105 Priority |
rv_plic.PRIO106 | 0x1a8 | 4 | Interrupt Source 106 Priority |
rv_plic.PRIO107 | 0x1ac | 4 | Interrupt Source 107 Priority |
rv_plic.PRIO108 | 0x1b0 | 4 | Interrupt Source 108 Priority |
rv_plic.PRIO109 | 0x1b4 | 4 | Interrupt Source 109 Priority |
rv_plic.PRIO110 | 0x1b8 | 4 | Interrupt Source 110 Priority |
rv_plic.PRIO111 | 0x1bc | 4 | Interrupt Source 111 Priority |
rv_plic.PRIO112 | 0x1c0 | 4 | Interrupt Source 112 Priority |
rv_plic.PRIO113 | 0x1c4 | 4 | Interrupt Source 113 Priority |
rv_plic.PRIO114 | 0x1c8 | 4 | Interrupt Source 114 Priority |
rv_plic.PRIO115 | 0x1cc | 4 | Interrupt Source 115 Priority |
rv_plic.PRIO116 | 0x1d0 | 4 | Interrupt Source 116 Priority |
rv_plic.PRIO117 | 0x1d4 | 4 | Interrupt Source 117 Priority |
rv_plic.PRIO118 | 0x1d8 | 4 | Interrupt Source 118 Priority |
rv_plic.PRIO119 | 0x1dc | 4 | Interrupt Source 119 Priority |
rv_plic.PRIO120 | 0x1e0 | 4 | Interrupt Source 120 Priority |
rv_plic.PRIO121 | 0x1e4 | 4 | Interrupt Source 121 Priority |
rv_plic.PRIO122 | 0x1e8 | 4 | Interrupt Source 122 Priority |
rv_plic.PRIO123 | 0x1ec | 4 | Interrupt Source 123 Priority |
rv_plic.PRIO124 | 0x1f0 | 4 | Interrupt Source 124 Priority |
rv_plic.PRIO125 | 0x1f4 | 4 | Interrupt Source 125 Priority |
rv_plic.PRIO126 | 0x1f8 | 4 | Interrupt Source 126 Priority |
rv_plic.PRIO127 | 0x1fc | 4 | Interrupt Source 127 Priority |
rv_plic.PRIO128 | 0x200 | 4 | Interrupt Source 128 Priority |
rv_plic.PRIO129 | 0x204 | 4 | Interrupt Source 129 Priority |
rv_plic.PRIO130 | 0x208 | 4 | Interrupt Source 130 Priority |
rv_plic.PRIO131 | 0x20c | 4 | Interrupt Source 131 Priority |
rv_plic.PRIO132 | 0x210 | 4 | Interrupt Source 132 Priority |
rv_plic.PRIO133 | 0x214 | 4 | Interrupt Source 133 Priority |
rv_plic.PRIO134 | 0x218 | 4 | Interrupt Source 134 Priority |
rv_plic.PRIO135 | 0x21c | 4 | Interrupt Source 135 Priority |
rv_plic.PRIO136 | 0x220 | 4 | Interrupt Source 136 Priority |
rv_plic.PRIO137 | 0x224 | 4 | Interrupt Source 137 Priority |
rv_plic.PRIO138 | 0x228 | 4 | Interrupt Source 138 Priority |
rv_plic.PRIO139 | 0x22c | 4 | Interrupt Source 139 Priority |
rv_plic.PRIO140 | 0x230 | 4 | Interrupt Source 140 Priority |
rv_plic.PRIO141 | 0x234 | 4 | Interrupt Source 141 Priority |
rv_plic.PRIO142 | 0x238 | 4 | Interrupt Source 142 Priority |
rv_plic.PRIO143 | 0x23c | 4 | Interrupt Source 143 Priority |
rv_plic.PRIO144 | 0x240 | 4 | Interrupt Source 144 Priority |
rv_plic.PRIO145 | 0x244 | 4 | Interrupt Source 145 Priority |
rv_plic.PRIO146 | 0x248 | 4 | Interrupt Source 146 Priority |
rv_plic.PRIO147 | 0x24c | 4 | Interrupt Source 147 Priority |
rv_plic.PRIO148 | 0x250 | 4 | Interrupt Source 148 Priority |
rv_plic.PRIO149 | 0x254 | 4 | Interrupt Source 149 Priority |
rv_plic.PRIO150 | 0x258 | 4 | Interrupt Source 150 Priority |
rv_plic.PRIO151 | 0x25c | 4 | Interrupt Source 151 Priority |
rv_plic.PRIO152 | 0x260 | 4 | Interrupt Source 152 Priority |
rv_plic.PRIO153 | 0x264 | 4 | Interrupt Source 153 Priority |
rv_plic.PRIO154 | 0x268 | 4 | Interrupt Source 154 Priority |
rv_plic.PRIO155 | 0x26c | 4 | Interrupt Source 155 Priority |
rv_plic.PRIO156 | 0x270 | 4 | Interrupt Source 156 Priority |
rv_plic.PRIO157 | 0x274 | 4 | Interrupt Source 157 Priority |
rv_plic.PRIO158 | 0x278 | 4 | Interrupt Source 158 Priority |
rv_plic.PRIO159 | 0x27c | 4 | Interrupt Source 159 Priority |
rv_plic.PRIO160 | 0x280 | 4 | Interrupt Source 160 Priority |
rv_plic.PRIO161 | 0x284 | 4 | Interrupt Source 161 Priority |
rv_plic.PRIO162 | 0x288 | 4 | Interrupt Source 162 Priority |
rv_plic.PRIO163 | 0x28c | 4 | Interrupt Source 163 Priority |
rv_plic.PRIO164 | 0x290 | 4 | Interrupt Source 164 Priority |
rv_plic.PRIO165 | 0x294 | 4 | Interrupt Source 165 Priority |
rv_plic.PRIO166 | 0x298 | 4 | Interrupt Source 166 Priority |
rv_plic.PRIO167 | 0x29c | 4 | Interrupt Source 167 Priority |
rv_plic.PRIO168 | 0x2a0 | 4 | Interrupt Source 168 Priority |
rv_plic.PRIO169 | 0x2a4 | 4 | Interrupt Source 169 Priority |
rv_plic.PRIO170 | 0x2a8 | 4 | Interrupt Source 170 Priority |
rv_plic.PRIO171 | 0x2ac | 4 | Interrupt Source 171 Priority |
rv_plic.PRIO172 | 0x2b0 | 4 | Interrupt Source 172 Priority |
rv_plic.PRIO173 | 0x2b4 | 4 | Interrupt Source 173 Priority |
rv_plic.PRIO174 | 0x2b8 | 4 | Interrupt Source 174 Priority |
rv_plic.PRIO175 | 0x2bc | 4 | Interrupt Source 175 Priority |
rv_plic.PRIO176 | 0x2c0 | 4 | Interrupt Source 176 Priority |
rv_plic.PRIO177 | 0x2c4 | 4 | Interrupt Source 177 Priority |
rv_plic.PRIO178 | 0x2c8 | 4 | Interrupt Source 178 Priority |
rv_plic.PRIO179 | 0x2cc | 4 | Interrupt Source 179 Priority |
rv_plic.PRIO180 | 0x2d0 | 4 | Interrupt Source 180 Priority |
rv_plic.PRIO181 | 0x2d4 | 4 | Interrupt Source 181 Priority |
rv_plic.PRIO182 | 0x2d8 | 4 | Interrupt Source 182 Priority |
rv_plic.PRIO183 | 0x2dc | 4 | Interrupt Source 183 Priority |
rv_plic.PRIO184 | 0x2e0 | 4 | Interrupt Source 184 Priority |
rv_plic.IP_0 | 0x1000 | 4 | Interrupt Pending |
rv_plic.IP_1 | 0x1004 | 4 | Interrupt Pending |
rv_plic.IP_2 | 0x1008 | 4 | Interrupt Pending |
rv_plic.IP_3 | 0x100c | 4 | Interrupt Pending |
rv_plic.IP_4 | 0x1010 | 4 | Interrupt Pending |
rv_plic.IP_5 | 0x1014 | 4 | Interrupt Pending |
rv_plic.IE0_0 | 0x2000 | 4 | Interrupt Enable for Target 0 |
rv_plic.IE0_1 | 0x2004 | 4 | Interrupt Enable for Target 0 |
rv_plic.IE0_2 | 0x2008 | 4 | Interrupt Enable for Target 0 |
rv_plic.IE0_3 | 0x200c | 4 | Interrupt Enable for Target 0 |
rv_plic.IE0_4 | 0x2010 | 4 | Interrupt Enable for Target 0 |
rv_plic.IE0_5 | 0x2014 | 4 | Interrupt Enable for Target 0 |
rv_plic.THRESHOLD0 | 0x200000 | 4 | Threshold of priority for Target 0 |
rv_plic.CC0 | 0x200004 | 4 | Claim interrupt by read, complete interrupt by write for Target 0. Value read/written is interrupt ID. Reading a value of 0 means no pending interrupts. |
rv_plic.MSIP0 | 0x4000000 | 4 | msip for Hart 0. Write 1 to here asserts software interrupt for Hart msip_o[0], write 0 to clear. |
rv_plic.ALERT_TEST | 0x4004000 | 4 | Alert Test Register. |
rv_plic.PRIO0 @ 0x0
Interrupt Source 0 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO0 |
rv_plic.PRIO1 @ 0x4
Interrupt Source 1 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO1 |
rv_plic.PRIO2 @ 0x8
Interrupt Source 2 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO2 |
rv_plic.PRIO3 @ 0xc
Interrupt Source 3 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO3 |
rv_plic.PRIO4 @ 0x10
Interrupt Source 4 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO4 |
rv_plic.PRIO5 @ 0x14
Interrupt Source 5 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO5 |
rv_plic.PRIO6 @ 0x18
Interrupt Source 6 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO6 |
rv_plic.PRIO7 @ 0x1c
Interrupt Source 7 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO7 |
rv_plic.PRIO8 @ 0x20
Interrupt Source 8 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO8 |
rv_plic.PRIO9 @ 0x24
Interrupt Source 9 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO9 |
rv_plic.PRIO10 @ 0x28
Interrupt Source 10 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO10 |
rv_plic.PRIO11 @ 0x2c
Interrupt Source 11 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO11 |
rv_plic.PRIO12 @ 0x30
Interrupt Source 12 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO12 |
rv_plic.PRIO13 @ 0x34
Interrupt Source 13 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO13 |
rv_plic.PRIO14 @ 0x38
Interrupt Source 14 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO14 |
rv_plic.PRIO15 @ 0x3c
Interrupt Source 15 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO15 |
rv_plic.PRIO16 @ 0x40
Interrupt Source 16 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO16 |
rv_plic.PRIO17 @ 0x44
Interrupt Source 17 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO17 |
rv_plic.PRIO18 @ 0x48
Interrupt Source 18 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO18 |
rv_plic.PRIO19 @ 0x4c
Interrupt Source 19 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO19 |
rv_plic.PRIO20 @ 0x50
Interrupt Source 20 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO20 |
rv_plic.PRIO21 @ 0x54
Interrupt Source 21 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO21 |
rv_plic.PRIO22 @ 0x58
Interrupt Source 22 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO22 |
rv_plic.PRIO23 @ 0x5c
Interrupt Source 23 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO23 |
rv_plic.PRIO24 @ 0x60
Interrupt Source 24 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO24 |
rv_plic.PRIO25 @ 0x64
Interrupt Source 25 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO25 |
rv_plic.PRIO26 @ 0x68
Interrupt Source 26 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO26 |
rv_plic.PRIO27 @ 0x6c
Interrupt Source 27 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO27 |
rv_plic.PRIO28 @ 0x70
Interrupt Source 28 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO28 |
rv_plic.PRIO29 @ 0x74
Interrupt Source 29 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO29 |
rv_plic.PRIO30 @ 0x78
Interrupt Source 30 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO30 |
rv_plic.PRIO31 @ 0x7c
Interrupt Source 31 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO31 |
rv_plic.PRIO32 @ 0x80
Interrupt Source 32 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO32 |
rv_plic.PRIO33 @ 0x84
Interrupt Source 33 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO33 |
rv_plic.PRIO34 @ 0x88
Interrupt Source 34 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO34 |
rv_plic.PRIO35 @ 0x8c
Interrupt Source 35 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO35 |
rv_plic.PRIO36 @ 0x90
Interrupt Source 36 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO36 |
rv_plic.PRIO37 @ 0x94
Interrupt Source 37 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO37 |
rv_plic.PRIO38 @ 0x98
Interrupt Source 38 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO38 |
rv_plic.PRIO39 @ 0x9c
Interrupt Source 39 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO39 |
rv_plic.PRIO40 @ 0xa0
Interrupt Source 40 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO40 |
rv_plic.PRIO41 @ 0xa4
Interrupt Source 41 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO41 |
rv_plic.PRIO42 @ 0xa8
Interrupt Source 42 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO42 |
rv_plic.PRIO43 @ 0xac
Interrupt Source 43 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO43 |
rv_plic.PRIO44 @ 0xb0
Interrupt Source 44 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO44 |
rv_plic.PRIO45 @ 0xb4
Interrupt Source 45 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO45 |
rv_plic.PRIO46 @ 0xb8
Interrupt Source 46 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO46 |
rv_plic.PRIO47 @ 0xbc
Interrupt Source 47 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO47 |
rv_plic.PRIO48 @ 0xc0
Interrupt Source 48 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO48 |
rv_plic.PRIO49 @ 0xc4
Interrupt Source 49 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO49 |
rv_plic.PRIO50 @ 0xc8
Interrupt Source 50 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO50 |
rv_plic.PRIO51 @ 0xcc
Interrupt Source 51 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO51 |
rv_plic.PRIO52 @ 0xd0
Interrupt Source 52 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO52 |
rv_plic.PRIO53 @ 0xd4
Interrupt Source 53 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO53 |
rv_plic.PRIO54 @ 0xd8
Interrupt Source 54 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO54 |
rv_plic.PRIO55 @ 0xdc
Interrupt Source 55 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO55 |
rv_plic.PRIO56 @ 0xe0
Interrupt Source 56 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO56 |
rv_plic.PRIO57 @ 0xe4
Interrupt Source 57 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO57 |
rv_plic.PRIO58 @ 0xe8
Interrupt Source 58 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO58 |
rv_plic.PRIO59 @ 0xec
Interrupt Source 59 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO59 |
rv_plic.PRIO60 @ 0xf0
Interrupt Source 60 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO60 |
rv_plic.PRIO61 @ 0xf4
Interrupt Source 61 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO61 |
rv_plic.PRIO62 @ 0xf8
Interrupt Source 62 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO62 |
rv_plic.PRIO63 @ 0xfc
Interrupt Source 63 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO63 |
rv_plic.PRIO64 @ 0x100
Interrupt Source 64 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO64 |
rv_plic.PRIO65 @ 0x104
Interrupt Source 65 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO65 |
rv_plic.PRIO66 @ 0x108
Interrupt Source 66 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO66 |
rv_plic.PRIO67 @ 0x10c
Interrupt Source 67 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO67 |
rv_plic.PRIO68 @ 0x110
Interrupt Source 68 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO68 |
rv_plic.PRIO69 @ 0x114
Interrupt Source 69 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO69 |
rv_plic.PRIO70 @ 0x118
Interrupt Source 70 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO70 |
rv_plic.PRIO71 @ 0x11c
Interrupt Source 71 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO71 |
rv_plic.PRIO72 @ 0x120
Interrupt Source 72 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO72 |
rv_plic.PRIO73 @ 0x124
Interrupt Source 73 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO73 |
rv_plic.PRIO74 @ 0x128
Interrupt Source 74 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO74 |
rv_plic.PRIO75 @ 0x12c
Interrupt Source 75 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO75 |
rv_plic.PRIO76 @ 0x130
Interrupt Source 76 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO76 |
rv_plic.PRIO77 @ 0x134
Interrupt Source 77 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO77 |
rv_plic.PRIO78 @ 0x138
Interrupt Source 78 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO78 |
rv_plic.PRIO79 @ 0x13c
Interrupt Source 79 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO79 |
rv_plic.PRIO80 @ 0x140
Interrupt Source 80 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO80 |
rv_plic.PRIO81 @ 0x144
Interrupt Source 81 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO81 |
rv_plic.PRIO82 @ 0x148
Interrupt Source 82 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO82 |
rv_plic.PRIO83 @ 0x14c
Interrupt Source 83 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO83 |
rv_plic.PRIO84 @ 0x150
Interrupt Source 84 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO84 |
rv_plic.PRIO85 @ 0x154
Interrupt Source 85 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO85 |
rv_plic.PRIO86 @ 0x158
Interrupt Source 86 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO86 |
rv_plic.PRIO87 @ 0x15c
Interrupt Source 87 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO87 |
rv_plic.PRIO88 @ 0x160
Interrupt Source 88 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO88 |
rv_plic.PRIO89 @ 0x164
Interrupt Source 89 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO89 |
rv_plic.PRIO90 @ 0x168
Interrupt Source 90 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO90 |
rv_plic.PRIO91 @ 0x16c
Interrupt Source 91 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO91 |
rv_plic.PRIO92 @ 0x170
Interrupt Source 92 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO92 |
rv_plic.PRIO93 @ 0x174
Interrupt Source 93 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO93 |
rv_plic.PRIO94 @ 0x178
Interrupt Source 94 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO94 |
rv_plic.PRIO95 @ 0x17c
Interrupt Source 95 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO95 |
rv_plic.PRIO96 @ 0x180
Interrupt Source 96 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO96 |
rv_plic.PRIO97 @ 0x184
Interrupt Source 97 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO97 |
rv_plic.PRIO98 @ 0x188
Interrupt Source 98 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO98 |
rv_plic.PRIO99 @ 0x18c
Interrupt Source 99 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO99 |
rv_plic.PRIO100 @ 0x190
Interrupt Source 100 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO100 |
rv_plic.PRIO101 @ 0x194
Interrupt Source 101 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO101 |
rv_plic.PRIO102 @ 0x198
Interrupt Source 102 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO102 |
rv_plic.PRIO103 @ 0x19c
Interrupt Source 103 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO103 |
rv_plic.PRIO104 @ 0x1a0
Interrupt Source 104 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO104 |
rv_plic.PRIO105 @ 0x1a4
Interrupt Source 105 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO105 |
rv_plic.PRIO106 @ 0x1a8
Interrupt Source 106 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO106 |
rv_plic.PRIO107 @ 0x1ac
Interrupt Source 107 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO107 |
rv_plic.PRIO108 @ 0x1b0
Interrupt Source 108 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO108 |
rv_plic.PRIO109 @ 0x1b4
Interrupt Source 109 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO109 |
rv_plic.PRIO110 @ 0x1b8
Interrupt Source 110 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO110 |
rv_plic.PRIO111 @ 0x1bc
Interrupt Source 111 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO111 |
rv_plic.PRIO112 @ 0x1c0
Interrupt Source 112 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO112 |
rv_plic.PRIO113 @ 0x1c4
Interrupt Source 113 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO113 |
rv_plic.PRIO114 @ 0x1c8
Interrupt Source 114 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO114 |
rv_plic.PRIO115 @ 0x1cc
Interrupt Source 115 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO115 |
rv_plic.PRIO116 @ 0x1d0
Interrupt Source 116 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO116 |
rv_plic.PRIO117 @ 0x1d4
Interrupt Source 117 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO117 |
rv_plic.PRIO118 @ 0x1d8
Interrupt Source 118 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO118 |
rv_plic.PRIO119 @ 0x1dc
Interrupt Source 119 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO119 |
rv_plic.PRIO120 @ 0x1e0
Interrupt Source 120 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO120 |
rv_plic.PRIO121 @ 0x1e4
Interrupt Source 121 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO121 |
rv_plic.PRIO122 @ 0x1e8
Interrupt Source 122 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO122 |
rv_plic.PRIO123 @ 0x1ec
Interrupt Source 123 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO123 |
rv_plic.PRIO124 @ 0x1f0
Interrupt Source 124 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO124 |
rv_plic.PRIO125 @ 0x1f4
Interrupt Source 125 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO125 |
rv_plic.PRIO126 @ 0x1f8
Interrupt Source 126 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO126 |
rv_plic.PRIO127 @ 0x1fc
Interrupt Source 127 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO127 |
rv_plic.PRIO128 @ 0x200
Interrupt Source 128 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO128 |
rv_plic.PRIO129 @ 0x204
Interrupt Source 129 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO129 |
rv_plic.PRIO130 @ 0x208
Interrupt Source 130 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO130 |
rv_plic.PRIO131 @ 0x20c
Interrupt Source 131 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO131 |
rv_plic.PRIO132 @ 0x210
Interrupt Source 132 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO132 |
rv_plic.PRIO133 @ 0x214
Interrupt Source 133 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO133 |
rv_plic.PRIO134 @ 0x218
Interrupt Source 134 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO134 |
rv_plic.PRIO135 @ 0x21c
Interrupt Source 135 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO135 |
rv_plic.PRIO136 @ 0x220
Interrupt Source 136 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO136 |
rv_plic.PRIO137 @ 0x224
Interrupt Source 137 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO137 |
rv_plic.PRIO138 @ 0x228
Interrupt Source 138 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO138 |
rv_plic.PRIO139 @ 0x22c
Interrupt Source 139 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO139 |
rv_plic.PRIO140 @ 0x230
Interrupt Source 140 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO140 |
rv_plic.PRIO141 @ 0x234
Interrupt Source 141 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO141 |
rv_plic.PRIO142 @ 0x238
Interrupt Source 142 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO142 |
rv_plic.PRIO143 @ 0x23c
Interrupt Source 143 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO143 |
rv_plic.PRIO144 @ 0x240
Interrupt Source 144 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO144 |
rv_plic.PRIO145 @ 0x244
Interrupt Source 145 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO145 |
rv_plic.PRIO146 @ 0x248
Interrupt Source 146 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO146 |
rv_plic.PRIO147 @ 0x24c
Interrupt Source 147 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO147 |
rv_plic.PRIO148 @ 0x250
Interrupt Source 148 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO148 |
rv_plic.PRIO149 @ 0x254
Interrupt Source 149 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO149 |
rv_plic.PRIO150 @ 0x258
Interrupt Source 150 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO150 |
rv_plic.PRIO151 @ 0x25c
Interrupt Source 151 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO151 |
rv_plic.PRIO152 @ 0x260
Interrupt Source 152 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO152 |
rv_plic.PRIO153 @ 0x264
Interrupt Source 153 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO153 |
rv_plic.PRIO154 @ 0x268
Interrupt Source 154 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO154 |
rv_plic.PRIO155 @ 0x26c
Interrupt Source 155 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO155 |
rv_plic.PRIO156 @ 0x270
Interrupt Source 156 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO156 |
rv_plic.PRIO157 @ 0x274
Interrupt Source 157 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO157 |
rv_plic.PRIO158 @ 0x278
Interrupt Source 158 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO158 |
rv_plic.PRIO159 @ 0x27c
Interrupt Source 159 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO159 |
rv_plic.PRIO160 @ 0x280
Interrupt Source 160 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO160 |
rv_plic.PRIO161 @ 0x284
Interrupt Source 161 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO161 |
rv_plic.PRIO162 @ 0x288
Interrupt Source 162 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO162 |
rv_plic.PRIO163 @ 0x28c
Interrupt Source 163 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO163 |
rv_plic.PRIO164 @ 0x290
Interrupt Source 164 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO164 |
rv_plic.PRIO165 @ 0x294
Interrupt Source 165 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO165 |
rv_plic.PRIO166 @ 0x298
Interrupt Source 166 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO166 |
rv_plic.PRIO167 @ 0x29c
Interrupt Source 167 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO167 |
rv_plic.PRIO168 @ 0x2a0
Interrupt Source 168 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO168 |
rv_plic.PRIO169 @ 0x2a4
Interrupt Source 169 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO169 |
rv_plic.PRIO170 @ 0x2a8
Interrupt Source 170 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO170 |
rv_plic.PRIO171 @ 0x2ac
Interrupt Source 171 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO171 |
rv_plic.PRIO172 @ 0x2b0
Interrupt Source 172 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO172 |
rv_plic.PRIO173 @ 0x2b4
Interrupt Source 173 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO173 |
rv_plic.PRIO174 @ 0x2b8
Interrupt Source 174 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO174 |
rv_plic.PRIO175 @ 0x2bc
Interrupt Source 175 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO175 |
rv_plic.PRIO176 @ 0x2c0
Interrupt Source 176 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO176 |
rv_plic.PRIO177 @ 0x2c4
Interrupt Source 177 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO177 |
rv_plic.PRIO178 @ 0x2c8
Interrupt Source 178 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO178 |
rv_plic.PRIO179 @ 0x2cc
Interrupt Source 179 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO179 |
rv_plic.PRIO180 @ 0x2d0
Interrupt Source 180 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO180 |
rv_plic.PRIO181 @ 0x2d4
Interrupt Source 181 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO181 |
rv_plic.PRIO182 @ 0x2d8
Interrupt Source 182 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO182 |
rv_plic.PRIO183 @ 0x2dc
Interrupt Source 183 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO183 |
rv_plic.PRIO184 @ 0x2e0
Interrupt Source 184 Priority Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | PRIO184 |
rv_plic.IP_0 @ 0x1000
Interrupt Pending Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | ro | 0x0 | P_0 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | ro | 0x0 | P_1 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | ro | 0x0 | P_2 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | ro | 0x0 | P_3 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | ro | 0x0 | P_4 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | ro | 0x0 | P_5 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | ro | 0x0 | P_6 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | ro | 0x0 | P_7 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | ro | 0x0 | P_8 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | ro | 0x0 | P_9 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | ro | 0x0 | P_10 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | ro | 0x0 | P_11 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | ro | 0x0 | P_12 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | ro | 0x0 | P_13 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | ro | 0x0 | P_14 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | ro | 0x0 | P_15 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | ro | 0x0 | P_16 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | ro | 0x0 | P_17 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | ro | 0x0 | P_18 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | ro | 0x0 | P_19 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | ro | 0x0 | P_20 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | ro | 0x0 | P_21 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | ro | 0x0 | P_22 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | ro | 0x0 | P_23 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | ro | 0x0 | P_24 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | ro | 0x0 | P_25 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | ro | 0x0 | P_26 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | ro | 0x0 | P_27 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | ro | 0x0 | P_28 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | ro | 0x0 | P_29 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | ro | 0x0 | P_30 | Interrupt Pending of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | ro | 0x0 | P_31 | Interrupt Pending of Source |
rv_plic.IP_1 @ 0x1004
Interrupt Pending Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | ro | 0x0 | P_32 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | ro | 0x0 | P_33 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | ro | 0x0 | P_34 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | ro | 0x0 | P_35 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | ro | 0x0 | P_36 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | ro | 0x0 | P_37 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | ro | 0x0 | P_38 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | ro | 0x0 | P_39 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | ro | 0x0 | P_40 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | ro | 0x0 | P_41 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | ro | 0x0 | P_42 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | ro | 0x0 | P_43 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | ro | 0x0 | P_44 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | ro | 0x0 | P_45 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | ro | 0x0 | P_46 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | ro | 0x0 | P_47 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | ro | 0x0 | P_48 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | ro | 0x0 | P_49 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | ro | 0x0 | P_50 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | ro | 0x0 | P_51 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | ro | 0x0 | P_52 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | ro | 0x0 | P_53 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | ro | 0x0 | P_54 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | ro | 0x0 | P_55 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | ro | 0x0 | P_56 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | ro | 0x0 | P_57 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | ro | 0x0 | P_58 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | ro | 0x0 | P_59 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | ro | 0x0 | P_60 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | ro | 0x0 | P_61 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | ro | 0x0 | P_62 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | ro | 0x0 | P_63 | For RV_PLIC1 |
rv_plic.IP_2 @ 0x1008
Interrupt Pending Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | ro | 0x0 | P_64 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | ro | 0x0 | P_65 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | ro | 0x0 | P_66 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | ro | 0x0 | P_67 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | ro | 0x0 | P_68 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | ro | 0x0 | P_69 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | ro | 0x0 | P_70 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | ro | 0x0 | P_71 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | ro | 0x0 | P_72 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | ro | 0x0 | P_73 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | ro | 0x0 | P_74 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | ro | 0x0 | P_75 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | ro | 0x0 | P_76 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | ro | 0x0 | P_77 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | ro | 0x0 | P_78 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | ro | 0x0 | P_79 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | ro | 0x0 | P_80 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | ro | 0x0 | P_81 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | ro | 0x0 | P_82 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | ro | 0x0 | P_83 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | ro | 0x0 | P_84 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | ro | 0x0 | P_85 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | ro | 0x0 | P_86 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | ro | 0x0 | P_87 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | ro | 0x0 | P_88 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | ro | 0x0 | P_89 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | ro | 0x0 | P_90 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | ro | 0x0 | P_91 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | ro | 0x0 | P_92 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | ro | 0x0 | P_93 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | ro | 0x0 | P_94 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | ro | 0x0 | P_95 | For RV_PLIC2 |
rv_plic.IP_3 @ 0x100c
Interrupt Pending Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | ro | 0x0 | P_96 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | ro | 0x0 | P_97 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | ro | 0x0 | P_98 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | ro | 0x0 | P_99 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | ro | 0x0 | P_100 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | ro | 0x0 | P_101 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | ro | 0x0 | P_102 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | ro | 0x0 | P_103 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | ro | 0x0 | P_104 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | ro | 0x0 | P_105 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | ro | 0x0 | P_106 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | ro | 0x0 | P_107 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | ro | 0x0 | P_108 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | ro | 0x0 | P_109 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | ro | 0x0 | P_110 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | ro | 0x0 | P_111 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | ro | 0x0 | P_112 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | ro | 0x0 | P_113 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | ro | 0x0 | P_114 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | ro | 0x0 | P_115 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | ro | 0x0 | P_116 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | ro | 0x0 | P_117 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | ro | 0x0 | P_118 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | ro | 0x0 | P_119 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | ro | 0x0 | P_120 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | ro | 0x0 | P_121 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | ro | 0x0 | P_122 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | ro | 0x0 | P_123 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | ro | 0x0 | P_124 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | ro | 0x0 | P_125 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | ro | 0x0 | P_126 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | ro | 0x0 | P_127 | For RV_PLIC3 |
rv_plic.IP_4 @ 0x1010
Interrupt Pending Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | ro | 0x0 | P_128 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | ro | 0x0 | P_129 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | ro | 0x0 | P_130 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | ro | 0x0 | P_131 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | ro | 0x0 | P_132 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | ro | 0x0 | P_133 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | ro | 0x0 | P_134 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | ro | 0x0 | P_135 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | ro | 0x0 | P_136 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | ro | 0x0 | P_137 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | ro | 0x0 | P_138 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | ro | 0x0 | P_139 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | ro | 0x0 | P_140 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | ro | 0x0 | P_141 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | ro | 0x0 | P_142 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | ro | 0x0 | P_143 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | ro | 0x0 | P_144 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | ro | 0x0 | P_145 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | ro | 0x0 | P_146 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | ro | 0x0 | P_147 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | ro | 0x0 | P_148 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | ro | 0x0 | P_149 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | ro | 0x0 | P_150 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | ro | 0x0 | P_151 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | ro | 0x0 | P_152 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | ro | 0x0 | P_153 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | ro | 0x0 | P_154 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | ro | 0x0 | P_155 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | ro | 0x0 | P_156 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | ro | 0x0 | P_157 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | ro | 0x0 | P_158 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | ro | 0x0 | P_159 | For RV_PLIC4 |
rv_plic.IP_5 @ 0x1014
Interrupt Pending Reset default = 0x0, mask 0x1ffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | ro | 0x0 | P_160 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | ro | 0x0 | P_161 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | ro | 0x0 | P_162 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | ro | 0x0 | P_163 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | ro | 0x0 | P_164 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | ro | 0x0 | P_165 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | ro | 0x0 | P_166 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | ro | 0x0 | P_167 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | ro | 0x0 | P_168 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | ro | 0x0 | P_169 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | ro | 0x0 | P_170 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | ro | 0x0 | P_171 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | ro | 0x0 | P_172 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | ro | 0x0 | P_173 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | ro | 0x0 | P_174 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | ro | 0x0 | P_175 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | ro | 0x0 | P_176 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | ro | 0x0 | P_177 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | ro | 0x0 | P_178 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | ro | 0x0 | P_179 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | ro | 0x0 | P_180 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | ro | 0x0 | P_181 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | ro | 0x0 | P_182 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | ro | 0x0 | P_183 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | ro | 0x0 | P_184 | For RV_PLIC5 |
rv_plic.IE0_0 @ 0x2000
Interrupt Enable for Target 0 Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | rw | 0x0 | E_0 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | rw | 0x0 | E_1 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | rw | 0x0 | E_2 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | rw | 0x0 | E_3 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | rw | 0x0 | E_4 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | rw | 0x0 | E_5 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | rw | 0x0 | E_6 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | rw | 0x0 | E_7 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | rw | 0x0 | E_8 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | rw | 0x0 | E_9 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | rw | 0x0 | E_10 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | rw | 0x0 | E_11 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | rw | 0x0 | E_12 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | rw | 0x0 | E_13 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | rw | 0x0 | E_14 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | rw | 0x0 | E_15 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | rw | 0x0 | E_16 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | rw | 0x0 | E_17 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | rw | 0x0 | E_18 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | rw | 0x0 | E_19 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | rw | 0x0 | E_20 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | rw | 0x0 | E_21 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | rw | 0x0 | E_22 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | rw | 0x0 | E_23 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | rw | 0x0 | E_24 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | rw | 0x0 | E_25 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | rw | 0x0 | E_26 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | rw | 0x0 | E_27 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | rw | 0x0 | E_28 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | rw | 0x0 | E_29 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | rw | 0x0 | E_30 | Interrupt Enable of Source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | rw | 0x0 | E_31 | Interrupt Enable of Source |
rv_plic.IE0_1 @ 0x2004
Interrupt Enable for Target 0 Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | rw | 0x0 | E_32 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | rw | 0x0 | E_33 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | rw | 0x0 | E_34 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | rw | 0x0 | E_35 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | rw | 0x0 | E_36 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | rw | 0x0 | E_37 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | rw | 0x0 | E_38 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | rw | 0x0 | E_39 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | rw | 0x0 | E_40 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | rw | 0x0 | E_41 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | rw | 0x0 | E_42 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | rw | 0x0 | E_43 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | rw | 0x0 | E_44 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | rw | 0x0 | E_45 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | rw | 0x0 | E_46 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | rw | 0x0 | E_47 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | rw | 0x0 | E_48 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | rw | 0x0 | E_49 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | rw | 0x0 | E_50 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | rw | 0x0 | E_51 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | rw | 0x0 | E_52 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | rw | 0x0 | E_53 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | rw | 0x0 | E_54 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | rw | 0x0 | E_55 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | rw | 0x0 | E_56 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | rw | 0x0 | E_57 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | rw | 0x0 | E_58 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | rw | 0x0 | E_59 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | rw | 0x0 | E_60 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | rw | 0x0 | E_61 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | rw | 0x0 | E_62 | For RV_PLIC1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | rw | 0x0 | E_63 | For RV_PLIC1 |
rv_plic.IE0_2 @ 0x2008
Interrupt Enable for Target 0 Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | rw | 0x0 | E_64 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | rw | 0x0 | E_65 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | rw | 0x0 | E_66 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | rw | 0x0 | E_67 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | rw | 0x0 | E_68 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | rw | 0x0 | E_69 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | rw | 0x0 | E_70 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | rw | 0x0 | E_71 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | rw | 0x0 | E_72 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | rw | 0x0 | E_73 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | rw | 0x0 | E_74 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | rw | 0x0 | E_75 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | rw | 0x0 | E_76 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | rw | 0x0 | E_77 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | rw | 0x0 | E_78 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | rw | 0x0 | E_79 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | rw | 0x0 | E_80 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | rw | 0x0 | E_81 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | rw | 0x0 | E_82 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | rw | 0x0 | E_83 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | rw | 0x0 | E_84 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | rw | 0x0 | E_85 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | rw | 0x0 | E_86 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | rw | 0x0 | E_87 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | rw | 0x0 | E_88 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | rw | 0x0 | E_89 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | rw | 0x0 | E_90 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | rw | 0x0 | E_91 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | rw | 0x0 | E_92 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | rw | 0x0 | E_93 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | rw | 0x0 | E_94 | For RV_PLIC2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | rw | 0x0 | E_95 | For RV_PLIC2 |
rv_plic.IE0_3 @ 0x200c
Interrupt Enable for Target 0 Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | rw | 0x0 | E_96 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | rw | 0x0 | E_97 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | rw | 0x0 | E_98 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | rw | 0x0 | E_99 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | rw | 0x0 | E_100 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | rw | 0x0 | E_101 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | rw | 0x0 | E_102 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | rw | 0x0 | E_103 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | rw | 0x0 | E_104 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | rw | 0x0 | E_105 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | rw | 0x0 | E_106 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | rw | 0x0 | E_107 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | rw | 0x0 | E_108 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | rw | 0x0 | E_109 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | rw | 0x0 | E_110 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | rw | 0x0 | E_111 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | rw | 0x0 | E_112 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | rw | 0x0 | E_113 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | rw | 0x0 | E_114 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | rw | 0x0 | E_115 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | rw | 0x0 | E_116 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | rw | 0x0 | E_117 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | rw | 0x0 | E_118 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | rw | 0x0 | E_119 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | rw | 0x0 | E_120 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | rw | 0x0 | E_121 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | rw | 0x0 | E_122 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | rw | 0x0 | E_123 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | rw | 0x0 | E_124 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | rw | 0x0 | E_125 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | rw | 0x0 | E_126 | For RV_PLIC3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | rw | 0x0 | E_127 | For RV_PLIC3 |
rv_plic.IE0_4 @ 0x2010
Interrupt Enable for Target 0 Reset default = 0x0, mask 0xffffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | rw | 0x0 | E_128 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | rw | 0x0 | E_129 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | rw | 0x0 | E_130 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | rw | 0x0 | E_131 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | rw | 0x0 | E_132 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | rw | 0x0 | E_133 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | rw | 0x0 | E_134 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | rw | 0x0 | E_135 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | rw | 0x0 | E_136 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | rw | 0x0 | E_137 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | rw | 0x0 | E_138 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | rw | 0x0 | E_139 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | rw | 0x0 | E_140 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | rw | 0x0 | E_141 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | rw | 0x0 | E_142 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | rw | 0x0 | E_143 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | rw | 0x0 | E_144 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | rw | 0x0 | E_145 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | rw | 0x0 | E_146 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | rw | 0x0 | E_147 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | rw | 0x0 | E_148 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | rw | 0x0 | E_149 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | rw | 0x0 | E_150 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | rw | 0x0 | E_151 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | rw | 0x0 | E_152 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
25 | rw | 0x0 | E_153 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
26 | rw | 0x0 | E_154 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
27 | rw | 0x0 | E_155 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
28 | rw | 0x0 | E_156 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
29 | rw | 0x0 | E_157 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
30 | rw | 0x0 | E_158 | For RV_PLIC4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
31 | rw | 0x0 | E_159 | For RV_PLIC4 |
rv_plic.IE0_5 @ 0x2014
Interrupt Enable for Target 0 Reset default = 0x0, mask 0x1ffffff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | rw | 0x0 | E_160 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1 | rw | 0x0 | E_161 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
2 | rw | 0x0 | E_162 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3 | rw | 0x0 | E_163 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
4 | rw | 0x0 | E_164 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
5 | rw | 0x0 | E_165 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
6 | rw | 0x0 | E_166 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7 | rw | 0x0 | E_167 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
8 | rw | 0x0 | E_168 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
9 | rw | 0x0 | E_169 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
10 | rw | 0x0 | E_170 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
11 | rw | 0x0 | E_171 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
12 | rw | 0x0 | E_172 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
13 | rw | 0x0 | E_173 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
14 | rw | 0x0 | E_174 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
15 | rw | 0x0 | E_175 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
16 | rw | 0x0 | E_176 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
17 | rw | 0x0 | E_177 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
18 | rw | 0x0 | E_178 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
19 | rw | 0x0 | E_179 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
20 | rw | 0x0 | E_180 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
21 | rw | 0x0 | E_181 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
22 | rw | 0x0 | E_182 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
23 | rw | 0x0 | E_183 | For RV_PLIC5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
24 | rw | 0x0 | E_184 | For RV_PLIC5 |
rv_plic.THRESHOLD0 @ 0x200000
Threshold of priority for Target 0 Reset default = 0x0, mask 0x3
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
1:0 | rw | 0x0 | THRESHOLD0 |
rv_plic.CC0 @ 0x200004
Claim interrupt by read, complete interrupt by write for Target 0. Value read/written is interrupt ID. Reading a value of 0 means no pending interrupts. Reset default = 0x0, mask 0xff
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
7:0 | rw | x | CC0 |
rv_plic.MSIP0 @ 0x4000000
msip for Hart 0. Write 1 to here asserts software interrupt for Hart msip_o[0], write 0 to clear. Reset default = 0x0, mask 0x1
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | rw | 0x0 | MSIP0 | Software Interrupt Pending register |
rv_plic.ALERT_TEST @ 0x4004000
Alert Test Register. Reset default = 0x0, mask 0x1
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Bits | Type | Reset | Name | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0 | wo | x | fatal_fault | 'Write 1 to trigger one alert event of this kind.' |