1#[doc = r"Register block"]
2#[repr(C)]
3pub struct RegisterBlock {
4 gpio_qspi: [GPIO_QSPI; 6],
5 intr: INTR,
6 proc0_inte: PROC0_INTE,
7 proc0_intf: PROC0_INTF,
8 proc0_ints: PROC0_INTS,
9 proc1_inte: PROC1_INTE,
10 proc1_intf: PROC1_INTF,
11 proc1_ints: PROC1_INTS,
12 dormant_wake_inte: DORMANT_WAKE_INTE,
13 dormant_wake_intf: DORMANT_WAKE_INTF,
14 dormant_wake_ints: DORMANT_WAKE_INTS,
15}
16impl RegisterBlock {
17#[doc = "0x00..0x30 - Cluster GPIO_QSPI%s, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
18 #[inline(always)]
19pub const fn gpio_qspi(&self, n: usize) -> &GPIO_QSPI {
20&self.gpio_qspi[n]
21 }
22#[doc = "Iterator for array of:"]
23 #[doc = "0x00..0x30 - Cluster GPIO_QSPI%s, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
24 #[inline(always)]
25pub fn gpio_qspi_iter(&self) -> impl Iterator<Item = &GPIO_QSPI> {
26self.gpio_qspi.iter()
27 }
28#[doc = "0x00..0x08 - Cluster GPIO_QSPISCLK, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
29 #[inline(always)]
30pub const fn gpio_qspisclk(&self) -> &GPIO_QSPI {
31self.gpio_qspi(0)
32 }
33#[doc = "0x08..0x10 - Cluster GPIO_QSPISS, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
34 #[inline(always)]
35pub const fn gpio_qspiss(&self) -> &GPIO_QSPI {
36self.gpio_qspi(1)
37 }
38#[doc = "0x10..0x18 - Cluster GPIO_QSPISD0, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
39 #[inline(always)]
40pub const fn gpio_qspisd0(&self) -> &GPIO_QSPI {
41self.gpio_qspi(2)
42 }
43#[doc = "0x18..0x20 - Cluster GPIO_QSPISD1, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
44 #[inline(always)]
45pub const fn gpio_qspisd1(&self) -> &GPIO_QSPI {
46self.gpio_qspi(3)
47 }
48#[doc = "0x20..0x28 - Cluster GPIO_QSPISD2, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
49 #[inline(always)]
50pub const fn gpio_qspisd2(&self) -> &GPIO_QSPI {
51self.gpio_qspi(4)
52 }
53#[doc = "0x28..0x30 - Cluster GPIO_QSPISD3, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
54 #[inline(always)]
55pub const fn gpio_qspisd3(&self) -> &GPIO_QSPI {
56self.gpio_qspi(5)
57 }
58#[doc = "0x30 - Raw Interrupts"]
59 #[inline(always)]
60pub const fn intr(&self) -> &INTR {
61&self.intr
62 }
63#[doc = "0x34 - Interrupt Enable for proc0"]
64 #[inline(always)]
65pub const fn proc0_inte(&self) -> &PROC0_INTE {
66&self.proc0_inte
67 }
68#[doc = "0x38 - Interrupt Force for proc0"]
69 #[inline(always)]
70pub const fn proc0_intf(&self) -> &PROC0_INTF {
71&self.proc0_intf
72 }
73#[doc = "0x3c - Interrupt status after masking & forcing for proc0"]
74 #[inline(always)]
75pub const fn proc0_ints(&self) -> &PROC0_INTS {
76&self.proc0_ints
77 }
78#[doc = "0x40 - Interrupt Enable for proc1"]
79 #[inline(always)]
80pub const fn proc1_inte(&self) -> &PROC1_INTE {
81&self.proc1_inte
82 }
83#[doc = "0x44 - Interrupt Force for proc1"]
84 #[inline(always)]
85pub const fn proc1_intf(&self) -> &PROC1_INTF {
86&self.proc1_intf
87 }
88#[doc = "0x48 - Interrupt status after masking & forcing for proc1"]
89 #[inline(always)]
90pub const fn proc1_ints(&self) -> &PROC1_INTS {
91&self.proc1_ints
92 }
93#[doc = "0x4c - Interrupt Enable for dormant_wake"]
94 #[inline(always)]
95pub const fn dormant_wake_inte(&self) -> &DORMANT_WAKE_INTE {
96&self.dormant_wake_inte
97 }
98#[doc = "0x50 - Interrupt Force for dormant_wake"]
99 #[inline(always)]
100pub const fn dormant_wake_intf(&self) -> &DORMANT_WAKE_INTF {
101&self.dormant_wake_intf
102 }
103#[doc = "0x54 - Interrupt status after masking & forcing for dormant_wake"]
104 #[inline(always)]
105pub const fn dormant_wake_ints(&self) -> &DORMANT_WAKE_INTS {
106&self.dormant_wake_ints
107 }
108}
109#[doc = "Cluster GPIO_QSPI%s, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
110pub use self::gpio_qspi::GPIO_QSPI;
111#[doc = r"Cluster"]
112#[doc = "Cluster GPIO_QSPI%s, containing GPIO_QSPI_*_STATUS, GPIO_QSPI_*_CTRL"]
113pub mod gpio_qspi;
114#[doc = "INTR (rw) register accessor: Raw Interrupts
115116You can [`read`](crate::generic::Reg::read) this register and get [`intr::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 [`intr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
117118For information about available fields see [`mod@intr`]
119module"]
120pub type INTR = crate::Reg<intr::INTR_SPEC>;
121#[doc = "Raw Interrupts"]
122pub mod intr;
123#[doc = "PROC0_INTE (rw) register accessor: Interrupt Enable for proc0
124125You can [`read`](crate::generic::Reg::read) this register and get [`proc0_inte::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 [`proc0_inte::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
126127For information about available fields see [`mod@proc0_inte`]
128module"]
129pub type PROC0_INTE = crate::Reg<proc0_inte::PROC0_INTE_SPEC>;
130#[doc = "Interrupt Enable for proc0"]
131pub mod proc0_inte;
132#[doc = "PROC0_INTF (rw) register accessor: Interrupt Force for proc0
133134You can [`read`](crate::generic::Reg::read) this register and get [`proc0_intf::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 [`proc0_intf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
135136For information about available fields see [`mod@proc0_intf`]
137module"]
138pub type PROC0_INTF = crate::Reg<proc0_intf::PROC0_INTF_SPEC>;
139#[doc = "Interrupt Force for proc0"]
140pub mod proc0_intf;
141#[doc = "PROC0_INTS (r) register accessor: Interrupt status after masking & forcing for proc0
142143You can [`read`](crate::generic::Reg::read) this register and get [`proc0_ints::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
144145For information about available fields see [`mod@proc0_ints`]
146module"]
147pub type PROC0_INTS = crate::Reg<proc0_ints::PROC0_INTS_SPEC>;
148#[doc = "Interrupt status after masking & forcing for proc0"]
149pub mod proc0_ints;
150#[doc = "PROC1_INTE (rw) register accessor: Interrupt Enable for proc1
151152You can [`read`](crate::generic::Reg::read) this register and get [`proc1_inte::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 [`proc1_inte::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
153154For information about available fields see [`mod@proc1_inte`]
155module"]
156pub type PROC1_INTE = crate::Reg<proc1_inte::PROC1_INTE_SPEC>;
157#[doc = "Interrupt Enable for proc1"]
158pub mod proc1_inte;
159#[doc = "PROC1_INTF (rw) register accessor: Interrupt Force for proc1
160161You can [`read`](crate::generic::Reg::read) this register and get [`proc1_intf::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 [`proc1_intf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
162163For information about available fields see [`mod@proc1_intf`]
164module"]
165pub type PROC1_INTF = crate::Reg<proc1_intf::PROC1_INTF_SPEC>;
166#[doc = "Interrupt Force for proc1"]
167pub mod proc1_intf;
168#[doc = "PROC1_INTS (r) register accessor: Interrupt status after masking & forcing for proc1
169170You can [`read`](crate::generic::Reg::read) this register and get [`proc1_ints::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
171172For information about available fields see [`mod@proc1_ints`]
173module"]
174pub type PROC1_INTS = crate::Reg<proc1_ints::PROC1_INTS_SPEC>;
175#[doc = "Interrupt status after masking & forcing for proc1"]
176pub mod proc1_ints;
177#[doc = "DORMANT_WAKE_INTE (rw) register accessor: Interrupt Enable for dormant_wake
178179You can [`read`](crate::generic::Reg::read) this register and get [`dormant_wake_inte::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 [`dormant_wake_inte::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
180181For information about available fields see [`mod@dormant_wake_inte`]
182module"]
183pub type DORMANT_WAKE_INTE = crate::Reg<dormant_wake_inte::DORMANT_WAKE_INTE_SPEC>;
184#[doc = "Interrupt Enable for dormant_wake"]
185pub mod dormant_wake_inte;
186#[doc = "DORMANT_WAKE_INTF (rw) register accessor: Interrupt Force for dormant_wake
187188You can [`read`](crate::generic::Reg::read) this register and get [`dormant_wake_intf::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 [`dormant_wake_intf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
189190For information about available fields see [`mod@dormant_wake_intf`]
191module"]
192pub type DORMANT_WAKE_INTF = crate::Reg<dormant_wake_intf::DORMANT_WAKE_INTF_SPEC>;
193#[doc = "Interrupt Force for dormant_wake"]
194pub mod dormant_wake_intf;
195#[doc = "DORMANT_WAKE_INTS (r) register accessor: Interrupt status after masking & forcing for dormant_wake
196197You can [`read`](crate::generic::Reg::read) this register and get [`dormant_wake_ints::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
198199For information about available fields see [`mod@dormant_wake_ints`]
200module"]
201pub type DORMANT_WAKE_INTS = crate::Reg<dormant_wake_ints::DORMANT_WAKE_INTS_SPEC>;
202#[doc = "Interrupt status after masking & forcing for dormant_wake"]
203pub mod dormant_wake_ints;