pub struct RegisterBlock { /* private fields */ }Expand description
Register block
Implementations§
Source§impl RegisterBlock
impl RegisterBlock
Sourcepub const fn fstat(&self) -> &Reg<FSTAT_SPEC>
pub const fn fstat(&self) -> &Reg<FSTAT_SPEC>
0x04 - FIFO status register
Sourcepub const fn fdebug(&self) -> &Reg<FDEBUG_SPEC>
pub const fn fdebug(&self) -> &Reg<FDEBUG_SPEC>
0x08 - FIFO debug register
Sourcepub const fn flevel(&self) -> &Reg<FLEVEL_SPEC>
pub const fn flevel(&self) -> &Reg<FLEVEL_SPEC>
0x0c - FIFO levels
Sourcepub const fn txf(&self, n: usize) -> &Reg<TXF_SPEC>
pub const fn txf(&self, n: usize) -> &Reg<TXF_SPEC>
0x10..0x20 - Direct write access to the TX FIFO for this state machine. Each write pushes one word to the FIFO. Attempting to write to a full FIFO has no effect on the FIFO state or contents, and sets the sticky FDEBUG_TXOVER error flag for this FIFO.
Sourcepub fn txf_iter(&self) -> impl Iterator<Item = &Reg<TXF_SPEC>>
pub fn txf_iter(&self) -> impl Iterator<Item = &Reg<TXF_SPEC>>
Iterator for array of: 0x10..0x20 - Direct write access to the TX FIFO for this state machine. Each write pushes one word to the FIFO. Attempting to write to a full FIFO has no effect on the FIFO state or contents, and sets the sticky FDEBUG_TXOVER error flag for this FIFO.
Sourcepub const fn rxf(&self, n: usize) -> &Reg<RXF_SPEC>
pub const fn rxf(&self, n: usize) -> &Reg<RXF_SPEC>
0x20..0x30 - Direct read access to the RX FIFO for this state machine. Each read pops one word from the FIFO. Attempting to read from an empty FIFO has no effect on the FIFO state, and sets the sticky FDEBUG_RXUNDER error flag for this FIFO. The data returned to the system on a read from an empty FIFO is undefined.
Sourcepub fn rxf_iter(&self) -> impl Iterator<Item = &Reg<RXF_SPEC>>
pub fn rxf_iter(&self) -> impl Iterator<Item = &Reg<RXF_SPEC>>
Iterator for array of: 0x20..0x30 - Direct read access to the RX FIFO for this state machine. Each read pops one word from the FIFO. Attempting to read from an empty FIFO has no effect on the FIFO state, and sets the sticky FDEBUG_RXUNDER error flag for this FIFO. The data returned to the system on a read from an empty FIFO is undefined.
Sourcepub const fn irq(&self) -> &Reg<IRQ_SPEC>
pub const fn irq(&self) -> &Reg<IRQ_SPEC>
0x30 - State machine IRQ flags register. Write 1 to clear. There are eight state machine IRQ flags, which can be set, cleared, and waited on by the state machines. There’s no fixed association between flags and state machines – any state machine can use any flag. Any of the eight flags can be used for timing synchronisation between state machines, using IRQ and WAIT instructions. Any combination of the eight flags can also routed out to either of the two system-level interrupt requests, alongside FIFO status interrupts – see e.g. IRQ0_INTE.
Sourcepub const fn irq_force(&self) -> &Reg<IRQ_FORCE_SPEC>
pub const fn irq_force(&self) -> &Reg<IRQ_FORCE_SPEC>
0x34 - Writing a 1 to each of these bits will forcibly assert the corresponding IRQ. Note this is different to the INTF register: writing here affects PIO internal state. INTF just asserts the processor-facing IRQ signal for testing ISRs, and is not visible to the state machines.
Sourcepub const fn input_sync_bypass(&self) -> &Reg<INPUT_SYNC_BYPASS_SPEC>
pub const fn input_sync_bypass(&self) -> &Reg<INPUT_SYNC_BYPASS_SPEC>
0x38 - There is a 2-flipflop synchronizer on each GPIO input, which protects PIO logic from metastabilities. This increases input delay, and for fast synchronous IO (e.g. SPI) these synchronizers may need to be bypassed. Each bit in this register corresponds to one GPIO. 0 -> input is synchronized (default) 1 -> synchronizer is bypassed If in doubt, leave this register as all zeroes.
Sourcepub const fn dbg_padout(&self) -> &Reg<DBG_PADOUT_SPEC>
pub const fn dbg_padout(&self) -> &Reg<DBG_PADOUT_SPEC>
0x3c - Read to sample the pad output values PIO is currently driving to the GPIOs. On RP2040 there are 30 GPIOs, so the two most significant bits are hardwired to 0.
Sourcepub const fn dbg_padoe(&self) -> &Reg<DBG_PADOE_SPEC>
pub const fn dbg_padoe(&self) -> &Reg<DBG_PADOE_SPEC>
0x40 - Read to sample the pad output enables (direction) PIO is currently driving to the GPIOs. On RP2040 there are 30 GPIOs, so the two most significant bits are hardwired to 0.
Sourcepub const fn dbg_cfginfo(&self) -> &Reg<DBG_CFGINFO_SPEC>
pub const fn dbg_cfginfo(&self) -> &Reg<DBG_CFGINFO_SPEC>
0x44 - The PIO hardware has some free parameters that may vary between chip products. These should be provided in the chip datasheet, but are also exposed here.
Sourcepub const fn instr_mem(&self, n: usize) -> &Reg<INSTR_MEM_SPEC>
pub const fn instr_mem(&self, n: usize) -> &Reg<INSTR_MEM_SPEC>
0x48..0xc8 - Write-only access to instruction memory location %s
Sourcepub fn instr_mem_iter(&self) -> impl Iterator<Item = &Reg<INSTR_MEM_SPEC>>
pub fn instr_mem_iter(&self) -> impl Iterator<Item = &Reg<INSTR_MEM_SPEC>>
Iterator for array of: 0x48..0xc8 - Write-only access to instruction memory location %s
Sourcepub const fn sm(&self, n: usize) -> &SM
pub const fn sm(&self, n: usize) -> &SM
0xc8..0x128 - Cluster SM%s, containing SM*_CLKDIV, SM*_EXECCTRL, SM*_SHIFTCTRL, SM*_ADDR, SM*_INSTR, SM*_PINCTRL
Sourcepub fn sm_iter(&self) -> impl Iterator<Item = &SM>
pub fn sm_iter(&self) -> impl Iterator<Item = &SM>
Iterator for array of: 0xc8..0x128 - Cluster SM%s, containing SM*_CLKDIV, SM*_EXECCTRL, SM*_SHIFTCTRL, SM*_ADDR, SM*_INSTR, SM*_PINCTRL
Sourcepub const fn rxf0_putget(&self, n: usize) -> &Reg<RXF0_PUTGET_SPEC>
pub const fn rxf0_putget(&self, n: usize) -> &Reg<RXF0_PUTGET_SPEC>
0x128..0x138 - Direct read/write access to entry %s of SM0’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub fn rxf0_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF0_PUTGET_SPEC>>
pub fn rxf0_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF0_PUTGET_SPEC>>
Iterator for array of: 0x128..0x138 - Direct read/write access to entry %s of SM0’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub const fn rxf1_putget(&self, n: usize) -> &Reg<RXF1_PUTGET_SPEC>
pub const fn rxf1_putget(&self, n: usize) -> &Reg<RXF1_PUTGET_SPEC>
0x138..0x148 - Direct read/write access to entry %s of SM1’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub fn rxf1_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF1_PUTGET_SPEC>>
pub fn rxf1_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF1_PUTGET_SPEC>>
Iterator for array of: 0x138..0x148 - Direct read/write access to entry %s of SM1’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub const fn rxf2_putget(&self, n: usize) -> &Reg<RXF2_PUTGET_SPEC>
pub const fn rxf2_putget(&self, n: usize) -> &Reg<RXF2_PUTGET_SPEC>
0x148..0x158 - Direct read/write access to entry %s of SM2’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub fn rxf2_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF2_PUTGET_SPEC>>
pub fn rxf2_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF2_PUTGET_SPEC>>
Iterator for array of: 0x148..0x158 - Direct read/write access to entry %s of SM2’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub const fn rxf3_putget(&self, n: usize) -> &Reg<RXF3_PUTGET_SPEC>
pub const fn rxf3_putget(&self, n: usize) -> &Reg<RXF3_PUTGET_SPEC>
0x158..0x168 - Direct read/write access to entry %s of SM3’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub fn rxf3_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF3_PUTGET_SPEC>>
pub fn rxf3_putget_iter(&self) -> impl Iterator<Item = &Reg<RXF3_PUTGET_SPEC>>
Iterator for array of: 0x158..0x168 - Direct read/write access to entry %s of SM3’s RX FIFO, if SHIFTCTRL_FJOIN_RX_PUT xor SHIFTCTRL_FJOIN_RX_GET is set.
Sourcepub const fn gpiobase(&self) -> &Reg<GPIOBASE_SPEC>
pub const fn gpiobase(&self) -> &Reg<GPIOBASE_SPEC>
0x168 - Relocate GPIO 0 (from PIO’s point of view) in the system GPIO numbering, to access more than 32 GPIOs from PIO. Only the values 0 and 16 are supported (only bit 4 is writable).
Sourcepub const fn sm_irq(&self, n: usize) -> &SM_IRQ
pub const fn sm_irq(&self, n: usize) -> &SM_IRQ
0x170..0x188 - Cluster SM_IRQ%s, containing IRQ*_INTE, IRQ*_INTF, IRQ*_INTS
Sourcepub fn sm_irq_iter(&self) -> impl Iterator<Item = &SM_IRQ>
pub fn sm_irq_iter(&self) -> impl Iterator<Item = &SM_IRQ>
Iterator for array of: 0x170..0x188 - Cluster SM_IRQ%s, containing IRQ*_INTE, IRQ*_INTF, IRQ*_INTS
Auto Trait Implementations§
impl !Freeze for RegisterBlock
impl !RefUnwindSafe for RegisterBlock
impl Send for RegisterBlock
impl !Sync for RegisterBlock
impl Unpin for RegisterBlock
impl UnwindSafe for RegisterBlock
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
Source§impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
impl<Choices> CoproductSubsetter<CNil, HNil> for Choices
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more