2021-07-15 05:42:06 +02:00
|
|
|
#![macro_use]
|
|
|
|
|
2021-08-11 01:40:02 +02:00
|
|
|
use core::sync::atomic::{fence, Ordering};
|
2021-11-19 19:15:55 +01:00
|
|
|
use core::task::Waker;
|
2021-07-15 05:42:06 +02:00
|
|
|
|
2022-11-23 10:11:19 +01:00
|
|
|
use embassy_cortex_m::interrupt::Priority;
|
2022-08-22 21:46:09 +02:00
|
|
|
use embassy_sync::waitqueue::AtomicWaker;
|
2021-07-15 05:42:06 +02:00
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
use super::{TransferOptions, Word, WordSize};
|
2022-03-04 17:42:38 +01:00
|
|
|
use crate::_generated::BDMA_CHANNEL_COUNT;
|
2021-11-19 19:15:55 +01:00
|
|
|
use crate::dma::Request;
|
2022-06-12 22:15:44 +02:00
|
|
|
use crate::interrupt::{Interrupt, InterruptExt};
|
2021-07-15 05:42:06 +02:00
|
|
|
use crate::pac;
|
|
|
|
use crate::pac::bdma::vals;
|
|
|
|
|
2021-11-19 19:15:55 +01:00
|
|
|
impl From<WordSize> for vals::Size {
|
|
|
|
fn from(raw: WordSize) -> Self {
|
|
|
|
match raw {
|
|
|
|
WordSize::OneByte => Self::BITS8,
|
|
|
|
WordSize::TwoBytes => Self::BITS16,
|
|
|
|
WordSize::FourBytes => Self::BITS32,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-15 05:42:06 +02:00
|
|
|
struct State {
|
2022-02-26 01:40:43 +01:00
|
|
|
ch_wakers: [AtomicWaker; BDMA_CHANNEL_COUNT],
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl State {
|
|
|
|
const fn new() -> Self {
|
|
|
|
const AW: AtomicWaker = AtomicWaker::new();
|
|
|
|
Self {
|
2022-02-26 01:40:43 +01:00
|
|
|
ch_wakers: [AW; BDMA_CHANNEL_COUNT],
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static STATE: State = State::new();
|
|
|
|
|
|
|
|
/// safety: must be called only once
|
2022-11-23 10:11:19 +01:00
|
|
|
pub(crate) unsafe fn init(irq_priority: Priority) {
|
2022-02-26 01:40:43 +01:00
|
|
|
foreach_interrupt! {
|
2021-07-27 19:23:33 +02:00
|
|
|
($peri:ident, bdma, $block:ident, $signal_name:ident, $irq:ident) => {
|
2022-11-23 10:11:19 +01:00
|
|
|
let irq = crate::interrupt::$irq::steal();
|
|
|
|
irq.set_priority(irq_priority);
|
|
|
|
irq.enable();
|
2021-07-15 05:42:06 +02:00
|
|
|
};
|
|
|
|
}
|
2022-03-04 17:42:38 +01:00
|
|
|
crate::_generated::init_bdma();
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
|
|
|
|
2022-02-26 01:40:43 +01:00
|
|
|
foreach_dma_channel! {
|
|
|
|
($channel_peri:ident, BDMA1, bdma, $channel_num:expr, $index:expr, $dmamux:tt) => {
|
2022-02-24 05:59:42 +01:00
|
|
|
// BDMA1 in H7 doesn't use DMAMUX, which breaks
|
|
|
|
};
|
2022-02-26 01:40:43 +01:00
|
|
|
($channel_peri:ident, $dma_peri:ident, bdma, $channel_num:expr, $index:expr, $dmamux:tt) => {
|
2021-11-19 19:15:55 +01:00
|
|
|
impl crate::dma::sealed::Channel for crate::peripherals::$channel_peri {
|
|
|
|
|
2022-03-16 18:41:34 +01:00
|
|
|
unsafe fn start_write<W: Word>(&mut self, _request: Request, buf: *const[W], reg_addr: *mut W, options: TransferOptions) {
|
2022-01-19 15:59:25 +01:00
|
|
|
let (ptr, len) = super::slice_ptr_parts(buf);
|
2021-11-19 19:15:55 +01:00
|
|
|
low_level_api::start_transfer(
|
2021-12-08 03:30:07 +01:00
|
|
|
pac::$dma_peri,
|
2021-11-19 19:15:55 +01:00
|
|
|
$channel_num,
|
|
|
|
#[cfg(any(bdma_v2, dmamux))]
|
2022-02-26 01:40:43 +01:00
|
|
|
_request,
|
2021-11-19 19:15:55 +01:00
|
|
|
vals::Dir::FROMMEMORY,
|
|
|
|
reg_addr as *const u32,
|
2022-01-19 15:59:25 +01:00
|
|
|
ptr as *mut u32,
|
|
|
|
len,
|
2021-11-19 19:15:55 +01:00
|
|
|
true,
|
|
|
|
vals::Size::from(W::bits()),
|
2022-03-16 18:41:34 +01:00
|
|
|
options,
|
2021-11-19 19:15:55 +01:00
|
|
|
#[cfg(dmamux)]
|
|
|
|
<Self as super::dmamux::sealed::MuxChannel>::DMAMUX_REGS,
|
|
|
|
#[cfg(dmamux)]
|
|
|
|
<Self as super::dmamux::sealed::MuxChannel>::DMAMUX_CH_NUM,
|
|
|
|
);
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
|
|
|
|
2022-12-23 09:32:18 +01:00
|
|
|
unsafe fn start_write_repeated<W: Word>(&mut self, _request: Request, repeated: &[W; 1], count: usize, reg_addr: *mut W, options: TransferOptions) {
|
2021-11-19 19:15:55 +01:00
|
|
|
low_level_api::start_transfer(
|
2021-12-08 03:30:07 +01:00
|
|
|
pac::$dma_peri,
|
2021-11-19 19:15:55 +01:00
|
|
|
$channel_num,
|
|
|
|
#[cfg(any(bdma_v2, dmamux))]
|
2022-02-26 01:40:43 +01:00
|
|
|
_request,
|
2021-11-19 19:15:55 +01:00
|
|
|
vals::Dir::FROMMEMORY,
|
|
|
|
reg_addr as *const u32,
|
2022-12-23 09:32:18 +01:00
|
|
|
repeated.as_ptr() as *mut u32,
|
2021-11-19 19:15:55 +01:00
|
|
|
count,
|
|
|
|
false,
|
|
|
|
vals::Size::from(W::bits()),
|
2022-03-16 18:41:34 +01:00
|
|
|
options,
|
2021-11-19 19:15:55 +01:00
|
|
|
#[cfg(dmamux)]
|
|
|
|
<Self as super::dmamux::sealed::MuxChannel>::DMAMUX_REGS,
|
|
|
|
#[cfg(dmamux)]
|
|
|
|
<Self as super::dmamux::sealed::MuxChannel>::DMAMUX_CH_NUM,
|
|
|
|
)
|
2021-07-20 21:20:16 +02:00
|
|
|
}
|
|
|
|
|
2022-03-16 18:41:34 +01:00
|
|
|
unsafe fn start_read<W: Word>(&mut self, _request: Request, reg_addr: *const W, buf: *mut [W], options: TransferOptions) {
|
2022-01-19 15:59:25 +01:00
|
|
|
let (ptr, len) = super::slice_ptr_parts_mut(buf);
|
2021-11-19 19:15:55 +01:00
|
|
|
low_level_api::start_transfer(
|
2021-12-08 03:30:07 +01:00
|
|
|
pac::$dma_peri,
|
2021-11-19 19:15:55 +01:00
|
|
|
$channel_num,
|
|
|
|
#[cfg(any(bdma_v2, dmamux))]
|
2022-02-26 01:40:43 +01:00
|
|
|
_request,
|
2021-11-19 19:15:55 +01:00
|
|
|
vals::Dir::FROMPERIPHERAL,
|
|
|
|
reg_addr as *const u32,
|
2022-01-19 15:59:25 +01:00
|
|
|
ptr as *mut u32,
|
|
|
|
len,
|
2021-11-19 19:15:55 +01:00
|
|
|
true,
|
|
|
|
vals::Size::from(W::bits()),
|
2022-03-16 18:41:34 +01:00
|
|
|
options,
|
2021-11-19 19:15:55 +01:00
|
|
|
#[cfg(dmamux)]
|
|
|
|
<Self as super::dmamux::sealed::MuxChannel>::DMAMUX_REGS,
|
|
|
|
#[cfg(dmamux)]
|
|
|
|
<Self as super::dmamux::sealed::MuxChannel>::DMAMUX_CH_NUM,
|
|
|
|
);
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
2021-11-19 19:15:55 +01:00
|
|
|
|
2022-04-12 14:06:53 +02:00
|
|
|
unsafe fn start_double_buffered_read<W: super::Word>(
|
|
|
|
&mut self,
|
|
|
|
_request: Request,
|
|
|
|
_reg_addr: *const W,
|
|
|
|
_buffer0: *mut W,
|
|
|
|
_buffer1: *mut W,
|
|
|
|
_buffer_len: usize,
|
|
|
|
_options: TransferOptions,
|
|
|
|
) {
|
|
|
|
panic!("Unsafe double buffered mode is unavailable on BDMA");
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn set_buffer0<W: super::Word>(&mut self, _buffer: *mut W) {
|
|
|
|
panic!("Unsafe double buffered mode is unavailable on BDMA");
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn set_buffer1<W: super::Word>(&mut self, _buffer: *mut W) {
|
|
|
|
panic!("Unsafe double buffered mode is unavailable on BDMA");
|
|
|
|
}
|
|
|
|
|
|
|
|
unsafe fn is_buffer0_accessible(&mut self) -> bool {
|
|
|
|
panic!("Unsafe double buffered mode is unavailable on BDMA");
|
|
|
|
}
|
|
|
|
|
2021-11-19 19:15:55 +01:00
|
|
|
fn request_stop(&mut self){
|
2021-12-08 03:30:07 +01:00
|
|
|
unsafe {low_level_api::request_stop(pac::$dma_peri, $channel_num);}
|
2021-09-29 04:33:40 +02:00
|
|
|
}
|
2021-11-19 19:15:55 +01:00
|
|
|
|
2021-12-08 01:51:39 +01:00
|
|
|
fn is_running(&self) -> bool {
|
2021-12-08 03:30:07 +01:00
|
|
|
unsafe {low_level_api::is_running(pac::$dma_peri, $channel_num)}
|
2021-09-29 04:33:40 +02:00
|
|
|
}
|
2021-11-19 19:15:55 +01:00
|
|
|
fn remaining_transfers(&mut self) -> u16 {
|
2021-12-08 03:30:07 +01:00
|
|
|
unsafe {low_level_api::get_remaining_transfers(pac::$dma_peri, $channel_num)}
|
2021-09-29 04:33:40 +02:00
|
|
|
}
|
2021-11-19 19:15:55 +01:00
|
|
|
|
|
|
|
fn set_waker(&mut self, waker: &Waker) {
|
2022-02-26 01:40:43 +01:00
|
|
|
unsafe { low_level_api::set_waker($index, waker) }
|
2021-09-29 04:33:40 +02:00
|
|
|
}
|
2022-03-08 20:52:33 +01:00
|
|
|
|
|
|
|
fn on_irq() {
|
|
|
|
unsafe {
|
|
|
|
low_level_api::on_irq_inner(pac::$dma_peri, $channel_num, $index);
|
|
|
|
}
|
|
|
|
}
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
2021-11-19 19:15:55 +01:00
|
|
|
|
|
|
|
impl crate::dma::Channel for crate::peripherals::$channel_peri {}
|
2021-07-15 05:42:06 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-11-19 19:15:55 +01:00
|
|
|
mod low_level_api {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
pub unsafe fn start_transfer(
|
|
|
|
dma: pac::bdma::Dma,
|
|
|
|
channel_number: u8,
|
|
|
|
#[cfg(any(bdma_v2, dmamux))] request: Request,
|
|
|
|
dir: vals::Dir,
|
|
|
|
peri_addr: *const u32,
|
|
|
|
mem_addr: *mut u32,
|
|
|
|
mem_len: usize,
|
|
|
|
incr_mem: bool,
|
|
|
|
data_size: vals::Size,
|
2022-03-16 18:41:34 +01:00
|
|
|
options: TransferOptions,
|
2021-11-19 19:15:55 +01:00
|
|
|
#[cfg(dmamux)] dmamux_regs: pac::dmamux::Dmamux,
|
|
|
|
#[cfg(dmamux)] dmamux_ch_num: u8,
|
|
|
|
) {
|
2022-06-12 22:15:44 +02:00
|
|
|
assert!(options.mburst == crate::dma::Burst::Single, "Burst mode not supported");
|
|
|
|
assert!(options.pburst == crate::dma::Burst::Single, "Burst mode not supported");
|
2022-03-16 18:41:34 +01:00
|
|
|
assert!(
|
|
|
|
options.flow_ctrl == crate::dma::FlowControl::Dma,
|
|
|
|
"Peripheral flow control not supported"
|
|
|
|
);
|
|
|
|
|
2021-11-19 19:15:55 +01:00
|
|
|
let ch = dma.ch(channel_number as _);
|
|
|
|
|
2021-12-08 03:30:07 +01:00
|
|
|
reset_status(dma, channel_number);
|
|
|
|
|
2021-11-19 19:15:55 +01:00
|
|
|
#[cfg(dmamux)]
|
|
|
|
super::super::dmamux::configure_dmamux(dmamux_regs, dmamux_ch_num, request);
|
|
|
|
|
|
|
|
#[cfg(bdma_v2)]
|
2022-06-12 22:15:44 +02:00
|
|
|
critical_section::with(|_| dma.cselr().modify(|w| w.set_cs(channel_number as _, request)));
|
2021-11-19 19:15:55 +01:00
|
|
|
|
|
|
|
// "Preceding reads and writes cannot be moved past subsequent writes."
|
|
|
|
fence(Ordering::SeqCst);
|
|
|
|
|
|
|
|
ch.par().write_value(peri_addr as u32);
|
|
|
|
ch.mar().write_value(mem_addr as u32);
|
|
|
|
ch.ndtr().write(|w| w.set_ndt(mem_len as u16));
|
|
|
|
ch.cr().write(|w| {
|
|
|
|
w.set_psize(data_size);
|
|
|
|
w.set_msize(data_size);
|
|
|
|
if incr_mem {
|
|
|
|
w.set_minc(vals::Inc::ENABLED);
|
|
|
|
} else {
|
|
|
|
w.set_minc(vals::Inc::DISABLED);
|
|
|
|
}
|
|
|
|
w.set_dir(dir);
|
|
|
|
w.set_teie(true);
|
|
|
|
w.set_tcie(true);
|
|
|
|
w.set_en(true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn request_stop(dma: pac::bdma::Dma, channel_number: u8) {
|
|
|
|
reset_status(dma, channel_number);
|
|
|
|
|
|
|
|
let ch = dma.ch(channel_number as _);
|
|
|
|
|
|
|
|
// Disable the channel and interrupts with the default value.
|
|
|
|
ch.cr().write(|_| ());
|
|
|
|
|
|
|
|
// "Subsequent reads and writes cannot be moved ahead of preceding reads."
|
|
|
|
fence(Ordering::SeqCst);
|
|
|
|
}
|
|
|
|
|
2021-12-08 01:51:39 +01:00
|
|
|
pub unsafe fn is_running(dma: pac::bdma::Dma, ch: u8) -> bool {
|
2021-11-19 19:15:55 +01:00
|
|
|
let ch = dma.ch(ch as _);
|
|
|
|
ch.cr().read().en()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Gets the total remaining transfers for the channel
|
|
|
|
/// Note: this will be zero for transfers that completed without cancellation.
|
|
|
|
pub unsafe fn get_remaining_transfers(dma: pac::bdma::Dma, ch: u8) -> u16 {
|
|
|
|
// get a handle on the channel itself
|
|
|
|
let ch = dma.ch(ch as _);
|
|
|
|
// read the remaining transfer count. If this is zero, the transfer completed fully.
|
2022-04-12 14:06:53 +02:00
|
|
|
ch.ndtr().read().ndt() as u16
|
2021-11-19 19:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the waker for the specified DMA channel
|
2021-12-08 01:54:31 +01:00
|
|
|
pub unsafe fn set_waker(state_number: usize, waker: &Waker) {
|
|
|
|
STATE.ch_wakers[state_number].register(waker);
|
2021-11-19 19:15:55 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub unsafe fn reset_status(dma: pac::bdma::Dma, channel_number: u8) {
|
|
|
|
dma.ifcr().write(|w| {
|
|
|
|
w.set_tcif(channel_number as _, true);
|
|
|
|
w.set_teif(channel_number as _, true);
|
|
|
|
});
|
|
|
|
}
|
2022-03-08 20:52:33 +01:00
|
|
|
|
|
|
|
/// Safety: Must be called with a matching set of parameters for a valid dma channel
|
|
|
|
pub unsafe fn on_irq_inner(dma: pac::bdma::Dma, channel_num: u8, index: u8) {
|
|
|
|
let channel_num = channel_num as usize;
|
|
|
|
let index = index as usize;
|
|
|
|
|
|
|
|
let isr = dma.isr().read();
|
|
|
|
let cr = dma.ch(channel_num).cr();
|
|
|
|
|
2022-03-09 02:55:08 +01:00
|
|
|
if isr.teif(channel_num) {
|
2022-06-12 22:15:44 +02:00
|
|
|
panic!("DMA: error on BDMA@{:08x} channel {}", dma.0 as u32, channel_num);
|
2022-03-09 02:55:08 +01:00
|
|
|
}
|
2022-03-08 20:52:33 +01:00
|
|
|
if isr.tcif(channel_num) && cr.read().tcie() {
|
|
|
|
cr.write(|_| ()); // Disable channel interrupts with the default value.
|
|
|
|
STATE.ch_wakers[index].wake();
|
|
|
|
}
|
|
|
|
}
|
2021-11-19 19:15:55 +01:00
|
|
|
}
|