2021-07-15 05:42:06 +02:00
|
|
|
#![macro_use]
|
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
use crate::{pac, peripherals};
|
2021-07-15 05:42:06 +02:00
|
|
|
|
2022-06-12 22:15:44 +02:00
|
|
|
pub(crate) unsafe fn configure_dmamux(dmamux_regs: pac::dmamux::Dmamux, dmamux_ch_num: u8, request: u8) {
|
2021-07-15 05:42:06 +02:00
|
|
|
let ch_mux_regs = dmamux_regs.ccr(dmamux_ch_num as _);
|
|
|
|
ch_mux_regs.write(|reg| {
|
|
|
|
reg.set_nbreq(0);
|
|
|
|
reg.set_dmareq_id(request);
|
|
|
|
});
|
|
|
|
|
|
|
|
ch_mux_regs.modify(|reg| {
|
|
|
|
reg.set_ege(true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-17 07:49:49 +02:00
|
|
|
pub(crate) mod sealed {
|
|
|
|
use super::*;
|
|
|
|
pub trait MuxChannel {
|
|
|
|
const DMAMUX_CH_NUM: u8;
|
|
|
|
const DMAMUX_REGS: pac::dmamux::Dmamux;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct DMAMUX1;
|
2022-02-24 05:59:42 +01:00
|
|
|
#[cfg(stm32h7)]
|
2021-07-17 07:49:49 +02:00
|
|
|
pub struct DMAMUX2;
|
|
|
|
|
|
|
|
pub trait MuxChannel: sealed::MuxChannel + super::Channel {
|
|
|
|
type Mux;
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
|
|
|
|
2022-02-26 01:40:43 +01:00
|
|
|
foreach_dma_channel! {
|
|
|
|
($channel_peri:ident, $dma_peri:ident, $version:ident, $channel_num:expr, $index:expr, {dmamux: $dmamux:ident, dmamux_channel: $dmamux_channel:expr}) => {
|
2021-07-17 07:49:49 +02:00
|
|
|
impl sealed::MuxChannel for peripherals::$channel_peri {
|
2021-07-17 07:35:59 +02:00
|
|
|
const DMAMUX_CH_NUM: u8 = $dmamux_channel;
|
|
|
|
const DMAMUX_REGS: pac::dmamux::Dmamux = pac::$dmamux;
|
2021-07-15 05:42:06 +02:00
|
|
|
}
|
2021-07-17 07:49:49 +02:00
|
|
|
impl MuxChannel for peripherals::$channel_peri {
|
|
|
|
type Mux = $dmamux;
|
|
|
|
}
|
2021-07-15 05:42:06 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/// safety: must be called only once
|
2021-10-26 20:01:39 +02:00
|
|
|
pub(crate) unsafe fn init() {
|
2022-03-04 17:42:38 +01:00
|
|
|
crate::_generated::init_dmamux();
|
2021-10-26 20:01:39 +02:00
|
|
|
}
|