Struct rp2040_pac2::xip_ctrl::XipCtrl[][src]

pub struct XipCtrl(pub *mut u8);

QSPI flash execute-in-place block

Implementations

impl XipCtrl[src]

pub fn ctrl(self) -> Reg<Ctrl, RW>[src]

Cache control

pub fn flush(self) -> Reg<Flush, RW>[src]

Cache Flush control

pub fn stat(self) -> Reg<Stat, RW>[src]

Cache Status

pub fn ctr_hit(self) -> Reg<u32, RW>[src]

Cache Hit counter A 32 bit saturating counter that increments upon each cache hit, i.e. when an XIP access is serviced directly from cached data. Write any value to clear.

pub fn ctr_acc(self) -> Reg<u32, RW>[src]

Cache Access counter A 32 bit saturating counter that increments upon each XIP access, whether the cache is hit or not. This includes noncacheable accesses. Write any value to clear.

pub fn stream_addr(self) -> Reg<StreamAddr, RW>[src]

FIFO stream address

pub fn stream_ctr(self) -> Reg<StreamCtr, RW>[src]

FIFO stream control

pub fn stream_fifo(self) -> Reg<u32, R>[src]

FIFO stream data Streamed data is buffered here, for retrieval by the system DMA. This FIFO can also be accessed via the XIP_AUX slave, to avoid exposing the DMA to bus stalls caused by other XIP traffic.

Trait Implementations

impl Clone for XipCtrl[src]

impl Copy for XipCtrl[src]

impl Send for XipCtrl[src]

impl Sync for XipCtrl[src]

Auto Trait Implementations

impl Unpin for XipCtrl

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, 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.