#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::imxrt101::peripherals::csu::Instance;
pub use crate::imxrt101::peripherals::csu::{RegisterBlock, ResetValues};
pub use crate::imxrt101::peripherals::csu::{
CSL0, CSL1, CSL10, CSL11, CSL12, CSL13, CSL14, CSL15, CSL16, CSL17, CSL18, CSL19, CSL2, CSL20,
CSL21, CSL22, CSL23, CSL24, CSL25, CSL26, CSL27, CSL28, CSL29, CSL3, CSL30, CSL31, CSL4, CSL5,
CSL6, CSL7, CSL8, CSL9, HP0, HPCONTROL0, SA,
};
pub mod CSU {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0x400dc000,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
CSL0: 0x00330033,
CSL1: 0x00330033,
CSL2: 0x00330033,
CSL3: 0x00330033,
CSL4: 0x00330033,
CSL5: 0x00330033,
CSL6: 0x00330033,
CSL7: 0x00330033,
CSL8: 0x00330033,
CSL9: 0x00330033,
CSL10: 0x00330033,
CSL11: 0x00330033,
CSL12: 0x00330033,
CSL13: 0x00330033,
CSL14: 0x00330033,
CSL15: 0x00330033,
CSL16: 0x00330033,
CSL17: 0x00330033,
CSL18: 0x00330033,
CSL19: 0x00330033,
CSL20: 0x00330033,
CSL21: 0x00330033,
CSL22: 0x00330033,
CSL23: 0x00330033,
CSL24: 0x00330033,
CSL25: 0x00330033,
CSL26: 0x00330033,
CSL27: 0x00330033,
CSL28: 0x00330033,
CSL29: 0x00330033,
CSL30: 0x00330033,
CSL31: 0x00330033,
HP0: 0x00000000,
SA: 0x00000000,
HPCONTROL0: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut CSU_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if CSU_TAKEN {
None
} else {
CSU_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if CSU_TAKEN && inst.addr == INSTANCE.addr {
CSU_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
CSU_TAKEN = true;
INSTANCE
}
}
pub const CSU: *const RegisterBlock = 0x400dc000 as *const _;