embassy/embassy-rp/src/dma.rs

294 lines
6.9 KiB
Rust
Raw Normal View History

use core::future::Future;
2022-08-18 19:39:13 +02:00
use core::pin::Pin;
2021-03-29 04:11:32 +02:00
use core::sync::atomic::{compiler_fence, Ordering};
2022-08-18 21:27:37 +02:00
use core::task::{Context, Poll};
2021-03-29 04:11:32 +02:00
2022-08-19 09:48:58 +02:00
use embassy_cortex_m::interrupt::{Interrupt, InterruptExt};
2022-08-18 19:39:13 +02:00
use embassy_hal_common::{impl_peripheral, into_ref, Peripheral, PeripheralRef};
2022-08-23 13:28:14 +02:00
use embassy_sync::waitqueue::AtomicWaker;
2022-08-18 21:09:50 +02:00
use pac::dma::vals::DataSize;
2021-05-17 03:01:30 +02:00
use crate::pac::dma::vals;
2022-08-19 09:48:58 +02:00
use crate::{interrupt, pac, peripherals};
#[interrupt]
unsafe fn DMA_IRQ_0() {
let ints0 = pac::DMA.ints0().read().ints0();
2022-08-23 12:28:17 +02:00
for channel in 0..CHANNEL_COUNT {
let ctrl_trig = pac::DMA.ch(channel).ctrl_trig().read();
if ctrl_trig.ahb_error() {
2022-08-23 13:46:48 +02:00
panic!("DMA: error on DMA_0 channel {}", channel);
}
2022-08-23 12:28:17 +02:00
if ints0 & (1 << channel) == (1 << channel) {
CHANNEL_WAKERS[channel].wake();
2022-08-19 09:48:58 +02:00
}
2022-08-23 12:28:17 +02:00
}
pac::DMA.ints0().write(|w| w.set_ints0(ints0));
}
pub(crate) unsafe fn init() {
let irq = interrupt::DMA_IRQ_0::steal();
irq.disable();
2022-08-23 13:28:14 +02:00
irq.set_priority(interrupt::Priority::P3);
2022-08-23 12:28:17 +02:00
pac::DMA.inte0().write(|w| w.set_inte0(0xFFFF));
irq.enable();
2022-08-19 09:48:58 +02:00
}
2021-03-29 04:11:32 +02:00
2022-08-23 12:28:17 +02:00
pub unsafe fn read<'a, C: Channel, W: Word>(
ch: impl Peripheral<P = C> + 'a,
from: *const W,
2022-09-01 12:00:11 +02:00
to: *mut [W],
dreq: u8,
2022-08-23 12:28:17 +02:00
) -> Transfer<'a, C> {
2022-09-01 12:00:11 +02:00
let (to_ptr, len) = crate::dma::slice_ptr_parts(to);
copy_inner(
ch,
from as *const u32,
2022-09-01 12:00:11 +02:00
to_ptr as *mut u32,
len,
W::size(),
false,
true,
dreq,
)
2022-08-18 21:09:50 +02:00
}
2022-08-23 12:28:17 +02:00
pub unsafe fn write<'a, C: Channel, W: Word>(
ch: impl Peripheral<P = C> + 'a,
2022-09-01 12:00:11 +02:00
from: *const [W],
2022-08-23 12:28:17 +02:00
to: *mut W,
dreq: u8,
2022-08-23 12:28:17 +02:00
) -> Transfer<'a, C> {
2022-09-01 12:00:11 +02:00
let (from_ptr, len) = crate::dma::slice_ptr_parts(from);
copy_inner(
ch,
2022-09-01 12:00:11 +02:00
from_ptr as *const u32,
to as *mut u32,
len,
W::size(),
true,
false,
dreq,
)
}
2022-09-18 21:02:05 +02:00
pub unsafe fn write_repeated<'a, C: Channel, W: Word>(
ch: impl Peripheral<P = C> + 'a,
to: *mut W,
len: usize,
dreq: u8,
) -> Transfer<'a, C> {
let dummy: u32 = 0;
copy_inner(
ch,
&dummy as *const u32,
to as *mut u32,
len,
W::size(),
false,
false,
dreq,
)
}
2022-08-23 12:28:17 +02:00
pub unsafe fn copy<'a, C: Channel, W: Word>(
ch: impl Peripheral<P = C> + 'a,
from: &[W],
to: &mut [W],
) -> Transfer<'a, C> {
let (from_ptr, from_len) = crate::dma::slice_ptr_parts(from);
let (to_ptr, to_len) = crate::dma::slice_ptr_parts_mut(to);
assert_eq!(from_len, to_len);
copy_inner(
ch,
from_ptr as *const u32,
to_ptr as *mut u32,
from_len,
W::size(),
true,
true,
vals::TreqSel::PERMANENT.0,
)
2022-08-18 21:09:50 +02:00
}
2021-03-29 04:11:32 +02:00
fn copy_inner<'a, C: Channel>(
2022-08-18 21:09:50 +02:00
ch: impl Peripheral<P = C> + 'a,
from: *const u32,
to: *mut u32,
len: usize,
data_size: DataSize,
incr_read: bool,
incr_write: bool,
dreq: u8,
2022-08-18 21:09:50 +02:00
) -> Transfer<'a, C> {
2022-08-18 19:39:13 +02:00
into_ref!(ch);
2021-03-29 04:11:32 +02:00
2022-08-18 19:39:13 +02:00
unsafe {
let p = ch.regs();
2021-03-29 04:11:32 +02:00
2022-08-18 21:09:50 +02:00
p.read_addr().write_value(from as u32);
p.write_addr().write_value(to as u32);
p.trans_count().write_value(len as u32);
2021-03-29 04:11:32 +02:00
2022-08-18 19:39:13 +02:00
compiler_fence(Ordering::SeqCst);
2021-03-29 04:11:32 +02:00
2022-08-18 19:39:13 +02:00
p.ctrl_trig().write(|w| {
// TODO: Add all DREQ options to pac vals::TreqSel, and use
// `set_treq:sel`
w.0 = ((dreq as u32) & 0x3f) << 15usize;
2022-08-18 21:09:50 +02:00
w.set_data_size(data_size);
w.set_incr_read(incr_read);
w.set_incr_write(incr_write);
2022-08-18 19:39:13 +02:00
w.set_chain_to(ch.number());
w.set_en(true);
});
2021-03-29 04:11:32 +02:00
2022-08-18 19:39:13 +02:00
compiler_fence(Ordering::SeqCst);
}
Transfer::new(ch)
}
pub struct Transfer<'a, C: Channel> {
2022-08-18 19:39:13 +02:00
channel: PeripheralRef<'a, C>,
}
impl<'a, C: Channel> Transfer<'a, C> {
pub(crate) fn new(channel: impl Peripheral<P = C> + 'a) -> Self {
into_ref!(channel);
2022-08-19 09:48:58 +02:00
2022-08-18 19:39:13 +02:00
Self { channel }
}
}
impl<'a, C: Channel> Drop for Transfer<'a, C> {
fn drop(&mut self) {
2022-08-18 20:30:24 +02:00
let p = self.channel.regs();
unsafe {
pac::DMA
.chan_abort()
.modify(|m| m.set_chan_abort(1 << self.channel.number()));
2022-08-18 20:30:24 +02:00
while p.ctrl_trig().read().busy() {}
}
2022-08-18 19:39:13 +02:00
}
}
impl<'a, C: Channel> Unpin for Transfer<'a, C> {}
impl<'a, C: Channel> Future for Transfer<'a, C> {
type Output = ();
2022-08-18 21:09:50 +02:00
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
2022-08-19 09:48:58 +02:00
// We need to register/re-register the waker for each poll because any
// calls to wake will deregister the waker.
2022-08-18 21:27:37 +02:00
CHANNEL_WAKERS[self.channel.number() as usize].register(cx.waker());
if unsafe { self.channel.regs().ctrl_trig().read().busy() } {
Poll::Pending
} else {
Poll::Ready(())
}
}
}
pub(crate) const CHANNEL_COUNT: usize = 12;
2022-08-18 21:27:37 +02:00
const NEW_AW: AtomicWaker = AtomicWaker::new();
static CHANNEL_WAKERS: [AtomicWaker; CHANNEL_COUNT] = [NEW_AW; CHANNEL_COUNT];
2021-03-29 04:11:32 +02:00
mod sealed {
2022-08-18 19:39:13 +02:00
pub trait Channel {}
pub trait Word {}
}
2021-03-29 04:11:32 +02:00
2022-08-18 19:39:13 +02:00
pub trait Channel: Peripheral<P = Self> + sealed::Channel + Into<AnyChannel> + Sized + 'static {
fn number(&self) -> u8;
2021-03-29 04:11:32 +02:00
2022-08-18 19:39:13 +02:00
fn regs(&self) -> pac::dma::Channel {
pac::DMA.ch(self.number() as _)
}
fn degrade(self) -> AnyChannel {
2022-08-18 20:30:24 +02:00
AnyChannel { number: self.number() }
2021-03-29 04:11:32 +02:00
}
}
2022-08-18 19:39:13 +02:00
pub trait Word: sealed::Word {
fn size() -> vals::DataSize;
}
impl sealed::Word for u8 {}
impl Word for u8 {
fn size() -> vals::DataSize {
vals::DataSize::SIZE_BYTE
}
}
impl sealed::Word for u16 {}
impl Word for u16 {
fn size() -> vals::DataSize {
vals::DataSize::SIZE_HALFWORD
}
}
impl sealed::Word for u32 {}
impl Word for u32 {
fn size() -> vals::DataSize {
vals::DataSize::SIZE_WORD
}
}
2021-03-29 04:11:32 +02:00
pub struct AnyChannel {
number: u8,
}
2022-08-18 19:39:13 +02:00
impl_peripheral!(AnyChannel);
impl sealed::Channel for AnyChannel {}
impl Channel for AnyChannel {
2021-03-29 04:11:32 +02:00
fn number(&self) -> u8 {
self.number
}
}
macro_rules! channel {
2022-08-18 19:39:13 +02:00
($name:ident, $num:expr) => {
impl sealed::Channel for peripherals::$name {}
impl Channel for peripherals::$name {
2021-03-29 04:11:32 +02:00
fn number(&self) -> u8 {
$num
}
}
2022-08-18 19:39:13 +02:00
impl From<peripherals::$name> for crate::dma::AnyChannel {
fn from(val: peripherals::$name) -> Self {
crate::dma::Channel::degrade(val)
}
}
2021-03-29 04:11:32 +02:00
};
}
2022-08-18 21:09:50 +02:00
// TODO: replace transmutes with core::ptr::metadata once it's stable
#[allow(unused)]
pub(crate) fn slice_ptr_parts<T>(slice: *const [T]) -> (usize, usize) {
unsafe { core::mem::transmute(slice) }
}
#[allow(unused)]
pub(crate) fn slice_ptr_parts_mut<T>(slice: *mut [T]) -> (usize, usize) {
unsafe { core::mem::transmute(slice) }
}
2021-03-29 04:11:32 +02:00
channel!(DMA_CH0, 0);
channel!(DMA_CH1, 1);
channel!(DMA_CH2, 2);
channel!(DMA_CH3, 3);
channel!(DMA_CH4, 4);
channel!(DMA_CH5, 5);
channel!(DMA_CH6, 6);
channel!(DMA_CH7, 7);
channel!(DMA_CH8, 8);
channel!(DMA_CH9, 9);
channel!(DMA_CH10, 10);
channel!(DMA_CH11, 11);