sie.rs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. //! sie register
  2. use bit_field::BitField;
  3. /// sie register
  4. #[derive(Clone, Copy, Debug)]
  5. pub struct Sie {
  6. bits: usize,
  7. }
  8. impl Sie {
  9. /// Returns the contents of the register as raw bits
  10. #[inline]
  11. pub fn bits(&self) -> usize {
  12. self.bits
  13. }
  14. /// User Software Interrupt Enable
  15. #[inline]
  16. pub fn usoft(&self) -> bool {
  17. self.bits.get_bit(0)
  18. }
  19. /// Supervisor Software Interrupt Enable
  20. #[inline]
  21. pub fn ssoft(&self) -> bool {
  22. self.bits.get_bit(1)
  23. }
  24. /// User Timer Interrupt Enable
  25. #[inline]
  26. pub fn utimer(&self) -> bool {
  27. self.bits.get_bit(4)
  28. }
  29. /// Supervisor Timer Interrupt Enable
  30. #[inline]
  31. pub fn stimer(&self) -> bool {
  32. self.bits.get_bit(5)
  33. }
  34. /// User External Interrupt Enable
  35. #[inline]
  36. pub fn uext(&self) -> bool {
  37. self.bits.get_bit(8)
  38. }
  39. /// Supervisor External Interrupt Enable
  40. #[inline]
  41. pub fn sext(&self) -> bool {
  42. self.bits.get_bit(9)
  43. }
  44. }
  45. read_csr_as!(Sie, 0x104);
  46. set!(0x104);
  47. clear!(0x104);
  48. /// User Software Interrupt Enable
  49. set_clear_csr!(set_usoft, clear_usoft, 1 << 0);
  50. /// Supervisor Software Interrupt Enable
  51. set_clear_csr!(set_ssoft, clear_ssoft, 1 << 1);
  52. /// User Timer Interrupt Enable
  53. set_clear_csr!(set_utimer, clear_utimer, 1 << 4);
  54. /// Supervisor Timer Interrupt Enable
  55. set_clear_csr!(set_stimer, clear_stimer, 1 << 5);
  56. /// User External Interrupt Enable
  57. set_clear_csr!(set_uext, clear_uext, 1 << 8);
  58. /// Supervisor External Interrupt Enable
  59. set_clear_csr!(set_sext, clear_sext, 1 << 9);