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
use r3::kernel::{traits, Cfg, InterruptLine, StaticInterruptHandler};
use r3_kernel::{KernelTraits, PortToKernel, System, UTicks};
use r3_port_arm::Gic;
use r3_portkit::tickless::{TicklessCfg, TicklessOptions, TicklessStateTrait};
use rza1::ostm0 as ostm;
use crate::os_timer::cfg::OsTimerOptions;
pub unsafe trait OsTimerInstance: KernelTraits + OsTimerOptions + Gic {
const TICKLESS_CFG: TicklessCfg = match TicklessCfg::new(TicklessOptions {
hw_freq_num: <Self as OsTimerOptions>::FREQUENCY,
hw_freq_denom: <Self as OsTimerOptions>::FREQUENCY_DENOMINATOR,
hw_headroom_ticks: <Self as OsTimerOptions>::HEADROOM,
force_full_hw_period: true,
resettable: false,
}) {
Ok(x) => x,
Err(e) => e.panic(),
};
type TicklessState: TicklessStateTrait;
fn tickless_state() -> *mut Self::TicklessState;
}
trait OsTimerInstanceExt: OsTimerInstance {
fn ostm_regs() -> &'static ostm::RegisterBlock {
unsafe { &*(Self::OSTM_BASE as *const ostm::RegisterBlock) }
}
}
impl<T: OsTimerInstance> OsTimerInstanceExt for T {}
pub const fn configure<C, Traits: OsTimerInstance>(b: &mut Cfg<C>)
where
C: ~const traits::CfgInterruptLine<System = System<Traits>>,
{
InterruptLine::define()
.line(Traits::INTERRUPT_OSTM)
.priority(Traits::INTERRUPT_OSTM_PRIORITY)
.enabled(true)
.finish(b);
StaticInterruptHandler::define()
.line(Traits::INTERRUPT_OSTM)
.start(handle_tick::<Traits>)
.finish(b);
}
#[inline]
pub fn init<System: OsTimerInstance>() {
let ostm = System::ostm_regs();
let tcfg = System::TICKLESS_CFG;
if let Some((addr, bit)) = System::STBCR_OSTM {
unsafe {
let ptr = addr as *mut u8;
ptr.write_volatile(ptr.read_volatile() & !(1u8 << bit));
}
}
ostm.tt.write(|w| w.tt().stop()); ostm.ctl.write(|w| {
w
.md0()
.clear_bit()
.md1()
.free_running_comparison()
});
ostm.cmp.write(|w| w.cmp().bits(u32::MAX)); ostm.ts.write(|w| w.ts().start()); debug_assert_eq!(tcfg.hw_max_tick_count(), u32::MAX);
System::set_interrupt_line_trigger_mode(
System::INTERRUPT_OSTM,
r3_port_arm::InterruptLineTriggerMode::RisingEdge,
)
.unwrap();
}
fn hw_tick_count<System: OsTimerInstance>() -> u32 {
System::ostm_regs().cnt.read().bits()
}
pub unsafe fn tick_count<System: OsTimerInstance>() -> UTicks {
let tcfg = &System::TICKLESS_CFG;
let hw_tick_count = hw_tick_count::<System>();
let tstate = unsafe { &mut *System::tickless_state() };
tstate.tick_count(tcfg, hw_tick_count)
}
#[inline]
pub unsafe fn pend_tick<Traits: OsTimerInstance>() {
let _ = InterruptLine::<System<Traits>>::from_num(Traits::INTERRUPT_OSTM).pend();
}
pub unsafe fn pend_tick_after<Traits: OsTimerInstance>(tick_count_delta: UTicks) {
let ostm = Traits::ostm_regs();
let tcfg = &Traits::TICKLESS_CFG;
let tstate = unsafe { &mut *Traits::tickless_state() };
let cur_hw_tick_count = hw_tick_count::<Traits>();
let measurement = tstate.mark_reference_and_measure(tcfg, cur_hw_tick_count, tick_count_delta);
ostm.cmp
.write(|w| w.cmp().bits(measurement.end_hw_tick_count));
let cur_hw_tick_count2 = hw_tick_count::<Traits>();
if cur_hw_tick_count2.wrapping_sub(cur_hw_tick_count) >= measurement.hw_ticks {
let _ = InterruptLine::<System<Traits>>::from_num(Traits::INTERRUPT_OSTM).pend();
}
}
#[inline]
fn handle_tick<Traits: OsTimerInstance>() {
let tcfg = &Traits::TICKLESS_CFG;
let tstate = unsafe { &mut *Traits::tickless_state() };
let cur_hw_tick_count = hw_tick_count::<Traits>();
tstate.mark_reference(tcfg, cur_hw_tick_count);
unsafe { Traits::timer_tick() };
}