Skip to content

Commit 1921c68

Browse files
committed
Initial RISC-V implementation
Has no IRQ handling yet
1 parent db32f5f commit 1921c68

36 files changed

+1998
-56
lines changed

.gitmodules

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
[submodule "syscall"]
2-
path = syscall
3-
url = https://gitlab.redox-os.org/redox-os/syscall.git
4-
branch = master
51
[submodule "slab_allocator"]
62
path = slab_allocator
73
url = https://gitlab.redox-os.org/redox-os/slab_allocator

Cargo.lock

+49-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ hashbrown = { version = "0.14.3", default-features = false, features = ["ahash",
1616
linked_list_allocator = "0.9.0"
1717
log = "0.4"
1818
redox-path = "0.2.0"
19-
redox_syscall = { path = "syscall", default-features = false }
19+
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git", branch = "master", default-features = false }
2020
slab_allocator = { path = "slab_allocator", optional = true }
2121
spin = "0.9.8"
2222
spinning_top = { version = "0.3", features = ["arc_lock"] }
@@ -35,7 +35,7 @@ features = ["elf32", "elf64"]
3535
version = "0.1.16"
3636
default-features = false
3737

38-
[target.'cfg(target_arch = "aarch64")'.dependencies]
38+
[target.'cfg(any(target_arch = "aarch64", target_arch = "riscv64"))'.dependencies]
3939
byteorder = { version = "1", default-features = false }
4040
fdt = { git = "https://github.com/repnop/fdt.git", rev = "2fb1409edd1877c714a0aa36b6a7c5351004be54" }
4141

build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ fn main() {
8888
panic!("nasm failed with exit status {}", status);
8989
}
9090
}
91+
"riscv64" => {
92+
println!("cargo:rustc-cfg=dtb");
93+
}
9194
_ => (),
9295
}
9396

linkers/riscv64.ld

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
ENTRY(kstart)
2+
OUTPUT_FORMAT("elf64-littleriscv", "elf64-littleriscv", "elf64-littleriscv" )
3+
4+
KERNEL_OFFSET = 0xFFFFFF0000000000;
5+
6+
SECTIONS {
7+
. = KERNEL_OFFSET;
8+
9+
. += SIZEOF_HEADERS;
10+
11+
/* Force the zero page to be part of a segment by creating a
12+
* dummy section in the zero page.
13+
* Linker will map the segment with the lowest vaddr value at
14+
* 0xFFFFFF0000000000 even if the segment has a higher vaddr.
15+
* As such without the zero page being part of a segment, the
16+
* kernel would be loaded at an offset from the expected
17+
* location. As the redox kernel is not currently relocatable,
18+
* this would result in a crash. A similar issue likely exists
19+
* with multiboot/multiboot2 and the paddr of the segment.
20+
*/
21+
.dummy ALIGN(8) : AT(ADDR(.dummy) - KERNEL_OFFSET) {}
22+
23+
. = ALIGN(4096);
24+
25+
.text : AT(ADDR(.text) - KERNEL_OFFSET) {
26+
__text_start = .;
27+
*(.early_init.text*)
28+
. = ALIGN(4096);
29+
*(.text*)
30+
__usercopy_start = .;
31+
*(.usercopy-fns)
32+
__usercopy_end = .;
33+
. = ALIGN(4096);
34+
__text_end = .;
35+
}
36+
37+
.rodata : AT(ADDR(.rodata) - KERNEL_OFFSET) {
38+
__rodata_start = .;
39+
*(.rodata*)
40+
. = ALIGN(4096);
41+
__rodata_end = .;
42+
}
43+
44+
.data : AT(ADDR(.data) - KERNEL_OFFSET) {
45+
__data_start = .;
46+
*(.data*)
47+
*(.sdata*)
48+
. = ALIGN(4096);
49+
__data_end = .;
50+
*(.got*)
51+
. = ALIGN(4096);
52+
__bss_start = .;
53+
*(.bss*)
54+
*(.sbss*)
55+
. = ALIGN(4096);
56+
__bss_end = .;
57+
}
58+
59+
__end = .;
60+
61+
/DISCARD/ : {
62+
*(.comment*)
63+
*(.eh_frame*)
64+
*(.gcc_except_table*)
65+
*(.note*)
66+
*(.rel.eh_frame*)
67+
}
68+
}

src/arch/aarch64/device/serial.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub unsafe fn init_early(dtb: &Fdt) {
3131
return;
3232
}
3333

34-
if let Some((phys, _size, skip_init, cts)) = diag_uart_range(dtb) {
34+
if let Some((phys, _size, skip_init, cts, _)) = diag_uart_range(dtb) {
3535
let virt = crate::PHYS_OFFSET + phys;
3636
{
3737
let mut serial_port = SerialPort::new(virt, skip_init, cts);

src/arch/mod.rs

+6
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,9 @@ pub use self::x86_64::*;
1919
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
2020
#[macro_use]
2121
mod x86_shared;
22+
23+
#[cfg(target_arch = "riscv64")]
24+
#[macro_use]
25+
pub mod riscv64;
26+
#[cfg(target_arch = "riscv64")]
27+
pub use self::riscv64::*;

0 commit comments

Comments
 (0)