summaryrefslogtreecommitdiffstats
path: root/arch/arm/dts/imx27-phytec-phycore-rdk.dts
blob: fff154cb974703c1b944469e2a920db5f8fb4fc8 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 * Barebox specific DT overlay for Phytec PCM-970 RDK
 */

#include <arm/imx27-phytec-phycore-rdk.dts>

/ {
	chosen {
		stdout-path = &uart1;

		environment-nor {
			compatible = "barebox,environment";
			device-path = &environment_nor;
			status = "disabled";
		};

		environment-nand {
			compatible = "barebox,environment";
			device-path = &environment_nand;
			status = "disabled";
		};
	};
};

&iim {
	barebox,provide-mac-address = <&fec 1 0>;
};

&nfc {
	partition@0 {
		label = "boot";
		reg = <0x00000000 0x00080000>;
	};

	environment_nand: partition@80000 {
		label = "env";
		reg = <0x00080000 0x00020000>;
	};

	partition@a0000 {
		label = "kernel";
		reg = <0x000a0000 0x00400000>;
	};

	partition@4a0000 {
		label = "root";
		reg = <0x004a0000 0>;
	};
};

&nor {
	partition@0 {
		label = "boot";
		reg = <0x00000000 0x00080000>;
	};

	environment_nor: partition@80000 {
		label = "env";
		reg = <0x00080000 0x00020000>;
	};

	partition@a0000 {
		label = "kernel";
		reg = <0x000a0000 0x00400000>;
	};

	partition@4a0000 {
		label = "root";
		reg = <0x004a0000 0>;
	};
};