@@ -68,7 +68,6 @@ pub fn set_timer_32(arg0: usize, arg1: usize) -> SbiRet {
#[inline]
pub fn shutdown() -> SbiRet {
- // todo: wrap
- loop {}
- SbiRet::ok(0)
+ // todo: ref: opensbi; much more complex process
+ crate::reset::reset()
}
@@ -18,3 +18,10 @@ lazy_static::lazy_static! {
pub fn init_reset<T: Reset + Send + 'static>(reset: T) {
*RESET.lock() = Some(Box::new(reset));
+
+pub(crate) fn reset() -> ! {
+ if let Some(obj) = &*RESET.lock() {
+ obj.reset();
+ }
+ panic!("no reset handler available")
+}