[−][src]Struct cortex_m::peripheral::CPUID
CPUID
Implementations
impl CPUID
[src]
pub fn select_cache(&mut self, level: u8, ind: CsselrCacheType)
[src]
Selects the current CCSIDR
level
: the required cache level minus 1, e.g. 0 for L1, 1 for L2ind
: select instruction cache or data/unified cache
level
is masked to be between 0 and 7.
pub fn cache_num_sets_ways(
&mut self,
level: u8,
ind: CsselrCacheType
) -> (u16, u16)
[src]
&mut self,
level: u8,
ind: CsselrCacheType
) -> (u16, u16)
Returns the number of sets and ways in the selected cache
pub fn cache_dminline() -> u32
[src]
Returns log2 of the number of words in the smallest cache line of all the data cache and unified caches that are controlled by the processor.
This is the DminLine
field of the CTR register.
pub fn cache_iminline() -> u32
[src]
Returns log2 of the number of words in the smallest cache line of all the instruction caches that are controlled by the processor.
This is the IminLine
field of the CTR register.
impl CPUID
[src]
pub const PTR: *const RegisterBlock
[src]
Pointer to the register block
pub const fn ptr() -> *const RegisterBlock
[src]
Returns a pointer to the register block (to be deprecated in 0.7)
Trait Implementations
impl Deref for CPUID
[src]
type Target = RegisterBlock
The resulting type after dereferencing.
pub fn deref(&self) -> &<CPUID as Deref>::Target
[src]
impl Send for CPUID
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,