imxrt-ral 0.6.2

Register access layer for all NXP i.MX RT microcontrollers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
#[doc = "SPDIF"]
#[repr(C)]
pub struct RegisterBlock {
    #[doc = "SPDIF Configuration Register"]
    pub SCR: crate::RWRegister<u32>,
    #[doc = "CDText Control Register"]
    pub SRCD: crate::RWRegister<u32>,
    #[doc = "PhaseConfig Register"]
    pub SRPC: crate::RWRegister<u32>,
    #[doc = "InterruptEn Register"]
    pub SIE: crate::RWRegister<u32>,
    #[doc = "InterruptStat Register"]
    pub SIS: crate::RWRegister<u32>,
    #[doc = "SPDIFRxLeft Register"]
    pub SRL: crate::RORegister<u32>,
    #[doc = "SPDIFRxRight Register"]
    pub SRR: crate::RORegister<u32>,
    #[doc = "SPDIFRxCChannel_h Register"]
    pub SRCSH: crate::RORegister<u32>,
    #[doc = "SPDIFRxCChannel_l Register"]
    pub SRCSL: crate::RORegister<u32>,
    #[doc = "UchannelRx Register"]
    pub SRU: crate::RORegister<u32>,
    #[doc = "QchannelRx Register"]
    pub SRQ: crate::RORegister<u32>,
    #[doc = "SPDIFTxLeft Register"]
    pub STL: crate::WORegister<u32>,
    #[doc = "SPDIFTxRight Register"]
    pub STR: crate::WORegister<u32>,
    #[doc = "SPDIFTxCChannelCons_h Register"]
    pub STCSCH: crate::RWRegister<u32>,
    #[doc = "SPDIFTxCChannelCons_l Register"]
    pub STCSCL: crate::RWRegister<u32>,
    _reserved0: [u8; 0x08],
    #[doc = "FreqMeas Register"]
    pub SRFM: crate::RORegister<u32>,
    _reserved1: [u8; 0x08],
    #[doc = "SPDIFTxClk Register"]
    pub STC: crate::RWRegister<u32>,
    _reserved2: [u8; 0x0c],
    #[doc = "SPDIF receive C channel register, bits 31-0"]
    pub SPDIFRXCCHANNEL_ADDR_31_0: crate::RORegister<u32>,
    #[doc = "SPDIF receive C channel register, bits 63-32"]
    pub SPDIFRXCCHANNEL_ADDR_63_32: crate::RORegister<u32>,
    #[doc = "SPDIF receive C channel register, bits 95-64"]
    pub SPDIFRXCCHANNEL_ADDR_95_64: crate::RORegister<u32>,
    #[doc = "SPDIF receive C channel register, bits 127-96"]
    pub SPDIFRXCCHANNEL_ADDR_127_96: crate::RORegister<u32>,
    #[doc = "SPDIF receive C channel register, bits 159-128"]
    pub SPDIFRXCCHANNEL_ADDR_159_128: crate::RORegister<u32>,
    #[doc = "SPDIF receive C channel register, bits 191-160"]
    pub SPDIFRXCCHANNEL_ADDR_191_160: crate::RORegister<u32>,
    #[doc = "SPDIF transmit C channel register, bits 31-0"]
    pub SPDIFTXCCHANNEL_ADDR_31_0: crate::RWRegister<u32>,
    #[doc = "SPDIF transmit C channel register, bits 63-32"]
    pub SPDIFTXCCHANNEL_ADDR_63_32: crate::RWRegister<u32>,
    #[doc = "SPDIF transmit C channel register, bits 95-64"]
    pub SPDIFTXCCHANNEL_ADDR_95_64: crate::RWRegister<u32>,
    #[doc = "SPDIF transmit C channel register, bits 127-96"]
    pub SPDIFTXCCHANNEL_ADDR_127_96: crate::RWRegister<u32>,
    #[doc = "SPDIF transmit C channel register, bits 159-128"]
    pub SPDIFTXCCHANNEL_ADDR_159_128: crate::RWRegister<u32>,
    #[doc = "SPDIF transmit C channel register, bits 191-160"]
    pub SPDIFTXCCHANNEL_ADDR_191_160: crate::RWRegister<u32>,
}
#[doc = "SPDIF Configuration Register"]
pub mod SCR {
    #[doc = "USrc_Sel"]
    pub mod USRC_SEL {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "No embedded U channel"]
            pub const USRC_SEL_0: u32 = 0;
            #[doc = "U channel from SPDIF receive block (CD mode)"]
            pub const USRC_SEL_1: u32 = 0x01;
            #[doc = "U channel from on chip transmitter"]
            pub const USRC_SEL_3: u32 = 0x03;
        }
    }
    #[doc = "TxSel"]
    pub mod TXSEL {
        pub const offset: u32 = 2;
        pub const mask: u32 = 0x07 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Off and output 0"]
            pub const TXSEL_0: u32 = 0;
            #[doc = "Feed-through SPDIFIN"]
            pub const TXSEL_1: u32 = 0x01;
            #[doc = "Tx Normal operation"]
            pub const TXSEL_5: u32 = 0x05;
        }
    }
    #[doc = "ValCtrl"]
    pub mod VALCTRL {
        pub const offset: u32 = 5;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Outgoing Validity always set"]
            pub const VALCTRL_0: u32 = 0;
            #[doc = "Outgoing Validity always clear"]
            pub const VALCTRL_1: u32 = 0x01;
        }
    }
    #[doc = "InputSrcSel"]
    pub mod INPUTSRCSEL {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "SPDIF_IN"]
            pub const SPDIF_IN1: u32 = 0;
            #[doc = "None"]
            pub const NONE_SEL_1: u32 = 0x01;
            #[doc = "None"]
            pub const NONE_SEL_2: u32 = 0x02;
            #[doc = "None"]
            pub const NONE_SEL_3: u32 = 0x03;
        }
    }
    #[doc = "DMA_TX_En"]
    pub mod DMA_TX_EN {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "DMA_Rx_En"]
    pub mod DMA_RX_EN {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "TxFIFO_Ctrl"]
    pub mod TXFIFO_CTRL {
        pub const offset: u32 = 10;
        pub const mask: u32 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Send out digital zero on SPDIF Tx"]
            pub const TXFIFO_CTRL_0: u32 = 0;
            #[doc = "Tx Normal operation"]
            pub const TXFIFO_CTRL_1: u32 = 0x01;
            #[doc = "Reset to 1 sample remaining"]
            pub const TXFIFO_CTRL_2: u32 = 0x02;
        }
    }
    #[doc = "soft_reset"]
    pub mod SOFT_RESET {
        pub const offset: u32 = 12;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "LOW_POWER"]
    pub mod LOW_POWER {
        pub const offset: u32 = 13;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "TxFIFOEmpty_Sel"]
    pub mod TXFIFOEMPTY_SEL {
        pub const offset: u32 = 15;
        pub const mask: u32 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Empty interrupt if 0 sample in Tx left and right FIFOs"]
            pub const TXFIFOEMPTY_SEL_0: u32 = 0;
            #[doc = "Empty interrupt if at most 4 sample in Tx left and right FIFOs"]
            pub const TXFIFOEMPTY_SEL_1: u32 = 0x01;
            #[doc = "Empty interrupt if at most 8 sample in Tx left and right FIFOs"]
            pub const TXFIFOEMPTY_SEL_2: u32 = 0x02;
            #[doc = "Empty interrupt if at most 12 sample in Tx left and right FIFOs"]
            pub const TXFIFOEMPTY_SEL_3: u32 = 0x03;
        }
    }
    #[doc = "TxAutoSync"]
    pub mod TXAUTOSYNC {
        pub const offset: u32 = 17;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Tx FIFO auto sync off"]
            pub const TXAUTOSYNC_0: u32 = 0;
            #[doc = "Tx FIFO auto sync on"]
            pub const TXAUTOSYNC_1: u32 = 0x01;
        }
    }
    #[doc = "RxAutoSync"]
    pub mod RXAUTOSYNC {
        pub const offset: u32 = 18;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Rx FIFO auto sync off"]
            pub const RXAUTOSYNC_0: u32 = 0;
            #[doc = "RxFIFO auto sync on"]
            pub const RXAUTOSYNC_1: u32 = 0x01;
        }
    }
    #[doc = "RxFIFOFull_Sel"]
    pub mod RXFIFOFULL_SEL {
        pub const offset: u32 = 19;
        pub const mask: u32 = 0x03 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Full interrupt if at least 1 sample in Rx left and right FIFOs"]
            pub const RXFIFOFULL_SEL_0: u32 = 0;
            #[doc = "Full interrupt if at least 4 sample in Rx left and right FIFOs"]
            pub const RXFIFOFULL_SEL_1: u32 = 0x01;
            #[doc = "Full interrupt if at least 8 sample in Rx left and right FIFOs"]
            pub const RXFIFOFULL_SEL_2: u32 = 0x02;
            #[doc = "Full interrupt if at least 16 sample in Rx left and right FIFO"]
            pub const RXFIFOFULL_SEL_3: u32 = 0x03;
        }
    }
    #[doc = "RxFIFO_Rst"]
    pub mod RXFIFO_RST {
        pub const offset: u32 = 21;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Normal operation"]
            pub const RXFIFO_RST_0: u32 = 0;
            #[doc = "Reset register to 1 sample remaining"]
            pub const RXFIFO_RST_1: u32 = 0x01;
        }
    }
    #[doc = "RxFIFO_Off_On"]
    pub mod RXFIFO_OFF_ON {
        pub const offset: u32 = 22;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "SPDIF Rx FIFO is on"]
            pub const RXFIFO_OFF_ON_0: u32 = 0;
            #[doc = "SPDIF Rx FIFO is off. Does not accept data from interface"]
            pub const RXFIFO_OFF_ON_1: u32 = 0x01;
        }
    }
    #[doc = "RxFIFO_Ctrl"]
    pub mod RXFIFO_CTRL {
        pub const offset: u32 = 23;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Normal operation"]
            pub const RXFIFO_CTRL_0: u32 = 0;
            #[doc = "Always read zero from Rx data register"]
            pub const RXFIFO_CTRL_1: u32 = 0x01;
        }
    }
    #[doc = "TXCChannel_192b_en"]
    pub mod TXCCHANNEL_192B_EN {
        pub const offset: u32 = 24;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "SPDIF transmits 48 bits of C in audio stream. Other C bits in 49 to 192 frames are 0"]
            pub const DISABLE: u32 = 0;
            #[doc = "SPDIF transmits 192 bits of C in audio stream"]
            pub const ENABLE: u32 = 0x01;
        }
    }
    #[doc = "RXCChannel_192b_en"]
    pub mod RXCCHANNEL_192B_EN {
        pub const offset: u32 = 25;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "SPDIF receives only 48 bits of 192 C bits from input audio stream"]
            pub const DISABLE: u32 = 0;
            #[doc = "SPDIF receives 192 bits of C in audio stream"]
            pub const ENABLE: u32 = 0x01;
        }
    }
}
#[doc = "CDText Control Register"]
pub mod SRCD {
    #[doc = "no description available"]
    pub mod USYNCMODE {
        pub const offset: u32 = 1;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "Non-CD data"]
            pub const USYNCMODE_0: u32 = 0;
            #[doc = "CD user channel subcode"]
            pub const USYNCMODE_1: u32 = 0x01;
        }
    }
}
#[doc = "PhaseConfig Register"]
pub mod SRPC {
    #[doc = "Gain selection:"]
    pub mod GAINSEL {
        pub const offset: u32 = 3;
        pub const mask: u32 = 0x07 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "24*(2**10)"]
            pub const GAINSEL_0: u32 = 0;
            #[doc = "16*(2**10)"]
            pub const GAINSEL_1: u32 = 0x01;
            #[doc = "12*(2**10)"]
            pub const GAINSEL_2: u32 = 0x02;
            #[doc = "8*(2**10)"]
            pub const GAINSEL_3: u32 = 0x03;
            #[doc = "6*(2**10)"]
            pub const GAINSEL_4: u32 = 0x04;
            #[doc = "4*(2**10)"]
            pub const GAINSEL_5: u32 = 0x05;
            #[doc = "3*(2**10)"]
            pub const GAINSEL_6: u32 = 0x06;
        }
    }
    #[doc = "LOCK bit to show that the internal DPLL is locked, read only"]
    pub mod LOCK {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Clock source selection, all other settings not shown are reserved:"]
    pub mod CLKSRC_SEL {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x0f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "if (DPLL Locked) SPDIF_RxClk else REF_CLK_32K (XTALOSC)"]
            pub const CLKSRC_SEL_0: u32 = 0;
            #[doc = "if (DPLL Locked) SPDIF_RxClk else tx_clk (SPDIF0_CLK_ROOT)"]
            pub const CLKSRC_SEL_1: u32 = 0x01;
            #[doc = "if (DPLL Locked) SPDIF_RxClk else SPDIF_EXT_CLK"]
            pub const CLKSRC_SEL_3: u32 = 0x03;
            #[doc = "REF_CLK_32K (XTALOSC)"]
            pub const CLKSRC_SEL_5: u32 = 0x05;
            #[doc = "tx_clk (SPDIF0_CLK_ROOT)"]
            pub const CLKSRC_SEL_6: u32 = 0x06;
            #[doc = "SPDIF_EXT_CLK"]
            pub const CLKSRC_SEL_8: u32 = 0x08;
        }
    }
}
#[doc = "InterruptEn Register"]
pub mod SIE {
    #[doc = "SPDIF Rx FIFO full, can't be cleared with reg. IntClear. To clear it, read from Rx FIFO."]
    pub mod RXFIFOFUL {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF Tx FIFO empty, can't be cleared with reg. IntClear. To clear it, write toTx FIFO."]
    pub mod TXEM {
        pub const offset: u32 = 1;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver loss of lock"]
    pub mod LOCKLOSS {
        pub const offset: u32 = 2;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Rx FIFO resync"]
    pub mod RXFIFORESYN {
        pub const offset: u32 = 3;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Rx FIFO underrun/overrun"]
    pub mod RXFIFOUNOV {
        pub const offset: u32 = 4;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U/Q Channel framing error"]
    pub mod UQERR {
        pub const offset: u32 = 5;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U/Q Channel sync found"]
    pub mod UQSYNC {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Q Channel receive register overrun"]
    pub mod QRXOV {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Q Channel receive register full, can't be cleared with reg"]
    pub mod QRXFUL {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U Channel receive register overrun"]
    pub mod URXOV {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U Channel receive register full, can't be cleared with reg"]
    pub mod URXFUL {
        pub const offset: u32 = 10;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver found parity bit error"]
    pub mod BITERR {
        pub const offset: u32 = 14;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver found illegal symbol"]
    pub mod SYMERR {
        pub const offset: u32 = 15;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF validity flag no good"]
    pub mod VALNOGOOD {
        pub const offset: u32 = 16;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receive change in value of control channel"]
    pub mod CNEW {
        pub const offset: u32 = 17;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF Tx FIFO resync"]
    pub mod TXRESYN {
        pub const offset: u32 = 18;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF Tx FIFO under/overrun"]
    pub mod TXUNOV {
        pub const offset: u32 = 19;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver's DPLL is locked"]
    pub mod LOCK {
        pub const offset: u32 = 20;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "InterruptStat Register"]
pub mod SIS {
    #[doc = "SPDIF Rx FIFO full, can't be cleared with reg. IntClear. To clear it, read from Rx FIFO."]
    pub mod RXFIFOFUL {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF Tx FIFO empty, can't be cleared with reg. IntClear. To clear it, write toTx FIFO."]
    pub mod TXEM {
        pub const offset: u32 = 1;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver loss of lock"]
    pub mod LOCKLOSS {
        pub const offset: u32 = 2;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Rx FIFO resync"]
    pub mod RXFIFORESYN {
        pub const offset: u32 = 3;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Rx FIFO underrun/overrun"]
    pub mod RXFIFOUNOV {
        pub const offset: u32 = 4;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U/Q Channel framing error"]
    pub mod UQERR {
        pub const offset: u32 = 5;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U/Q Channel sync found"]
    pub mod UQSYNC {
        pub const offset: u32 = 6;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Q Channel receive register overrun"]
    pub mod QRXOV {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "Q Channel receive register full, can't be cleared with reg"]
    pub mod QRXFUL {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U Channel receive register overrun"]
    pub mod URXOV {
        pub const offset: u32 = 9;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "U Channel receive register full, can't be cleared with reg"]
    pub mod URXFUL {
        pub const offset: u32 = 10;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver found parity bit error"]
    pub mod BITERR {
        pub const offset: u32 = 14;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver found illegal symbol"]
    pub mod SYMERR {
        pub const offset: u32 = 15;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF validity flag no good"]
    pub mod VALNOGOOD {
        pub const offset: u32 = 16;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receive change in value of control channel"]
    pub mod CNEW {
        pub const offset: u32 = 17;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF Tx FIFO resync"]
    pub mod TXRESYN {
        pub const offset: u32 = 18;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF Tx FIFO under/overrun"]
    pub mod TXUNOV {
        pub const offset: u32 = 19;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SPDIF receiver's DPLL is locked"]
    pub mod LOCK {
        pub const offset: u32 = 20;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFRxLeft Register"]
pub mod SRL {
    #[doc = "Processor receive SPDIF data left"]
    pub mod RXDATALEFT {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFRxRight Register"]
pub mod SRR {
    #[doc = "Processor receive SPDIF data right"]
    pub mod RXDATARIGHT {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFRxCChannel_h Register"]
pub mod SRCSH {
    #[doc = "SPDIF receive C channel register, contains first 24 bits of C channel without interpretation"]
    pub mod RXCCHANNEL_H {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFRxCChannel_l Register"]
pub mod SRCSL {
    #[doc = "SPDIF receive C channel register, contains next 24 bits of C channel without interpretation"]
    pub mod RXCCHANNEL_L {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "UchannelRx Register"]
pub mod SRU {
    #[doc = "SPDIF receive U channel register, contains next 3 U channel bytes"]
    pub mod RXUCHANNEL {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "QchannelRx Register"]
pub mod SRQ {
    #[doc = "SPDIF receive Q channel register, contains next 3 Q channel bytes"]
    pub mod RXQCHANNEL {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFTxLeft Register"]
pub mod STL {
    #[doc = "SPDIF transmit left channel data. It is write-only, and always returns zeros when read"]
    pub mod TXDATALEFT {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFTxRight Register"]
pub mod STR {
    #[doc = "SPDIF transmit right channel data. It is write-only, and always returns zeros when read"]
    pub mod TXDATARIGHT {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFTxCChannelCons_h Register"]
pub mod STCSCH {
    #[doc = "SPDIF transmit Cons"]
    pub mod TXCCHANNELCONS_H {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFTxCChannelCons_l Register"]
pub mod STCSCL {
    #[doc = "SPDIF transmit Cons"]
    pub mod TXCCHANNELCONS_L {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "FreqMeas Register"]
pub mod SRFM {
    #[doc = "Frequency measurement data"]
    pub mod FREQMEAS {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x00ff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIFTxClk Register"]
pub mod STC {
    #[doc = "TxClk_DF"]
    pub mod TXCLK_DF {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0x7f << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "divider factor is 1"]
            pub const TXCLK_DF_0: u32 = 0;
            #[doc = "divider factor is 2"]
            pub const TXCLK_DF_1: u32 = 0x01;
            #[doc = "divider factor is 128"]
            pub const TXCLK_DF_127: u32 = 0x7f;
        }
    }
    #[doc = "tx_all_clk_en"]
    pub mod TX_ALL_CLK_EN {
        pub const offset: u32 = 7;
        pub const mask: u32 = 0x01 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "disable transfer clock."]
            pub const TX_ALL_CLK_EN_0: u32 = 0;
            #[doc = "enable transfer clock."]
            pub const TX_ALL_CLK_EN_1: u32 = 0x01;
        }
    }
    #[doc = "TxClk_Source"]
    pub mod TXCLK_SOURCE {
        pub const offset: u32 = 8;
        pub const mask: u32 = 0x07 << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
    #[doc = "SYSCLK_DF"]
    pub mod SYSCLK_DF {
        pub const offset: u32 = 11;
        pub const mask: u32 = 0x01ff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {
            #[doc = "no clock signal"]
            pub const SYSCLK_DF_0: u32 = 0;
            #[doc = "divider factor is 2"]
            pub const SYSCLK_DF_1: u32 = 0x01;
            #[doc = "divider factor is 512"]
            pub const SYSCLK_DF_511: u32 = 0x01ff;
        }
    }
}
#[doc = "SPDIF receive C channel register, bits 31-0"]
pub mod SPDIFRXCCHANNEL_ADDR_31_0 {
    #[doc = "RxCChannel_Addr_31_0"]
    pub mod RXCCHANNEL_ADDR_31_0 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF receive C channel register, bits 63-32"]
pub mod SPDIFRXCCHANNEL_ADDR_63_32 {
    #[doc = "RxCChannel_Addr_63_32"]
    pub mod RXCCHANNEL_ADDR_63_32 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF receive C channel register, bits 95-64"]
pub mod SPDIFRXCCHANNEL_ADDR_95_64 {
    #[doc = "RxCChannel_Addr_95_64"]
    pub mod RXCCHANNEL_ADDR_95_64 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF receive C channel register, bits 127-96"]
pub mod SPDIFRXCCHANNEL_ADDR_127_96 {
    #[doc = "RxCChannel_Addr_127_96"]
    pub mod RXCCHANNEL_ADDR_127_96 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF receive C channel register, bits 159-128"]
pub mod SPDIFRXCCHANNEL_ADDR_159_128 {
    #[doc = "RxCChannel_Addr_159_128"]
    pub mod RXCCHANNEL_ADDR_159_128 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF receive C channel register, bits 191-160"]
pub mod SPDIFRXCCHANNEL_ADDR_191_160 {
    #[doc = "RxCChannel_Addr_191_160"]
    pub mod RXCCHANNEL_ADDR_191_160 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF transmit C channel register, bits 31-0"]
pub mod SPDIFTXCCHANNEL_ADDR_31_0 {
    #[doc = "TxCChannel_Addr_31_0"]
    pub mod TXCCHANNEL_ADDR_31_0 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF transmit C channel register, bits 63-32"]
pub mod SPDIFTXCCHANNEL_ADDR_63_32 {
    #[doc = "TxCChannel_Addr_63_32"]
    pub mod TXCCHANNEL_ADDR_63_32 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF transmit C channel register, bits 95-64"]
pub mod SPDIFTXCCHANNEL_ADDR_95_64 {
    #[doc = "TxCChannel_Addr_95_64"]
    pub mod TXCCHANNEL_ADDR_95_64 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF transmit C channel register, bits 127-96"]
pub mod SPDIFTXCCHANNEL_ADDR_127_96 {
    #[doc = "TxCChannel_Addr_127_96"]
    pub mod TXCCHANNEL_ADDR_127_96 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF transmit C channel register, bits 159-128"]
pub mod SPDIFTXCCHANNEL_ADDR_159_128 {
    #[doc = "TxCChannel_Addr_159_128"]
    pub mod TXCCHANNEL_ADDR_159_128 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}
#[doc = "SPDIF transmit C channel register, bits 191-160"]
pub mod SPDIFTXCCHANNEL_ADDR_191_160 {
    #[doc = "TxCChannel_Addr_191_160"]
    pub mod TXCCHANNEL_ADDR_191_160 {
        pub const offset: u32 = 0;
        pub const mask: u32 = 0xffff_ffff << offset;
        pub mod R {}
        pub mod W {}
        pub mod RW {}
    }
}