2022-07-27 20:45:46 +00:00
|
|
|
use core::future::Future;
|
|
|
|
use core::marker::PhantomData;
|
|
|
|
use core::pin::Pin as FuturePin;
|
|
|
|
use core::sync::atomic::{compiler_fence, Ordering};
|
|
|
|
use core::task::{Context, Poll};
|
|
|
|
|
2023-05-02 10:52:29 +00:00
|
|
|
use atomic_polyfill::{AtomicU32, AtomicU8};
|
2023-07-28 11:23:22 +00:00
|
|
|
use embassy_hal_internal::{into_ref, Peripheral, PeripheralRef};
|
2022-07-27 20:45:46 +00:00
|
|
|
use embassy_sync::waitqueue::AtomicWaker;
|
2023-05-06 09:36:07 +00:00
|
|
|
use fixed::types::extra::U8;
|
|
|
|
use fixed::FixedU32;
|
2023-05-02 10:52:29 +00:00
|
|
|
use pac::io::vals::Gpio0ctrlFuncsel;
|
2023-05-06 09:36:07 +00:00
|
|
|
use pac::pio::vals::SmExecctrlStatusSel;
|
2023-07-28 16:45:57 +00:00
|
|
|
use pio::{Program, SideSet, Wrap};
|
2022-07-27 20:45:46 +00:00
|
|
|
|
2023-05-02 08:50:06 +00:00
|
|
|
use crate::dma::{Channel, Transfer, Word};
|
2022-07-27 20:45:46 +00:00
|
|
|
use crate::gpio::sealed::Pin as SealedPin;
|
2023-05-05 18:45:02 +00:00
|
|
|
use crate::gpio::{self, AnyPin, Drive, Level, Pull, SlewRate};
|
2023-07-07 02:30:46 +00:00
|
|
|
use crate::interrupt::typelevel::{Binding, Handler, Interrupt};
|
2023-05-02 08:50:06 +00:00
|
|
|
use crate::pac::dma::vals::TreqSel;
|
2023-05-05 17:49:34 +00:00
|
|
|
use crate::relocate::RelocatedProgram;
|
2023-07-07 02:30:46 +00:00
|
|
|
use crate::{pac, peripherals, pio_instr_util, RegExt};
|
2023-04-25 00:27:56 +00:00
|
|
|
|
2023-07-07 02:30:46 +00:00
|
|
|
pub struct Wakers([AtomicWaker; 12]);
|
2023-04-25 00:27:56 +00:00
|
|
|
|
|
|
|
impl Wakers {
|
|
|
|
#[inline(always)]
|
|
|
|
fn fifo_in(&self) -> &[AtomicWaker] {
|
|
|
|
&self.0[0..4]
|
|
|
|
}
|
|
|
|
#[inline(always)]
|
|
|
|
fn fifo_out(&self) -> &[AtomicWaker] {
|
|
|
|
&self.0[4..8]
|
|
|
|
}
|
|
|
|
#[inline(always)]
|
|
|
|
fn irq(&self) -> &[AtomicWaker] {
|
|
|
|
&self.0[8..12]
|
|
|
|
}
|
|
|
|
}
|
2022-07-27 20:45:46 +00:00
|
|
|
|
2023-05-06 09:36:07 +00:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Default, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
#[repr(u8)]
|
2022-07-27 20:45:46 +00:00
|
|
|
pub enum FifoJoin {
|
|
|
|
/// Both TX and RX fifo is enabled
|
2023-05-06 09:36:07 +00:00
|
|
|
#[default]
|
2022-07-27 20:45:46 +00:00
|
|
|
Duplex,
|
|
|
|
/// Rx fifo twice as deep. TX fifo disabled
|
|
|
|
RxOnly,
|
|
|
|
/// Tx fifo twice as deep. RX fifo disabled
|
|
|
|
TxOnly,
|
|
|
|
}
|
|
|
|
|
2023-05-06 09:36:07 +00:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Default, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
#[repr(u8)]
|
2022-07-27 20:45:46 +00:00
|
|
|
pub enum ShiftDirection {
|
2023-05-06 09:36:07 +00:00
|
|
|
#[default]
|
2022-07-27 20:45:46 +00:00
|
|
|
Right = 1,
|
|
|
|
Left = 0,
|
|
|
|
}
|
|
|
|
|
2023-05-05 18:45:02 +00:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
#[repr(u8)]
|
|
|
|
pub enum Direction {
|
|
|
|
In = 0,
|
|
|
|
Out = 1,
|
|
|
|
}
|
|
|
|
|
2023-05-06 09:36:07 +00:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Default, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
#[repr(u8)]
|
|
|
|
pub enum StatusSource {
|
|
|
|
#[default]
|
|
|
|
TxFifoLevel = 0,
|
|
|
|
RxFifoLevel = 1,
|
|
|
|
}
|
|
|
|
|
2022-07-27 20:45:46 +00:00
|
|
|
const RXNEMPTY_MASK: u32 = 1 << 0;
|
|
|
|
const TXNFULL_MASK: u32 = 1 << 4;
|
|
|
|
const SMIRQ_MASK: u32 = 1 << 8;
|
|
|
|
|
2023-07-07 02:30:46 +00:00
|
|
|
pub struct InterruptHandler<PIO: Instance> {
|
|
|
|
_pio: PhantomData<PIO>,
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-07-07 02:30:46 +00:00
|
|
|
impl<PIO: Instance> Handler<PIO::Interrupt> for InterruptHandler<PIO> {
|
|
|
|
unsafe fn on_interrupt() {
|
|
|
|
let ints = PIO::PIO.irqs(0).ints().read().0;
|
|
|
|
for bit in 0..12 {
|
|
|
|
if ints & (1 << bit) != 0 {
|
|
|
|
PIO::wakers().0[bit].wake();
|
|
|
|
}
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-07-07 02:30:46 +00:00
|
|
|
PIO::PIO.irqs(0).inte().write_clear(|m| m.0 = ints);
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-04-25 16:47:51 +00:00
|
|
|
}
|
|
|
|
|
2022-07-27 20:45:46 +00:00
|
|
|
/// Future that waits for TX-FIFO to become writable
|
2023-02-24 19:01:41 +00:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct FifoOutFuture<'a, 'd, PIO: Instance, const SM: usize> {
|
|
|
|
sm_tx: &'a mut StateMachineTx<'d, PIO, SM>,
|
2022-07-27 20:45:46 +00:00
|
|
|
value: u32,
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance, const SM: usize> FifoOutFuture<'a, 'd, PIO, SM> {
|
|
|
|
pub fn new(sm: &'a mut StateMachineTx<'d, PIO, SM>, value: u32) -> Self {
|
2023-05-03 10:49:55 +00:00
|
|
|
FifoOutFuture { sm_tx: sm, value }
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance, const SM: usize> Future for FifoOutFuture<'a, 'd, PIO, SM> {
|
2022-07-27 20:45:46 +00:00
|
|
|
type Output = ();
|
|
|
|
fn poll(self: FuturePin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
//debug!("Poll {},{}", PIO::PIO_NO, SM);
|
|
|
|
let value = self.value;
|
2023-05-03 10:49:55 +00:00
|
|
|
if self.get_mut().sm_tx.try_push(value) {
|
2022-07-27 20:45:46 +00:00
|
|
|
Poll::Ready(())
|
|
|
|
} else {
|
2023-07-07 02:30:46 +00:00
|
|
|
PIO::wakers().fifo_out()[SM].register(cx.waker());
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irqs(0).inte().write_set(|m| {
|
|
|
|
m.0 = TXNFULL_MASK << SM;
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
// debug!("Pending");
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance, const SM: usize> Drop for FifoOutFuture<'a, 'd, PIO, SM> {
|
2022-07-27 20:45:46 +00:00
|
|
|
fn drop(&mut self) {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irqs(0).inte().write_clear(|m| {
|
|
|
|
m.0 = TXNFULL_MASK << SM;
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Future that waits for RX-FIFO to become readable
|
2023-02-24 19:01:41 +00:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct FifoInFuture<'a, 'd, PIO: Instance, const SM: usize> {
|
|
|
|
sm_rx: &'a mut StateMachineRx<'d, PIO, SM>,
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance, const SM: usize> FifoInFuture<'a, 'd, PIO, SM> {
|
|
|
|
pub fn new(sm: &'a mut StateMachineRx<'d, PIO, SM>) -> Self {
|
2023-05-03 10:49:55 +00:00
|
|
|
FifoInFuture { sm_rx: sm }
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance, const SM: usize> Future for FifoInFuture<'a, 'd, PIO, SM> {
|
2022-07-27 20:45:46 +00:00
|
|
|
type Output = u32;
|
|
|
|
fn poll(mut self: FuturePin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
//debug!("Poll {},{}", PIO::PIO_NO, SM);
|
2023-05-03 10:49:55 +00:00
|
|
|
if let Some(v) = self.sm_rx.try_pull() {
|
2022-07-27 20:45:46 +00:00
|
|
|
Poll::Ready(v)
|
|
|
|
} else {
|
2023-07-07 02:30:46 +00:00
|
|
|
PIO::wakers().fifo_in()[SM].register(cx.waker());
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irqs(0).inte().write_set(|m| {
|
|
|
|
m.0 = RXNEMPTY_MASK << SM;
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
//debug!("Pending");
|
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance, const SM: usize> Drop for FifoInFuture<'a, 'd, PIO, SM> {
|
2022-07-27 20:45:46 +00:00
|
|
|
fn drop(&mut self) {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irqs(0).inte().write_clear(|m| {
|
|
|
|
m.0 = RXNEMPTY_MASK << SM;
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Future that waits for IRQ
|
2023-02-24 19:01:41 +00:00
|
|
|
#[must_use = "futures do nothing unless you `.await` or poll them"]
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct IrqFuture<'a, 'd, PIO: Instance> {
|
2023-05-04 09:14:21 +00:00
|
|
|
pio: PhantomData<&'a mut Irq<'d, PIO, 0>>,
|
2022-07-27 20:45:46 +00:00
|
|
|
irq_no: u8,
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance> Future for IrqFuture<'a, 'd, PIO> {
|
2022-07-27 20:45:46 +00:00
|
|
|
type Output = ();
|
|
|
|
fn poll(self: FuturePin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
|
|
|
|
//debug!("Poll {},{}", PIO::PIO_NO, SM);
|
|
|
|
|
|
|
|
// Check if IRQ flag is already set
|
2023-06-15 23:32:18 +00:00
|
|
|
if PIO::PIO.irq().read().0 & (1 << self.irq_no) != 0 {
|
|
|
|
PIO::PIO.irq().write(|m| m.0 = 1 << self.irq_no);
|
2022-07-27 20:45:46 +00:00
|
|
|
return Poll::Ready(());
|
|
|
|
}
|
|
|
|
|
2023-07-07 02:30:46 +00:00
|
|
|
PIO::wakers().irq()[self.irq_no as usize].register(cx.waker());
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irqs(0).inte().write_set(|m| {
|
|
|
|
m.0 = SMIRQ_MASK << self.irq_no;
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
Poll::Pending
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'a, 'd, PIO: Instance> Drop for IrqFuture<'a, 'd, PIO> {
|
2022-07-27 20:45:46 +00:00
|
|
|
fn drop(&mut self) {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irqs(0).inte().write_clear(|m| {
|
|
|
|
m.0 = SMIRQ_MASK << self.irq_no;
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct Pin<'l, PIO: Instance> {
|
2023-05-03 06:46:08 +00:00
|
|
|
pin: PeripheralRef<'l, AnyPin>,
|
2022-07-27 20:45:46 +00:00
|
|
|
pio: PhantomData<PIO>,
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'l, PIO: Instance> Pin<'l, PIO> {
|
2022-07-27 20:45:46 +00:00
|
|
|
/// Set the pin's drive strength.
|
|
|
|
#[inline]
|
|
|
|
pub fn set_drive_strength(&mut self, strength: Drive) {
|
2023-06-15 23:32:18 +00:00
|
|
|
self.pin.pad_ctrl().modify(|w| {
|
|
|
|
w.set_drive(match strength {
|
|
|
|
Drive::_2mA => pac::pads::vals::Drive::_2MA,
|
|
|
|
Drive::_4mA => pac::pads::vals::Drive::_4MA,
|
|
|
|
Drive::_8mA => pac::pads::vals::Drive::_8MA,
|
|
|
|
Drive::_12mA => pac::pads::vals::Drive::_12MA,
|
2022-07-27 20:45:46 +00:00
|
|
|
});
|
2023-06-15 23:32:18 +00:00
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Set the pin's slew rate.
|
|
|
|
#[inline]
|
|
|
|
pub fn set_slew_rate(&mut self, slew_rate: SlewRate) {
|
2023-06-15 23:32:18 +00:00
|
|
|
self.pin.pad_ctrl().modify(|w| {
|
|
|
|
w.set_slewfast(slew_rate == SlewRate::Fast);
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the pin's pull.
|
|
|
|
#[inline]
|
|
|
|
pub fn set_pull(&mut self, pull: Pull) {
|
2023-06-15 23:32:18 +00:00
|
|
|
self.pin.pad_ctrl().modify(|w| {
|
|
|
|
w.set_pue(pull == Pull::Up);
|
|
|
|
w.set_pde(pull == Pull::Down);
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-02 11:46:51 +00:00
|
|
|
/// Set the pin's schmitt trigger.
|
2022-07-27 20:45:46 +00:00
|
|
|
#[inline]
|
|
|
|
pub fn set_schmitt(&mut self, enable: bool) {
|
2023-06-15 23:32:18 +00:00
|
|
|
self.pin.pad_ctrl().modify(|w| {
|
|
|
|
w.set_schmitt(enable);
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_input_sync_bypass<'a>(&mut self, bypass: bool) {
|
|
|
|
let mask = 1 << self.pin();
|
2023-06-15 23:32:18 +00:00
|
|
|
if bypass {
|
|
|
|
PIO::PIO.input_sync_bypass().write_set(|w| *w = mask);
|
|
|
|
} else {
|
|
|
|
PIO::PIO.input_sync_bypass().write_clear(|w| *w = mask);
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pin(&self) -> u8 {
|
2023-05-03 06:46:08 +00:00
|
|
|
self.pin._pin()
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct StateMachineRx<'d, PIO: Instance, const SM: usize> {
|
2023-05-04 09:14:21 +00:00
|
|
|
pio: PhantomData<&'d mut PIO>,
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance, const SM: usize> StateMachineRx<'d, PIO, SM> {
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn empty(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.fstat().read().rxempty() & (1u8 << SM) != 0
|
2023-05-02 10:52:29 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn full(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.fstat().read().rxfull() & (1u8 << SM) != 0
|
2023-05-03 08:18:24 +00:00
|
|
|
}
|
2022-07-27 20:45:46 +00:00
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn level(&self) -> u8 {
|
2023-06-15 23:32:18 +00:00
|
|
|
(PIO::PIO.flevel().read().0 >> (SM * 8 + 4)) as u8 & 0x0f
|
2023-05-03 10:49:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn stalled(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
let fdebug = PIO::PIO.fdebug();
|
|
|
|
let ret = fdebug.read().rxstall() & (1 << SM) != 0;
|
|
|
|
if ret {
|
|
|
|
fdebug.write(|w| w.set_rxstall(1 << SM));
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-06-15 23:32:18 +00:00
|
|
|
ret
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-05-03 10:49:55 +00:00
|
|
|
|
|
|
|
pub fn underflowed(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
let fdebug = PIO::PIO.fdebug();
|
|
|
|
let ret = fdebug.read().rxunder() & (1 << SM) != 0;
|
|
|
|
if ret {
|
|
|
|
fdebug.write(|w| w.set_rxunder(1 << SM));
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-06-15 23:32:18 +00:00
|
|
|
ret
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn pull(&mut self) -> u32 {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.rxf(SM).read()
|
2023-05-03 10:49:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn try_pull(&mut self) -> Option<u32> {
|
|
|
|
if self.empty() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
Some(self.pull())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn wait_pull<'a>(&'a mut self) -> FifoInFuture<'a, 'd, PIO, SM> {
|
|
|
|
FifoInFuture::new(self)
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn dma_pull<'a, C: Channel, W: Word>(
|
|
|
|
&'a mut self,
|
|
|
|
ch: PeripheralRef<'a, C>,
|
|
|
|
data: &'a mut [W],
|
|
|
|
) -> Transfer<'a, C> {
|
2023-06-15 23:32:18 +00:00
|
|
|
let pio_no = PIO::PIO_NO;
|
|
|
|
let p = ch.regs();
|
|
|
|
p.write_addr().write_value(data.as_ptr() as u32);
|
|
|
|
p.read_addr().write_value(PIO::PIO.rxf(SM).as_ptr() as u32);
|
|
|
|
p.trans_count().write_value(data.len() as u32);
|
|
|
|
compiler_fence(Ordering::SeqCst);
|
|
|
|
p.ctrl_trig().write(|w| {
|
|
|
|
// Set RX DREQ for this statemachine
|
|
|
|
w.set_treq_sel(TreqSel(pio_no * 8 + SM as u8 + 4));
|
|
|
|
w.set_data_size(W::size());
|
|
|
|
w.set_chain_to(ch.number());
|
|
|
|
w.set_incr_read(false);
|
|
|
|
w.set_incr_write(true);
|
|
|
|
w.set_en(true);
|
|
|
|
});
|
|
|
|
compiler_fence(Ordering::SeqCst);
|
2023-05-03 10:49:55 +00:00
|
|
|
Transfer::new(ch)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct StateMachineTx<'d, PIO: Instance, const SM: usize> {
|
2023-05-04 09:14:21 +00:00
|
|
|
pio: PhantomData<&'d mut PIO>,
|
2023-05-03 10:49:55 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance, const SM: usize> StateMachineTx<'d, PIO, SM> {
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn empty(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.fstat().read().txempty() & (1u8 << SM) != 0
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn full(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.fstat().read().txfull() & (1u8 << SM) != 0
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn level(&self) -> u8 {
|
2023-06-15 23:32:18 +00:00
|
|
|
(PIO::PIO.flevel().read().0 >> (SM * 8)) as u8 & 0x0f
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn stalled(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
let fdebug = PIO::PIO.fdebug();
|
|
|
|
let ret = fdebug.read().txstall() & (1 << SM) != 0;
|
|
|
|
if ret {
|
|
|
|
fdebug.write(|w| w.set_txstall(1 << SM));
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-06-15 23:32:18 +00:00
|
|
|
ret
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn overflowed(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
let fdebug = PIO::PIO.fdebug();
|
|
|
|
let ret = fdebug.read().txover() & (1 << SM) != 0;
|
|
|
|
if ret {
|
|
|
|
fdebug.write(|w| w.set_txover(1 << SM));
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-06-15 23:32:18 +00:00
|
|
|
ret
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn push(&mut self, v: u32) {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.txf(SM).write_value(v);
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn try_push(&mut self, v: u32) -> bool {
|
|
|
|
if self.full() {
|
2022-07-27 20:45:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
2023-05-03 10:49:55 +00:00
|
|
|
self.push(v);
|
2022-07-27 20:45:46 +00:00
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn wait_push<'a>(&'a mut self, value: u32) -> FifoOutFuture<'a, 'd, PIO, SM> {
|
|
|
|
FifoOutFuture::new(self, value)
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
pub fn dma_push<'a, C: Channel, W: Word>(&'a mut self, ch: PeripheralRef<'a, C>, data: &'a [W]) -> Transfer<'a, C> {
|
2023-06-15 23:32:18 +00:00
|
|
|
let pio_no = PIO::PIO_NO;
|
|
|
|
let p = ch.regs();
|
|
|
|
p.read_addr().write_value(data.as_ptr() as u32);
|
|
|
|
p.write_addr().write_value(PIO::PIO.txf(SM).as_ptr() as u32);
|
|
|
|
p.trans_count().write_value(data.len() as u32);
|
|
|
|
compiler_fence(Ordering::SeqCst);
|
|
|
|
p.ctrl_trig().write(|w| {
|
|
|
|
// Set TX DREQ for this statemachine
|
|
|
|
w.set_treq_sel(TreqSel(pio_no * 8 + SM as u8));
|
|
|
|
w.set_data_size(W::size());
|
|
|
|
w.set_chain_to(ch.number());
|
|
|
|
w.set_incr_read(true);
|
|
|
|
w.set_incr_write(false);
|
|
|
|
w.set_en(true);
|
|
|
|
});
|
|
|
|
compiler_fence(Ordering::SeqCst);
|
2023-05-03 10:49:55 +00:00
|
|
|
Transfer::new(ch)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct StateMachine<'d, PIO: Instance, const SM: usize> {
|
|
|
|
rx: StateMachineRx<'d, PIO, SM>,
|
|
|
|
tx: StateMachineTx<'d, PIO, SM>,
|
2023-05-03 10:49:55 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance, const SM: usize> Drop for StateMachine<'d, PIO, SM> {
|
2023-05-03 10:49:55 +00:00
|
|
|
fn drop(&mut self) {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.ctrl().write_clear(|w| w.set_sm_enable(1 << SM));
|
2023-05-03 10:49:55 +00:00
|
|
|
on_pio_drop::<PIO>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-05 17:49:34 +00:00
|
|
|
fn assert_consecutive<'d, PIO: Instance>(pins: &[&Pin<'d, PIO>]) {
|
|
|
|
for (p1, p2) in pins.iter().zip(pins.iter().skip(1)) {
|
|
|
|
// purposely does not allow wrap-around because we can't claim pins 30 and 31.
|
|
|
|
assert!(p1.pin() + 1 == p2.pin(), "pins must be consecutive");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-06 09:36:07 +00:00
|
|
|
#[derive(Clone, Copy, Default, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
#[non_exhaustive]
|
|
|
|
pub struct ExecConfig {
|
|
|
|
pub side_en: bool,
|
|
|
|
pub side_pindir: bool,
|
|
|
|
pub jmp_pin: u8,
|
|
|
|
pub wrap_top: u8,
|
|
|
|
pub wrap_bottom: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Default, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub struct ShiftConfig {
|
|
|
|
pub threshold: u8,
|
|
|
|
pub direction: ShiftDirection,
|
|
|
|
pub auto_fill: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Default, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub struct PinConfig {
|
|
|
|
pub sideset_count: u8,
|
|
|
|
pub set_count: u8,
|
|
|
|
pub out_count: u8,
|
|
|
|
pub in_base: u8,
|
|
|
|
pub sideset_base: u8,
|
|
|
|
pub set_base: u8,
|
|
|
|
pub out_base: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, Debug)]
|
|
|
|
pub struct Config<'d, PIO: Instance> {
|
|
|
|
// CLKDIV
|
|
|
|
pub clock_divider: FixedU32<U8>,
|
|
|
|
// EXECCTRL
|
|
|
|
pub out_en_sel: u8,
|
|
|
|
pub inline_out_en: bool,
|
|
|
|
pub out_sticky: bool,
|
|
|
|
pub status_sel: StatusSource,
|
|
|
|
pub status_n: u8,
|
|
|
|
exec: ExecConfig,
|
|
|
|
origin: Option<u8>,
|
|
|
|
// SHIFTCTRL
|
|
|
|
pub fifo_join: FifoJoin,
|
|
|
|
pub shift_in: ShiftConfig,
|
|
|
|
pub shift_out: ShiftConfig,
|
|
|
|
// PINCTRL
|
|
|
|
pins: PinConfig,
|
|
|
|
in_count: u8,
|
|
|
|
_pio: PhantomData<&'d mut PIO>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, PIO: Instance> Default for Config<'d, PIO> {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self {
|
|
|
|
clock_divider: 1u8.into(),
|
|
|
|
out_en_sel: Default::default(),
|
|
|
|
inline_out_en: Default::default(),
|
|
|
|
out_sticky: Default::default(),
|
|
|
|
status_sel: Default::default(),
|
|
|
|
status_n: Default::default(),
|
|
|
|
exec: Default::default(),
|
|
|
|
origin: Default::default(),
|
|
|
|
fifo_join: Default::default(),
|
|
|
|
shift_in: Default::default(),
|
|
|
|
shift_out: Default::default(),
|
|
|
|
pins: Default::default(),
|
|
|
|
in_count: Default::default(),
|
|
|
|
_pio: Default::default(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'d, PIO: Instance> Config<'d, PIO> {
|
|
|
|
pub fn get_exec(&self) -> ExecConfig {
|
|
|
|
self.exec
|
|
|
|
}
|
|
|
|
pub unsafe fn set_exec(&mut self, e: ExecConfig) {
|
|
|
|
self.exec = e;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_pins(&self) -> PinConfig {
|
|
|
|
self.pins
|
|
|
|
}
|
|
|
|
pub unsafe fn set_pins(&mut self, p: PinConfig) {
|
|
|
|
self.pins = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Configures this state machine to use the given program, including jumping to the origin
|
|
|
|
/// of the program. The state machine is not started.
|
|
|
|
///
|
|
|
|
/// `side_set` sets the range of pins affected by side-sets. The range must be consecutive.
|
|
|
|
/// Side-set pins must configured as outputs using [`StateMachine::set_pin_dirs`] to be
|
|
|
|
/// effective.
|
|
|
|
pub fn use_program(&mut self, prog: &LoadedProgram<'d, PIO>, side_set: &[&Pin<'d, PIO>]) {
|
|
|
|
assert!((prog.side_set.bits() - prog.side_set.optional() as u8) as usize == side_set.len());
|
|
|
|
assert_consecutive(side_set);
|
|
|
|
self.exec.side_en = prog.side_set.optional();
|
|
|
|
self.exec.side_pindir = prog.side_set.pindirs();
|
|
|
|
self.exec.wrap_bottom = prog.wrap.target;
|
|
|
|
self.exec.wrap_top = prog.wrap.source;
|
|
|
|
self.pins.sideset_count = prog.side_set.bits();
|
|
|
|
self.pins.sideset_base = side_set.first().map_or(0, |p| p.pin());
|
|
|
|
self.origin = Some(prog.origin);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_jmp_pin(&mut self, pin: &Pin<'d, PIO>) {
|
|
|
|
self.exec.jmp_pin = pin.pin();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the range of pins affected by SET instructions. The range must be consecutive.
|
|
|
|
/// Set pins must configured as outputs using [`StateMachine::set_pin_dirs`] to be
|
|
|
|
/// effective.
|
|
|
|
pub fn set_set_pins(&mut self, pins: &[&Pin<'d, PIO>]) {
|
|
|
|
assert!(pins.len() <= 5);
|
|
|
|
assert_consecutive(pins);
|
|
|
|
self.pins.set_base = pins.first().map_or(0, |p| p.pin());
|
|
|
|
self.pins.set_count = pins.len() as u8;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the range of pins affected by OUT instructions. The range must be consecutive.
|
|
|
|
/// Out pins must configured as outputs using [`StateMachine::set_pin_dirs`] to be
|
|
|
|
/// effective.
|
|
|
|
pub fn set_out_pins(&mut self, pins: &[&Pin<'d, PIO>]) {
|
|
|
|
assert_consecutive(pins);
|
|
|
|
self.pins.out_base = pins.first().map_or(0, |p| p.pin());
|
|
|
|
self.pins.out_count = pins.len() as u8;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the range of pins used by IN instructions. The range must be consecutive.
|
|
|
|
/// In pins must configured as inputs using [`StateMachine::set_pin_dirs`] to be
|
|
|
|
/// effective.
|
|
|
|
pub fn set_in_pins(&mut self, pins: &[&Pin<'d, PIO>]) {
|
|
|
|
assert_consecutive(pins);
|
|
|
|
self.pins.in_base = pins.first().map_or(0, |p| p.pin());
|
|
|
|
self.in_count = pins.len() as u8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-13 00:11:01 +00:00
|
|
|
impl<'d, PIO: Instance + 'd, const SM: usize> StateMachine<'d, PIO, SM> {
|
|
|
|
pub fn set_config(&mut self, config: &Config<'d, PIO>) {
|
2023-05-06 09:36:07 +00:00
|
|
|
// sm expects 0 for 65536, truncation makes that happen
|
|
|
|
assert!(config.clock_divider <= 65536, "clkdiv must be <= 65536");
|
|
|
|
assert!(config.clock_divider >= 1, "clkdiv must be >= 1");
|
|
|
|
assert!(config.out_en_sel < 32, "out_en_sel must be < 32");
|
|
|
|
assert!(config.status_n < 32, "status_n must be < 32");
|
|
|
|
// sm expects 0 for 32, truncation makes that happen
|
|
|
|
assert!(config.shift_in.threshold <= 32, "shift_in.threshold must be <= 32");
|
|
|
|
assert!(config.shift_out.threshold <= 32, "shift_out.threshold must be <= 32");
|
|
|
|
let sm = Self::this_sm();
|
2023-06-15 23:32:18 +00:00
|
|
|
sm.clkdiv().write(|w| w.0 = config.clock_divider.to_bits() << 8);
|
|
|
|
sm.execctrl().write(|w| {
|
|
|
|
w.set_side_en(config.exec.side_en);
|
|
|
|
w.set_side_pindir(config.exec.side_pindir);
|
|
|
|
w.set_jmp_pin(config.exec.jmp_pin);
|
|
|
|
w.set_out_en_sel(config.out_en_sel);
|
|
|
|
w.set_inline_out_en(config.inline_out_en);
|
|
|
|
w.set_out_sticky(config.out_sticky);
|
|
|
|
w.set_wrap_top(config.exec.wrap_top);
|
|
|
|
w.set_wrap_bottom(config.exec.wrap_bottom);
|
|
|
|
w.set_status_sel(match config.status_sel {
|
|
|
|
StatusSource::TxFifoLevel => SmExecctrlStatusSel::TXLEVEL,
|
|
|
|
StatusSource::RxFifoLevel => SmExecctrlStatusSel::RXLEVEL,
|
2023-05-06 09:36:07 +00:00
|
|
|
});
|
2023-06-15 23:32:18 +00:00
|
|
|
w.set_status_n(config.status_n);
|
|
|
|
});
|
|
|
|
sm.shiftctrl().write(|w| {
|
|
|
|
w.set_fjoin_rx(config.fifo_join == FifoJoin::RxOnly);
|
|
|
|
w.set_fjoin_tx(config.fifo_join == FifoJoin::TxOnly);
|
|
|
|
w.set_pull_thresh(config.shift_out.threshold);
|
|
|
|
w.set_push_thresh(config.shift_in.threshold);
|
|
|
|
w.set_out_shiftdir(config.shift_out.direction == ShiftDirection::Right);
|
|
|
|
w.set_in_shiftdir(config.shift_in.direction == ShiftDirection::Right);
|
|
|
|
w.set_autopull(config.shift_out.auto_fill);
|
|
|
|
w.set_autopush(config.shift_in.auto_fill);
|
|
|
|
});
|
|
|
|
sm.pinctrl().write(|w| {
|
|
|
|
w.set_sideset_count(config.pins.sideset_count);
|
|
|
|
w.set_set_count(config.pins.set_count);
|
|
|
|
w.set_out_count(config.pins.out_count);
|
|
|
|
w.set_in_base(config.pins.in_base);
|
|
|
|
w.set_sideset_base(config.pins.sideset_base);
|
|
|
|
w.set_set_base(config.pins.set_base);
|
|
|
|
w.set_out_base(config.pins.out_base);
|
|
|
|
});
|
|
|
|
if let Some(origin) = config.origin {
|
|
|
|
unsafe { pio_instr_util::exec_jmp(self, origin) }
|
2023-05-06 09:36:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 10:49:55 +00:00
|
|
|
#[inline(always)]
|
|
|
|
fn this_sm() -> crate::pac::pio::StateMachine {
|
|
|
|
PIO::PIO.sm(SM)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn restart(&mut self) {
|
|
|
|
let mask = 1u8 << SM;
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.ctrl().write_set(|w| w.set_sm_restart(mask));
|
2023-05-03 10:49:55 +00:00
|
|
|
}
|
|
|
|
pub fn set_enable(&mut self, enable: bool) {
|
|
|
|
let mask = 1u8 << SM;
|
2023-06-15 23:32:18 +00:00
|
|
|
if enable {
|
|
|
|
PIO::PIO.ctrl().write_set(|w| w.set_sm_enable(mask));
|
|
|
|
} else {
|
|
|
|
PIO::PIO.ctrl().write_clear(|w| w.set_sm_enable(mask));
|
2023-05-03 10:49:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_enabled(&self) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.ctrl().read().sm_enable() & (1u8 << SM) != 0
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 08:18:24 +00:00
|
|
|
pub fn clkdiv_restart(&mut self) {
|
|
|
|
let mask = 1u8 << SM;
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.ctrl().write_set(|w| w.set_clkdiv_restart(mask));
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 18:45:02 +00:00
|
|
|
fn with_paused(&mut self, f: impl FnOnce(&mut Self)) {
|
|
|
|
let enabled = self.is_enabled();
|
|
|
|
self.set_enable(false);
|
2023-06-15 23:32:18 +00:00
|
|
|
let pincfg = Self::this_sm().pinctrl().read();
|
|
|
|
let execcfg = Self::this_sm().execctrl().read();
|
|
|
|
Self::this_sm().execctrl().write_clear(|w| w.set_out_sticky(true));
|
2023-05-05 18:45:02 +00:00
|
|
|
f(self);
|
2023-06-15 23:32:18 +00:00
|
|
|
Self::this_sm().pinctrl().write_value(pincfg);
|
|
|
|
Self::this_sm().execctrl().write_value(execcfg);
|
2023-05-05 18:45:02 +00:00
|
|
|
self.set_enable(enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets pin directions. This pauses the current state machine to run `SET` commands
|
|
|
|
/// and temporarily unsets the `OUT_STICKY` bit.
|
|
|
|
pub fn set_pin_dirs(&mut self, dir: Direction, pins: &[&Pin<'d, PIO>]) {
|
|
|
|
self.with_paused(|sm| {
|
|
|
|
for pin in pins {
|
2023-06-15 23:32:18 +00:00
|
|
|
Self::this_sm().pinctrl().write(|w| {
|
|
|
|
w.set_set_base(pin.pin());
|
|
|
|
w.set_set_count(1);
|
|
|
|
});
|
|
|
|
// SET PINDIRS, (dir)
|
|
|
|
unsafe { sm.exec_instr(0b111_00000_100_00000 | dir as u16) };
|
2023-05-05 18:45:02 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets pin output values. This pauses the current state machine to run
|
|
|
|
/// `SET` commands and temporarily unsets the `OUT_STICKY` bit.
|
|
|
|
pub fn set_pins(&mut self, level: Level, pins: &[&Pin<'d, PIO>]) {
|
|
|
|
self.with_paused(|sm| {
|
|
|
|
for pin in pins {
|
2023-06-15 23:32:18 +00:00
|
|
|
Self::this_sm().pinctrl().write(|w| {
|
|
|
|
w.set_set_base(pin.pin());
|
|
|
|
w.set_set_count(1);
|
|
|
|
});
|
|
|
|
// SET PINS, (dir)
|
|
|
|
unsafe { sm.exec_instr(0b111_00000_000_00000 | level as u16) };
|
2023-05-05 18:45:02 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-05-03 08:18:24 +00:00
|
|
|
pub fn clear_fifos(&mut self) {
|
2022-07-27 20:45:46 +00:00
|
|
|
// Toggle FJOIN_RX to flush FIFOs
|
2023-06-15 23:32:18 +00:00
|
|
|
let shiftctrl = Self::this_sm().shiftctrl();
|
|
|
|
shiftctrl.modify(|w| {
|
|
|
|
w.set_fjoin_rx(!w.fjoin_rx());
|
|
|
|
});
|
|
|
|
shiftctrl.modify(|w| {
|
|
|
|
w.set_fjoin_rx(!w.fjoin_rx());
|
|
|
|
});
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-06 15:24:06 +00:00
|
|
|
pub unsafe fn exec_instr(&mut self, instr: u16) {
|
|
|
|
Self::this_sm().instr().write(|w| w.set_instr(instr));
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub fn rx(&mut self) -> &mut StateMachineRx<'d, PIO, SM> {
|
2023-05-03 10:49:55 +00:00
|
|
|
&mut self.rx
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-05-03 15:16:35 +00:00
|
|
|
pub fn tx(&mut self) -> &mut StateMachineTx<'d, PIO, SM> {
|
2023-05-03 10:49:55 +00:00
|
|
|
&mut self.tx
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-05-03 15:16:35 +00:00
|
|
|
pub fn rx_tx(&mut self) -> (&mut StateMachineRx<'d, PIO, SM>, &mut StateMachineTx<'d, PIO, SM>) {
|
2023-05-03 10:49:55 +00:00
|
|
|
(&mut self.rx, &mut self.tx)
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct Common<'d, PIO: Instance> {
|
2023-04-25 18:40:18 +00:00
|
|
|
instructions_used: u32,
|
2023-05-04 09:14:21 +00:00
|
|
|
pio: PhantomData<&'d mut PIO>,
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance> Drop for Common<'d, PIO> {
|
2023-05-02 10:52:29 +00:00
|
|
|
fn drop(&mut self) {
|
|
|
|
on_pio_drop::<PIO>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct InstanceMemory<'d, PIO: Instance> {
|
2023-04-25 18:40:18 +00:00
|
|
|
used_mask: u32,
|
2023-05-04 09:14:21 +00:00
|
|
|
pio: PhantomData<&'d mut PIO>,
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 17:49:34 +00:00
|
|
|
pub struct LoadedProgram<'d, PIO: Instance> {
|
|
|
|
pub used_memory: InstanceMemory<'d, PIO>,
|
2023-07-28 16:45:57 +00:00
|
|
|
pub origin: u8,
|
|
|
|
pub wrap: Wrap,
|
|
|
|
pub side_set: SideSet,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
|
|
|
|
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
|
|
|
|
pub enum LoadError {
|
|
|
|
/// Insufficient consecutive free instruction space to load program.
|
|
|
|
InsufficientSpace,
|
|
|
|
/// Loading the program would overwrite an instruction address already
|
|
|
|
/// used by another program.
|
|
|
|
AddressInUse(usize),
|
2023-05-05 17:49:34 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance> Common<'d, PIO> {
|
2023-07-28 16:45:57 +00:00
|
|
|
/// Load a PIO program. This will automatically relocate the program to
|
|
|
|
/// an available chunk of free instruction memory if the program origin
|
|
|
|
/// was not explicitly specified, otherwise it will attempt to load the
|
|
|
|
/// program only at its origin.
|
|
|
|
pub fn load_program<const SIZE: usize>(&mut self, prog: &Program<SIZE>) -> LoadedProgram<'d, PIO> {
|
2023-05-05 17:49:34 +00:00
|
|
|
match self.try_load_program(prog) {
|
|
|
|
Ok(r) => r,
|
2023-07-28 16:45:57 +00:00
|
|
|
Err(e) => panic!("Failed to load PIO program: {:?}", e),
|
2023-05-05 17:49:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-28 16:45:57 +00:00
|
|
|
/// Load a PIO program. This will automatically relocate the program to
|
|
|
|
/// an available chunk of free instruction memory if the program origin
|
|
|
|
/// was not explicitly specified, otherwise it will attempt to load the
|
|
|
|
/// program only at its origin.
|
2023-05-05 17:49:34 +00:00
|
|
|
pub fn try_load_program<const SIZE: usize>(
|
|
|
|
&mut self,
|
2023-07-28 16:45:57 +00:00
|
|
|
prog: &Program<SIZE>,
|
|
|
|
) -> Result<LoadedProgram<'d, PIO>, LoadError> {
|
|
|
|
match prog.origin {
|
|
|
|
Some(origin) => self
|
|
|
|
.try_load_program_at(prog, origin)
|
|
|
|
.map_err(|a| LoadError::AddressInUse(a)),
|
|
|
|
None => {
|
|
|
|
// naively search for free space, allowing wraparound since
|
|
|
|
// PIO does support that. with only 32 instruction slots it
|
|
|
|
// doesn't make much sense to do anything more fancy.
|
|
|
|
let mut origin = 0;
|
|
|
|
while origin < 32 {
|
|
|
|
match self.try_load_program_at(prog, origin as _) {
|
|
|
|
Ok(r) => return Ok(r),
|
|
|
|
Err(a) => origin = a + 1,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(LoadError::InsufficientSpace)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn try_load_program_at<const SIZE: usize>(
|
|
|
|
&mut self,
|
|
|
|
prog: &Program<SIZE>,
|
|
|
|
origin: u8,
|
2023-05-05 17:49:34 +00:00
|
|
|
) -> Result<LoadedProgram<'d, PIO>, usize> {
|
2023-07-28 16:45:57 +00:00
|
|
|
let prog = RelocatedProgram::new_with_origin(prog, origin);
|
2023-05-05 17:49:34 +00:00
|
|
|
let used_memory = self.try_write_instr(prog.origin() as _, prog.code())?;
|
|
|
|
Ok(LoadedProgram {
|
|
|
|
used_memory,
|
|
|
|
origin: prog.origin(),
|
|
|
|
wrap: prog.wrap(),
|
|
|
|
side_set: prog.side_set(),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2023-07-28 16:45:57 +00:00
|
|
|
fn try_write_instr<I>(&mut self, start: usize, instrs: I) -> Result<InstanceMemory<'d, PIO>, usize>
|
2023-04-25 18:40:18 +00:00
|
|
|
where
|
|
|
|
I: Iterator<Item = u16>,
|
|
|
|
{
|
|
|
|
let mut used_mask = 0;
|
|
|
|
for (i, instr) in instrs.enumerate() {
|
2023-05-06 18:53:06 +00:00
|
|
|
// wrapping around the end of program memory is valid, let's make use of that.
|
|
|
|
let addr = (i + start) % 32;
|
|
|
|
let mask = 1 << addr;
|
|
|
|
if (self.instructions_used | used_mask) & mask != 0 {
|
|
|
|
return Err(addr);
|
2023-05-05 17:49:34 +00:00
|
|
|
}
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.instr_mem(addr).write(|w| {
|
|
|
|
w.set_instr_mem(instr);
|
|
|
|
});
|
2023-04-25 18:40:18 +00:00
|
|
|
used_mask |= mask;
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-04-25 18:40:18 +00:00
|
|
|
self.instructions_used |= used_mask;
|
2023-05-05 17:49:34 +00:00
|
|
|
Ok(InstanceMemory {
|
2023-04-25 18:40:18 +00:00
|
|
|
used_mask,
|
|
|
|
pio: PhantomData,
|
2023-05-05 17:49:34 +00:00
|
|
|
})
|
2023-04-25 18:40:18 +00:00
|
|
|
}
|
|
|
|
|
2023-05-05 17:49:34 +00:00
|
|
|
/// Free instruction memory. This is always possible but unsafe if any
|
|
|
|
/// state machine is still using this bit of memory.
|
2023-05-03 15:16:35 +00:00
|
|
|
pub unsafe fn free_instr(&mut self, instrs: InstanceMemory<PIO>) {
|
2023-04-25 18:40:18 +00:00
|
|
|
self.instructions_used &= !instrs.used_mask;
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-04-25 18:40:18 +00:00
|
|
|
|
2023-04-26 18:27:31 +00:00
|
|
|
pub fn set_input_sync_bypass<'a>(&'a mut self, bypass: u32, mask: u32) {
|
2023-06-15 23:32:18 +00:00
|
|
|
// this can interfere with per-pin bypass functions. splitting the
|
|
|
|
// modification is going to be fine since nothing that relies on
|
|
|
|
// it can reasonably run before we finish.
|
|
|
|
PIO::PIO.input_sync_bypass().write_set(|w| *w = mask & bypass);
|
|
|
|
PIO::PIO.input_sync_bypass().write_clear(|w| *w = mask & !bypass);
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-04-26 18:27:31 +00:00
|
|
|
pub fn get_input_sync_bypass(&self) -> u32 {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.input_sync_bypass().read()
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-04-25 18:16:27 +00:00
|
|
|
|
2023-05-02 10:52:29 +00:00
|
|
|
/// Register a pin for PIO usage. Pins will be released from the PIO block
|
2023-05-03 15:16:35 +00:00
|
|
|
/// (i.e., have their `FUNCSEL` reset to `NULL`) when the [`Common`] *and*
|
|
|
|
/// all [`StateMachine`]s for this block have been dropped. **Other members
|
2023-04-27 00:12:49 +00:00
|
|
|
/// of [`Pio`] do not keep pin registrations alive.**
|
2023-05-03 06:46:08 +00:00
|
|
|
pub fn make_pio_pin(&mut self, pin: impl Peripheral<P = impl PioPin + 'd> + 'd) -> Pin<'d, PIO> {
|
|
|
|
into_ref!(pin);
|
2023-07-31 16:28:31 +00:00
|
|
|
pin.gpio().ctrl().write(|w| w.set_funcsel(PIO::FUNCSEL as _));
|
2023-05-02 10:52:29 +00:00
|
|
|
// we can be relaxed about this because we're &mut here and nothing is cached
|
|
|
|
PIO::state().used_pins.fetch_or(1 << pin.pin_bank(), Ordering::Relaxed);
|
2023-05-03 06:15:46 +00:00
|
|
|
Pin {
|
2023-05-03 06:46:08 +00:00
|
|
|
pin: pin.into_ref().map_into(),
|
2023-04-25 18:16:27 +00:00
|
|
|
pio: PhantomData::default(),
|
|
|
|
}
|
|
|
|
}
|
2023-05-06 10:23:53 +00:00
|
|
|
|
|
|
|
pub fn apply_sm_batch(&mut self, f: impl FnOnce(&mut PioBatch<'d, PIO>)) {
|
|
|
|
let mut batch = PioBatch {
|
|
|
|
clkdiv_restart: 0,
|
|
|
|
sm_restart: 0,
|
|
|
|
sm_enable_mask: 0,
|
|
|
|
sm_enable: 0,
|
|
|
|
_pio: PhantomData,
|
|
|
|
};
|
|
|
|
f(&mut batch);
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.ctrl().modify(|w| {
|
|
|
|
w.set_clkdiv_restart(batch.clkdiv_restart);
|
|
|
|
w.set_sm_restart(batch.sm_restart);
|
|
|
|
w.set_sm_enable((w.sm_enable() & !batch.sm_enable_mask) | batch.sm_enable);
|
|
|
|
});
|
2023-05-06 10:23:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PioBatch<'a, PIO: Instance> {
|
|
|
|
clkdiv_restart: u8,
|
|
|
|
sm_restart: u8,
|
|
|
|
sm_enable_mask: u8,
|
|
|
|
sm_enable: u8,
|
|
|
|
_pio: PhantomData<&'a PIO>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, PIO: Instance> PioBatch<'a, PIO> {
|
|
|
|
pub fn restart_clockdiv<const SM: usize>(&mut self, _sm: &mut StateMachine<'a, PIO, SM>) {
|
|
|
|
self.clkdiv_restart |= 1 << SM;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn restart<const SM: usize>(&mut self, _sm: &mut StateMachine<'a, PIO, SM>) {
|
|
|
|
self.clkdiv_restart |= 1 << SM;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_enable<const SM: usize>(&mut self, _sm: &mut StateMachine<'a, PIO, SM>, enable: bool) {
|
|
|
|
self.sm_enable_mask |= 1 << SM;
|
|
|
|
self.sm_enable |= (enable as u8) << SM;
|
|
|
|
}
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct Irq<'d, PIO: Instance, const N: usize> {
|
2023-05-04 09:14:21 +00:00
|
|
|
pio: PhantomData<&'d mut PIO>,
|
2023-04-27 00:12:49 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance, const N: usize> Irq<'d, PIO, N> {
|
2023-04-27 00:12:49 +00:00
|
|
|
pub fn wait<'a>(&'a mut self) -> IrqFuture<'a, 'd, PIO> {
|
|
|
|
IrqFuture {
|
|
|
|
pio: PhantomData,
|
|
|
|
irq_no: N as u8,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 08:51:50 +00:00
|
|
|
#[derive(Clone)]
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct IrqFlags<'d, PIO: Instance> {
|
2023-05-04 09:14:21 +00:00
|
|
|
pio: PhantomData<&'d mut PIO>,
|
2023-05-03 08:51:50 +00:00
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance> IrqFlags<'d, PIO> {
|
2023-05-03 08:51:50 +00:00
|
|
|
pub fn check(&self, irq_no: u8) -> bool {
|
|
|
|
assert!(irq_no < 8);
|
|
|
|
self.check_any(1 << irq_no)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_any(&self, irqs: u8) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irq().read().irq() & irqs != 0
|
2023-05-03 08:51:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_all(&self, irqs: u8) -> bool {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irq().read().irq() & irqs == irqs
|
2023-05-03 08:51:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn clear(&self, irq_no: usize) {
|
|
|
|
assert!(irq_no < 8);
|
|
|
|
self.clear_all(1 << irq_no);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn clear_all(&self, irqs: u8) {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irq().write(|w| w.set_irq(irqs))
|
2023-05-03 08:51:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set(&self, irq_no: usize) {
|
|
|
|
assert!(irq_no < 8);
|
|
|
|
self.set_all(1 << irq_no);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_all(&self, irqs: u8) {
|
2023-06-15 23:32:18 +00:00
|
|
|
PIO::PIO.irq_force().write(|w| w.set_irq_force(irqs))
|
2023-05-03 08:51:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub struct Pio<'d, PIO: Instance> {
|
|
|
|
pub common: Common<'d, PIO>,
|
|
|
|
pub irq_flags: IrqFlags<'d, PIO>,
|
|
|
|
pub irq0: Irq<'d, PIO, 0>,
|
|
|
|
pub irq1: Irq<'d, PIO, 1>,
|
|
|
|
pub irq2: Irq<'d, PIO, 2>,
|
|
|
|
pub irq3: Irq<'d, PIO, 3>,
|
|
|
|
pub sm0: StateMachine<'d, PIO, 0>,
|
|
|
|
pub sm1: StateMachine<'d, PIO, 1>,
|
|
|
|
pub sm2: StateMachine<'d, PIO, 2>,
|
|
|
|
pub sm3: StateMachine<'d, PIO, 3>,
|
2023-05-04 09:14:21 +00:00
|
|
|
_pio: PhantomData<&'d mut PIO>,
|
2023-04-26 17:43:57 +00:00
|
|
|
}
|
2022-07-27 20:45:46 +00:00
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
impl<'d, PIO: Instance> Pio<'d, PIO> {
|
2023-07-07 02:30:46 +00:00
|
|
|
pub fn new(_pio: impl Peripheral<P = PIO> + 'd, _irq: impl Binding<PIO::Interrupt, InterruptHandler<PIO>>) -> Self {
|
2023-05-02 10:52:29 +00:00
|
|
|
PIO::state().users.store(5, Ordering::Release);
|
|
|
|
PIO::state().used_pins.store(0, Ordering::Release);
|
2023-07-07 02:30:46 +00:00
|
|
|
PIO::Interrupt::unpend();
|
|
|
|
unsafe { PIO::Interrupt::enable() };
|
2023-04-26 17:43:57 +00:00
|
|
|
Self {
|
2023-05-03 15:16:35 +00:00
|
|
|
common: Common {
|
2023-04-25 18:40:18 +00:00
|
|
|
instructions_used: 0,
|
2023-04-26 17:43:57 +00:00
|
|
|
pio: PhantomData,
|
2022-07-27 20:45:46 +00:00
|
|
|
},
|
2023-05-03 15:16:35 +00:00
|
|
|
irq_flags: IrqFlags { pio: PhantomData },
|
|
|
|
irq0: Irq { pio: PhantomData },
|
|
|
|
irq1: Irq { pio: PhantomData },
|
|
|
|
irq2: Irq { pio: PhantomData },
|
|
|
|
irq3: Irq { pio: PhantomData },
|
|
|
|
sm0: StateMachine {
|
|
|
|
rx: StateMachineRx { pio: PhantomData },
|
|
|
|
tx: StateMachineTx { pio: PhantomData },
|
2023-05-03 10:49:55 +00:00
|
|
|
},
|
2023-05-03 15:16:35 +00:00
|
|
|
sm1: StateMachine {
|
|
|
|
rx: StateMachineRx { pio: PhantomData },
|
|
|
|
tx: StateMachineTx { pio: PhantomData },
|
2023-05-03 10:49:55 +00:00
|
|
|
},
|
2023-05-03 15:16:35 +00:00
|
|
|
sm2: StateMachine {
|
|
|
|
rx: StateMachineRx { pio: PhantomData },
|
|
|
|
tx: StateMachineTx { pio: PhantomData },
|
2023-05-03 10:49:55 +00:00
|
|
|
},
|
2023-05-03 15:16:35 +00:00
|
|
|
sm3: StateMachine {
|
|
|
|
rx: StateMachineRx { pio: PhantomData },
|
|
|
|
tx: StateMachineTx { pio: PhantomData },
|
2023-05-03 10:49:55 +00:00
|
|
|
},
|
2023-05-04 09:14:21 +00:00
|
|
|
_pio: PhantomData,
|
2023-04-26 17:43:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-02 10:52:29 +00:00
|
|
|
// we need to keep a record of which pins are assigned to each PIO. make_pio_pin
|
|
|
|
// notionally takes ownership of the pin it is given, but the wrapped pin cannot
|
|
|
|
// be treated as an owned resource since dropping it would have to deconfigure
|
|
|
|
// the pin, breaking running state machines in the process. pins are also shared
|
|
|
|
// between all state machines, which makes ownership even messier to track any
|
|
|
|
// other way.
|
|
|
|
pub struct State {
|
|
|
|
users: AtomicU8,
|
|
|
|
used_pins: AtomicU32,
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
fn on_pio_drop<PIO: Instance>() {
|
2023-05-02 10:52:29 +00:00
|
|
|
let state = PIO::state();
|
|
|
|
if state.users.fetch_sub(1, Ordering::AcqRel) == 1 {
|
|
|
|
let used_pins = state.used_pins.load(Ordering::Relaxed);
|
2023-06-29 00:08:55 +00:00
|
|
|
let null = Gpio0ctrlFuncsel::NULL as _;
|
2023-05-06 19:14:00 +00:00
|
|
|
// we only have 30 pins. don't test the other two since gpio() asserts.
|
|
|
|
for i in 0..30 {
|
2023-05-02 10:52:29 +00:00
|
|
|
if used_pins & (1 << i) != 0 {
|
2023-06-15 23:32:18 +00:00
|
|
|
pac::IO_BANK0.gpio(i).ctrl().write(|w| w.set_funcsel(null));
|
2023-05-02 10:52:29 +00:00
|
|
|
}
|
|
|
|
}
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-25 17:28:01 +00:00
|
|
|
mod sealed {
|
2023-05-02 10:52:29 +00:00
|
|
|
use super::*;
|
|
|
|
|
2023-05-03 06:15:46 +00:00
|
|
|
pub trait PioPin {}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub trait Instance {
|
2023-04-25 22:23:18 +00:00
|
|
|
const PIO_NO: u8;
|
|
|
|
const PIO: &'static crate::pac::pio::Pio;
|
|
|
|
const FUNCSEL: crate::pac::io::vals::Gpio0ctrlFuncsel;
|
2023-07-07 02:30:46 +00:00
|
|
|
type Interrupt: crate::interrupt::typelevel::Interrupt;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn wakers() -> &'static Wakers {
|
|
|
|
const NEW_AW: AtomicWaker = AtomicWaker::new();
|
|
|
|
static WAKERS: Wakers = Wakers([NEW_AW; 12]);
|
|
|
|
|
|
|
|
&WAKERS
|
|
|
|
}
|
2023-05-02 10:52:29 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn state() -> &'static State {
|
|
|
|
static STATE: State = State {
|
|
|
|
users: AtomicU8::new(0),
|
|
|
|
used_pins: AtomicU32::new(0),
|
|
|
|
};
|
|
|
|
|
|
|
|
&STATE
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-03 15:16:35 +00:00
|
|
|
pub trait Instance: sealed::Instance + Sized + Unpin {}
|
2023-04-25 17:28:01 +00:00
|
|
|
|
2023-04-25 22:23:18 +00:00
|
|
|
macro_rules! impl_pio {
|
2023-07-07 02:30:46 +00:00
|
|
|
($name:ident, $pio:expr, $pac:ident, $funcsel:ident, $irq:ident) => {
|
2023-05-03 15:16:35 +00:00
|
|
|
impl sealed::Instance for peripherals::$name {
|
2023-04-25 22:23:18 +00:00
|
|
|
const PIO_NO: u8 = $pio;
|
|
|
|
const PIO: &'static pac::pio::Pio = &pac::$pac;
|
|
|
|
const FUNCSEL: pac::io::vals::Gpio0ctrlFuncsel = pac::io::vals::Gpio0ctrlFuncsel::$funcsel;
|
2023-07-07 02:30:46 +00:00
|
|
|
type Interrupt = crate::interrupt::typelevel::$irq;
|
2022-07-27 20:45:46 +00:00
|
|
|
}
|
2023-05-03 15:16:35 +00:00
|
|
|
impl Instance for peripherals::$name {}
|
2022-07-27 20:45:46 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-07-07 02:30:46 +00:00
|
|
|
impl_pio!(PIO0, 0, PIO0, PIO0_0, PIO0_IRQ_0);
|
|
|
|
impl_pio!(PIO1, 1, PIO1, PIO1_0, PIO1_IRQ_0);
|
2023-05-03 06:15:46 +00:00
|
|
|
|
|
|
|
pub trait PioPin: sealed::PioPin + gpio::Pin {}
|
|
|
|
|
|
|
|
macro_rules! impl_pio_pin {
|
|
|
|
($( $num:tt )*) => {
|
|
|
|
$(
|
|
|
|
paste::paste!{
|
|
|
|
impl sealed::PioPin for peripherals::[< PIN_ $num >] {}
|
|
|
|
impl PioPin for peripherals::[< PIN_ $num >] {}
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_pio_pin! {
|
|
|
|
0 1 2 3 4 5 6 7 8 9
|
|
|
|
10 11 12 13 14 15 16 17 18 19
|
|
|
|
20 21 22 23 24 25 26 27 28 29
|
|
|
|
}
|