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
use crate::generic::*; #[doc = "Configuration for processors"] #[repr(transparent)] #[derive(Copy, Clone)] pub struct ProcConfig(pub u32); impl ProcConfig { #[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"] pub const fn proc1_dap_instid(&self) -> u8 { let val = (self.0 >> 28u32) & 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"] pub fn set_proc1_dap_instid(&mut self, val: u8) { self.0 = (self.0 & !(0x0f << 28u32)) | (((val as u32) & 0x0f) << 28u32); } #[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"] pub const fn proc0_dap_instid(&self) -> u8 { let val = (self.0 >> 24u32) & 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"] pub fn set_proc0_dap_instid(&mut self, val: u8) { self.0 = (self.0 & !(0x0f << 24u32)) | (((val as u32) & 0x0f) << 24u32); } #[doc = "Indication that proc1 has halted"] pub const fn proc1_halted(&self) -> bool { let val = (self.0 >> 1u32) & 0x01; val != 0 } #[doc = "Indication that proc1 has halted"] pub fn set_proc1_halted(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 1u32)) | (((val as u32) & 0x01) << 1u32); } #[doc = "Indication that proc0 has halted"] pub const fn proc0_halted(&self) -> bool { let val = (self.0 >> 0u32) & 0x01; val != 0 } #[doc = "Indication that proc0 has halted"] pub fn set_proc0_halted(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 0u32)) | (((val as u32) & 0x01) << 0u32); } } impl Default for ProcConfig { fn default() -> ProcConfig { ProcConfig(0) } } #[doc = "Control power downs to memories. Set high to power down memories. Use with extreme caution"] #[repr(transparent)] #[derive(Copy, Clone)] pub struct Mempowerdown(pub u32); impl Mempowerdown { pub const fn rom(&self) -> bool { let val = (self.0 >> 7u32) & 0x01; val != 0 } pub fn set_rom(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 7u32)) | (((val as u32) & 0x01) << 7u32); } pub const fn usb(&self) -> bool { let val = (self.0 >> 6u32) & 0x01; val != 0 } pub fn set_usb(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 6u32)) | (((val as u32) & 0x01) << 6u32); } pub const fn sram5(&self) -> bool { let val = (self.0 >> 5u32) & 0x01; val != 0 } pub fn set_sram5(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 5u32)) | (((val as u32) & 0x01) << 5u32); } pub const fn sram4(&self) -> bool { let val = (self.0 >> 4u32) & 0x01; val != 0 } pub fn set_sram4(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 4u32)) | (((val as u32) & 0x01) << 4u32); } pub const fn sram3(&self) -> bool { let val = (self.0 >> 3u32) & 0x01; val != 0 } pub fn set_sram3(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 3u32)) | (((val as u32) & 0x01) << 3u32); } pub const fn sram2(&self) -> bool { let val = (self.0 >> 2u32) & 0x01; val != 0 } pub fn set_sram2(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 2u32)) | (((val as u32) & 0x01) << 2u32); } pub const fn sram1(&self) -> bool { let val = (self.0 >> 1u32) & 0x01; val != 0 } pub fn set_sram1(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 1u32)) | (((val as u32) & 0x01) << 1u32); } pub const fn sram0(&self) -> bool { let val = (self.0 >> 0u32) & 0x01; val != 0 } pub fn set_sram0(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 0u32)) | (((val as u32) & 0x01) << 0u32); } } impl Default for Mempowerdown { fn default() -> Mempowerdown { Mempowerdown(0) } } #[doc = "Directly control the SWD debug port of either processor"] #[repr(transparent)] #[derive(Copy, Clone)] pub struct Dbgforce(pub u32); impl Dbgforce { #[doc = "Attach processor 1 debug port to syscfg controls, and disconnect it from external SWD pads."] pub const fn proc1_attach(&self) -> bool { let val = (self.0 >> 7u32) & 0x01; val != 0 } #[doc = "Attach processor 1 debug port to syscfg controls, and disconnect it from external SWD pads."] pub fn set_proc1_attach(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 7u32)) | (((val as u32) & 0x01) << 7u32); } #[doc = "Directly drive processor 1 SWCLK, if PROC1_ATTACH is set"] pub const fn proc1_swclk(&self) -> bool { let val = (self.0 >> 6u32) & 0x01; val != 0 } #[doc = "Directly drive processor 1 SWCLK, if PROC1_ATTACH is set"] pub fn set_proc1_swclk(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 6u32)) | (((val as u32) & 0x01) << 6u32); } #[doc = "Directly drive processor 1 SWDIO input, if PROC1_ATTACH is set"] pub const fn proc1_swdi(&self) -> bool { let val = (self.0 >> 5u32) & 0x01; val != 0 } #[doc = "Directly drive processor 1 SWDIO input, if PROC1_ATTACH is set"] pub fn set_proc1_swdi(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 5u32)) | (((val as u32) & 0x01) << 5u32); } #[doc = "Observe the value of processor 1 SWDIO output."] pub const fn proc1_swdo(&self) -> bool { let val = (self.0 >> 4u32) & 0x01; val != 0 } #[doc = "Observe the value of processor 1 SWDIO output."] pub fn set_proc1_swdo(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 4u32)) | (((val as u32) & 0x01) << 4u32); } #[doc = "Attach processor 0 debug port to syscfg controls, and disconnect it from external SWD pads."] pub const fn proc0_attach(&self) -> bool { let val = (self.0 >> 3u32) & 0x01; val != 0 } #[doc = "Attach processor 0 debug port to syscfg controls, and disconnect it from external SWD pads."] pub fn set_proc0_attach(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 3u32)) | (((val as u32) & 0x01) << 3u32); } #[doc = "Directly drive processor 0 SWCLK, if PROC0_ATTACH is set"] pub const fn proc0_swclk(&self) -> bool { let val = (self.0 >> 2u32) & 0x01; val != 0 } #[doc = "Directly drive processor 0 SWCLK, if PROC0_ATTACH is set"] pub fn set_proc0_swclk(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 2u32)) | (((val as u32) & 0x01) << 2u32); } #[doc = "Directly drive processor 0 SWDIO input, if PROC0_ATTACH is set"] pub const fn proc0_swdi(&self) -> bool { let val = (self.0 >> 1u32) & 0x01; val != 0 } #[doc = "Directly drive processor 0 SWDIO input, if PROC0_ATTACH is set"] pub fn set_proc0_swdi(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 1u32)) | (((val as u32) & 0x01) << 1u32); } #[doc = "Observe the value of processor 0 SWDIO output."] pub const fn proc0_swdo(&self) -> bool { let val = (self.0 >> 0u32) & 0x01; val != 0 } #[doc = "Observe the value of processor 0 SWDIO output."] pub fn set_proc0_swdo(&mut self, val: bool) { self.0 = (self.0 & !(0x01 << 0u32)) | (((val as u32) & 0x01) << 0u32); } } impl Default for Dbgforce { fn default() -> Dbgforce { Dbgforce(0) } } #[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)] pub struct ProcInSyncBypassHi(pub u32); impl ProcInSyncBypassHi { pub const fn proc_in_sync_bypass_hi(&self) -> u8 { let val = (self.0 >> 0u32) & 0x3f; val as u8 } pub fn set_proc_in_sync_bypass_hi(&mut self, val: u8) { self.0 = (self.0 & !(0x3f << 0u32)) | (((val as u32) & 0x3f) << 0u32); } } impl Default for ProcInSyncBypassHi { fn default() -> ProcInSyncBypassHi { ProcInSyncBypassHi(0) } } #[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)] pub struct ProcInSyncBypass(pub u32); impl ProcInSyncBypass { pub const fn proc_in_sync_bypass(&self) -> u32 { let val = (self.0 >> 0u32) & 0x3fff_ffff; val as u32 } pub fn set_proc_in_sync_bypass(&mut self, val: u32) { self.0 = (self.0 & !(0x3fff_ffff << 0u32)) | (((val as u32) & 0x3fff_ffff) << 0u32); } } impl Default for ProcInSyncBypass { fn default() -> ProcInSyncBypass { ProcInSyncBypass(0) } }