9
0
Fork 0

ARM i.MX6: sabrelite: move flash partitions into device tree

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Philipp Zabel 2013-11-18 12:06:36 +01:00 committed by Sascha Hauer
parent a959c685bd
commit ed619f16c4
2 changed files with 17 additions and 2 deletions

View File

@ -123,8 +123,6 @@ static int sabrelite_devices_init(void)
armlinux_set_bootparams((void *)0x10000100);
armlinux_set_architecture(3769);
devfs_add_partition("m25p0", 0, SZ_512K, DEVFS_PARTITION_FIXED, "self0");
devfs_add_partition("m25p0", SZ_512K, SZ_512K, DEVFS_PARTITION_FIXED, "env0");
return 0;
}

View File

@ -19,6 +19,11 @@
chosen {
linux,stdout-path = &uart2;
environment@0 {
compatible = "barebox,environment";
device-path = &flash, "partname:barebox-environment";
};
};
memory {
@ -80,6 +85,18 @@
compatible = "sst,sst25vf016b", "m25p80";
spi-max-frequency = <20000000>;
reg = <0>;
#address-cells = <1>;
#size-cells = <1>;
partition@0 {
label = "barebox";
reg = <0x0 0x80000>;
};
partition@1 {
label = "barebox-environment";
reg = <0x80000 0x80000>;
};
};
};