embassy/embassy-nrf/src/gpiote.rs

541 lines
16 KiB
Rust
Raw Normal View History

2021-03-20 03:09:42 +01:00
use core::convert::Infallible;
use core::future::Future;
use core::task::{Context, Poll};
2022-06-12 22:15:44 +02:00
use embassy_hal_common::{impl_peripheral, Peripheral, PeripheralRef};
use embassy_util::waitqueue::AtomicWaker;
use futures::future::poll_fn;
2020-09-23 00:32:49 +02:00
2021-03-20 03:09:42 +01:00
use crate::gpio::sealed::Pin as _;
use crate::gpio::{AnyPin, Flex, Input, Output, Pin as GpioPin};
2022-06-12 22:15:44 +02:00
use crate::interrupt::{Interrupt, InterruptExt};
2021-03-27 16:13:32 +01:00
use crate::ppi::{Event, Task};
2022-06-12 22:15:44 +02:00
use crate::{interrupt, pac, peripherals};
2020-09-23 00:32:49 +02:00
2020-11-08 18:59:31 +01:00
pub const CHANNEL_COUNT: usize = 8;
#[cfg(any(feature = "nrf52833", feature = "nrf52840"))]
2020-11-08 18:59:31 +01:00
pub const PIN_COUNT: usize = 48;
#[cfg(not(any(feature = "nrf52833", feature = "nrf52840")))]
2020-11-08 18:59:31 +01:00
pub const PIN_COUNT: usize = 32;
2021-10-18 00:55:43 +02:00
#[allow(clippy::declare_interior_mutable_const)]
const NEW_AW: AtomicWaker = AtomicWaker::new();
static CHANNEL_WAKERS: [AtomicWaker; CHANNEL_COUNT] = [NEW_AW; CHANNEL_COUNT];
static PORT_WAKERS: [AtomicWaker; PIN_COUNT] = [NEW_AW; PIN_COUNT];
2020-11-08 17:38:45 +01:00
pub enum InputChannelPolarity {
2020-09-23 00:32:49 +02:00
None,
HiToLo,
LoToHi,
Toggle,
}
2020-09-29 19:18:52 +02:00
/// Polarity of the `task out` operation.
2020-11-08 17:38:45 +01:00
pub enum OutputChannelPolarity {
2020-09-29 19:18:52 +02:00
Set,
Clear,
Toggle,
}
2021-10-28 03:07:06 +02:00
fn regs() -> &'static pac::gpiote::RegisterBlock {
cfg_if::cfg_if! {
if #[cfg(any(feature="nrf5340-app-s", feature="nrf9160-s"))] {
unsafe { &*pac::GPIOTE0::ptr() }
} else if #[cfg(any(feature="nrf5340-app-ns", feature="nrf9160-ns"))] {
unsafe { &*pac::GPIOTE1::ptr() }
} else {
unsafe { &*pac::GPIOTE::ptr() }
}
}
}
pub(crate) fn init(irq_prio: crate::interrupt::Priority) {
#[cfg(any(feature = "nrf52833", feature = "nrf52840"))]
2021-10-12 11:43:57 +02:00
let ports = unsafe { &[&*pac::P0::ptr(), &*pac::P1::ptr()] };
#[cfg(not(any(feature = "nrf52833", feature = "nrf52840")))]
2021-10-12 11:43:57 +02:00
let ports = unsafe { &[&*pac::P0::ptr()] };
2021-03-20 03:09:42 +01:00
for &p in ports {
// Enable latched detection
p.detectmode.write(|w| w.detectmode().ldetect());
// Clear latch
p.latch.write(|w| unsafe { w.bits(0xFFFFFFFF) })
}
// Enable interrupts
2021-10-28 03:07:06 +02:00
cfg_if::cfg_if! {
if #[cfg(any(feature="nrf5340-app-s", feature="nrf9160-s"))] {
let irq = unsafe { interrupt::GPIOTE0::steal() };
} else if #[cfg(any(feature="nrf5340-app-ns", feature="nrf9160-ns"))] {
let irq = unsafe { interrupt::GPIOTE1::steal() };
} else {
let irq = unsafe { interrupt::GPIOTE::steal() };
}
}
2021-10-11 10:39:38 +02:00
2021-03-20 03:09:42 +01:00
irq.unpend();
irq.set_priority(irq_prio);
2021-03-20 03:09:42 +01:00
irq.enable();
2021-10-28 03:07:06 +02:00
let g = regs();
2021-05-12 01:01:08 +02:00
g.events_port.write(|w| w);
g.intenset.write(|w| w.port().set());
}
2021-10-28 03:07:06 +02:00
cfg_if::cfg_if! {
if #[cfg(any(feature="nrf5340-app-s", feature="nrf9160-s"))] {
#[interrupt]
fn GPIOTE0() {
unsafe { handle_gpiote_interrupt() };
}
} else if #[cfg(any(feature="nrf5340-app-ns", feature="nrf9160-ns"))] {
#[interrupt]
fn GPIOTE1() {
unsafe { handle_gpiote_interrupt() };
}
} else {
#[interrupt]
fn GPIOTE() {
unsafe { handle_gpiote_interrupt() };
}
}
2021-10-11 10:39:38 +02:00
}
unsafe fn handle_gpiote_interrupt() {
2021-10-28 03:07:06 +02:00
let g = regs();
2020-11-08 18:59:31 +01:00
2021-03-20 03:09:42 +01:00
for i in 0..CHANNEL_COUNT {
if g.events_in[i].read().bits() != 0 {
g.intenclr.write(|w| w.bits(1 << i));
2021-03-20 03:09:42 +01:00
CHANNEL_WAKERS[i].wake();
2020-11-08 18:59:31 +01:00
}
2020-09-23 00:32:49 +02:00
}
2020-12-29 01:53:17 +01:00
2021-03-20 03:09:42 +01:00
if g.events_port.read().bits() != 0 {
g.events_port.write(|w| w);
2020-12-29 01:53:17 +01:00
#[cfg(any(feature = "nrf52833", feature = "nrf52840"))]
2021-10-12 11:43:57 +02:00
let ports = &[&*pac::P0::ptr(), &*pac::P1::ptr()];
#[cfg(not(any(feature = "nrf52833", feature = "nrf52840")))]
2021-10-12 11:43:57 +02:00
let ports = &[&*pac::P0::ptr()];
2020-12-29 01:53:17 +01:00
2021-03-20 03:09:42 +01:00
for (port, &p) in ports.iter().enumerate() {
let bits = p.latch.read().bits();
for pin in BitIter(bits) {
p.pin_cnf[pin as usize].modify(|_, w| w.sense().disabled());
PORT_WAKERS[port * 32 + pin as usize].wake();
2020-12-29 01:53:17 +01:00
}
2021-03-20 03:09:42 +01:00
p.latch.write(|w| w.bits(bits));
2020-12-29 01:53:17 +01:00
}
}
2020-09-23 00:32:49 +02:00
}
2021-03-20 03:09:42 +01:00
struct BitIter(u32);
2020-11-08 18:59:31 +01:00
2021-03-20 03:09:42 +01:00
impl Iterator for BitIter {
type Item = u32;
2020-11-08 18:59:31 +01:00
2021-03-20 03:09:42 +01:00
fn next(&mut self) -> Option<Self::Item> {
match self.0.trailing_zeros() {
32 => None,
b => {
self.0 &= !(1 << b);
Some(b)
}
}
}
2020-11-08 18:59:31 +01:00
}
2021-03-27 16:13:32 +01:00
/// GPIOTE channel driver in input mode
pub struct InputChannel<'d, C: Channel, T: GpioPin> {
ch: C,
pin: Input<'d, T>,
2020-09-23 00:32:49 +02:00
}
impl<'d, C: Channel, T: GpioPin> Drop for InputChannel<'d, C, T> {
2020-09-23 00:32:49 +02:00
fn drop(&mut self) {
2021-10-28 03:07:06 +02:00
let g = regs();
let num = self.ch.number();
g.config[num].write(|w| w.mode().disabled());
g.intenclr.write(|w| unsafe { w.bits(1 << num) });
2020-09-23 00:32:49 +02:00
}
}
impl<'d, C: Channel, T: GpioPin> InputChannel<'d, C, T> {
2021-05-12 01:01:08 +02:00
pub fn new(ch: C, pin: Input<'d, T>, polarity: InputChannelPolarity) -> Self {
2021-10-28 03:07:06 +02:00
let g = regs();
let num = ch.number();
g.config[num].write(|w| {
match polarity {
InputChannelPolarity::HiToLo => w.mode().event().polarity().hi_to_lo(),
InputChannelPolarity::LoToHi => w.mode().event().polarity().lo_to_hi(),
InputChannelPolarity::None => w.mode().event().polarity().none(),
InputChannelPolarity::Toggle => w.mode().event().polarity().toggle(),
};
#[cfg(any(feature = "nrf52833", feature = "nrf52840"))]
w.port().bit(match pin.pin.pin.port() {
crate::gpio::Port::Port0 => false,
crate::gpio::Port::Port1 => true,
});
unsafe { w.psel().bits(pin.pin.pin.pin()) }
});
g.events_in[num].reset();
InputChannel { ch, pin }
}
pub async fn wait(&self) {
2021-10-28 03:07:06 +02:00
let g = regs();
let num = self.ch.number();
// Enable interrupt
g.events_in[num].reset();
g.intenset.write(|w| unsafe { w.bits(1 << num) });
poll_fn(|cx| {
CHANNEL_WAKERS[num].register(cx.waker());
if g.events_in[num].read().bits() != 0 {
Poll::Ready(())
} else {
Poll::Pending
}
})
.await;
}
2021-03-27 16:13:32 +01:00
/// Returns the IN event, for use with PPI.
pub fn event_in(&self) -> Event {
2021-10-28 03:07:06 +02:00
let g = regs();
2021-03-27 16:13:32 +01:00
Event::from_reg(&g.events_in[self.ch.number()])
}
}
2021-03-27 16:13:32 +01:00
/// GPIOTE channel driver in output mode
pub struct OutputChannel<'d, C: Channel, T: GpioPin> {
ch: C,
2021-03-27 16:13:32 +01:00
_pin: Output<'d, T>,
2020-09-29 19:18:52 +02:00
}
impl<'d, C: Channel, T: GpioPin> Drop for OutputChannel<'d, C, T> {
2020-09-29 19:18:52 +02:00
fn drop(&mut self) {
2021-10-28 03:07:06 +02:00
let g = regs();
let num = self.ch.number();
g.config[num].write(|w| w.mode().disabled());
g.intenclr.write(|w| unsafe { w.bits(1 << num) });
2020-09-29 19:18:52 +02:00
}
}
impl<'d, C: Channel, T: GpioPin> OutputChannel<'d, C, T> {
2021-05-12 01:01:08 +02:00
pub fn new(ch: C, pin: Output<'d, T>, polarity: OutputChannelPolarity) -> Self {
2021-10-28 03:07:06 +02:00
let g = regs();
let num = ch.number();
g.config[num].write(|w| {
w.mode().task();
match pin.is_set_high() {
true => w.outinit().high(),
false => w.outinit().low(),
};
match polarity {
OutputChannelPolarity::Set => w.polarity().lo_to_hi(),
OutputChannelPolarity::Clear => w.polarity().hi_to_lo(),
OutputChannelPolarity::Toggle => w.polarity().toggle(),
};
#[cfg(any(feature = "nrf52833", feature = "nrf52840"))]
w.port().bit(match pin.pin.pin.port() {
crate::gpio::Port::Port0 => false,
crate::gpio::Port::Port1 => true,
});
unsafe { w.psel().bits(pin.pin.pin.pin()) }
});
2021-03-27 16:13:32 +01:00
OutputChannel { ch, _pin: pin }
}
2020-09-29 19:18:52 +02:00
/// Triggers `task out` (as configured with task_out_polarity, defaults to Toggle).
pub fn out(&self) {
2021-10-28 03:07:06 +02:00
let g = regs();
g.tasks_out[self.ch.number()].write(|w| unsafe { w.bits(1) });
2020-09-29 19:18:52 +02:00
}
2020-09-29 19:18:52 +02:00
/// Triggers `task set` (set associated pin high).
#[cfg(not(feature = "nrf51"))]
2020-09-29 19:18:52 +02:00
pub fn set(&self) {
2021-10-28 03:07:06 +02:00
let g = regs();
g.tasks_set[self.ch.number()].write(|w| unsafe { w.bits(1) });
2020-09-29 19:18:52 +02:00
}
2020-09-29 19:18:52 +02:00
/// Triggers `task clear` (set associated pin low).
#[cfg(not(feature = "nrf51"))]
2020-09-29 19:18:52 +02:00
pub fn clear(&self) {
2021-10-28 03:07:06 +02:00
let g = regs();
g.tasks_clr[self.ch.number()].write(|w| unsafe { w.bits(1) });
2020-09-29 19:18:52 +02:00
}
2021-03-27 16:13:32 +01:00
/// Returns the OUT task, for use with PPI.
pub fn task_out(&self) -> Task {
2021-10-28 03:07:06 +02:00
let g = regs();
2021-03-27 16:13:32 +01:00
Task::from_reg(&g.tasks_out[self.ch.number()])
2020-09-29 19:18:52 +02:00
}
2021-03-27 16:13:32 +01:00
/// Returns the CLR task, for use with PPI.
#[cfg(not(feature = "nrf51"))]
2021-03-27 16:13:32 +01:00
pub fn task_clr(&self) -> Task {
2021-10-28 03:07:06 +02:00
let g = regs();
2021-03-27 16:13:32 +01:00
Task::from_reg(&g.tasks_clr[self.ch.number()])
2020-09-29 19:18:52 +02:00
}
2021-03-27 16:13:32 +01:00
/// Returns the SET task, for use with PPI.
#[cfg(not(feature = "nrf51"))]
2021-03-27 16:13:32 +01:00
pub fn task_set(&self) -> Task {
2021-10-28 03:07:06 +02:00
let g = regs();
2021-03-27 16:13:32 +01:00
Task::from_reg(&g.tasks_set[self.ch.number()])
2020-09-29 19:18:52 +02:00
}
}
// =======================
pub(crate) struct PortInputFuture<'a> {
pin: PeripheralRef<'a, AnyPin>,
}
impl<'a> PortInputFuture<'a> {
fn new(pin: impl Peripheral<P = impl GpioPin> + 'a) -> Self {
Self {
pin: pin.into_ref().map_into(),
}
}
}
impl<'a> Unpin for PortInputFuture<'a> {}
2021-03-20 03:09:42 +01:00
impl<'a> Drop for PortInputFuture<'a> {
fn drop(&mut self) {
self.pin.conf().modify(|_, w| w.sense().disabled());
}
}
2021-03-20 03:09:42 +01:00
impl<'a> Future for PortInputFuture<'a> {
type Output = ();
fn poll(self: core::pin::Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
PORT_WAKERS[self.pin.pin_port() as usize].register(cx.waker());
2021-03-20 03:09:42 +01:00
if self.pin.conf().read().sense().is_disabled() {
Poll::Ready(())
} else {
Poll::Pending
}
}
}
impl<'d, T: GpioPin> Input<'d, T> {
pub async fn wait_for_high(&mut self) {
self.pin.wait_for_high().await
}
pub async fn wait_for_low(&mut self) {
self.pin.wait_for_low().await
}
pub async fn wait_for_rising_edge(&mut self) {
self.pin.wait_for_rising_edge().await
}
pub async fn wait_for_falling_edge(&mut self) {
self.pin.wait_for_falling_edge().await
}
pub async fn wait_for_any_edge(&mut self) {
self.pin.wait_for_any_edge().await
}
}
impl<'d, T: GpioPin> Flex<'d, T> {
pub async fn wait_for_high(&mut self) {
self.pin.conf().modify(|_, w| w.sense().high());
PortInputFuture::new(&mut self.pin).await
}
pub async fn wait_for_low(&mut self) {
self.pin.conf().modify(|_, w| w.sense().low());
PortInputFuture::new(&mut self.pin).await
}
pub async fn wait_for_rising_edge(&mut self) {
self.wait_for_low().await;
self.wait_for_high().await;
}
pub async fn wait_for_falling_edge(&mut self) {
self.wait_for_high().await;
self.wait_for_low().await;
}
pub async fn wait_for_any_edge(&mut self) {
if self.is_high() {
self.pin.conf().modify(|_, w| w.sense().low());
} else {
self.pin.conf().modify(|_, w| w.sense().high());
}
PortInputFuture::new(&mut self.pin).await
}
}
// =======================
mod sealed {
pub trait Channel {}
}
pub trait Channel: sealed::Channel + Sized {
fn number(&self) -> usize;
fn degrade(self) -> AnyChannel {
AnyChannel {
number: self.number() as u8,
}
}
}
pub struct AnyChannel {
number: u8,
}
impl_peripheral!(AnyChannel);
impl sealed::Channel for AnyChannel {}
impl Channel for AnyChannel {
fn number(&self) -> usize {
self.number as usize
}
}
macro_rules! impl_channel {
($type:ident, $number:expr) => {
impl sealed::Channel for peripherals::$type {}
impl Channel for peripherals::$type {
fn number(&self) -> usize {
$number as usize
}
}
};
}
impl_channel!(GPIOTE_CH0, 0);
impl_channel!(GPIOTE_CH1, 1);
impl_channel!(GPIOTE_CH2, 2);
impl_channel!(GPIOTE_CH3, 3);
impl_channel!(GPIOTE_CH4, 4);
impl_channel!(GPIOTE_CH5, 5);
impl_channel!(GPIOTE_CH6, 6);
impl_channel!(GPIOTE_CH7, 7);
// ====================
mod eh02 {
use super::*;
impl<'d, C: Channel, T: GpioPin> embedded_hal_02::digital::v2::InputPin for InputChannel<'d, C, T> {
type Error = Infallible;
fn is_high(&self) -> Result<bool, Self::Error> {
Ok(self.pin.is_high())
}
fn is_low(&self) -> Result<bool, Self::Error> {
Ok(self.pin.is_low())
}
}
}
#[cfg(feature = "unstable-traits")]
mod eh1 {
use super::*;
impl<'d, C: Channel, T: GpioPin> embedded_hal_1::digital::ErrorType for InputChannel<'d, C, T> {
type Error = Infallible;
}
2022-06-12 22:15:44 +02:00
impl<'d, C: Channel, T: GpioPin> embedded_hal_1::digital::blocking::InputPin for InputChannel<'d, C, T> {
fn is_high(&self) -> Result<bool, Self::Error> {
Ok(self.pin.is_high())
}
fn is_low(&self) -> Result<bool, Self::Error> {
Ok(self.pin.is_low())
}
}
}
cfg_if::cfg_if! {
if #[cfg(all(feature = "unstable-traits", feature = "nightly"))] {
use futures::FutureExt;
impl<'d, T: GpioPin> embedded_hal_async::digital::Wait for Input<'d, T> {
type WaitForHighFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_high<'a>(&'a mut self) -> Self::WaitForHighFuture<'a> {
self.wait_for_high().map(Ok)
}
type WaitForLowFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_low<'a>(&'a mut self) -> Self::WaitForLowFuture<'a> {
self.wait_for_low().map(Ok)
}
type WaitForRisingEdgeFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_rising_edge<'a>(&'a mut self) -> Self::WaitForRisingEdgeFuture<'a> {
self.wait_for_rising_edge().map(Ok)
}
type WaitForFallingEdgeFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_falling_edge<'a>(&'a mut self) -> Self::WaitForFallingEdgeFuture<'a> {
self.wait_for_falling_edge().map(Ok)
}
type WaitForAnyEdgeFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_any_edge<'a>(&'a mut self) -> Self::WaitForAnyEdgeFuture<'a> {
self.wait_for_any_edge().map(Ok)
}
}
impl<'d, T: GpioPin> embedded_hal_async::digital::Wait for Flex<'d, T> {
type WaitForHighFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_high<'a>(&'a mut self) -> Self::WaitForHighFuture<'a> {
self.wait_for_high().map(Ok)
}
type WaitForLowFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_low<'a>(&'a mut self) -> Self::WaitForLowFuture<'a> {
self.wait_for_low().map(Ok)
}
type WaitForRisingEdgeFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_rising_edge<'a>(&'a mut self) -> Self::WaitForRisingEdgeFuture<'a> {
self.wait_for_rising_edge().map(Ok)
}
type WaitForFallingEdgeFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_falling_edge<'a>(&'a mut self) -> Self::WaitForFallingEdgeFuture<'a> {
self.wait_for_falling_edge().map(Ok)
}
type WaitForAnyEdgeFuture<'a> = impl Future<Output = Result<(), Self::Error>> + 'a where Self: 'a;
fn wait_for_any_edge<'a>(&'a mut self) -> Self::WaitForAnyEdgeFuture<'a> {
self.wait_for_any_edge().map(Ok)
}
}
}
}