1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 ctrl: CTRL,
5 fstat: FSTAT,
6 fdebug: FDEBUG,
7 flevel: FLEVEL,
8 txf: [TXF; 4],
9 rxf: [RXF; 4],
10 irq: IRQ,
11 irq_force: IRQ_FORCE,
12 input_sync_bypass: INPUT_SYNC_BYPASS,
13 dbg_padout: DBG_PADOUT,
14 dbg_padoe: DBG_PADOE,
15 dbg_cfginfo: DBG_CFGINFO,
16 instr_mem: [INSTR_MEM; 32],
17 sm: [SM; 4],
18 intr: INTR,
19 sm_irq: [SM_IRQ; 2],
20}
21impl RegisterBlock {
22 #[doc = "0x00 - PIO control register"]
23 #[inline(always)]
24 pub const fn ctrl(&self) -> &CTRL {
25 &self.ctrl
26 }
27 #[doc = "0x04 - FIFO status register"]
28 #[inline(always)]
29 pub const fn fstat(&self) -> &FSTAT {
30 &self.fstat
31 }
32 #[doc = "0x08 - FIFO debug register"]
33 #[inline(always)]
34 pub const fn fdebug(&self) -> &FDEBUG {
35 &self.fdebug
36 }
37 #[doc = "0x0c - FIFO levels"]
38 #[inline(always)]
39 pub const fn flevel(&self) -> &FLEVEL {
40 &self.flevel
41 }
42 #[doc = "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."]
43 #[inline(always)]
44 pub const fn txf(&self, n: usize) -> &TXF {
45 &self.txf[n]
46 }
47 #[doc = "Iterator for array of:"]
48 #[doc = "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."]
49 #[inline(always)]
50 pub fn txf_iter(&self) -> impl Iterator<Item = &TXF> {
51 self.txf.iter()
52 }
53 #[doc = "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."]
54 #[inline(always)]
55 pub const fn rxf(&self, n: usize) -> &RXF {
56 &self.rxf[n]
57 }
58 #[doc = "Iterator for array of:"]
59 #[doc = "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."]
60 #[inline(always)]
61 pub fn rxf_iter(&self) -> impl Iterator<Item = &RXF> {
62 self.rxf.iter()
63 }
64 #[doc = "0x30 - State machine IRQ flags register. Write 1 to clear. There are 8 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.
65
66 Any of the 8 flags can be used for timing synchronisation between state machines, using IRQ and WAIT instructions. The lower four of these flags are also routed out to system-level interrupt requests, alongside FIFO status interrupts -- see e.g. IRQ0_INTE."]
67 #[inline(always)]
68 pub const fn irq(&self) -> &IRQ {
69 &self.irq
70 }
71 #[doc = "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."]
72 #[inline(always)]
73 pub const fn irq_force(&self) -> &IRQ_FORCE {
74 &self.irq_force
75 }
76 #[doc = "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.
77 0 -> input is synchronized (default)
78 1 -> synchronizer is bypassed
79 If in doubt, leave this register as all zeroes."]
80 #[inline(always)]
81 pub const fn input_sync_bypass(&self) -> &INPUT_SYNC_BYPASS {
82 &self.input_sync_bypass
83 }
84 #[doc = "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."]
85 #[inline(always)]
86 pub const fn dbg_padout(&self) -> &DBG_PADOUT {
87 &self.dbg_padout
88 }
89 #[doc = "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."]
90 #[inline(always)]
91 pub const fn dbg_padoe(&self) -> &DBG_PADOE {
92 &self.dbg_padoe
93 }
94 #[doc = "0x44 - The PIO hardware has some free parameters that may vary between chip products.
95 These should be provided in the chip datasheet, but are also exposed here."]
96 #[inline(always)]
97 pub const fn dbg_cfginfo(&self) -> &DBG_CFGINFO {
98 &self.dbg_cfginfo
99 }
100 #[doc = "0x48..0xc8 - Write-only access to instruction memory location %s"]
101 #[inline(always)]
102 pub const fn instr_mem(&self, n: usize) -> &INSTR_MEM {
103 &self.instr_mem[n]
104 }
105 #[doc = "Iterator for array of:"]
106 #[doc = "0x48..0xc8 - Write-only access to instruction memory location %s"]
107 #[inline(always)]
108 pub fn instr_mem_iter(&self) -> impl Iterator<Item = &INSTR_MEM> {
109 self.instr_mem.iter()
110 }
111 #[doc = "0xc8..0x128 - Cluster SM%s, containing SM*_CLKDIV, SM*_EXECCTRL, SM*_SHIFTCTRL, SM*_ADDR, SM*_INSTR, SM*_PINCTRL"]
112 #[inline(always)]
113 pub const fn sm(&self, n: usize) -> &SM {
114 &self.sm[n]
115 }
116 #[doc = "Iterator for array of:"]
117 #[doc = "0xc8..0x128 - Cluster SM%s, containing SM*_CLKDIV, SM*_EXECCTRL, SM*_SHIFTCTRL, SM*_ADDR, SM*_INSTR, SM*_PINCTRL"]
118 #[inline(always)]
119 pub fn sm_iter(&self) -> impl Iterator<Item = &SM> {
120 self.sm.iter()
121 }
122 #[doc = "0x128 - Raw Interrupts"]
123 #[inline(always)]
124 pub const fn intr(&self) -> &INTR {
125 &self.intr
126 }
127 #[doc = "0x12c..0x144 - Cluster SM_IRQ%s, containing IRQ*_INTE, IRQ*_INTF, IRQ*_INTS"]
128 #[inline(always)]
129 pub const fn sm_irq(&self, n: usize) -> &SM_IRQ {
130 &self.sm_irq[n]
131 }
132 #[doc = "Iterator for array of:"]
133 #[doc = "0x12c..0x144 - Cluster SM_IRQ%s, containing IRQ*_INTE, IRQ*_INTF, IRQ*_INTS"]
134 #[inline(always)]
135 pub fn sm_irq_iter(&self) -> impl Iterator<Item = &SM_IRQ> {
136 self.sm_irq.iter()
137 }
138}
139#[doc = "CTRL (rw) register accessor: PIO control register
140
141You can [`read`](crate::generic::Reg::read) this register and get [`ctrl::R`]. You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
142
143For information about available fields see [`mod@ctrl`]
144module"]
145pub type CTRL = crate::Reg<ctrl::CTRL_SPEC>;
146#[doc = "PIO control register"]
147pub mod ctrl;
148#[doc = "FSTAT (r) register accessor: FIFO status register
149
150You can [`read`](crate::generic::Reg::read) this register and get [`fstat::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
151
152For information about available fields see [`mod@fstat`]
153module"]
154pub type FSTAT = crate::Reg<fstat::FSTAT_SPEC>;
155#[doc = "FIFO status register"]
156pub mod fstat;
157#[doc = "FDEBUG (rw) register accessor: FIFO debug register
158
159You can [`read`](crate::generic::Reg::read) this register and get [`fdebug::R`]. You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`fdebug::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
160
161For information about available fields see [`mod@fdebug`]
162module"]
163pub type FDEBUG = crate::Reg<fdebug::FDEBUG_SPEC>;
164#[doc = "FIFO debug register"]
165pub mod fdebug;
166#[doc = "FLEVEL (r) register accessor: FIFO levels
167
168You can [`read`](crate::generic::Reg::read) this register and get [`flevel::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
169
170For information about available fields see [`mod@flevel`]
171module"]
172pub type FLEVEL = crate::Reg<flevel::FLEVEL_SPEC>;
173#[doc = "FIFO levels"]
174pub mod flevel;
175#[doc = "TXF (w) register accessor: 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.
176
177You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`txf::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
178
179For information about available fields see [`mod@txf`]
180module"]
181pub type TXF = crate::Reg<txf::TXF_SPEC>;
182#[doc = "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."]
183pub mod txf;
184#[doc = "RXF (r) register accessor: 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.
185
186You can [`read`](crate::generic::Reg::read) this register and get [`rxf::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
187
188For information about available fields see [`mod@rxf`]
189module"]
190pub type RXF = crate::Reg<rxf::RXF_SPEC>;
191#[doc = "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."]
192pub mod rxf;
193#[doc = "IRQ (rw) register accessor: State machine IRQ flags register. Write 1 to clear. There are 8 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.
194
195 Any of the 8 flags can be used for timing synchronisation between state machines, using IRQ and WAIT instructions. The lower four of these flags are also routed out to system-level interrupt requests, alongside FIFO status interrupts -- see e.g. IRQ0_INTE.
196
197You can [`read`](crate::generic::Reg::read) this register and get [`irq::R`]. You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`irq::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
198
199For information about available fields see [`mod@irq`]
200module"]
201pub type IRQ = crate::Reg<irq::IRQ_SPEC>;
202#[doc = "State machine IRQ flags register. Write 1 to clear. There are 8 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.
203
204 Any of the 8 flags can be used for timing synchronisation between state machines, using IRQ and WAIT instructions. The lower four of these flags are also routed out to system-level interrupt requests, alongside FIFO status interrupts -- see e.g. IRQ0_INTE."]
205pub mod irq;
206#[doc = "IRQ_FORCE (w) register accessor: 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.
207
208You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`irq_force::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
209
210For information about available fields see [`mod@irq_force`]
211module"]
212pub type IRQ_FORCE = crate::Reg<irq_force::IRQ_FORCE_SPEC>;
213#[doc = "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."]
214pub mod irq_force;
215#[doc = "INPUT_SYNC_BYPASS (rw) register accessor: 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.
216 0 -> input is synchronized (default)
217 1 -> synchronizer is bypassed
218 If in doubt, leave this register as all zeroes.
219
220You can [`read`](crate::generic::Reg::read) this register and get [`input_sync_bypass::R`]. You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`input_sync_bypass::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
221
222For information about available fields see [`mod@input_sync_bypass`]
223module"]
224pub type INPUT_SYNC_BYPASS = crate::Reg<input_sync_bypass::INPUT_SYNC_BYPASS_SPEC>;
225#[doc = "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.
226 0 -> input is synchronized (default)
227 1 -> synchronizer is bypassed
228 If in doubt, leave this register as all zeroes."]
229pub mod input_sync_bypass;
230#[doc = "DBG_PADOUT (r) register accessor: 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.
231
232You can [`read`](crate::generic::Reg::read) this register and get [`dbg_padout::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
233
234For information about available fields see [`mod@dbg_padout`]
235module"]
236pub type DBG_PADOUT = crate::Reg<dbg_padout::DBG_PADOUT_SPEC>;
237#[doc = "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."]
238pub mod dbg_padout;
239#[doc = "DBG_PADOE (r) register accessor: 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.
240
241You can [`read`](crate::generic::Reg::read) this register and get [`dbg_padoe::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
242
243For information about available fields see [`mod@dbg_padoe`]
244module"]
245pub type DBG_PADOE = crate::Reg<dbg_padoe::DBG_PADOE_SPEC>;
246#[doc = "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."]
247pub mod dbg_padoe;
248#[doc = "DBG_CFGINFO (r) register accessor: The PIO hardware has some free parameters that may vary between chip products.
249 These should be provided in the chip datasheet, but are also exposed here.
250
251You can [`read`](crate::generic::Reg::read) this register and get [`dbg_cfginfo::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
252
253For information about available fields see [`mod@dbg_cfginfo`]
254module"]
255pub type DBG_CFGINFO = crate::Reg<dbg_cfginfo::DBG_CFGINFO_SPEC>;
256#[doc = "The PIO hardware has some free parameters that may vary between chip products.
257 These should be provided in the chip datasheet, but are also exposed here."]
258pub mod dbg_cfginfo;
259#[doc = "INSTR_MEM (w) register accessor: Write-only access to instruction memory location %s
260
261You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`instr_mem::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
262
263For information about available fields see [`mod@instr_mem`]
264module"]
265pub type INSTR_MEM = crate::Reg<instr_mem::INSTR_MEM_SPEC>;
266#[doc = "Write-only access to instruction memory location %s"]
267pub mod instr_mem;
268#[doc = "Cluster SM%s, containing SM*_CLKDIV, SM*_EXECCTRL, SM*_SHIFTCTRL, SM*_ADDR, SM*_INSTR, SM*_PINCTRL"]
269pub use self::sm::SM;
270#[doc = r"Cluster"]
271#[doc = "Cluster SM%s, containing SM*_CLKDIV, SM*_EXECCTRL, SM*_SHIFTCTRL, SM*_ADDR, SM*_INSTR, SM*_PINCTRL"]
272pub mod sm;
273#[doc = "INTR (r) register accessor: Raw Interrupts
274
275You can [`read`](crate::generic::Reg::read) this register and get [`intr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
276
277For information about available fields see [`mod@intr`]
278module"]
279pub type INTR = crate::Reg<intr::INTR_SPEC>;
280#[doc = "Raw Interrupts"]
281pub mod intr;
282#[doc = "Cluster SM_IRQ%s, containing IRQ*_INTE, IRQ*_INTF, IRQ*_INTS"]
283pub use self::sm_irq::SM_IRQ;
284#[doc = r"Cluster"]
285#[doc = "Cluster SM_IRQ%s, containing IRQ*_INTE, IRQ*_INTF, IRQ*_INTS"]
286pub mod sm_irq;