pub struct CPUID { /* private fields */ }
Expand description
CPUID
Implementations§
Source§impl CPUID
impl CPUID
Sourcepub fn select_cache(&mut self, level: u8, ind: CsselrCacheType)
pub fn select_cache(&mut self, level: u8, ind: CsselrCacheType)
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.
Sourcepub fn cache_num_sets_ways(
&mut self,
level: u8,
ind: CsselrCacheType,
) -> (u16, u16)
pub fn cache_num_sets_ways( &mut self, level: u8, ind: CsselrCacheType, ) -> (u16, u16)
Returns the number of sets and ways in the selected cache
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CPUID
impl RefUnwindSafe for CPUID
impl !Sync for CPUID
impl Unpin for CPUID
impl UnwindSafe for CPUID
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more