Commit 67547b9b authored by Linus Walleij's avatar Linus Walleij Committed by Greg Kroah-Hartman

ARM: dts: Fix up SQ201 flash access

[ Upstream commit d88b11ef ]

This sets the partition information on the SQ201 to be read
out from the RedBoot partition table, removes the static
partition table and sets our boot options to mount root from
/dev/mtdblock2 where the squashfs+JFFS2 resides.
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent ee6d2bed
...@@ -20,7 +20,7 @@ memory@0 { /* 128 MB */ ...@@ -20,7 +20,7 @@ memory@0 { /* 128 MB */
}; };
chosen { chosen {
bootargs = "console=ttyS0,115200n8"; bootargs = "console=ttyS0,115200n8 root=/dev/mtdblock2 rw rootfstype=squashfs,jffs2 rootwait";
stdout-path = &uart0; stdout-path = &uart0;
}; };
...@@ -138,37 +138,10 @@ flash@30000000 { ...@@ -138,37 +138,10 @@ flash@30000000 {
/* 16MB of flash */ /* 16MB of flash */
reg = <0x30000000 0x01000000>; reg = <0x30000000 0x01000000>;
partition@0 { partitions {
label = "RedBoot"; compatible = "redboot-fis";
reg = <0x00000000 0x00120000>; /* Eraseblock at 0xfe0000 */
read-only; fis-index-block = <0x1fc>;
};
partition@120000 {
label = "Kernel";
reg = <0x00120000 0x00200000>;
};
partition@320000 {
label = "Ramdisk";
reg = <0x00320000 0x00600000>;
};
partition@920000 {
label = "Application";
reg = <0x00920000 0x00600000>;
};
partition@f20000 {
label = "VCTL";
reg = <0x00f20000 0x00020000>;
read-only;
};
partition@f40000 {
label = "CurConf";
reg = <0x00f40000 0x000a0000>;
read-only;
};
partition@fe0000 {
label = "FIS directory";
reg = <0x00fe0000 0x00020000>;
read-only;
}; };
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment