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