[][src]Struct cortex_m::peripheral::cbp::RegisterBlock

#[repr(C)]pub struct RegisterBlock {
    pub iciallu: WO<u32>,
    pub icimvau: WO<u32>,
    pub dcimvac: WO<u32>,
    pub dcisw: WO<u32>,
    pub dccmvau: WO<u32>,
    pub dccmvac: WO<u32>,
    pub dccsw: WO<u32>,
    pub dccimvac: WO<u32>,
    pub dccisw: WO<u32>,
    pub bpiall: WO<u32>,
    // some fields omitted
}

Register block

Fields

iciallu: WO<u32>

I-cache invalidate all to PoU

icimvau: WO<u32>

I-cache invalidate by MVA to PoU

dcimvac: WO<u32>

D-cache invalidate by MVA to PoC

dcisw: WO<u32>

D-cache invalidate by set-way

dccmvau: WO<u32>

D-cache clean by MVA to PoU

dccmvac: WO<u32>

D-cache clean by MVA to PoC

dccsw: WO<u32>

D-cache clean by set-way

dccimvac: WO<u32>

D-cache clean and invalidate by MVA to PoC

dccisw: WO<u32>

D-cache clean and invalidate by set-way

bpiall: WO<u32>

Branch predictor invalidate all

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.