time.rs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. //! Chapter 6. Timer Extension (EID #0x54494D45 "TIME")
  2. use sbi_spec::{
  3. binary::SbiRet,
  4. time::{EID_TIME, SET_TIMER},
  5. };
  6. /// Programs the clock for the next event after an absolute time.
  7. ///
  8. /// Parameter `stime_value` is in absolute time.
  9. /// This function must clear the pending timer-interrupt bit as well.
  10. ///
  11. /// If the supervisor wishes to clear the timer interrupt without scheduling the next timer event,
  12. /// it can either request a timer interrupt infinitely far into the future (i.e., `u64::MAX`),
  13. /// or it can instead mask the timer interrupt by clearing `sie.STIE` CSR bit.
  14. ///
  15. /// This function is defined in RISC-V SBI Specification chapter 6.1.
  16. #[inline]
  17. #[doc(alias = "sbi_set_timer")]
  18. pub fn set_timer(stime_value: u64) -> SbiRet {
  19. match () {
  20. #[cfg(target_pointer_width = "32")]
  21. () => crate::binary::sbi_call_2(
  22. EID_TIME,
  23. SET_TIMER,
  24. stime_value as _,
  25. (stime_value >> 32) as _,
  26. ),
  27. #[cfg(target_pointer_width = "64")]
  28. () => crate::binary::sbi_call_1(EID_TIME, SET_TIMER, stime_value as _),
  29. }
  30. }