Browse Source

feat(test-kernel): add RISCV linux boot image header to test-kernel

guttatus 6 months ago
parent
commit
3281abfd72
3 changed files with 43 additions and 0 deletions
  1. 5 0
      rust-toolchain.toml
  2. 6 0
      test-kernel/build.rs
  3. 32 0
      test-kernel/src/main.rs

+ 5 - 0
rust-toolchain.toml

@@ -0,0 +1,5 @@
+[toolchain]
+channel = "nightly-2024-04-27"
+components = ["rustfmt", "llvm-tools-preview"]
+targets = ["riscv64imac-unknown-none-elf"]
+profile = "minimal"

+ 6 - 0
test-kernel/build.rs

@@ -14,6 +14,11 @@ const LINKER_SCRIPT: &[u8] = b"OUTPUT_ARCH(riscv)
 ENTRY(_start) 
 SECTIONS {
     . = 0x80200000;
+    istart = .;
+	  .head.text : ALIGN(8) {		
+        KEEP(*(.head.text))
+	  }
+
     .text : ALIGN(8) { 
         *(.text.entry)
         *(.text .text.*)
@@ -40,6 +45,7 @@ SECTIONS {
         *(.sbss .sbss.*)
         ebss = .;
     } 
+    iend = .;
     /DISCARD/ : {
         *(.eh_frame)
     }

+ 32 - 0
test-kernel/src/main.rs

@@ -10,6 +10,38 @@ use core::{arch::asm, ptr::null};
 use sbi_testing::sbi;
 use uart16550::Uart16550;
 
+const RISCV_HEAD_FLAGS: u64 = 0;
+const RISCV_HEADER_VERSION: u32 = 0x2;
+const RISCV_IMAGE_MAGIC: u64 = 0x5643534952; /* Magic number, little endian, "RISCV" */
+const RISCV_INAGE_MAGIC2: u32 = 0x05435352; /* Magic number 2, little endian, "RSC\x05" */
+
+/// boot header
+#[naked]
+#[no_mangle]
+#[link_section = ".head.text"]
+unsafe extern "C" fn _boot_header() -> ! {
+    asm!(
+        "j _start",
+        ".word 0",
+        ".balign 8",
+        ".dword 0x200000",
+        ".dword iend - istart",
+        ".dword {RISCV_HEAD_FLAGS}",
+        ".word  {RISCV_HEADER_VERSION}",
+        ".word  0",
+        ".dword 0",
+        ".dword {RISCV_IMAGE_MAGIC}",
+        ".balign 4",
+        ".word  {RISCV_IMAGE_MAGIC2}",
+        ".word  0",
+        RISCV_HEAD_FLAGS = const RISCV_HEAD_FLAGS,
+        RISCV_HEADER_VERSION = const RISCV_HEADER_VERSION,
+        RISCV_IMAGE_MAGIC = const RISCV_IMAGE_MAGIC,
+        RISCV_IMAGE_MAGIC2 = const RISCV_INAGE_MAGIC2,
+        options(noreturn)
+    );
+}
+
 /// 内核入口。
 ///
 /// # Safety