mie.rs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. //! mie register
  2. /// mie register
  3. #[derive(Clone, Copy, Debug)]
  4. pub struct Mie {
  5. bits: usize,
  6. }
  7. impl Mie {
  8. /// Returns the contents of the register as raw bits
  9. #[inline]
  10. pub fn bits(&self) -> usize {
  11. self.bits
  12. }
  13. /// User Software Interrupt Enable
  14. #[inline]
  15. pub fn usoft(&self) -> bool {
  16. self.bits & (1 << 0) == 1 << 0
  17. }
  18. /// Supervisor Software Interrupt Enable
  19. #[inline]
  20. pub fn ssoft(&self) -> bool {
  21. self.bits & (1 << 1) == 1 << 1
  22. }
  23. /// Machine Software Interrupt Enable
  24. #[inline]
  25. pub fn msoft(&self) -> bool {
  26. self.bits & (1 << 3) == 1 << 3
  27. }
  28. /// User Timer Interrupt Enable
  29. #[inline]
  30. pub fn utimer(&self) -> bool {
  31. self.bits & (1 << 4) == 1 << 4
  32. }
  33. /// Supervisor Timer Interrupt Enable
  34. #[inline]
  35. pub fn stimer(&self) -> bool {
  36. self.bits & (1 << 5) == 1 << 5
  37. }
  38. /// Machine Timer Interrupt Enable
  39. #[inline]
  40. pub fn mtimer(&self) -> bool {
  41. self.bits & (1 << 7) == 1 << 7
  42. }
  43. /// User External Interrupt Enable
  44. #[inline]
  45. pub fn uext(&self) -> bool {
  46. self.bits & (1 << 8) == 1 << 8
  47. }
  48. /// Supervisor External Interrupt Enable
  49. #[inline]
  50. pub fn sext(&self) -> bool {
  51. self.bits & (1 << 9) == 1 << 9
  52. }
  53. /// Machine External Interrupt Enable
  54. #[inline]
  55. pub fn mext(&self) -> bool {
  56. self.bits & (1 << 11) == 1 << 11
  57. }
  58. }
  59. read_csr_as!(Mie, 0x304, __read_mie);
  60. set!(0x304, __set_mie);
  61. clear!(0x304, __clear_mie);
  62. /// User Software Interrupt Enable
  63. set_clear_csr!(set_usoft, clear_usoft, 1 << 0);
  64. /// Supervisor Software Interrupt Enable
  65. set_clear_csr!(set_ssoft, clear_ssoft, 1 << 1);
  66. /// Machine Software Interrupt Enable
  67. set_clear_csr!(set_msoft, clear_msoft, 1 << 3);
  68. /// User Timer Interrupt Enable
  69. set_clear_csr!(set_utimer, clear_utimer, 1 << 4);
  70. /// Supervisor Timer Interrupt Enable
  71. set_clear_csr!(set_stimer, clear_stimer, 1 << 5);
  72. /// Machine Timer Interrupt Enable
  73. set_clear_csr!(set_mtimer, clear_mtimer, 1 << 7);
  74. /// User External Interrupt Enable
  75. set_clear_csr!(set_uext, clear_uext, 1 << 8);
  76. /// Supervisor External Interrupt Enable
  77. set_clear_csr!(set_sext, clear_sext, 1 << 9);
  78. /// Machine External Interrupt Enable
  79. set_clear_csr!(set_mext, clear_mext, 1 << 11);