2021-07-12 02:45:42 +02:00
|
|
|
use core::cell::Cell;
|
2022-06-12 22:15:44 +02:00
|
|
|
|
|
|
|
use atomic_polyfill::{AtomicU8, Ordering};
|
2021-07-12 02:45:42 +02:00
|
|
|
use critical_section::CriticalSection;
|
2022-08-22 21:46:09 +02:00
|
|
|
use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
|
|
|
|
use embassy_sync::blocking_mutex::Mutex;
|
2022-08-17 23:40:16 +02:00
|
|
|
use embassy_time::driver::{AlarmHandle, Driver};
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2023-06-08 16:08:40 +02:00
|
|
|
use crate::interrupt::InterruptExt;
|
2021-07-12 02:45:42 +02:00
|
|
|
use crate::{interrupt, pac};
|
|
|
|
|
|
|
|
struct AlarmState {
|
|
|
|
timestamp: Cell<u64>,
|
|
|
|
callback: Cell<Option<(fn(*mut ()), *mut ())>>,
|
|
|
|
}
|
|
|
|
unsafe impl Send for AlarmState {}
|
|
|
|
|
|
|
|
const ALARM_COUNT: usize = 4;
|
|
|
|
const DUMMY_ALARM: AlarmState = AlarmState {
|
|
|
|
timestamp: Cell::new(0),
|
|
|
|
callback: Cell::new(None),
|
|
|
|
};
|
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
struct TimerDriver {
|
2022-02-11 23:25:30 +01:00
|
|
|
alarms: Mutex<CriticalSectionRawMutex, [AlarmState; ALARM_COUNT]>,
|
2021-08-25 18:50:05 +02:00
|
|
|
next_alarm: AtomicU8,
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
|
2022-08-17 23:40:16 +02:00
|
|
|
embassy_time::time_driver_impl!(static DRIVER: TimerDriver = TimerDriver{
|
2022-02-11 23:25:30 +01:00
|
|
|
alarms: Mutex::const_new(CriticalSectionRawMutex::new(), [DUMMY_ALARM; ALARM_COUNT]),
|
2021-08-25 18:50:05 +02:00
|
|
|
next_alarm: AtomicU8::new(0),
|
|
|
|
});
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2021-08-03 22:08:13 +02:00
|
|
|
impl Driver for TimerDriver {
|
2021-08-25 18:50:05 +02:00
|
|
|
fn now(&self) -> u64 {
|
|
|
|
loop {
|
2023-06-16 01:32:18 +02:00
|
|
|
let hi = pac::TIMER.timerawh().read();
|
|
|
|
let lo = pac::TIMER.timerawl().read();
|
|
|
|
let hi2 = pac::TIMER.timerawh().read();
|
|
|
|
if hi == hi2 {
|
|
|
|
return (hi as u64) << 32 | (lo as u64);
|
2021-08-25 18:50:05 +02:00
|
|
|
}
|
|
|
|
}
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
unsafe fn allocate_alarm(&self) -> Option<AlarmHandle> {
|
2022-06-12 22:15:44 +02:00
|
|
|
let id = self.next_alarm.fetch_update(Ordering::AcqRel, Ordering::Acquire, |x| {
|
|
|
|
if x < ALARM_COUNT as u8 {
|
|
|
|
Some(x + 1)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
});
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2021-08-03 22:08:13 +02:00
|
|
|
match id {
|
|
|
|
Ok(id) => Some(AlarmHandle::new(id)),
|
|
|
|
Err(_) => None,
|
|
|
|
}
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
fn set_alarm_callback(&self, alarm: AlarmHandle, callback: fn(*mut ()), ctx: *mut ()) {
|
2021-08-03 22:08:13 +02:00
|
|
|
let n = alarm.id() as usize;
|
2021-07-12 02:45:42 +02:00
|
|
|
critical_section::with(|cs| {
|
2021-08-25 18:50:05 +02:00
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
2021-07-12 02:45:42 +02:00
|
|
|
alarm.callback.set(Some((callback, ctx)));
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-10-24 08:17:43 +02:00
|
|
|
fn set_alarm(&self, alarm: AlarmHandle, timestamp: u64) -> bool {
|
2021-08-03 22:08:13 +02:00
|
|
|
let n = alarm.id() as usize;
|
2021-07-12 02:45:42 +02:00
|
|
|
critical_section::with(|cs| {
|
2021-08-25 18:50:05 +02:00
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
2021-07-12 02:45:42 +02:00
|
|
|
alarm.timestamp.set(timestamp);
|
|
|
|
|
|
|
|
// Arm it.
|
|
|
|
// Note that we're not checking the high bits at all. This means the irq may fire early
|
|
|
|
// if the alarm is more than 72 minutes (2^32 us) in the future. This is OK, since on irq fire
|
|
|
|
// it is checked if the alarm time has passed.
|
2023-06-16 01:32:18 +02:00
|
|
|
pac::TIMER.alarm(n).write_value(timestamp as u32);
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2022-10-24 10:10:59 +02:00
|
|
|
let now = self.now();
|
|
|
|
if timestamp <= now {
|
|
|
|
// If alarm timestamp has passed the alarm will not fire.
|
|
|
|
// Disarm the alarm and return `false` to indicate that.
|
2023-06-16 01:32:18 +02:00
|
|
|
pac::TIMER.armed().write(|w| w.set_armed(1 << n));
|
2022-10-24 10:10:59 +02:00
|
|
|
|
|
|
|
alarm.timestamp.set(u64::MAX);
|
|
|
|
|
|
|
|
false
|
|
|
|
} else {
|
|
|
|
true
|
|
|
|
}
|
2021-07-12 02:45:42 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
impl TimerDriver {
|
|
|
|
fn check_alarm(&self, n: usize) {
|
|
|
|
critical_section::with(|cs| {
|
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
|
|
|
let timestamp = alarm.timestamp.get();
|
|
|
|
if timestamp <= self.now() {
|
|
|
|
self.trigger_alarm(n, cs)
|
|
|
|
} else {
|
|
|
|
// Not elapsed, arm it again.
|
|
|
|
// This can happen if it was set more than 2^32 us in the future.
|
2023-06-16 01:32:18 +02:00
|
|
|
pac::TIMER.alarm(n).write_value(timestamp as u32);
|
2021-08-25 18:50:05 +02:00
|
|
|
}
|
|
|
|
});
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
// clear the irq
|
2023-06-16 01:32:18 +02:00
|
|
|
pac::TIMER.intr().write(|w| w.set_alarm(n, true));
|
2021-08-25 18:50:05 +02:00
|
|
|
}
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
fn trigger_alarm(&self, n: usize, cs: CriticalSection) {
|
|
|
|
// disarm
|
2023-06-16 01:32:18 +02:00
|
|
|
pac::TIMER.armed().write(|w| w.set_armed(1 << n));
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
|
|
|
alarm.timestamp.set(u64::MAX);
|
2021-07-12 02:45:42 +02:00
|
|
|
|
2021-08-25 18:50:05 +02:00
|
|
|
// Call after clearing alarm, so the callback can set another alarm.
|
|
|
|
if let Some((f, ctx)) = alarm.callback.get() {
|
|
|
|
f(ctx);
|
|
|
|
}
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// safety: must be called exactly once at bootup
|
|
|
|
pub unsafe fn init() {
|
|
|
|
// init alarms
|
|
|
|
critical_section::with(|cs| {
|
2021-08-25 18:50:05 +02:00
|
|
|
let alarms = DRIVER.alarms.borrow(cs);
|
2021-07-12 02:45:42 +02:00
|
|
|
for a in alarms {
|
|
|
|
a.timestamp.set(u64::MAX);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// enable all irqs
|
|
|
|
pac::TIMER.inte().write(|w| {
|
|
|
|
w.set_alarm(0, true);
|
|
|
|
w.set_alarm(1, true);
|
|
|
|
w.set_alarm(2, true);
|
|
|
|
w.set_alarm(3, true);
|
|
|
|
});
|
2023-06-08 16:08:40 +02:00
|
|
|
interrupt::TIMER_IRQ_0.enable();
|
|
|
|
interrupt::TIMER_IRQ_1.enable();
|
|
|
|
interrupt::TIMER_IRQ_2.enable();
|
|
|
|
interrupt::TIMER_IRQ_3.enable();
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 18:00:19 +02:00
|
|
|
#[cfg(feature = "rt")]
|
2021-07-12 02:45:42 +02:00
|
|
|
#[interrupt]
|
2023-06-16 01:32:18 +02:00
|
|
|
fn TIMER_IRQ_0() {
|
2021-08-25 18:50:05 +02:00
|
|
|
DRIVER.check_alarm(0)
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 18:00:19 +02:00
|
|
|
#[cfg(feature = "rt")]
|
2021-07-12 02:45:42 +02:00
|
|
|
#[interrupt]
|
2023-06-16 01:32:18 +02:00
|
|
|
fn TIMER_IRQ_1() {
|
2021-08-25 18:50:05 +02:00
|
|
|
DRIVER.check_alarm(1)
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 18:00:19 +02:00
|
|
|
#[cfg(feature = "rt")]
|
2021-07-12 02:45:42 +02:00
|
|
|
#[interrupt]
|
2023-06-16 01:32:18 +02:00
|
|
|
fn TIMER_IRQ_2() {
|
2021-08-25 18:50:05 +02:00
|
|
|
DRIVER.check_alarm(2)
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|
|
|
|
|
2023-06-08 18:00:19 +02:00
|
|
|
#[cfg(feature = "rt")]
|
2021-07-12 02:45:42 +02:00
|
|
|
#[interrupt]
|
2023-06-16 01:32:18 +02:00
|
|
|
fn TIMER_IRQ_3() {
|
2021-08-25 18:50:05 +02:00
|
|
|
DRIVER.check_alarm(3)
|
2021-07-12 02:45:42 +02:00
|
|
|
}
|