Skip to content

Commit

Permalink
Fix mmu-type error on device tree generation
Browse files Browse the repository at this point in the history
The mmu-type should be sv32 not rv32.
  • Loading branch information
ranvd committed Jun 24, 2024
1 parent f7b28a0 commit 5ce14a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/dtsi-gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def cpu_template (id):
compatible = "riscv";
reg = <{id}>;
riscv,isa = "rv32ima";
mmu-type = "riscv,rv32";
mmu-type = "riscv,sv32";
cpu{id}_intc: interrupt-controller {{
#interrupt-cells = <1>;
#address-cells = <0>;
Expand Down

0 comments on commit 5ce14a8

Please sign in to comment.