浏览代码

Add cause number check in test kernel

luojia65 4 年之前
父节点
当前提交
caa2f0a0db
共有 1 个文件被更改,包括 7 次插入1 次删除
  1. 7 1
      test-kernel/src/main.rs

+ 7 - 1
test-kernel/src/main.rs

@@ -7,7 +7,7 @@
 mod console;
 mod sbi;
 
-use riscv::register::{sepc, stvec::{self, TrapMode}};
+use riscv::register::{sepc, stvec::{self, TrapMode}, scause::{self, Trap, Exception}};
 
 pub extern "C" fn rust_main(hartid: usize, dtb_pa: usize) -> ! {
     println!("<< Test-kernel: Hart id = {}, DTB physical address = {:#x}", hartid, dtb_pa);
@@ -45,6 +45,12 @@ fn test_sbi_ins_emulation() {
 }
 
 pub extern "C" fn rust_trap_exception() {
+    let cause = scause::read().cause();
+    println!("<< Test-kernel: Value of scause: {:?}", cause);
+    if cause != Trap::Exception(Exception::IllegalInstruction) {
+        println!("!! Test-kernel: Wrong cause associated to illegal instruction");
+        sbi::shutdown()
+    }
     println!("<< Test-kernel: Illegal exception delegate success");
     sepc::write(sepc::read().wrapping_add(4));
 }