-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #252 from rmsyn/riscv/mtvec-csr-macro
riscv: define mtvec CSR with macro helpers
- Loading branch information
Showing
4 changed files
with
85 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,103 @@ | ||
//! mtvec register | ||
/// mtvec register | ||
#[derive(Clone, Copy, Debug)] | ||
pub struct Mtvec { | ||
bits: usize, | ||
use crate::result::{Error, Result}; | ||
|
||
const MASK: usize = usize::MAX; | ||
const TRAP_MASK: usize = 0b11; | ||
|
||
read_write_csr! { | ||
/// mtvec register | ||
Mtvec: 0x305, | ||
mask: MASK, | ||
} | ||
|
||
csr_field_enum! { | ||
/// Trap mode | ||
TrapMode { | ||
default: Direct, | ||
Direct = 0, | ||
Vectored = 1, | ||
} | ||
} | ||
|
||
/// Trap mode | ||
#[derive(Copy, Clone, Debug, Eq, PartialEq)] | ||
pub enum TrapMode { | ||
Direct = 0, | ||
Vectored = 1, | ||
read_write_csr_field! { | ||
Mtvec, | ||
/// Accesses the trap-vector mode. | ||
trap_mode, | ||
TrapMode: [0:1], | ||
} | ||
|
||
impl Mtvec { | ||
/// Returns the contents of the register as raw bits | ||
/// Returns the trap-vector base-address | ||
#[inline] | ||
pub fn bits(&self) -> usize { | ||
self.bits | ||
pub const fn address(&self) -> usize { | ||
self.bits & !TRAP_MASK | ||
} | ||
|
||
/// Returns the trap-vector base-address | ||
/// Sets the trap-vector base-address. | ||
/// | ||
/// # Note | ||
/// | ||
/// Panics if the address is not aligned to 4-bytes. | ||
#[inline] | ||
pub fn address(&self) -> usize { | ||
self.bits - (self.bits & 0b11) | ||
pub fn set_address(&mut self, address: usize) { | ||
self.try_set_address(address).unwrap(); | ||
} | ||
|
||
/// Returns the trap-vector mode | ||
/// Attempts to set the trap-vector base-address. | ||
/// | ||
/// # Note | ||
/// | ||
/// Returns an error if the address is not aligned to 4-bytes. | ||
#[inline] | ||
pub fn trap_mode(&self) -> Option<TrapMode> { | ||
let mode = self.bits & 0b11; | ||
match mode { | ||
0 => Some(TrapMode::Direct), | ||
1 => Some(TrapMode::Vectored), | ||
_ => None, | ||
pub fn try_set_address(&mut self, address: usize) -> Result<()> { | ||
// check for four-byte alignment | ||
if (address & TRAP_MASK) != 0 { | ||
Err(Error::InvalidFieldVariant { | ||
field: "mtvec::address", | ||
value: address, | ||
}) | ||
} else { | ||
self.bits = address | (self.bits & TRAP_MASK); | ||
Ok(()) | ||
} | ||
} | ||
} | ||
|
||
read_csr_as!(Mtvec, 0x305); | ||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
|
||
#[test] | ||
fn test_mtvec() { | ||
let mut m = Mtvec::from_bits(0); | ||
|
||
(1..=usize::BITS) | ||
.map(|r| (((1u128 << r) - 1) as usize) & !TRAP_MASK) | ||
.for_each(|address| { | ||
m.set_address(address); | ||
assert_eq!(m.address(), address); | ||
|
||
write_csr!(0x305); | ||
assert_eq!(m.try_set_address(address), Ok(())); | ||
assert_eq!(m.address(), address); | ||
}); | ||
|
||
/// Writes the CSR | ||
#[inline] | ||
pub unsafe fn write(addr: usize, mode: TrapMode) { | ||
let bits = addr + mode as usize; | ||
_write(bits); | ||
(1..=usize::BITS) | ||
.filter_map(|r| match ((1u128 << r) - 1) as usize { | ||
addr if (addr & TRAP_MASK) != 0 => Some(addr), | ||
_ => None, | ||
}) | ||
.for_each(|address| { | ||
assert_eq!( | ||
m.try_set_address(address), | ||
Err(Error::InvalidFieldVariant { | ||
field: "mtvec::address", | ||
value: address, | ||
}) | ||
); | ||
}); | ||
|
||
test_csr_field!(m, trap_mode: TrapMode::Direct); | ||
test_csr_field!(m, trap_mode: TrapMode::Vectored); | ||
} | ||
} |