|
@@ -2,9 +2,8 @@
|
|
|
|
|
|
// NOTE: Adapted from cortex-m/src/interrupt.rs
|
|
|
use crate::register::mstatus;
|
|
|
-pub use bare_metal::{CriticalSection, Mutex};
|
|
|
|
|
|
-/// Disables all interrupts
|
|
|
+/// Disables all interrupts in the current hart.
|
|
|
#[inline]
|
|
|
pub unsafe fn disable() {
|
|
|
match () {
|
|
@@ -15,11 +14,11 @@ pub unsafe fn disable() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/// Enables all the interrupts
|
|
|
+/// Enables all the interrupts in the current hart.
|
|
|
///
|
|
|
/// # Safety
|
|
|
///
|
|
|
-/// - Do not call this function inside an `interrupt::free` critical section
|
|
|
+/// - Do not call this function inside a critical section.
|
|
|
#[inline]
|
|
|
pub unsafe fn enable() {
|
|
|
match () {
|
|
@@ -30,13 +29,18 @@ pub unsafe fn enable() {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-/// Execute closure `f` in an interrupt-free context.
|
|
|
+/// Execute closure `f` with interrupts disabled in the current hart.
|
|
|
///
|
|
|
-/// This as also known as a "critical section".
|
|
|
+/// This method does not synchronise multiple harts, so it is not suitable for
|
|
|
+/// using as a critical section. See the `critical-section` crate for a cross-platform
|
|
|
+/// way to enter a critical section which provides a `CriticalSection` token.
|
|
|
+///
|
|
|
+/// This crate provides an implementation for `critical-section` suitable for single-hart systems,
|
|
|
+/// based on disabling all interrupts. It can be enabled with the `critical-section-single-hart` feature.
|
|
|
#[inline]
|
|
|
pub fn free<F, R>(f: F) -> R
|
|
|
where
|
|
|
- F: FnOnce(&CriticalSection) -> R,
|
|
|
+ F: FnOnce() -> R,
|
|
|
{
|
|
|
let mstatus = mstatus::read();
|
|
|
|
|
@@ -45,7 +49,7 @@ where
|
|
|
disable();
|
|
|
}
|
|
|
|
|
|
- let r = f(unsafe { &CriticalSection::new() });
|
|
|
+ let r = f();
|
|
|
|
|
|
// If the interrupts were active before our `disable` call, then re-enable
|
|
|
// them. Otherwise, keep them disabled
|