Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arch: riscv: jh7110: fix qspi partitions according to datasheet #99

Open
wants to merge 1 commit into
base: JH7110_VisionFive2_devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions arch/riscv/boot/dts/starfive/jh7110.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -372,13 +372,16 @@
#size-cells = <1>;

spl@0 {
reg = <0x0 0x40000>;
reg = <0x0 0x80000>;
};
uboot@100000 {
reg = <0x100000 0x300000>;
reg = <0x100000 0x400000>;
};
data@f00000 {
reg = <0xf00000 0x100000>;
uboot-env@f0000 {
reg = <0xf0000 0x10000>;
};
reserved-data@600000 {
reg = <0x600000 0x1000000>;
};
};
};
Expand Down