Skip to content

Commit 7f0d5ba

Browse files
committed
Fix mmu-type error on device tree generation
The mmu-type should be sv32 not rv32.
1 parent 6669da7 commit 7f0d5ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/dtsi-gen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def cpu_template (id):
66
compatible = "riscv";
77
reg = <{id}>;
88
riscv,isa = "rv32ima";
9-
mmu-type = "riscv,rv32";
9+
mmu-type = "riscv,sv32";
1010
cpu{id}_intc: interrupt-controller {{
1111
#interrupt-cells = <1>;
1212
#address-cells = <0>;

0 commit comments

Comments
 (0)