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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
//! The implementation of the SBI-based timer driver.
#[cfg(any(
    target_arch = "riscv32",
    target_arch = "riscv64",
    target_arch = "riscv128"
))]
use core::arch::asm;
use r3_core::kernel::{traits, Cfg, StaticInterruptHandler};
use r3_kernel::{KernelTraits, PortToKernel, System, UTicks};
use r3_portkit::tickless::{TicklessCfg, TicklessOptions, TicklessStateTrait};

use crate::sbi_timer::cfg::SbiTimerOptions;

/// Implemented on a kernel trait type by [`use_sbi_timer!`].
///
/// # Safety
///
/// Only meant to be implemented by [`use_sbi_timer!`].
pub unsafe trait TimerInstance: KernelTraits + SbiTimerOptions {
    const TICKLESS_CFG: TicklessCfg = match TicklessCfg::new(TicklessOptions {
        hw_freq_num: <Self as SbiTimerOptions>::FREQUENCY,
        hw_freq_denom: <Self as SbiTimerOptions>::FREQUENCY_DENOMINATOR,
        hw_headroom_ticks: <Self as SbiTimerOptions>::HEADROOM,
        // `stime` is a 64-bit free-running counter and it is
        // expensive to create a 32-bit timer with an arbitrary
        // period out of it.
        force_full_hw_period: true,
        // Clearing `stime` is not possible, so we must record the
        // starting value of `stime` by calling `reset`.
        resettable: true,
    }) {
        Ok(x) => x,
        Err(e) => e.panic(),
    };

    type TicklessState: TicklessStateTrait;

    fn tickless_state() -> *mut Self::TicklessState;
}

#[cfg(any(
    target_arch = "riscv32",
    target_arch = "riscv64",
    target_arch = "riscv128"
))]
trait TimerInstanceExt: TimerInstance {
    #[inline(always)]
    fn time_lo() -> usize {
        let read: usize;
        unsafe { asm!("csrr {read}, time", read = lateout(reg) read) };
        read
    }

    #[cfg(target_arch = "riscv32")]
    #[inline(always)]
    fn time_hi() -> usize {
        let read: usize;
        unsafe { asm!("csrr {read}, timeh", read = lateout(reg) read) };
        read
    }

    #[inline(always)]
    #[cfg(target_arch = "riscv32")]
    fn set_timecmp(value: u64) {
        unsafe {
            asm!(
                "ecall",
                inout("a0") value as u32 => _,  // param0 => error
                inout("a1") (value >> 32) as u32 => _, // param => value
                out("a2") _,
                out("a3") _,
                out("a4") _,
                out("a5") _,
                inout("a6") 0 => _, //fid
                inout("a7") 0x54494D45 => _, // eid
            )
        };
    }

    #[inline(always)]
    #[cfg(not(target_arch = "riscv32"))]
    fn set_timecmp(value: u64) {
        unsafe {
            asm!(
                "ecall",
                inout("a0") value as usize => _,  // param0 => error
                out("a1") _,
                out("a2") _,
                out("a3") _,
                out("a4") _,
                out("a5") _,
                inout("a6") 0 => _, //fid
                inout("a7") 0x54494D45 => _, // eid
            )
        };
    }

    #[cfg(not(target_arch = "riscv32"))]
    #[inline(always)]
    fn time() -> u64 {
        Self::time_lo() as u64
    }

    #[cfg(target_arch = "riscv32")]
    #[inline(always)]
    fn time() -> u64 {
        loop {
            let hi1 = Self::time_hi();
            let lo = Self::time_lo();
            let hi2 = Self::time_hi();
            if hi1 == hi2 {
                return lo as u64 | ((hi2 as u64) << 32);
            }
        }
    }
}
#[cfg(not(any(
    target_arch = "riscv32",
    target_arch = "riscv64",
    target_arch = "riscv128"
)))]
trait TimerInstanceExt: TimerInstance {
    fn time_lo() -> usize {
        unimplemented!("target mismatch")
    }

    fn set_timecmp(_value: u64) {
        unimplemented!("target mismatch")
    }

    fn time() -> u64 {
        unimplemented!("target mismatch")
    }
}
impl<T: TimerInstance> TimerInstanceExt for T {}

/// The configuration function.
pub const fn configure<C, Traits: TimerInstance>(b: &mut Cfg<C>)
where
    C: ~const traits::CfgInterruptLine<System = System<Traits>>,
{
    StaticInterruptHandler::define()
        .line(Traits::INTERRUPT_NUM)
        .start(handle_tick::<Traits>)
        .finish(b);
}

/// Implements [`crate::Timer::init`]
#[inline]
pub fn init<Traits: TimerInstance>() {
    let tcfg = &Traits::TICKLESS_CFG;

    // Safety: No context switching during boot
    let tstate = unsafe { &mut *Traits::tickless_state() };

    tstate.reset(tcfg, Traits::time_lo() as u32);
}

/// Implements [`r3_kernel::PortTimer::tick_count`]
///
/// # Safety
///
/// Only meant to be referenced by `use_sbi_timer!`.
pub unsafe fn tick_count<Traits: TimerInstance>() -> UTicks {
    let tcfg = &Traits::TICKLESS_CFG;

    let hw_tick_count = Traits::time_lo() as u32;

    // Safety: CPU Lock protects it from concurrent access
    let tstate = unsafe { &mut *Traits::tickless_state() };
    tstate.tick_count(tcfg, hw_tick_count)
}

/// Implements [`r3_kernel::PortTimer::pend_tick`]
///
/// # Safety
///
/// Only meant to be referenced by `use_sbi_timer!`.
pub unsafe fn pend_tick<Traits: TimerInstance>() {
    Traits::set_timecmp(0);
}

/// Implements [`r3_kernel::PortTimer::pend_tick_after`]
///
/// # Safety
///
/// Only meant to be referenced by `use_sbi_timer!`.
pub unsafe fn pend_tick_after<Traits: TimerInstance>(tick_count_delta: UTicks) {
    let tcfg = &Traits::TICKLESS_CFG;
    // Safety: CPU Lock protects it from concurrent access
    let tstate = unsafe { &mut *Traits::tickless_state() };

    let cur_hw_tick_count = Traits::time();
    let hw_ticks = tstate
        .mark_reference_and_measure(tcfg, cur_hw_tick_count as u32, tick_count_delta)
        .hw_ticks;

    let next_hw_tick_count = cur_hw_tick_count + hw_ticks as u64;

    Traits::set_timecmp(next_hw_tick_count);
}

#[inline]
fn handle_tick<Traits: TimerInstance>() {
    let tcfg = &Traits::TICKLESS_CFG;

    // Safety: CPU Lock protects it from concurrent access
    let tstate = unsafe { &mut *Traits::tickless_state() };

    let cur_hw_tick_count = Traits::time_lo() as u32;
    tstate.mark_reference(tcfg, cur_hw_tick_count);

    // Safety: CPU Lock inactive, an interrupt context
    unsafe { Traits::timer_tick() };
}