stm32mp1 0.16.0

Device support crates for STM32MP1 devices
Documentation
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
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
#[repr(C)]
#[derive(Debug)]
///Register block
pub struct RegisterBlock {
    vr: VR,
    cr: CR,
    ccr: CCR,
    lvcidr: LVCIDR,
    lcolcr: LCOLCR,
    lpcr: LPCR,
    lpmcr: LPMCR,
    _reserved7: [u8; 0x10],
    pcr: PCR,
    gvcidr: GVCIDR,
    mcr: MCR,
    vmcr: VMCR,
    vpcr: VPCR,
    vccr: VCCR,
    vnpcr: VNPCR,
    vhsacr: VHSACR,
    vhbpcr: VHBPCR,
    vlcr: VLCR,
    vvsacr: VVSACR,
    vvbpcr: VVBPCR,
    vvfpcr: VVFPCR,
    vvacr: VVACR,
    lccr: LCCR,
    cmcr: CMCR,
    ghcr: GHCR,
    gpdr: GPDR,
    gpsr: GPSR,
    tccr0: TCCR0,
    tccr1: TCCR1,
    tccr2: TCCR2,
    tccr3: TCCR3,
    tccr4: TCCR4,
    tccr5: TCCR5,
    _reserved32: [u8; 0x04],
    clcr: CLCR,
    cltcr: CLTCR,
    dltcr: DLTCR,
    pctlr: PCTLR,
    pconfr: PCONFR,
    pucr: PUCR,
    pttcr: PTTCR,
    psr: PSR,
    _reserved40: [u8; 0x08],
    isr0: ISR0,
    isr1: ISR1,
    ier0: IER0,
    ier1: IER1,
    _reserved44: [u8; 0x0c],
    fir0: FIR0,
    fir1: FIR1,
    _reserved46: [u8; 0x14],
    dltrcr: DLTRCR,
    _reserved47: [u8; 0x08],
    vscr: VSCR,
    _reserved48: [u8; 0x08],
    lcvcidr: LCVCIDR,
    lcccr: LCCCR,
    _reserved50: [u8; 0x04],
    lpmccr: LPMCCR,
    _reserved51: [u8; 0x1c],
    vmccr: VMCCR,
    vpccr: VPCCR,
    vcccr: VCCCR,
    vnpccr: VNPCCR,
    vhsaccr: VHSACCR,
    vhbpccr: VHBPCCR,
    vlccr: VLCCR,
    vvsaccr: VVSACCR,
    vvbpccr: VVBPCCR,
    vvfpccr: VVFPCCR,
    vvaccr: VVACCR,
    _reserved62: [u8; 0x029c],
    wcfgr: WCFGR,
    wcr: WCR,
    wier: WIER,
    wisr: WISR,
    wifcr: WIFCR,
    _reserved67: [u8; 0x04],
    wpcr0: WPCR0,
    wpcr1: WPCR1,
    _reserved69: [u8; 0x10],
    wrpcr: WRPCR,
    _reserved70: [u8; 0x03bc],
    hwcfgr: HWCFGR,
    verr: VERR,
    ipidr: IPIDR,
    sidr: SIDR,
}
impl RegisterBlock {
    ///0x00 - DSI Host version register
    #[inline(always)]
    pub const fn vr(&self) -> &VR {
        &self.vr
    }
    ///0x04 - DSI Host control register
    #[inline(always)]
    pub const fn cr(&self) -> &CR {
        &self.cr
    }
    ///0x08 - DSI Host clock control register
    #[inline(always)]
    pub const fn ccr(&self) -> &CCR {
        &self.ccr
    }
    ///0x0c - DSI Host LTDC VCID register
    #[inline(always)]
    pub const fn lvcidr(&self) -> &LVCIDR {
        &self.lvcidr
    }
    ///0x10 - DSI Host LTDC color coding register
    #[inline(always)]
    pub const fn lcolcr(&self) -> &LCOLCR {
        &self.lcolcr
    }
    ///0x14 - DSI Host LTDC polarity configuration register
    #[inline(always)]
    pub const fn lpcr(&self) -> &LPCR {
        &self.lpcr
    }
    ///0x18 - DSI Host low-power mode configuration register
    #[inline(always)]
    pub const fn lpmcr(&self) -> &LPMCR {
        &self.lpmcr
    }
    ///0x2c - DSI Host protocol configuration register
    #[inline(always)]
    pub const fn pcr(&self) -> &PCR {
        &self.pcr
    }
    ///0x30 - DSI Host generic VCID register
    #[inline(always)]
    pub const fn gvcidr(&self) -> &GVCIDR {
        &self.gvcidr
    }
    ///0x34 - DSI Host mode configuration register
    #[inline(always)]
    pub const fn mcr(&self) -> &MCR {
        &self.mcr
    }
    ///0x38 - DSI Host video mode configuration register
    #[inline(always)]
    pub const fn vmcr(&self) -> &VMCR {
        &self.vmcr
    }
    ///0x3c - DSI Host video packet configuration register
    #[inline(always)]
    pub const fn vpcr(&self) -> &VPCR {
        &self.vpcr
    }
    ///0x40 - DSI Host video chunks configuration register
    #[inline(always)]
    pub const fn vccr(&self) -> &VCCR {
        &self.vccr
    }
    ///0x44 - DSI Host video null packet configuration register
    #[inline(always)]
    pub const fn vnpcr(&self) -> &VNPCR {
        &self.vnpcr
    }
    ///0x48 - DSI Host video HSA configuration register
    #[inline(always)]
    pub const fn vhsacr(&self) -> &VHSACR {
        &self.vhsacr
    }
    ///0x4c - DSI Host video HBP configuration register
    #[inline(always)]
    pub const fn vhbpcr(&self) -> &VHBPCR {
        &self.vhbpcr
    }
    ///0x50 - DSI Host video line configuration register
    #[inline(always)]
    pub const fn vlcr(&self) -> &VLCR {
        &self.vlcr
    }
    ///0x54 - DSI Host video VSA configuration register
    #[inline(always)]
    pub const fn vvsacr(&self) -> &VVSACR {
        &self.vvsacr
    }
    ///0x58 - DSI Host video VBP configuration register
    #[inline(always)]
    pub const fn vvbpcr(&self) -> &VVBPCR {
        &self.vvbpcr
    }
    ///0x5c - DSI Host video VFP configuration register
    #[inline(always)]
    pub const fn vvfpcr(&self) -> &VVFPCR {
        &self.vvfpcr
    }
    ///0x60 - DSI Host video VA configuration register
    #[inline(always)]
    pub const fn vvacr(&self) -> &VVACR {
        &self.vvacr
    }
    ///0x64 - DSI Host LTDC command configuration register
    #[inline(always)]
    pub const fn lccr(&self) -> &LCCR {
        &self.lccr
    }
    ///0x68 - DSI Host command mode configuration register
    #[inline(always)]
    pub const fn cmcr(&self) -> &CMCR {
        &self.cmcr
    }
    ///0x6c - DSI Host generic header configuration register
    #[inline(always)]
    pub const fn ghcr(&self) -> &GHCR {
        &self.ghcr
    }
    ///0x70 - DSI Host generic payload data register
    #[inline(always)]
    pub const fn gpdr(&self) -> &GPDR {
        &self.gpdr
    }
    ///0x74 - DSI Host generic packet status register
    #[inline(always)]
    pub const fn gpsr(&self) -> &GPSR {
        &self.gpsr
    }
    ///0x78 - DSI Host timeout counter configuration register 0
    #[inline(always)]
    pub const fn tccr0(&self) -> &TCCR0 {
        &self.tccr0
    }
    ///0x7c - DSI Host timeout counter configuration register 1
    #[inline(always)]
    pub const fn tccr1(&self) -> &TCCR1 {
        &self.tccr1
    }
    ///0x80 - DSI Host timeout counter configuration register 2
    #[inline(always)]
    pub const fn tccr2(&self) -> &TCCR2 {
        &self.tccr2
    }
    ///0x84 - DSI Host timeout counter configuration register 3
    #[inline(always)]
    pub const fn tccr3(&self) -> &TCCR3 {
        &self.tccr3
    }
    ///0x88 - DSI Host timeout counter configuration register 4
    #[inline(always)]
    pub const fn tccr4(&self) -> &TCCR4 {
        &self.tccr4
    }
    ///0x8c - DSI Host timeout counter configuration register 5
    #[inline(always)]
    pub const fn tccr5(&self) -> &TCCR5 {
        &self.tccr5
    }
    ///0x94 - DSI Host clock lane configuration register
    #[inline(always)]
    pub const fn clcr(&self) -> &CLCR {
        &self.clcr
    }
    ///0x98 - DSI Host clock lane timer configuration register
    #[inline(always)]
    pub const fn cltcr(&self) -> &CLTCR {
        &self.cltcr
    }
    ///0x9c - DSI Host data lane timer configuration register
    #[inline(always)]
    pub const fn dltcr(&self) -> &DLTCR {
        &self.dltcr
    }
    ///0xa0 - DSI Host PHY control register
    #[inline(always)]
    pub const fn pctlr(&self) -> &PCTLR {
        &self.pctlr
    }
    ///0xa4 - DSI Host PHY configuration register
    #[inline(always)]
    pub const fn pconfr(&self) -> &PCONFR {
        &self.pconfr
    }
    ///0xa8 - DSI Host PHY ULPS control register
    #[inline(always)]
    pub const fn pucr(&self) -> &PUCR {
        &self.pucr
    }
    ///0xac - DSI Host PHY TX triggers configuration register
    #[inline(always)]
    pub const fn pttcr(&self) -> &PTTCR {
        &self.pttcr
    }
    ///0xb0 - DSI Host PHY status register
    #[inline(always)]
    pub const fn psr(&self) -> &PSR {
        &self.psr
    }
    ///0xbc - DSI Host interrupt and status register 0
    #[inline(always)]
    pub const fn isr0(&self) -> &ISR0 {
        &self.isr0
    }
    ///0xc0 - DSI Host interrupt and status register 1
    #[inline(always)]
    pub const fn isr1(&self) -> &ISR1 {
        &self.isr1
    }
    ///0xc4 - DSI Host interrupt enable register 0
    #[inline(always)]
    pub const fn ier0(&self) -> &IER0 {
        &self.ier0
    }
    ///0xc8 - DSI Host interrupt enable register 1
    #[inline(always)]
    pub const fn ier1(&self) -> &IER1 {
        &self.ier1
    }
    ///0xd8 - DSI Host force interrupt register 0
    #[inline(always)]
    pub const fn fir0(&self) -> &FIR0 {
        &self.fir0
    }
    ///0xdc - DSI Host force interrupt register 1
    #[inline(always)]
    pub const fn fir1(&self) -> &FIR1 {
        &self.fir1
    }
    ///0xf4 - DSI Host data lane timer read configuration register
    #[inline(always)]
    pub const fn dltrcr(&self) -> &DLTRCR {
        &self.dltrcr
    }
    ///0x100 - DSI Host video shadow control register
    #[inline(always)]
    pub const fn vscr(&self) -> &VSCR {
        &self.vscr
    }
    ///0x10c - DSI Host LTDC current VCID register
    #[inline(always)]
    pub const fn lcvcidr(&self) -> &LCVCIDR {
        &self.lcvcidr
    }
    ///0x110 - DSI Host LTDC current color coding register
    #[inline(always)]
    pub const fn lcccr(&self) -> &LCCCR {
        &self.lcccr
    }
    ///0x118 - DSI Host low-power mode current configuration register
    #[inline(always)]
    pub const fn lpmccr(&self) -> &LPMCCR {
        &self.lpmccr
    }
    ///0x138 - DSI Host video mode current configuration register
    #[inline(always)]
    pub const fn vmccr(&self) -> &VMCCR {
        &self.vmccr
    }
    ///0x13c - DSI Host video packet current configuration register
    #[inline(always)]
    pub const fn vpccr(&self) -> &VPCCR {
        &self.vpccr
    }
    ///0x140 - DSI Host video chunks current configuration register
    #[inline(always)]
    pub const fn vcccr(&self) -> &VCCCR {
        &self.vcccr
    }
    ///0x144 - DSI Host video null packet current configuration register
    #[inline(always)]
    pub const fn vnpccr(&self) -> &VNPCCR {
        &self.vnpccr
    }
    ///0x148 - DSI Host video HSA current configuration register
    #[inline(always)]
    pub const fn vhsaccr(&self) -> &VHSACCR {
        &self.vhsaccr
    }
    ///0x14c - DSI Host video HBP current configuration register
    #[inline(always)]
    pub const fn vhbpccr(&self) -> &VHBPCCR {
        &self.vhbpccr
    }
    ///0x150 - DSI Host video line current configuration register
    #[inline(always)]
    pub const fn vlccr(&self) -> &VLCCR {
        &self.vlccr
    }
    ///0x154 - DSI Host video VSA current configuration register
    #[inline(always)]
    pub const fn vvsaccr(&self) -> &VVSACCR {
        &self.vvsaccr
    }
    ///0x158 - DSI Host video VBP current configuration register
    #[inline(always)]
    pub const fn vvbpccr(&self) -> &VVBPCCR {
        &self.vvbpccr
    }
    ///0x15c - DSI Host video VFP current configuration register
    #[inline(always)]
    pub const fn vvfpccr(&self) -> &VVFPCCR {
        &self.vvfpccr
    }
    ///0x160 - DSI Host video VA current configuration register
    #[inline(always)]
    pub const fn vvaccr(&self) -> &VVACCR {
        &self.vvaccr
    }
    ///0x400 - DSI wrapper configuration register
    #[inline(always)]
    pub const fn wcfgr(&self) -> &WCFGR {
        &self.wcfgr
    }
    ///0x404 - DSI wrapper control register
    #[inline(always)]
    pub const fn wcr(&self) -> &WCR {
        &self.wcr
    }
    ///0x408 - DSI wrapper interrupt enable register
    #[inline(always)]
    pub const fn wier(&self) -> &WIER {
        &self.wier
    }
    ///0x40c - DSI wrapper interrupt and status register
    #[inline(always)]
    pub const fn wisr(&self) -> &WISR {
        &self.wisr
    }
    ///0x410 - DSI wrapper interrupt flag clear register
    #[inline(always)]
    pub const fn wifcr(&self) -> &WIFCR {
        &self.wifcr
    }
    ///0x418 - DSI wrapper PHY configuration register 0
    #[inline(always)]
    pub const fn wpcr0(&self) -> &WPCR0 {
        &self.wpcr0
    }
    ///0x41c - This register shall be programmed only when DSI is stopped (CR. DSIEN=0 and CR.EN = 0).
    #[inline(always)]
    pub const fn wpcr1(&self) -> &WPCR1 {
        &self.wpcr1
    }
    ///0x430 - DSI wrapper regulator and PLL control register
    #[inline(always)]
    pub const fn wrpcr(&self) -> &WRPCR {
        &self.wrpcr
    }
    ///0x7f0 - DSI Host hardware configuration register
    #[inline(always)]
    pub const fn hwcfgr(&self) -> &HWCFGR {
        &self.hwcfgr
    }
    ///0x7f4 - DSI Host version register
    #[inline(always)]
    pub const fn verr(&self) -> &VERR {
        &self.verr
    }
    ///0x7f8 - DSI Host identification register
    #[inline(always)]
    pub const fn ipidr(&self) -> &IPIDR {
        &self.ipidr
    }
    ///0x7fc - DSI Host size identification register
    #[inline(always)]
    pub const fn sidr(&self) -> &SIDR {
        &self.sidr
    }
}
/**VR (r) register accessor: DSI Host version register

You can [`read`](crate::Reg::read) this register and get [`vr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VR)

For information about available fields see [`mod@vr`] module*/
pub type VR = crate::Reg<vr::VRrs>;
///DSI Host version register
pub mod vr;
/**CR (rw) register accessor: DSI Host control register

You can [`read`](crate::Reg::read) this register and get [`cr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`cr::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#DSI:CR)

For information about available fields see [`mod@cr`] module*/
pub type CR = crate::Reg<cr::CRrs>;
///DSI Host control register
pub mod cr;
/**CCR (rw) register accessor: DSI Host clock control register

You can [`read`](crate::Reg::read) this register and get [`ccr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ccr::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#DSI:CCR)

For information about available fields see [`mod@ccr`] module*/
pub type CCR = crate::Reg<ccr::CCRrs>;
///DSI Host clock control register
pub mod ccr;
/**LVCIDR (rw) register accessor: DSI Host LTDC VCID register

You can [`read`](crate::Reg::read) this register and get [`lvcidr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lvcidr::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#DSI:LVCIDR)

For information about available fields see [`mod@lvcidr`] module*/
pub type LVCIDR = crate::Reg<lvcidr::LVCIDRrs>;
///DSI Host LTDC VCID register
pub mod lvcidr;
/**LCOLCR (rw) register accessor: DSI Host LTDC color coding register

You can [`read`](crate::Reg::read) this register and get [`lcolcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lcolcr::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#DSI:LCOLCR)

For information about available fields see [`mod@lcolcr`] module*/
pub type LCOLCR = crate::Reg<lcolcr::LCOLCRrs>;
///DSI Host LTDC color coding register
pub mod lcolcr;
/**LPCR (rw) register accessor: DSI Host LTDC polarity configuration register

You can [`read`](crate::Reg::read) this register and get [`lpcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lpcr::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#DSI:LPCR)

For information about available fields see [`mod@lpcr`] module*/
pub type LPCR = crate::Reg<lpcr::LPCRrs>;
///DSI Host LTDC polarity configuration register
pub mod lpcr;
/**LPMCR (rw) register accessor: DSI Host low-power mode configuration register

You can [`read`](crate::Reg::read) this register and get [`lpmcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lpmcr::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#DSI:LPMCR)

For information about available fields see [`mod@lpmcr`] module*/
pub type LPMCR = crate::Reg<lpmcr::LPMCRrs>;
///DSI Host low-power mode configuration register
pub mod lpmcr;
/**PCR (rw) register accessor: DSI Host protocol configuration register

You can [`read`](crate::Reg::read) this register and get [`pcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pcr::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#DSI:PCR)

For information about available fields see [`mod@pcr`] module*/
pub type PCR = crate::Reg<pcr::PCRrs>;
///DSI Host protocol configuration register
pub mod pcr;
/**GVCIDR (r) register accessor: DSI Host generic VCID register

You can [`read`](crate::Reg::read) this register and get [`gvcidr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:GVCIDR)

For information about available fields see [`mod@gvcidr`] module*/
pub type GVCIDR = crate::Reg<gvcidr::GVCIDRrs>;
///DSI Host generic VCID register
pub mod gvcidr;
/**MCR (rw) register accessor: DSI Host mode configuration register

You can [`read`](crate::Reg::read) this register and get [`mcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`mcr::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#DSI:MCR)

For information about available fields see [`mod@mcr`] module*/
pub type MCR = crate::Reg<mcr::MCRrs>;
///DSI Host mode configuration register
pub mod mcr;
/**VMCR (rw) register accessor: DSI Host video mode configuration register

You can [`read`](crate::Reg::read) this register and get [`vmcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vmcr::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#DSI:VMCR)

For information about available fields see [`mod@vmcr`] module*/
pub type VMCR = crate::Reg<vmcr::VMCRrs>;
///DSI Host video mode configuration register
pub mod vmcr;
/**VPCR (rw) register accessor: DSI Host video packet configuration register

You can [`read`](crate::Reg::read) this register and get [`vpcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vpcr::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#DSI:VPCR)

For information about available fields see [`mod@vpcr`] module*/
pub type VPCR = crate::Reg<vpcr::VPCRrs>;
///DSI Host video packet configuration register
pub mod vpcr;
/**VCCR (rw) register accessor: DSI Host video chunks configuration register

You can [`read`](crate::Reg::read) this register and get [`vccr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vccr::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#DSI:VCCR)

For information about available fields see [`mod@vccr`] module*/
pub type VCCR = crate::Reg<vccr::VCCRrs>;
///DSI Host video chunks configuration register
pub mod vccr;
/**VNPCR (rw) register accessor: DSI Host video null packet configuration register

You can [`read`](crate::Reg::read) this register and get [`vnpcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vnpcr::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#DSI:VNPCR)

For information about available fields see [`mod@vnpcr`] module*/
pub type VNPCR = crate::Reg<vnpcr::VNPCRrs>;
///DSI Host video null packet configuration register
pub mod vnpcr;
/**VHSACR (rw) register accessor: DSI Host video HSA configuration register

You can [`read`](crate::Reg::read) this register and get [`vhsacr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vhsacr::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#DSI:VHSACR)

For information about available fields see [`mod@vhsacr`] module*/
pub type VHSACR = crate::Reg<vhsacr::VHSACRrs>;
///DSI Host video HSA configuration register
pub mod vhsacr;
/**VHBPCR (rw) register accessor: DSI Host video HBP configuration register

You can [`read`](crate::Reg::read) this register and get [`vhbpcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vhbpcr::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#DSI:VHBPCR)

For information about available fields see [`mod@vhbpcr`] module*/
pub type VHBPCR = crate::Reg<vhbpcr::VHBPCRrs>;
///DSI Host video HBP configuration register
pub mod vhbpcr;
/**VLCR (rw) register accessor: DSI Host video line configuration register

You can [`read`](crate::Reg::read) this register and get [`vlcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vlcr::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#DSI:VLCR)

For information about available fields see [`mod@vlcr`] module*/
pub type VLCR = crate::Reg<vlcr::VLCRrs>;
///DSI Host video line configuration register
pub mod vlcr;
/**VVSACR (rw) register accessor: DSI Host video VSA configuration register

You can [`read`](crate::Reg::read) this register and get [`vvsacr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vvsacr::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#DSI:VVSACR)

For information about available fields see [`mod@vvsacr`] module*/
pub type VVSACR = crate::Reg<vvsacr::VVSACRrs>;
///DSI Host video VSA configuration register
pub mod vvsacr;
/**VVBPCR (rw) register accessor: DSI Host video VBP configuration register

You can [`read`](crate::Reg::read) this register and get [`vvbpcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vvbpcr::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#DSI:VVBPCR)

For information about available fields see [`mod@vvbpcr`] module*/
pub type VVBPCR = crate::Reg<vvbpcr::VVBPCRrs>;
///DSI Host video VBP configuration register
pub mod vvbpcr;
/**VVFPCR (rw) register accessor: DSI Host video VFP configuration register

You can [`read`](crate::Reg::read) this register and get [`vvfpcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vvfpcr::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#DSI:VVFPCR)

For information about available fields see [`mod@vvfpcr`] module*/
pub type VVFPCR = crate::Reg<vvfpcr::VVFPCRrs>;
///DSI Host video VFP configuration register
pub mod vvfpcr;
/**VVACR (rw) register accessor: DSI Host video VA configuration register

You can [`read`](crate::Reg::read) this register and get [`vvacr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vvacr::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#DSI:VVACR)

For information about available fields see [`mod@vvacr`] module*/
pub type VVACR = crate::Reg<vvacr::VVACRrs>;
///DSI Host video VA configuration register
pub mod vvacr;
/**LCCR (rw) register accessor: DSI Host LTDC command configuration register

You can [`read`](crate::Reg::read) this register and get [`lccr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lccr::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#DSI:LCCR)

For information about available fields see [`mod@lccr`] module*/
pub type LCCR = crate::Reg<lccr::LCCRrs>;
///DSI Host LTDC command configuration register
pub mod lccr;
/**CMCR (rw) register accessor: DSI Host command mode configuration register

You can [`read`](crate::Reg::read) this register and get [`cmcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`cmcr::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#DSI:CMCR)

For information about available fields see [`mod@cmcr`] module*/
pub type CMCR = crate::Reg<cmcr::CMCRrs>;
///DSI Host command mode configuration register
pub mod cmcr;
/**GHCR (rw) register accessor: DSI Host generic header configuration register

You can [`read`](crate::Reg::read) this register and get [`ghcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ghcr::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#DSI:GHCR)

For information about available fields see [`mod@ghcr`] module*/
pub type GHCR = crate::Reg<ghcr::GHCRrs>;
///DSI Host generic header configuration register
pub mod ghcr;
/**GPDR (rw) register accessor: DSI Host generic payload data register

You can [`read`](crate::Reg::read) this register and get [`gpdr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`gpdr::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#DSI:GPDR)

For information about available fields see [`mod@gpdr`] module*/
pub type GPDR = crate::Reg<gpdr::GPDRrs>;
///DSI Host generic payload data register
pub mod gpdr;
/**GPSR (r) register accessor: DSI Host generic packet status register

You can [`read`](crate::Reg::read) this register and get [`gpsr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:GPSR)

For information about available fields see [`mod@gpsr`] module*/
pub type GPSR = crate::Reg<gpsr::GPSRrs>;
///DSI Host generic packet status register
pub mod gpsr;
/**TCCR0 (rw) register accessor: DSI Host timeout counter configuration register 0

You can [`read`](crate::Reg::read) this register and get [`tccr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tccr0::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#DSI:TCCR0)

For information about available fields see [`mod@tccr0`] module*/
pub type TCCR0 = crate::Reg<tccr0::TCCR0rs>;
///DSI Host timeout counter configuration register 0
pub mod tccr0;
/**TCCR1 (rw) register accessor: DSI Host timeout counter configuration register 1

You can [`read`](crate::Reg::read) this register and get [`tccr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tccr1::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#DSI:TCCR1)

For information about available fields see [`mod@tccr1`] module*/
pub type TCCR1 = crate::Reg<tccr1::TCCR1rs>;
///DSI Host timeout counter configuration register 1
pub mod tccr1;
/**TCCR2 (rw) register accessor: DSI Host timeout counter configuration register 2

You can [`read`](crate::Reg::read) this register and get [`tccr2::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tccr2::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#DSI:TCCR2)

For information about available fields see [`mod@tccr2`] module*/
pub type TCCR2 = crate::Reg<tccr2::TCCR2rs>;
///DSI Host timeout counter configuration register 2
pub mod tccr2;
/**TCCR3 (rw) register accessor: DSI Host timeout counter configuration register 3

You can [`read`](crate::Reg::read) this register and get [`tccr3::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tccr3::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#DSI:TCCR3)

For information about available fields see [`mod@tccr3`] module*/
pub type TCCR3 = crate::Reg<tccr3::TCCR3rs>;
///DSI Host timeout counter configuration register 3
pub mod tccr3;
/**TCCR4 (rw) register accessor: DSI Host timeout counter configuration register 4

You can [`read`](crate::Reg::read) this register and get [`tccr4::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tccr4::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#DSI:TCCR4)

For information about available fields see [`mod@tccr4`] module*/
pub type TCCR4 = crate::Reg<tccr4::TCCR4rs>;
///DSI Host timeout counter configuration register 4
pub mod tccr4;
/**TCCR5 (rw) register accessor: DSI Host timeout counter configuration register 5

You can [`read`](crate::Reg::read) this register and get [`tccr5::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`tccr5::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#DSI:TCCR5)

For information about available fields see [`mod@tccr5`] module*/
pub type TCCR5 = crate::Reg<tccr5::TCCR5rs>;
///DSI Host timeout counter configuration register 5
pub mod tccr5;
/**CLCR (rw) register accessor: DSI Host clock lane configuration register

You can [`read`](crate::Reg::read) this register and get [`clcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`clcr::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#DSI:CLCR)

For information about available fields see [`mod@clcr`] module*/
pub type CLCR = crate::Reg<clcr::CLCRrs>;
///DSI Host clock lane configuration register
pub mod clcr;
/**CLTCR (rw) register accessor: DSI Host clock lane timer configuration register

You can [`read`](crate::Reg::read) this register and get [`cltcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`cltcr::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#DSI:CLTCR)

For information about available fields see [`mod@cltcr`] module*/
pub type CLTCR = crate::Reg<cltcr::CLTCRrs>;
///DSI Host clock lane timer configuration register
pub mod cltcr;
/**DLTCR (rw) register accessor: DSI Host data lane timer configuration register

You can [`read`](crate::Reg::read) this register and get [`dltcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dltcr::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#DSI:DLTCR)

For information about available fields see [`mod@dltcr`] module*/
pub type DLTCR = crate::Reg<dltcr::DLTCRrs>;
///DSI Host data lane timer configuration register
pub mod dltcr;
/**PCTLR (rw) register accessor: DSI Host PHY control register

You can [`read`](crate::Reg::read) this register and get [`pctlr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pctlr::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#DSI:PCTLR)

For information about available fields see [`mod@pctlr`] module*/
pub type PCTLR = crate::Reg<pctlr::PCTLRrs>;
///DSI Host PHY control register
pub mod pctlr;
/**PCONFR (rw) register accessor: DSI Host PHY configuration register

You can [`read`](crate::Reg::read) this register and get [`pconfr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pconfr::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#DSI:PCONFR)

For information about available fields see [`mod@pconfr`] module*/
pub type PCONFR = crate::Reg<pconfr::PCONFRrs>;
///DSI Host PHY configuration register
pub mod pconfr;
/**PUCR (rw) register accessor: DSI Host PHY ULPS control register

You can [`read`](crate::Reg::read) this register and get [`pucr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pucr::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#DSI:PUCR)

For information about available fields see [`mod@pucr`] module*/
pub type PUCR = crate::Reg<pucr::PUCRrs>;
///DSI Host PHY ULPS control register
pub mod pucr;
/**PTTCR (rw) register accessor: DSI Host PHY TX triggers configuration register

You can [`read`](crate::Reg::read) this register and get [`pttcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`pttcr::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#DSI:PTTCR)

For information about available fields see [`mod@pttcr`] module*/
pub type PTTCR = crate::Reg<pttcr::PTTCRrs>;
///DSI Host PHY TX triggers configuration register
pub mod pttcr;
/**PSR (r) register accessor: DSI Host PHY status register

You can [`read`](crate::Reg::read) this register and get [`psr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:PSR)

For information about available fields see [`mod@psr`] module*/
pub type PSR = crate::Reg<psr::PSRrs>;
///DSI Host PHY status register
pub mod psr;
/**ISR0 (r) register accessor: DSI Host interrupt and status register 0

You can [`read`](crate::Reg::read) this register and get [`isr0::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:ISR0)

For information about available fields see [`mod@isr0`] module*/
pub type ISR0 = crate::Reg<isr0::ISR0rs>;
///DSI Host interrupt and status register 0
pub mod isr0;
/**ISR1 (r) register accessor: DSI Host interrupt and status register 1

You can [`read`](crate::Reg::read) this register and get [`isr1::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:ISR1)

For information about available fields see [`mod@isr1`] module*/
pub type ISR1 = crate::Reg<isr1::ISR1rs>;
///DSI Host interrupt and status register 1
pub mod isr1;
/**IER0 (rw) register accessor: DSI Host interrupt enable register 0

You can [`read`](crate::Reg::read) this register and get [`ier0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ier0::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#DSI:IER0)

For information about available fields see [`mod@ier0`] module*/
pub type IER0 = crate::Reg<ier0::IER0rs>;
///DSI Host interrupt enable register 0
pub mod ier0;
/**IER1 (rw) register accessor: DSI Host interrupt enable register 1

You can [`read`](crate::Reg::read) this register and get [`ier1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`ier1::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#DSI:IER1)

For information about available fields see [`mod@ier1`] module*/
pub type IER1 = crate::Reg<ier1::IER1rs>;
///DSI Host interrupt enable register 1
pub mod ier1;
/**FIR0 (w) register accessor: DSI Host force interrupt register 0

You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`fir0::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:FIR0)

For information about available fields see [`mod@fir0`] module*/
pub type FIR0 = crate::Reg<fir0::FIR0rs>;
///DSI Host force interrupt register 0
pub mod fir0;
/**FIR1 (w) register accessor: DSI Host force interrupt register 1

You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`fir1::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:FIR1)

For information about available fields see [`mod@fir1`] module*/
pub type FIR1 = crate::Reg<fir1::FIR1rs>;
///DSI Host force interrupt register 1
pub mod fir1;
/**DLTRCR (rw) register accessor: DSI Host data lane timer read configuration register

You can [`read`](crate::Reg::read) this register and get [`dltrcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`dltrcr::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#DSI:DLTRCR)

For information about available fields see [`mod@dltrcr`] module*/
pub type DLTRCR = crate::Reg<dltrcr::DLTRCRrs>;
///DSI Host data lane timer read configuration register
pub mod dltrcr;
/**VSCR (rw) register accessor: DSI Host video shadow control register

You can [`read`](crate::Reg::read) this register and get [`vscr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vscr::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#DSI:VSCR)

For information about available fields see [`mod@vscr`] module*/
pub type VSCR = crate::Reg<vscr::VSCRrs>;
///DSI Host video shadow control register
pub mod vscr;
/**LCVCIDR (rw) register accessor: DSI Host LTDC current VCID register

You can [`read`](crate::Reg::read) this register and get [`lcvcidr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`lcvcidr::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#DSI:LCVCIDR)

For information about available fields see [`mod@lcvcidr`] module*/
pub type LCVCIDR = crate::Reg<lcvcidr::LCVCIDRrs>;
///DSI Host LTDC current VCID register
pub mod lcvcidr;
/**LCCCR (r) register accessor: DSI Host LTDC current color coding register

You can [`read`](crate::Reg::read) this register and get [`lcccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:LCCCR)

For information about available fields see [`mod@lcccr`] module*/
pub type LCCCR = crate::Reg<lcccr::LCCCRrs>;
///DSI Host LTDC current color coding register
pub mod lcccr;
/**LPMCCR (r) register accessor: DSI Host low-power mode current configuration register

You can [`read`](crate::Reg::read) this register and get [`lpmccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:LPMCCR)

For information about available fields see [`mod@lpmccr`] module*/
pub type LPMCCR = crate::Reg<lpmccr::LPMCCRrs>;
///DSI Host low-power mode current configuration register
pub mod lpmccr;
/**VMCCR (r) register accessor: DSI Host video mode current configuration register

You can [`read`](crate::Reg::read) this register and get [`vmccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VMCCR)

For information about available fields see [`mod@vmccr`] module*/
pub type VMCCR = crate::Reg<vmccr::VMCCRrs>;
///DSI Host video mode current configuration register
pub mod vmccr;
/**VPCCR (r) register accessor: DSI Host video packet current configuration register

You can [`read`](crate::Reg::read) this register and get [`vpccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VPCCR)

For information about available fields see [`mod@vpccr`] module*/
pub type VPCCR = crate::Reg<vpccr::VPCCRrs>;
///DSI Host video packet current configuration register
pub mod vpccr;
/**VCCCR (r) register accessor: DSI Host video chunks current configuration register

You can [`read`](crate::Reg::read) this register and get [`vcccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VCCCR)

For information about available fields see [`mod@vcccr`] module*/
pub type VCCCR = crate::Reg<vcccr::VCCCRrs>;
///DSI Host video chunks current configuration register
pub mod vcccr;
/**VNPCCR (r) register accessor: DSI Host video null packet current configuration register

You can [`read`](crate::Reg::read) this register and get [`vnpccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VNPCCR)

For information about available fields see [`mod@vnpccr`] module*/
pub type VNPCCR = crate::Reg<vnpccr::VNPCCRrs>;
///DSI Host video null packet current configuration register
pub mod vnpccr;
/**VHSACCR (r) register accessor: DSI Host video HSA current configuration register

You can [`read`](crate::Reg::read) this register and get [`vhsaccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VHSACCR)

For information about available fields see [`mod@vhsaccr`] module*/
pub type VHSACCR = crate::Reg<vhsaccr::VHSACCRrs>;
///DSI Host video HSA current configuration register
pub mod vhsaccr;
/**VHBPCCR (r) register accessor: DSI Host video HBP current configuration register

You can [`read`](crate::Reg::read) this register and get [`vhbpccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VHBPCCR)

For information about available fields see [`mod@vhbpccr`] module*/
pub type VHBPCCR = crate::Reg<vhbpccr::VHBPCCRrs>;
///DSI Host video HBP current configuration register
pub mod vhbpccr;
/**VLCCR (r) register accessor: DSI Host video line current configuration register

You can [`read`](crate::Reg::read) this register and get [`vlccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VLCCR)

For information about available fields see [`mod@vlccr`] module*/
pub type VLCCR = crate::Reg<vlccr::VLCCRrs>;
///DSI Host video line current configuration register
pub mod vlccr;
/**VVSACCR (r) register accessor: DSI Host video VSA current configuration register

You can [`read`](crate::Reg::read) this register and get [`vvsaccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VVSACCR)

For information about available fields see [`mod@vvsaccr`] module*/
pub type VVSACCR = crate::Reg<vvsaccr::VVSACCRrs>;
///DSI Host video VSA current configuration register
pub mod vvsaccr;
/**VVBPCCR (r) register accessor: DSI Host video VBP current configuration register

You can [`read`](crate::Reg::read) this register and get [`vvbpccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VVBPCCR)

For information about available fields see [`mod@vvbpccr`] module*/
pub type VVBPCCR = crate::Reg<vvbpccr::VVBPCCRrs>;
///DSI Host video VBP current configuration register
pub mod vvbpccr;
/**VVFPCCR (r) register accessor: DSI Host video VFP current configuration register

You can [`read`](crate::Reg::read) this register and get [`vvfpccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VVFPCCR)

For information about available fields see [`mod@vvfpccr`] module*/
pub type VVFPCCR = crate::Reg<vvfpccr::VVFPCCRrs>;
///DSI Host video VFP current configuration register
pub mod vvfpccr;
/**VVACCR (r) register accessor: DSI Host video VA current configuration register

You can [`read`](crate::Reg::read) this register and get [`vvaccr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VVACCR)

For information about available fields see [`mod@vvaccr`] module*/
pub type VVACCR = crate::Reg<vvaccr::VVACCRrs>;
///DSI Host video VA current configuration register
pub mod vvaccr;
/**WCFGR (rw) register accessor: DSI wrapper configuration register

You can [`read`](crate::Reg::read) this register and get [`wcfgr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wcfgr::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#DSI:WCFGR)

For information about available fields see [`mod@wcfgr`] module*/
pub type WCFGR = crate::Reg<wcfgr::WCFGRrs>;
///DSI wrapper configuration register
pub mod wcfgr;
/**WCR (rw) register accessor: DSI wrapper control register

You can [`read`](crate::Reg::read) this register and get [`wcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wcr::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#DSI:WCR)

For information about available fields see [`mod@wcr`] module*/
pub type WCR = crate::Reg<wcr::WCRrs>;
///DSI wrapper control register
pub mod wcr;
/**WIER (rw) register accessor: DSI wrapper interrupt enable register

You can [`read`](crate::Reg::read) this register and get [`wier::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wier::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#DSI:WIER)

For information about available fields see [`mod@wier`] module*/
pub type WIER = crate::Reg<wier::WIERrs>;
///DSI wrapper interrupt enable register
pub mod wier;
/**WISR (r) register accessor: DSI wrapper interrupt and status register

You can [`read`](crate::Reg::read) this register and get [`wisr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:WISR)

For information about available fields see [`mod@wisr`] module*/
pub type WISR = crate::Reg<wisr::WISRrs>;
///DSI wrapper interrupt and status register
pub mod wisr;
/**WIFCR (w) register accessor: DSI wrapper interrupt flag clear register

You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wifcr::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:WIFCR)

For information about available fields see [`mod@wifcr`] module*/
pub type WIFCR = crate::Reg<wifcr::WIFCRrs>;
///DSI wrapper interrupt flag clear register
pub mod wifcr;
/**WPCR0 (rw) register accessor: DSI wrapper PHY configuration register 0

You can [`read`](crate::Reg::read) this register and get [`wpcr0::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wpcr0::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#DSI:WPCR0)

For information about available fields see [`mod@wpcr0`] module*/
pub type WPCR0 = crate::Reg<wpcr0::WPCR0rs>;
///DSI wrapper PHY configuration register 0
pub mod wpcr0;
/**WPCR1 (rw) register accessor: This register shall be programmed only when DSI is stopped (CR. DSIEN=0 and CR.EN = 0).

You can [`read`](crate::Reg::read) this register and get [`wpcr1::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wpcr1::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#DSI:WPCR1)

For information about available fields see [`mod@wpcr1`] module*/
pub type WPCR1 = crate::Reg<wpcr1::WPCR1rs>;
///This register shall be programmed only when DSI is stopped (CR. DSIEN=0 and CR.EN = 0).
pub mod wpcr1;
/**WRPCR (rw) register accessor: DSI wrapper regulator and PLL control register

You can [`read`](crate::Reg::read) this register and get [`wrpcr::R`]. You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`wrpcr::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#DSI:WRPCR)

For information about available fields see [`mod@wrpcr`] module*/
pub type WRPCR = crate::Reg<wrpcr::WRPCRrs>;
///DSI wrapper regulator and PLL control register
pub mod wrpcr;
/**HWCFGR (r) register accessor: DSI Host hardware configuration register

You can [`read`](crate::Reg::read) this register and get [`hwcfgr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:HWCFGR)

For information about available fields see [`mod@hwcfgr`] module*/
pub type HWCFGR = crate::Reg<hwcfgr::HWCFGRrs>;
///DSI Host hardware configuration register
pub mod hwcfgr;
/**VERR (r) register accessor: DSI Host version register

You can [`read`](crate::Reg::read) this register and get [`verr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:VERR)

For information about available fields see [`mod@verr`] module*/
pub type VERR = crate::Reg<verr::VERRrs>;
///DSI Host version register
pub mod verr;
/**IPIDR (r) register accessor: DSI Host identification register

You can [`read`](crate::Reg::read) this register and get [`ipidr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:IPIDR)

For information about available fields see [`mod@ipidr`] module*/
pub type IPIDR = crate::Reg<ipidr::IPIDRrs>;
///DSI Host identification register
pub mod ipidr;
/**SIDR (r) register accessor: DSI Host size identification register

You can [`read`](crate::Reg::read) this register and get [`sidr::R`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32MP157.html#DSI:SIDR)

For information about available fields see [`mod@sidr`] module*/
pub type SIDR = crate::Reg<sidr::SIDRrs>;
///DSI Host size identification register
pub mod sidr;