xref: /freebsd-src/sys/contrib/device-tree/src/arm/nxp/imx/imx53-ard.dts (revision aa1a8ff2d6dbc51ef058f46f3db5a8bb77967145)
1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-or-later
2f126890aSEmmanuel Vadot/*
3f126890aSEmmanuel Vadot * Copyright 2011 Freescale Semiconductor, Inc.
4f126890aSEmmanuel Vadot * Copyright 2011 Linaro Ltd.
5f126890aSEmmanuel Vadot */
6f126890aSEmmanuel Vadot
7f126890aSEmmanuel Vadot/dts-v1/;
8f126890aSEmmanuel Vadot#include <dt-bindings/input/input.h>
9f126890aSEmmanuel Vadot#include "imx53.dtsi"
10f126890aSEmmanuel Vadot
11f126890aSEmmanuel Vadot/ {
12f126890aSEmmanuel Vadot	model = "Freescale i.MX53 Automotive Reference Design Board";
13f126890aSEmmanuel Vadot	compatible = "fsl,imx53-ard", "fsl,imx53";
14f126890aSEmmanuel Vadot
15f126890aSEmmanuel Vadot	memory@70000000 {
16f126890aSEmmanuel Vadot		device_type = "memory";
17f126890aSEmmanuel Vadot		reg = <0x70000000 0x40000000>;
18f126890aSEmmanuel Vadot	};
19f126890aSEmmanuel Vadot
20f126890aSEmmanuel Vadot	eim-cs1@f4000000 {
21f126890aSEmmanuel Vadot		#address-cells = <1>;
22f126890aSEmmanuel Vadot		#size-cells = <1>;
23f126890aSEmmanuel Vadot		compatible = "fsl,eim-bus", "simple-bus";
24f126890aSEmmanuel Vadot		reg = <0xf4000000 0x3ff0000>;
25f126890aSEmmanuel Vadot		ranges;
26f126890aSEmmanuel Vadot
27f126890aSEmmanuel Vadot		ethernet@f4000000 {
28f126890aSEmmanuel Vadot			compatible = "smsc,lan9220", "smsc,lan9115";
29f126890aSEmmanuel Vadot			reg = <0xf4000000 0x2000000>;
30f126890aSEmmanuel Vadot			phy-mode = "mii";
31f126890aSEmmanuel Vadot			interrupt-parent = <&gpio2>;
32f126890aSEmmanuel Vadot			interrupts = <31 0x8>;
33f126890aSEmmanuel Vadot			reg-io-width = <4>;
34f126890aSEmmanuel Vadot			/*
35f126890aSEmmanuel Vadot			 * VDD33A and VDDVARIO of LAN9220 are supplied by
36f126890aSEmmanuel Vadot			 * SW4_3V3 of LTC3589.  Before the regulator driver
37f126890aSEmmanuel Vadot			 * for this PMIC is available, we use a fixed dummy
38f126890aSEmmanuel Vadot			 * 3V3 regulator to get LAN9220 driver probing work.
39f126890aSEmmanuel Vadot			 */
40f126890aSEmmanuel Vadot			vdd33a-supply = <&reg_3p3v>;
41f126890aSEmmanuel Vadot			vddvario-supply = <&reg_3p3v>;
42f126890aSEmmanuel Vadot			smsc,irq-push-pull;
43f126890aSEmmanuel Vadot		};
44f126890aSEmmanuel Vadot	};
45f126890aSEmmanuel Vadot
46*aa1a8ff2SEmmanuel Vadot	reg_3p3v: regulator-3p3v {
47f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
48f126890aSEmmanuel Vadot		regulator-name = "3P3V";
49f126890aSEmmanuel Vadot		regulator-min-microvolt = <3300000>;
50f126890aSEmmanuel Vadot		regulator-max-microvolt = <3300000>;
51f126890aSEmmanuel Vadot		regulator-always-on;
52f126890aSEmmanuel Vadot	};
53f126890aSEmmanuel Vadot
54f126890aSEmmanuel Vadot	gpio-keys {
55f126890aSEmmanuel Vadot		compatible = "gpio-keys";
56f126890aSEmmanuel Vadot
57f126890aSEmmanuel Vadot		key-home {
58f126890aSEmmanuel Vadot			label = "Home";
59f126890aSEmmanuel Vadot			gpios = <&gpio5 10 0>;
60f126890aSEmmanuel Vadot			linux,code = <KEY_HOME>;
61f126890aSEmmanuel Vadot			wakeup-source;
62f126890aSEmmanuel Vadot		};
63f126890aSEmmanuel Vadot
64f126890aSEmmanuel Vadot		key-back {
65f126890aSEmmanuel Vadot			label = "Back";
66f126890aSEmmanuel Vadot			gpios = <&gpio5 11 0>;
67f126890aSEmmanuel Vadot			linux,code = <KEY_BACK>;
68f126890aSEmmanuel Vadot			wakeup-source;
69f126890aSEmmanuel Vadot		};
70f126890aSEmmanuel Vadot
71f126890aSEmmanuel Vadot		key-program {
72f126890aSEmmanuel Vadot			label = "Program";
73f126890aSEmmanuel Vadot			gpios = <&gpio5 12 0>;
74f126890aSEmmanuel Vadot			linux,code = <KEY_PROGRAM >;
75f126890aSEmmanuel Vadot			wakeup-source;
76f126890aSEmmanuel Vadot		};
77f126890aSEmmanuel Vadot
78f126890aSEmmanuel Vadot		key-volume-up {
79f126890aSEmmanuel Vadot			label = "Volume Up";
80f126890aSEmmanuel Vadot			gpios = <&gpio5 13 0>;
81f126890aSEmmanuel Vadot			linux,code = <KEY_VOLUMEUP>;
82f126890aSEmmanuel Vadot		};
83f126890aSEmmanuel Vadot
84f126890aSEmmanuel Vadot		key-volume-down {
85f126890aSEmmanuel Vadot			label = "Volume Down";
86f126890aSEmmanuel Vadot			gpios = <&gpio4 0 0>;
87f126890aSEmmanuel Vadot			linux,code = <KEY_VOLUMEDOWN>;
88f126890aSEmmanuel Vadot		};
89f126890aSEmmanuel Vadot	};
90f126890aSEmmanuel Vadot};
91f126890aSEmmanuel Vadot
92f126890aSEmmanuel Vadot&esdhc1 {
93f126890aSEmmanuel Vadot	pinctrl-names = "default";
94f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_esdhc1>;
95f126890aSEmmanuel Vadot	cd-gpios = <&gpio1 1 GPIO_ACTIVE_LOW>;
96f126890aSEmmanuel Vadot	wp-gpios = <&gpio1 9 GPIO_ACTIVE_HIGH>;
97f126890aSEmmanuel Vadot	status = "okay";
98f126890aSEmmanuel Vadot};
99f126890aSEmmanuel Vadot
100f126890aSEmmanuel Vadot&iomuxc {
101f126890aSEmmanuel Vadot	pinctrl-names = "default";
102f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_hog>;
103f126890aSEmmanuel Vadot
104f126890aSEmmanuel Vadot	imx53-ard {
105f126890aSEmmanuel Vadot		pinctrl_hog: hoggrp {
106f126890aSEmmanuel Vadot			fsl,pins = <
107f126890aSEmmanuel Vadot				MX53_PAD_GPIO_1__GPIO1_1             0x80000000
108f126890aSEmmanuel Vadot				MX53_PAD_GPIO_9__GPIO1_9             0x80000000
109f126890aSEmmanuel Vadot				MX53_PAD_EIM_EB3__GPIO2_31           0x80000000
110f126890aSEmmanuel Vadot				MX53_PAD_GPIO_10__GPIO4_0            0x80000000
111f126890aSEmmanuel Vadot				MX53_PAD_DISP0_DAT16__GPIO5_10	     0x80000000
112f126890aSEmmanuel Vadot				MX53_PAD_DISP0_DAT17__GPIO5_11       0x80000000
113f126890aSEmmanuel Vadot				MX53_PAD_DISP0_DAT18__GPIO5_12       0x80000000
114f126890aSEmmanuel Vadot				MX53_PAD_DISP0_DAT19__GPIO5_13       0x80000000
115f126890aSEmmanuel Vadot				MX53_PAD_EIM_D16__EMI_WEIM_D_16      0x80000000
116f126890aSEmmanuel Vadot				MX53_PAD_EIM_D17__EMI_WEIM_D_17      0x80000000
117f126890aSEmmanuel Vadot				MX53_PAD_EIM_D18__EMI_WEIM_D_18      0x80000000
118f126890aSEmmanuel Vadot				MX53_PAD_EIM_D19__EMI_WEIM_D_19      0x80000000
119f126890aSEmmanuel Vadot				MX53_PAD_EIM_D20__EMI_WEIM_D_20      0x80000000
120f126890aSEmmanuel Vadot				MX53_PAD_EIM_D21__EMI_WEIM_D_21      0x80000000
121f126890aSEmmanuel Vadot				MX53_PAD_EIM_D22__EMI_WEIM_D_22      0x80000000
122f126890aSEmmanuel Vadot				MX53_PAD_EIM_D23__EMI_WEIM_D_23      0x80000000
123f126890aSEmmanuel Vadot				MX53_PAD_EIM_D24__EMI_WEIM_D_24      0x80000000
124f126890aSEmmanuel Vadot				MX53_PAD_EIM_D25__EMI_WEIM_D_25      0x80000000
125f126890aSEmmanuel Vadot				MX53_PAD_EIM_D26__EMI_WEIM_D_26      0x80000000
126f126890aSEmmanuel Vadot				MX53_PAD_EIM_D27__EMI_WEIM_D_27      0x80000000
127f126890aSEmmanuel Vadot				MX53_PAD_EIM_D28__EMI_WEIM_D_28      0x80000000
128f126890aSEmmanuel Vadot				MX53_PAD_EIM_D29__EMI_WEIM_D_29      0x80000000
129f126890aSEmmanuel Vadot				MX53_PAD_EIM_D30__EMI_WEIM_D_30      0x80000000
130f126890aSEmmanuel Vadot				MX53_PAD_EIM_D31__EMI_WEIM_D_31      0x80000000
131f126890aSEmmanuel Vadot				MX53_PAD_EIM_DA0__EMI_NAND_WEIM_DA_0 0x80000000
132f126890aSEmmanuel Vadot				MX53_PAD_EIM_DA1__EMI_NAND_WEIM_DA_1 0x80000000
133f126890aSEmmanuel Vadot				MX53_PAD_EIM_DA2__EMI_NAND_WEIM_DA_2 0x80000000
134f126890aSEmmanuel Vadot				MX53_PAD_EIM_DA3__EMI_NAND_WEIM_DA_3 0x80000000
135f126890aSEmmanuel Vadot				MX53_PAD_EIM_DA4__EMI_NAND_WEIM_DA_4 0x80000000
136f126890aSEmmanuel Vadot				MX53_PAD_EIM_DA5__EMI_NAND_WEIM_DA_5 0x80000000
137f126890aSEmmanuel Vadot				MX53_PAD_EIM_DA6__EMI_NAND_WEIM_DA_6 0x80000000
138f126890aSEmmanuel Vadot				MX53_PAD_EIM_OE__EMI_WEIM_OE	     0x80000000
139f126890aSEmmanuel Vadot				MX53_PAD_EIM_RW__EMI_WEIM_RW	     0x80000000
140f126890aSEmmanuel Vadot				MX53_PAD_EIM_CS1__EMI_WEIM_CS_1	     0x80000000
141f126890aSEmmanuel Vadot			>;
142f126890aSEmmanuel Vadot		};
143f126890aSEmmanuel Vadot
144f126890aSEmmanuel Vadot		pinctrl_esdhc1: esdhc1grp {
145f126890aSEmmanuel Vadot			fsl,pins = <
146f126890aSEmmanuel Vadot				MX53_PAD_SD1_DATA0__ESDHC1_DAT0		0x1d5
147f126890aSEmmanuel Vadot				MX53_PAD_SD1_DATA1__ESDHC1_DAT1		0x1d5
148f126890aSEmmanuel Vadot				MX53_PAD_SD1_DATA2__ESDHC1_DAT2		0x1d5
149f126890aSEmmanuel Vadot				MX53_PAD_SD1_DATA3__ESDHC1_DAT3		0x1d5
150f126890aSEmmanuel Vadot				MX53_PAD_PATA_DATA8__ESDHC1_DAT4	0x1d5
151f126890aSEmmanuel Vadot				MX53_PAD_PATA_DATA9__ESDHC1_DAT5	0x1d5
152f126890aSEmmanuel Vadot				MX53_PAD_PATA_DATA10__ESDHC1_DAT6	0x1d5
153f126890aSEmmanuel Vadot				MX53_PAD_PATA_DATA11__ESDHC1_DAT7	0x1d5
154f126890aSEmmanuel Vadot				MX53_PAD_SD1_CMD__ESDHC1_CMD		0x1d5
155f126890aSEmmanuel Vadot				MX53_PAD_SD1_CLK__ESDHC1_CLK		0x1d5
156f126890aSEmmanuel Vadot			>;
157f126890aSEmmanuel Vadot		};
158f126890aSEmmanuel Vadot
159f126890aSEmmanuel Vadot		pinctrl_uart1: uart1grp {
160f126890aSEmmanuel Vadot			fsl,pins = <
161f126890aSEmmanuel Vadot				MX53_PAD_PATA_DIOW__UART1_TXD_MUX	0x1e4
162f126890aSEmmanuel Vadot				MX53_PAD_PATA_DMACK__UART1_RXD_MUX	0x1e4
163f126890aSEmmanuel Vadot			>;
164f126890aSEmmanuel Vadot		};
165f126890aSEmmanuel Vadot	};
166f126890aSEmmanuel Vadot};
167f126890aSEmmanuel Vadot
168f126890aSEmmanuel Vadot&uart1 {
169f126890aSEmmanuel Vadot	pinctrl-names = "default";
170f126890aSEmmanuel Vadot	pinctrl-0 = <&pinctrl_uart1>;
171f126890aSEmmanuel Vadot	status = "okay";
172f126890aSEmmanuel Vadot};
173