4
0

mip.rs 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. //! mip register
  2. /// mip register
  3. #[derive(Clone, Copy, Debug)]
  4. pub struct Mip {
  5. bits: usize,
  6. }
  7. impl Mip {
  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 Pending
  14. #[inline]
  15. pub fn usoft(&self) -> bool {
  16. self.bits & (1 << 0) == 1 << 0
  17. }
  18. /// Supervisor Software Interrupt Pending
  19. #[inline]
  20. pub fn ssoft(&self) -> bool {
  21. self.bits & (1 << 1) == 1 << 1
  22. }
  23. /// Machine Software Interrupt Pending
  24. #[inline]
  25. pub fn msoft(&self) -> bool {
  26. self.bits & (1 << 3) == 1 << 3
  27. }
  28. /// User Timer Interrupt Pending
  29. #[inline]
  30. pub fn utimer(&self) -> bool {
  31. self.bits & (1 << 4) == 1 << 4
  32. }
  33. /// Supervisor Timer Interrupt Pending
  34. #[inline]
  35. pub fn stimer(&self) -> bool {
  36. self.bits & (1 << 5) == 1 << 5
  37. }
  38. /// Machine Timer Interrupt Pending
  39. #[inline]
  40. pub fn mtimer(&self) -> bool {
  41. self.bits & (1 << 7) == 1 << 7
  42. }
  43. /// User External Interrupt Pending
  44. #[inline]
  45. pub fn uext(&self) -> bool {
  46. self.bits & (1 << 8) == 1 << 8
  47. }
  48. /// Supervisor External Interrupt Pending
  49. #[inline]
  50. pub fn sext(&self) -> bool {
  51. self.bits & (1 << 9) == 1 << 9
  52. }
  53. /// Machine External Interrupt Pending
  54. #[inline]
  55. pub fn mext(&self) -> bool {
  56. self.bits & (1 << 11) == 1 << 11
  57. }
  58. }
  59. /// Reads the CSR
  60. #[inline]
  61. pub fn read() -> Mip {
  62. match () {
  63. #[cfg(target_arch = "riscv")]
  64. () => {
  65. let r: usize;
  66. unsafe {
  67. asm!("csrrs $0, 0x344, x0" : "=r"(r) ::: "volatile");
  68. }
  69. Mip { bits: r }
  70. }
  71. #[cfg(not(target_arch = "riscv"))]
  72. () => unimplemented!(),
  73. }
  74. }