36d3eda2f9
Moving `new_*` to the version-specific mod allows doing the correct register writes right there in `new`, without needing abstractions like `enable_all`/`disable_all`.
75 lines
2.1 KiB
Rust
75 lines
2.1 KiB
Rust
use core::marker::PhantomData;
|
|
|
|
use embassy::util::Unborrow;
|
|
use embassy_hal_common::unborrow;
|
|
|
|
use super::{Channel, ConfigurableChannel, Event, Ppi, Task};
|
|
|
|
const DPPI_ENABLE_BIT: u32 = 0x8000_0000;
|
|
const DPPI_CHANNEL_MASK: u32 = 0x0000_00FF;
|
|
|
|
impl<'d, C: ConfigurableChannel> Ppi<'d, C, 1, 1> {
|
|
pub fn new_one_to_one(ch: impl Unborrow<Target = C> + 'd, event: Event, task: Task) -> Self {
|
|
Ppi::new_many_to_many(ch, [event], [task])
|
|
}
|
|
}
|
|
|
|
impl<'d, C: ConfigurableChannel> Ppi<'d, C, 1, 2> {
|
|
pub fn new_one_to_two(
|
|
ch: impl Unborrow<Target = C> + 'd,
|
|
event: Event,
|
|
task1: Task,
|
|
task2: Task,
|
|
) -> Self {
|
|
Ppi::new_many_to_many(ch, [event], [task1, task2])
|
|
}
|
|
}
|
|
|
|
impl<'d, C: ConfigurableChannel, const EVENT_COUNT: usize, const TASK_COUNT: usize>
|
|
Ppi<'d, C, EVENT_COUNT, TASK_COUNT>
|
|
{
|
|
pub fn new_many_to_many(
|
|
ch: impl Unborrow<Target = C> + 'd,
|
|
events: [Event; EVENT_COUNT],
|
|
tasks: [Task; TASK_COUNT],
|
|
) -> Self {
|
|
unborrow!(ch);
|
|
|
|
let val = DPPI_ENABLE_BIT | (ch.number() as u32 & DPPI_CHANNEL_MASK);
|
|
for task in tasks {
|
|
if unsafe { task.subscribe_reg().read_volatile() } != 0 {
|
|
panic!("Task is already in use");
|
|
}
|
|
unsafe { task.subscribe_reg().write_volatile(val) }
|
|
}
|
|
for event in events {
|
|
if unsafe { event.publish_reg().read_volatile() } != 0 {
|
|
panic!("Event is already in use");
|
|
}
|
|
unsafe { event.publish_reg().write_volatile(val) }
|
|
}
|
|
|
|
Self {
|
|
ch,
|
|
events,
|
|
tasks,
|
|
phantom: PhantomData,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'d, C: Channel, const EVENT_COUNT: usize, const TASK_COUNT: usize> Drop
|
|
for Ppi<'d, C, EVENT_COUNT, TASK_COUNT>
|
|
{
|
|
fn drop(&mut self) {
|
|
self.disable();
|
|
|
|
for task in self.tasks {
|
|
unsafe { task.subscribe_reg().write_volatile(0) }
|
|
}
|
|
for event in self.events {
|
|
unsafe { event.publish_reg().write_volatile(0) }
|
|
}
|
|
}
|
|
}
|