summaryrefslogtreecommitdiff
path: root/arch/arm/dts/imx28-xea.dts
blob: 34af6cf67fa88a6a66b7b105129e5b4a27d2e346 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright 2019
 * Lukasz Majewski, DENX Software Engineering, lukma@denx.de
 *
 * SPDX-License-Identifier:     GPL-2.0+ or X11
 *
 */

/dts-v1/;

#include "imx28.dtsi"

/ {
	model = "Liebherr (LWE) XEA i.MX28 Board";
	compatible = "lwe,xea", "fsl,imx28";

	aliases {
		spi3 = &ssp3;
	};

	memory@40000000 {
		device_type = "memory";
		reg = <0x40000000 0x10000000>;
	};

	reg_3p3v: regulator-3p3v {
		compatible = "regulator-fixed";
		regulator-name = "3P3V";
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		regulator-always-on;
	};

	reg_fec_3v3: regulator-fec-3v3 {
		compatible = "regulator-fixed";
		regulator-name = "fec-3v3";
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		gpio = <&gpio0 0 GPIO_ACTIVE_HIGH>;
		enable-active-high;
		regulator-boot-on;
	};
};

&mac0 {
	phy-mode = "rmii";
	pinctrl-names = "default";
	pinctrl-0 = <&mac0_pins_a>;
	phy-supply = <&reg_fec_3v3>;
	phy-reset-gpios = <&gpio2 13 GPIO_ACTIVE_LOW>;
	phy-reset-duration = <1>;
	phy-reset-post-delay = <1>;
	status = "okay";

	fixed-link {
	      speed = <100>;
	      full-duplex;
	};
};

&ssp0 {
	compatible = "fsl,imx28-mmc";
	pinctrl-names = "default";
	pinctrl-0 = <&mmc0_8bit_pins_a>;
	bus-width = <8>;
	vmmc-supply = <&reg_3p3v>;
	non-removable;
	status = "okay";
};

&ssp3 {
	#address-cells = <1>;
	#size-cells = <0>;
	compatible = "fsl,imx28-spi";
	pinctrl-names = "default";
	pinctrl-0 = <&spi3_pins_b>;
	status = "okay";
	spi-max-frequency = <40000000>;
	num-cs = <2>;

	flash0: s25fl256s@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "jedec,spi-nor";
		spi-max-frequency = <40000000>;
		reg = <0>;

		partitions {
			compatible = "fixed-partitions";
			#address-cells = <1>;
			#size-cells = <1>;
			partition@0 {
				    label = "SPL";
				    reg = <0x0 0x10000>;
				    read-only;
			};
			partition@10000 {
				    label = "u-boot";
				    reg = <0x10000 0x70000>;
				    read-only;
			};
			partition@80000 {
				    label = "uboot-env1";
				    reg = <0x80000 0x10000>;
			};
			partition@90000 {
				    label = "uboot-env2";
				    reg = <0x90000 0x10000>;
			};
			partition@A0000 {
				    label = "rescue";
				    reg = <0xA0000 0xF40000>;
			};
			partition@FE0000 {
				    label = "spl-boot-data1";
				    reg = <0xFE0000 0x10000>;
			};
			partition@FF0000 {
				    label = "spl-boot-data2";
				    reg = <0xFF0000 0x10000>;
			};
		};
	};
};