embassy/embassy-stm32/src/dma/mod.rs

73 lines
1.5 KiB
Rust
Raw Normal View History

2021-07-15 05:42:06 +02:00
#[cfg(dma)]
pub(crate) mod dma;
2023-04-17 00:04:54 +02:00
#[cfg(dma)]
pub use dma::*;
// stm32h7 has both dma and bdma. In that case, we export dma as "main" dma,
// and bdma as "secondary", under `embassy_stm32::dma::bdma`.
#[cfg(all(bdma, dma))]
pub mod bdma;
#[cfg(all(bdma, not(dma)))]
pub(crate) mod bdma;
#[cfg(all(bdma, not(dma)))]
pub use bdma::*;
#[cfg(gpdma)]
pub(crate) mod gpdma;
#[cfg(gpdma)]
pub use gpdma::*;
2021-07-15 05:42:06 +02:00
#[cfg(dmamux)]
mod dmamux;
2021-05-16 02:57:46 +02:00
pub(crate) mod ringbuffer;
pub mod word;
use core::mem;
2022-06-12 22:15:44 +02:00
use embassy_hal_internal::impl_peripheral;
#[cfg(dmamux)]
pub use self::dmamux::*;
use crate::interrupt::Priority;
2021-11-19 19:15:55 +01:00
2023-04-17 00:04:54 +02:00
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
enum Dir {
MemoryToPeripheral,
PeripheralToMemory,
2021-07-15 05:42:06 +02:00
}
pub struct NoDma;
impl_peripheral!(NoDma);
2021-07-15 05:42:06 +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 { mem::transmute(slice) }
}
#[allow(unused)]
pub(crate) fn slice_ptr_parts_mut<T>(slice: *mut [T]) -> (usize, usize) {
unsafe { mem::transmute(slice) }
}
2023-04-17 00:04:54 +02:00
// safety: must be called only once at startup
pub(crate) unsafe fn init(
cs: critical_section::CriticalSection,
2023-04-17 00:04:54 +02:00
#[cfg(bdma)] bdma_priority: Priority,
#[cfg(dma)] dma_priority: Priority,
#[cfg(gpdma)] gpdma_priority: Priority,
) {
#[cfg(bdma)]
bdma::init(cs, bdma_priority);
2023-04-17 00:04:54 +02:00
#[cfg(dma)]
dma::init(cs, dma_priority);
2023-04-17 00:04:54 +02:00
#[cfg(gpdma)]
gpdma::init(cs, gpdma_priority);
2023-04-17 00:04:54 +02:00
#[cfg(dmamux)]
dmamux::init(cs);
2023-04-17 00:04:54 +02:00
}