rp-pac 7.0.0

Peripheral Access Crate (PAC) for Raspberry Pi Silicon chips.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
#[doc = "Directly control the SWD debug port of either processor"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Dbgforce(pub u32);
impl Dbgforce {
    #[doc = "Observe the value of processor 0 SWDIO output."]
    #[inline(always)]
    pub const fn proc0_swdo(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Observe the value of processor 0 SWDIO output."]
    #[inline(always)]
    pub fn set_proc0_swdo(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "Directly drive processor 0 SWDIO input, if PROC0_ATTACH is set"]
    #[inline(always)]
    pub const fn proc0_swdi(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "Directly drive processor 0 SWDIO input, if PROC0_ATTACH is set"]
    #[inline(always)]
    pub fn set_proc0_swdi(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Directly drive processor 0 SWCLK, if PROC0_ATTACH is set"]
    #[inline(always)]
    pub const fn proc0_swclk(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[doc = "Directly drive processor 0 SWCLK, if PROC0_ATTACH is set"]
    #[inline(always)]
    pub fn set_proc0_swclk(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[doc = "Attach processor 0 debug port to syscfg controls, and disconnect it from external SWD pads."]
    #[inline(always)]
    pub const fn proc0_attach(&self) -> bool {
        let val = (self.0 >> 3usize) & 0x01;
        val != 0
    }
    #[doc = "Attach processor 0 debug port to syscfg controls, and disconnect it from external SWD pads."]
    #[inline(always)]
    pub fn set_proc0_attach(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 3usize)) | (((val as u32) & 0x01) << 3usize);
    }
    #[doc = "Observe the value of processor 1 SWDIO output."]
    #[inline(always)]
    pub const fn proc1_swdo(&self) -> bool {
        let val = (self.0 >> 4usize) & 0x01;
        val != 0
    }
    #[doc = "Observe the value of processor 1 SWDIO output."]
    #[inline(always)]
    pub fn set_proc1_swdo(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 4usize)) | (((val as u32) & 0x01) << 4usize);
    }
    #[doc = "Directly drive processor 1 SWDIO input, if PROC1_ATTACH is set"]
    #[inline(always)]
    pub const fn proc1_swdi(&self) -> bool {
        let val = (self.0 >> 5usize) & 0x01;
        val != 0
    }
    #[doc = "Directly drive processor 1 SWDIO input, if PROC1_ATTACH is set"]
    #[inline(always)]
    pub fn set_proc1_swdi(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 5usize)) | (((val as u32) & 0x01) << 5usize);
    }
    #[doc = "Directly drive processor 1 SWCLK, if PROC1_ATTACH is set"]
    #[inline(always)]
    pub const fn proc1_swclk(&self) -> bool {
        let val = (self.0 >> 6usize) & 0x01;
        val != 0
    }
    #[doc = "Directly drive processor 1 SWCLK, if PROC1_ATTACH is set"]
    #[inline(always)]
    pub fn set_proc1_swclk(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 6usize)) | (((val as u32) & 0x01) << 6usize);
    }
    #[doc = "Attach processor 1 debug port to syscfg controls, and disconnect it from external SWD pads."]
    #[inline(always)]
    pub const fn proc1_attach(&self) -> bool {
        let val = (self.0 >> 7usize) & 0x01;
        val != 0
    }
    #[doc = "Attach processor 1 debug port to syscfg controls, and disconnect it from external SWD pads."]
    #[inline(always)]
    pub fn set_proc1_attach(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 7usize)) | (((val as u32) & 0x01) << 7usize);
    }
}
impl Default for Dbgforce {
    #[inline(always)]
    fn default() -> Dbgforce {
        Dbgforce(0)
    }
}
impl core::fmt::Debug for Dbgforce {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Dbgforce")
            .field("proc0_swdo", &self.proc0_swdo())
            .field("proc0_swdi", &self.proc0_swdi())
            .field("proc0_swclk", &self.proc0_swclk())
            .field("proc0_attach", &self.proc0_attach())
            .field("proc1_swdo", &self.proc1_swdo())
            .field("proc1_swdi", &self.proc1_swdi())
            .field("proc1_swclk", &self.proc1_swclk())
            .field("proc1_attach", &self.proc1_attach())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Dbgforce {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct Dbgforce {
            proc0_swdo: bool,
            proc0_swdi: bool,
            proc0_swclk: bool,
            proc0_attach: bool,
            proc1_swdo: bool,
            proc1_swdi: bool,
            proc1_swclk: bool,
            proc1_attach: bool,
        }
        let proxy = Dbgforce {
            proc0_swdo: self.proc0_swdo(),
            proc0_swdi: self.proc0_swdi(),
            proc0_swclk: self.proc0_swclk(),
            proc0_attach: self.proc0_attach(),
            proc1_swdo: self.proc1_swdo(),
            proc1_swdi: self.proc1_swdi(),
            proc1_swclk: self.proc1_swclk(),
            proc1_attach: self.proc1_attach(),
        };
        defmt::write!(f, "{}", proxy)
    }
}
#[doc = "Control power downs to memories. Set high to power down memories. Use with extreme caution"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct Mempowerdown(pub u32);
impl Mempowerdown {
    #[inline(always)]
    pub const fn sram0(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_sram0(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[inline(always)]
    pub const fn sram1(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_sram1(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[inline(always)]
    pub const fn sram2(&self) -> bool {
        let val = (self.0 >> 2usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_sram2(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 2usize)) | (((val as u32) & 0x01) << 2usize);
    }
    #[inline(always)]
    pub const fn sram3(&self) -> bool {
        let val = (self.0 >> 3usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_sram3(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 3usize)) | (((val as u32) & 0x01) << 3usize);
    }
    #[inline(always)]
    pub const fn sram4(&self) -> bool {
        let val = (self.0 >> 4usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_sram4(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 4usize)) | (((val as u32) & 0x01) << 4usize);
    }
    #[inline(always)]
    pub const fn sram5(&self) -> bool {
        let val = (self.0 >> 5usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_sram5(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 5usize)) | (((val as u32) & 0x01) << 5usize);
    }
    #[inline(always)]
    pub const fn usb(&self) -> bool {
        let val = (self.0 >> 6usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_usb(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 6usize)) | (((val as u32) & 0x01) << 6usize);
    }
    #[inline(always)]
    pub const fn rom(&self) -> bool {
        let val = (self.0 >> 7usize) & 0x01;
        val != 0
    }
    #[inline(always)]
    pub fn set_rom(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 7usize)) | (((val as u32) & 0x01) << 7usize);
    }
}
impl Default for Mempowerdown {
    #[inline(always)]
    fn default() -> Mempowerdown {
        Mempowerdown(0)
    }
}
impl core::fmt::Debug for Mempowerdown {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("Mempowerdown")
            .field("sram0", &self.sram0())
            .field("sram1", &self.sram1())
            .field("sram2", &self.sram2())
            .field("sram3", &self.sram3())
            .field("sram4", &self.sram4())
            .field("sram5", &self.sram5())
            .field("usb", &self.usb())
            .field("rom", &self.rom())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for Mempowerdown {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct Mempowerdown {
            sram0: bool,
            sram1: bool,
            sram2: bool,
            sram3: bool,
            sram4: bool,
            sram5: bool,
            usb: bool,
            rom: bool,
        }
        let proxy = Mempowerdown {
            sram0: self.sram0(),
            sram1: self.sram1(),
            sram2: self.sram2(),
            sram3: self.sram3(),
            sram4: self.sram4(),
            sram5: self.sram5(),
            usb: self.usb(),
            rom: self.rom(),
        };
        defmt::write!(f, "{}", proxy)
    }
}
#[doc = "Configuration for processors"]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct ProcConfig(pub u32);
impl ProcConfig {
    #[doc = "Indication that proc0 has halted"]
    #[inline(always)]
    pub const fn proc0_halted(&self) -> bool {
        let val = (self.0 >> 0usize) & 0x01;
        val != 0
    }
    #[doc = "Indication that proc0 has halted"]
    #[inline(always)]
    pub fn set_proc0_halted(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 0usize)) | (((val as u32) & 0x01) << 0usize);
    }
    #[doc = "Indication that proc1 has halted"]
    #[inline(always)]
    pub const fn proc1_halted(&self) -> bool {
        let val = (self.0 >> 1usize) & 0x01;
        val != 0
    }
    #[doc = "Indication that proc1 has halted"]
    #[inline(always)]
    pub fn set_proc1_halted(&mut self, val: bool) {
        self.0 = (self.0 & !(0x01 << 1usize)) | (((val as u32) & 0x01) << 1usize);
    }
    #[doc = "Configure proc0 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP"]
    #[inline(always)]
    pub const fn proc0_dap_instid(&self) -> u8 {
        let val = (self.0 >> 24usize) & 0x0f;
        val as u8
    }
    #[doc = "Configure proc0 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP"]
    #[inline(always)]
    pub fn set_proc0_dap_instid(&mut self, val: u8) {
        self.0 = (self.0 & !(0x0f << 24usize)) | (((val as u32) & 0x0f) << 24usize);
    }
    #[doc = "Configure proc1 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP"]
    #[inline(always)]
    pub const fn proc1_dap_instid(&self) -> u8 {
        let val = (self.0 >> 28usize) & 0x0f;
        val as u8
    }
    #[doc = "Configure proc1 DAP instance ID. Recommend that this is NOT changed until you require debug access in multi-chip environment WARNING: do not set to 15 as this is reserved for RescueDP"]
    #[inline(always)]
    pub fn set_proc1_dap_instid(&mut self, val: u8) {
        self.0 = (self.0 & !(0x0f << 28usize)) | (((val as u32) & 0x0f) << 28usize);
    }
}
impl Default for ProcConfig {
    #[inline(always)]
    fn default() -> ProcConfig {
        ProcConfig(0)
    }
}
impl core::fmt::Debug for ProcConfig {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("ProcConfig")
            .field("proc0_halted", &self.proc0_halted())
            .field("proc1_halted", &self.proc1_halted())
            .field("proc0_dap_instid", &self.proc0_dap_instid())
            .field("proc1_dap_instid", &self.proc1_dap_instid())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for ProcConfig {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct ProcConfig {
            proc0_halted: bool,
            proc1_halted: bool,
            proc0_dap_instid: u8,
            proc1_dap_instid: u8,
        }
        let proxy = ProcConfig {
            proc0_halted: self.proc0_halted(),
            proc1_halted: self.proc1_halted(),
            proc0_dap_instid: self.proc0_dap_instid(),
            proc1_dap_instid: self.proc1_dap_instid(),
        };
        defmt::write!(f, "{}", proxy)
    }
}
#[doc = "For each bit, if 1, bypass the input synchronizer between that GPIO and the GPIO input register in the SIO. The input synchronizers should generally be unbypassed, to avoid injecting metastabilities into processors. If you're feeling brave, you can bypass to save two cycles of input latency. This register applies to GPIO 0...29."]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct ProcInSyncBypass(pub u32);
impl ProcInSyncBypass {
    #[inline(always)]
    pub const fn proc_in_sync_bypass(&self) -> u32 {
        let val = (self.0 >> 0usize) & 0x3fff_ffff;
        val as u32
    }
    #[inline(always)]
    pub fn set_proc_in_sync_bypass(&mut self, val: u32) {
        self.0 = (self.0 & !(0x3fff_ffff << 0usize)) | (((val as u32) & 0x3fff_ffff) << 0usize);
    }
}
impl Default for ProcInSyncBypass {
    #[inline(always)]
    fn default() -> ProcInSyncBypass {
        ProcInSyncBypass(0)
    }
}
impl core::fmt::Debug for ProcInSyncBypass {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("ProcInSyncBypass")
            .field("proc_in_sync_bypass", &self.proc_in_sync_bypass())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for ProcInSyncBypass {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct ProcInSyncBypass {
            proc_in_sync_bypass: u32,
        }
        let proxy = ProcInSyncBypass {
            proc_in_sync_bypass: self.proc_in_sync_bypass(),
        };
        defmt::write!(f, "{}", proxy)
    }
}
#[doc = "For each bit, if 1, bypass the input synchronizer between that GPIO and the GPIO input register in the SIO. The input synchronizers should generally be unbypassed, to avoid injecting metastabilities into processors. If you're feeling brave, you can bypass to save two cycles of input latency. This register applies to GPIO 30...35 (the QSPI IOs)."]
#[repr(transparent)]
#[derive(Copy, Clone, Eq, PartialEq)]
pub struct ProcInSyncBypassHi(pub u32);
impl ProcInSyncBypassHi {
    #[inline(always)]
    pub const fn proc_in_sync_bypass_hi(&self) -> u8 {
        let val = (self.0 >> 0usize) & 0x3f;
        val as u8
    }
    #[inline(always)]
    pub fn set_proc_in_sync_bypass_hi(&mut self, val: u8) {
        self.0 = (self.0 & !(0x3f << 0usize)) | (((val as u32) & 0x3f) << 0usize);
    }
}
impl Default for ProcInSyncBypassHi {
    #[inline(always)]
    fn default() -> ProcInSyncBypassHi {
        ProcInSyncBypassHi(0)
    }
}
impl core::fmt::Debug for ProcInSyncBypassHi {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("ProcInSyncBypassHi")
            .field("proc_in_sync_bypass_hi", &self.proc_in_sync_bypass_hi())
            .finish()
    }
}
#[cfg(feature = "defmt")]
impl defmt::Format for ProcInSyncBypassHi {
    fn format(&self, f: defmt::Formatter) {
        #[derive(defmt :: Format)]
        struct ProcInSyncBypassHi {
            proc_in_sync_bypass_hi: u8,
        }
        let proxy = ProcInSyncBypassHi {
            proc_in_sync_bypass_hi: self.proc_in_sync_bypass_hi(),
        };
        defmt::write!(f, "{}", proxy)
    }
}