#[allow(clippy::missing_inline_in_public_items)]
#[derive(Clone, Copy, Debug)]
pub struct Control {
bits: u32,
}
impl Control {
#[inline]
pub fn from_bits(bits: u32) -> Self {
Self { bits }
}
#[inline]
pub 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 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 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,
}
}
}
#[allow(clippy::missing_inline_in_public_items)]
#[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
}
}
#[allow(clippy::missing_inline_in_public_items)]
#[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
}
}
#[allow(clippy::missing_inline_in_public_items)]
#[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]
pub fn read() -> Control {
match () {
#[cfg(cortex_m)]
() => {
let r = match () {
#[cfg(feature = "inline-asm")]
() => {
let r: u32;
unsafe { llvm_asm!("mrs $0, CONTROL" : "=r"(r) ::: "volatile") }
r
}
#[cfg(not(feature = "inline-asm"))]
() => unsafe {
extern "C" {
fn __control_r() -> u32;
}
__control_r()
},
};
Control { bits: r }
}
#[cfg(not(cortex_m))]
() => unimplemented!(),
}
}
#[inline]
pub unsafe fn write(_control: Control) {
match () {
#[cfg(cortex_m)]
() => match () {
#[cfg(feature = "inline-asm")]
() => {
let control = _control.bits();
llvm_asm!("msr CONTROL, $0" :: "r"(control) : "memory" : "volatile");
}
#[cfg(not(feature = "inline-asm"))]
() => {
extern "C" {
fn __control_w(bits: u32);
}
__control_w(_control.bits());
}
},
#[cfg(not(cortex_m))]
() => unimplemented!(),
}
}