embassy/embassy-stm32/src/can/bxcan.rs

154 lines
3.9 KiB
Rust
Raw Normal View History

2021-08-06 00:08:24 +02:00
use core::marker::PhantomData;
use core::ops::{Deref, DerefMut};
use embassy::util::Unborrow;
use embassy_hal_common::unborrow;
use crate::gpio::{
sealed::AFType::{OutputOpenDrain, OutputPushPull},
Pin,
};
2021-08-06 00:08:24 +02:00
use crate::{peripherals, rcc::RccPeripheral};
pub use bxcan::*;
pub struct Can<'d, T: Instance + bxcan::Instance> {
phantom: PhantomData<&'d mut T>,
can: bxcan::Can<T>,
}
impl<'d, T: Instance + bxcan::Instance> Can<'d, T> {
pub fn new(
peri: impl Unborrow<Target = T> + 'd,
rx: impl Unborrow<Target = impl RxPin<T>> + 'd,
tx: impl Unborrow<Target = impl TxPin<T>> + 'd,
) -> Self {
unborrow!(peri, rx, tx);
unsafe {
rx.set_as_af(rx.af_num(), OutputOpenDrain);
tx.set_as_af(tx.af_num(), OutputPushPull);
2021-08-06 00:08:24 +02:00
}
2021-08-06 10:37:32 +02:00
T::enable();
T::reset();
2021-08-06 00:08:24 +02:00
Self {
phantom: PhantomData,
can: bxcan::Can::builder(peri).enable(),
2021-08-06 00:08:24 +02:00
}
}
}
2021-08-06 10:37:32 +02:00
impl<'d, T: Instance + bxcan::Instance> Drop for Can<'d, T> {
fn drop(&mut self) {
// Cannot call `free()` because it moves the instance.
// Manually reset the peripheral.
unsafe {
T::regs().mcr().write(|w| w.set_reset(true));
}
T::disable();
}
}
2021-08-06 00:08:24 +02:00
impl<'d, T: Instance + bxcan::Instance> Deref for Can<'d, T> {
type Target = bxcan::Can<T>;
fn deref(&self) -> &Self::Target {
&self.can
}
}
impl<'d, T: Instance + bxcan::Instance> DerefMut for Can<'d, T> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.can
}
}
pub(crate) mod sealed {
use super::*;
2021-08-06 10:37:32 +02:00
pub trait Instance {
fn regs() -> &'static crate::pac::can::Can;
2021-08-06 10:37:32 +02:00
}
2021-08-06 00:08:24 +02:00
pub trait RxPin<T: Instance>: Pin {
fn af_num(&self) -> u8;
}
pub trait TxPin<T: Instance>: Pin {
fn af_num(&self) -> u8;
}
}
pub trait Instance: sealed::Instance + RccPeripheral {}
pub trait RxPin<T: Instance>: sealed::RxPin<T> {}
pub trait TxPin<T: Instance>: sealed::TxPin<T> {}
crate::pac::peripherals!(
(can, $inst:ident) => {
2021-08-06 10:37:32 +02:00
impl sealed::Instance for peripherals::$inst {
fn regs() -> &'static crate::pac::can::Can {
2021-08-06 10:37:32 +02:00
&crate::pac::$inst
}
}
2021-08-06 00:08:24 +02:00
impl Instance for peripherals::$inst {}
unsafe impl bxcan::Instance for peripherals::$inst {
const REGISTERS: *mut bxcan::RegisterBlock = crate::pac::$inst.0 as *mut _;
}
};
);
crate::pac::peripherals!(
(can, CAN) => {
unsafe impl bxcan::FilterOwner for peripherals::CAN {
2021-08-06 00:08:24 +02:00
const NUM_FILTER_BANKS: u8 = 14;
}
};
// Only correct when CAN2 also exists… Fix on yaml level?
// There are only 14 filter banks when CAN2 is not available.
(can, CAN1) => {
2021-08-06 00:08:24 +02:00
unsafe impl bxcan::FilterOwner for peripherals::CAN1 {
const NUM_FILTER_BANKS: u8 = 28;
2021-08-06 00:08:24 +02:00
}
};
(can, CAN2) => {
// CAN2 is always a slave instance where CAN1 is the master instance
2021-08-06 00:08:24 +02:00
unsafe impl bxcan::MasterInstance for peripherals::CAN1 {}
};
(can, CAN3) => {
2021-10-19 15:36:41 +02:00
unsafe impl bxcan::FilterOwner for peripherals::CAN3 {
const NUM_FILTER_BANKS: u8 = 14;
}
};
2021-08-06 00:08:24 +02:00
);
macro_rules! impl_pin {
($inst:ident, $pin:ident, $signal:ident, $af:expr) => {
impl $signal<peripherals::$inst> for peripherals::$pin {}
impl sealed::$signal<peripherals::$inst> for peripherals::$pin {
fn af_num(&self) -> u8 {
$af
}
}
};
}
crate::pac::peripheral_pins!(
($inst:ident, can, CAN, $pin:ident, TX, $af:expr) => {
2021-08-06 00:08:24 +02:00
impl_pin!($inst, $pin, TxPin, $af);
};
($inst:ident, can, CAN, $pin:ident, RX, $af:expr) => {
2021-08-06 00:08:24 +02:00
impl_pin!($inst, $pin, RxPin, $af);
};
($inst:ident, can, CAN, $pin:ident, TX) => {
impl_pin!($inst, $pin, TxPin, 0);
};
($inst:ident, can, CAN, $pin:ident, RX) => {
impl_pin!($inst, $pin, RxPin, 0);
};
2021-08-06 00:08:24 +02:00
);