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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
#![feature(cfg_target_has_atomic)] #![feature(thread_local)]
#![feature(deadline_api)]
#![feature(once_cell)]
#![cfg_attr(
feature = "doc",
doc(html_logo_url = "https://r3-os.github.io/r3/logo-small.svg")
)]
#![doc = include_str!("./lib.md")]
#![deny(unsafe_op_in_unsafe_fn)]
use atomic_ref::AtomicRef;
use r3_core::{
kernel::{
ClearInterruptLineError, EnableInterruptLineError, InterruptNum, InterruptPriority,
Kernel as _, PendInterruptLineError, QueryInterruptLineError,
SetInterruptLinePriorityError,
},
prelude::*,
};
use r3_kernel::{KernelTraits, Port, PortToKernel, System, TaskCb, UTicks};
use spin::Mutex as SpinMutex;
use std::{
cell::Cell,
sync::{mpsc, OnceLock},
time::{Duration, Instant},
};
#[cfg(doc)]
#[doc = include_str!("../CHANGELOG.md")]
pub mod _changelog_ {}
#[cfg(unix)]
#[path = "threading_unix.rs"]
mod threading;
#[cfg(windows)]
#[path = "threading_windows.rs"]
mod threading;
#[cfg(not(any(unix, windows)))]
#[path = "unsupported.rs"]
mod threading;
#[cfg(test)]
mod threading_test;
mod sched;
mod ums;
mod utils;
#[doc(hidden)]
pub extern crate r3_core_ks as r3_core;
#[doc(hidden)]
pub extern crate r3_kernel;
#[doc(hidden)]
pub use std::sync::atomic::{AtomicBool, Ordering};
#[doc(hidden)]
pub extern crate env_logger;
pub const NUM_INTERRUPT_LINES: usize = 1024;
pub const INTERRUPT_LINE_DISPATCH: InterruptNum = 1023;
pub const INTERRUPT_PRIORITY_DISPATCH: InterruptPriority = 16384;
pub const INTERRUPT_LINE_TIMER: InterruptNum = 1022;
pub const INTERRUPT_PRIORITY_TIMER: InterruptPriority = 16383;
#[doc(hidden)]
pub unsafe trait PortInstance:
KernelTraits + Port<PortTaskState = TaskState> + PortToKernel
{
fn port_state() -> &'static State;
}
#[doc(hidden)]
pub struct State {
thread_group: OnceLock<ums::ThreadGroup<sched::SchedState>>,
timer_cmd_send: SpinMutex<Option<mpsc::Sender<TimerCmd>>>,
origin: AtomicRef<'static, Instant>,
}
#[derive(Debug)]
pub struct TaskState {
tsm: SpinMutex<Tsm>,
}
impl Init for TaskState {
#[allow(clippy::declare_interior_mutable_const)]
const INIT: Self = Self::new();
}
#[derive(Debug, Clone, Copy, Eq, PartialEq)]
enum Tsm {
Uninit,
Dormant,
Running(ums::ThreadId),
}
enum TimerCmd {
SetTimeout { at: Instant },
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
enum ThreadRole {
Unknown,
Boot,
Interrupt,
Task,
}
thread_local! {
static THREAD_ROLE: Cell<ThreadRole> = Cell::new(ThreadRole::Unknown);
}
impl TaskState {
pub const fn new() -> Self {
Self {
tsm: SpinMutex::new(Tsm::Uninit),
}
}
fn assert_current_thread(&self) {
let expected_thread_id = match &*self.tsm.lock() {
Tsm::Running(thread_id) => *thread_id,
_ => unreachable!(),
};
assert_eq!(ums::current_thread(), Some(expected_thread_id));
}
unsafe fn exit_and_dispatch<Traits: PortInstance>(&self, state: &'static State) -> ! {
log::trace!("exit_and_dispatch({self:p}) enter");
self.assert_current_thread();
let mut lock = state.thread_group.get().unwrap().lock();
let thread_id = match std::mem::replace(&mut *self.tsm.lock(), Tsm::Uninit) {
Tsm::Running(thread_id) => thread_id,
_ => unreachable!(),
};
lock.scheduler().recycle_thread(thread_id);
lock.scheduler().cpu_lock = false;
drop(lock);
unsafe { state.yield_cpu::<Traits>() };
log::trace!("exit_and_dispatch({self:p}) calling exit_thread");
unsafe { ums::exit_thread() };
}
}
#[allow(clippy::missing_safety_doc)]
impl State {
pub const fn new() -> Self {
Self {
thread_group: OnceLock::new(),
timer_cmd_send: SpinMutex::new(None),
origin: AtomicRef::new(None),
}
}
pub fn port_boot<Traits: PortInstance>(&self) {
let (thread_group, join_handle) = ums::ThreadGroup::new(sched::SchedState::new::<Traits>());
self.thread_group.set(thread_group).ok().unwrap();
let (timer_cmd_send, timer_cmd_recv) = mpsc::channel();
log::trace!("starting the timer thread");
let timer_join_handle = std::thread::spawn(move || {
let mut next_deadline = None;
loop {
let recv_result = if let Some(next_deadline) = next_deadline {
timer_cmd_recv.recv_deadline(next_deadline)
} else {
timer_cmd_recv
.recv()
.map_err(|_| mpsc::RecvTimeoutError::Disconnected)
};
match recv_result {
Err(mpsc::RecvTimeoutError::Disconnected) => {
break;
}
Err(mpsc::RecvTimeoutError::Timeout) => {
pend_interrupt_line::<Traits>(INTERRUPT_LINE_TIMER).unwrap();
next_deadline = None;
}
Ok(TimerCmd::SetTimeout { at }) => {
next_deadline = Some(at);
}
}
}
});
*self.timer_cmd_send.lock() = Some(timer_cmd_send);
let mut lock = self.thread_group.get().unwrap().lock();
let thread_id = lock.spawn(|_| {
THREAD_ROLE.with(|role| role.set(ThreadRole::Boot));
unsafe {
<Traits as PortToKernel>::boot();
}
});
log::trace!("startup thread = {thread_id:?}");
lock.scheduler().task_thread = Some(thread_id);
lock.scheduler().recycle_thread(thread_id);
lock.preempt();
lock.scheduler()
.update_line(INTERRUPT_LINE_TIMER, |line| {
line.priority = INTERRUPT_PRIORITY_TIMER;
line.enable = true;
line.start = Some(Self::timer_handler::<Traits>);
})
.ok()
.unwrap();
drop(lock);
let result = join_handle.join();
log::trace!("stopping the timer thread");
*self.timer_cmd_send.lock() = None;
timer_join_handle.join().unwrap();
log::trace!("stopped the timer thread");
if let Err(e) = result {
std::panic::resume_unwind(e);
}
}
pub unsafe fn dispatch_first_task<Traits: PortInstance>(&'static self) -> ! {
log::trace!("dispatch_first_task");
assert_eq!(expect_worker_thread(), ThreadRole::Boot);
assert!(self.is_cpu_lock_active::<Traits>());
let mut lock = self.thread_group.get().unwrap().lock();
lock.scheduler()
.update_line(INTERRUPT_LINE_DISPATCH, |line| {
line.priority = INTERRUPT_PRIORITY_DISPATCH;
line.enable = true;
line.pended = true;
line.start = Some(Self::dispatch_handler::<Traits>);
})
.ok()
.unwrap();
lock.scheduler().cpu_lock = false;
assert!(sched::check_preemption_by_interrupt(
self.thread_group.get().unwrap(),
&mut lock
));
drop(lock);
unsafe { ums::exit_thread() };
}
extern "C" fn dispatch_handler<Traits: PortInstance>() {
Traits::port_state().dispatch::<Traits>();
}
fn dispatch<Traits: PortInstance>(&'static self) {
assert_eq!(expect_worker_thread(), ThreadRole::Interrupt);
unsafe { self.enter_cpu_lock::<Traits>() };
unsafe { Traits::choose_running_task() };
unsafe { self.leave_cpu_lock::<Traits>() };
let mut lock = self.thread_group.get().unwrap().lock();
let running_task = unsafe { *Traits::state().running_task_ptr() };
lock.scheduler().task_thread = if let Some(task) = running_task {
log::trace!("dispatching task {task:p}");
let mut tsm = task.port_task_state.tsm.lock();
match &*tsm {
Tsm::Dormant => {
let thread = lock.spawn(move |_| {
THREAD_ROLE.with(|role| role.set(ThreadRole::Task));
assert!(!self.is_cpu_lock_active::<Traits>());
log::debug!("task {task:p} is now running");
unsafe {
(task.attr.entry_point)(task.attr.entry_param);
}
unsafe {
System::<Traits>::exit_task().unwrap();
}
});
log::trace!("spawned thread {thread:?} for the task {task:p}");
*tsm = Tsm::Running(thread);
Some(thread)
}
Tsm::Running(thread_id) => Some(*thread_id),
Tsm::Uninit => unreachable!(),
}
} else {
None
};
}
pub unsafe fn yield_cpu<Traits: PortInstance>(&'static self) {
log::trace!("yield_cpu");
expect_worker_thread();
assert!(!self.is_cpu_lock_active::<Traits>());
self.pend_interrupt_line::<Traits>(INTERRUPT_LINE_DISPATCH)
.unwrap();
}
pub unsafe fn exit_and_dispatch<Traits: PortInstance>(
&'static self,
task: &'static TaskCb<Traits>,
) -> ! {
log::trace!("exit_and_dispatch");
assert_eq!(expect_worker_thread(), ThreadRole::Task);
assert!(self.is_cpu_lock_active::<Traits>());
unsafe {
task.port_task_state.exit_and_dispatch::<Traits>(self);
}
}
pub unsafe fn enter_cpu_lock<Traits: PortInstance>(&self) {
log::trace!("enter_cpu_lock");
expect_worker_thread();
let mut lock = self.thread_group.get().unwrap().lock();
assert!(!lock.scheduler().cpu_lock);
lock.scheduler().cpu_lock = true;
}
pub unsafe fn leave_cpu_lock<Traits: PortInstance>(&'static self) {
log::trace!("leave_cpu_lock");
expect_worker_thread();
let mut lock = self.thread_group.get().unwrap().lock();
assert!(lock.scheduler().cpu_lock);
lock.scheduler().cpu_lock = false;
if sched::check_preemption_by_interrupt(self.thread_group.get().unwrap(), &mut lock) {
drop(lock);
ums::yield_now();
}
}
pub unsafe fn initialize_task_state<Traits: PortInstance>(
&self,
task: &'static TaskCb<Traits>,
) {
log::trace!("initialize_task_state {task:p}");
expect_worker_thread();
assert!(self.is_cpu_lock_active::<Traits>());
let pts = &task.port_task_state;
let mut tsm = pts.tsm.lock();
match &*tsm {
Tsm::Dormant => {}
Tsm::Running(_) => {
todo!("terminating a thread is not implemented yet");
}
Tsm::Uninit => {
*tsm = Tsm::Dormant;
}
}
}
pub fn is_cpu_lock_active<Traits: PortInstance>(&self) -> bool {
expect_worker_thread();
(self.thread_group.get().unwrap().lock())
.scheduler()
.cpu_lock
}
pub fn is_task_context<Traits: PortInstance>(&self) -> bool {
expect_worker_thread();
THREAD_ROLE.with(|role| match role.get() {
ThreadRole::Interrupt | ThreadRole::Boot => false,
ThreadRole::Task => true,
_ => panic!("`is_task_context` was called from an unknown thread"),
})
}
pub fn is_interrupt_context<Traits: PortInstance>(&self) -> bool {
expect_worker_thread();
THREAD_ROLE.with(|role| match role.get() {
ThreadRole::Task | ThreadRole::Boot => false,
ThreadRole::Interrupt => true,
_ => panic!("`is_task_context` was called from an unknown thread"),
})
}
pub fn is_scheduler_active<Traits: PortInstance>(&self) -> bool {
expect_worker_thread();
THREAD_ROLE.with(|role| match role.get() {
ThreadRole::Interrupt | ThreadRole::Task => true,
ThreadRole::Boot => false,
_ => panic!("`is_task_context` was called from an unknown thread"),
})
}
pub fn set_interrupt_line_priority<Traits: PortInstance>(
&'static self,
num: InterruptNum,
priority: InterruptPriority,
) -> Result<(), SetInterruptLinePriorityError> {
log::trace!("set_interrupt_line_priority({num}, {priority})");
assert!(matches!(
expect_worker_thread(),
ThreadRole::Boot | ThreadRole::Task
));
let mut lock = self.thread_group.get().unwrap().lock();
lock.scheduler()
.update_line(num, |line| line.priority = priority)
.map_err(|sched::BadIntLineError| SetInterruptLinePriorityError::BadParam)?;
if sched::check_preemption_by_interrupt(self.thread_group.get().unwrap(), &mut lock) {
drop(lock);
ums::yield_now();
}
Ok(())
}
pub fn enable_interrupt_line<Traits: PortInstance>(
&'static self,
num: InterruptNum,
) -> Result<(), EnableInterruptLineError> {
log::trace!("enable_interrupt_line({num})");
expect_worker_thread();
let mut lock = self.thread_group.get().unwrap().lock();
lock.scheduler()
.update_line(num, |line| line.enable = true)
.map_err(|sched::BadIntLineError| EnableInterruptLineError::BadParam)?;
if sched::check_preemption_by_interrupt(self.thread_group.get().unwrap(), &mut lock) {
drop(lock);
ums::yield_now();
}
Ok(())
}
pub fn disable_interrupt_line<Traits: PortInstance>(
&self,
num: InterruptNum,
) -> Result<(), EnableInterruptLineError> {
log::trace!("disable_interrupt_line({num})");
expect_worker_thread();
(self.thread_group.get().unwrap().lock())
.scheduler()
.update_line(num, |line| line.enable = false)
.map_err(|sched::BadIntLineError| EnableInterruptLineError::BadParam)
}
pub fn pend_interrupt_line<Traits: PortInstance>(
&'static self,
num: InterruptNum,
) -> Result<(), PendInterruptLineError> {
log::trace!("pend_interrupt_line({num})");
expect_worker_thread();
let mut lock = self.thread_group.get().unwrap().lock();
lock.scheduler()
.update_line(num, |line| line.pended = true)
.map_err(|sched::BadIntLineError| PendInterruptLineError::BadParam)?;
if sched::check_preemption_by_interrupt(self.thread_group.get().unwrap(), &mut lock) {
drop(lock);
ums::yield_now();
}
Ok(())
}
pub fn clear_interrupt_line<Traits: PortInstance>(
&self,
num: InterruptNum,
) -> Result<(), ClearInterruptLineError> {
log::trace!("clear_interrupt_line({num})");
expect_worker_thread();
(self.thread_group.get().unwrap().lock())
.scheduler()
.update_line(num, |line| line.pended = false)
.map_err(|sched::BadIntLineError| ClearInterruptLineError::BadParam)
}
pub fn is_interrupt_line_pending<Traits: PortInstance>(
&self,
num: InterruptNum,
) -> Result<bool, QueryInterruptLineError> {
expect_worker_thread();
(self.thread_group.get().unwrap().lock())
.scheduler()
.is_line_pended(num)
.map_err(|sched::BadIntLineError| QueryInterruptLineError::BadParam)
}
pub const MAX_TICK_COUNT: UTicks = UTicks::MAX;
pub const MAX_TIMEOUT: UTicks = UTicks::MAX / 2;
pub fn tick_count<Traits: PortInstance>(&self) -> UTicks {
expect_worker_thread();
let origin = if let Some(x) = self.origin.load(Ordering::Acquire) {
x
} else {
let origin = Box::leak(Box::new(Instant::now()));
match self.origin.compare_exchange(
None,
Some(origin),
Ordering::AcqRel, Ordering::Acquire, ) {
Ok(_) => origin, Err(x) => x.unwrap(), }
};
let micros = Instant::now().duration_since(*origin).as_micros();
fn get_random_number() -> UTicks {
0x00c0ffee
}
(micros as UTicks).wrapping_add(get_random_number())
}
pub fn pend_tick_after<Traits: PortInstance>(&self, tick_count_delta: UTicks) {
expect_worker_thread();
log::trace!("pend_tick_after({tick_count_delta:?})");
let now = Instant::now() + Duration::from_micros(tick_count_delta.into());
let _sched_lock = lock_scheduler::<Traits>();
let timer_cmd_send = self.timer_cmd_send.lock();
let timer_cmd_send = timer_cmd_send.as_ref().unwrap();
timer_cmd_send
.send(TimerCmd::SetTimeout { at: now })
.unwrap();
}
pub fn pend_tick<Traits: PortInstance>(&'static self) {
expect_worker_thread();
log::trace!("pend_tick");
self.pend_interrupt_line::<Traits>(INTERRUPT_LINE_TIMER)
.unwrap();
}
extern "C" fn timer_handler<Traits: PortInstance>() {
assert_eq!(expect_worker_thread(), ThreadRole::Interrupt);
log::trace!("timer_handler");
unsafe { <Traits as PortToKernel>::timer_tick() };
}
}
fn expect_worker_thread() -> ThreadRole {
let role = THREAD_ROLE.with(|r| r.get());
assert_ne!(role, ThreadRole::Unknown);
role
}
pub fn shutdown<Traits: PortInstance>() {
Traits::port_state()
.thread_group
.get()
.unwrap()
.lock()
.shutdown();
}
pub fn pend_interrupt_line<Traits: PortInstance>(
num: InterruptNum,
) -> Result<(), PendInterruptLineError> {
log::trace!("external-pend_interrupt_line({num})");
assert_eq!(
THREAD_ROLE.with(|r| r.get()),
ThreadRole::Unknown,
"this method cannot be called from a port-managed thread"
);
let state = Traits::port_state();
let mut lock = state.thread_group.get().unwrap().lock();
lock.scheduler()
.update_line(num, |line| line.pended = true)
.map_err(|sched::BadIntLineError| PendInterruptLineError::BadParam)?;
if sched::check_preemption_by_interrupt(state.thread_group.get().unwrap(), &mut lock) {
lock.preempt();
drop(lock);
}
Ok(())
}
pub fn lock_scheduler<Traits: PortInstance>() -> impl Sized {
let state = Traits::port_state();
state.thread_group.get().unwrap().lock()
}
#[macro_export]
macro_rules! use_port {
(unsafe $vis:vis struct $SystemTraits:ident) => {
$vis struct $SystemTraits;
mod port_std_impl {
use super::$SystemTraits;
use $crate::r3_core::kernel::{
ClearInterruptLineError, EnableInterruptLineError, InterruptNum, InterruptPriority,
PendInterruptLineError, QueryInterruptLineError, SetInterruptLinePriorityError,
};
use $crate::r3_kernel::{
Port, TaskCb, PortToKernel, PortInterrupts, PortThreading, UTicks, PortTimer,
};
use $crate::{State, TaskState, PortInstance};
pub(super) static PORT_STATE: State = State::new();
unsafe impl PortInstance for $SystemTraits {
#[inline]
fn port_state() -> &'static State {
&PORT_STATE
}
}
unsafe impl PortThreading for $SystemTraits {
type PortTaskState = TaskState;
#[allow(clippy::declare_interior_mutable_const)]
const PORT_TASK_STATE_INIT: Self::PortTaskState = TaskState::new();
unsafe fn dispatch_first_task() -> ! {
PORT_STATE.dispatch_first_task::<Self>()
}
unsafe fn yield_cpu() {
PORT_STATE.yield_cpu::<Self>()
}
unsafe fn exit_and_dispatch(task: &'static TaskCb<Self>) -> ! {
PORT_STATE.exit_and_dispatch::<Self>(task);
}
unsafe fn enter_cpu_lock() {
PORT_STATE.enter_cpu_lock::<Self>()
}
unsafe fn leave_cpu_lock() {
PORT_STATE.leave_cpu_lock::<Self>()
}
unsafe fn initialize_task_state(task: &'static TaskCb<Self>) {
PORT_STATE.initialize_task_state::<Self>(task)
}
fn is_cpu_lock_active() -> bool {
PORT_STATE.is_cpu_lock_active::<Self>()
}
fn is_task_context() -> bool {
PORT_STATE.is_task_context::<Self>()
}
fn is_interrupt_context() -> bool {
PORT_STATE.is_interrupt_context::<Self>()
}
fn is_scheduler_active() -> bool {
PORT_STATE.is_scheduler_active::<Self>()
}
}
unsafe impl PortInterrupts for $SystemTraits {
const MANAGED_INTERRUPT_PRIORITY_RANGE:
::std::ops::Range<InterruptPriority> = 0..InterruptPriority::MAX;
unsafe fn set_interrupt_line_priority(
line: InterruptNum,
priority: InterruptPriority,
) -> Result<(), SetInterruptLinePriorityError> {
PORT_STATE.set_interrupt_line_priority::<Self>(line, priority)
}
unsafe fn enable_interrupt_line(line: InterruptNum) -> Result<(), EnableInterruptLineError> {
PORT_STATE.enable_interrupt_line::<Self>(line)
}
unsafe fn disable_interrupt_line(line: InterruptNum) -> Result<(), EnableInterruptLineError> {
PORT_STATE.disable_interrupt_line::<Self>(line)
}
unsafe fn pend_interrupt_line(line: InterruptNum) -> Result<(), PendInterruptLineError> {
PORT_STATE.pend_interrupt_line::<Self>(line)
}
unsafe fn clear_interrupt_line(line: InterruptNum) -> Result<(), ClearInterruptLineError> {
PORT_STATE.clear_interrupt_line::<Self>(line)
}
unsafe fn is_interrupt_line_pending(
line: InterruptNum,
) -> Result<bool, QueryInterruptLineError> {
PORT_STATE.is_interrupt_line_pending::<Self>(line)
}
}
impl PortTimer for $SystemTraits {
const MAX_TICK_COUNT: UTicks = State::MAX_TICK_COUNT;
const MAX_TIMEOUT: UTicks = State::MAX_TIMEOUT;
unsafe fn tick_count() -> UTicks {
PORT_STATE.tick_count::<Self>()
}
unsafe fn pend_tick_after(tick_count_delta: UTicks) {
PORT_STATE.pend_tick_after::<Self>(tick_count_delta)
}
unsafe fn pend_tick() {
PORT_STATE.pend_tick::<Self>()
}
}
}
fn main() {
$crate::env_logger::init();
port_std_impl::PORT_STATE.port_boot::<$SystemTraits>();
}
};
}