timer.rs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. use crate::util::AmoOncePtr;
  2. /// Timer programmer support
  3. pub trait Timer: Send + Sync {
  4. /// Programs the clock for next event after `stime_value` time.
  5. ///
  6. /// `stime_value` is in absolute time. This function must clear the pending timer interrupt bit as well.
  7. ///
  8. /// If the supervisor wishes to clear the timer interrupt without scheduling the next timer event,
  9. /// it can either request a timer interrupt infinitely far into the future (i.e., (uint64_t)-1),
  10. /// or it can instead mask the timer interrupt by clearing `sie.STIE` CSR bit.
  11. fn set_timer(&self, stime_value: u64);
  12. }
  13. static TIMER: AmoOncePtr<dyn Timer> = AmoOncePtr::new();
  14. pub fn init_timer(timer: &'static dyn Timer) {
  15. if !TIMER.try_call_once(timer) {
  16. panic!("load sbi module when already loaded")
  17. }
  18. }
  19. #[inline]
  20. pub(crate) fn probe_timer() -> bool {
  21. TIMER.get().is_some()
  22. }
  23. #[inline]
  24. pub(crate) fn set_timer(time_value: u64) -> bool {
  25. if let Some(timer) = TIMER.get() {
  26. timer.set_timer(time_value);
  27. true
  28. } else {
  29. false
  30. }
  31. }