use super::Monotonic;
pub use super::{TimeoutError, TimerQueue};
use core::future::Future;
pub use fugit::{self, ExtU64};
use rp2040_pac::{timer, Interrupt, NVIC, RESETS, TIMER};
pub struct Timer;
impl Timer {
    pub fn start(
        timer: TIMER,
        resets: &RESETS,
        _interrupt_token: impl crate::InterruptToken<Self>,
    ) {
        resets.reset.modify(|_, w| w.timer().clear_bit());
        while resets.reset_done.read().timer().bit_is_clear() {}
        timer.inte.modify(|_, w| w.alarm_0().bit(true));
        TIMER_QUEUE.initialize(Self {});
        unsafe {
            crate::set_monotonic_prio(rp2040_pac::NVIC_PRIO_BITS, Interrupt::TIMER_IRQ_0);
            NVIC::unmask(Interrupt::TIMER_IRQ_0);
        }
    }
    fn timer() -> &'static timer::RegisterBlock {
        unsafe { &*TIMER::ptr() }
    }
}
static TIMER_QUEUE: TimerQueue<Timer> = TimerQueue::new();
impl Timer {
    #[doc(hidden)]
    pub fn __tq() -> &'static TimerQueue<Timer> {
        &TIMER_QUEUE
    }
    #[inline]
    pub async fn timeout_at<F: Future>(
        instant: <Self as Monotonic>::Instant,
        future: F,
    ) -> Result<F::Output, TimeoutError> {
        TIMER_QUEUE.timeout_at(instant, future).await
    }
    #[inline]
    pub async fn timeout_after<F: Future>(
        duration: <Self as Monotonic>::Duration,
        future: F,
    ) -> Result<F::Output, TimeoutError> {
        TIMER_QUEUE.timeout_after(duration, future).await
    }
    #[inline]
    pub async fn delay(duration: <Self as Monotonic>::Duration) {
        TIMER_QUEUE.delay(duration).await;
    }
    #[inline]
    pub async fn delay_until(instant: <Self as Monotonic>::Instant) {
        TIMER_QUEUE.delay_until(instant).await;
    }
}
impl Monotonic for Timer {
    type Instant = fugit::TimerInstantU64<1_000_000>;
    type Duration = fugit::TimerDurationU64<1_000_000>;
    const ZERO: Self::Instant = Self::Instant::from_ticks(0);
    fn now() -> Self::Instant {
        let timer = Self::timer();
        let mut hi0 = timer.timerawh.read().bits();
        loop {
            let low = timer.timerawl.read().bits();
            let hi1 = timer.timerawh.read().bits();
            if hi0 == hi1 {
                break Self::Instant::from_ticks((u64::from(hi0) << 32) | u64::from(low));
            }
            hi0 = hi1;
        }
    }
    fn set_compare(instant: Self::Instant) {
        let now = Self::now();
        let max = u32::MAX as u64;
        let val = match instant.checked_duration_since(now) {
            Some(x) if x.ticks() <= max => instant.duration_since_epoch().ticks() & max, _ => 0, };
        Self::timer()
            .alarm0
            .write(|w| unsafe { w.bits(val as u32) });
    }
    fn clear_compare_flag() {
        Self::timer().intr.modify(|_, w| w.alarm_0().bit(true));
    }
    fn pend_interrupt() {
        rp2040_pac::NVIC::pend(Interrupt::TIMER_IRQ_0);
    }
    fn on_interrupt() {}
    fn enable_timer() {}
    fn disable_timer() {}
}
#[cfg(feature = "embedded-hal-async")]
impl embedded_hal_async::delay::DelayUs for Timer {
    async fn delay_us(&mut self, us: u32) {
        Self::delay((us as u64).micros()).await;
    }
    async fn delay_ms(&mut self, ms: u32) {
        Self::delay((ms as u64).millis()).await;
    }
}
impl embedded_hal::delay::DelayUs for Timer {
    fn delay_us(&mut self, us: u32) {
        let done = Self::now() + u64::from(us).micros();
        while Self::now() < done {}
    }
}
#[macro_export]
macro_rules! create_rp2040_monotonic_token {
    () => {{
        #[no_mangle]
        #[allow(non_snake_case)]
        unsafe extern "C" fn TIMER_IRQ_0() {
            $crate::rp2040::Timer::__tq().on_monotonic_interrupt();
        }
        pub struct Rp2040Token;
        unsafe impl $crate::InterruptToken<$crate::rp2040::Timer> for Rp2040Token {}
        Rp2040Token
    }};
}