cc2650 0.1.1

Device support for TI CC2650 microcontrollers
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
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
#[doc = r" Register block"]
#[repr(C)]
pub struct RegisterBlock {
    _reserved0: [u8; 28usize],
    #[doc = "0x1c - FMC and Efuse Status"]
    pub stat: STAT,
    _reserved1: [u8; 4usize],
    #[doc = "0x24 - Internal. Only to be used through TI provided API."]
    pub cfg: CFG,
    #[doc = "0x28 - Internal. Only to be used through TI provided API."]
    pub syscode_start: SYSCODE_START,
    #[doc = "0x2c - Internal. Only to be used through TI provided API."]
    pub flash_size: FLASH_SIZE,
    _reserved2: [u8; 12usize],
    #[doc = "0x3c - Internal. Only to be used through TI provided API."]
    pub fwlock: FWLOCK,
    #[doc = "0x40 - Internal. Only to be used through TI provided API."]
    pub fwflag: FWFLAG,
    _reserved3: [u8; 4028usize],
    #[doc = "0x1000 - Internal. Only to be used through TI provided API."]
    pub efuse: EFUSE,
    #[doc = "0x1004 - Internal. Only to be used through TI provided API."]
    pub efuseaddr: EFUSEADDR,
    #[doc = "0x1008 - Internal. Only to be used through TI provided API."]
    pub dataupper: DATAUPPER,
    #[doc = "0x100c - Internal. Only to be used through TI provided API."]
    pub datalower: DATALOWER,
    #[doc = "0x1010 - Internal. Only to be used through TI provided API."]
    pub efusecfg: EFUSECFG,
    #[doc = "0x1014 - Internal. Only to be used through TI provided API."]
    pub efusestat: EFUSESTAT,
    #[doc = "0x1018 - Internal. Only to be used through TI provided API."]
    pub acc: ACC,
    #[doc = "0x101c - Internal. Only to be used through TI provided API."]
    pub boundary: BOUNDARY,
    #[doc = "0x1020 - Internal. Only to be used through TI provided API."]
    pub efuseflag: EFUSEFLAG,
    #[doc = "0x1024 - Internal. Only to be used through TI provided API."]
    pub efusekey: EFUSEKEY,
    #[doc = "0x1028 - Internal. Only to be used through TI provided API."]
    pub efuserelease: EFUSERELEASE,
    #[doc = "0x102c - Internal. Only to be used through TI provided API."]
    pub efusepins: EFUSEPINS,
    #[doc = "0x1030 - Internal. Only to be used through TI provided API."]
    pub efusecra: EFUSECRA,
    #[doc = "0x1034 - Internal. Only to be used through TI provided API."]
    pub efuseread: EFUSEREAD,
    #[doc = "0x1038 - Internal. Only to be used through TI provided API."]
    pub efuseprogram: EFUSEPROGRAM,
    #[doc = "0x103c - Internal. Only to be used through TI provided API."]
    pub efuseerror: EFUSEERROR,
    #[doc = "0x1040 - Internal. Only to be used through TI provided API."]
    pub singlebit: SINGLEBIT,
    #[doc = "0x1044 - Internal. Only to be used through TI provided API."]
    pub twobit: TWOBIT,
    #[doc = "0x1048 - Internal. Only to be used through TI provided API."]
    pub selftestcyc: SELFTESTCYC,
    #[doc = "0x104c - Internal. Only to be used through TI provided API."]
    pub selftestsign: SELFTESTSIGN,
    _reserved4: [u8; 4016usize],
    #[doc = "0x2000 - Internal. Only to be used through TI provided API."]
    pub frdctl: FRDCTL,
    #[doc = "0x2004 - Internal. Only to be used through TI provided API."]
    pub fsprd: FSPRD,
    #[doc = "0x2008 - Internal. Only to be used through TI provided API."]
    pub fedacctl1: FEDACCTL1,
    #[doc = "0x200c - Internal. Only to be used through TI provided API."]
    pub fedacctl2: FEDACCTL2,
    #[doc = "0x2010 - Internal. Only to be used through TI provided API."]
    pub fcor_err_cnt: FCOR_ERR_CNT,
    #[doc = "0x2014 - Internal. Only to be used through TI provided API."]
    pub fcor_err_add: FCOR_ERR_ADD,
    #[doc = "0x2018 - Internal. Only to be used through TI provided API."]
    pub fcor_err_pos: FCOR_ERR_POS,
    #[doc = "0x201c - Internal. Only to be used through TI provided API."]
    pub fedacstat: FEDACSTAT,
    #[doc = "0x2020 - Internal. Only to be used through TI provided API."]
    pub func_err_add: FUNC_ERR_ADD,
    #[doc = "0x2024 - Internal. Only to be used through TI provided API."]
    pub fedacsdis: FEDACSDIS,
    #[doc = "0x2028 - Internal. Only to be used through TI provided API."]
    pub fprim_add_tag: FPRIM_ADD_TAG,
    #[doc = "0x202c - Internal. Only to be used through TI provided API."]
    pub fredu_add_tag: FREDU_ADD_TAG,
    #[doc = "0x2030 - Internal. Only to be used through TI provided API."]
    pub fbprot: FBPROT,
    #[doc = "0x2034 - Internal. Only to be used through TI provided API."]
    pub fbse: FBSE,
    #[doc = "0x2038 - Internal. Only to be used through TI provided API."]
    pub fbbusy: FBBUSY,
    #[doc = "0x203c - Internal. Only to be used through TI provided API."]
    pub fbac: FBAC,
    #[doc = "0x2040 - Internal. Only to be used through TI provided API."]
    pub fbfallback: FBFALLBACK,
    #[doc = "0x2044 - Internal. Only to be used through TI provided API."]
    pub fbprdy: FBPRDY,
    #[doc = "0x2048 - Internal. Only to be used through TI provided API."]
    pub fpac1: FPAC1,
    #[doc = "0x204c - Internal. Only to be used through TI provided API."]
    pub fpac2: FPAC2,
    #[doc = "0x2050 - Internal. Only to be used through TI provided API."]
    pub fmac: FMAC,
    #[doc = "0x2054 - Internal. Only to be used through TI provided API."]
    pub fmstat: FMSTAT,
    #[doc = "0x2058 - Internal. Only to be used through TI provided API."]
    pub femu_dmsw: FEMU_DMSW,
    #[doc = "0x205c - Internal. Only to be used through TI provided API."]
    pub femu_dlsw: FEMU_DLSW,
    #[doc = "0x2060 - Internal. Only to be used through TI provided API."]
    pub femu_ecc: FEMU_ECC,
    #[doc = "0x2064 - Internal. Only to be used through TI provided API."]
    pub flock: FLOCK,
    #[doc = "0x2068 - Internal. Only to be used through TI provided API."]
    pub femu_addr: FEMU_ADDR,
    #[doc = "0x206c - Internal. Only to be used through TI provided API."]
    pub fdiagctl: FDIAGCTL,
    #[doc = "0x2070 - Internal. Only to be used through TI provided API."]
    pub fraw_datah: FRAW_DATAH,
    #[doc = "0x2074 - Internal. Only to be used through TI provided API."]
    pub fraw_datal: FRAW_DATAL,
    #[doc = "0x2078 - Internal. Only to be used through TI provided API."]
    pub fraw_ecc: FRAW_ECC,
    #[doc = "0x207c - Internal. Only to be used through TI provided API."]
    pub fpar_ovr: FPAR_OVR,
    #[doc = "0x2080 - Internal. Only to be used through TI provided API."]
    pub fvreadct: FVREADCT,
    #[doc = "0x2084 - Internal. Only to be used through TI provided API."]
    pub fvhvct1: FVHVCT1,
    #[doc = "0x2088 - Internal. Only to be used through TI provided API."]
    pub fvhvct2: FVHVCT2,
    #[doc = "0x208c - Internal. Only to be used through TI provided API."]
    pub fvhvct3: FVHVCT3,
    #[doc = "0x2090 - Internal. Only to be used through TI provided API."]
    pub fvnvct: FVNVCT,
    #[doc = "0x2094 - Internal. Only to be used through TI provided API."]
    pub fvslp: FVSLP,
    #[doc = "0x2098 - Internal. Only to be used through TI provided API."]
    pub fvwlct: FVWLCT,
    #[doc = "0x209c - Internal. Only to be used through TI provided API."]
    pub fefusectl: FEFUSECTL,
    #[doc = "0x20a0 - Internal. Only to be used through TI provided API."]
    pub fefusestat: FEFUSESTAT,
    #[doc = "0x20a4 - Internal. Only to be used through TI provided API."]
    pub fefusedata: FEFUSEDATA,
    #[doc = "0x20a8 - Internal. Only to be used through TI provided API."]
    pub fseqpmp: FSEQPMP,
    #[doc = "0x20ac - Internal. Only to be used through TI provided API."]
    pub fclktrim: FCLKTRIM,
    #[doc = "0x20b0 - Internal. Only to be used through TI provided API."]
    pub rom_test: ROM_TEST,
    _reserved5: [u8; 12usize],
    #[doc = "0x20c0 - Internal. Only to be used through TI provided API."]
    pub fedacsdis2: FEDACSDIS2,
    _reserved6: [u8; 60usize],
    #[doc = "0x2100 - Internal. Only to be used through TI provided API."]
    pub fbstrobes: FBSTROBES,
    #[doc = "0x2104 - Internal. Only to be used through TI provided API."]
    pub fpstrobes: FPSTROBES,
    #[doc = "0x2108 - Internal. Only to be used through TI provided API."]
    pub fbmode: FBMODE,
    #[doc = "0x210c - Internal. Only to be used through TI provided API."]
    pub ftcr: FTCR,
    #[doc = "0x2110 - Internal. Only to be used through TI provided API."]
    pub faddr: FADDR,
    #[doc = "0x2114 - Internal. Only to be used through TI provided API."]
    pub fpmtctl: FPMTCTL,
    #[doc = "0x2118 - Internal. Only to be used through TI provided API."]
    pub pbistctl: PBISTCTL,
    #[doc = "0x211c - Internal. Only to be used through TI provided API."]
    pub ftctl: FTCTL,
    #[doc = "0x2120 - Internal. Only to be used through TI provided API."]
    pub fwpwrite0: FWPWRITE0,
    #[doc = "0x2124 - Internal. Only to be used through TI provided API."]
    pub fwpwrite1: FWPWRITE1,
    #[doc = "0x2128 - Internal. Only to be used through TI provided API."]
    pub fwpwrite2: FWPWRITE2,
    #[doc = "0x212c - Internal. Only to be used through TI provided API."]
    pub fwpwrite3: FWPWRITE3,
    #[doc = "0x2130 - Internal. Only to be used through TI provided API."]
    pub fwpwrite4: FWPWRITE4,
    #[doc = "0x2134 - Internal. Only to be used through TI provided API."]
    pub fwpwrite5: FWPWRITE5,
    #[doc = "0x2138 - Internal. Only to be used through TI provided API."]
    pub fwpwrite6: FWPWRITE6,
    #[doc = "0x213c - Internal. Only to be used through TI provided API."]
    pub fwpwrite7: FWPWRITE7,
    #[doc = "0x2140 - Internal. Only to be used through TI provided API."]
    pub fwpwrite_ecc: FWPWRITE_ECC,
    #[doc = "0x2144 - Internal. Only to be used through TI provided API."]
    pub fswstat: FSWSTAT,
    _reserved7: [u8; 184usize],
    #[doc = "0x2200 - Internal. Only to be used through TI provided API."]
    pub fsm_glbctl: FSM_GLBCTL,
    #[doc = "0x2204 - Internal. Only to be used through TI provided API."]
    pub fsm_state: FSM_STATE,
    #[doc = "0x2208 - Internal. Only to be used through TI provided API."]
    pub fsm_stat: FSM_STAT,
    #[doc = "0x220c - Internal. Only to be used through TI provided API."]
    pub fsm_cmd: FSM_CMD,
    #[doc = "0x2210 - Internal. Only to be used through TI provided API."]
    pub fsm_pe_osu: FSM_PE_OSU,
    #[doc = "0x2214 - Internal. Only to be used through TI provided API."]
    pub fsm_vstat: FSM_VSTAT,
    #[doc = "0x2218 - Internal. Only to be used through TI provided API."]
    pub fsm_pe_vsu: FSM_PE_VSU,
    #[doc = "0x221c - Internal. Only to be used through TI provided API."]
    pub fsm_cmp_vsu: FSM_CMP_VSU,
    #[doc = "0x2220 - Internal. Only to be used through TI provided API."]
    pub fsm_ex_val: FSM_EX_VAL,
    #[doc = "0x2224 - Internal. Only to be used through TI provided API."]
    pub fsm_rd_h: FSM_RD_H,
    #[doc = "0x2228 - Internal. Only to be used through TI provided API."]
    pub fsm_p_oh: FSM_P_OH,
    #[doc = "0x222c - Internal. Only to be used through TI provided API."]
    pub fsm_era_oh: FSM_ERA_OH,
    #[doc = "0x2230 - Internal. Only to be used through TI provided API."]
    pub fsm_sav_ppul: FSM_SAV_PPUL,
    #[doc = "0x2234 - Internal. Only to be used through TI provided API."]
    pub fsm_pe_vh: FSM_PE_VH,
    _reserved8: [u8; 8usize],
    #[doc = "0x2240 - Internal. Only to be used through TI provided API."]
    pub fsm_prg_pw: FSM_PRG_PW,
    #[doc = "0x2244 - Internal. Only to be used through TI provided API."]
    pub fsm_era_pw: FSM_ERA_PW,
    _reserved9: [u8; 12usize],
    #[doc = "0x2254 - Internal. Only to be used through TI provided API."]
    pub fsm_sav_era_pul: FSM_SAV_ERA_PUL,
    #[doc = "0x2258 - Internal. Only to be used through TI provided API."]
    pub fsm_timer: FSM_TIMER,
    #[doc = "0x225c - Internal. Only to be used through TI provided API."]
    pub fsm_mode: FSM_MODE,
    #[doc = "0x2260 - Internal. Only to be used through TI provided API."]
    pub fsm_pgm: FSM_PGM,
    #[doc = "0x2264 - Internal. Only to be used through TI provided API."]
    pub fsm_era: FSM_ERA,
    #[doc = "0x2268 - Internal. Only to be used through TI provided API."]
    pub fsm_prg_pul: FSM_PRG_PUL,
    #[doc = "0x226c - Internal. Only to be used through TI provided API."]
    pub fsm_era_pul: FSM_ERA_PUL,
    #[doc = "0x2270 - Internal. Only to be used through TI provided API."]
    pub fsm_step_size: FSM_STEP_SIZE,
    #[doc = "0x2274 - Internal. Only to be used through TI provided API."]
    pub fsm_pul_cntr: FSM_PUL_CNTR,
    #[doc = "0x2278 - Internal. Only to be used through TI provided API."]
    pub fsm_ec_step_height: FSM_EC_STEP_HEIGHT,
    #[doc = "0x227c - Internal. Only to be used through TI provided API."]
    pub fsm_st_machine: FSM_ST_MACHINE,
    #[doc = "0x2280 - Internal. Only to be used through TI provided API."]
    pub fsm_fles: FSM_FLES,
    _reserved10: [u8; 4usize],
    #[doc = "0x2288 - Internal. Only to be used through TI provided API."]
    pub fsm_wr_ena: FSM_WR_ENA,
    #[doc = "0x228c - Internal. Only to be used through TI provided API."]
    pub fsm_acc_pp: FSM_ACC_PP,
    #[doc = "0x2290 - Internal. Only to be used through TI provided API."]
    pub fsm_acc_ep: FSM_ACC_EP,
    _reserved11: [u8; 12usize],
    #[doc = "0x22a0 - Internal. Only to be used through TI provided API."]
    pub fsm_addr: FSM_ADDR,
    #[doc = "0x22a4 - Internal. Only to be used through TI provided API."]
    pub fsm_sector: FSM_SECTOR,
    #[doc = "0x22a8 - Internal. Only to be used through TI provided API."]
    pub fmc_rev_id: FMC_REV_ID,
    #[doc = "0x22ac - Internal. Only to be used through TI provided API."]
    pub fsm_err_addr: FSM_ERR_ADDR,
    #[doc = "0x22b0 - Internal. Only to be used through TI provided API."]
    pub fsm_pgm_maxpul: FSM_PGM_MAXPUL,
    #[doc = "0x22b4 - Internal. Only to be used through TI provided API."]
    pub fsm_execute: FSM_EXECUTE,
    #[doc = "0x22b8 - Internal. Only to be used through TI provided API."]
    pub eeprom_cfg: EEPROM_CFG,
    _reserved12: [u8; 4usize],
    #[doc = "0x22c0 - Internal. Only to be used through TI provided API."]
    pub fsm_sector1: FSM_SECTOR1,
    #[doc = "0x22c4 - Internal. Only to be used through TI provided API."]
    pub fsm_sector2: FSM_SECTOR2,
    _reserved13: [u8; 24usize],
    #[doc = "0x22e0 - Internal. Only to be used through TI provided API."]
    pub fsm_bsle0: FSM_BSLE0,
    #[doc = "0x22e4 - Internal. Only to be used through TI provided API."]
    pub fsm_bsle1: FSM_BSLE1,
    _reserved14: [u8; 8usize],
    #[doc = "0x22f0 - Internal. Only to be used through TI provided API."]
    pub fsm_bslp0: FSM_BSLP0,
    #[doc = "0x22f4 - Internal. Only to be used through TI provided API."]
    pub fsm_bslp1: FSM_BSLP1,
    _reserved15: [u8; 264usize],
    #[doc = "0x2400 - Internal. Only to be used through TI provided API."]
    pub fcfg_bank: FCFG_BANK,
    #[doc = "0x2404 - Internal. Only to be used through TI provided API."]
    pub fcfg_wrapper: FCFG_WRAPPER,
    #[doc = "0x2408 - Internal. Only to be used through TI provided API."]
    pub fcfg_bnk_type: FCFG_BNK_TYPE,
    _reserved16: [u8; 4usize],
    #[doc = "0x2410 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_start: FCFG_B0_START,
    #[doc = "0x2414 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_start: FCFG_B1_START,
    #[doc = "0x2418 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_start: FCFG_B2_START,
    #[doc = "0x241c - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_start: FCFG_B3_START,
    #[doc = "0x2420 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_start: FCFG_B4_START,
    #[doc = "0x2424 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_start: FCFG_B5_START,
    #[doc = "0x2428 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_start: FCFG_B6_START,
    #[doc = "0x242c - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_start: FCFG_B7_START,
    #[doc = "0x2430 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize0: FCFG_B0_SSIZE0,
    #[doc = "0x2434 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize1: FCFG_B0_SSIZE1,
    #[doc = "0x2438 - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize2: FCFG_B0_SSIZE2,
    #[doc = "0x243c - Internal. Only to be used through TI provided API."]
    pub fcfg_b0_ssize3: FCFG_B0_SSIZE3,
    #[doc = "0x2440 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize0: FCFG_B1_SSIZE0,
    #[doc = "0x2444 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize1: FCFG_B1_SSIZE1,
    #[doc = "0x2448 - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize2: FCFG_B1_SSIZE2,
    #[doc = "0x244c - Internal. Only to be used through TI provided API."]
    pub fcfg_b1_ssize3: FCFG_B1_SSIZE3,
    #[doc = "0x2450 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize0: FCFG_B2_SSIZE0,
    #[doc = "0x2454 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize1: FCFG_B2_SSIZE1,
    #[doc = "0x2458 - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize2: FCFG_B2_SSIZE2,
    #[doc = "0x245c - Internal. Only to be used through TI provided API."]
    pub fcfg_b2_ssize3: FCFG_B2_SSIZE3,
    #[doc = "0x2460 - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize0: FCFG_B3_SSIZE0,
    #[doc = "0x2464 - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize1: FCFG_B3_SSIZE1,
    #[doc = "0x2468 - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize2: FCFG_B3_SSIZE2,
    #[doc = "0x246c - Internal. Only to be used through TI provided API."]
    pub fcfg_b3_ssize3: FCFG_B3_SSIZE3,
    #[doc = "0x2470 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize0: FCFG_B4_SSIZE0,
    #[doc = "0x2474 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize1: FCFG_B4_SSIZE1,
    #[doc = "0x2478 - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize2: FCFG_B4_SSIZE2,
    #[doc = "0x247c - Internal. Only to be used through TI provided API."]
    pub fcfg_b4_ssize3: FCFG_B4_SSIZE3,
    #[doc = "0x2480 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize0: FCFG_B5_SSIZE0,
    #[doc = "0x2484 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize1: FCFG_B5_SSIZE1,
    #[doc = "0x2488 - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize2: FCFG_B5_SSIZE2,
    #[doc = "0x248c - Internal. Only to be used through TI provided API."]
    pub fcfg_b5_ssize3: FCFG_B5_SSIZE3,
    #[doc = "0x2490 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize0: FCFG_B6_SSIZE0,
    #[doc = "0x2494 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize1: FCFG_B6_SSIZE1,
    #[doc = "0x2498 - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize2: FCFG_B6_SSIZE2,
    #[doc = "0x249c - Internal. Only to be used through TI provided API."]
    pub fcfg_b6_ssize3: FCFG_B6_SSIZE3,
    #[doc = "0x24a0 - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize0: FCFG_B7_SSIZE0,
    #[doc = "0x24a4 - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize1: FCFG_B7_SSIZE1,
    #[doc = "0x24a8 - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize2: FCFG_B7_SSIZE2,
    #[doc = "0x24ac - Internal. Only to be used through TI provided API."]
    pub fcfg_b7_ssize3: FCFG_B7_SSIZE3,
}
#[doc = "FMC and Efuse Status"]
pub struct STAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "FMC and Efuse Status"]
pub mod stat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct CFG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod cfg;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct SYSCODE_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod syscode_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FLASH_SIZE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod flash_size;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWLOCK {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwlock;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWFLAG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwflag;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuse;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSEADDR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseaddr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct DATAUPPER {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod dataupper;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct DATALOWER {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod datalower;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSECFG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusecfg;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSESTAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusestat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct ACC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod acc;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct BOUNDARY {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod boundary;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSEFLAG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseflag;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSEKEY {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusekey;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSERELEASE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuserelease;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSEPINS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusepins;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSECRA {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efusecra;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSEREAD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseread;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSEPROGRAM {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseprogram;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EFUSEERROR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod efuseerror;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct SINGLEBIT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod singlebit;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct TWOBIT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod twobit;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct SELFTESTCYC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod selftestcyc;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct SELFTESTSIGN {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod selftestsign;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FRDCTL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod frdctl;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSPRD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsprd;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEDACCTL1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacctl1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEDACCTL2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacctl2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCOR_ERR_CNT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_cnt;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCOR_ERR_ADD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_add;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCOR_ERR_POS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcor_err_pos;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEDACSTAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacstat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FUNC_ERR_ADD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod func_err_add;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEDACSDIS {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacsdis;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FPRIM_ADD_TAG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fprim_add_tag;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FREDU_ADD_TAG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fredu_add_tag;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBPROT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbprot;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBSE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbse;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBBUSY {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbbusy;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBAC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbac;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBFALLBACK {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbfallback;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBPRDY {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbprdy;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FPAC1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpac1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FPAC2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpac2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FMAC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmac;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FMSTAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmstat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEMU_DMSW {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_dmsw;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEMU_DLSW {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_dlsw;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEMU_ECC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_ecc;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FLOCK {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod flock;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEMU_ADDR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod femu_addr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FDIAGCTL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fdiagctl;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FRAW_DATAH {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_datah;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FRAW_DATAL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_datal;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FRAW_ECC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fraw_ecc;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FPAR_OVR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpar_ovr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FVREADCT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvreadct;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FVHVCT1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FVHVCT2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FVHVCT3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvhvct3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FVNVCT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvnvct;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FVSLP {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvslp;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FVWLCT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fvwlct;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEFUSECTL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusectl;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEFUSESTAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusestat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEFUSEDATA {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fefusedata;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSEQPMP {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fseqpmp;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCLKTRIM {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fclktrim;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct ROM_TEST {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod rom_test;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FEDACSDIS2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fedacsdis2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBSTROBES {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbstrobes;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FPSTROBES {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpstrobes;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FBMODE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fbmode;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FTCR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod ftcr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FADDR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod faddr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FPMTCTL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fpmtctl;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct PBISTCTL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod pbistctl;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FTCTL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod ftctl;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE4 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite4;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE5 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite5;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE6 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite6;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE7 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite7;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FWPWRITE_ECC {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fwpwrite_ecc;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSWSTAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fswstat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_GLBCTL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_glbctl;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_STATE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_state;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_STAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_stat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_CMD {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_cmd;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PE_OSU {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_osu;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_VSTAT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_vstat;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PE_VSU {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_vsu;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_CMP_VSU {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_cmp_vsu;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_EX_VAL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_ex_val;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_RD_H {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_rd_h;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_P_OH {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_p_oh;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ERA_OH {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_oh;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_SAV_PPUL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sav_ppul;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PE_VH {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pe_vh;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PRG_PW {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_prg_pw;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ERA_PW {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_pw;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_SAV_ERA_PUL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sav_era_pul;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_TIMER {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_timer;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_MODE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_mode;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PGM {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pgm;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ERA {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PRG_PUL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_prg_pul;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ERA_PUL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_era_pul;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_STEP_SIZE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_step_size;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PUL_CNTR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pul_cntr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_EC_STEP_HEIGHT {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_ec_step_height;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ST_MACHINE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_st_machine;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_FLES {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_fles;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_WR_ENA {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_wr_ena;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ACC_PP {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_acc_pp;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ACC_EP {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_acc_ep;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ADDR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_addr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_SECTOR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FMC_REV_ID {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fmc_rev_id;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_ERR_ADDR {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_err_addr;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_PGM_MAXPUL {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_pgm_maxpul;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_EXECUTE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_execute;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct EEPROM_CFG {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod eeprom_cfg;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_SECTOR1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_SECTOR2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_sector2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_BSLE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bsle0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_BSLE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bsle1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_BSLP0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bslp0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FSM_BSLP1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fsm_bslp1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_BANK {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_bank;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_WRAPPER {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_wrapper;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_BNK_TYPE {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_bnk_type;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B0_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B1_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B2_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B3_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B4_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B5_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B6_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B7_START {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_start;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B0_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B0_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B0_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B0_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b0_ssize3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B1_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B1_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B1_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B1_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b1_ssize3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B2_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B2_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B2_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B2_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b2_ssize3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B3_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B3_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B3_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B3_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b3_ssize3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B4_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B4_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B4_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B4_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b4_ssize3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B5_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B5_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B5_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B5_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b5_ssize3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B6_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B6_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B6_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B6_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b6_ssize3;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B7_SSIZE0 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize0;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B7_SSIZE1 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize1;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B7_SSIZE2 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize2;
#[doc = "Internal. Only to be used through TI provided API."]
pub struct FCFG_B7_SSIZE3 {
    register: ::vcell::VolatileCell<u32>,
}
#[doc = "Internal. Only to be used through TI provided API."]
pub mod fcfg_b7_ssize3;