2020-09-24 19:59:20 +02:00
|
|
|
use core::cell::Cell;
|
2021-02-20 01:43:10 +01:00
|
|
|
use core::sync::atomic::{compiler_fence, AtomicU32, Ordering};
|
2021-05-11 00:57:52 +02:00
|
|
|
use critical_section::CriticalSection;
|
2021-03-01 00:44:38 +01:00
|
|
|
use embassy::interrupt::InterruptExt;
|
2021-01-13 03:17:42 +01:00
|
|
|
use embassy::time::Clock;
|
2021-05-15 00:05:32 +02:00
|
|
|
use embassy::util::{CriticalSectionMutex as Mutex, Unborrow};
|
2020-09-25 23:38:42 +02:00
|
|
|
|
2021-05-11 00:57:52 +02:00
|
|
|
use crate::interrupt::Interrupt;
|
2021-03-27 03:12:58 +01:00
|
|
|
use crate::pac;
|
|
|
|
use crate::{interrupt, peripherals};
|
2020-09-24 19:59:20 +02:00
|
|
|
|
2021-02-15 01:01:45 +01:00
|
|
|
// RTC timekeeping works with something we call "periods", which are time intervals
|
|
|
|
// of 2^23 ticks. The RTC counter value is 24 bits, so one "overflow cycle" is 2 periods.
|
|
|
|
//
|
|
|
|
// A `period` count is maintained in parallel to the RTC hardware `counter`, like this:
|
|
|
|
// - `period` and `counter` start at 0
|
|
|
|
// - `period` is incremented on overflow (at counter value 0)
|
|
|
|
// - `period` is incremented "midway" between overflows (at counter value 0x800000)
|
|
|
|
//
|
|
|
|
// Therefore, when `period` is even, counter is in 0..0x7fffff. When odd, counter is in 0x800000..0xFFFFFF
|
|
|
|
// This allows for now() to return the correct value even if it races an overflow.
|
|
|
|
//
|
|
|
|
// To get `now()`, `period` is read first, then `counter` is read. If the counter value matches
|
|
|
|
// the expected range for the `period` parity, we're done. If it doesn't, this means that
|
|
|
|
// a new period start has raced us between reading `period` and `counter`, so we assume the `counter` value
|
|
|
|
// corresponds to the next period.
|
|
|
|
//
|
|
|
|
// `period` is a 32bit integer, so It overflows on 2^32 * 2^23 / 32768 seconds of uptime, which is 34865 years.
|
|
|
|
|
2020-09-24 19:59:20 +02:00
|
|
|
fn calc_now(period: u32, counter: u32) -> u64 {
|
2021-02-15 01:01:45 +01:00
|
|
|
((period as u64) << 23) + ((counter ^ ((period & 1) << 23)) as u64)
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
|
2020-09-26 00:35:25 +02:00
|
|
|
fn compare_n(n: usize) -> u32 {
|
|
|
|
1 << (n + 16)
|
|
|
|
}
|
|
|
|
|
2021-02-14 01:41:36 +01:00
|
|
|
#[cfg(tests)]
|
2020-09-24 19:59:20 +02:00
|
|
|
mod test {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_calc_now() {
|
|
|
|
assert_eq!(calc_now(0, 0x000000), 0x0_000000);
|
|
|
|
assert_eq!(calc_now(0, 0x000001), 0x0_000001);
|
|
|
|
assert_eq!(calc_now(0, 0x7FFFFF), 0x0_7FFFFF);
|
2021-02-15 01:01:45 +01:00
|
|
|
assert_eq!(calc_now(1, 0x7FFFFF), 0x1_7FFFFF);
|
2020-09-24 19:59:20 +02:00
|
|
|
assert_eq!(calc_now(0, 0x800000), 0x0_800000);
|
|
|
|
assert_eq!(calc_now(1, 0x800000), 0x0_800000);
|
|
|
|
assert_eq!(calc_now(1, 0x800001), 0x0_800001);
|
|
|
|
assert_eq!(calc_now(1, 0xFFFFFF), 0x0_FFFFFF);
|
2021-02-15 01:01:45 +01:00
|
|
|
assert_eq!(calc_now(2, 0xFFFFFF), 0x1_FFFFFF);
|
2020-09-24 19:59:20 +02:00
|
|
|
assert_eq!(calc_now(1, 0x000000), 0x1_000000);
|
|
|
|
assert_eq!(calc_now(2, 0x000000), 0x1_000000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 23:25:49 +02:00
|
|
|
struct AlarmState {
|
|
|
|
timestamp: Cell<u64>,
|
2021-02-02 05:14:52 +01:00
|
|
|
callback: Cell<Option<(fn(*mut ()), *mut ())>>,
|
2020-09-25 23:25:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl AlarmState {
|
|
|
|
fn new() -> Self {
|
|
|
|
Self {
|
|
|
|
timestamp: Cell::new(u64::MAX),
|
|
|
|
callback: Cell::new(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const ALARM_COUNT: usize = 3;
|
|
|
|
|
2020-12-29 01:05:28 +01:00
|
|
|
pub struct RTC<T: Instance> {
|
2020-09-24 19:59:20 +02:00
|
|
|
rtc: T,
|
2020-12-29 01:05:28 +01:00
|
|
|
irq: T::Interrupt,
|
2020-09-24 19:59:20 +02:00
|
|
|
|
|
|
|
/// Number of 2^23 periods elapsed since boot.
|
|
|
|
period: AtomicU32,
|
|
|
|
|
|
|
|
/// Timestamp at which to fire alarm. u64::MAX if no alarm is scheduled.
|
2020-09-25 23:25:49 +02:00
|
|
|
alarms: Mutex<[AlarmState; ALARM_COUNT]>,
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
|
2020-12-29 01:05:28 +01:00
|
|
|
unsafe impl<T: Instance> Send for RTC<T> {}
|
|
|
|
unsafe impl<T: Instance> Sync for RTC<T> {}
|
2020-09-24 22:41:52 +02:00
|
|
|
|
2020-09-24 19:59:20 +02:00
|
|
|
impl<T: Instance> RTC<T> {
|
2020-12-29 01:05:28 +01:00
|
|
|
pub fn new(rtc: T, irq: T::Interrupt) -> Self {
|
2020-09-24 19:59:20 +02:00
|
|
|
Self {
|
|
|
|
rtc,
|
2020-12-29 01:05:28 +01:00
|
|
|
irq,
|
2020-09-24 19:59:20 +02:00
|
|
|
period: AtomicU32::new(0),
|
2020-09-25 23:25:49 +02:00
|
|
|
alarms: Mutex::new([AlarmState::new(), AlarmState::new(), AlarmState::new()]),
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn start(&'static self) {
|
2021-03-27 03:12:58 +01:00
|
|
|
let r = self.rtc.regs();
|
|
|
|
r.cc[3].write(|w| unsafe { w.bits(0x800000) });
|
2020-09-24 19:59:20 +02:00
|
|
|
|
2021-03-27 03:12:58 +01:00
|
|
|
r.intenset.write(|w| {
|
2020-09-24 19:59:20 +02:00
|
|
|
let w = w.ovrflw().set();
|
2020-09-26 00:35:25 +02:00
|
|
|
let w = w.compare3().set();
|
2020-09-24 19:59:20 +02:00
|
|
|
w
|
|
|
|
});
|
|
|
|
|
2021-03-27 03:12:58 +01:00
|
|
|
r.tasks_clear.write(|w| unsafe { w.bits(1) });
|
|
|
|
r.tasks_start.write(|w| unsafe { w.bits(1) });
|
2020-09-24 19:59:20 +02:00
|
|
|
|
|
|
|
// Wait for clear
|
2021-03-27 03:12:58 +01:00
|
|
|
while r.counter.read().bits() != 0 {}
|
2020-09-24 19:59:20 +02:00
|
|
|
|
2021-02-26 02:04:48 +01:00
|
|
|
self.irq.set_handler(|ptr| unsafe {
|
|
|
|
let this = &*(ptr as *const () as *const Self);
|
|
|
|
this.on_interrupt();
|
|
|
|
});
|
|
|
|
self.irq.set_handler_context(self as *const _ as *mut _);
|
2020-12-29 01:05:28 +01:00
|
|
|
self.irq.unpend();
|
|
|
|
self.irq.enable();
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn on_interrupt(&self) {
|
2021-03-27 03:12:58 +01:00
|
|
|
let r = self.rtc.regs();
|
|
|
|
if r.events_ovrflw.read().bits() == 1 {
|
|
|
|
r.events_ovrflw.write(|w| w);
|
2020-09-24 19:59:20 +02:00
|
|
|
self.next_period();
|
|
|
|
}
|
|
|
|
|
2021-03-27 03:12:58 +01:00
|
|
|
if r.events_compare[3].read().bits() == 1 {
|
|
|
|
r.events_compare[3].write(|w| w);
|
2020-09-24 19:59:20 +02:00
|
|
|
self.next_period();
|
|
|
|
}
|
|
|
|
|
2020-09-25 23:25:49 +02:00
|
|
|
for n in 0..ALARM_COUNT {
|
2021-03-27 03:12:58 +01:00
|
|
|
if r.events_compare[n].read().bits() == 1 {
|
|
|
|
r.events_compare[n].write(|w| w);
|
2021-05-11 00:57:52 +02:00
|
|
|
critical_section::with(|cs| {
|
2020-09-25 23:25:49 +02:00
|
|
|
self.trigger_alarm(n, cs);
|
|
|
|
})
|
|
|
|
}
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn next_period(&self) {
|
2021-05-11 00:57:52 +02:00
|
|
|
critical_section::with(|cs| {
|
2021-03-27 03:12:58 +01:00
|
|
|
let r = self.rtc.regs();
|
2021-02-20 01:43:10 +01:00
|
|
|
let period = self.period.fetch_add(1, Ordering::Relaxed) + 1;
|
2020-09-24 19:59:20 +02:00
|
|
|
let t = (period as u64) << 23;
|
|
|
|
|
2020-09-26 00:35:25 +02:00
|
|
|
for n in 0..ALARM_COUNT {
|
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
2020-09-25 23:25:49 +02:00
|
|
|
let at = alarm.timestamp.get();
|
2020-09-24 19:59:20 +02:00
|
|
|
|
2020-09-25 23:25:49 +02:00
|
|
|
let diff = at - t;
|
|
|
|
if diff < 0xc00000 {
|
2021-03-27 03:12:58 +01:00
|
|
|
r.cc[n].write(|w| unsafe { w.bits(at as u32 & 0xFFFFFF) });
|
|
|
|
r.intenset.write(|w| unsafe { w.bits(compare_n(n)) });
|
2020-09-25 23:25:49 +02:00
|
|
|
}
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-05-11 00:57:52 +02:00
|
|
|
fn trigger_alarm(&self, n: usize, cs: CriticalSection) {
|
2021-03-27 03:12:58 +01:00
|
|
|
let r = self.rtc.regs();
|
|
|
|
r.intenclr.write(|w| unsafe { w.bits(compare_n(n)) });
|
2020-09-24 19:59:20 +02:00
|
|
|
|
2020-09-25 23:25:49 +02:00
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
|
|
|
alarm.timestamp.set(u64::MAX);
|
|
|
|
|
|
|
|
// Call after clearing alarm, so the callback can set another alarm.
|
2021-02-14 01:41:36 +01:00
|
|
|
if let Some((f, ctx)) = alarm.callback.get() {
|
|
|
|
f(ctx);
|
|
|
|
}
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
|
2021-02-02 05:14:52 +01:00
|
|
|
fn set_alarm_callback(&self, n: usize, callback: fn(*mut ()), ctx: *mut ()) {
|
2021-05-11 00:57:52 +02:00
|
|
|
critical_section::with(|cs| {
|
2020-09-25 23:25:49 +02:00
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
2021-02-02 05:14:52 +01:00
|
|
|
alarm.callback.set(Some((callback, ctx)));
|
2020-09-25 23:25:49 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_alarm(&self, n: usize, timestamp: u64) {
|
2021-05-11 00:57:52 +02:00
|
|
|
critical_section::with(|cs| {
|
2020-09-25 23:25:49 +02:00
|
|
|
let alarm = &self.alarms.borrow(cs)[n];
|
|
|
|
alarm.timestamp.set(timestamp);
|
2020-09-24 22:41:52 +02:00
|
|
|
|
2020-09-24 19:59:20 +02:00
|
|
|
let t = self.now();
|
2021-02-15 01:01:45 +01:00
|
|
|
|
|
|
|
// If alarm timestamp has passed, trigger it instantly.
|
2020-09-24 23:26:24 +02:00
|
|
|
if timestamp <= t {
|
2020-09-25 23:25:49 +02:00
|
|
|
self.trigger_alarm(n, cs);
|
2020-09-24 19:59:20 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-03-27 03:12:58 +01:00
|
|
|
let r = self.rtc.regs();
|
|
|
|
|
2021-02-15 01:01:45 +01:00
|
|
|
// If it hasn't triggered yet, setup it in the compare channel.
|
2020-09-24 23:26:24 +02:00
|
|
|
let diff = timestamp - t;
|
2020-09-24 19:59:20 +02:00
|
|
|
if diff < 0xc00000 {
|
2021-01-13 03:17:58 +01:00
|
|
|
// nrf52 docs say:
|
|
|
|
// If the COUNTER is N, writing N or N+1 to a CC register may not trigger a COMPARE event.
|
|
|
|
// To workaround this, we never write a timestamp smaller than N+3.
|
|
|
|
// N+2 is not safe because rtc can tick from N to N+1 between calling now() and writing cc.
|
2021-02-15 01:01:45 +01:00
|
|
|
//
|
|
|
|
// It is impossible for rtc to tick more than once because
|
|
|
|
// - this code takes less time than 1 tick
|
|
|
|
// - it runs with interrupts disabled so nothing else can preempt it.
|
|
|
|
//
|
|
|
|
// This means that an alarm can be delayed for up to 2 ticks (from t+1 to t+3), but this is allowed
|
|
|
|
// by the Alarm trait contract. What's not allowed is triggering alarms *before* their scheduled time,
|
|
|
|
// and we don't do that here.
|
2021-01-13 03:17:58 +01:00
|
|
|
let safe_timestamp = timestamp.max(t + 3);
|
2021-03-27 03:12:58 +01:00
|
|
|
r.cc[n].write(|w| unsafe { w.bits(safe_timestamp as u32 & 0xFFFFFF) });
|
|
|
|
r.intenset.write(|w| unsafe { w.bits(compare_n(n)) });
|
2020-09-24 19:59:20 +02:00
|
|
|
} else {
|
2021-02-15 01:01:45 +01:00
|
|
|
// If it's too far in the future, don't setup the compare channel yet.
|
|
|
|
// It will be setup later by `next_period`.
|
2021-03-27 03:12:58 +01:00
|
|
|
r.intenclr.write(|w| unsafe { w.bits(compare_n(n)) });
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2020-09-24 23:26:24 +02:00
|
|
|
|
2020-09-25 03:25:06 +02:00
|
|
|
pub fn alarm0(&'static self) -> Alarm<T> {
|
2020-09-25 23:25:49 +02:00
|
|
|
Alarm { n: 0, rtc: self }
|
|
|
|
}
|
|
|
|
pub fn alarm1(&'static self) -> Alarm<T> {
|
|
|
|
Alarm { n: 1, rtc: self }
|
|
|
|
}
|
|
|
|
pub fn alarm2(&'static self) -> Alarm<T> {
|
|
|
|
Alarm { n: 2, rtc: self }
|
2020-09-24 23:26:24 +02:00
|
|
|
}
|
2020-09-25 03:25:06 +02:00
|
|
|
}
|
|
|
|
|
2020-09-25 23:38:42 +02:00
|
|
|
impl<T: Instance> embassy::time::Clock for RTC<T> {
|
|
|
|
fn now(&self) -> u64 {
|
2021-02-15 01:01:45 +01:00
|
|
|
// `period` MUST be read before `counter`, see comment at the top for details.
|
2021-02-20 01:43:10 +01:00
|
|
|
let period = self.period.load(Ordering::Relaxed);
|
|
|
|
compiler_fence(Ordering::Acquire);
|
2021-03-27 03:12:58 +01:00
|
|
|
let counter = self.rtc.regs().counter.read().bits();
|
2020-09-25 23:38:42 +02:00
|
|
|
calc_now(period, counter)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-25 03:25:06 +02:00
|
|
|
pub struct Alarm<T: Instance> {
|
2020-09-25 23:25:49 +02:00
|
|
|
n: usize,
|
2020-09-25 03:25:06 +02:00
|
|
|
rtc: &'static RTC<T>,
|
|
|
|
}
|
2020-09-24 19:59:20 +02:00
|
|
|
|
2020-09-25 03:25:06 +02:00
|
|
|
impl<T: Instance> embassy::time::Alarm for Alarm<T> {
|
2021-02-02 05:14:52 +01:00
|
|
|
fn set_callback(&self, callback: fn(*mut ()), ctx: *mut ()) {
|
|
|
|
self.rtc.set_alarm_callback(self.n, callback, ctx);
|
2020-09-25 23:25:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn set(&self, timestamp: u64) {
|
|
|
|
self.rtc.set_alarm(self.n, timestamp);
|
2020-09-24 22:41:52 +02:00
|
|
|
}
|
|
|
|
|
2020-09-25 03:25:06 +02:00
|
|
|
fn clear(&self) {
|
2020-09-25 23:25:49 +02:00
|
|
|
self.rtc.set_alarm(self.n, u64::MAX);
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-13 03:17:42 +01:00
|
|
|
mod sealed {
|
2021-03-27 03:12:58 +01:00
|
|
|
use super::*;
|
|
|
|
pub trait Instance {
|
|
|
|
fn regs(&self) -> &pac::rtc0::RegisterBlock;
|
|
|
|
}
|
|
|
|
}
|
2021-01-13 03:17:42 +01:00
|
|
|
|
2021-03-29 00:44:11 +02:00
|
|
|
macro_rules! impl_instance {
|
2021-03-27 03:12:58 +01:00
|
|
|
($type:ident, $irq:ident) => {
|
|
|
|
impl sealed::Instance for peripherals::$type {
|
|
|
|
fn regs(&self) -> &pac::rtc0::RegisterBlock {
|
|
|
|
unsafe { &*pac::$type::ptr() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl Instance for peripherals::$type {
|
|
|
|
type Interrupt = interrupt::$irq;
|
|
|
|
}
|
|
|
|
};
|
2021-01-13 03:17:42 +01:00
|
|
|
}
|
|
|
|
|
2020-09-24 19:59:20 +02:00
|
|
|
/// Implemented by all RTC instances.
|
2021-05-15 00:05:32 +02:00
|
|
|
pub trait Instance: Unborrow<Target = Self> + sealed::Instance + 'static {
|
2020-09-24 19:59:20 +02:00
|
|
|
/// The interrupt associated with this RTC instance.
|
2021-02-26 01:55:27 +01:00
|
|
|
type Interrupt: Interrupt;
|
2020-09-24 19:59:20 +02:00
|
|
|
}
|
|
|
|
|
2021-03-29 00:44:11 +02:00
|
|
|
impl_instance!(RTC0, RTC0);
|
|
|
|
impl_instance!(RTC1, RTC1);
|
2021-05-11 00:57:52 +02:00
|
|
|
#[cfg(any(feature = "nrf52832", feature = "nrf52833", feature = "nrf52840"))]
|
2021-03-29 00:44:11 +02:00
|
|
|
impl_instance!(RTC2, RTC2);
|