aboutsummaryrefslogtreecommitdiff
path: root/drivers/edma/src/lib.rs
blob: 7a23953d63d639cef8b9a8c05488db342890bdff (plain)
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
//! DMA blocks for i.MX RT MCUs.
//!
//! eDMA works for all i.MX RT 1000 and 1100 series MCUs.
//! The eDMA3 and eDMA4 is specifically targeted for the
//! 1180 MCUs.

#![no_std]

pub mod dma;
pub mod dmamux;
pub mod tcd;

pub mod element {
    /// An ID for an element size.
    #[derive(Debug, Clone, Copy, PartialEq, Eq)]
    #[non_exhaustive]
    #[repr(u8)]
    pub enum ElementSize {
        /// `u8` transfer.
        U8 = 0,
        /// `u16` transfer.
        U16 = 1,
        /// `u32` transfer.
        U32 = 2,
        /// `u64` transfer.
        U64 = 3,
    }

    /// Describes a transferrable DMA element; basically, an unsigned
    /// integer of any size.
    pub trait Element: Copy + private::Sealed {
        /// An identifier describing the data transfer size
        ///
        /// Part of the TCD API; see documentation on TCD\[SSIZE\]
        /// and TCD\[DSIZE\] for more information.
        const DATA_TRANSFER_ID: ElementSize;
    }

    impl Element for u8 {
        const DATA_TRANSFER_ID: ElementSize = ElementSize::U8;
    }

    impl Element for u16 {
        const DATA_TRANSFER_ID: ElementSize = ElementSize::U16;
    }

    impl Element for u32 {
        const DATA_TRANSFER_ID: ElementSize = ElementSize::U32;
    }

    impl Element for u64 {
        const DATA_TRANSFER_ID: ElementSize = ElementSize::U64;
    }

    mod private {
        pub trait Sealed {}

        impl Sealed for u8 {}
        impl Sealed for u16 {}
        impl Sealed for u32 {}
        impl Sealed for u64 {}
    }
}

pub mod edma {
    use core::num::NonZeroU8;

    use crate::{dma::edma as dma, dmamux, element::ElementSize, tcd::edma as tcd};
    use ral_registers::Instance;

    /// A DMA channel for an eDMA controller.
    ///
    /// The channel is three pointers wide.
    pub struct Channel {
        index: usize,
        dma: Instance<dma::RegisterBlock>,
        mux: Instance<dmamux::RegisterBlock>,
    }

    impl Channel {
        /// Create a new DMA channel.
        ///
        /// # Safety
        ///
        /// The channel formed by this call cannot alias another channel with the
        /// same index. The channel index must be valid for the hardware.
        pub const unsafe fn new(
            dma: Instance<dma::RegisterBlock>,
            mux: Instance<dmamux::RegisterBlock>,
            index: usize,
        ) -> Self {
            Self { index, dma, mux }
        }

        /// Returns the channel index.
        pub fn index(&self) -> usize {
            self.index
        }

        /// Enable the DMA channel.
        ///
        /// # Safety
        ///
        /// If the channel is incorrectly configured, it may access
        /// invalid memory.
        pub unsafe fn enable(&mut self) {
            ral_registers::write_reg!(dma, self.dma, SERQ, self.index as u8);
        }

        /// Disable the DMA channel.
        pub fn disable(&mut self) {
            ral_registers::write_reg!(dma, self.dma, CERQ, self.index as u8);
        }

        /// Returns `true` if the DMA channel is enabled.
        pub fn is_enabled(&self) -> bool {
            (1 << self.index) & ral_registers::read_reg!(dma, self.dma, ERQ) != 0
        }

        fn tcd(&self) -> Instance<tcd::RegisterBlock> {
            // Safety: caller claims the index is valid for
            // the DMA controller.
            unsafe { Instance::new_unchecked(&raw mut (*self.dma.as_ptr()).TCD[self.index]) }
        }

        /// Returns `true` if the hardware is signaling requests towards
        /// this DMA channel.
        pub fn is_hardware_signaling(&self) -> bool {
            (1 << self.index) & ral_registers::read_reg!(dma, self.dma, HRS) != 0
        }

        /// Returns `true` if an interrupt has activated for this
        /// DMA channel.
        pub fn is_interrupt(&self) -> bool {
            (1 << self.index) & ral_registers::read_reg!(dma, self.dma, INT) != 0
        }

        /// Clear the interrupt trigger.
        pub fn clear_interrupt(&self) {
            ral_registers::write_reg!(dma, self.dma, CINT, self.index as u8);
        }

        /// Returns `true` if this DMA channel has finished its transfer.
        pub fn is_done(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, DONE == 1)
        }

        /// Clear the "done" signal from software.
        pub fn clear_done(&self) {
            ral_registers::write_reg!(dma, self.dma, CDNE, self.index as u8);
        }

        /// Returns `true` if this channel has an error.
        pub fn has_error(&self) -> bool {
            (1 << self.index) & ral_registers::read_reg!(dma, self.dma, ERR) != 0
        }

        /// Clear this channel's error.
        pub fn clear_error(&self) {
            ral_registers::write_reg!(dma, self.dma, CERR, self.index as u8);
        }

        /// Returns `true` if this channel is actively transferring.
        pub fn is_active(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, ACTIVE == 1)
        }

        /// Reset the control descriptor for the channel.
        ///
        /// Call this at least once, after acquiring the channel, to
        /// put it into a known-good state.
        pub fn reset(&mut self) {
            unsafe { self.tcd().as_ptr().write_bytes(0, 1) };
        }

        /// Set the source address for a DMA transfer
        ///
        /// `saddr` should be a memory location that can provide the DMA controller
        /// with data.
        ///
        /// # Safety
        ///
        /// If the DMA channel is already enabled, the DMA engine may start reading this
        /// memory location. You must ensure that reads to `saddr` do not perform
        /// inappropriate side effects. You must ensure `saddr` is valid for the
        /// lifetime of the transfer.
        pub unsafe fn set_source_address(&self, saddr: *const ()) {
            ral_registers::write_reg!(tcd, self.tcd(), SADDR, saddr as u32);
        }

        /// Set the source offset *in bytes*
        ///
        /// `offset` could be negative, which would decrement the address.
        ///
        /// # Safety
        ///
        /// This method could allow a DMA engine to read beyond a buffer or
        /// address. You must ensure that the source is valid for these offsets.
        pub unsafe fn set_source_offset(&self, offset: i16) {
            ral_registers::write_reg!(tcd, self.tcd(), SOFF, offset);
        }

        /// Set the destination address for a DMA transfer
        ///
        /// `daddr` should be a memory location that can store data from the
        /// DMA controller.
        ///
        /// # Safety
        ///
        /// If the DMA channel is already enabled, the DMA engine may start
        /// writing to this address. You must ensure that writes to `daddr`
        /// are safe, and that the memory is valid for the lifetime of the
        /// transfer.
        pub unsafe fn set_destination_address(&self, daddr: *const ()) {
            ral_registers::write_reg!(tcd, self.tcd(), DADDR, daddr as u32);
        }

        /// Set the destination offset *in bytes*
        ///
        /// `offset` could be negative, which would decrement the address.
        ///
        /// # Safety
        ///
        /// This method could allow a DMA engine to write beyond the range of
        /// a buffer. You must ensure that the destination is valid for these
        /// offsets.
        pub unsafe fn set_destination_offset(&self, offset: i16) {
            ral_registers::write_reg!(tcd, self.tcd(), DOFF, offset);
        }

        /// Set the transfer attributes.
        ///
        /// The attributes describes the ways the source is read and
        /// the destination is written. The modulo mask allows the
        /// buffer to be treated as a circular buffer.
        ///
        /// # Safety
        ///
        /// Incorrect sizes and modulos may cause invalid memory accesses.
        pub unsafe fn set_attributes(
            &self,
            source_size: ElementSize,
            source_modulo: u8,
            destination_size: ElementSize,
            destination_modulo: u8,
        ) {
            ral_registers::write_reg!(tcd, self.tcd(), ATTR,
                SSIZE: source_size as u16,
                SMOD: source_modulo as u16,
                DSIZE: destination_size as u16,
                DMOD: destination_modulo as u16,
            );
        }

        /// Set the source last address adjustment *in bytes*
        ///
        /// # Safety
        ///
        /// This could allow the DMA engine to reference an invalid source buffer.
        /// You must ensure that the adjustment performed by the DMA engine is
        /// valid, assuming that another DMA transfer immediately runs after the
        /// current transfer completes.
        pub unsafe fn set_source_last_address_adjustment(&self, adjustment: i32) {
            ral_registers::write_reg!(tcd, self.tcd(), SLAST, adjustment);
        }

        /// Set the destination last addrss adjustment *in bytes*
        ///
        /// # Safety
        ///
        /// This could allow the DMA engine to reference an invalid destination address.
        /// You must ensure that the adjustment performed by the DMA engine is
        /// valid, assuming that another DMA transfer immediately runs after the
        /// current transfer completes.
        pub unsafe fn set_destination_last_address_adjustment(&self, adjustment: i32) {
            ral_registers::write_reg!(tcd, self.tcd(), DLAST_SGA, adjustment);
        }

        /// Set the number of *bytes* to transfer per minor loop
        ///
        /// Describes how many bytes we should transfer for each DMA service request.
        /// Note that `nbytes` of `0` is interpreted as a 4GB transfer.
        ///
        /// # Safety
        ///
        /// This might allow the DMA engine to read beyond the source, or write beyond
        /// the destination. Caller must ensure that the number of bytes per minor loop
        /// is valid for the given transfer.
        pub unsafe fn set_minor_loop_bytes(&self, nbytes: u32) {
            ral_registers::write_reg!(tcd, self.tcd(), NBYTES, nbytes);
        }

        /// Tells the DMA channel how many transfer iterations to perform
        ///
        /// A 'transfer iteration' is a read from a source, and a write to a destination, with
        /// read and write sizes described by a minor loop. Each iteration requires a DMA
        /// service request, either from hardware or from software. The maximum number of iterations
        /// is 2^15.
        ///
        /// # Safety
        ///
        /// This may allow the DMA engine to read beyond the source, or write beyond
        /// the destination. Caller must ensure that the number of iterations is valid
        /// for the transfer.
        pub unsafe fn set_transfer_iterations(&mut self, iterations: u16) {
            let iterations = iterations & 0x7FFF;
            // Note that this is clearing the ELINK bit. We don't have support
            // for channel-to-channel linking right now. Clearing ELINK is intentional
            // to use the whole 15 bits for iterations.
            ral_registers::write_reg!(tcd, self.tcd(), CITER, iterations);
            ral_registers::write_reg!(tcd, self.tcd(), BITER, iterations);
        }

        /// Returns the beginning transfer iterations setting for the channel.
        ///
        /// This reflects the last call to `set_transfer_iterations`.
        pub fn beginning_transfer_iterations(&self) -> u16 {
            ral_registers::read_reg!(tcd, self.tcd(), BITER)
        }

        /// Enable or disable 'disable on completion'
        ///
        /// 'Disable on completion' lets the DMA channel automatically clear the request signal
        /// when it completes a transfer.
        pub fn set_disable_on_completion(&mut self, dreq: bool) {
            ral_registers::modify_reg!(tcd, self.tcd(), CSR, DREQ: dreq as u16);
        }

        /// Enable or disable interrupt generation when the transfer completes
        ///
        /// You're responsible for registering your interrupt handler.
        pub fn set_interrupt_on_completion(&mut self, intr: bool) {
            ral_registers::modify_reg!(tcd, self.tcd(), CSR, INTMAJOR: intr as u16);
        }

        /// Start a DMA transfer
        ///
        /// `start()` should be used to request service from the DMA controller. It's
        /// necessary for in-memory DMA transfers. Do not use it for hardware-initiated
        /// DMA transfers. DMA transfers that involve hardware will rely on the hardware
        /// to request DMA service.
        ///
        /// Flag is automatically cleared by hardware after it's asserted.
        pub fn start(&mut self) {
            ral_registers::modify_reg!(tcd, self.tcd(), CSR, START: 1);
        }

        /// Set the source signal for channel activation.
        ///
        /// The source is typically an upstream peripheral.
        /// Use `None` to clear the source.
        ///
        /// This call reads back the written source. If they're equal
        /// the return is `true`. The values may not be equal if the
        /// source is selected in another DMA channel.
        pub fn set_mux_source_signal(&self, signal: Option<NonZeroU8>) -> bool {
            let signal = signal.map_or(0, NonZeroU8::get) as u32;
            ral_registers::modify_reg!(dmamux, self.mux, CHCFG[self.index], SOURCE: signal);
            signal == ral_registers::read_reg!(dmamux, self.mux, CHCFG[self.index], SOURCE)
        }

        /// Enable or disable the DMA MUX source signaling / triggering.
        ///
        /// Make sure to set up a source signal before enabling.
        pub fn set_mux_source_enable(&self, enable: bool) {
            ral_registers::modify_reg!(dmamux, self.mux, CHCFG[self.index], ENBL: enable as u32);
        }

        /// Set periodic triggering for this DMA channel.
        ///
        /// Only the first four DMA channels can periodically trigger
        /// on a PIT timer. Note that this isn't enabled.
        ///
        /// # Panics
        ///
        /// Panics if this isn't one of the first four DMA channels.
        pub fn set_mux_periodic(&self, periodic: bool) {
            assert!(self.index < 4);
            ral_registers::modify_reg!(dmamux, self.mux, CHCFG[self.index], TRIG: periodic as u32);
        }
    }
}

pub mod edma3 {
    use core::num::NonZeroU8;

    use crate::{dma::edma3 as dma, element::ElementSize, tcd::edma34 as tcd};
    use ral_registers::Instance;

    /// A DMA channel for an eDMA controller.
    ///
    /// The channel is two pointers wide.
    pub struct Channel {
        index: usize,
        dma: Instance<dma::RegisterBlock>,
    }

    impl Channel {
        /// Create a new DMA channel.
        ///
        /// # Safety
        ///
        /// The channel formed by this call cannot alias another channel with the
        /// same index. The channel index must be valid for the hardware.
        pub const unsafe fn new(dma: Instance<dma::RegisterBlock>, index: usize) -> Self {
            Self { index, dma }
        }

        /// Enable the DMA channel.
        ///
        /// # Safety
        ///
        /// If the channel is incorrectly configured, it may access
        /// invalid memory.
        pub unsafe fn enable(&mut self) {
            ral_registers::modify_reg!(tcd, self.tcd(), CSR, ERQ: 1, DONE: 0);
        }

        /// Disable the DMA channel.
        pub fn disable(&mut self) {
            ral_registers::modify_reg!(tcd, self.tcd(), CSR, ERQ: 0, DONE: 0);
        }

        /// Returns `true` if the DMA channel is enabled.
        pub fn is_enabled(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, ERQ != 0)
        }

        fn tcd(&self) -> Instance<tcd::RegisterBlock> {
            // Safety: caller claims the index is valid for
            // the DMA controller.
            unsafe { Instance::new_unchecked(&raw mut (*self.dma.as_ptr()).TCD[self.index]) }
        }

        /// Returns `true` if the hardware is signaling requests towards
        /// this DMA channel.
        pub fn is_hardware_signaling(&self) -> bool {
            (1 << self.index) & ral_registers::read_reg!(dma, self.dma, HRS) != 0
        }

        /// Returns `true` if an interrupt has activated for this
        /// DMA channel.
        pub fn is_interrupt(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), INT) != 0
        }

        /// Clear the interrupt trigger.
        pub fn clear_interrupt(&self) {
            ral_registers::write_reg!(tcd, self.tcd(), INT, 1);
        }

        /// Returns `true` if this DMA channel has finished its transfer.
        pub fn is_done(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, DONE == 1)
        }

        /// Clear the "done" signal from software.
        pub fn clear_done(&self) {
            // Safety: the CSR register is the first register of the
            // TCD. The peripheral tolerates 8-bit access. We can poke
            // the DONE bit with a single write without risking a race
            // in the lower bits of the register.
            //
            // I should rewrite the register block to lay out the data
            // like I want...
            unsafe {
                let csr: *mut u32 = &raw mut (*self.tcd().as_ptr()).CSR;
                csr.cast::<u8>().add(3).write_volatile(1 << 6)
            };
        }

        /// Returns `true` if this channel has an error.
        pub fn has_error(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), ES) != 0
        }

        /// Clear this channel's error.
        pub fn clear_error(&self) {
            ral_registers::write_reg!(tcd, self.tcd(), ES, ERR: 1);
        }

        /// Returns `true` if this channel is actively transferring.
        pub fn is_active(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, ACTIVE == 1)
        }

        /// Reset the control descriptor for the channel.
        ///
        /// Call this at least once, after acquiring the channel, to
        /// put it into a known-good state.
        pub fn reset(&mut self) {
            unsafe {
                let tcd = &raw mut (*self.tcd().as_ptr()).TCD;
                tcd.write_bytes(0, 1);
            };
        }

        /// Set the source address for a DMA transfer
        ///
        /// `saddr` should be a memory location that can provide the DMA controller
        /// with data.
        ///
        /// # Safety
        ///
        /// If the DMA channel is already enabled, the DMA engine may start reading this
        /// memory location. You must ensure that reads to `saddr` do not perform
        /// inappropriate side effects. You must ensure `saddr` is valid for the
        /// lifetime of the transfer.
        pub unsafe fn set_source_address(&self, saddr: *const ()) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.SADDR, saddr as u32);
        }

        /// Set the source offset *in bytes*
        ///
        /// `offset` could be negative, which would decrement the address.
        ///
        /// # Safety
        ///
        /// This method could allow a DMA engine to read beyond a buffer or
        /// address. You must ensure that the source is valid for these offsets.
        pub unsafe fn set_source_offset(&self, offset: i16) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.SOFF, offset);
        }

        /// Set the destination address for a DMA transfer
        ///
        /// `daddr` should be a memory location that can store data from the
        /// DMA controller.
        ///
        /// # Safety
        ///
        /// If the DMA channel is already enabled, the DMA engine may start
        /// writing to this address. You must ensure that writes to `daddr`
        /// are safe, and that the memory is valid for the lifetime of the
        /// transfer.
        pub unsafe fn set_destination_address(&self, daddr: *const ()) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.DADDR, daddr as u32);
        }

        /// Set the destination offset *in bytes*
        ///
        /// `offset` could be negative, which would decrement the address.
        ///
        /// # Safety
        ///
        /// This method could allow a DMA engine to write beyond the range of
        /// a buffer. You must ensure that the destination is valid for these
        /// offsets.
        pub unsafe fn set_destination_offset(&self, offset: i16) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.DOFF, offset);
        }

        /// Set the transfer attributes.
        ///
        /// The attributes describes the ways the source is read and
        /// the destination is written. The modulo mask allows the
        /// buffer to be treated as a circular buffer.
        ///
        /// # Safety
        ///
        /// Incorrect sizes and modulos may cause invalid memory accesses.
        pub unsafe fn set_attributes(
            &self,
            source_size: ElementSize,
            source_modulo: u8,
            destination_size: ElementSize,
            destination_modulo: u8,
        ) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.ATTR,
                SSIZE: source_size as u16,
                SMOD: source_modulo as u16,
                DSIZE: destination_size as u16,
                DMOD: destination_modulo as u16,
            );
        }

        /// Set the source last address adjustment *in bytes*
        ///
        /// # Safety
        ///
        /// This could allow the DMA engine to reference an invalid source buffer.
        /// You must ensure that the adjustment performed by the DMA engine is
        /// valid, assuming that another DMA transfer immediately runs after the
        /// current transfer completes.
        pub unsafe fn set_source_last_address_adjustment(&self, adjustment: i32) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.SLAST, adjustment);
        }

        /// Set the destination last addrss adjustment *in bytes*
        ///
        /// # Safety
        ///
        /// This could allow the DMA engine to reference an invalid destination address.
        /// You must ensure that the adjustment performed by the DMA engine is
        /// valid, assuming that another DMA transfer immediately runs after the
        /// current transfer completes.
        pub unsafe fn set_destination_last_address_adjustment(&self, adjustment: i32) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.DLAST_SGA, adjustment);
        }

        /// Set the number of *bytes* to transfer per minor loop
        ///
        /// Describes how many bytes we should transfer for each DMA service request.
        /// Note that `nbytes` of `0` is interpreted as a 4GB transfer.
        ///
        /// # Safety
        ///
        /// This might allow the DMA engine to read beyond the source, or write beyond
        /// the destination. Caller must ensure that the number of bytes per minor loop
        /// is valid for the given transfer.
        pub unsafe fn set_minor_loop_bytes(&self, nbytes: u32) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.NBYTES, nbytes);
        }

        /// Tells the DMA channel how many transfer iterations to perform
        ///
        /// A 'transfer iteration' is a read from a source, and a write to a destination, with
        /// read and write sizes described by a minor loop. Each iteration requires a DMA
        /// service request, either from hardware or from software. The maximum number of iterations
        /// is 2^15.
        ///
        /// # Safety
        ///
        /// This may allow the DMA engine to read beyond the source, or write beyond
        /// the destination. Caller must ensure that the number of iterations is valid
        /// for the transfer.
        pub unsafe fn set_transfer_iterations(&mut self, iterations: u16) {
            let iterations = iterations & 0x7FFF;
            // Note that this is clearing the ELINK bit. We don't have support
            // for channel-to-channel linking right now. Clearing ELINK is intentional
            // to use the whole 15 bits for iterations.
            ral_registers::write_reg!(tcd, self.tcd(), TCD.CITER, iterations);
            ral_registers::write_reg!(tcd, self.tcd(), TCD.BITER, iterations);
        }

        /// Returns the beginning transfer iterations setting for the channel.
        ///
        /// This reflects the last call to `set_transfer_iterations`.
        pub fn beginning_transfer_iterations(&self) -> u16 {
            ral_registers::read_reg!(tcd, self.tcd(), TCD.BITER)
        }

        /// Enable or disable 'disable on completion'
        ///
        /// 'Disable on completion' lets the DMA channel automatically clear the request signal
        /// when it completes a transfer.
        pub fn set_disable_on_completion(&mut self, dreq: bool) {
            ral_registers::modify_reg!(tcd, self.tcd(), TCD.CSR, DREQ: dreq as u16);
        }

        /// Enable or disable interrupt generation when the transfer completes
        ///
        /// You're responsible for registering your interrupt handler.
        pub fn set_interrupt_on_completion(&mut self, intr: bool) {
            ral_registers::modify_reg!(tcd, self.tcd(), TCD.CSR, INTMAJOR: intr as u16);
        }

        /// Start a DMA transfer
        ///
        /// `start()` should be used to request service from the DMA controller. It's
        /// necessary for in-memory DMA transfers. Do not use it for hardware-initiated
        /// DMA transfers. DMA transfers that involve hardware will rely on the hardware
        /// to request DMA service.
        ///
        /// Flag is automatically cleared by hardware after it's asserted.
        pub fn start(&mut self) {
            ral_registers::modify_reg!(tcd, self.tcd(), TCD.CSR, START: 1);
        }

        /// Set the source signal for channel activation.
        ///
        /// The source is typically an upstream peripheral.
        /// Use `None` to disable the source.
        ///
        /// This call reads back the written source. If they're equal
        /// the return is `true`. The values may not be equal if the
        /// source is selected in another DMA channel.
        pub fn set_source_signal(&self, signal: Option<NonZeroU8>) -> bool {
            let signal = signal.map_or(0, NonZeroU8::get) as u32;
            ral_registers::write_reg!(tcd, self.tcd(), MUX, SRC: signal);
            signal == ral_registers::read_reg!(tcd, self.tcd(), MUX, SRC)
        }
    }
}

pub mod edma4 {
    use core::num::NonZeroU8;

    use crate::{dma::edma4 as dma, element::ElementSize, tcd::edma34 as tcd};
    use ral_registers::Instance;

    /// A DMA channel for an eDMA controller.
    ///
    /// The channel is two pointers wide.
    pub struct Channel {
        index: usize,
        dma: Instance<dma::RegisterBlock>,
    }

    impl Channel {
        /// Create a new DMA channel.
        ///
        /// # Safety
        ///
        /// The channel formed by this call cannot alias another channel with the
        /// same index. The channel index must be valid for the hardware.
        pub const unsafe fn new(dma: Instance<dma::RegisterBlock>, index: usize) -> Self {
            Self { index, dma }
        }

        /// Enable the DMA channel.
        ///
        /// # Safety
        ///
        /// If the channel is incorrectly configured, it may access
        /// invalid memory.
        pub unsafe fn enable(&mut self) {
            ral_registers::modify_reg!(tcd, self.tcd(), CSR, ERQ: 1, DONE: 0);
        }

        /// Disable the DMA channel.
        pub fn disable(&mut self) {
            ral_registers::modify_reg!(tcd, self.tcd(), CSR, ERQ: 0, DONE: 0);
        }

        /// Returns `true` if the DMA channel is enabled.
        pub fn is_enabled(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, ERQ != 0)
        }

        fn tcd(&self) -> Instance<tcd::RegisterBlock> {
            // Safety: caller claims the index is valid for
            // the DMA controller.
            unsafe { Instance::new_unchecked(&raw mut (*self.dma.as_ptr()).TCD[self.index]) }
        }

        /// Returns `true` if the hardware is signaling requests towards
        /// this DMA channel.
        pub fn is_hardware_signaling(&self) -> bool {
            if self.index < 32 {
                (1 << self.index) & ral_registers::read_reg!(dma, self.dma, HRS_LOW) != 0
            } else {
                (1 << (self.index - 32)) & ral_registers::read_reg!(dma, self.dma, HRS_HIGH) != 0
            }
        }

        /// Returns `true` if an interrupt has activated for this
        /// DMA channel.
        pub fn is_interrupt(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), INT) != 0
        }

        /// Clear the interrupt trigger.
        pub fn clear_interrupt(&self) {
            ral_registers::write_reg!(tcd, self.tcd(), INT, 1);
        }

        /// Returns `true` if this DMA channel has finished its transfer.
        pub fn is_done(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, DONE == 1)
        }

        /// Clear the "done" signal from software.
        pub fn clear_done(&self) {
            // Safety: the CSR register is the first register of the
            // TCD. The peripheral tolerates 8-bit access. We can poke
            // the DONE bit with a single write without risking a race
            // in the lower bits of the register.
            //
            // I should rewrite the register block to lay out the data
            // like I want...
            unsafe {
                let csr: *mut u32 = &raw mut (*self.tcd().as_ptr()).CSR;
                csr.cast::<u8>().add(3).write_volatile(1 << 6)
            };
        }

        /// Returns `true` if this channel has an error.
        pub fn has_error(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), ES) != 0
        }

        /// Clear this channel's error.
        pub fn clear_error(&self) {
            ral_registers::write_reg!(tcd, self.tcd(), ES, ERR: 1);
        }

        /// Returns `true` if this channel is actively transferring.
        pub fn is_active(&self) -> bool {
            ral_registers::read_reg!(tcd, self.tcd(), CSR, ACTIVE == 1)
        }

        /// Reset the control descriptor for the channel.
        ///
        /// Call this at least once, after acquiring the channel, to
        /// put it into a known-good state.
        pub fn reset(&mut self) {
            unsafe {
                let tcd = &raw mut (*self.tcd().as_ptr()).TCD;
                tcd.write_bytes(0, 1);
            };
        }

        /// Set the source address for a DMA transfer
        ///
        /// `saddr` should be a memory location that can provide the DMA controller
        /// with data.
        ///
        /// # Safety
        ///
        /// If the DMA channel is already enabled, the DMA engine may start reading this
        /// memory location. You must ensure that reads to `saddr` do not perform
        /// inappropriate side effects. You must ensure `saddr` is valid for the
        /// lifetime of the transfer.
        pub unsafe fn set_source_address(&self, saddr: *const ()) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.SADDR, saddr as u32);
        }

        /// Set the source offset *in bytes*
        ///
        /// `offset` could be negative, which would decrement the address.
        ///
        /// # Safety
        ///
        /// This method could allow a DMA engine to read beyond a buffer or
        /// address. You must ensure that the source is valid for these offsets.
        pub unsafe fn set_source_offset(&self, offset: i16) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.SOFF, offset);
        }

        /// Set the destination address for a DMA transfer
        ///
        /// `daddr` should be a memory location that can store data from the
        /// DMA controller.
        ///
        /// # Safety
        ///
        /// If the DMA channel is already enabled, the DMA engine may start
        /// writing to this address. You must ensure that writes to `daddr`
        /// are safe, and that the memory is valid for the lifetime of the
        /// transfer.
        pub unsafe fn set_destination_address(&self, daddr: *const ()) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.DADDR, daddr as u32);
        }

        /// Set the destination offset *in bytes*
        ///
        /// `offset` could be negative, which would decrement the address.
        ///
        /// # Safety
        ///
        /// This method could allow a DMA engine to write beyond the range of
        /// a buffer. You must ensure that the destination is valid for these
        /// offsets.
        pub unsafe fn set_destination_offset(&self, offset: i16) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.DOFF, offset);
        }

        /// Set the transfer attributes.
        ///
        /// The attributes describes the ways the source is read and
        /// the destination is written. The modulo mask allows the
        /// buffer to be treated as a circular buffer.
        ///
        /// # Safety
        ///
        /// Incorrect sizes and modulos may cause invalid memory accesses.
        pub unsafe fn set_attributes(
            &self,
            source_size: ElementSize,
            source_modulo: u8,
            destination_size: ElementSize,
            destination_modulo: u8,
        ) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.ATTR,
                SSIZE: source_size as u16,
                SMOD: source_modulo as u16,
                DSIZE: destination_size as u16,
                DMOD: destination_modulo as u16,
            );
        }

        /// Set the source last address adjustment *in bytes*
        ///
        /// # Safety
        ///
        /// This could allow the DMA engine to reference an invalid source buffer.
        /// You must ensure that the adjustment performed by the DMA engine is
        /// valid, assuming that another DMA transfer immediately runs after the
        /// current transfer completes.
        pub unsafe fn set_source_last_address_adjustment(&self, adjustment: i32) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.SLAST, adjustment);
        }

        /// Set the destination last addrss adjustment *in bytes*
        ///
        /// # Safety
        ///
        /// This could allow the DMA engine to reference an invalid destination address.
        /// You must ensure that the adjustment performed by the DMA engine is
        /// valid, assuming that another DMA transfer immediately runs after the
        /// current transfer completes.
        pub unsafe fn set_destination_last_address_adjustment(&self, adjustment: i32) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.DLAST_SGA, adjustment);
        }

        /// Set the number of *bytes* to transfer per minor loop
        ///
        /// Describes how many bytes we should transfer for each DMA service request.
        /// Note that `nbytes` of `0` is interpreted as a 4GB transfer.
        ///
        /// # Safety
        ///
        /// This might allow the DMA engine to read beyond the source, or write beyond
        /// the destination. Caller must ensure that the number of bytes per minor loop
        /// is valid for the given transfer.
        pub unsafe fn set_minor_loop_bytes(&self, nbytes: u32) {
            ral_registers::write_reg!(tcd, self.tcd(), TCD.NBYTES, nbytes);
        }

        /// Tells the DMA channel how many transfer iterations to perform
        ///
        /// A 'transfer iteration' is a read from a source, and a write to a destination, with
        /// read and write sizes described by a minor loop. Each iteration requires a DMA
        /// service request, either from hardware or from software. The maximum number of iterations
        /// is 2^15.
        ///
        /// # Safety
        ///
        /// This may allow the DMA engine to read beyond the source, or write beyond
        /// the destination. Caller must ensure that the number of iterations is valid
        /// for the transfer.
        pub unsafe fn set_transfer_iterations(&mut self, iterations: u16) {
            let iterations = iterations & 0x7FFF;
            // Note that this is clearing the ELINK bit. We don't have support
            // for channel-to-channel linking right now. Clearing ELINK is intentional
            // to use the whole 15 bits for iterations.
            ral_registers::write_reg!(tcd, self.tcd(), TCD.CITER, iterations);
            ral_registers::write_reg!(tcd, self.tcd(), TCD.BITER, iterations);
        }

        /// Returns the beginning transfer iterations setting for the channel.
        ///
        /// This reflects the last call to `set_transfer_iterations`.
        pub fn beginning_transfer_iterations(&self) -> u16 {
            ral_registers::read_reg!(tcd, self.tcd(), TCD.BITER)
        }

        /// Enable or disable 'disable on completion'
        ///
        /// 'Disable on completion' lets the DMA channel automatically clear the request signal
        /// when it completes a transfer.
        pub fn set_disable_on_completion(&mut self, dreq: bool) {
            ral_registers::modify_reg!(tcd, self.tcd(), TCD.CSR, DREQ: dreq as u16);
        }

        /// Enable or disable interrupt generation when the transfer completes
        ///
        /// You're responsible for registering your interrupt handler.
        pub fn set_interrupt_on_completion(&mut self, intr: bool) {
            ral_registers::modify_reg!(tcd, self.tcd(), TCD.CSR, INTMAJOR: intr as u16);
        }

        /// Start a DMA transfer
        ///
        /// `start()` should be used to request service from the DMA controller. It's
        /// necessary for in-memory DMA transfers. Do not use it for hardware-initiated
        /// DMA transfers. DMA transfers that involve hardware will rely on the hardware
        /// to request DMA service.
        ///
        /// Flag is automatically cleared by hardware after it's asserted.
        pub fn start(&mut self) {
            ral_registers::modify_reg!(tcd, self.tcd(), TCD.CSR, START: 1);
        }

        /// Set the source signal for channel activation.
        ///
        /// The source is typically an upstream peripheral.
        /// Use `None` to disable the source.
        ///
        /// This call reads back the written source. If they're equal
        /// the return is `true`. The values may not be equal if the
        /// source is selected in another DMA channel.
        pub fn set_source_signal(&self, signal: Option<NonZeroU8>) -> bool {
            let signal = signal.map_or(0, NonZeroU8::get) as u32;
            ral_registers::write_reg!(tcd, self.tcd(), MUX, SRC: signal);
            signal == ral_registers::read_reg!(tcd, self.tcd(), MUX, SRC)
        }
    }
}