esp32p4 0.2.0

Peripheral access crate for the ESP32-P4
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
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
#[repr(C)]
#[cfg_attr(feature = "impl-register-debug", derive(Debug))]
#[doc = "Register block"]
pub struct RegisterBlock {
    ver_date: VER_DATE,
    clk_en: CLK_EN,
    cntl: CNTL,
    hsync_cnt: HSYNC_CNT,
    frame_cfg: FRAME_CFG,
    ccm_coef0: CCM_COEF0,
    ccm_coef1: CCM_COEF1,
    ccm_coef3: CCM_COEF3,
    ccm_coef4: CCM_COEF4,
    ccm_coef5: CCM_COEF5,
    bf_matrix_ctrl: BF_MATRIX_CTRL,
    bf_sigma: BF_SIGMA,
    bf_gau0: BF_GAU0,
    bf_gau1: BF_GAU1,
    dpc_ctrl: DPC_CTRL,
    dpc_conf: DPC_CONF,
    dpc_matrix_ctrl: DPC_MATRIX_CTRL,
    dpc_deadpix_cnt: DPC_DEADPIX_CNT,
    lut_cmd: LUT_CMD,
    lut_wdata: LUT_WDATA,
    lut_rdata: LUT_RDATA,
    lsc_tablesize: LSC_TABLESIZE,
    demosaic_matrix_ctrl: DEMOSAIC_MATRIX_CTRL,
    demosaic_grad_ratio: DEMOSAIC_GRAD_RATIO,
    median_matrix_ctrl: MEDIAN_MATRIX_CTRL,
    int_raw: INT_RAW,
    int_st: INT_ST,
    int_ena: INT_ENA,
    int_clr: INT_CLR,
    gamma_ctrl: GAMMA_CTRL,
    gamma_ry1: GAMMA_RY1,
    gamma_ry2: GAMMA_RY2,
    gamma_ry3: GAMMA_RY3,
    gamma_ry4: GAMMA_RY4,
    gamma_gy1: GAMMA_GY1,
    gamma_gy2: GAMMA_GY2,
    gamma_gy3: GAMMA_GY3,
    gamma_gy4: GAMMA_GY4,
    gamma_by1: GAMMA_BY1,
    gamma_by2: GAMMA_BY2,
    gamma_by3: GAMMA_BY3,
    gamma_by4: GAMMA_BY4,
    gamma_rx1: GAMMA_RX1,
    gamma_rx2: GAMMA_RX2,
    gamma_gx1: GAMMA_GX1,
    gamma_gx2: GAMMA_GX2,
    gamma_bx1: GAMMA_BX1,
    gamma_bx2: GAMMA_BX2,
    ae_ctrl: AE_CTRL,
    ae_monitor: AE_MONITOR,
    ae_bx: AE_BX,
    ae_by: AE_BY,
    ae_winpixnum: AE_WINPIXNUM,
    ae_win_reciprocal: AE_WIN_RECIPROCAL,
    ae_block_mean_0: AE_BLOCK_MEAN_0,
    ae_block_mean_1: AE_BLOCK_MEAN_1,
    ae_block_mean_2: AE_BLOCK_MEAN_2,
    ae_block_mean_3: AE_BLOCK_MEAN_3,
    ae_block_mean_4: AE_BLOCK_MEAN_4,
    ae_block_mean_5: AE_BLOCK_MEAN_5,
    ae_block_mean_6: AE_BLOCK_MEAN_6,
    sharp_ctrl0: SHARP_CTRL0,
    sharp_filter0: SHARP_FILTER0,
    sharp_filter1: SHARP_FILTER1,
    sharp_filter2: SHARP_FILTER2,
    sharp_matrix_ctrl: SHARP_MATRIX_CTRL,
    sharp_ctrl1: SHARP_CTRL1,
    dma_cntl: DMA_CNTL,
    dma_raw_data: DMA_RAW_DATA,
    cam_cntl: CAM_CNTL,
    cam_conf: CAM_CONF,
    af_ctrl0: AF_CTRL0,
    af_ctrl1: AF_CTRL1,
    af_gen_th_ctrl: AF_GEN_TH_CTRL,
    af_env_user_th_sum: AF_ENV_USER_TH_SUM,
    af_env_user_th_lum: AF_ENV_USER_TH_LUM,
    af_threshold: AF_THRESHOLD,
    af_hscale_a: AF_HSCALE_A,
    af_vscale_a: AF_VSCALE_A,
    af_hscale_b: AF_HSCALE_B,
    af_vscale_b: AF_VSCALE_B,
    af_hscale_c: AF_HSCALE_C,
    af_vscale_c: AF_VSCALE_C,
    af_sum_a: AF_SUM_A,
    af_sum_b: AF_SUM_B,
    af_sum_c: AF_SUM_C,
    af_lum_a: AF_LUM_A,
    af_lum_b: AF_LUM_B,
    af_lum_c: AF_LUM_C,
    awb_mode: AWB_MODE,
    awb_hscale: AWB_HSCALE,
    awb_vscale: AWB_VSCALE,
    awb_th_lum: AWB_TH_LUM,
    awb_th_rg: AWB_TH_RG,
    awb_th_bg: AWB_TH_BG,
    awb0_white_cnt: AWB0_WHITE_CNT,
    awb0_acc_r: AWB0_ACC_R,
    awb0_acc_g: AWB0_ACC_G,
    awb0_acc_b: AWB0_ACC_B,
    color_ctrl: COLOR_CTRL,
    blc_value: BLC_VALUE,
    blc_ctrl0: BLC_CTRL0,
    blc_ctrl1: BLC_CTRL1,
    blc_ctrl2: BLC_CTRL2,
    blc_mean: BLC_MEAN,
    hist_mode: HIST_MODE,
    hist_coeff: HIST_COEFF,
    hist_offs: HIST_OFFS,
    hist_size: HIST_SIZE,
    hist_seg0: HIST_SEG0,
    hist_seg1: HIST_SEG1,
    hist_seg2: HIST_SEG2,
    hist_seg3: HIST_SEG3,
    hist_weight0: HIST_WEIGHT0,
    hist_weight1: HIST_WEIGHT1,
    hist_weight2: HIST_WEIGHT2,
    hist_weight3: HIST_WEIGHT3,
    hist_weight4: HIST_WEIGHT4,
    hist_weight5: HIST_WEIGHT5,
    hist_weight6: HIST_WEIGHT6,
    hist_bin0: HIST_BIN0,
    hist_bin1: HIST_BIN1,
    hist_bin2: HIST_BIN2,
    hist_bin3: HIST_BIN3,
    hist_bin4: HIST_BIN4,
    hist_bin5: HIST_BIN5,
    hist_bin6: HIST_BIN6,
    hist_bin7: HIST_BIN7,
    hist_bin8: HIST_BIN8,
    hist_bin9: HIST_BIN9,
    hist_bin10: HIST_BIN10,
    hist_bin11: HIST_BIN11,
    hist_bin12: HIST_BIN12,
    hist_bin13: HIST_BIN13,
    hist_bin14: HIST_BIN14,
    hist_bin15: HIST_BIN15,
    mem_aux_ctrl_0: MEM_AUX_CTRL_0,
    mem_aux_ctrl_1: MEM_AUX_CTRL_1,
    mem_aux_ctrl_2: MEM_AUX_CTRL_2,
    mem_aux_ctrl_3: MEM_AUX_CTRL_3,
    mem_aux_ctrl_4: MEM_AUX_CTRL_4,
    yuv_format: YUV_FORMAT,
    rdn_eco_cs: RDN_ECO_CS,
    rdn_eco_low: RDN_ECO_LOW,
    rdn_eco_high: RDN_ECO_HIGH,
}
impl RegisterBlock {
    #[doc = "0x00 - version control register"]
    #[inline(always)]
    pub const fn ver_date(&self) -> &VER_DATE {
        &self.ver_date
    }
    #[doc = "0x04 - isp clk control register"]
    #[inline(always)]
    pub const fn clk_en(&self) -> &CLK_EN {
        &self.clk_en
    }
    #[doc = "0x08 - isp module enable control register"]
    #[inline(always)]
    pub const fn cntl(&self) -> &CNTL {
        &self.cntl
    }
    #[doc = "0x0c - header hsync interval control register"]
    #[inline(always)]
    pub const fn hsync_cnt(&self) -> &HSYNC_CNT {
        &self.hsync_cnt
    }
    #[doc = "0x10 - frame control parameter register"]
    #[inline(always)]
    pub const fn frame_cfg(&self) -> &FRAME_CFG {
        &self.frame_cfg
    }
    #[doc = "0x14 - ccm coef register 0"]
    #[inline(always)]
    pub const fn ccm_coef0(&self) -> &CCM_COEF0 {
        &self.ccm_coef0
    }
    #[doc = "0x18 - ccm coef register 1"]
    #[inline(always)]
    pub const fn ccm_coef1(&self) -> &CCM_COEF1 {
        &self.ccm_coef1
    }
    #[doc = "0x1c - ccm coef register 3"]
    #[inline(always)]
    pub const fn ccm_coef3(&self) -> &CCM_COEF3 {
        &self.ccm_coef3
    }
    #[doc = "0x20 - ccm coef register 4"]
    #[inline(always)]
    pub const fn ccm_coef4(&self) -> &CCM_COEF4 {
        &self.ccm_coef4
    }
    #[doc = "0x24 - ccm coef register 5"]
    #[inline(always)]
    pub const fn ccm_coef5(&self) -> &CCM_COEF5 {
        &self.ccm_coef5
    }
    #[doc = "0x28 - bf pix2matrix ctrl"]
    #[inline(always)]
    pub const fn bf_matrix_ctrl(&self) -> &BF_MATRIX_CTRL {
        &self.bf_matrix_ctrl
    }
    #[doc = "0x2c - bf denoising level control register"]
    #[inline(always)]
    pub const fn bf_sigma(&self) -> &BF_SIGMA {
        &self.bf_sigma
    }
    #[doc = "0x30 - bf gau template register 0"]
    #[inline(always)]
    pub const fn bf_gau0(&self) -> &BF_GAU0 {
        &self.bf_gau0
    }
    #[doc = "0x34 - bf gau template register 1"]
    #[inline(always)]
    pub const fn bf_gau1(&self) -> &BF_GAU1 {
        &self.bf_gau1
    }
    #[doc = "0x38 - DPC mode control register"]
    #[inline(always)]
    pub const fn dpc_ctrl(&self) -> &DPC_CTRL {
        &self.dpc_ctrl
    }
    #[doc = "0x3c - DPC parameter config register"]
    #[inline(always)]
    pub const fn dpc_conf(&self) -> &DPC_CONF {
        &self.dpc_conf
    }
    #[doc = "0x40 - dpc pix2matrix ctrl"]
    #[inline(always)]
    pub const fn dpc_matrix_ctrl(&self) -> &DPC_MATRIX_CTRL {
        &self.dpc_matrix_ctrl
    }
    #[doc = "0x44 - DPC dead-pix number register"]
    #[inline(always)]
    pub const fn dpc_deadpix_cnt(&self) -> &DPC_DEADPIX_CNT {
        &self.dpc_deadpix_cnt
    }
    #[doc = "0x48 - LUT command register"]
    #[inline(always)]
    pub const fn lut_cmd(&self) -> &LUT_CMD {
        &self.lut_cmd
    }
    #[doc = "0x4c - LUT write data register"]
    #[inline(always)]
    pub const fn lut_wdata(&self) -> &LUT_WDATA {
        &self.lut_wdata
    }
    #[doc = "0x50 - LUT read data register"]
    #[inline(always)]
    pub const fn lut_rdata(&self) -> &LUT_RDATA {
        &self.lut_rdata
    }
    #[doc = "0x54 - LSC point in x-direction"]
    #[inline(always)]
    pub const fn lsc_tablesize(&self) -> &LSC_TABLESIZE {
        &self.lsc_tablesize
    }
    #[doc = "0x58 - demosaic pix2matrix ctrl"]
    #[inline(always)]
    pub const fn demosaic_matrix_ctrl(&self) -> &DEMOSAIC_MATRIX_CTRL {
        &self.demosaic_matrix_ctrl
    }
    #[doc = "0x5c - demosaic gradient select ratio"]
    #[inline(always)]
    pub const fn demosaic_grad_ratio(&self) -> &DEMOSAIC_GRAD_RATIO {
        &self.demosaic_grad_ratio
    }
    #[doc = "0x60 - median pix2matrix ctrl"]
    #[inline(always)]
    pub const fn median_matrix_ctrl(&self) -> &MEDIAN_MATRIX_CTRL {
        &self.median_matrix_ctrl
    }
    #[doc = "0x64 - raw interrupt register"]
    #[inline(always)]
    pub const fn int_raw(&self) -> &INT_RAW {
        &self.int_raw
    }
    #[doc = "0x68 - masked interrupt register"]
    #[inline(always)]
    pub const fn int_st(&self) -> &INT_ST {
        &self.int_st
    }
    #[doc = "0x6c - interrupt enable register"]
    #[inline(always)]
    pub const fn int_ena(&self) -> &INT_ENA {
        &self.int_ena
    }
    #[doc = "0x70 - interrupt clear register"]
    #[inline(always)]
    pub const fn int_clr(&self) -> &INT_CLR {
        &self.int_clr
    }
    #[doc = "0x74 - gamma control register"]
    #[inline(always)]
    pub const fn gamma_ctrl(&self) -> &GAMMA_CTRL {
        &self.gamma_ctrl
    }
    #[doc = "0x78 - point of Y-axis of r channel gamma curve register 1"]
    #[inline(always)]
    pub const fn gamma_ry1(&self) -> &GAMMA_RY1 {
        &self.gamma_ry1
    }
    #[doc = "0x7c - point of Y-axis of r channel gamma curve register 2"]
    #[inline(always)]
    pub const fn gamma_ry2(&self) -> &GAMMA_RY2 {
        &self.gamma_ry2
    }
    #[doc = "0x80 - point of Y-axis of r channel gamma curve register 3"]
    #[inline(always)]
    pub const fn gamma_ry3(&self) -> &GAMMA_RY3 {
        &self.gamma_ry3
    }
    #[doc = "0x84 - point of Y-axis of r channel gamma curve register 4"]
    #[inline(always)]
    pub const fn gamma_ry4(&self) -> &GAMMA_RY4 {
        &self.gamma_ry4
    }
    #[doc = "0x88 - point of Y-axis of g channel gamma curve register 1"]
    #[inline(always)]
    pub const fn gamma_gy1(&self) -> &GAMMA_GY1 {
        &self.gamma_gy1
    }
    #[doc = "0x8c - point of Y-axis of g channel gamma curve register 2"]
    #[inline(always)]
    pub const fn gamma_gy2(&self) -> &GAMMA_GY2 {
        &self.gamma_gy2
    }
    #[doc = "0x90 - point of Y-axis of g channel gamma curve register 3"]
    #[inline(always)]
    pub const fn gamma_gy3(&self) -> &GAMMA_GY3 {
        &self.gamma_gy3
    }
    #[doc = "0x94 - point of Y-axis of g channel gamma curve register 4"]
    #[inline(always)]
    pub const fn gamma_gy4(&self) -> &GAMMA_GY4 {
        &self.gamma_gy4
    }
    #[doc = "0x98 - point of Y-axis of b channel gamma curve register 1"]
    #[inline(always)]
    pub const fn gamma_by1(&self) -> &GAMMA_BY1 {
        &self.gamma_by1
    }
    #[doc = "0x9c - point of Y-axis of b channel gamma curve register 2"]
    #[inline(always)]
    pub const fn gamma_by2(&self) -> &GAMMA_BY2 {
        &self.gamma_by2
    }
    #[doc = "0xa0 - point of Y-axis of b channel gamma curve register 3"]
    #[inline(always)]
    pub const fn gamma_by3(&self) -> &GAMMA_BY3 {
        &self.gamma_by3
    }
    #[doc = "0xa4 - point of Y-axis of b channel gamma curve register 4"]
    #[inline(always)]
    pub const fn gamma_by4(&self) -> &GAMMA_BY4 {
        &self.gamma_by4
    }
    #[doc = "0xa8 - point of X-axis of r channel gamma curve register 1"]
    #[inline(always)]
    pub const fn gamma_rx1(&self) -> &GAMMA_RX1 {
        &self.gamma_rx1
    }
    #[doc = "0xac - point of X-axis of r channel gamma curve register 2"]
    #[inline(always)]
    pub const fn gamma_rx2(&self) -> &GAMMA_RX2 {
        &self.gamma_rx2
    }
    #[doc = "0xb0 - point of X-axis of g channel gamma curve register 1"]
    #[inline(always)]
    pub const fn gamma_gx1(&self) -> &GAMMA_GX1 {
        &self.gamma_gx1
    }
    #[doc = "0xb4 - point of X-axis of g channel gamma curve register 2"]
    #[inline(always)]
    pub const fn gamma_gx2(&self) -> &GAMMA_GX2 {
        &self.gamma_gx2
    }
    #[doc = "0xb8 - point of X-axis of b channel gamma curve register 1"]
    #[inline(always)]
    pub const fn gamma_bx1(&self) -> &GAMMA_BX1 {
        &self.gamma_bx1
    }
    #[doc = "0xbc - point of X-axis of b channel gamma curve register 2"]
    #[inline(always)]
    pub const fn gamma_bx2(&self) -> &GAMMA_BX2 {
        &self.gamma_bx2
    }
    #[doc = "0xc0 - ae control register"]
    #[inline(always)]
    pub const fn ae_ctrl(&self) -> &AE_CTRL {
        &self.ae_ctrl
    }
    #[doc = "0xc4 - ae monitor control register"]
    #[inline(always)]
    pub const fn ae_monitor(&self) -> &AE_MONITOR {
        &self.ae_monitor
    }
    #[doc = "0xc8 - ae window register in x-direction"]
    #[inline(always)]
    pub const fn ae_bx(&self) -> &AE_BX {
        &self.ae_bx
    }
    #[doc = "0xcc - ae window register in y-direction"]
    #[inline(always)]
    pub const fn ae_by(&self) -> &AE_BY {
        &self.ae_by
    }
    #[doc = "0xd0 - ae sub-window pix num register"]
    #[inline(always)]
    pub const fn ae_winpixnum(&self) -> &AE_WINPIXNUM {
        &self.ae_winpixnum
    }
    #[doc = "0xd4 - reciprocal of ae sub-window pixel number"]
    #[inline(always)]
    pub const fn ae_win_reciprocal(&self) -> &AE_WIN_RECIPROCAL {
        &self.ae_win_reciprocal
    }
    #[doc = "0xd8 - ae statistic result register 0"]
    #[inline(always)]
    pub const fn ae_block_mean_0(&self) -> &AE_BLOCK_MEAN_0 {
        &self.ae_block_mean_0
    }
    #[doc = "0xdc - ae statistic result register 1"]
    #[inline(always)]
    pub const fn ae_block_mean_1(&self) -> &AE_BLOCK_MEAN_1 {
        &self.ae_block_mean_1
    }
    #[doc = "0xe0 - ae statistic result register 2"]
    #[inline(always)]
    pub const fn ae_block_mean_2(&self) -> &AE_BLOCK_MEAN_2 {
        &self.ae_block_mean_2
    }
    #[doc = "0xe4 - ae statistic result register 3"]
    #[inline(always)]
    pub const fn ae_block_mean_3(&self) -> &AE_BLOCK_MEAN_3 {
        &self.ae_block_mean_3
    }
    #[doc = "0xe8 - ae statistic result register 4"]
    #[inline(always)]
    pub const fn ae_block_mean_4(&self) -> &AE_BLOCK_MEAN_4 {
        &self.ae_block_mean_4
    }
    #[doc = "0xec - ae statistic result register 5"]
    #[inline(always)]
    pub const fn ae_block_mean_5(&self) -> &AE_BLOCK_MEAN_5 {
        &self.ae_block_mean_5
    }
    #[doc = "0xf0 - ae statistic result register 6"]
    #[inline(always)]
    pub const fn ae_block_mean_6(&self) -> &AE_BLOCK_MEAN_6 {
        &self.ae_block_mean_6
    }
    #[doc = "0xf4 - sharp control register 0"]
    #[inline(always)]
    pub const fn sharp_ctrl0(&self) -> &SHARP_CTRL0 {
        &self.sharp_ctrl0
    }
    #[doc = "0xf8 - sharp usm config register 0"]
    #[inline(always)]
    pub const fn sharp_filter0(&self) -> &SHARP_FILTER0 {
        &self.sharp_filter0
    }
    #[doc = "0xfc - sharp usm config register 1"]
    #[inline(always)]
    pub const fn sharp_filter1(&self) -> &SHARP_FILTER1 {
        &self.sharp_filter1
    }
    #[doc = "0x100 - sharp usm config register 2"]
    #[inline(always)]
    pub const fn sharp_filter2(&self) -> &SHARP_FILTER2 {
        &self.sharp_filter2
    }
    #[doc = "0x104 - sharp pix2matrix ctrl"]
    #[inline(always)]
    pub const fn sharp_matrix_ctrl(&self) -> &SHARP_MATRIX_CTRL {
        &self.sharp_matrix_ctrl
    }
    #[doc = "0x108 - sharp control register 1"]
    #[inline(always)]
    pub const fn sharp_ctrl1(&self) -> &SHARP_CTRL1 {
        &self.sharp_ctrl1
    }
    #[doc = "0x10c - isp dma source trans control register"]
    #[inline(always)]
    pub const fn dma_cntl(&self) -> &DMA_CNTL {
        &self.dma_cntl
    }
    #[doc = "0x110 - isp dma source total raw number set register"]
    #[inline(always)]
    pub const fn dma_raw_data(&self) -> &DMA_RAW_DATA {
        &self.dma_raw_data
    }
    #[doc = "0x114 - isp cam source control register"]
    #[inline(always)]
    pub const fn cam_cntl(&self) -> &CAM_CNTL {
        &self.cam_cntl
    }
    #[doc = "0x118 - isp cam source config register"]
    #[inline(always)]
    pub const fn cam_conf(&self) -> &CAM_CONF {
        &self.cam_conf
    }
    #[doc = "0x11c - af control register 0"]
    #[inline(always)]
    pub const fn af_ctrl0(&self) -> &AF_CTRL0 {
        &self.af_ctrl0
    }
    #[doc = "0x120 - af control register 1"]
    #[inline(always)]
    pub const fn af_ctrl1(&self) -> &AF_CTRL1 {
        &self.af_ctrl1
    }
    #[doc = "0x124 - af gen threshold control register"]
    #[inline(always)]
    pub const fn af_gen_th_ctrl(&self) -> &AF_GEN_TH_CTRL {
        &self.af_gen_th_ctrl
    }
    #[doc = "0x128 - af monitor user sum threshold register"]
    #[inline(always)]
    pub const fn af_env_user_th_sum(&self) -> &AF_ENV_USER_TH_SUM {
        &self.af_env_user_th_sum
    }
    #[doc = "0x12c - af monitor user lum threshold register"]
    #[inline(always)]
    pub const fn af_env_user_th_lum(&self) -> &AF_ENV_USER_TH_LUM {
        &self.af_env_user_th_lum
    }
    #[doc = "0x130 - af threshold register"]
    #[inline(always)]
    pub const fn af_threshold(&self) -> &AF_THRESHOLD {
        &self.af_threshold
    }
    #[doc = "0x134 - h-scale of af window a register"]
    #[inline(always)]
    pub const fn af_hscale_a(&self) -> &AF_HSCALE_A {
        &self.af_hscale_a
    }
    #[doc = "0x138 - v-scale of af window a register"]
    #[inline(always)]
    pub const fn af_vscale_a(&self) -> &AF_VSCALE_A {
        &self.af_vscale_a
    }
    #[doc = "0x13c - h-scale of af window b register"]
    #[inline(always)]
    pub const fn af_hscale_b(&self) -> &AF_HSCALE_B {
        &self.af_hscale_b
    }
    #[doc = "0x140 - v-scale of af window b register"]
    #[inline(always)]
    pub const fn af_vscale_b(&self) -> &AF_VSCALE_B {
        &self.af_vscale_b
    }
    #[doc = "0x144 - v-scale of af window c register"]
    #[inline(always)]
    pub const fn af_hscale_c(&self) -> &AF_HSCALE_C {
        &self.af_hscale_c
    }
    #[doc = "0x148 - v-scale of af window c register"]
    #[inline(always)]
    pub const fn af_vscale_c(&self) -> &AF_VSCALE_C {
        &self.af_vscale_c
    }
    #[doc = "0x14c - result of sum of af window a"]
    #[inline(always)]
    pub const fn af_sum_a(&self) -> &AF_SUM_A {
        &self.af_sum_a
    }
    #[doc = "0x150 - result of sum of af window b"]
    #[inline(always)]
    pub const fn af_sum_b(&self) -> &AF_SUM_B {
        &self.af_sum_b
    }
    #[doc = "0x154 - result of sum of af window c"]
    #[inline(always)]
    pub const fn af_sum_c(&self) -> &AF_SUM_C {
        &self.af_sum_c
    }
    #[doc = "0x158 - result of lum of af window a"]
    #[inline(always)]
    pub const fn af_lum_a(&self) -> &AF_LUM_A {
        &self.af_lum_a
    }
    #[doc = "0x15c - result of lum of af window b"]
    #[inline(always)]
    pub const fn af_lum_b(&self) -> &AF_LUM_B {
        &self.af_lum_b
    }
    #[doc = "0x160 - result of lum of af window c"]
    #[inline(always)]
    pub const fn af_lum_c(&self) -> &AF_LUM_C {
        &self.af_lum_c
    }
    #[doc = "0x164 - awb mode control register"]
    #[inline(always)]
    pub const fn awb_mode(&self) -> &AWB_MODE {
        &self.awb_mode
    }
    #[doc = "0x168 - h-scale of awb window"]
    #[inline(always)]
    pub const fn awb_hscale(&self) -> &AWB_HSCALE {
        &self.awb_hscale
    }
    #[doc = "0x16c - v-scale of awb window"]
    #[inline(always)]
    pub const fn awb_vscale(&self) -> &AWB_VSCALE {
        &self.awb_vscale
    }
    #[doc = "0x170 - awb lum threshold register"]
    #[inline(always)]
    pub const fn awb_th_lum(&self) -> &AWB_TH_LUM {
        &self.awb_th_lum
    }
    #[doc = "0x174 - awb r/g threshold register"]
    #[inline(always)]
    pub const fn awb_th_rg(&self) -> &AWB_TH_RG {
        &self.awb_th_rg
    }
    #[doc = "0x178 - awb b/g threshold register"]
    #[inline(always)]
    pub const fn awb_th_bg(&self) -> &AWB_TH_BG {
        &self.awb_th_bg
    }
    #[doc = "0x17c - result of awb white point number"]
    #[inline(always)]
    pub const fn awb0_white_cnt(&self) -> &AWB0_WHITE_CNT {
        &self.awb0_white_cnt
    }
    #[doc = "0x180 - result of accumulate of r channel of all white points"]
    #[inline(always)]
    pub const fn awb0_acc_r(&self) -> &AWB0_ACC_R {
        &self.awb0_acc_r
    }
    #[doc = "0x184 - result of accumulate of g channel of all white points"]
    #[inline(always)]
    pub const fn awb0_acc_g(&self) -> &AWB0_ACC_G {
        &self.awb0_acc_g
    }
    #[doc = "0x188 - result of accumulate of b channel of all white points"]
    #[inline(always)]
    pub const fn awb0_acc_b(&self) -> &AWB0_ACC_B {
        &self.awb0_acc_b
    }
    #[doc = "0x18c - color control register"]
    #[inline(always)]
    pub const fn color_ctrl(&self) -> &COLOR_CTRL {
        &self.color_ctrl
    }
    #[doc = "0x190 - blc black level register"]
    #[inline(always)]
    pub const fn blc_value(&self) -> &BLC_VALUE {
        &self.blc_value
    }
    #[doc = "0x194 - blc stretch control register"]
    #[inline(always)]
    pub const fn blc_ctrl0(&self) -> &BLC_CTRL0 {
        &self.blc_ctrl0
    }
    #[doc = "0x198 - blc window control register"]
    #[inline(always)]
    pub const fn blc_ctrl1(&self) -> &BLC_CTRL1 {
        &self.blc_ctrl1
    }
    #[doc = "0x19c - blc black threshold control register"]
    #[inline(always)]
    pub const fn blc_ctrl2(&self) -> &BLC_CTRL2 {
        &self.blc_ctrl2
    }
    #[doc = "0x1a0 - results of the average of black window"]
    #[inline(always)]
    pub const fn blc_mean(&self) -> &BLC_MEAN {
        &self.blc_mean
    }
    #[doc = "0x1a4 - histogram mode control register"]
    #[inline(always)]
    pub const fn hist_mode(&self) -> &HIST_MODE {
        &self.hist_mode
    }
    #[doc = "0x1a8 - histogram rgb to gray coefficients register"]
    #[inline(always)]
    pub const fn hist_coeff(&self) -> &HIST_COEFF {
        &self.hist_coeff
    }
    #[doc = "0x1ac - histogram window offsets register"]
    #[inline(always)]
    pub const fn hist_offs(&self) -> &HIST_OFFS {
        &self.hist_offs
    }
    #[doc = "0x1b0 - histogram sub-window size register"]
    #[inline(always)]
    pub const fn hist_size(&self) -> &HIST_SIZE {
        &self.hist_size
    }
    #[doc = "0x1b4 - histogram bin control register 0"]
    #[inline(always)]
    pub const fn hist_seg0(&self) -> &HIST_SEG0 {
        &self.hist_seg0
    }
    #[doc = "0x1b8 - histogram bin control register 1"]
    #[inline(always)]
    pub const fn hist_seg1(&self) -> &HIST_SEG1 {
        &self.hist_seg1
    }
    #[doc = "0x1bc - histogram bin control register 2"]
    #[inline(always)]
    pub const fn hist_seg2(&self) -> &HIST_SEG2 {
        &self.hist_seg2
    }
    #[doc = "0x1c0 - histogram bin control register 3"]
    #[inline(always)]
    pub const fn hist_seg3(&self) -> &HIST_SEG3 {
        &self.hist_seg3
    }
    #[doc = "0x1c4 - histogram sub-window weight register 0"]
    #[inline(always)]
    pub const fn hist_weight0(&self) -> &HIST_WEIGHT0 {
        &self.hist_weight0
    }
    #[doc = "0x1c8 - histogram sub-window weight register 1"]
    #[inline(always)]
    pub const fn hist_weight1(&self) -> &HIST_WEIGHT1 {
        &self.hist_weight1
    }
    #[doc = "0x1cc - histogram sub-window weight register 2"]
    #[inline(always)]
    pub const fn hist_weight2(&self) -> &HIST_WEIGHT2 {
        &self.hist_weight2
    }
    #[doc = "0x1d0 - histogram sub-window weight register 3"]
    #[inline(always)]
    pub const fn hist_weight3(&self) -> &HIST_WEIGHT3 {
        &self.hist_weight3
    }
    #[doc = "0x1d4 - histogram sub-window weight register 4"]
    #[inline(always)]
    pub const fn hist_weight4(&self) -> &HIST_WEIGHT4 {
        &self.hist_weight4
    }
    #[doc = "0x1d8 - histogram sub-window weight register 5"]
    #[inline(always)]
    pub const fn hist_weight5(&self) -> &HIST_WEIGHT5 {
        &self.hist_weight5
    }
    #[doc = "0x1dc - histogram sub-window weight register 6"]
    #[inline(always)]
    pub const fn hist_weight6(&self) -> &HIST_WEIGHT6 {
        &self.hist_weight6
    }
    #[doc = "0x1e0 - result of histogram bin 0"]
    #[inline(always)]
    pub const fn hist_bin0(&self) -> &HIST_BIN0 {
        &self.hist_bin0
    }
    #[doc = "0x1e4 - result of histogram bin 1"]
    #[inline(always)]
    pub const fn hist_bin1(&self) -> &HIST_BIN1 {
        &self.hist_bin1
    }
    #[doc = "0x1e8 - result of histogram bin 2"]
    #[inline(always)]
    pub const fn hist_bin2(&self) -> &HIST_BIN2 {
        &self.hist_bin2
    }
    #[doc = "0x1ec - result of histogram bin 3"]
    #[inline(always)]
    pub const fn hist_bin3(&self) -> &HIST_BIN3 {
        &self.hist_bin3
    }
    #[doc = "0x1f0 - result of histogram bin 4"]
    #[inline(always)]
    pub const fn hist_bin4(&self) -> &HIST_BIN4 {
        &self.hist_bin4
    }
    #[doc = "0x1f4 - result of histogram bin 5"]
    #[inline(always)]
    pub const fn hist_bin5(&self) -> &HIST_BIN5 {
        &self.hist_bin5
    }
    #[doc = "0x1f8 - result of histogram bin 6"]
    #[inline(always)]
    pub const fn hist_bin6(&self) -> &HIST_BIN6 {
        &self.hist_bin6
    }
    #[doc = "0x1fc - result of histogram bin 7"]
    #[inline(always)]
    pub const fn hist_bin7(&self) -> &HIST_BIN7 {
        &self.hist_bin7
    }
    #[doc = "0x200 - result of histogram bin 8"]
    #[inline(always)]
    pub const fn hist_bin8(&self) -> &HIST_BIN8 {
        &self.hist_bin8
    }
    #[doc = "0x204 - result of histogram bin 9"]
    #[inline(always)]
    pub const fn hist_bin9(&self) -> &HIST_BIN9 {
        &self.hist_bin9
    }
    #[doc = "0x208 - result of histogram bin 10"]
    #[inline(always)]
    pub const fn hist_bin10(&self) -> &HIST_BIN10 {
        &self.hist_bin10
    }
    #[doc = "0x20c - result of histogram bin 11"]
    #[inline(always)]
    pub const fn hist_bin11(&self) -> &HIST_BIN11 {
        &self.hist_bin11
    }
    #[doc = "0x210 - result of histogram bin 12"]
    #[inline(always)]
    pub const fn hist_bin12(&self) -> &HIST_BIN12 {
        &self.hist_bin12
    }
    #[doc = "0x214 - result of histogram bin 13"]
    #[inline(always)]
    pub const fn hist_bin13(&self) -> &HIST_BIN13 {
        &self.hist_bin13
    }
    #[doc = "0x218 - result of histogram bin 14"]
    #[inline(always)]
    pub const fn hist_bin14(&self) -> &HIST_BIN14 {
        &self.hist_bin14
    }
    #[doc = "0x21c - result of histogram bin 15"]
    #[inline(always)]
    pub const fn hist_bin15(&self) -> &HIST_BIN15 {
        &self.hist_bin15
    }
    #[doc = "0x220 - mem aux control register 0"]
    #[inline(always)]
    pub const fn mem_aux_ctrl_0(&self) -> &MEM_AUX_CTRL_0 {
        &self.mem_aux_ctrl_0
    }
    #[doc = "0x224 - mem aux control register 1"]
    #[inline(always)]
    pub const fn mem_aux_ctrl_1(&self) -> &MEM_AUX_CTRL_1 {
        &self.mem_aux_ctrl_1
    }
    #[doc = "0x228 - mem aux control register 2"]
    #[inline(always)]
    pub const fn mem_aux_ctrl_2(&self) -> &MEM_AUX_CTRL_2 {
        &self.mem_aux_ctrl_2
    }
    #[doc = "0x22c - mem aux control register 3"]
    #[inline(always)]
    pub const fn mem_aux_ctrl_3(&self) -> &MEM_AUX_CTRL_3 {
        &self.mem_aux_ctrl_3
    }
    #[doc = "0x230 - mem aux control register 4"]
    #[inline(always)]
    pub const fn mem_aux_ctrl_4(&self) -> &MEM_AUX_CTRL_4 {
        &self.mem_aux_ctrl_4
    }
    #[doc = "0x234 - yuv format control register"]
    #[inline(always)]
    pub const fn yuv_format(&self) -> &YUV_FORMAT {
        &self.yuv_format
    }
    #[doc = "0x238 - rdn eco cs register"]
    #[inline(always)]
    pub const fn rdn_eco_cs(&self) -> &RDN_ECO_CS {
        &self.rdn_eco_cs
    }
    #[doc = "0x23c - rdn eco all low register"]
    #[inline(always)]
    pub const fn rdn_eco_low(&self) -> &RDN_ECO_LOW {
        &self.rdn_eco_low
    }
    #[doc = "0x240 - rdn eco all high register"]
    #[inline(always)]
    pub const fn rdn_eco_high(&self) -> &RDN_ECO_HIGH {
        &self.rdn_eco_high
    }
}
#[doc = "VER_DATE (rw) register accessor: version control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ver_date::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ver_date::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ver_date`] module"]
pub type VER_DATE = crate::Reg<ver_date::VER_DATE_SPEC>;
#[doc = "version control register"]
pub mod ver_date;
#[doc = "CLK_EN (rw) register accessor: isp clk control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`clk_en::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`clk_en::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@clk_en`] module"]
pub type CLK_EN = crate::Reg<clk_en::CLK_EN_SPEC>;
#[doc = "isp clk control register"]
pub mod clk_en;
#[doc = "CNTL (rw) register accessor: isp module enable control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cntl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cntl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cntl`] module"]
pub type CNTL = crate::Reg<cntl::CNTL_SPEC>;
#[doc = "isp module enable control register"]
pub mod cntl;
#[doc = "HSYNC_CNT (rw) register accessor: header hsync interval control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hsync_cnt::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hsync_cnt::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hsync_cnt`] module"]
pub type HSYNC_CNT = crate::Reg<hsync_cnt::HSYNC_CNT_SPEC>;
#[doc = "header hsync interval control register"]
pub mod hsync_cnt;
#[doc = "FRAME_CFG (rw) register accessor: frame control parameter register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`frame_cfg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`frame_cfg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@frame_cfg`] module"]
pub type FRAME_CFG = crate::Reg<frame_cfg::FRAME_CFG_SPEC>;
#[doc = "frame control parameter register"]
pub mod frame_cfg;
#[doc = "CCM_COEF0 (rw) register accessor: ccm coef register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ccm_coef0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ccm_coef0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ccm_coef0`] module"]
pub type CCM_COEF0 = crate::Reg<ccm_coef0::CCM_COEF0_SPEC>;
#[doc = "ccm coef register 0"]
pub mod ccm_coef0;
#[doc = "CCM_COEF1 (rw) register accessor: ccm coef register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ccm_coef1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ccm_coef1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ccm_coef1`] module"]
pub type CCM_COEF1 = crate::Reg<ccm_coef1::CCM_COEF1_SPEC>;
#[doc = "ccm coef register 1"]
pub mod ccm_coef1;
#[doc = "CCM_COEF3 (rw) register accessor: ccm coef register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ccm_coef3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ccm_coef3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ccm_coef3`] module"]
pub type CCM_COEF3 = crate::Reg<ccm_coef3::CCM_COEF3_SPEC>;
#[doc = "ccm coef register 3"]
pub mod ccm_coef3;
#[doc = "CCM_COEF4 (rw) register accessor: ccm coef register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ccm_coef4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ccm_coef4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ccm_coef4`] module"]
pub type CCM_COEF4 = crate::Reg<ccm_coef4::CCM_COEF4_SPEC>;
#[doc = "ccm coef register 4"]
pub mod ccm_coef4;
#[doc = "CCM_COEF5 (rw) register accessor: ccm coef register 5\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ccm_coef5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ccm_coef5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ccm_coef5`] module"]
pub type CCM_COEF5 = crate::Reg<ccm_coef5::CCM_COEF5_SPEC>;
#[doc = "ccm coef register 5"]
pub mod ccm_coef5;
#[doc = "BF_MATRIX_CTRL (rw) register accessor: bf pix2matrix ctrl\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`bf_matrix_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`bf_matrix_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bf_matrix_ctrl`] module"]
pub type BF_MATRIX_CTRL = crate::Reg<bf_matrix_ctrl::BF_MATRIX_CTRL_SPEC>;
#[doc = "bf pix2matrix ctrl"]
pub mod bf_matrix_ctrl;
#[doc = "BF_SIGMA (rw) register accessor: bf denoising level control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`bf_sigma::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`bf_sigma::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bf_sigma`] module"]
pub type BF_SIGMA = crate::Reg<bf_sigma::BF_SIGMA_SPEC>;
#[doc = "bf denoising level control register"]
pub mod bf_sigma;
#[doc = "BF_GAU0 (rw) register accessor: bf gau template register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`bf_gau0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`bf_gau0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bf_gau0`] module"]
pub type BF_GAU0 = crate::Reg<bf_gau0::BF_GAU0_SPEC>;
#[doc = "bf gau template register 0"]
pub mod bf_gau0;
#[doc = "BF_GAU1 (rw) register accessor: bf gau template register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`bf_gau1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`bf_gau1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@bf_gau1`] module"]
pub type BF_GAU1 = crate::Reg<bf_gau1::BF_GAU1_SPEC>;
#[doc = "bf gau template register 1"]
pub mod bf_gau1;
#[doc = "DPC_CTRL (rw) register accessor: DPC mode control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dpc_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dpc_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dpc_ctrl`] module"]
pub type DPC_CTRL = crate::Reg<dpc_ctrl::DPC_CTRL_SPEC>;
#[doc = "DPC mode control register"]
pub mod dpc_ctrl;
#[doc = "DPC_CONF (rw) register accessor: DPC parameter config register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dpc_conf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dpc_conf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dpc_conf`] module"]
pub type DPC_CONF = crate::Reg<dpc_conf::DPC_CONF_SPEC>;
#[doc = "DPC parameter config register"]
pub mod dpc_conf;
#[doc = "DPC_MATRIX_CTRL (rw) register accessor: dpc pix2matrix ctrl\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dpc_matrix_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dpc_matrix_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dpc_matrix_ctrl`] module"]
pub type DPC_MATRIX_CTRL = crate::Reg<dpc_matrix_ctrl::DPC_MATRIX_CTRL_SPEC>;
#[doc = "dpc pix2matrix ctrl"]
pub mod dpc_matrix_ctrl;
#[doc = "DPC_DEADPIX_CNT (r) register accessor: DPC dead-pix number register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dpc_deadpix_cnt::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dpc_deadpix_cnt`] module"]
pub type DPC_DEADPIX_CNT = crate::Reg<dpc_deadpix_cnt::DPC_DEADPIX_CNT_SPEC>;
#[doc = "DPC dead-pix number register"]
pub mod dpc_deadpix_cnt;
#[doc = "LUT_CMD (w) register accessor: LUT command register\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`lut_cmd::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lut_cmd`] module"]
pub type LUT_CMD = crate::Reg<lut_cmd::LUT_CMD_SPEC>;
#[doc = "LUT command register"]
pub mod lut_cmd;
#[doc = "LUT_WDATA (rw) register accessor: LUT write data register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`lut_wdata::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`lut_wdata::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lut_wdata`] module"]
pub type LUT_WDATA = crate::Reg<lut_wdata::LUT_WDATA_SPEC>;
#[doc = "LUT write data register"]
pub mod lut_wdata;
#[doc = "LUT_RDATA (r) register accessor: LUT read data register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`lut_rdata::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lut_rdata`] module"]
pub type LUT_RDATA = crate::Reg<lut_rdata::LUT_RDATA_SPEC>;
#[doc = "LUT read data register"]
pub mod lut_rdata;
#[doc = "LSC_TABLESIZE (rw) register accessor: LSC point in x-direction\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`lsc_tablesize::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`lsc_tablesize::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@lsc_tablesize`] module"]
pub type LSC_TABLESIZE = crate::Reg<lsc_tablesize::LSC_TABLESIZE_SPEC>;
#[doc = "LSC point in x-direction"]
pub mod lsc_tablesize;
#[doc = "DEMOSAIC_MATRIX_CTRL (rw) register accessor: demosaic pix2matrix ctrl\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`demosaic_matrix_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`demosaic_matrix_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@demosaic_matrix_ctrl`] module"]
pub type DEMOSAIC_MATRIX_CTRL = crate::Reg<demosaic_matrix_ctrl::DEMOSAIC_MATRIX_CTRL_SPEC>;
#[doc = "demosaic pix2matrix ctrl"]
pub mod demosaic_matrix_ctrl;
#[doc = "DEMOSAIC_GRAD_RATIO (rw) register accessor: demosaic gradient select ratio\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`demosaic_grad_ratio::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`demosaic_grad_ratio::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@demosaic_grad_ratio`] module"]
pub type DEMOSAIC_GRAD_RATIO = crate::Reg<demosaic_grad_ratio::DEMOSAIC_GRAD_RATIO_SPEC>;
#[doc = "demosaic gradient select ratio"]
pub mod demosaic_grad_ratio;
#[doc = "MEDIAN_MATRIX_CTRL (rw) register accessor: median pix2matrix ctrl\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`median_matrix_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`median_matrix_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@median_matrix_ctrl`] module"]
pub type MEDIAN_MATRIX_CTRL = crate::Reg<median_matrix_ctrl::MEDIAN_MATRIX_CTRL_SPEC>;
#[doc = "median pix2matrix ctrl"]
pub mod median_matrix_ctrl;
#[doc = "INT_RAW (r) register accessor: raw interrupt register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`int_raw::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@int_raw`] module"]
pub type INT_RAW = crate::Reg<int_raw::INT_RAW_SPEC>;
#[doc = "raw interrupt register"]
pub mod int_raw;
#[doc = "INT_ST (r) register accessor: masked interrupt register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`int_st::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@int_st`] module"]
pub type INT_ST = crate::Reg<int_st::INT_ST_SPEC>;
#[doc = "masked interrupt register"]
pub mod int_st;
#[doc = "INT_ENA (rw) register accessor: interrupt enable register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`int_ena::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`int_ena::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@int_ena`] module"]
pub type INT_ENA = crate::Reg<int_ena::INT_ENA_SPEC>;
#[doc = "interrupt enable register"]
pub mod int_ena;
#[doc = "INT_CLR (w) register accessor: interrupt clear register\n\nYou can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`int_clr::W`]. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@int_clr`] module"]
pub type INT_CLR = crate::Reg<int_clr::INT_CLR_SPEC>;
#[doc = "interrupt clear register"]
pub mod int_clr;
#[doc = "GAMMA_CTRL (rw) register accessor: gamma control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_ctrl`] module"]
pub type GAMMA_CTRL = crate::Reg<gamma_ctrl::GAMMA_CTRL_SPEC>;
#[doc = "gamma control register"]
pub mod gamma_ctrl;
#[doc = "GAMMA_RY1 (rw) register accessor: point of Y-axis of r channel gamma curve register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_ry1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_ry1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_ry1`] module"]
pub type GAMMA_RY1 = crate::Reg<gamma_ry1::GAMMA_RY1_SPEC>;
#[doc = "point of Y-axis of r channel gamma curve register 1"]
pub mod gamma_ry1;
#[doc = "GAMMA_RY2 (rw) register accessor: point of Y-axis of r channel gamma curve register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_ry2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_ry2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_ry2`] module"]
pub type GAMMA_RY2 = crate::Reg<gamma_ry2::GAMMA_RY2_SPEC>;
#[doc = "point of Y-axis of r channel gamma curve register 2"]
pub mod gamma_ry2;
#[doc = "GAMMA_RY3 (rw) register accessor: point of Y-axis of r channel gamma curve register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_ry3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_ry3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_ry3`] module"]
pub type GAMMA_RY3 = crate::Reg<gamma_ry3::GAMMA_RY3_SPEC>;
#[doc = "point of Y-axis of r channel gamma curve register 3"]
pub mod gamma_ry3;
#[doc = "GAMMA_RY4 (rw) register accessor: point of Y-axis of r channel gamma curve register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_ry4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_ry4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_ry4`] module"]
pub type GAMMA_RY4 = crate::Reg<gamma_ry4::GAMMA_RY4_SPEC>;
#[doc = "point of Y-axis of r channel gamma curve register 4"]
pub mod gamma_ry4;
#[doc = "GAMMA_GY1 (rw) register accessor: point of Y-axis of g channel gamma curve register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_gy1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_gy1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_gy1`] module"]
pub type GAMMA_GY1 = crate::Reg<gamma_gy1::GAMMA_GY1_SPEC>;
#[doc = "point of Y-axis of g channel gamma curve register 1"]
pub mod gamma_gy1;
#[doc = "GAMMA_GY2 (rw) register accessor: point of Y-axis of g channel gamma curve register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_gy2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_gy2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_gy2`] module"]
pub type GAMMA_GY2 = crate::Reg<gamma_gy2::GAMMA_GY2_SPEC>;
#[doc = "point of Y-axis of g channel gamma curve register 2"]
pub mod gamma_gy2;
#[doc = "GAMMA_GY3 (rw) register accessor: point of Y-axis of g channel gamma curve register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_gy3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_gy3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_gy3`] module"]
pub type GAMMA_GY3 = crate::Reg<gamma_gy3::GAMMA_GY3_SPEC>;
#[doc = "point of Y-axis of g channel gamma curve register 3"]
pub mod gamma_gy3;
#[doc = "GAMMA_GY4 (rw) register accessor: point of Y-axis of g channel gamma curve register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_gy4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_gy4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_gy4`] module"]
pub type GAMMA_GY4 = crate::Reg<gamma_gy4::GAMMA_GY4_SPEC>;
#[doc = "point of Y-axis of g channel gamma curve register 4"]
pub mod gamma_gy4;
#[doc = "GAMMA_BY1 (rw) register accessor: point of Y-axis of b channel gamma curve register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_by1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_by1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_by1`] module"]
pub type GAMMA_BY1 = crate::Reg<gamma_by1::GAMMA_BY1_SPEC>;
#[doc = "point of Y-axis of b channel gamma curve register 1"]
pub mod gamma_by1;
#[doc = "GAMMA_BY2 (rw) register accessor: point of Y-axis of b channel gamma curve register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_by2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_by2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_by2`] module"]
pub type GAMMA_BY2 = crate::Reg<gamma_by2::GAMMA_BY2_SPEC>;
#[doc = "point of Y-axis of b channel gamma curve register 2"]
pub mod gamma_by2;
#[doc = "GAMMA_BY3 (rw) register accessor: point of Y-axis of b channel gamma curve register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_by3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_by3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_by3`] module"]
pub type GAMMA_BY3 = crate::Reg<gamma_by3::GAMMA_BY3_SPEC>;
#[doc = "point of Y-axis of b channel gamma curve register 3"]
pub mod gamma_by3;
#[doc = "GAMMA_BY4 (rw) register accessor: point of Y-axis of b channel gamma curve register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_by4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_by4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_by4`] module"]
pub type GAMMA_BY4 = crate::Reg<gamma_by4::GAMMA_BY4_SPEC>;
#[doc = "point of Y-axis of b channel gamma curve register 4"]
pub mod gamma_by4;
#[doc = "GAMMA_RX1 (rw) register accessor: point of X-axis of r channel gamma curve register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_rx1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_rx1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_rx1`] module"]
pub type GAMMA_RX1 = crate::Reg<gamma_rx1::GAMMA_RX1_SPEC>;
#[doc = "point of X-axis of r channel gamma curve register 1"]
pub mod gamma_rx1;
#[doc = "GAMMA_RX2 (rw) register accessor: point of X-axis of r channel gamma curve register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_rx2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_rx2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_rx2`] module"]
pub type GAMMA_RX2 = crate::Reg<gamma_rx2::GAMMA_RX2_SPEC>;
#[doc = "point of X-axis of r channel gamma curve register 2"]
pub mod gamma_rx2;
#[doc = "GAMMA_GX1 (rw) register accessor: point of X-axis of g channel gamma curve register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_gx1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_gx1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_gx1`] module"]
pub type GAMMA_GX1 = crate::Reg<gamma_gx1::GAMMA_GX1_SPEC>;
#[doc = "point of X-axis of g channel gamma curve register 1"]
pub mod gamma_gx1;
#[doc = "GAMMA_GX2 (rw) register accessor: point of X-axis of g channel gamma curve register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_gx2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_gx2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_gx2`] module"]
pub type GAMMA_GX2 = crate::Reg<gamma_gx2::GAMMA_GX2_SPEC>;
#[doc = "point of X-axis of g channel gamma curve register 2"]
pub mod gamma_gx2;
#[doc = "GAMMA_BX1 (rw) register accessor: point of X-axis of b channel gamma curve register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_bx1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_bx1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_bx1`] module"]
pub type GAMMA_BX1 = crate::Reg<gamma_bx1::GAMMA_BX1_SPEC>;
#[doc = "point of X-axis of b channel gamma curve register 1"]
pub mod gamma_bx1;
#[doc = "GAMMA_BX2 (rw) register accessor: point of X-axis of b channel gamma curve register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`gamma_bx2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`gamma_bx2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@gamma_bx2`] module"]
pub type GAMMA_BX2 = crate::Reg<gamma_bx2::GAMMA_BX2_SPEC>;
#[doc = "point of X-axis of b channel gamma curve register 2"]
pub mod gamma_bx2;
#[doc = "AE_CTRL (rw) register accessor: ae control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ae_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_ctrl`] module"]
pub type AE_CTRL = crate::Reg<ae_ctrl::AE_CTRL_SPEC>;
#[doc = "ae control register"]
pub mod ae_ctrl;
#[doc = "AE_MONITOR (rw) register accessor: ae monitor control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_monitor::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ae_monitor::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_monitor`] module"]
pub type AE_MONITOR = crate::Reg<ae_monitor::AE_MONITOR_SPEC>;
#[doc = "ae monitor control register"]
pub mod ae_monitor;
#[doc = "AE_BX (rw) register accessor: ae window register in x-direction\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_bx::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ae_bx::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_bx`] module"]
pub type AE_BX = crate::Reg<ae_bx::AE_BX_SPEC>;
#[doc = "ae window register in x-direction"]
pub mod ae_bx;
#[doc = "AE_BY (rw) register accessor: ae window register in y-direction\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_by::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ae_by::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_by`] module"]
pub type AE_BY = crate::Reg<ae_by::AE_BY_SPEC>;
#[doc = "ae window register in y-direction"]
pub mod ae_by;
#[doc = "AE_WINPIXNUM (rw) register accessor: ae sub-window pix num register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_winpixnum::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ae_winpixnum::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_winpixnum`] module"]
pub type AE_WINPIXNUM = crate::Reg<ae_winpixnum::AE_WINPIXNUM_SPEC>;
#[doc = "ae sub-window pix num register"]
pub mod ae_winpixnum;
#[doc = "AE_WIN_RECIPROCAL (rw) register accessor: reciprocal of ae sub-window pixel number\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_win_reciprocal::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`ae_win_reciprocal::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_win_reciprocal`] module"]
pub type AE_WIN_RECIPROCAL = crate::Reg<ae_win_reciprocal::AE_WIN_RECIPROCAL_SPEC>;
#[doc = "reciprocal of ae sub-window pixel number"]
pub mod ae_win_reciprocal;
#[doc = "AE_BLOCK_MEAN_0 (r) register accessor: ae statistic result register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_block_mean_0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_block_mean_0`] module"]
pub type AE_BLOCK_MEAN_0 = crate::Reg<ae_block_mean_0::AE_BLOCK_MEAN_0_SPEC>;
#[doc = "ae statistic result register 0"]
pub mod ae_block_mean_0;
#[doc = "AE_BLOCK_MEAN_1 (r) register accessor: ae statistic result register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_block_mean_1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_block_mean_1`] module"]
pub type AE_BLOCK_MEAN_1 = crate::Reg<ae_block_mean_1::AE_BLOCK_MEAN_1_SPEC>;
#[doc = "ae statistic result register 1"]
pub mod ae_block_mean_1;
#[doc = "AE_BLOCK_MEAN_2 (r) register accessor: ae statistic result register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_block_mean_2::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_block_mean_2`] module"]
pub type AE_BLOCK_MEAN_2 = crate::Reg<ae_block_mean_2::AE_BLOCK_MEAN_2_SPEC>;
#[doc = "ae statistic result register 2"]
pub mod ae_block_mean_2;
#[doc = "AE_BLOCK_MEAN_3 (r) register accessor: ae statistic result register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_block_mean_3::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_block_mean_3`] module"]
pub type AE_BLOCK_MEAN_3 = crate::Reg<ae_block_mean_3::AE_BLOCK_MEAN_3_SPEC>;
#[doc = "ae statistic result register 3"]
pub mod ae_block_mean_3;
#[doc = "AE_BLOCK_MEAN_4 (r) register accessor: ae statistic result register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_block_mean_4::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_block_mean_4`] module"]
pub type AE_BLOCK_MEAN_4 = crate::Reg<ae_block_mean_4::AE_BLOCK_MEAN_4_SPEC>;
#[doc = "ae statistic result register 4"]
pub mod ae_block_mean_4;
#[doc = "AE_BLOCK_MEAN_5 (r) register accessor: ae statistic result register 5\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_block_mean_5::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_block_mean_5`] module"]
pub type AE_BLOCK_MEAN_5 = crate::Reg<ae_block_mean_5::AE_BLOCK_MEAN_5_SPEC>;
#[doc = "ae statistic result register 5"]
pub mod ae_block_mean_5;
#[doc = "AE_BLOCK_MEAN_6 (r) register accessor: ae statistic result register 6\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`ae_block_mean_6::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@ae_block_mean_6`] module"]
pub type AE_BLOCK_MEAN_6 = crate::Reg<ae_block_mean_6::AE_BLOCK_MEAN_6_SPEC>;
#[doc = "ae statistic result register 6"]
pub mod ae_block_mean_6;
#[doc = "SHARP_CTRL0 (rw) register accessor: sharp control register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sharp_ctrl0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sharp_ctrl0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sharp_ctrl0`] module"]
pub type SHARP_CTRL0 = crate::Reg<sharp_ctrl0::SHARP_CTRL0_SPEC>;
#[doc = "sharp control register 0"]
pub mod sharp_ctrl0;
#[doc = "SHARP_FILTER0 (rw) register accessor: sharp usm config register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sharp_filter0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sharp_filter0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sharp_filter0`] module"]
pub type SHARP_FILTER0 = crate::Reg<sharp_filter0::SHARP_FILTER0_SPEC>;
#[doc = "sharp usm config register 0"]
pub mod sharp_filter0;
#[doc = "SHARP_FILTER1 (rw) register accessor: sharp usm config register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sharp_filter1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sharp_filter1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sharp_filter1`] module"]
pub type SHARP_FILTER1 = crate::Reg<sharp_filter1::SHARP_FILTER1_SPEC>;
#[doc = "sharp usm config register 1"]
pub mod sharp_filter1;
#[doc = "SHARP_FILTER2 (rw) register accessor: sharp usm config register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sharp_filter2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sharp_filter2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sharp_filter2`] module"]
pub type SHARP_FILTER2 = crate::Reg<sharp_filter2::SHARP_FILTER2_SPEC>;
#[doc = "sharp usm config register 2"]
pub mod sharp_filter2;
#[doc = "SHARP_MATRIX_CTRL (rw) register accessor: sharp pix2matrix ctrl\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sharp_matrix_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sharp_matrix_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sharp_matrix_ctrl`] module"]
pub type SHARP_MATRIX_CTRL = crate::Reg<sharp_matrix_ctrl::SHARP_MATRIX_CTRL_SPEC>;
#[doc = "sharp pix2matrix ctrl"]
pub mod sharp_matrix_ctrl;
#[doc = "SHARP_CTRL1 (r) register accessor: sharp control register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`sharp_ctrl1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@sharp_ctrl1`] module"]
pub type SHARP_CTRL1 = crate::Reg<sharp_ctrl1::SHARP_CTRL1_SPEC>;
#[doc = "sharp control register 1"]
pub mod sharp_ctrl1;
#[doc = "DMA_CNTL (rw) register accessor: isp dma source trans control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dma_cntl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dma_cntl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dma_cntl`] module"]
pub type DMA_CNTL = crate::Reg<dma_cntl::DMA_CNTL_SPEC>;
#[doc = "isp dma source trans control register"]
pub mod dma_cntl;
#[doc = "DMA_RAW_DATA (rw) register accessor: isp dma source total raw number set register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`dma_raw_data::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`dma_raw_data::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@dma_raw_data`] module"]
pub type DMA_RAW_DATA = crate::Reg<dma_raw_data::DMA_RAW_DATA_SPEC>;
#[doc = "isp dma source total raw number set register"]
pub mod dma_raw_data;
#[doc = "CAM_CNTL (rw) register accessor: isp cam source control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cam_cntl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cam_cntl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cam_cntl`] module"]
pub type CAM_CNTL = crate::Reg<cam_cntl::CAM_CNTL_SPEC>;
#[doc = "isp cam source control register"]
pub mod cam_cntl;
#[doc = "CAM_CONF (rw) register accessor: isp cam source config register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`cam_conf::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`cam_conf::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@cam_conf`] module"]
pub type CAM_CONF = crate::Reg<cam_conf::CAM_CONF_SPEC>;
#[doc = "isp cam source config register"]
pub mod cam_conf;
#[doc = "AF_CTRL0 (rw) register accessor: af control register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_ctrl0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_ctrl0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_ctrl0`] module"]
pub type AF_CTRL0 = crate::Reg<af_ctrl0::AF_CTRL0_SPEC>;
#[doc = "af control register 0"]
pub mod af_ctrl0;
#[doc = "AF_CTRL1 (rw) register accessor: af control register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_ctrl1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_ctrl1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_ctrl1`] module"]
pub type AF_CTRL1 = crate::Reg<af_ctrl1::AF_CTRL1_SPEC>;
#[doc = "af control register 1"]
pub mod af_ctrl1;
#[doc = "AF_GEN_TH_CTRL (rw) register accessor: af gen threshold control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_gen_th_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_gen_th_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_gen_th_ctrl`] module"]
pub type AF_GEN_TH_CTRL = crate::Reg<af_gen_th_ctrl::AF_GEN_TH_CTRL_SPEC>;
#[doc = "af gen threshold control register"]
pub mod af_gen_th_ctrl;
#[doc = "AF_ENV_USER_TH_SUM (rw) register accessor: af monitor user sum threshold register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_env_user_th_sum::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_env_user_th_sum::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_env_user_th_sum`] module"]
pub type AF_ENV_USER_TH_SUM = crate::Reg<af_env_user_th_sum::AF_ENV_USER_TH_SUM_SPEC>;
#[doc = "af monitor user sum threshold register"]
pub mod af_env_user_th_sum;
#[doc = "AF_ENV_USER_TH_LUM (rw) register accessor: af monitor user lum threshold register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_env_user_th_lum::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_env_user_th_lum::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_env_user_th_lum`] module"]
pub type AF_ENV_USER_TH_LUM = crate::Reg<af_env_user_th_lum::AF_ENV_USER_TH_LUM_SPEC>;
#[doc = "af monitor user lum threshold register"]
pub mod af_env_user_th_lum;
#[doc = "AF_THRESHOLD (rw) register accessor: af threshold register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_threshold::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_threshold::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_threshold`] module"]
pub type AF_THRESHOLD = crate::Reg<af_threshold::AF_THRESHOLD_SPEC>;
#[doc = "af threshold register"]
pub mod af_threshold;
#[doc = "AF_HSCALE_A (rw) register accessor: h-scale of af window a register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_hscale_a::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_hscale_a::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_hscale_a`] module"]
pub type AF_HSCALE_A = crate::Reg<af_hscale_a::AF_HSCALE_A_SPEC>;
#[doc = "h-scale of af window a register"]
pub mod af_hscale_a;
#[doc = "AF_VSCALE_A (rw) register accessor: v-scale of af window a register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_vscale_a::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_vscale_a::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_vscale_a`] module"]
pub type AF_VSCALE_A = crate::Reg<af_vscale_a::AF_VSCALE_A_SPEC>;
#[doc = "v-scale of af window a register"]
pub mod af_vscale_a;
#[doc = "AF_HSCALE_B (rw) register accessor: h-scale of af window b register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_hscale_b::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_hscale_b::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_hscale_b`] module"]
pub type AF_HSCALE_B = crate::Reg<af_hscale_b::AF_HSCALE_B_SPEC>;
#[doc = "h-scale of af window b register"]
pub mod af_hscale_b;
#[doc = "AF_VSCALE_B (rw) register accessor: v-scale of af window b register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_vscale_b::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_vscale_b::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_vscale_b`] module"]
pub type AF_VSCALE_B = crate::Reg<af_vscale_b::AF_VSCALE_B_SPEC>;
#[doc = "v-scale of af window b register"]
pub mod af_vscale_b;
#[doc = "AF_HSCALE_C (rw) register accessor: v-scale of af window c register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_hscale_c::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_hscale_c::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_hscale_c`] module"]
pub type AF_HSCALE_C = crate::Reg<af_hscale_c::AF_HSCALE_C_SPEC>;
#[doc = "v-scale of af window c register"]
pub mod af_hscale_c;
#[doc = "AF_VSCALE_C (rw) register accessor: v-scale of af window c register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_vscale_c::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`af_vscale_c::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_vscale_c`] module"]
pub type AF_VSCALE_C = crate::Reg<af_vscale_c::AF_VSCALE_C_SPEC>;
#[doc = "v-scale of af window c register"]
pub mod af_vscale_c;
#[doc = "AF_SUM_A (r) register accessor: result of sum of af window a\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_sum_a::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_sum_a`] module"]
pub type AF_SUM_A = crate::Reg<af_sum_a::AF_SUM_A_SPEC>;
#[doc = "result of sum of af window a"]
pub mod af_sum_a;
#[doc = "AF_SUM_B (r) register accessor: result of sum of af window b\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_sum_b::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_sum_b`] module"]
pub type AF_SUM_B = crate::Reg<af_sum_b::AF_SUM_B_SPEC>;
#[doc = "result of sum of af window b"]
pub mod af_sum_b;
#[doc = "AF_SUM_C (r) register accessor: result of sum of af window c\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_sum_c::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_sum_c`] module"]
pub type AF_SUM_C = crate::Reg<af_sum_c::AF_SUM_C_SPEC>;
#[doc = "result of sum of af window c"]
pub mod af_sum_c;
#[doc = "AF_LUM_A (r) register accessor: result of lum of af window a\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_lum_a::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_lum_a`] module"]
pub type AF_LUM_A = crate::Reg<af_lum_a::AF_LUM_A_SPEC>;
#[doc = "result of lum of af window a"]
pub mod af_lum_a;
#[doc = "AF_LUM_B (r) register accessor: result of lum of af window b\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_lum_b::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_lum_b`] module"]
pub type AF_LUM_B = crate::Reg<af_lum_b::AF_LUM_B_SPEC>;
#[doc = "result of lum of af window b"]
pub mod af_lum_b;
#[doc = "AF_LUM_C (r) register accessor: result of lum of af window c\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`af_lum_c::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@af_lum_c`] module"]
pub type AF_LUM_C = crate::Reg<af_lum_c::AF_LUM_C_SPEC>;
#[doc = "result of lum of af window c"]
pub mod af_lum_c;
#[doc = "AWB_MODE (rw) register accessor: awb mode control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb_mode::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`awb_mode::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb_mode`] module"]
pub type AWB_MODE = crate::Reg<awb_mode::AWB_MODE_SPEC>;
#[doc = "awb mode control register"]
pub mod awb_mode;
#[doc = "AWB_HSCALE (rw) register accessor: h-scale of awb window\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb_hscale::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`awb_hscale::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb_hscale`] module"]
pub type AWB_HSCALE = crate::Reg<awb_hscale::AWB_HSCALE_SPEC>;
#[doc = "h-scale of awb window"]
pub mod awb_hscale;
#[doc = "AWB_VSCALE (rw) register accessor: v-scale of awb window\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb_vscale::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`awb_vscale::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb_vscale`] module"]
pub type AWB_VSCALE = crate::Reg<awb_vscale::AWB_VSCALE_SPEC>;
#[doc = "v-scale of awb window"]
pub mod awb_vscale;
#[doc = "AWB_TH_LUM (rw) register accessor: awb lum threshold register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb_th_lum::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`awb_th_lum::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb_th_lum`] module"]
pub type AWB_TH_LUM = crate::Reg<awb_th_lum::AWB_TH_LUM_SPEC>;
#[doc = "awb lum threshold register"]
pub mod awb_th_lum;
#[doc = "AWB_TH_RG (rw) register accessor: awb r/g threshold register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb_th_rg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`awb_th_rg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb_th_rg`] module"]
pub type AWB_TH_RG = crate::Reg<awb_th_rg::AWB_TH_RG_SPEC>;
#[doc = "awb r/g threshold register"]
pub mod awb_th_rg;
#[doc = "AWB_TH_BG (rw) register accessor: awb b/g threshold register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb_th_bg::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`awb_th_bg::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb_th_bg`] module"]
pub type AWB_TH_BG = crate::Reg<awb_th_bg::AWB_TH_BG_SPEC>;
#[doc = "awb b/g threshold register"]
pub mod awb_th_bg;
#[doc = "AWB0_WHITE_CNT (r) register accessor: result of awb white point number\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb0_white_cnt::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb0_white_cnt`] module"]
pub type AWB0_WHITE_CNT = crate::Reg<awb0_white_cnt::AWB0_WHITE_CNT_SPEC>;
#[doc = "result of awb white point number"]
pub mod awb0_white_cnt;
#[doc = "AWB0_ACC_R (r) register accessor: result of accumulate of r channel of all white points\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb0_acc_r::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb0_acc_r`] module"]
pub type AWB0_ACC_R = crate::Reg<awb0_acc_r::AWB0_ACC_R_SPEC>;
#[doc = "result of accumulate of r channel of all white points"]
pub mod awb0_acc_r;
#[doc = "AWB0_ACC_G (r) register accessor: result of accumulate of g channel of all white points\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb0_acc_g::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb0_acc_g`] module"]
pub type AWB0_ACC_G = crate::Reg<awb0_acc_g::AWB0_ACC_G_SPEC>;
#[doc = "result of accumulate of g channel of all white points"]
pub mod awb0_acc_g;
#[doc = "AWB0_ACC_B (r) register accessor: result of accumulate of b channel of all white points\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`awb0_acc_b::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@awb0_acc_b`] module"]
pub type AWB0_ACC_B = crate::Reg<awb0_acc_b::AWB0_ACC_B_SPEC>;
#[doc = "result of accumulate of b channel of all white points"]
pub mod awb0_acc_b;
#[doc = "COLOR_CTRL (rw) register accessor: color control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`color_ctrl::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`color_ctrl::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@color_ctrl`] module"]
pub type COLOR_CTRL = crate::Reg<color_ctrl::COLOR_CTRL_SPEC>;
#[doc = "color control register"]
pub mod color_ctrl;
#[doc = "BLC_VALUE (rw) register accessor: blc black level register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`blc_value::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`blc_value::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@blc_value`] module"]
pub type BLC_VALUE = crate::Reg<blc_value::BLC_VALUE_SPEC>;
#[doc = "blc black level register"]
pub mod blc_value;
#[doc = "BLC_CTRL0 (rw) register accessor: blc stretch control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`blc_ctrl0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`blc_ctrl0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@blc_ctrl0`] module"]
pub type BLC_CTRL0 = crate::Reg<blc_ctrl0::BLC_CTRL0_SPEC>;
#[doc = "blc stretch control register"]
pub mod blc_ctrl0;
#[doc = "BLC_CTRL1 (rw) register accessor: blc window control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`blc_ctrl1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`blc_ctrl1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@blc_ctrl1`] module"]
pub type BLC_CTRL1 = crate::Reg<blc_ctrl1::BLC_CTRL1_SPEC>;
#[doc = "blc window control register"]
pub mod blc_ctrl1;
#[doc = "BLC_CTRL2 (rw) register accessor: blc black threshold control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`blc_ctrl2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`blc_ctrl2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@blc_ctrl2`] module"]
pub type BLC_CTRL2 = crate::Reg<blc_ctrl2::BLC_CTRL2_SPEC>;
#[doc = "blc black threshold control register"]
pub mod blc_ctrl2;
#[doc = "BLC_MEAN (r) register accessor: results of the average of black window\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`blc_mean::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@blc_mean`] module"]
pub type BLC_MEAN = crate::Reg<blc_mean::BLC_MEAN_SPEC>;
#[doc = "results of the average of black window"]
pub mod blc_mean;
#[doc = "HIST_MODE (rw) register accessor: histogram mode control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_mode::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_mode::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_mode`] module"]
pub type HIST_MODE = crate::Reg<hist_mode::HIST_MODE_SPEC>;
#[doc = "histogram mode control register"]
pub mod hist_mode;
#[doc = "HIST_COEFF (rw) register accessor: histogram rgb to gray coefficients register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_coeff::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_coeff::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_coeff`] module"]
pub type HIST_COEFF = crate::Reg<hist_coeff::HIST_COEFF_SPEC>;
#[doc = "histogram rgb to gray coefficients register"]
pub mod hist_coeff;
#[doc = "HIST_OFFS (rw) register accessor: histogram window offsets register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_offs::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_offs::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_offs`] module"]
pub type HIST_OFFS = crate::Reg<hist_offs::HIST_OFFS_SPEC>;
#[doc = "histogram window offsets register"]
pub mod hist_offs;
#[doc = "HIST_SIZE (rw) register accessor: histogram sub-window size register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_size::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_size::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_size`] module"]
pub type HIST_SIZE = crate::Reg<hist_size::HIST_SIZE_SPEC>;
#[doc = "histogram sub-window size register"]
pub mod hist_size;
#[doc = "HIST_SEG0 (rw) register accessor: histogram bin control register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_seg0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_seg0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_seg0`] module"]
pub type HIST_SEG0 = crate::Reg<hist_seg0::HIST_SEG0_SPEC>;
#[doc = "histogram bin control register 0"]
pub mod hist_seg0;
#[doc = "HIST_SEG1 (rw) register accessor: histogram bin control register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_seg1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_seg1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_seg1`] module"]
pub type HIST_SEG1 = crate::Reg<hist_seg1::HIST_SEG1_SPEC>;
#[doc = "histogram bin control register 1"]
pub mod hist_seg1;
#[doc = "HIST_SEG2 (rw) register accessor: histogram bin control register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_seg2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_seg2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_seg2`] module"]
pub type HIST_SEG2 = crate::Reg<hist_seg2::HIST_SEG2_SPEC>;
#[doc = "histogram bin control register 2"]
pub mod hist_seg2;
#[doc = "HIST_SEG3 (rw) register accessor: histogram bin control register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_seg3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_seg3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_seg3`] module"]
pub type HIST_SEG3 = crate::Reg<hist_seg3::HIST_SEG3_SPEC>;
#[doc = "histogram bin control register 3"]
pub mod hist_seg3;
#[doc = "HIST_WEIGHT0 (rw) register accessor: histogram sub-window weight register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_weight0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_weight0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_weight0`] module"]
pub type HIST_WEIGHT0 = crate::Reg<hist_weight0::HIST_WEIGHT0_SPEC>;
#[doc = "histogram sub-window weight register 0"]
pub mod hist_weight0;
#[doc = "HIST_WEIGHT1 (rw) register accessor: histogram sub-window weight register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_weight1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_weight1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_weight1`] module"]
pub type HIST_WEIGHT1 = crate::Reg<hist_weight1::HIST_WEIGHT1_SPEC>;
#[doc = "histogram sub-window weight register 1"]
pub mod hist_weight1;
#[doc = "HIST_WEIGHT2 (rw) register accessor: histogram sub-window weight register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_weight2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_weight2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_weight2`] module"]
pub type HIST_WEIGHT2 = crate::Reg<hist_weight2::HIST_WEIGHT2_SPEC>;
#[doc = "histogram sub-window weight register 2"]
pub mod hist_weight2;
#[doc = "HIST_WEIGHT3 (rw) register accessor: histogram sub-window weight register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_weight3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_weight3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_weight3`] module"]
pub type HIST_WEIGHT3 = crate::Reg<hist_weight3::HIST_WEIGHT3_SPEC>;
#[doc = "histogram sub-window weight register 3"]
pub mod hist_weight3;
#[doc = "HIST_WEIGHT4 (rw) register accessor: histogram sub-window weight register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_weight4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_weight4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_weight4`] module"]
pub type HIST_WEIGHT4 = crate::Reg<hist_weight4::HIST_WEIGHT4_SPEC>;
#[doc = "histogram sub-window weight register 4"]
pub mod hist_weight4;
#[doc = "HIST_WEIGHT5 (rw) register accessor: histogram sub-window weight register 5\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_weight5::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_weight5::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_weight5`] module"]
pub type HIST_WEIGHT5 = crate::Reg<hist_weight5::HIST_WEIGHT5_SPEC>;
#[doc = "histogram sub-window weight register 5"]
pub mod hist_weight5;
#[doc = "HIST_WEIGHT6 (rw) register accessor: histogram sub-window weight register 6\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_weight6::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`hist_weight6::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_weight6`] module"]
pub type HIST_WEIGHT6 = crate::Reg<hist_weight6::HIST_WEIGHT6_SPEC>;
#[doc = "histogram sub-window weight register 6"]
pub mod hist_weight6;
#[doc = "HIST_BIN0 (r) register accessor: result of histogram bin 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin0::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin0`] module"]
pub type HIST_BIN0 = crate::Reg<hist_bin0::HIST_BIN0_SPEC>;
#[doc = "result of histogram bin 0"]
pub mod hist_bin0;
#[doc = "HIST_BIN1 (r) register accessor: result of histogram bin 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin1::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin1`] module"]
pub type HIST_BIN1 = crate::Reg<hist_bin1::HIST_BIN1_SPEC>;
#[doc = "result of histogram bin 1"]
pub mod hist_bin1;
#[doc = "HIST_BIN2 (r) register accessor: result of histogram bin 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin2::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin2`] module"]
pub type HIST_BIN2 = crate::Reg<hist_bin2::HIST_BIN2_SPEC>;
#[doc = "result of histogram bin 2"]
pub mod hist_bin2;
#[doc = "HIST_BIN3 (r) register accessor: result of histogram bin 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin3::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin3`] module"]
pub type HIST_BIN3 = crate::Reg<hist_bin3::HIST_BIN3_SPEC>;
#[doc = "result of histogram bin 3"]
pub mod hist_bin3;
#[doc = "HIST_BIN4 (r) register accessor: result of histogram bin 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin4::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin4`] module"]
pub type HIST_BIN4 = crate::Reg<hist_bin4::HIST_BIN4_SPEC>;
#[doc = "result of histogram bin 4"]
pub mod hist_bin4;
#[doc = "HIST_BIN5 (r) register accessor: result of histogram bin 5\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin5::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin5`] module"]
pub type HIST_BIN5 = crate::Reg<hist_bin5::HIST_BIN5_SPEC>;
#[doc = "result of histogram bin 5"]
pub mod hist_bin5;
#[doc = "HIST_BIN6 (r) register accessor: result of histogram bin 6\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin6::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin6`] module"]
pub type HIST_BIN6 = crate::Reg<hist_bin6::HIST_BIN6_SPEC>;
#[doc = "result of histogram bin 6"]
pub mod hist_bin6;
#[doc = "HIST_BIN7 (r) register accessor: result of histogram bin 7\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin7::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin7`] module"]
pub type HIST_BIN7 = crate::Reg<hist_bin7::HIST_BIN7_SPEC>;
#[doc = "result of histogram bin 7"]
pub mod hist_bin7;
#[doc = "HIST_BIN8 (r) register accessor: result of histogram bin 8\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin8::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin8`] module"]
pub type HIST_BIN8 = crate::Reg<hist_bin8::HIST_BIN8_SPEC>;
#[doc = "result of histogram bin 8"]
pub mod hist_bin8;
#[doc = "HIST_BIN9 (r) register accessor: result of histogram bin 9\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin9::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin9`] module"]
pub type HIST_BIN9 = crate::Reg<hist_bin9::HIST_BIN9_SPEC>;
#[doc = "result of histogram bin 9"]
pub mod hist_bin9;
#[doc = "HIST_BIN10 (r) register accessor: result of histogram bin 10\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin10::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin10`] module"]
pub type HIST_BIN10 = crate::Reg<hist_bin10::HIST_BIN10_SPEC>;
#[doc = "result of histogram bin 10"]
pub mod hist_bin10;
#[doc = "HIST_BIN11 (r) register accessor: result of histogram bin 11\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin11::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin11`] module"]
pub type HIST_BIN11 = crate::Reg<hist_bin11::HIST_BIN11_SPEC>;
#[doc = "result of histogram bin 11"]
pub mod hist_bin11;
#[doc = "HIST_BIN12 (r) register accessor: result of histogram bin 12\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin12::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin12`] module"]
pub type HIST_BIN12 = crate::Reg<hist_bin12::HIST_BIN12_SPEC>;
#[doc = "result of histogram bin 12"]
pub mod hist_bin12;
#[doc = "HIST_BIN13 (r) register accessor: result of histogram bin 13\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin13::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin13`] module"]
pub type HIST_BIN13 = crate::Reg<hist_bin13::HIST_BIN13_SPEC>;
#[doc = "result of histogram bin 13"]
pub mod hist_bin13;
#[doc = "HIST_BIN14 (r) register accessor: result of histogram bin 14\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin14::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin14`] module"]
pub type HIST_BIN14 = crate::Reg<hist_bin14::HIST_BIN14_SPEC>;
#[doc = "result of histogram bin 14"]
pub mod hist_bin14;
#[doc = "HIST_BIN15 (r) register accessor: result of histogram bin 15\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`hist_bin15::R`].  See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@hist_bin15`] module"]
pub type HIST_BIN15 = crate::Reg<hist_bin15::HIST_BIN15_SPEC>;
#[doc = "result of histogram bin 15"]
pub mod hist_bin15;
#[doc = "MEM_AUX_CTRL_0 (rw) register accessor: mem aux control register 0\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mem_aux_ctrl_0::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mem_aux_ctrl_0::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mem_aux_ctrl_0`] module"]
pub type MEM_AUX_CTRL_0 = crate::Reg<mem_aux_ctrl_0::MEM_AUX_CTRL_0_SPEC>;
#[doc = "mem aux control register 0"]
pub mod mem_aux_ctrl_0;
#[doc = "MEM_AUX_CTRL_1 (rw) register accessor: mem aux control register 1\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mem_aux_ctrl_1::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mem_aux_ctrl_1::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mem_aux_ctrl_1`] module"]
pub type MEM_AUX_CTRL_1 = crate::Reg<mem_aux_ctrl_1::MEM_AUX_CTRL_1_SPEC>;
#[doc = "mem aux control register 1"]
pub mod mem_aux_ctrl_1;
#[doc = "MEM_AUX_CTRL_2 (rw) register accessor: mem aux control register 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mem_aux_ctrl_2::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mem_aux_ctrl_2::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mem_aux_ctrl_2`] module"]
pub type MEM_AUX_CTRL_2 = crate::Reg<mem_aux_ctrl_2::MEM_AUX_CTRL_2_SPEC>;
#[doc = "mem aux control register 2"]
pub mod mem_aux_ctrl_2;
#[doc = "MEM_AUX_CTRL_3 (rw) register accessor: mem aux control register 3\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mem_aux_ctrl_3::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mem_aux_ctrl_3::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mem_aux_ctrl_3`] module"]
pub type MEM_AUX_CTRL_3 = crate::Reg<mem_aux_ctrl_3::MEM_AUX_CTRL_3_SPEC>;
#[doc = "mem aux control register 3"]
pub mod mem_aux_ctrl_3;
#[doc = "MEM_AUX_CTRL_4 (rw) register accessor: mem aux control register 4\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mem_aux_ctrl_4::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mem_aux_ctrl_4::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@mem_aux_ctrl_4`] module"]
pub type MEM_AUX_CTRL_4 = crate::Reg<mem_aux_ctrl_4::MEM_AUX_CTRL_4_SPEC>;
#[doc = "mem aux control register 4"]
pub mod mem_aux_ctrl_4;
#[doc = "YUV_FORMAT (rw) register accessor: yuv format control register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`yuv_format::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`yuv_format::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@yuv_format`] module"]
pub type YUV_FORMAT = crate::Reg<yuv_format::YUV_FORMAT_SPEC>;
#[doc = "yuv format control register"]
pub mod yuv_format;
#[doc = "RDN_ECO_CS (rw) register accessor: rdn eco cs register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`rdn_eco_cs::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`rdn_eco_cs::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rdn_eco_cs`] module"]
pub type RDN_ECO_CS = crate::Reg<rdn_eco_cs::RDN_ECO_CS_SPEC>;
#[doc = "rdn eco cs register"]
pub mod rdn_eco_cs;
#[doc = "RDN_ECO_LOW (rw) register accessor: rdn eco all low register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`rdn_eco_low::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`rdn_eco_low::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rdn_eco_low`] module"]
pub type RDN_ECO_LOW = crate::Reg<rdn_eco_low::RDN_ECO_LOW_SPEC>;
#[doc = "rdn eco all low register"]
pub mod rdn_eco_low;
#[doc = "RDN_ECO_HIGH (rw) register accessor: rdn eco all high register\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`rdn_eco_high::R`].  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`rdn_eco_high::W`]. You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [`mod@rdn_eco_high`] module"]
pub type RDN_ECO_HIGH = crate::Reg<rdn_eco_high::RDN_ECO_HIGH_SPEC>;
#[doc = "rdn eco all high register"]
pub mod rdn_eco_high;