#[cfg(cortex_m)]
use core::arch::asm;
#[cfg(cortex_m)]
use core::sync::atomic::{Ordering, compiler_fence};
use cortex_m_macros::asm_cfg;
#[derive(Clone, Copy, Debug)]
pub struct Control {
bits: u32,
}
impl Control {
#[inline]
pub const fn from_bits(bits: u32) -> Self {
Self { bits }
}
#[inline]
pub const fn bits(self) -> u32 {
self.bits
}
#[inline]
pub fn npriv(self) -> Npriv {
if self.bits & (1 << 0) == (1 << 0) {
Npriv::Unprivileged
} else {
Npriv::Privileged
}
}
#[inline]
pub fn set_npriv(&mut self, npriv: Npriv) {
let mask = 1 << 0;
match npriv {
Npriv::Unprivileged => self.bits |= mask,
Npriv::Privileged => self.bits &= !mask,
}
}
#[inline]
pub const fn with_npriv(self, npriv: Npriv) -> Self {
let mask = 1 << 0;
let bits = match npriv {
Npriv::Unprivileged => self.bits | mask,
Npriv::Privileged => self.bits & !mask,
};
Self { bits }
}
#[inline]
pub fn spsel(self) -> Spsel {
if self.bits & (1 << 1) == (1 << 1) {
Spsel::Psp
} else {
Spsel::Msp
}
}
#[inline]
pub fn set_spsel(&mut self, spsel: Spsel) {
let mask = 1 << 1;
match spsel {
Spsel::Psp => self.bits |= mask,
Spsel::Msp => self.bits &= !mask,
}
}
#[inline]
pub const fn with_spsel(self, spsel: Spsel) -> Self {
let mask = 1 << 1;
let bits = match spsel {
Spsel::Psp => self.bits | mask,
Spsel::Msp => self.bits & !mask,
};
Self { bits }
}
#[inline]
pub fn fpca(self) -> Fpca {
if self.bits & (1 << 2) == (1 << 2) {
Fpca::Active
} else {
Fpca::NotActive
}
}
#[inline]
pub fn set_fpca(&mut self, fpca: Fpca) {
let mask = 1 << 2;
match fpca {
Fpca::Active => self.bits |= mask,
Fpca::NotActive => self.bits &= !mask,
}
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Npriv {
Privileged,
Unprivileged,
}
impl Npriv {
#[inline]
pub fn is_privileged(self) -> bool {
self == Npriv::Privileged
}
#[inline]
pub fn is_unprivileged(self) -> bool {
self == Npriv::Unprivileged
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Spsel {
Msp,
Psp,
}
impl Spsel {
#[inline]
pub fn is_msp(self) -> bool {
self == Spsel::Msp
}
#[inline]
pub fn is_psp(self) -> bool {
self == Spsel::Psp
}
}
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum Fpca {
Active,
NotActive,
}
impl Fpca {
#[inline]
pub fn is_active(self) -> bool {
self == Fpca::Active
}
#[inline]
pub fn is_not_active(self) -> bool {
self == Fpca::NotActive
}
}
#[inline]
#[asm_cfg(cortex_m)]
pub fn read() -> Control {
let bits;
unsafe { asm!("mrs {}, CONTROL", out(reg) bits, options(nomem, nostack, preserves_flags)) };
Control { bits }
}
#[inline]
#[asm_cfg(cortex_m)]
pub unsafe fn write(control: Control) {
let control = control.bits();
unsafe {
asm!(
"msr CONTROL, {}",
"isb",
in(reg) control,
options(nomem, nostack, preserves_flags),
);
compiler_fence(Ordering::SeqCst);
}
}