484 lines
16 KiB
Rust
484 lines
16 KiB
Rust
use core::marker::PhantomData;
|
|
use core::task::Poll;
|
|
|
|
use embassy::interrupt::{Interrupt, InterruptExt};
|
|
use embassy::util::Unborrow;
|
|
use embassy::waitqueue::AtomicWaker;
|
|
use embassy_hal_common::unborrow;
|
|
use futures::future::poll_fn;
|
|
|
|
use crate::gpio::{sealed::AFType, Speed};
|
|
|
|
/// The level on the VSync pin when the data is not valid on the parallel interface.
|
|
#[derive(Clone, Copy, PartialEq)]
|
|
pub enum VSyncDataInvalidLevel {
|
|
Low,
|
|
High,
|
|
}
|
|
|
|
/// The level on the VSync pin when the data is not valid on the parallel interface.
|
|
#[derive(Clone, Copy, PartialEq)]
|
|
pub enum HSyncDataInvalidLevel {
|
|
Low,
|
|
High,
|
|
}
|
|
|
|
#[derive(Clone, Copy, PartialEq)]
|
|
pub enum PixelClockPolarity {
|
|
RisingEdge,
|
|
FallingEdge,
|
|
}
|
|
|
|
pub struct State {
|
|
waker: AtomicWaker,
|
|
}
|
|
impl State {
|
|
const fn new() -> State {
|
|
State {
|
|
waker: AtomicWaker::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
static STATE: State = State::new();
|
|
|
|
#[derive(Debug, Eq, PartialEq, Copy, Clone)]
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
#[non_exhaustive]
|
|
pub enum Error {
|
|
Overrun,
|
|
PeripheralError,
|
|
}
|
|
|
|
#[non_exhaustive]
|
|
pub struct Config {
|
|
pub vsync_level: VSyncDataInvalidLevel,
|
|
pub hsync_level: HSyncDataInvalidLevel,
|
|
pub pixclk_polarity: PixelClockPolarity,
|
|
}
|
|
|
|
impl Default for Config {
|
|
fn default() -> Self {
|
|
Self {
|
|
vsync_level: VSyncDataInvalidLevel::High,
|
|
hsync_level: HSyncDataInvalidLevel::Low,
|
|
pixclk_polarity: PixelClockPolarity::RisingEdge,
|
|
}
|
|
}
|
|
}
|
|
|
|
macro_rules! config_pins {
|
|
($($pin:ident),*) => {
|
|
unborrow!($($pin),*);
|
|
// NOTE(unsafe) Exclusive access to the registers
|
|
critical_section::with(|_| unsafe {
|
|
$(
|
|
$pin.set_as_af($pin.af_num(), AFType::Input);
|
|
$pin.set_speed(Speed::VeryHigh);
|
|
)*
|
|
})
|
|
};
|
|
}
|
|
|
|
pub struct Dcmi<'d, T: Instance, Dma: FrameDma<T>> {
|
|
inner: T,
|
|
dma: Dma,
|
|
phantom: PhantomData<&'d mut T>,
|
|
}
|
|
|
|
impl<'d, T, Dma> Dcmi<'d, T, Dma>
|
|
where
|
|
T: Instance,
|
|
Dma: FrameDma<T>,
|
|
{
|
|
pub fn new_8bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
v_sync: impl Unborrow<Target = impl VSyncPin<T>> + 'd,
|
|
h_sync: impl Unborrow<Target = impl HSyncPin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7);
|
|
config_pins!(v_sync, h_sync, pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, false, 0b00)
|
|
}
|
|
|
|
pub fn new_10bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
d8: impl Unborrow<Target = impl D8Pin<T>> + 'd,
|
|
d9: impl Unborrow<Target = impl D9Pin<T>> + 'd,
|
|
v_sync: impl Unborrow<Target = impl VSyncPin<T>> + 'd,
|
|
h_sync: impl Unborrow<Target = impl HSyncPin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7, d8, d9);
|
|
config_pins!(v_sync, h_sync, pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, false, 0b01)
|
|
}
|
|
|
|
pub fn new_12bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
d8: impl Unborrow<Target = impl D8Pin<T>> + 'd,
|
|
d9: impl Unborrow<Target = impl D9Pin<T>> + 'd,
|
|
d10: impl Unborrow<Target = impl D10Pin<T>> + 'd,
|
|
d11: impl Unborrow<Target = impl D11Pin<T>> + 'd,
|
|
v_sync: impl Unborrow<Target = impl VSyncPin<T>> + 'd,
|
|
h_sync: impl Unborrow<Target = impl HSyncPin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10, d11);
|
|
config_pins!(v_sync, h_sync, pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, false, 0b10)
|
|
}
|
|
|
|
pub fn new_14bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
d8: impl Unborrow<Target = impl D8Pin<T>> + 'd,
|
|
d9: impl Unborrow<Target = impl D9Pin<T>> + 'd,
|
|
d10: impl Unborrow<Target = impl D10Pin<T>> + 'd,
|
|
d11: impl Unborrow<Target = impl D11Pin<T>> + 'd,
|
|
d12: impl Unborrow<Target = impl D12Pin<T>> + 'd,
|
|
d13: impl Unborrow<Target = impl D13Pin<T>> + 'd,
|
|
v_sync: impl Unborrow<Target = impl VSyncPin<T>> + 'd,
|
|
h_sync: impl Unborrow<Target = impl HSyncPin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10, d11, d12, d13);
|
|
config_pins!(v_sync, h_sync, pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, false, 0b11)
|
|
}
|
|
|
|
pub fn new_es_8bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7);
|
|
config_pins!(pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, true, 0b00)
|
|
}
|
|
|
|
pub fn new_es_10bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
d8: impl Unborrow<Target = impl D8Pin<T>> + 'd,
|
|
d9: impl Unborrow<Target = impl D9Pin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7, d8, d9);
|
|
config_pins!(pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, true, 0b01)
|
|
}
|
|
|
|
pub fn new_es_12bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
d8: impl Unborrow<Target = impl D8Pin<T>> + 'd,
|
|
d9: impl Unborrow<Target = impl D9Pin<T>> + 'd,
|
|
d10: impl Unborrow<Target = impl D10Pin<T>> + 'd,
|
|
d11: impl Unborrow<Target = impl D11Pin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10, d11);
|
|
config_pins!(pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, true, 0b10)
|
|
}
|
|
|
|
pub fn new_es_14bit(
|
|
peri: impl Unborrow<Target = T> + 'd,
|
|
dma: impl Unborrow<Target = Dma> + 'd,
|
|
irq: impl Unborrow<Target = T::Interrupt> + 'd,
|
|
d0: impl Unborrow<Target = impl D0Pin<T>> + 'd,
|
|
d1: impl Unborrow<Target = impl D1Pin<T>> + 'd,
|
|
d2: impl Unborrow<Target = impl D2Pin<T>> + 'd,
|
|
d3: impl Unborrow<Target = impl D3Pin<T>> + 'd,
|
|
d4: impl Unborrow<Target = impl D4Pin<T>> + 'd,
|
|
d5: impl Unborrow<Target = impl D5Pin<T>> + 'd,
|
|
d6: impl Unborrow<Target = impl D6Pin<T>> + 'd,
|
|
d7: impl Unborrow<Target = impl D7Pin<T>> + 'd,
|
|
d8: impl Unborrow<Target = impl D8Pin<T>> + 'd,
|
|
d9: impl Unborrow<Target = impl D9Pin<T>> + 'd,
|
|
d10: impl Unborrow<Target = impl D10Pin<T>> + 'd,
|
|
d11: impl Unborrow<Target = impl D11Pin<T>> + 'd,
|
|
d12: impl Unborrow<Target = impl D12Pin<T>> + 'd,
|
|
d13: impl Unborrow<Target = impl D13Pin<T>> + 'd,
|
|
pixclk: impl Unborrow<Target = impl PixClkPin<T>> + 'd,
|
|
config: Config,
|
|
) -> Self {
|
|
unborrow!(peri, dma, irq);
|
|
config_pins!(d0, d1, d2, d3, d4, d5, d6, d7, d8, d9, d10, d11, d12, d13);
|
|
config_pins!(pixclk);
|
|
|
|
Self::new_inner(peri, dma, irq, config, true, 0b11)
|
|
}
|
|
|
|
fn new_inner(
|
|
peri: T,
|
|
dma: Dma,
|
|
irq: T::Interrupt,
|
|
config: Config,
|
|
use_embedded_synchronization: bool,
|
|
edm: u8,
|
|
) -> Self {
|
|
T::reset();
|
|
T::enable();
|
|
|
|
unsafe {
|
|
peri.regs().cr().modify(|r| {
|
|
r.set_cm(true); // disable continuous mode (snapshot mode)
|
|
r.set_ess(use_embedded_synchronization);
|
|
r.set_pckpol(config.pixclk_polarity == PixelClockPolarity::RisingEdge);
|
|
r.set_vspol(config.vsync_level == VSyncDataInvalidLevel::High);
|
|
r.set_hspol(config.hsync_level == HSyncDataInvalidLevel::High);
|
|
r.set_fcrc(0x00); // capture every frame
|
|
r.set_edm(edm); // extended data mode
|
|
});
|
|
}
|
|
|
|
irq.set_handler(Self::on_interrupt);
|
|
irq.unpend();
|
|
irq.enable();
|
|
|
|
Self {
|
|
inner: peri,
|
|
dma,
|
|
phantom: PhantomData,
|
|
}
|
|
}
|
|
|
|
unsafe fn on_interrupt(_: *mut ()) {
|
|
let ris = crate::pac::DCMI.ris().read();
|
|
if ris.err_ris() {
|
|
trace!("DCMI IRQ: Error.");
|
|
crate::pac::DCMI.ier().modify(|ier| ier.set_err_ie(false));
|
|
}
|
|
if ris.ovr_ris() {
|
|
trace!("DCMI IRQ: Overrun.");
|
|
crate::pac::DCMI.ier().modify(|ier| ier.set_ovr_ie(false));
|
|
}
|
|
if ris.frame_ris() {
|
|
trace!("DCMI IRQ: Frame captured.");
|
|
crate::pac::DCMI.ier().modify(|ier| ier.set_frame_ie(false));
|
|
}
|
|
STATE.waker.wake();
|
|
}
|
|
|
|
unsafe fn toggle(enable: bool) {
|
|
crate::pac::DCMI.cr().modify(|r| {
|
|
r.set_enable(enable);
|
|
r.set_capture(enable);
|
|
})
|
|
}
|
|
|
|
fn enable_irqs() {
|
|
unsafe {
|
|
crate::pac::DCMI.ier().modify(|r| {
|
|
r.set_err_ie(true);
|
|
r.set_ovr_ie(true);
|
|
r.set_frame_ie(true);
|
|
});
|
|
}
|
|
}
|
|
|
|
fn clear_interrupt_flags() {
|
|
unsafe {
|
|
crate::pac::DCMI.icr().write(|r| {
|
|
r.set_ovr_isc(true);
|
|
r.set_err_isc(true);
|
|
r.set_frame_isc(true);
|
|
})
|
|
}
|
|
}
|
|
|
|
/// This method starts the capture and finishes when both the dma transfer and DCMI finish the frame transfer.
|
|
/// The implication is that the input buffer size must be exactly the size of the captured frame.
|
|
pub async fn capture(&mut self, buffer: &mut [u32]) -> Result<(), Error> {
|
|
let channel = &mut self.dma;
|
|
let request = channel.request();
|
|
|
|
let r = self.inner.regs();
|
|
let src = r.dr().ptr() as *mut u32;
|
|
let dma_read = crate::dma::read(channel, request, src, buffer);
|
|
|
|
Self::clear_interrupt_flags();
|
|
Self::enable_irqs();
|
|
|
|
unsafe { Self::toggle(true) };
|
|
|
|
let result = poll_fn(|cx| {
|
|
STATE.waker.register(cx.waker());
|
|
|
|
let ris = unsafe { crate::pac::DCMI.ris().read() };
|
|
if ris.err_ris() {
|
|
unsafe {
|
|
crate::pac::DCMI.icr().write(|r| {
|
|
r.set_err_isc(true);
|
|
})
|
|
};
|
|
Poll::Ready(Err(Error::PeripheralError))
|
|
} else if ris.ovr_ris() {
|
|
unsafe {
|
|
crate::pac::DCMI.icr().write(|r| {
|
|
r.set_ovr_isc(true);
|
|
})
|
|
};
|
|
Poll::Ready(Err(Error::Overrun))
|
|
} else if ris.frame_ris() {
|
|
unsafe {
|
|
crate::pac::DCMI.icr().write(|r| {
|
|
r.set_frame_isc(true);
|
|
})
|
|
};
|
|
Poll::Ready(Ok(()))
|
|
} else {
|
|
Poll::Pending
|
|
}
|
|
});
|
|
|
|
let (_, result) = futures::future::join(dma_read, result).await;
|
|
|
|
unsafe { Self::toggle(false) };
|
|
|
|
result
|
|
}
|
|
}
|
|
|
|
mod sealed {
|
|
pub trait Instance: crate::rcc::RccPeripheral {
|
|
fn regs(&self) -> crate::pac::dcmi::Dcmi;
|
|
}
|
|
}
|
|
|
|
pub trait Instance: sealed::Instance + 'static {
|
|
type Interrupt: Interrupt;
|
|
}
|
|
|
|
pin_trait!(D0Pin, Instance);
|
|
pin_trait!(D1Pin, Instance);
|
|
pin_trait!(D2Pin, Instance);
|
|
pin_trait!(D3Pin, Instance);
|
|
pin_trait!(D4Pin, Instance);
|
|
pin_trait!(D5Pin, Instance);
|
|
pin_trait!(D6Pin, Instance);
|
|
pin_trait!(D7Pin, Instance);
|
|
pin_trait!(D8Pin, Instance);
|
|
pin_trait!(D9Pin, Instance);
|
|
pin_trait!(D10Pin, Instance);
|
|
pin_trait!(D11Pin, Instance);
|
|
pin_trait!(D12Pin, Instance);
|
|
pin_trait!(D13Pin, Instance);
|
|
pin_trait!(HSyncPin, Instance);
|
|
pin_trait!(VSyncPin, Instance);
|
|
pin_trait!(PixClkPin, Instance);
|
|
|
|
// allow unused as U5 sources do not contain interrupt nor dma data
|
|
#[allow(unused)]
|
|
macro_rules! impl_peripheral {
|
|
($inst:ident, $irq:ident) => {
|
|
impl sealed::Instance for crate::peripherals::$inst {
|
|
fn regs(&self) -> crate::pac::dcmi::Dcmi {
|
|
crate::pac::$inst
|
|
}
|
|
}
|
|
|
|
impl Instance for crate::peripherals::$inst {
|
|
type Interrupt = crate::interrupt::$irq;
|
|
}
|
|
};
|
|
}
|
|
|
|
foreach_interrupt! {
|
|
($inst:ident, dcmi, $block:ident, GLOBAL, $irq:ident) => {
|
|
impl_peripheral!($inst, $irq);
|
|
};
|
|
}
|
|
|
|
dma_trait!(FrameDma, Instance);
|