Commit 2cbc1474 authored by Tao Ren's avatar Tao Ren Committed by Joel Stanley
Browse files

ARM: dts: aspeed: wedge400: Use common flash layout



Simplify wedge400 flash layout by using the common layout defined in
"facebook-bmc-flash-layout-128.dtsi".

Signed-off-by: default avatarTao Ren <rentao.bupt@gmail.com>
Signed-off-by: default avatarJoel Stanley <joel@jms.id.au>
Link: https://lore.kernel.org/r/20210805222818.8391-3-rentao.bupt@gmail.com


Signed-off-by: default avatarJoel Stanley <joel@jms.id.au>
parent b74759f7
Loading
Loading
Loading
Loading
+1 −47
Original line number Diff line number Diff line
@@ -91,53 +91,7 @@
 * Both firmware flashes are 128MB on Wedge400 BMC.
 */
&fmc_flash0 {
	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

		/*
		 * u-boot partition: 384KB.
		 */
		u-boot@0 {
			reg = <0x0 0x60000>;
			label = "u-boot";
		};

		/*
		 * u-boot environment variables: 128KB.
		 */
		u-boot-env@60000 {
			reg = <0x60000 0x20000>;
			label = "env";
		};

		/*
		 * FIT image: 123.5 MB.
		 */
		fit@80000 {
			reg = <0x80000 0x7b80000>;
			label = "fit";
		};

		/*
		 * "data0" partition (4MB) is reserved for persistent
		 * data store.
		 */
		data0@7c00000 {
			reg = <0x7c00000 0x400000>;
			label = "data0";
		};

		/*
		 * "flash0" partition (covering the entire flash) is
		 * explicitly created to avoid breaking legacy applications.
		 */
		flash0@0 {
			reg = <0x0 0x8000000>;
			label = "flash0";
		};
	};
#include "facebook-bmc-flash-layout-128.dtsi"
};

&fmc_flash1 {