|
@@ -79,71 +79,9 @@ impl Mstatus {
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
-/// Reads the CSR
|
|
|
|
-#[inline]
|
|
|
|
-pub fn read() -> Mstatus {
|
|
|
|
- match () {
|
|
|
|
- #[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
|
|
|
|
- () => {
|
|
|
|
- let r: usize;
|
|
|
|
- unsafe {
|
|
|
|
- asm!("csrrs $0, 0x300, x0" : "=r"(r) ::: "volatile");
|
|
|
|
- }
|
|
|
|
- Mstatus { bits: r }
|
|
|
|
- }
|
|
|
|
- #[cfg(not(any(target_arch = "riscv32", target_arch = "riscv64")))]
|
|
|
|
- () => unimplemented!(),
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/// Sets the CSR
|
|
|
|
-#[cfg_attr(not(any(target_arch = "riscv32", target_arch = "riscv64")), allow(unused_variables))]
|
|
|
|
-#[inline]
|
|
|
|
-unsafe fn set(bits: usize) {
|
|
|
|
- match () {
|
|
|
|
- #[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
|
|
|
|
- () => asm!("csrrs x0, 0x300, $0" :: "r"(bits) :: "volatile"),
|
|
|
|
- #[cfg(not(any(target_arch = "riscv32", target_arch = "riscv64")))]
|
|
|
|
- () => unimplemented!(),
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-/// Clears the CSR
|
|
|
|
-#[cfg_attr(not(any(target_arch = "riscv32", target_arch = "riscv64")), allow(unused_variables))]
|
|
|
|
-#[inline]
|
|
|
|
-unsafe fn clear(bits: usize) {
|
|
|
|
- match () {
|
|
|
|
- #[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
|
|
|
|
- () => asm!("csrrc x0, 0x300, $0" :: "r"(bits) :: "volatile"),
|
|
|
|
- #[cfg(not(any(target_arch = "riscv32", target_arch = "riscv64")))]
|
|
|
|
- () => unimplemented!(),
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-macro_rules! set_csr {
|
|
|
|
- ($set_field:ident, $e:expr) => {
|
|
|
|
- #[inline]
|
|
|
|
- pub unsafe fn $set_field() {
|
|
|
|
- set($e);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-macro_rules! clear_csr {
|
|
|
|
- ($clear_field:ident, $e:expr) => {
|
|
|
|
- #[inline]
|
|
|
|
- pub unsafe fn $clear_field() {
|
|
|
|
- clear($e);
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-macro_rules! set_clear_csr {
|
|
|
|
- ($set_field:ident, $clear_field:ident, $e:expr) => {
|
|
|
|
- set_csr!($set_field, $e);
|
|
|
|
- clear_csr!($clear_field, $e);
|
|
|
|
- }
|
|
|
|
-}
|
|
|
|
|
|
+read_csr_as!(Mstatus, 0x300);
|
|
|
|
+set!(0x300);
|
|
|
|
+clear!(0x300);
|
|
|
|
|
|
/// User Interrupt Enable
|
|
/// User Interrupt Enable
|
|
set_clear_csr!(set_uie, clear_uie, 1 << 0);
|
|
set_clear_csr!(set_uie, clear_uie, 1 << 0);
|
|
@@ -160,10 +98,10 @@ set_csr!(set_mpie, 1 << 7);
|
|
/// Supervisor Previous Privilege Mode
|
|
/// Supervisor Previous Privilege Mode
|
|
#[inline]
|
|
#[inline]
|
|
pub unsafe fn set_spp(spp: SPP) {
|
|
pub unsafe fn set_spp(spp: SPP) {
|
|
- set((spp as usize) << 8);
|
|
|
|
|
|
+ _set((spp as usize) << 8);
|
|
}
|
|
}
|
|
/// Machine Previous Privilege Mode
|
|
/// Machine Previous Privilege Mode
|
|
#[inline]
|
|
#[inline]
|
|
pub unsafe fn set_mpp(mpp: MPP) {
|
|
pub unsafe fn set_mpp(mpp: MPP) {
|
|
- set((mpp as usize) << 11);
|
|
|
|
|
|
+ _set((mpp as usize) << 11);
|
|
}
|
|
}
|