base.rs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //! RISC-V SBI Base extension test suite.
  2. use sbi::{ExtensionInfo, Version};
  3. use sbi_spec::base::impl_id;
  4. /// Base extension test cases.
  5. #[derive(Clone, Debug)]
  6. pub enum Case {
  7. /// Can't proceed test for base extension does not exist.
  8. NotExist,
  9. /// Test begin.
  10. Begin,
  11. /// Test process for getting SBI specification version.
  12. GetSbiSpecVersion(Version),
  13. /// Test process for getting SBI implementation ID.
  14. GetSbiImplId(Result<&'static str, usize>),
  15. /// Test process for getting version of SBI implementation.
  16. GetSbiImplVersion(usize),
  17. /// Test process for probe standard SBI extensions.
  18. ProbeExtensions(Extensions),
  19. /// Test process for getting vendor ID from RISC-V environment.
  20. GetMvendorId(usize),
  21. /// Test process for getting architecture ID from RISC-V environment.
  22. GetMarchId(usize),
  23. /// Test process for getting implementation ID from RISC-V environment.
  24. GetMimpId(usize),
  25. /// All test cases on base module finished.
  26. Pass,
  27. }
  28. /// Information about all SBI standard extensions.
  29. #[derive(Clone, Debug)]
  30. pub struct Extensions {
  31. /// Timer programmer extension.
  32. pub time: ExtensionInfo,
  33. /// Inter-processor Interrupt extension.
  34. pub spi: ExtensionInfo,
  35. /// Remote Fence extension.
  36. pub rfnc: ExtensionInfo,
  37. /// Hart State Monitor extension.
  38. pub hsm: ExtensionInfo,
  39. /// System Reset extension.
  40. pub srst: ExtensionInfo,
  41. /// Performance Monitor Unit extension.
  42. pub pmu: ExtensionInfo,
  43. }
  44. impl core::fmt::Display for Extensions {
  45. fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
  46. write!(f, "[Base")?;
  47. if self.time.is_available() {
  48. write!(f, ", TIME")?;
  49. }
  50. if self.spi.is_available() {
  51. write!(f, ", sPI")?;
  52. }
  53. if self.rfnc.is_available() {
  54. write!(f, ", RFNC")?;
  55. }
  56. if self.hsm.is_available() {
  57. write!(f, ", HSM")?;
  58. }
  59. if self.srst.is_available() {
  60. write!(f, ", SRST")?;
  61. }
  62. if self.pmu.is_available() {
  63. write!(f, ", PMU")?;
  64. }
  65. write!(f, "]")
  66. }
  67. }
  68. /// Test base extension.
  69. ///
  70. /// The test case output would be handled in `f`.
  71. pub fn test(mut f: impl FnMut(Case)) {
  72. if sbi::probe_extension(sbi::Base).is_unavailable() {
  73. f(Case::NotExist);
  74. return;
  75. }
  76. f(Case::Begin);
  77. f(Case::GetSbiSpecVersion(sbi::get_spec_version()));
  78. f(Case::GetSbiImplId(match sbi::get_sbi_impl_id() {
  79. impl_id::BBL => Ok("BBL"),
  80. impl_id::OPEN_SBI => Ok("OpenSBI"),
  81. impl_id::XVISOR => Ok("Xvisor"),
  82. impl_id::KVM => Ok("KVM"),
  83. impl_id::RUST_SBI => Ok("RustSBI"),
  84. impl_id::DIOSIX => Ok("Diosix"),
  85. impl_id::COFFER => Ok("Coffer"),
  86. impl_id::XEN => Ok("Xen Project"),
  87. impl_id::POLARFIRE_HSS => Ok("PolarFire Hart Software Services"),
  88. impl_id::COREBOOT => Ok("Coreboot"),
  89. impl_id::OREBOOT => Ok("Oreboot"),
  90. unknown => Err(unknown),
  91. }));
  92. f(Case::GetSbiImplVersion(sbi::get_sbi_impl_version()));
  93. f(Case::ProbeExtensions(Extensions {
  94. time: sbi::probe_extension(sbi::Timer),
  95. spi: sbi::probe_extension(sbi::Ipi),
  96. rfnc: sbi::probe_extension(sbi::Fence),
  97. hsm: sbi::probe_extension(sbi::Hsm),
  98. srst: sbi::probe_extension(sbi::Reset),
  99. pmu: sbi::probe_extension(sbi::Pmu),
  100. }));
  101. f(Case::GetMvendorId(sbi::get_mvendorid()));
  102. f(Case::GetMarchId(sbi::get_marchid()));
  103. f(Case::GetMimpId(sbi::get_mimpid()));
  104. f(Case::Pass);
  105. }