浏览代码

Merge pull request #36 from rustsbi/legacy-clear-ipi

feat: LEGACY_CLEAR_IPI implemented
YdrMaster 2 年之前
父节点
当前提交
d5f2712904
共有 3 个文件被更改,包括 34 次插入2 次删除
  1. 21 0
      CHANGELOG.md
  2. 5 2
      src/base.rs
  3. 8 0
      src/ecall/mod.rs

+ 21 - 0
CHANGELOG.md

@@ -8,13 +8,17 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 ## Unreleased
 ## Unreleased
 
 
 ### Added
 ### Added
+
 - Feature `legacy` to gate SBI legacy extension
 - Feature `legacy` to gate SBI legacy extension
 - Expose `init_*` functions on instance based RustSBI implementation
 - Expose `init_*` functions on instance based RustSBI implementation
+- LEGACY_CLEAR_IPI implemented
 
 
 ### Modified
 ### Modified
+
 - Probe function now returns if legacy extensions are available
 - Probe function now returns if legacy extensions are available
 
 
 ### Removed
 ### Removed
+
 - Remove dependency on crate alloc; RustSBI now works without heap
 - Remove dependency on crate alloc; RustSBI now works without heap
 - Remove embedded-hal serial adapter to legacy console
 - Remove embedded-hal serial adapter to legacy console
 
 
@@ -26,10 +30,12 @@ This update adapts to ratified RISC-V SBI v1.0.0 specification, it's recommended
 the latest RustSBI version.
 the latest RustSBI version.
 
 
 ### Added
 ### Added
+
 - Support for RISC-V SBI v1.0.0 Ratified Specification
 - Support for RISC-V SBI v1.0.0 Ratified Specification
 - Internal guest and instance module
 - Internal guest and instance module
 
 
 ### Modified
 ### Modified
+
 - Use Rust 2021 edition
 - Use Rust 2021 edition
 - Update dependency `embedded-hal` to v0.2.7
 - Update dependency `embedded-hal` to v0.2.7
 
 
@@ -39,16 +45,19 @@ This update fixes a severe bug on IPI module. The previous version of RustSBI di
 module on SBI v0.3 format. Users are encouraged to use 0.2.1 and newer version instead of yanked 0.2.0 version.
 module on SBI v0.3 format. Users are encouraged to use 0.2.1 and newer version instead of yanked 0.2.0 version.
 
 
 ### Modified
 ### Modified
+
 - Internal speed up to new SBI v0.3+ IPI procedure
 - Internal speed up to new SBI v0.3+ IPI procedure
 - Reduce code size by inlining internal functions
 - Reduce code size by inlining internal functions
 
 
 ### Fixed
 ### Fixed
+
 - Severe bug on IPI does not follow new SBI version convention rule
 - Severe bug on IPI does not follow new SBI version convention rule
 - Pass cargo test on docs, add test cases on hart mask
 - Pass cargo test on docs, add test cases on hart mask
 
 
 ## [0.2.0] - 2022-02-13
 ## [0.2.0] - 2022-02-13
 
 
 ### Added
 ### Added
+
 - Support for RISC-V SBI v1.0 and v0.3 Specification
 - Support for RISC-V SBI v1.0 and v0.3 Specification
 - S-level Illegal instruction exception is now delegated into S-level software handler
 - S-level Illegal instruction exception is now delegated into S-level software handler
 - Support RFENCE extension in RustSBI framework
 - Support RFENCE extension in RustSBI framework
@@ -79,40 +88,52 @@ module on SBI v0.3 format. Users are encouraged to use 0.2.1 and newer version i
 - Improve documents to adapt to v1.0-rc2 specification
 - Improve documents to adapt to v1.0-rc2 specification
 
 
 ### Fixed
 ### Fixed
+
 - Test kernel console now will lock before `println` line is finished
 - Test kernel console now will lock before `println` line is finished
 - Non-legacy supervisor IPI extension is fixed
 - Non-legacy supervisor IPI extension is fixed
 - Returns -1 other than 0 when legacy console getchar function fails; thank you @duskmoon314
 - Returns -1 other than 0 when legacy console getchar function fails; thank you @duskmoon314
 
 
 ## [0.1.1] - 2021-02-01
 ## [0.1.1] - 2021-02-01
+
 ### Added
 ### Added
+
 - Abstract support for HSM and SRST extensions
 - Abstract support for HSM and SRST extensions
 - Support SRST extension using test device on QEMU
 - Support SRST extension using test device on QEMU
 - Count harts from device tree binary on QEMU platform
 - Count harts from device tree binary on QEMU platform
 - Show hart id on panic for QEMU platform
 - Show hart id on panic for QEMU platform
 
 
 ### Modified
 ### Modified
+
 - Use '#[naked]' instead of global assembly in newer Rust version for RustSBI platforms
 - Use '#[naked]' instead of global assembly in newer Rust version for RustSBI platforms
 
 
 ### Fixed
 ### Fixed
+
 - Fix `init_hsm` function which is not exported before
 - Fix `init_hsm` function which is not exported before
 - Small fixes on library documents
 - Small fixes on library documents
 
 
 ## [0.1.0] - 2020-12-26
 ## [0.1.0] - 2020-12-26
+
 RustSBI is adapted to SBI standard with implementation number 4.
 RustSBI is adapted to SBI standard with implementation number 4.
+
 ### Added
 ### Added
+
 - Implementation specific SBI module `0x0A000004` defined
 - Implementation specific SBI module `0x0A000004` defined
 - K210 specific sbi_rustsbi_k210_sext SBI call
 - K210 specific sbi_rustsbi_k210_sext SBI call
 
 
 ### Modified
 ### Modified
+
 - Update private SBI function to K210 implementation
 - Update private SBI function to K210 implementation
 
 
 ### Fixed
 ### Fixed
+
 - Delegate instruction load/store faults to S mode, allowing legacy console getchar to work on K210 (#7).
 - Delegate instruction load/store faults to S mode, allowing legacy console getchar to work on K210 (#7).
 - Fixed 64-bit and 32-bit instruction value for target pointer widths
 - Fixed 64-bit and 32-bit instruction value for target pointer widths
 - Fixed readme document path for crates.io
 - Fixed readme document path for crates.io
 
 
 ## [0.0.2] - 2020-10-20
 ## [0.0.2] - 2020-10-20
+
 ### Added
 ### Added
+
 - Support for Kendryte K210 with MMU and S-Mode
 - Support for Kendryte K210 with MMU and S-Mode
 - Support for QEMU
 - Support for QEMU
 - SBI v0.2 TIME extension and IPI extension
 - SBI v0.2 TIME extension and IPI extension

+ 5 - 2
src/base.rs

@@ -15,10 +15,13 @@ pub fn probe_extension(extension: usize) -> bool {
         legacy::LEGACY_SET_TIMER => crate::timer::probe_timer(),
         legacy::LEGACY_SET_TIMER => crate::timer::probe_timer(),
         #[cfg(feature = "legacy")]
         #[cfg(feature = "legacy")]
         legacy::LEGACY_SEND_IPI => crate::ipi::probe_ipi(),
         legacy::LEGACY_SEND_IPI => crate::ipi::probe_ipi(),
+        // LEGACY_CLEAR_IPI implemented in ecall/mod.rs directly, so it always exists.
+        #[cfg(feature = "legacy")]
+        legacy::LEGACY_CLEAR_IPI => true,
         #[cfg(feature = "legacy")]
         #[cfg(feature = "legacy")]
         legacy::LEGACY_SHUTDOWN => crate::reset::probe_reset(),
         legacy::LEGACY_SHUTDOWN => crate::reset::probe_reset(),
-        // we don't include LEGACY_REMOTE_FENCE_I, LEGACY_REMOTE_SFENCE_VMA,
-        // LEGACY_CLEAR_IPI and LEGACY_REMOTE_SFENCE_VMA_ASID here,
+        // we don't include LEGACY_REMOTE_FENCE_I, LEGACY_REMOTE_SFENCE_VMA
+        // and LEGACY_REMOTE_SFENCE_VMA_ASID here,
         // for RustSBI ecall/mod.rs did not implement these legacy extensions.
         // for RustSBI ecall/mod.rs did not implement these legacy extensions.
         #[cfg(feature = "legacy")]
         #[cfg(feature = "legacy")]
         legacy::LEGACY_CONSOLE_PUTCHAR | legacy::LEGACY_CONSOLE_GETCHAR => {
         legacy::LEGACY_CONSOLE_PUTCHAR | legacy::LEGACY_CONSOLE_GETCHAR => {

+ 8 - 0
src/ecall/mod.rs

@@ -120,6 +120,14 @@ pub fn handle_ecall(extension: usize, function: usize, param: [usize; 6]) -> Sbi
             }
             }
         }
         }
         #[cfg(feature = "legacy")]
         #[cfg(feature = "legacy")]
+        spec::legacy::LEGACY_CLEAR_IPI => {
+            riscv::register::mip::clear_ssoft();
+            SbiRet {
+                error: param[0],
+                value: param[1],
+            }
+        }
+        #[cfg(feature = "legacy")]
         spec::legacy::LEGACY_SHUTDOWN => legacy_reset(),
         spec::legacy::LEGACY_SHUTDOWN => legacy_reset(),
         _ => SbiRet::not_supported(),
         _ => SbiRet::not_supported(),
     }
     }