mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
ARM: zynq: Fix addresses in partition definitions
Node name should be <name>@<address> which is not how partitions are described. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
5df63a60aa
commit
0ac6500737
2 changed files with 10 additions and 10 deletions
|
@ -67,23 +67,23 @@
|
||||||
spi-max-frequency = <50000000>;
|
spi-max-frequency = <50000000>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
partition@qspi-fsbl-uboot {
|
partition@0 {
|
||||||
label = "qspi-fsbl-uboot";
|
label = "qspi-fsbl-uboot";
|
||||||
reg = <0x0 0x100000>;
|
reg = <0x0 0x100000>;
|
||||||
};
|
};
|
||||||
partition@qspi-linux {
|
partition@100000 {
|
||||||
label = "qspi-linux";
|
label = "qspi-linux";
|
||||||
reg = <0x100000 0x500000>;
|
reg = <0x100000 0x500000>;
|
||||||
};
|
};
|
||||||
partition@qspi-device-tree {
|
partition@600000 {
|
||||||
label = "qspi-device-tree";
|
label = "qspi-device-tree";
|
||||||
reg = <0x600000 0x20000>;
|
reg = <0x600000 0x20000>;
|
||||||
};
|
};
|
||||||
partition@qspi-rootfs {
|
partition@620000 {
|
||||||
label = "qspi-rootfs";
|
label = "qspi-rootfs";
|
||||||
reg = <0x620000 0x5E0000>;
|
reg = <0x620000 0x5E0000>;
|
||||||
};
|
};
|
||||||
partition@qspi-bitstream {
|
partition@c00000 {
|
||||||
label = "qspi-bitstream";
|
label = "qspi-bitstream";
|
||||||
reg = <0xC00000 0x400000>;
|
reg = <0xC00000 0x400000>;
|
||||||
};
|
};
|
||||||
|
|
|
@ -44,23 +44,23 @@
|
||||||
spi-max-frequency = <100000000>;
|
spi-max-frequency = <100000000>;
|
||||||
#address-cells = <1>;
|
#address-cells = <1>;
|
||||||
#size-cells = <1>;
|
#size-cells = <1>;
|
||||||
partition@qspi-u-boot-spl {
|
partition@0 {
|
||||||
label = "qspi-u-boot-spl";
|
label = "qspi-u-boot-spl";
|
||||||
reg = <0x00000 0x10000>;
|
reg = <0x00000 0x10000>;
|
||||||
};
|
};
|
||||||
partition@qspi-u-boot-img {
|
partition@10000 {
|
||||||
label = "qspi-u-boot-img";
|
label = "qspi-u-boot-img";
|
||||||
reg = <0x10000 0x60000>;
|
reg = <0x10000 0x60000>;
|
||||||
};
|
};
|
||||||
partition@qspi-device-tree {
|
partition@70000 {
|
||||||
label = "qspi-device-tree";
|
label = "qspi-device-tree";
|
||||||
reg = <0x70000 0x10000>;
|
reg = <0x70000 0x10000>;
|
||||||
};
|
};
|
||||||
partition@qspi-linux {
|
partition@80000 {
|
||||||
label = "qspi-linux";
|
label = "qspi-linux";
|
||||||
reg = <0x80000 0x400000>;
|
reg = <0x80000 0x400000>;
|
||||||
};
|
};
|
||||||
partition@qspi-rootfs {
|
partition@480000 {
|
||||||
label = "qspi-rootfs";
|
label = "qspi-rootfs";
|
||||||
reg = <0x480000 0x1b80000>;
|
reg = <0x480000 0x1b80000>;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue