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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
///Register block
/**RIDR (r) register accessor: DDRPHYC revision ID register
You can [`read`](crate::Reg::read) this register and get [`ridr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:RIDR)
For information about available fields see [`mod@ridr`] module*/
pub type RIDR = crate Reg;
///DDRPHYC revision ID register
/**PIR (w) register accessor: DDRPHYC PHY initialization register
You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pir::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:PIR)
For information about available fields see [`mod@pir`] module*/
pub type PIR = crate Reg;
///DDRPHYC PHY initialization register
/**PGCR (rw) register accessor: DDRPHYC PHY global control register
You can [`read`](crate::Reg::read) this register and get [`pgcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pgcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:PGCR)
For information about available fields see [`mod@pgcr`] module*/
pub type PGCR = crate Reg;
///DDRPHYC PHY global control register
/**PGSR (r) register accessor: DDRPHYC PHY global status register
You can [`read`](crate::Reg::read) this register and get [`pgsr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:PGSR)
For information about available fields see [`mod@pgsr`] module*/
pub type PGSR = crate Reg;
///DDRPHYC PHY global status register
/**DLLGCR (rw) register accessor: DDRPHYC DDR global control register
You can [`read`](crate::Reg::read) this register and get [`dllgcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dllgcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DLLGCR)
For information about available fields see [`mod@dllgcr`] module*/
pub type DLLGCR = crate Reg;
///DDRPHYC DDR global control register
/**ACDLLCR (rw) register accessor: DDRPHYC AC DLL control register
You can [`read`](crate::Reg::read) this register and get [`acdllcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`acdllcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:ACDLLCR)
For information about available fields see [`mod@acdllcr`] module*/
pub type ACDLLCR = crate Reg;
///DDRPHYC AC DLL control register
/**PTR0 (rw) register accessor: DDRPHYC PT register 0
You can [`read`](crate::Reg::read) this register and get [`ptr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ptr0::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:PTR0)
For information about available fields see [`mod@ptr0`] module*/
pub type PTR0 = crate Reg;
///DDRPHYC PT register 0
/**PTR1 (rw) register accessor: DDRPHYC PT register 1
You can [`read`](crate::Reg::read) this register and get [`ptr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ptr1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:PTR1)
For information about available fields see [`mod@ptr1`] module*/
pub type PTR1 = crate Reg;
///DDRPHYC PT register 1
/**PTR2 (rw) register accessor: DDRPHYC PT register 2
You can [`read`](crate::Reg::read) this register and get [`ptr2::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ptr2::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:PTR2)
For information about available fields see [`mod@ptr2`] module*/
pub type PTR2 = crate Reg;
///DDRPHYC PT register 2
/**ACIOCR (rw) register accessor: DDRPHYC ACIOC register
You can [`read`](crate::Reg::read) this register and get [`aciocr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`aciocr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:ACIOCR)
For information about available fields see [`mod@aciocr`] module*/
pub type ACIOCR = crate Reg;
///DDRPHYC ACIOC register
/**DXCCR (rw) register accessor: DDRPHYC DXCC register
You can [`read`](crate::Reg::read) this register and get [`dxccr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dxccr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DXCCR)
For information about available fields see [`mod@dxccr`] module*/
pub type DXCCR = crate Reg;
///DDRPHYC DXCC register
/**DSGCR (rw) register accessor: DDRPHYC DSGC register
You can [`read`](crate::Reg::read) this register and get [`dsgcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dsgcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DSGCR)
For information about available fields see [`mod@dsgcr`] module*/
pub type DSGCR = crate Reg;
///DDRPHYC DSGC register
/**DCR (rw) register accessor: DDRPHYC DC register
You can [`read`](crate::Reg::read) this register and get [`dcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DCR)
For information about available fields see [`mod@dcr`] module*/
pub type DCR = crate Reg;
///DDRPHYC DC register
/**DTPR0 (rw) register accessor: DDRPHYC DTP register 0
You can [`read`](crate::Reg::read) this register and get [`dtpr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dtpr0::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DTPR0)
For information about available fields see [`mod@dtpr0`] module*/
pub type DTPR0 = crate Reg;
///DDRPHYC DTP register 0
/**DTPR1 (rw) register accessor: DDRPHYC DTP register 1
You can [`read`](crate::Reg::read) this register and get [`dtpr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dtpr1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DTPR1)
For information about available fields see [`mod@dtpr1`] module*/
pub type DTPR1 = crate Reg;
///DDRPHYC DTP register 1
/**DTPR2 (rw) register accessor: DDRPHYC DTP register 2
You can [`read`](crate::Reg::read) this register and get [`dtpr2::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dtpr2::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DTPR2)
For information about available fields see [`mod@dtpr2`] module*/
pub type DTPR2 = crate Reg;
///DDRPHYC DTP register 2
/**DDR3_MR0 (rw) register accessor: DDRPHYC MR0 register for DDR3
You can [`read`](crate::Reg::read) this register and get [`ddr3_mr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ddr3_mr0::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DDR3_MR0)
For information about available fields see [`mod@ddr3_mr0`] module*/
pub type DDR3_MR0 = crate Reg;
///DDRPHYC MR0 register for DDR3
/**DDR3_MR1 (rw) register accessor: DDRPHYC MR1 register for DDR3
You can [`read`](crate::Reg::read) this register and get [`ddr3_mr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ddr3_mr1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DDR3_MR1)
For information about available fields see [`mod@ddr3_mr1`] module*/
pub type DDR3_MR1 = crate Reg;
///DDRPHYC MR1 register for DDR3
/**DDR3_MR2 (rw) register accessor: DDRPHYC MR2 register for DDR3
You can [`read`](crate::Reg::read) this register and get [`ddr3_mr2::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ddr3_mr2::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DDR3_MR2)
For information about available fields see [`mod@ddr3_mr2`] module*/
pub type DDR3_MR2 = crate Reg;
///DDRPHYC MR2 register for DDR3
/**DDR3_MR3 (rw) register accessor: DDRPHYC MR3 register for DDR3
You can [`read`](crate::Reg::read) this register and get [`ddr3_mr3::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ddr3_mr3::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DDR3_MR3)
For information about available fields see [`mod@ddr3_mr3`] module*/
pub type DDR3_MR3 = crate Reg;
///DDRPHYC MR3 register for DDR3
/**ODTCR (rw) register accessor: DDRPHYC ODTC register
You can [`read`](crate::Reg::read) this register and get [`odtcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`odtcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:ODTCR)
For information about available fields see [`mod@odtcr`] module*/
pub type ODTCR = crate Reg;
///DDRPHYC ODTC register
/**DTAR (rw) register accessor: DDRPHYC DTA register
You can [`read`](crate::Reg::read) this register and get [`dtar::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dtar::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DTAR)
For information about available fields see [`mod@dtar`] module*/
pub type DTAR = crate Reg;
///DDRPHYC DTA register
/**DTDR0 (rw) register accessor: DDRPHYC DTD register 0
You can [`read`](crate::Reg::read) this register and get [`dtdr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dtdr0::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DTDR0)
For information about available fields see [`mod@dtdr0`] module*/
pub type DTDR0 = crate Reg;
///DDRPHYC DTD register 0
/**DTDR1 (rw) register accessor: DDRPHYC DTD register 1
You can [`read`](crate::Reg::read) this register and get [`dtdr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dtdr1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DTDR1)
For information about available fields see [`mod@dtdr1`] module*/
pub type DTDR1 = crate Reg;
///DDRPHYC DTD register 1
/**GPR0 (rw) register accessor: DDRPHYC general purpose register 0
You can [`read`](crate::Reg::read) this register and get [`gpr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`gpr0::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:GPR0)
For information about available fields see [`mod@gpr0`] module*/
pub type GPR0 = crate Reg;
///DDRPHYC general purpose register 0
/**GPR1 (rw) register accessor: DDRPHYC general purpose register 1
You can [`read`](crate::Reg::read) this register and get [`gpr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`gpr1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:GPR1)
For information about available fields see [`mod@gpr1`] module*/
pub type GPR1 = crate Reg;
///DDRPHYC general purpose register 1
/**ZQ0CR0 (rw) register accessor: DDRPHYC ZQ0C register 0
You can [`read`](crate::Reg::read) this register and get [`zq0cr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`zq0cr0::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:ZQ0CR0)
For information about available fields see [`mod@zq0cr0`] module*/
pub type ZQ0CR0 = crate Reg;
///DDRPHYC ZQ0C register 0
/**ZQ0CR1 (rw) register accessor: DDRPHYC ZQ0CR1 register
You can [`read`](crate::Reg::read) this register and get [`zq0cr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`zq0cr1::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:ZQ0CR1)
For information about available fields see [`mod@zq0cr1`] module*/
pub type ZQ0CR1 = crate Reg;
///DDRPHYC ZQ0CR1 register
/**ZQ0SR0 (r) register accessor: DDRPHYC ZQ0S register 0
You can [`read`](crate::Reg::read) this register and get [`zq0sr0::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:ZQ0SR0)
For information about available fields see [`mod@zq0sr0`] module*/
pub type ZQ0SR0 = crate Reg;
///DDRPHYC ZQ0S register 0
/**ZQ0SR1 (r) register accessor: DDRPHYC ZQ0S register 1
You can [`read`](crate::Reg::read) this register and get [`zq0sr1::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:ZQ0SR1)
For information about available fields see [`mod@zq0sr1`] module*/
pub type ZQ0SR1 = crate Reg;
///DDRPHYC ZQ0S register 1
/**DX0GCR (rw) register accessor: DDRPHYC byte lane 0 GC register
You can [`read`](crate::Reg::read) this register and get [`dx0gcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx0gcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX0GCR)
For information about available fields see [`mod@dx0gcr`] module*/
pub type DX0GCR = crate Reg;
///DDRPHYC byte lane 0 GC register
/**DX0GSR0 (r) register accessor: DDRPHYC byte lane 0 GS register 0
You can [`read`](crate::Reg::read) this register and get [`dx0gsr0::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX0GSR0)
For information about available fields see [`mod@dx0gsr0`] module*/
pub type DX0GSR0 = crate Reg;
///DDRPHYC byte lane 0 GS register 0
/**DX0GSR1 (r) register accessor: DDRPHYC byte lane 0 GS register 1
You can [`read`](crate::Reg::read) this register and get [`dx0gsr1::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX0GSR1)
For information about available fields see [`mod@dx0gsr1`] module*/
pub type DX0GSR1 = crate Reg;
///DDRPHYC byte lane 0 GS register 1
/**DX0DLLCR (rw) register accessor: DDRPHYC byte lane 0 DLLC register
You can [`read`](crate::Reg::read) this register and get [`dx0dllcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx0dllcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX0DLLCR)
For information about available fields see [`mod@dx0dllcr`] module*/
pub type DX0DLLCR = crate Reg;
///DDRPHYC byte lane 0 DLLC register
/**DX0DQTR (rw) register accessor: DDRPHYC byte lane 0 DQT register
You can [`read`](crate::Reg::read) this register and get [`dx0dqtr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx0dqtr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX0DQTR)
For information about available fields see [`mod@dx0dqtr`] module*/
pub type DX0DQTR = crate Reg;
///DDRPHYC byte lane 0 DQT register
/**DX0DQSTR (rw) register accessor: DDRPHYC byte lane 0 DQST register
You can [`read`](crate::Reg::read) this register and get [`dx0dqstr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx0dqstr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX0DQSTR)
For information about available fields see [`mod@dx0dqstr`] module*/
pub type DX0DQSTR = crate Reg;
///DDRPHYC byte lane 0 DQST register
/**DX1GCR (rw) register accessor: DDRPHYC byte lane 1 GC register
You can [`read`](crate::Reg::read) this register and get [`dx1gcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx1gcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX1GCR)
For information about available fields see [`mod@dx1gcr`] module*/
pub type DX1GCR = crate Reg;
///DDRPHYC byte lane 1 GC register
/**DX1GSR0 (r) register accessor: DDRPHYC byte lane 1 GS register 0
You can [`read`](crate::Reg::read) this register and get [`dx1gsr0::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX1GSR0)
For information about available fields see [`mod@dx1gsr0`] module*/
pub type DX1GSR0 = crate Reg;
///DDRPHYC byte lane 1 GS register 0
/**DX1GSR1 (r) register accessor: DDRPHYC byte lane 1 GS register 1
You can [`read`](crate::Reg::read) this register and get [`dx1gsr1::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX1GSR1)
For information about available fields see [`mod@dx1gsr1`] module*/
pub type DX1GSR1 = crate Reg;
///DDRPHYC byte lane 1 GS register 1
/**DX1DLLCR (rw) register accessor: DDRPHYC byte lane 1 DLLC register
You can [`read`](crate::Reg::read) this register and get [`dx1dllcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx1dllcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX1DLLCR)
For information about available fields see [`mod@dx1dllcr`] module*/
pub type DX1DLLCR = crate Reg;
///DDRPHYC byte lane 1 DLLC register
/**DX1DQTR (rw) register accessor: DDRPHYC byte lane 1 DQT register
You can [`read`](crate::Reg::read) this register and get [`dx1dqtr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx1dqtr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX1DQTR)
For information about available fields see [`mod@dx1dqtr`] module*/
pub type DX1DQTR = crate Reg;
///DDRPHYC byte lane 1 DQT register
/**DX1DQSTR (rw) register accessor: DDRPHYC byte lane 1 DQST register
You can [`read`](crate::Reg::read) this register and get [`dx1dqstr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx1dqstr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX1DQSTR)
For information about available fields see [`mod@dx1dqstr`] module*/
pub type DX1DQSTR = crate Reg;
///DDRPHYC byte lane 1 DQST register
/**DX2GCR (rw) register accessor: DDRPHYC byte lane 2 GC register
You can [`read`](crate::Reg::read) this register and get [`dx2gcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx2gcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX2GCR)
For information about available fields see [`mod@dx2gcr`] module*/
pub type DX2GCR = crate Reg;
///DDRPHYC byte lane 2 GC register
/**DX2GSR0 (r) register accessor: DDRPHYC byte lane 2 GS register 0
You can [`read`](crate::Reg::read) this register and get [`dx2gsr0::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX2GSR0)
For information about available fields see [`mod@dx2gsr0`] module*/
pub type DX2GSR0 = crate Reg;
///DDRPHYC byte lane 2 GS register 0
/**DX2GSR1 (r) register accessor: DDRPHYC byte lane 2 GS register 1
You can [`read`](crate::Reg::read) this register and get [`dx2gsr1::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX2GSR1)
For information about available fields see [`mod@dx2gsr1`] module*/
pub type DX2GSR1 = crate Reg;
///DDRPHYC byte lane 2 GS register 1
/**DX2DLLCR (rw) register accessor: DDRPHYC byte lane 2 DLLC register
You can [`read`](crate::Reg::read) this register and get [`dx2dllcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx2dllcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX2DLLCR)
For information about available fields see [`mod@dx2dllcr`] module*/
pub type DX2DLLCR = crate Reg;
///DDRPHYC byte lane 2 DLLC register
/**DX2DQTR (rw) register accessor: DDRPHYC byte lane 2 DQT register
You can [`read`](crate::Reg::read) this register and get [`dx2dqtr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx2dqtr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX2DQTR)
For information about available fields see [`mod@dx2dqtr`] module*/
pub type DX2DQTR = crate Reg;
///DDRPHYC byte lane 2 DQT register
/**DX2DQSTR (rw) register accessor: DDRPHYC byte lane 2 DQST register
You can [`read`](crate::Reg::read) this register and get [`dx2dqstr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx2dqstr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX2DQSTR)
For information about available fields see [`mod@dx2dqstr`] module*/
pub type DX2DQSTR = crate Reg;
///DDRPHYC byte lane 2 DQST register
/**DX3GCR (rw) register accessor: DDRPHYC byte lane 3 GC register
You can [`read`](crate::Reg::read) this register and get [`dx3gcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx3gcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX3GCR)
For information about available fields see [`mod@dx3gcr`] module*/
pub type DX3GCR = crate Reg;
///DDRPHYC byte lane 3 GC register
/**DX3GSR0 (r) register accessor: DDRPHYC byte lane 3 GS register 0
You can [`read`](crate::Reg::read) this register and get [`dx3gsr0::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX3GSR0)
For information about available fields see [`mod@dx3gsr0`] module*/
pub type DX3GSR0 = crate Reg;
///DDRPHYC byte lane 3 GS register 0
/**DX3GSR1 (r) register accessor: DDRPHYC byte lane 3 GS register 1
You can [`read`](crate::Reg::read) this register and get [`dx3gsr1::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX3GSR1)
For information about available fields see [`mod@dx3gsr1`] module*/
pub type DX3GSR1 = crate Reg;
///DDRPHYC byte lane 3 GS register 1
/**DX3DLLCR (rw) register accessor: DDRPHYC byte lane 3 DLLC register
You can [`read`](crate::Reg::read) this register and get [`dx3dllcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx3dllcr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX3DLLCR)
For information about available fields see [`mod@dx3dllcr`] module*/
pub type DX3DLLCR = crate Reg;
///DDRPHYC byte lane 3 DLLC register
/**DX3DQTR (rw) register accessor: DDRPHYC byte lane 3 DQT register
You can [`read`](crate::Reg::read) this register and get [`dx3dqtr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx3dqtr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX3DQTR)
For information about available fields see [`mod@dx3dqtr`] module*/
pub type DX3DQTR = crate Reg;
///DDRPHYC byte lane 3 DQT register
/**DX3DQSTR (rw) register accessor: DDRPHYC byte lane 3 DQST register
You can [`read`](crate::Reg::read) this register and get [`dx3dqstr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dx3dqstr::W`]. You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).
See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DDRPHYC:DX3DQSTR)
For information about available fields see [`mod@dx3dqstr`] module*/
pub type DX3DQSTR = crate Reg;
///DDRPHYC byte lane 3 DQST register