atsamd_hal/dmac/transfer.rs
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
//! # DMA transfer abstractions
//!
//! # Transfer types
//!
//! Four basic transfer types are supported:
//!
//! * Incrementing-source to incrementing-destination (normally used for
//! memory-to-memory transfers)
//!
//! * Incrementing-source to fixed-destination (normally used for
//! memory-to-peripheral transfers)
//!
//! * Fixed-source to incrementing-destination (normally used for
//! peripheral-to-memory transfers)
//!
//! * Fixed-source to fixed-destination (normally used for
//! peripheral-to-peripheral transfers)
//!
//! # Beat sizes
//!
//! A beat is an atomic, uninterruptible transfer size.Three beat sizes are
//! supported:
//!
//! * Byte-per-byte (8 bit beats);
//!
//! * Halfword-per-halfword (16 bit beats);
//!
//! * Word-per-word (32 bit beats);
//!
//! The correct beat size will automatically be selected in function of the type
//! of the source and destination buffers.
//!
//! # One-shot vs circular transfers
//!
//! If the transfer is setup as one-shot (`circular == false`), the
//! transfer will run once and stop. Otherwise, if `circular == true`, then the
//! transfer will be set as circular, meaning it will restart a new, identical
//! block transfer when the current block transfer is complete. This is
//! particularly useful when combined with a TC/TCC trigger source, for instance
//! to periodically retreive a sample from an ADC and send it to a circular
//! buffer, or send a sample to a DAC.
//!
//! # Starting a transfer
//!
//! A transfer is started by calling [`Transfer::begin`]. You will be
//! required to supply a trigger source and a trigger action.
//!
//! # Waiting for a transfer to complete
//!
//! A transfer can waited upon by calling [`wait`](Transfer::wait). This is a
//! _blocking_ method, meaning it will busy-wait until the transfer is
//! completed. When it returns, it will release the source and destination
//! buffers, as well as the DMA channel.
//!
//! # Interrupting (stopping) a transfer
//!
//! A transfer can be stopped (regardless of whether it has completed or not) by
//! calling [`stop`](Transfer::stop). This is _not_ a blocking method,
//! meaning it will stop the transfer and immediately return. When it returns,
//! it will release the source and destination buffers, as well as the DMA
//! channel.
//!
//! # Trigger sources
//!
//! Most peripherals can issue triggers to a DMA channel. A software trigger is
//! also available (see [`trigger`](Transfer::software_trigger)). See
//! ATSAMD21 datasheet, table 19-8 for all available trigger sources.
//!
//! # Trigger actions
//!
//! Three trigger actions are available:
//!
//! * BLOCK: One trigger required for each block transfer. In the context of
//! this driver, one Transfer is equivalent to one Block transfer.
//!
//! * BEAT: One trigger required for each beat transfer. In the context of this
//! driver, the beat size will depend on the type of buffer used (8, 16 or 32
//! bits).
//!
//! * TRANSACTION: One trigger required for a full DMA transaction. this is
//! useful for circular transfers in the context of this driver. One trigger
//! will set off the transaction, that will now run uninterrupted until it is
//! stopped.
use super::{
channel::{AnyChannel, Busy, Channel, ChannelId, InterruptFlags, Ready},
dma_controller::{TriggerAction, TriggerSource},
Error, ReadyChannel, Result,
};
use crate::typelevel::{Is, Sealed};
use modular_bitfield::prelude::*;
//==============================================================================
// Beat
//==============================================================================
/// Useable beat sizes for DMA transfers
#[derive(Clone, Copy, BitfieldSpecifier)]
#[bits = 2]
pub enum BeatSize {
/// Byte = [`u8`](core::u8)
Byte = 0x00,
/// Half word = [`u16`](core::u16)
HalfWord = 0x01,
/// Word = [`u32`](core::u32)
Word = 0x02,
}
/// Convert 8, 16 and 32 bit types
/// into [`BeatSize`]
///
/// # Safety
///
/// This trait should not be implemented outside of the crate-provided
/// implementations
pub unsafe trait Beat: Sealed {
/// Convert to BeatSize enum
const BEATSIZE: BeatSize;
}
macro_rules! impl_beat {
( $( ($Type:ty, $Size:ident) ),+ ) => {
$(
unsafe impl Beat for $Type {
const BEATSIZE: BeatSize = BeatSize::$Size;
}
)+
};
}
impl_beat!(
(u8, Byte),
(i8, Byte),
(u16, HalfWord),
(i16, HalfWord),
(u32, Word),
(i32, Word),
(f32, Word)
);
//==============================================================================
// Buffer
//==============================================================================
/// Buffer useable by the DMAC.
///
/// # Safety
///
/// This trait should only be implemented for valid DMAC sources/sinks. That is,
/// you need to make sure that:
/// * `dma_ptr` points to a valid memory location useable by the DMAC
/// * `incrementing` is correct for the source/sink. For example, an `&[u8]` of
/// size one is not incrementing.
/// * `buffer_len` is correct for the source/sink.
pub unsafe trait Buffer {
/// DMAC beat size
type Beat: Beat;
/// Pointer to the buffer. If the buffer is incrementing, the address should
/// point to one past the last beat transfer in the block.
fn dma_ptr(&mut self) -> *mut Self::Beat;
/// Return whether the buffer pointer should be incrementing or not
fn incrementing(&self) -> bool;
/// Buffer length in beats
fn buffer_len(&self) -> usize;
}
unsafe impl<T: Beat, const N: usize> Buffer for &mut [T; N] {
type Beat = T;
#[inline]
fn dma_ptr(&mut self) -> *mut Self::Beat {
let ptrs = self.as_mut_ptr_range();
if self.incrementing() {
ptrs.end
} else {
ptrs.start
}
}
#[inline]
fn incrementing(&self) -> bool {
N > 1
}
#[inline]
fn buffer_len(&self) -> usize {
N
}
}
unsafe impl<T: Beat> Buffer for &mut [T] {
type Beat = T;
#[inline]
fn dma_ptr(&mut self) -> *mut Self::Beat {
let ptrs = self.as_mut_ptr_range();
if self.incrementing() {
ptrs.end
} else {
ptrs.start
}
}
#[inline]
fn incrementing(&self) -> bool {
self.len() > 1
}
#[inline]
fn buffer_len(&self) -> usize {
self.len()
}
}
unsafe impl<T: Beat> Buffer for &mut T {
type Beat = T;
#[inline]
fn dma_ptr(&mut self) -> *mut Self::Beat {
*self as *mut T
}
#[inline]
fn incrementing(&self) -> bool {
false
}
#[inline]
fn buffer_len(&self) -> usize {
1
}
}
//==============================================================================
// BufferPair
//==============================================================================
/// Struct holding the source and destination buffers of a
/// [`Transfer`].
pub struct BufferPair<S, D = S>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
{
/// Source buffer
pub source: S,
/// Destination buffer
pub destination: D,
}
//==============================================================================
// AnyBufferPair
//==============================================================================
pub trait AnyBufferPair: Sealed + Is<Type = SpecificBufferPair<Self>> {
type Src: Buffer;
type Dst: Buffer<Beat = BufferPairBeat<Self>>;
}
pub type SpecificBufferPair<C> = BufferPair<<C as AnyBufferPair>::Src, <C as AnyBufferPair>::Dst>;
pub type BufferPairSrc<B> = <B as AnyBufferPair>::Src;
pub type BufferPairDst<B> = <B as AnyBufferPair>::Dst;
pub type BufferPairBeat<B> = <BufferPairSrc<B> as Buffer>::Beat;
impl<S, D> Sealed for BufferPair<S, D>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
{
}
impl<S, D> AnyBufferPair for BufferPair<S, D>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
{
type Src = S;
type Dst = D;
}
impl<S, D> AsRef<Self> for BufferPair<S, D>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
{
#[inline]
fn as_ref(&self) -> &Self {
self
}
}
impl<S, D> AsMut<Self> for BufferPair<S, D>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
{
#[inline]
fn as_mut(&mut self) -> &mut Self {
self
}
}
// TODO change source and dest types to Pin? (see https://docs.rust-embedded.org/embedonomicon/dma.html#immovable-buffers)
/// DMA transfer, owning the resources until the transfer is done and
/// [`Transfer::wait`] is called.
pub struct Transfer<Chan, Buf>
where
Buf: AnyBufferPair,
Chan: AnyChannel,
{
chan: Chan,
buffers: Buf,
complete: bool,
}
impl<C, S, D, R> Transfer<C, BufferPair<S, D>>
where
S: Buffer + 'static,
D: Buffer<Beat = S::Beat> + 'static,
C: AnyChannel<Status = R>,
R: ReadyChannel,
{
/// Safely construct a new `Transfer`. To guarantee memory safety, both
/// buffers are required to be `'static`.
/// Refer [here](https://docs.rust-embedded.org/embedonomicon/dma.html#memforget) or
/// [here](https://blog.japaric.io/safe-dma/) for more information.
///
/// If two array references can be used as source and destination buffers
/// (as opposed to slices), then it is recommended to use the
/// [`Transfer::new_from_arrays`] method instead.
///
/// # Errors
///
/// Returns [`Error::LengthMismatch`] if both
/// buffers have a length > 1 and are not of equal length.
#[allow(clippy::new_ret_no_self)]
#[inline]
pub fn new(
chan: C,
source: S,
destination: D,
circular: bool,
) -> Result<Transfer<C, BufferPair<S, D>>> {
Self::check_buffer_pair(&source, &destination)?;
// SAFETY: The safety checks are done by the function signature and the buffer
// length verification
Ok(unsafe { Self::new_unchecked(chan, source, destination, circular) })
}
}
impl<S, D, C> Transfer<C, BufferPair<S, D>>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
C: AnyChannel,
{
#[inline]
pub(super) fn check_buffer_pair(source: &S, destination: &D) -> Result<()> {
let src_len = source.buffer_len();
let dst_len = destination.buffer_len();
if src_len > 1 && dst_len > 1 && src_len != dst_len {
Err(Error::LengthMismatch)
} else {
Ok(())
}
}
}
impl<C, S, D, R> Transfer<C, BufferPair<S, D>>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
C: AnyChannel<Status = R>,
R: ReadyChannel,
{
/// Construct a new `Transfer` without checking for memory safety.
///
/// # Safety
///
/// To guarantee the safety of creating a `Transfer` using this method, you
/// must uphold some invariants:
///
/// * A `Transfer` holding a `Channel<Id, Running>` must *never* be dropped.
/// It should *always* be explicitly be `wait`ed upon or `stop`ped.
///
/// * The size in bytes or the source and destination buffers should be
/// exacly the same, unless one or both buffers are of length 1. The
/// transfer length will be set to the longest of both buffers if they are
/// not of equal size.
#[inline]
pub unsafe fn new_unchecked(
mut chan: C,
mut source: S,
mut destination: D,
circular: bool,
) -> Transfer<C, BufferPair<S, D>> {
chan.as_mut()
.fill_descriptor(&mut source, &mut destination, circular);
let buffers = BufferPair {
source,
destination,
};
Transfer {
buffers,
chan,
complete: false,
}
}
}
impl<C, S, D> Transfer<C, BufferPair<S, D>>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
C: AnyChannel<Status = Ready>,
{
/// Begin DMA transfer in blocking mode. If [`TriggerSource::Disable`] is
/// used, a software trigger will be issued to the DMA channel to launch
/// the transfer. Is is therefore not necessary, in most cases, to manually
/// issue a software trigger to the channel.
#[inline]
pub fn begin(
mut self,
trig_src: TriggerSource,
trig_act: TriggerAction,
) -> Transfer<Channel<ChannelId<C>, Busy>, BufferPair<S, D>> {
// Reset the complete flag before triggering the transfer.
// This way an interrupt handler could set complete to true
// before this function returns.
self.complete = false;
let chan = self.chan.into().start(trig_src, trig_act);
Transfer {
buffers: self.buffers,
chan,
complete: self.complete,
}
}
/// Free the [`Transfer`] and return the resources it holds.
///
/// Similar to [`stop`](Transfer::stop), but it acts on a [`Transfer`]
/// holding a [`Ready`] channel, so there is no need to explicitly stop the
/// transfer.
pub fn free(self) -> (Channel<ChannelId<C>, Ready>, S, D) {
(
self.chan.into(),
self.buffers.source,
self.buffers.destination,
)
}
}
impl<B, C, R, const N: usize> Transfer<C, BufferPair<&'static mut [B; N]>>
where
B: 'static + Beat,
C: AnyChannel<Status = R>,
R: ReadyChannel,
{
/// Create a new `Transfer` from static array references of the same type
/// and length. When two array references are available (instead of slice
/// references), it is recommended to use this function over
/// [`Transfer::new`](Transfer::new), because it provides compile-time
/// checking that the array lengths match. It therefore does not panic, and
/// saves some runtime checking of the array lengths.
#[inline]
pub fn new_from_arrays(
chan: C,
source: &'static mut [B; N],
destination: &'static mut [B; N],
circular: bool,
) -> Self {
unsafe { Self::new_unchecked(chan, source, destination, circular) }
}
}
impl<S, D, C> Transfer<C, BufferPair<S, D>>
where
S: Buffer,
D: Buffer<Beat = S::Beat>,
C: AnyChannel<Status = Busy>,
{
/// Issue a software trigger request to the corresponding channel.
/// Note that is not guaranteed that the trigger request will register,
/// if a trigger request is already pending for the channel.
#[inline]
pub fn software_trigger(&mut self) {
self.chan.as_mut().software_trigger();
}
/// Unsafely and mutably borrow the source buffer
///
/// # Safety
///
/// The source buffer should never be borrowed when a transfer is in
/// progress, as it is getting mutated or read in another context (ie,
/// the DMAC hardware "thread").
#[inline]
pub(crate) unsafe fn borrow_source(&mut self) -> &mut S {
&mut self.buffers.source
}
/// Unsafely and mutably borrow the destination buffer.
/// # Safety
///
/// The destination buffer should never be borrowed when a transfer is in
/// progress, as it is getting mutated or read in another context (ie,
/// the DMAC hardware "thread").
#[inline]
pub(crate) unsafe fn borrow_destination(&mut self) -> &mut D {
&mut self.buffers.destination
}
/// Wait for the DMA transfer to complete and release all owned
/// resources
///
/// # Blocking: This method may block
#[inline]
pub fn wait(mut self) -> (Channel<ChannelId<C>, Ready>, S, D) {
// Wait for transfer to complete
while !self.complete() {}
self.stop()
}
/// Check if the transfer has completed
#[inline]
pub fn complete(&mut self) -> bool {
if !self.complete {
let chan = self.chan.as_mut();
let complete = chan.xfer_complete();
self.complete = complete;
}
self.complete
}
/// Checks and clears the block transfer complete interrupt flag
#[inline]
pub fn block_transfer_interrupt(&mut self) -> bool {
self.chan
.as_mut()
.check_and_clear_interrupts(InterruptFlags::new().with_tcmpl(true))
.tcmpl()
}
/// Modify a completed transfer with new `source` and `destination`, then
/// restart.
///
/// Returns a Result containing the source and destination from the
/// completed transfer. Returns `Err(_)` if the buffer lengths are
/// mismatched or if the previous transfer has not yet completed.
#[inline]
pub fn recycle(&mut self, mut source: S, mut destination: D) -> Result<(S, D)> {
Self::check_buffer_pair(&source, &destination)?;
if !self.complete() {
return Err(Error::InvalidState);
}
// Circular transfers won't ever complete, so never re-fill as one
unsafe {
self.chan
.as_mut()
.fill_descriptor(&mut source, &mut destination, false);
}
let new_buffers = BufferPair {
source,
destination,
};
let old_buffers = core::mem::replace(&mut self.buffers, new_buffers);
self.chan.as_mut().restart();
Ok((old_buffers.source, old_buffers.destination))
}
/// Modify a completed transfer with a new `destination`, then restart.
///
/// Returns a Result containing the destination from the
/// completed transfer. Returns `Err(_)` if the buffer lengths are
/// mismatched or if the previous transfer has not yet completed.
#[inline]
pub fn recycle_source(&mut self, mut destination: D) -> Result<D> {
Self::check_buffer_pair(&self.buffers.source, &destination)?;
if !self.complete() {
return Err(Error::InvalidState);
}
// Circular transfers won't ever complete, so never re-fill as one
unsafe {
self.chan
.as_mut()
.fill_descriptor(&mut self.buffers.source, &mut destination, false);
}
let old_destination = core::mem::replace(&mut self.buffers.destination, destination);
self.chan.as_mut().restart();
Ok(old_destination)
}
/// Modify a completed transfer with a new `source`, then restart.
///
/// Returns a Result containing the source from the
/// completed transfer. Returns `Err(_)` if the buffer lengths are
/// mismatched or if the previous transfer has not yet completed.
#[inline]
pub fn recycle_destination(&mut self, mut source: S) -> Result<S> {
Self::check_buffer_pair(&source, &self.buffers.destination)?;
if !self.complete() {
return Err(Error::InvalidState);
}
// Circular transfers won't ever complete, so never re-fill as one
unsafe {
self.chan
.as_mut()
.fill_descriptor(&mut source, &mut self.buffers.destination, false);
}
let old_source = core::mem::replace(&mut self.buffers.source, source);
self.chan.as_mut().restart();
Ok(old_source)
}
/// Non-blocking; Immediately stop the DMA transfer and release all owned
/// resources
#[inline]
pub fn stop(self) -> (Channel<ChannelId<C>, Ready>, S, D) {
// `free()` stops the transfer, waits for the burst to finish, and emits a
// compiler fence.
let chan = self.chan.into().free();
(chan, self.buffers.source, self.buffers.destination)
}
}