summaryrefslogtreecommitdiffstats
path: root/arch/arm/dts/imx6ul-ccimx6ulsbcpro.dts
blob: a9a2581c0e3ed6d53d892197c1c0b68dcd910aa6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#include <arm/nxp/imx/imx6ul-ccimx6ulsbcpro.dts>

/{
	chosen {
		stdout-path = &uart5;

		environment-nand {
			compatible = "barebox,environment";
			device-path = &env_nand;
			status = "okay";
		};
	};
};

&gpmi {
	pinctrl-names = "default";
	pinctrl-0 = <&pinctrl_gpmi_nand>;
	nand-on-flash-bbt;
	status = "okay";

	partitions {
		compatible = "fixed-partitions";
		#address-cells = <1>;
		#size-cells = <1>;

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

		env_nand: partition@400000 {
			label = "barebox-environment";
			reg = <0x400000 0x100000>;
		};

		partition@500000 {
			label = "root";
			reg = <0x500000 0x0>;
		};
	};
};