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
#[doc = r"Value read from the register"]
pub struct R {
    bits: u32,
}
#[doc = r"Value to write to the register"]
pub struct W {
    bits: u32,
}
impl super::D2CCIP1R {
    #[doc = r"Modifies the contents of the register"]
    #[inline(always)]
    pub fn modify<F>(&self, f: F)
    where
        for<'w> F: FnOnce(&R, &'w mut W) -> &'w mut W,
    {
        let bits = self.register.get();
        self.register.set(f(&R { bits }, &mut W { bits }).bits);
    }
    #[doc = r"Reads the contents of the register"]
    #[inline(always)]
    pub fn read(&self) -> R {
        R {
            bits: self.register.get(),
        }
    }
    #[doc = r"Writes to the register"]
    #[inline(always)]
    pub fn write<F>(&self, f: F)
    where
        F: FnOnce(&mut W) -> &mut W,
    {
        self.register.set(
            f(&mut W {
                bits: Self::reset_value(),
            })
            .bits,
        );
    }
    #[doc = r"Reset value of the register"]
    #[inline(always)]
    pub const fn reset_value() -> u32 {
        0
    }
    #[doc = r"Writes the reset value to the register"]
    #[inline(always)]
    pub fn reset(&self) {
        self.register.set(Self::reset_value())
    }
}
#[doc = "Possible values of the field `SAI1SEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SAI1SELR {
    #[doc = "pll1_q selected as peripheral clock"]
    PLL1_Q,
    #[doc = "pll2_p selected as peripheral clock"]
    PLL2_P,
    #[doc = "pll3_p selected as peripheral clock"]
    PLL3_P,
    #[doc = "I2S_CKIN selected as peripheral clock"]
    I2S_CKIN,
    #[doc = "PER selected as peripheral clock"]
    PER,
    #[doc = r"Reserved"]
    _Reserved(u8),
}
impl SAI1SELR {
    #[doc = r"Value of the field as raw bits"]
    #[inline(always)]
    pub fn bits(&self) -> u8 {
        match *self {
            SAI1SELR::PLL1_Q => 0,
            SAI1SELR::PLL2_P => 0x01,
            SAI1SELR::PLL3_P => 0x02,
            SAI1SELR::I2S_CKIN => 0x03,
            SAI1SELR::PER => 0x04,
            SAI1SELR::_Reserved(bits) => bits,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _from(value: u8) -> SAI1SELR {
        match value {
            0 => SAI1SELR::PLL1_Q,
            1 => SAI1SELR::PLL2_P,
            2 => SAI1SELR::PLL3_P,
            3 => SAI1SELR::I2S_CKIN,
            4 => SAI1SELR::PER,
            i => SAI1SELR::_Reserved(i),
        }
    }
    #[doc = "Checks if the value of the field is `PLL1_Q`"]
    #[inline(always)]
    pub fn is_pll1_q(&self) -> bool {
        *self == SAI1SELR::PLL1_Q
    }
    #[doc = "Checks if the value of the field is `PLL2_P`"]
    #[inline(always)]
    pub fn is_pll2_p(&self) -> bool {
        *self == SAI1SELR::PLL2_P
    }
    #[doc = "Checks if the value of the field is `PLL3_P`"]
    #[inline(always)]
    pub fn is_pll3_p(&self) -> bool {
        *self == SAI1SELR::PLL3_P
    }
    #[doc = "Checks if the value of the field is `I2S_CKIN`"]
    #[inline(always)]
    pub fn is_i2s_ckin(&self) -> bool {
        *self == SAI1SELR::I2S_CKIN
    }
    #[doc = "Checks if the value of the field is `PER`"]
    #[inline(always)]
    pub fn is_per(&self) -> bool {
        *self == SAI1SELR::PER
    }
}
#[doc = "Values that can be written to the field `SAI1SEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SAI1SELW {
    #[doc = "pll1_q selected as peripheral clock"]
    PLL1_Q,
    #[doc = "pll2_p selected as peripheral clock"]
    PLL2_P,
    #[doc = "pll3_p selected as peripheral clock"]
    PLL3_P,
    #[doc = "I2S_CKIN selected as peripheral clock"]
    I2S_CKIN,
    #[doc = "PER selected as peripheral clock"]
    PER,
}
impl SAI1SELW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _bits(&self) -> u8 {
        match *self {
            SAI1SELW::PLL1_Q => 0,
            SAI1SELW::PLL2_P => 1,
            SAI1SELW::PLL3_P => 2,
            SAI1SELW::I2S_CKIN => 3,
            SAI1SELW::PER => 4,
        }
    }
}
#[doc = r"Proxy"]
pub struct _SAI1SELW<'a> {
    w: &'a mut W,
}
impl<'a> _SAI1SELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SAI1SELW) -> &'a mut W {
        unsafe { self.bits(variant._bits()) }
    }
    #[doc = "pll1_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll1_q(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL1_Q)
    }
    #[doc = "pll2_p selected as peripheral clock"]
    #[inline(always)]
    pub fn pll2_p(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL2_P)
    }
    #[doc = "pll3_p selected as peripheral clock"]
    #[inline(always)]
    pub fn pll3_p(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL3_P)
    }
    #[doc = "I2S_CKIN selected as peripheral clock"]
    #[inline(always)]
    pub fn i2s_ckin(self) -> &'a mut W {
        self.variant(SAI1SELW::I2S_CKIN)
    }
    #[doc = "PER selected as peripheral clock"]
    #[inline(always)]
    pub fn per(self) -> &'a mut W {
        self.variant(SAI1SELW::PER)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits &= !(0x07 << 0);
        self.w.bits |= ((value as u32) & 0x07) << 0;
        self.w
    }
}
#[doc = "Possible values of the field `SAI23SEL`"]
pub type SAI23SELR = SAI1SELR;
#[doc = "Values that can be written to the field `SAI23SEL`"]
pub type SAI23SELW = SAI1SELW;
#[doc = r"Proxy"]
pub struct _SAI23SELW<'a> {
    w: &'a mut W,
}
impl<'a> _SAI23SELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SAI23SELW) -> &'a mut W {
        unsafe { self.bits(variant._bits()) }
    }
    #[doc = "pll1_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll1_q(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL1_Q)
    }
    #[doc = "pll2_p selected as peripheral clock"]
    #[inline(always)]
    pub fn pll2_p(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL2_P)
    }
    #[doc = "pll3_p selected as peripheral clock"]
    #[inline(always)]
    pub fn pll3_p(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL3_P)
    }
    #[doc = "I2S_CKIN selected as peripheral clock"]
    #[inline(always)]
    pub fn i2s_ckin(self) -> &'a mut W {
        self.variant(SAI1SELW::I2S_CKIN)
    }
    #[doc = "PER selected as peripheral clock"]
    #[inline(always)]
    pub fn per(self) -> &'a mut W {
        self.variant(SAI1SELW::PER)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits &= !(0x07 << 6);
        self.w.bits |= ((value as u32) & 0x07) << 6;
        self.w
    }
}
#[doc = "Possible values of the field `SPI123SEL`"]
pub type SPI123SELR = SAI1SELR;
#[doc = "Values that can be written to the field `SPI123SEL`"]
pub type SPI123SELW = SAI1SELW;
#[doc = r"Proxy"]
pub struct _SPI123SELW<'a> {
    w: &'a mut W,
}
impl<'a> _SPI123SELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SPI123SELW) -> &'a mut W {
        unsafe { self.bits(variant._bits()) }
    }
    #[doc = "pll1_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll1_q(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL1_Q)
    }
    #[doc = "pll2_p selected as peripheral clock"]
    #[inline(always)]
    pub fn pll2_p(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL2_P)
    }
    #[doc = "pll3_p selected as peripheral clock"]
    #[inline(always)]
    pub fn pll3_p(self) -> &'a mut W {
        self.variant(SAI1SELW::PLL3_P)
    }
    #[doc = "I2S_CKIN selected as peripheral clock"]
    #[inline(always)]
    pub fn i2s_ckin(self) -> &'a mut W {
        self.variant(SAI1SELW::I2S_CKIN)
    }
    #[doc = "PER selected as peripheral clock"]
    #[inline(always)]
    pub fn per(self) -> &'a mut W {
        self.variant(SAI1SELW::PER)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits &= !(0x07 << 12);
        self.w.bits |= ((value as u32) & 0x07) << 12;
        self.w
    }
}
#[doc = "Possible values of the field `SPI45SEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SPI45SELR {
    #[doc = "APB clock selected as peripheral clock"]
    APB,
    #[doc = "pll2_q selected as peripheral clock"]
    PLL2_Q,
    #[doc = "pll3_q selected as peripheral clock"]
    PLL3_Q,
    #[doc = "hsi_ker selected as peripheral clock"]
    HSI_KER,
    #[doc = "csi_ker selected as peripheral clock"]
    CSI_KER,
    #[doc = "HSE selected as peripheral clock"]
    HSE,
    #[doc = r"Reserved"]
    _Reserved(u8),
}
impl SPI45SELR {
    #[doc = r"Value of the field as raw bits"]
    #[inline(always)]
    pub fn bits(&self) -> u8 {
        match *self {
            SPI45SELR::APB => 0,
            SPI45SELR::PLL2_Q => 0x01,
            SPI45SELR::PLL3_Q => 0x02,
            SPI45SELR::HSI_KER => 0x03,
            SPI45SELR::CSI_KER => 0x04,
            SPI45SELR::HSE => 0x05,
            SPI45SELR::_Reserved(bits) => bits,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _from(value: u8) -> SPI45SELR {
        match value {
            0 => SPI45SELR::APB,
            1 => SPI45SELR::PLL2_Q,
            2 => SPI45SELR::PLL3_Q,
            3 => SPI45SELR::HSI_KER,
            4 => SPI45SELR::CSI_KER,
            5 => SPI45SELR::HSE,
            i => SPI45SELR::_Reserved(i),
        }
    }
    #[doc = "Checks if the value of the field is `APB`"]
    #[inline(always)]
    pub fn is_apb(&self) -> bool {
        *self == SPI45SELR::APB
    }
    #[doc = "Checks if the value of the field is `PLL2_Q`"]
    #[inline(always)]
    pub fn is_pll2_q(&self) -> bool {
        *self == SPI45SELR::PLL2_Q
    }
    #[doc = "Checks if the value of the field is `PLL3_Q`"]
    #[inline(always)]
    pub fn is_pll3_q(&self) -> bool {
        *self == SPI45SELR::PLL3_Q
    }
    #[doc = "Checks if the value of the field is `HSI_KER`"]
    #[inline(always)]
    pub fn is_hsi_ker(&self) -> bool {
        *self == SPI45SELR::HSI_KER
    }
    #[doc = "Checks if the value of the field is `CSI_KER`"]
    #[inline(always)]
    pub fn is_csi_ker(&self) -> bool {
        *self == SPI45SELR::CSI_KER
    }
    #[doc = "Checks if the value of the field is `HSE`"]
    #[inline(always)]
    pub fn is_hse(&self) -> bool {
        *self == SPI45SELR::HSE
    }
}
#[doc = "Values that can be written to the field `SPI45SEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SPI45SELW {
    #[doc = "APB clock selected as peripheral clock"]
    APB,
    #[doc = "pll2_q selected as peripheral clock"]
    PLL2_Q,
    #[doc = "pll3_q selected as peripheral clock"]
    PLL3_Q,
    #[doc = "hsi_ker selected as peripheral clock"]
    HSI_KER,
    #[doc = "csi_ker selected as peripheral clock"]
    CSI_KER,
    #[doc = "HSE selected as peripheral clock"]
    HSE,
}
impl SPI45SELW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _bits(&self) -> u8 {
        match *self {
            SPI45SELW::APB => 0,
            SPI45SELW::PLL2_Q => 1,
            SPI45SELW::PLL3_Q => 2,
            SPI45SELW::HSI_KER => 3,
            SPI45SELW::CSI_KER => 4,
            SPI45SELW::HSE => 5,
        }
    }
}
#[doc = r"Proxy"]
pub struct _SPI45SELW<'a> {
    w: &'a mut W,
}
impl<'a> _SPI45SELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SPI45SELW) -> &'a mut W {
        unsafe { self.bits(variant._bits()) }
    }
    #[doc = "APB clock selected as peripheral clock"]
    #[inline(always)]
    pub fn apb(self) -> &'a mut W {
        self.variant(SPI45SELW::APB)
    }
    #[doc = "pll2_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll2_q(self) -> &'a mut W {
        self.variant(SPI45SELW::PLL2_Q)
    }
    #[doc = "pll3_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll3_q(self) -> &'a mut W {
        self.variant(SPI45SELW::PLL3_Q)
    }
    #[doc = "hsi_ker selected as peripheral clock"]
    #[inline(always)]
    pub fn hsi_ker(self) -> &'a mut W {
        self.variant(SPI45SELW::HSI_KER)
    }
    #[doc = "csi_ker selected as peripheral clock"]
    #[inline(always)]
    pub fn csi_ker(self) -> &'a mut W {
        self.variant(SPI45SELW::CSI_KER)
    }
    #[doc = "HSE selected as peripheral clock"]
    #[inline(always)]
    pub fn hse(self) -> &'a mut W {
        self.variant(SPI45SELW::HSE)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits &= !(0x07 << 16);
        self.w.bits |= ((value as u32) & 0x07) << 16;
        self.w
    }
}
#[doc = "Possible values of the field `SPDIFSEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SPDIFSELR {
    #[doc = "pll1_q selected as peripheral clock"]
    PLL1_Q,
    #[doc = "pll2_r selected as peripheral clock"]
    PLL2_R,
    #[doc = "pll3_r selected as peripheral clock"]
    PLL3_R,
    #[doc = "hsi_ker selected as peripheral clock"]
    HSI_KER,
}
impl SPDIFSELR {
    #[doc = r"Value of the field as raw bits"]
    #[inline(always)]
    pub fn bits(&self) -> u8 {
        match *self {
            SPDIFSELR::PLL1_Q => 0,
            SPDIFSELR::PLL2_R => 0x01,
            SPDIFSELR::PLL3_R => 0x02,
            SPDIFSELR::HSI_KER => 0x03,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _from(value: u8) -> SPDIFSELR {
        match value {
            0 => SPDIFSELR::PLL1_Q,
            1 => SPDIFSELR::PLL2_R,
            2 => SPDIFSELR::PLL3_R,
            3 => SPDIFSELR::HSI_KER,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `PLL1_Q`"]
    #[inline(always)]
    pub fn is_pll1_q(&self) -> bool {
        *self == SPDIFSELR::PLL1_Q
    }
    #[doc = "Checks if the value of the field is `PLL2_R`"]
    #[inline(always)]
    pub fn is_pll2_r(&self) -> bool {
        *self == SPDIFSELR::PLL2_R
    }
    #[doc = "Checks if the value of the field is `PLL3_R`"]
    #[inline(always)]
    pub fn is_pll3_r(&self) -> bool {
        *self == SPDIFSELR::PLL3_R
    }
    #[doc = "Checks if the value of the field is `HSI_KER`"]
    #[inline(always)]
    pub fn is_hsi_ker(&self) -> bool {
        *self == SPDIFSELR::HSI_KER
    }
}
#[doc = "Values that can be written to the field `SPDIFSEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SPDIFSELW {
    #[doc = "pll1_q selected as peripheral clock"]
    PLL1_Q,
    #[doc = "pll2_r selected as peripheral clock"]
    PLL2_R,
    #[doc = "pll3_r selected as peripheral clock"]
    PLL3_R,
    #[doc = "hsi_ker selected as peripheral clock"]
    HSI_KER,
}
impl SPDIFSELW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _bits(&self) -> u8 {
        match *self {
            SPDIFSELW::PLL1_Q => 0,
            SPDIFSELW::PLL2_R => 1,
            SPDIFSELW::PLL3_R => 2,
            SPDIFSELW::HSI_KER => 3,
        }
    }
}
#[doc = r"Proxy"]
pub struct _SPDIFSELW<'a> {
    w: &'a mut W,
}
impl<'a> _SPDIFSELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SPDIFSELW) -> &'a mut W {
        {
            self.bits(variant._bits())
        }
    }
    #[doc = "pll1_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll1_q(self) -> &'a mut W {
        self.variant(SPDIFSELW::PLL1_Q)
    }
    #[doc = "pll2_r selected as peripheral clock"]
    #[inline(always)]
    pub fn pll2_r(self) -> &'a mut W {
        self.variant(SPDIFSELW::PLL2_R)
    }
    #[doc = "pll3_r selected as peripheral clock"]
    #[inline(always)]
    pub fn pll3_r(self) -> &'a mut W {
        self.variant(SPDIFSELW::PLL3_R)
    }
    #[doc = "hsi_ker selected as peripheral clock"]
    #[inline(always)]
    pub fn hsi_ker(self) -> &'a mut W {
        self.variant(SPDIFSELW::HSI_KER)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bits(self, value: u8) -> &'a mut W {
        self.w.bits &= !(0x03 << 20);
        self.w.bits |= ((value as u32) & 0x03) << 20;
        self.w
    }
}
#[doc = "Possible values of the field `DFSDM1SEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DFSDM1SELR {
    #[doc = "rcc_pclk2 selected as peripheral clock"]
    RCC_PCLK2,
    #[doc = "System clock selected as peripheral clock"]
    SYS,
}
impl DFSDM1SELR {
    #[doc = r"Returns `true` if the bit is clear (0)"]
    #[inline(always)]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r"Returns `true` if the bit is set (1)"]
    #[inline(always)]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r"Value of the field as raw bits"]
    #[inline(always)]
    pub fn bit(&self) -> bool {
        match *self {
            DFSDM1SELR::RCC_PCLK2 => false,
            DFSDM1SELR::SYS => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _from(value: bool) -> DFSDM1SELR {
        match value {
            false => DFSDM1SELR::RCC_PCLK2,
            true => DFSDM1SELR::SYS,
        }
    }
    #[doc = "Checks if the value of the field is `RCC_PCLK2`"]
    #[inline(always)]
    pub fn is_rcc_pclk2(&self) -> bool {
        *self == DFSDM1SELR::RCC_PCLK2
    }
    #[doc = "Checks if the value of the field is `SYS`"]
    #[inline(always)]
    pub fn is_sys(&self) -> bool {
        *self == DFSDM1SELR::SYS
    }
}
#[doc = "Values that can be written to the field `DFSDM1SEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DFSDM1SELW {
    #[doc = "rcc_pclk2 selected as peripheral clock"]
    RCC_PCLK2,
    #[doc = "System clock selected as peripheral clock"]
    SYS,
}
impl DFSDM1SELW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _bits(&self) -> bool {
        match *self {
            DFSDM1SELW::RCC_PCLK2 => false,
            DFSDM1SELW::SYS => true,
        }
    }
}
#[doc = r"Proxy"]
pub struct _DFSDM1SELW<'a> {
    w: &'a mut W,
}
impl<'a> _DFSDM1SELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: DFSDM1SELW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "rcc_pclk2 selected as peripheral clock"]
    #[inline(always)]
    pub fn rcc_pclk2(self) -> &'a mut W {
        self.variant(DFSDM1SELW::RCC_PCLK2)
    }
    #[doc = "System clock selected as peripheral clock"]
    #[inline(always)]
    pub fn sys(self) -> &'a mut W {
        self.variant(DFSDM1SELW::SYS)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits &= !(0x01 << 24);
        self.w.bits |= ((value as u32) & 0x01) << 24;
        self.w
    }
}
#[doc = "Possible values of the field `FDCANSEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FDCANSELR {
    #[doc = "HSE selected as peripheral clock"]
    HSE,
    #[doc = "pll1_q selected as peripheral clock"]
    PLL1_Q,
    #[doc = "pll2_q selected as peripheral clock"]
    PLL2_Q,
    #[doc = r"Reserved"]
    _Reserved(u8),
}
impl FDCANSELR {
    #[doc = r"Value of the field as raw bits"]
    #[inline(always)]
    pub fn bits(&self) -> u8 {
        match *self {
            FDCANSELR::HSE => 0,
            FDCANSELR::PLL1_Q => 0x01,
            FDCANSELR::PLL2_Q => 0x02,
            FDCANSELR::_Reserved(bits) => bits,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _from(value: u8) -> FDCANSELR {
        match value {
            0 => FDCANSELR::HSE,
            1 => FDCANSELR::PLL1_Q,
            2 => FDCANSELR::PLL2_Q,
            i => FDCANSELR::_Reserved(i),
        }
    }
    #[doc = "Checks if the value of the field is `HSE`"]
    #[inline(always)]
    pub fn is_hse(&self) -> bool {
        *self == FDCANSELR::HSE
    }
    #[doc = "Checks if the value of the field is `PLL1_Q`"]
    #[inline(always)]
    pub fn is_pll1_q(&self) -> bool {
        *self == FDCANSELR::PLL1_Q
    }
    #[doc = "Checks if the value of the field is `PLL2_Q`"]
    #[inline(always)]
    pub fn is_pll2_q(&self) -> bool {
        *self == FDCANSELR::PLL2_Q
    }
}
#[doc = "Values that can be written to the field `FDCANSEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FDCANSELW {
    #[doc = "HSE selected as peripheral clock"]
    HSE,
    #[doc = "pll1_q selected as peripheral clock"]
    PLL1_Q,
    #[doc = "pll2_q selected as peripheral clock"]
    PLL2_Q,
}
impl FDCANSELW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _bits(&self) -> u8 {
        match *self {
            FDCANSELW::HSE => 0,
            FDCANSELW::PLL1_Q => 1,
            FDCANSELW::PLL2_Q => 2,
        }
    }
}
#[doc = r"Proxy"]
pub struct _FDCANSELW<'a> {
    w: &'a mut W,
}
impl<'a> _FDCANSELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: FDCANSELW) -> &'a mut W {
        unsafe { self.bits(variant._bits()) }
    }
    #[doc = "HSE selected as peripheral clock"]
    #[inline(always)]
    pub fn hse(self) -> &'a mut W {
        self.variant(FDCANSELW::HSE)
    }
    #[doc = "pll1_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll1_q(self) -> &'a mut W {
        self.variant(FDCANSELW::PLL1_Q)
    }
    #[doc = "pll2_q selected as peripheral clock"]
    #[inline(always)]
    pub fn pll2_q(self) -> &'a mut W {
        self.variant(FDCANSELW::PLL2_Q)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub unsafe fn bits(self, value: u8) -> &'a mut W {
        self.w.bits &= !(0x03 << 28);
        self.w.bits |= ((value as u32) & 0x03) << 28;
        self.w
    }
}
#[doc = "Possible values of the field `SWPSEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SWPSELR {
    #[doc = "pclk selected as peripheral clock"]
    PCLK,
    #[doc = "hsi_ker selected as peripheral clock"]
    HSI_KER,
}
impl SWPSELR {
    #[doc = r"Returns `true` if the bit is clear (0)"]
    #[inline(always)]
    pub fn bit_is_clear(&self) -> bool {
        !self.bit()
    }
    #[doc = r"Returns `true` if the bit is set (1)"]
    #[inline(always)]
    pub fn bit_is_set(&self) -> bool {
        self.bit()
    }
    #[doc = r"Value of the field as raw bits"]
    #[inline(always)]
    pub fn bit(&self) -> bool {
        match *self {
            SWPSELR::PCLK => false,
            SWPSELR::HSI_KER => true,
        }
    }
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _from(value: bool) -> SWPSELR {
        match value {
            false => SWPSELR::PCLK,
            true => SWPSELR::HSI_KER,
        }
    }
    #[doc = "Checks if the value of the field is `PCLK`"]
    #[inline(always)]
    pub fn is_pclk(&self) -> bool {
        *self == SWPSELR::PCLK
    }
    #[doc = "Checks if the value of the field is `HSI_KER`"]
    #[inline(always)]
    pub fn is_hsi_ker(&self) -> bool {
        *self == SWPSELR::HSI_KER
    }
}
#[doc = "Values that can be written to the field `SWPSEL`"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum SWPSELW {
    #[doc = "pclk selected as peripheral clock"]
    PCLK,
    #[doc = "hsi_ker selected as peripheral clock"]
    HSI_KER,
}
impl SWPSELW {
    #[allow(missing_docs)]
    #[doc(hidden)]
    #[inline(always)]
    pub fn _bits(&self) -> bool {
        match *self {
            SWPSELW::PCLK => false,
            SWPSELW::HSI_KER => true,
        }
    }
}
#[doc = r"Proxy"]
pub struct _SWPSELW<'a> {
    w: &'a mut W,
}
impl<'a> _SWPSELW<'a> {
    #[doc = r"Writes `variant` to the field"]
    #[inline(always)]
    pub fn variant(self, variant: SWPSELW) -> &'a mut W {
        {
            self.bit(variant._bits())
        }
    }
    #[doc = "pclk selected as peripheral clock"]
    #[inline(always)]
    pub fn pclk(self) -> &'a mut W {
        self.variant(SWPSELW::PCLK)
    }
    #[doc = "hsi_ker selected as peripheral clock"]
    #[inline(always)]
    pub fn hsi_ker(self) -> &'a mut W {
        self.variant(SWPSELW::HSI_KER)
    }
    #[doc = r"Sets the field bit"]
    #[inline(always)]
    pub fn set_bit(self) -> &'a mut W {
        self.bit(true)
    }
    #[doc = r"Clears the field bit"]
    #[inline(always)]
    pub fn clear_bit(self) -> &'a mut W {
        self.bit(false)
    }
    #[doc = r"Writes raw bits to the field"]
    #[inline(always)]
    pub fn bit(self, value: bool) -> &'a mut W {
        self.w.bits &= !(0x01 << 31);
        self.w.bits |= ((value as u32) & 0x01) << 31;
        self.w
    }
}
impl R {
    #[doc = r"Value of the register as raw bits"]
    #[inline(always)]
    pub fn bits(&self) -> u32 {
        self.bits
    }
    #[doc = "Bits 0:2 - SAI1 and DFSDM1 kernel Aclk clock source selection"]
    #[inline(always)]
    pub fn sai1sel(&self) -> SAI1SELR {
        SAI1SELR::_from(((self.bits >> 0) & 0x07) as u8)
    }
    #[doc = "Bits 6:8 - SAI2 and SAI3 kernel clock source selection"]
    #[inline(always)]
    pub fn sai23sel(&self) -> SAI23SELR {
        SAI23SELR::_from(((self.bits >> 6) & 0x07) as u8)
    }
    #[doc = "Bits 12:14 - SPI/I2S1,2 and 3 kernel clock source selection"]
    #[inline(always)]
    pub fn spi123sel(&self) -> SPI123SELR {
        SPI123SELR::_from(((self.bits >> 12) & 0x07) as u8)
    }
    #[doc = "Bits 16:18 - SPI4 and 5 kernel clock source selection"]
    #[inline(always)]
    pub fn spi45sel(&self) -> SPI45SELR {
        SPI45SELR::_from(((self.bits >> 16) & 0x07) as u8)
    }
    #[doc = "Bits 20:21 - SPDIFRX kernel clock source selection"]
    #[inline(always)]
    pub fn spdifsel(&self) -> SPDIFSELR {
        SPDIFSELR::_from(((self.bits >> 20) & 0x03) as u8)
    }
    #[doc = "Bit 24 - DFSDM1 kernel Clk clock source selection"]
    #[inline(always)]
    pub fn dfsdm1sel(&self) -> DFSDM1SELR {
        DFSDM1SELR::_from(((self.bits >> 24) & 0x01) != 0)
    }
    #[doc = "Bits 28:29 - FDCAN kernel clock source selection"]
    #[inline(always)]
    pub fn fdcansel(&self) -> FDCANSELR {
        FDCANSELR::_from(((self.bits >> 28) & 0x03) as u8)
    }
    #[doc = "Bit 31 - SWPMI kernel clock source selection"]
    #[inline(always)]
    pub fn swpsel(&self) -> SWPSELR {
        SWPSELR::_from(((self.bits >> 31) & 0x01) != 0)
    }
}
impl W {
    #[doc = r"Writes raw bits to the register"]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
    #[doc = "Bits 0:2 - SAI1 and DFSDM1 kernel Aclk clock source selection"]
    #[inline(always)]
    pub fn sai1sel(&mut self) -> _SAI1SELW {
        _SAI1SELW { w: self }
    }
    #[doc = "Bits 6:8 - SAI2 and SAI3 kernel clock source selection"]
    #[inline(always)]
    pub fn sai23sel(&mut self) -> _SAI23SELW {
        _SAI23SELW { w: self }
    }
    #[doc = "Bits 12:14 - SPI/I2S1,2 and 3 kernel clock source selection"]
    #[inline(always)]
    pub fn spi123sel(&mut self) -> _SPI123SELW {
        _SPI123SELW { w: self }
    }
    #[doc = "Bits 16:18 - SPI4 and 5 kernel clock source selection"]
    #[inline(always)]
    pub fn spi45sel(&mut self) -> _SPI45SELW {
        _SPI45SELW { w: self }
    }
    #[doc = "Bits 20:21 - SPDIFRX kernel clock source selection"]
    #[inline(always)]
    pub fn spdifsel(&mut self) -> _SPDIFSELW {
        _SPDIFSELW { w: self }
    }
    #[doc = "Bit 24 - DFSDM1 kernel Clk clock source selection"]
    #[inline(always)]
    pub fn dfsdm1sel(&mut self) -> _DFSDM1SELW {
        _DFSDM1SELW { w: self }
    }
    #[doc = "Bits 28:29 - FDCAN kernel clock source selection"]
    #[inline(always)]
    pub fn fdcansel(&mut self) -> _FDCANSELW {
        _FDCANSELW { w: self }
    }
    #[doc = "Bit 31 - SWPMI kernel clock source selection"]
    #[inline(always)]
    pub fn swpsel(&mut self) -> _SWPSELW {
        _SWPSELW { w: self }
    }
}