Browse Source

Fuse test kernel in K210 run test

luojia65 3 years ago
parent
commit
2b7ebad3d0
2 changed files with 18 additions and 10 deletions
  1. 2 2
      platform/k210/Cargo.toml
  2. 16 8
      platform/k210/justfile

+ 2 - 2
platform/k210/Cargo.toml

@@ -9,7 +9,7 @@ publish = false
 
 [dependencies]
 rustsbi = { path = "../../rustsbi" }
-riscv = { git = "https://github.com/rust-embedded/riscv", rev = "7e9d2e5b", features = ["inline-asm"] }
-linked_list_allocator = "0.8"
+riscv = { git = "https://github.com/rust-embedded/riscv", rev = "16e4870f", features = ["inline-asm"] }
+linked_list_allocator = "0.9"
 k210-hal = { git = "https://github.com/riscv-rust/k210-hal" }
 r0 = "1.0"

+ 16 - 8
platform/k210/justfile

@@ -1,22 +1,30 @@
 target := "riscv64imac-unknown-none-elf"
 mode := "debug"
 build-path := "../../target/" + target + "/" + mode + "/"
-m-firmware-file := build-path + "rustsbi-k210"
-m-bin-file := build-path + "rustsbi-k210.bin"
+rustsbi-elf := build-path + "rustsbi-k210"
+rustsbi-bin := build-path + "rustsbi-k210.bin"
+test-kernel-elf := build-path + "test-kernel"
+test-kernel-bin := build-path + "test-kernel.bin"
+fused-bin := build-path + "k210-fused.bin"
 
-k210-serialport := "/dev/ttyS17"
+k210-serialport := "COM17"
 
 objdump := "riscv64-unknown-elf-objdump"
 objcopy := "rust-objcopy --binary-architecture=riscv64"
 
-build: firmware
-    @{{objcopy}} {{m-firmware-file}} --strip-all -O binary {{m-bin-file}}
+build: rustsbi test-kernel
+    @{{objcopy}} {{rustsbi-elf}} --strip-all -O binary {{rustsbi-bin}}
 
-firmware:
+rustsbi:
     @cargo build --target={{target}}
 
+test-kernel:
+    @just -f "../../test-kernel/justfile" build
+
 run: build
-    @python3 ./kflash.py --port {{k210-serialport}} --terminal {{m-bin-file}}
+    @cp {{rustsbi-bin}} {{fused-bin}}
+    @dd if={{test-kernel-bin}} of={{fused-bin}} bs=128k seek=1
+    @python ./kflash.py --port {{k210-serialport}} -b 1500000 --terminal {{fused-bin}}
 
 asm: build
-    @{{objdump}} -D {{m-firmware-file}} | less
+    @{{objdump}} -D {{rustsbi-elf}} | less