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
use r3_core::kernel::{traits, Cfg, StaticInterruptHandler};
use r3_kernel::{KernelTraits, PortToKernel, System, UTicks};
use r3_portkit::tickless::{TicklessCfg, TicklessOptions, TicklessStateTrait};
use tock_registers::{
interfaces::{Readable, Writeable},
registers::ReadWrite,
};
use crate::mtime::cfg::MtimeOptions;
pub unsafe trait TimerInstance: KernelTraits + MtimeOptions {
const TICKLESS_CFG: TicklessCfg = match TicklessCfg::new(TicklessOptions {
hw_freq_num: <Self as MtimeOptions>::FREQUENCY,
hw_freq_denom: <Self as MtimeOptions>::FREQUENCY_DENOMINATOR,
hw_headroom_ticks: <Self as MtimeOptions>::HEADROOM,
force_full_hw_period: true,
resettable: !<Self as MtimeOptions>::RESET_MTIME,
}) {
Ok(x) => x,
Err(e) => e.panic(),
};
type TicklessState: TicklessStateTrait;
fn tickless_state() -> *mut Self::TicklessState;
}
trait TimerInstanceExt: TimerInstance {
#[inline(always)]
fn mtime_reg32() -> &'static [ReadWrite<u32>; 2] {
unsafe { &*(Self::MTIME_PTR as *const _) }
}
#[inline(always)]
fn mtime_reg64() -> &'static ReadWrite<u64> {
unsafe { &*(Self::MTIME_PTR as *const _) }
}
#[inline(always)]
fn mtimecmp_reg32() -> &'static [ReadWrite<u32>; 2] {
unsafe { &*(Self::MTIMECMP_PTR as *const _) }
}
#[cfg(target_arch = "riscv64")]
#[inline(always)]
fn mtime() -> u64 {
Self::mtime_reg64().get()
}
#[cfg(not(target_arch = "riscv64"))]
#[inline(always)]
fn mtime() -> u64 {
loop {
let hi1 = Self::mtime_reg32()[1].get();
let lo = Self::mtime_reg32()[0].get();
let hi2 = Self::mtime_reg32()[1].get();
if hi1 == hi2 {
return lo as u64 | ((hi2 as u64) << 32);
}
}
}
}
impl<T: TimerInstance> TimerInstanceExt for T {}
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);
}
#[inline]
pub fn init<Traits: TimerInstance>() {
let tcfg = &Traits::TICKLESS_CFG;
let tstate = unsafe { &mut *Traits::tickless_state() };
if Traits::RESET_MTIME {
Traits::mtime_reg32()[0].set(0);
} else {
tstate.reset(tcfg, Traits::mtime_reg32()[0].get());
}
}
pub unsafe fn tick_count<Traits: TimerInstance>() -> UTicks {
let tcfg = &Traits::TICKLESS_CFG;
let hw_tick_count = Traits::mtime_reg32()[0].get();
let tstate = unsafe { &mut *Traits::tickless_state() };
tstate.tick_count(tcfg, hw_tick_count)
}
pub unsafe fn pend_tick<Traits: TimerInstance>() {
Traits::mtimecmp_reg32()[0].set(0);
Traits::mtimecmp_reg32()[1].set(0);
}
pub unsafe fn pend_tick_after<Traits: TimerInstance>(tick_count_delta: UTicks) {
let tcfg = &Traits::TICKLESS_CFG;
let tstate = unsafe { &mut *Traits::tickless_state() };
let cur_hw_tick_count = Traits::mtime();
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::mtimecmp_reg32()[0].set(next_hw_tick_count as u32);
Traits::mtimecmp_reg32()[1].set((next_hw_tick_count >> 32) as u32);
}
#[inline]
fn handle_tick<Traits: TimerInstance>() {
let tcfg = &Traits::TICKLESS_CFG;
let tstate = unsafe { &mut *Traits::tickless_state() };
let cur_hw_tick_count = Traits::mtime_reg32()[0].get();
tstate.mark_reference(tcfg, cur_hw_tick_count);
unsafe { Traits::timer_tick() };
}