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
#[repr(C)]
#[derive(Debug)]
///Register block
pub struct RegisterBlock {
bcr1: BCR1,
btr: (),
_reserved2: [u8; 0x04],
bcr: (),
_reserved3: [u8; 0x58],
pcr: (),
_reserved4: [u8; 0x04],
sr: (),
_reserved5: [u8; 0x04],
pmem2: PMEM2,
patt2: PATT2,
_reserved7: [u8; 0x04],
eccr2: ECCR2,
_reserved8: [u8; 0x10],
pmem3: PMEM3,
patt3: PATT3,
_reserved10: [u8; 0x04],
eccr3: ECCR3,
_reserved11: [u8; 0x10],
pmem4: PMEM4,
patt4: PATT4,
pio4: PIO4,
_reserved14: [u8; 0x50],
bwtr: (),
}
impl RegisterBlock {
///0x00 - SRAM/NOR-Flash chip-select control register 1
#[inline(always)]
pub const fn bcr1(&self) -> &BCR1 {
&self.bcr1
}
///0x04..0x14 - SRAM/NOR-Flash chip-select timing register %s
#[inline(always)]
pub const fn btr(&self, n: usize) -> &BTR {
#[allow(clippy::no_effect)] [(); 4][n];
unsafe { &*(self as *const Self).cast::<u8>().add(4).add(8 * n).cast() }
}
///Iterator for array of:
///0x04..0x14 - SRAM/NOR-Flash chip-select timing register %s
#[inline(always)]
pub fn btr_iter(&self) -> impl Iterator<Item = &BTR> {
(0..4)
.map(move |n| unsafe {
&*(self as *const Self).cast::<u8>().add(4).add(8 * n).cast()
})
}
///0x04 - SRAM/NOR-Flash chip-select timing register 1
#[inline(always)]
pub const fn btr1(&self) -> &BTR {
self.btr(0)
}
///0x0c - SRAM/NOR-Flash chip-select timing register 2
#[inline(always)]
pub const fn btr2(&self) -> &BTR {
self.btr(1)
}
///0x14 - SRAM/NOR-Flash chip-select timing register 3
#[inline(always)]
pub const fn btr3(&self) -> &BTR {
self.btr(2)
}
///0x1c - SRAM/NOR-Flash chip-select timing register 4
#[inline(always)]
pub const fn btr4(&self) -> &BTR {
self.btr(3)
}
///0x08..0x14 - SRAM/NOR-Flash chip-select control register %s
#[inline(always)]
pub const fn bcr(&self, n: usize) -> &BCR {
#[allow(clippy::no_effect)] [(); 3][n];
unsafe { &*(self as *const Self).cast::<u8>().add(8).add(8 * n).cast() }
}
///Iterator for array of:
///0x08..0x14 - SRAM/NOR-Flash chip-select control register %s
#[inline(always)]
pub fn bcr_iter(&self) -> impl Iterator<Item = &BCR> {
(0..3)
.map(move |n| unsafe {
&*(self as *const Self).cast::<u8>().add(8).add(8 * n).cast()
})
}
///0x08 - SRAM/NOR-Flash chip-select control register 2
#[inline(always)]
pub const fn bcr2(&self) -> &BCR {
self.bcr(0)
}
///0x10 - SRAM/NOR-Flash chip-select control register 3
#[inline(always)]
pub const fn bcr3(&self) -> &BCR {
self.bcr(1)
}
///0x18 - SRAM/NOR-Flash chip-select control register 4
#[inline(always)]
pub const fn bcr4(&self) -> &BCR {
self.bcr(2)
}
///0x60..0x6c - PC Card/NAND Flash control register %s
#[inline(always)]
pub const fn pcr(&self, n: usize) -> &PCR {
#[allow(clippy::no_effect)] [(); 3][n];
unsafe { &*(self as *const Self).cast::<u8>().add(96).add(32 * n).cast() }
}
///Iterator for array of:
///0x60..0x6c - PC Card/NAND Flash control register %s
#[inline(always)]
pub fn pcr_iter(&self) -> impl Iterator<Item = &PCR> {
(0..3)
.map(move |n| unsafe {
&*(self as *const Self).cast::<u8>().add(96).add(32 * n).cast()
})
}
///0x60 - PC Card/NAND Flash control register 2
#[inline(always)]
pub const fn pcr2(&self) -> &PCR {
self.pcr(0)
}
///0x80 - PC Card/NAND Flash control register 3
#[inline(always)]
pub const fn pcr3(&self) -> &PCR {
self.pcr(1)
}
///0xa0 - PC Card/NAND Flash control register 4
#[inline(always)]
pub const fn pcr4(&self) -> &PCR {
self.pcr(2)
}
///0x64..0x70 - FIFO status and interrupt register %s
#[inline(always)]
pub const fn sr(&self, n: usize) -> &SR {
#[allow(clippy::no_effect)] [(); 3][n];
unsafe { &*(self as *const Self).cast::<u8>().add(100).add(32 * n).cast() }
}
///Iterator for array of:
///0x64..0x70 - FIFO status and interrupt register %s
#[inline(always)]
pub fn sr_iter(&self) -> impl Iterator<Item = &SR> {
(0..3)
.map(move |n| unsafe {
&*(self as *const Self).cast::<u8>().add(100).add(32 * n).cast()
})
}
///0x64 - FIFO status and interrupt register 2
#[inline(always)]
pub const fn sr2(&self) -> &SR {
self.sr(0)
}
///0x84 - FIFO status and interrupt register 3
#[inline(always)]
pub const fn sr3(&self) -> &SR {
self.sr(1)
}
///0xa4 - FIFO status and interrupt register 4
#[inline(always)]
pub const fn sr4(&self) -> &SR {
self.sr(2)
}
///0x68 - Common memory space timing register 2
#[inline(always)]
pub const fn pmem2(&self) -> &PMEM2 {
&self.pmem2
}
///0x6c - Attribute memory space timing register 2
#[inline(always)]
pub const fn patt2(&self) -> &PATT2 {
&self.patt2
}
///0x74 - ECC result register 2
#[inline(always)]
pub const fn eccr2(&self) -> &ECCR2 {
&self.eccr2
}
///0x88 - Common memory space timing register 3
#[inline(always)]
pub const fn pmem3(&self) -> &PMEM3 {
&self.pmem3
}
///0x8c - Attribute memory space timing register 3
#[inline(always)]
pub const fn patt3(&self) -> &PATT3 {
&self.patt3
}
///0x94 - ECC result register 3
#[inline(always)]
pub const fn eccr3(&self) -> &ECCR3 {
&self.eccr3
}
///0xa8 - Common memory space timing register 4
#[inline(always)]
pub const fn pmem4(&self) -> &PMEM4 {
&self.pmem4
}
///0xac - Attribute memory space timing register 4
#[inline(always)]
pub const fn patt4(&self) -> &PATT4 {
&self.patt4
}
///0xb0 - I/O space timing register 4
#[inline(always)]
pub const fn pio4(&self) -> &PIO4 {
&self.pio4
}
///0x104..0x114 - SRAM/NOR-Flash write timing registers %s
#[inline(always)]
pub const fn bwtr(&self, n: usize) -> &BWTR {
#[allow(clippy::no_effect)] [(); 4][n];
unsafe { &*(self as *const Self).cast::<u8>().add(260).add(8 * n).cast() }
}
///Iterator for array of:
///0x104..0x114 - SRAM/NOR-Flash write timing registers %s
#[inline(always)]
pub fn bwtr_iter(&self) -> impl Iterator<Item = &BWTR> {
(0..4)
.map(move |n| unsafe {
&*(self as *const Self).cast::<u8>().add(260).add(8 * n).cast()
})
}
///0x104 - SRAM/NOR-Flash write timing registers 1
#[inline(always)]
pub const fn bwtr1(&self) -> &BWTR {
self.bwtr(0)
}
///0x10c - SRAM/NOR-Flash write timing registers 2
#[inline(always)]
pub const fn bwtr2(&self) -> &BWTR {
self.bwtr(1)
}
///0x114 - SRAM/NOR-Flash write timing registers 3
#[inline(always)]
pub const fn bwtr3(&self) -> &BWTR {
self.bwtr(2)
}
///0x11c - SRAM/NOR-Flash write timing registers 4
#[inline(always)]
pub const fn bwtr4(&self) -> &BWTR {
self.bwtr(3)
}
}
/**BCR1 (rw) register accessor: SRAM/NOR-Flash chip-select control register 1
You can [`read`](crate::generic::Reg::read) this register and get [`bcr1::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 [`bcr1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@bcr1`]
module*/
pub type BCR1 = crate::Reg<bcr1::BCR1rs>;
///SRAM/NOR-Flash chip-select control register 1
pub mod bcr1;
/**BTR (rw) register accessor: SRAM/NOR-Flash chip-select timing register %s
You can [`read`](crate::generic::Reg::read) this register and get [`btr::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 [`btr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@btr`]
module*/
pub type BTR = crate::Reg<btr::BTRrs>;
///SRAM/NOR-Flash chip-select timing register %s
pub mod btr;
/**BCR (rw) register accessor: SRAM/NOR-Flash chip-select control register %s
You can [`read`](crate::generic::Reg::read) this register and get [`bcr::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 [`bcr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@bcr`]
module*/
pub type BCR = crate::Reg<bcr::BCRrs>;
///SRAM/NOR-Flash chip-select control register %s
pub mod bcr;
/**PCR (rw) register accessor: PC Card/NAND Flash control register %s
You can [`read`](crate::generic::Reg::read) this register and get [`pcr::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 [`pcr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@pcr`]
module*/
pub type PCR = crate::Reg<pcr::PCRrs>;
///PC Card/NAND Flash control register %s
pub mod pcr;
/**SR (rw) register accessor: FIFO status and interrupt register %s
You can [`read`](crate::generic::Reg::read) this register and get [`sr::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 [`sr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@sr`]
module*/
pub type SR = crate::Reg<sr::SRrs>;
///FIFO status and interrupt register %s
pub mod sr;
/**PMEM2 (rw) register accessor: Common memory space timing register 2
You can [`read`](crate::generic::Reg::read) this register and get [`pmem2::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 [`pmem2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@pmem2`]
module*/
pub type PMEM2 = crate::Reg<pmem2::PMEM2rs>;
///Common memory space timing register 2
pub mod pmem2;
/**PATT2 (rw) register accessor: Attribute memory space timing register 2
You can [`read`](crate::generic::Reg::read) this register and get [`patt2::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 [`patt2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@patt2`]
module*/
pub type PATT2 = crate::Reg<patt2::PATT2rs>;
///Attribute memory space timing register 2
pub mod patt2;
/**ECCR2 (r) register accessor: ECC result register 2
You can [`read`](crate::generic::Reg::read) this register and get [`eccr2::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@eccr2`]
module*/
pub type ECCR2 = crate::Reg<eccr2::ECCR2rs>;
///ECC result register 2
pub mod eccr2;
/**PMEM3 (rw) register accessor: Common memory space timing register 3
You can [`read`](crate::generic::Reg::read) this register and get [`pmem3::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 [`pmem3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@pmem3`]
module*/
pub type PMEM3 = crate::Reg<pmem3::PMEM3rs>;
///Common memory space timing register 3
pub mod pmem3;
/**PATT3 (rw) register accessor: Attribute memory space timing register 3
You can [`read`](crate::generic::Reg::read) this register and get [`patt3::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 [`patt3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@patt3`]
module*/
pub type PATT3 = crate::Reg<patt3::PATT3rs>;
///Attribute memory space timing register 3
pub mod patt3;
/**ECCR3 (r) register accessor: ECC result register 3
You can [`read`](crate::generic::Reg::read) this register and get [`eccr3::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@eccr3`]
module*/
pub type ECCR3 = crate::Reg<eccr3::ECCR3rs>;
///ECC result register 3
pub mod eccr3;
/**PMEM4 (rw) register accessor: Common memory space timing register 4
You can [`read`](crate::generic::Reg::read) this register and get [`pmem4::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 [`pmem4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@pmem4`]
module*/
pub type PMEM4 = crate::Reg<pmem4::PMEM4rs>;
///Common memory space timing register 4
pub mod pmem4;
/**PATT4 (rw) register accessor: Attribute memory space timing register 4
You can [`read`](crate::generic::Reg::read) this register and get [`patt4::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 [`patt4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@patt4`]
module*/
pub type PATT4 = crate::Reg<patt4::PATT4rs>;
///Attribute memory space timing register 4
pub mod patt4;
/**PIO4 (rw) register accessor: I/O space timing register 4
You can [`read`](crate::generic::Reg::read) this register and get [`pio4::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 [`pio4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@pio4`]
module*/
pub type PIO4 = crate::Reg<pio4::PIO4rs>;
///I/O space timing register 4
pub mod pio4;
/**BWTR (rw) register accessor: SRAM/NOR-Flash write timing registers %s
You can [`read`](crate::generic::Reg::read) this register and get [`bwtr::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 [`bwtr::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
For information about available fields see [`mod@bwtr`]
module*/
pub type BWTR = crate::Reg<bwtr::BWTRrs>;
///SRAM/NOR-Flash write timing registers %s
pub mod bwtr;