#![allow(non_snake_case, non_upper_case_globals)]
#![allow(non_camel_case_types)]
#[cfg(not(feature = "nosync"))]
pub use crate::cortex_m::peripherals::tpiu::Instance;
pub use crate::cortex_m::peripherals::tpiu::{RegisterBlock, ResetValues};
pub use crate::cortex_m::peripherals::tpiu::{ACPR, CSPSR, LAR, LSR, SPPR, SSPSR, TYPE};
pub mod TPIU {
use super::ResetValues;
#[cfg(not(feature = "nosync"))]
use super::Instance;
#[cfg(not(feature = "nosync"))]
const INSTANCE: Instance = Instance {
addr: 0xe0040000,
_marker: ::core::marker::PhantomData,
};
pub const reset: ResetValues = ResetValues {
SSPSR: 0x00000000,
CSPSR: 0x00000000,
ACPR: 0x00000000,
SPPR: 0x00000000,
TYPE: 0x00000000,
LSR: 0x00000000,
LAR: 0x00000000,
};
#[cfg(not(feature = "nosync"))]
#[allow(renamed_and_removed_lints)]
#[allow(private_no_mangle_statics)]
#[no_mangle]
static mut TPIU_TAKEN: bool = false;
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn take() -> Option<Instance> {
external_cortex_m::interrupt::free(|_| unsafe {
if TPIU_TAKEN {
None
} else {
TPIU_TAKEN = true;
Some(INSTANCE)
}
})
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub fn release(inst: Instance) {
external_cortex_m::interrupt::free(|_| unsafe {
if TPIU_TAKEN && inst.addr == INSTANCE.addr {
TPIU_TAKEN = false;
} else {
panic!("Released a peripheral which was not taken");
}
});
}
#[cfg(not(feature = "nosync"))]
#[inline]
pub unsafe fn steal() -> Instance {
TPIU_TAKEN = true;
INSTANCE
}
}
pub const TPIU: *const RegisterBlock = 0xe0040000 as *const _;