Skip to content

Commit 11d93c1

Browse files
committed
fix: plic: detect priority and threshold bits in any cases
We detect them in any situation even when we already know how many bits are there in the T-Head Xuantie core, in case this structure is misused onto other non-Xuantie cores. Signed-off-by: Zhouqi Jiang <[email protected]>
1 parent a65cf4e commit 11d93c1

File tree

1 file changed

+10
-5
lines changed
  • xuantie-riscv/src/peripheral

1 file changed

+10
-5
lines changed

xuantie-riscv/src/peripheral/plic.rs

+10-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ const PLIC_CTRL_OFFSET: usize = 0x01F_FFFC;
1010
const PLIC_CTRL_S_PER_ENABLED: u32 = 0x1;
1111
const PLIC_CTRL_S_PER_DISABLED: u32 = 0x0;
1212
const PLIC_CTRL_S_PER_BIT: u32 = 0x1;
13-
const THEAD_PLIC_PRIORITY_BITS: u32 = 5;
1413

1514
/// Register block for XuanTie Platform Local Interrupt Controller (PLIC).
1615
#[repr(C, align(4096))]
@@ -65,12 +64,15 @@ impl Plic {
6564
}
6665

6766
/// Probe maximum level of priority for interrupt `source`.
67+
// Note: we detect them in any situation even when we already know how many bits
68+
// are there in the T-Head Xuantie core, in case this structure is misused onto
69+
// other non-Xuantie cores.
6870
#[inline]
69-
pub fn probe_priority_bits<S>(&self, _source: S) -> u32
71+
pub fn probe_priority_bits<S>(&self, source: S) -> u32
7072
where
7173
S: InterruptSource,
7274
{
73-
THEAD_PLIC_PRIORITY_BITS
75+
self.inner.probe_priority_bits(source)
7476
}
7577

7678
/// Check if interrupt `source` is pending.
@@ -131,12 +133,15 @@ impl Plic {
131133
}
132134

133135
/// Probe maximum supported threshold value the `context` supports.
136+
// Note: we detect them in any situation even when we already know how many bits
137+
// are there in the T-Head Xuantie core, in case this structure is misused onto
138+
// other non-Xuantie cores.
134139
#[inline]
135-
pub fn probe_threshold_bits<C>(&self, _context: C) -> u32
140+
pub fn probe_threshold_bits<C>(&self, context: C) -> u32
136141
where
137142
C: HartContext,
138143
{
139-
THEAD_PLIC_PRIORITY_BITS
144+
self.inner.probe_threshold_bits(context)
140145
}
141146

142147
/// Claim an interrupt in `context`, returning its source.

0 commit comments

Comments
 (0)