Newer
Older
barebox / arch / arm / dts / imx6q-wandboard.dts
@Sascha Hauer Sascha Hauer on 19 Jun 2018 554 bytes ARM: dts: remove @0 from environment nodes
#include <arm/imx6q-wandboard.dts>
#include <dt-bindings/gpio/gpio.h>
#include "imx6q.dtsi"

/ {
	chosen {
		stdout-path = &uart1;

		environment {
			compatible = "barebox,environment";
			device-path = &environment_usdhc3;
		};
	};

	memory {
		reg = <0x0 0x0>;
	};
};

&ocotp {
	barebox,provide-mac-address = <&fec 0x620>;
};

&usdhc3 {
	#address-cells = <1>;
	#size-cells = <1>;

	partition@0 {
		label = "barebox";
		reg = <0x0 0xe0000>;
	};

	environment_usdhc3: partition@e0000 {
		label = "barebox-environment";
		reg = <0xe0000 0x20000>;
	};
};