blob: 6d8d5e98b7c229b4d3329bdee402698b6e251fd3 [file] [log] [blame]
Valentin Raevsky682d0552013-10-29 14:11:43 +02001/*
2 * Copyright 2013 CompuLab Ltd.
3 *
4 * Author: Valentin Raevsky <valentin@compulab.co.il>
5 *
Christopher Spinratha98704b2016-06-07 19:14:18 +02006 * This file is dual-licensed: you can use it either under the terms
7 * of the GPL or the X11 license, at your option. Note that this dual
8 * licensing only applies to this file, and not this project as a
9 * whole.
Valentin Raevsky682d0552013-10-29 14:11:43 +020010 *
Christopher Spinratha98704b2016-06-07 19:14:18 +020011 * a) This file is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * version 2 as published by the Free Software Foundation.
14 *
15 * This file is distributed in the hope that it will be useful
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * Or, alternatively
21 *
22 * b) Permission is hereby granted, free of charge, to any person
23 * obtaining a copy of this software and associated documentation
24 * files (the "Software"), to deal in the Software without
25 * restriction, including without limitation the rights to use
26 * copy, modify, merge, publish, distribute, sublicense, and/or
27 * sell copies of the Software, and to permit persons to whom the
28 * Software is furnished to do so, subject to the following
29 * conditions:
30 *
31 * The above copyright notice and this permission notice shall be
32 * included in all copies or substantial portions of the Software.
33 *
34 * THE SOFTWARE IS PROVIDED , WITHOUT WARRANTY OF ANY KIND
35 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
36 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
37 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
38 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY
39 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
40 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
41 * OTHER DEALINGS IN THE SOFTWARE.
Valentin Raevsky682d0552013-10-29 14:11:43 +020042 */
43
44/dts-v1/;
Christopher Spinrath669c9402016-06-07 19:14:16 +020045#include <dt-bindings/gpio/gpio.h>
Valentin Raevsky682d0552013-10-29 14:11:43 +020046#include "imx6q.dtsi"
47
48/ {
49 model = "CompuLab CM-FX6";
50 compatible = "compulab,cm-fx6", "fsl,imx6q";
51
52 memory {
53 reg = <0x10000000 0x80000000>;
54 };
55
56 leds {
57 compatible = "gpio-leds";
58
59 heartbeat-led {
60 label = "Heartbeat";
61 gpios = <&gpio2 31 0>;
62 linux,default-trigger = "heartbeat";
63 };
64 };
Christopher Spinrath669c9402016-06-07 19:14:16 +020065
66 reg_pcie_power_on_gpio: regulator-pcie-power-on-gpio {
67 compatible = "regulator-fixed";
68 regulator-name = "regulator-pcie-power-on-gpio";
69 regulator-min-microvolt = <3300000>;
70 regulator-max-microvolt = <3300000>;
71 gpio = <&gpio2 24 GPIO_ACTIVE_HIGH>;
72 enable-active-high;
73 };
74
75 reg_usb_h1_vbus: usb_h1_vbus {
76 compatible = "regulator-fixed";
77 regulator-name = "usb_h1_vbus";
78 regulator-min-microvolt = <5000000>;
79 regulator-max-microvolt = <5000000>;
80 gpio = <&gpio7 8 GPIO_ACTIVE_HIGH>;
81 enable-active-high;
82 };
83
84 reg_usb_otg_vbus: usb_otg_vbus {
85 compatible = "regulator-fixed";
86 regulator-name = "usb_otg_vbus";
87 regulator-min-microvolt = <5000000>;
88 regulator-max-microvolt = <5000000>;
89 gpio = <&gpio3 22 GPIO_ACTIVE_HIGH>;
90 enable-active-high;
91 };
92};
93
94&ecspi1 {
95 fsl,spi-num-chipselects = <2>;
96 cs-gpios = <&gpio2 30 GPIO_ACTIVE_HIGH>, <&gpio3 19 GPIO_ACTIVE_HIGH>;
97 pinctrl-names = "default";
98 pinctrl-0 = <&pinctrl_ecspi1>;
99 status = "okay";
100
101 m25p80@0 {
102 #address-cells = <1>;
103 #size-cells = <1>;
104 compatible = "st,m25p", "jedec,spi-nor";
105 spi-max-frequency = <20000000>;
106 reg = <0>;
107 };
Valentin Raevsky682d0552013-10-29 14:11:43 +0200108};
109
110&fec {
111 pinctrl-names = "default";
112 pinctrl-0 = <&pinctrl_enet>;
113 phy-mode = "rgmii";
114 status = "okay";
115};
116
117&gpmi {
118 pinctrl-names = "default";
119 pinctrl-0 = <&pinctrl_gpmi_nand>;
120 status = "okay";
121};
122
Christopher Spinrath669c9402016-06-07 19:14:16 +0200123&i2c3 {
124 pinctrl-names = "default";
125 pinctrl-0 = <&pinctrl_i2c3>;
126 status = "okay";
127 clock-frequency = <100000>;
128
129 eeprom@50 {
130 compatible = "at24,24c02";
131 reg = <0x50>;
132 pagesize = <16>;
133 };
134};
135
Valentin Raevsky682d0552013-10-29 14:11:43 +0200136&iomuxc {
Christopher Spinrath669c9402016-06-07 19:14:16 +0200137 pinctrl_ecspi1: ecspi1grp {
138 fsl,pins = <
139 MX6QDL_PAD_EIM_D16__ECSPI1_SCLK 0x100b1
140 MX6QDL_PAD_EIM_D17__ECSPI1_MISO 0x100b1
141 MX6QDL_PAD_EIM_D18__ECSPI1_MOSI 0x100b1
142 MX6QDL_PAD_EIM_EB2__GPIO2_IO30 0x100b1
143 MX6QDL_PAD_EIM_D19__GPIO3_IO19 0x100b1
144 >;
145 };
146
Christopher Spinrath0c3bc8c2016-06-07 19:14:15 +0200147 pinctrl_enet: enetgrp {
148 fsl,pins = <
149 MX6QDL_PAD_RGMII_RXC__RGMII_RXC 0x1b0b0
150 MX6QDL_PAD_RGMII_RD0__RGMII_RD0 0x1b0b0
151 MX6QDL_PAD_RGMII_RD1__RGMII_RD1 0x1b0b0
152 MX6QDL_PAD_RGMII_RD2__RGMII_RD2 0x1b0b0
153 MX6QDL_PAD_RGMII_RD3__RGMII_RD3 0x1b0b0
154 MX6QDL_PAD_RGMII_RX_CTL__RGMII_RX_CTL 0x1b0b0
155 MX6QDL_PAD_RGMII_TXC__RGMII_TXC 0x1b0b0
156 MX6QDL_PAD_RGMII_TD0__RGMII_TD0 0x1b0b0
157 MX6QDL_PAD_RGMII_TD1__RGMII_TD1 0x1b0b0
158 MX6QDL_PAD_RGMII_TD2__RGMII_TD2 0x1b0b0
159 MX6QDL_PAD_RGMII_TD3__RGMII_TD3 0x1b0b0
160 MX6QDL_PAD_RGMII_TX_CTL__RGMII_TX_CTL 0x1b0b0
161 MX6QDL_PAD_ENET_REF_CLK__ENET_TX_CLK 0x1b0b0
162 MX6QDL_PAD_ENET_MDIO__ENET_MDIO 0x1b0b0
163 MX6QDL_PAD_ENET_MDC__ENET_MDC 0x1b0b0
164 MX6QDL_PAD_GPIO_16__ENET_REF_CLK 0x4001b0a8
165 >;
166 };
Valentin Raevsky682d0552013-10-29 14:11:43 +0200167
Christopher Spinrath0c3bc8c2016-06-07 19:14:15 +0200168 pinctrl_gpmi_nand: gpminandgrp {
169 fsl,pins = <
170 MX6QDL_PAD_NANDF_CLE__NAND_CLE 0xb0b1
171 MX6QDL_PAD_NANDF_ALE__NAND_ALE 0xb0b1
172 MX6QDL_PAD_NANDF_WP_B__NAND_WP_B 0xb0b1
173 MX6QDL_PAD_NANDF_RB0__NAND_READY_B 0xb000
174 MX6QDL_PAD_NANDF_CS0__NAND_CE0_B 0xb0b1
175 MX6QDL_PAD_NANDF_CS1__NAND_CE1_B 0xb0b1
176 MX6QDL_PAD_SD4_CMD__NAND_RE_B 0xb0b1
177 MX6QDL_PAD_SD4_CLK__NAND_WE_B 0xb0b1
178 MX6QDL_PAD_NANDF_D0__NAND_DATA00 0xb0b1
179 MX6QDL_PAD_NANDF_D1__NAND_DATA01 0xb0b1
180 MX6QDL_PAD_NANDF_D2__NAND_DATA02 0xb0b1
181 MX6QDL_PAD_NANDF_D3__NAND_DATA03 0xb0b1
182 MX6QDL_PAD_NANDF_D4__NAND_DATA04 0xb0b1
183 MX6QDL_PAD_NANDF_D5__NAND_DATA05 0xb0b1
184 MX6QDL_PAD_NANDF_D6__NAND_DATA06 0xb0b1
185 MX6QDL_PAD_NANDF_D7__NAND_DATA07 0xb0b1
186 MX6QDL_PAD_SD4_DAT0__NAND_DQS 0x00b1
187 >;
188 };
Valentin Raevsky682d0552013-10-29 14:11:43 +0200189
Christopher Spinrath669c9402016-06-07 19:14:16 +0200190 pinctrl_i2c3: i2c3grp {
191 fsl,pins = <
192 MX6QDL_PAD_GPIO_3__I2C3_SCL 0x4001b8b1
193 MX6QDL_PAD_GPIO_6__I2C3_SDA 0x4001b8b1
194 >;
195 };
196
197 pinctrl_pcie: pciegrp {
198 fsl,pins = <
199 MX6QDL_PAD_ENET_RXD1__GPIO1_IO26 0x1b0b1
200 MX6QDL_PAD_EIM_CS1__GPIO2_IO24 0x1b0b1
201 >;
202 };
203
Christopher Spinrath0c3bc8c2016-06-07 19:14:15 +0200204 pinctrl_uart4: uart4grp {
205 fsl,pins = <
206 MX6QDL_PAD_KEY_COL0__UART4_TX_DATA 0x1b0b1
207 MX6QDL_PAD_KEY_ROW0__UART4_RX_DATA 0x1b0b1
208 >;
Valentin Raevsky682d0552013-10-29 14:11:43 +0200209 };
Christopher Spinrath669c9402016-06-07 19:14:16 +0200210
211 pinctrl_usbh1: usbh1grp {
212 fsl,pins = <
213 MX6QDL_PAD_SD3_RST__GPIO7_IO08 0x1b0b1
214 >;
215 };
216
217 pinctrl_usbotg: usbotggrp {
218 fsl,pins = <
219 MX6QDL_PAD_ENET_RX_ER__USB_OTG_ID 0x17059
220 MX6QDL_PAD_EIM_D22__GPIO3_IO22 0x130b0
221 >;
222 };
223};
224
225&pcie {
226 pinctrl-names = "default";
227 pinctrl-0 = <&pinctrl_pcie>;
228 reset-gpio = <&gpio1 26 GPIO_ACTIVE_LOW>;
229 vdd-supply = <&reg_pcie_power_on_gpio>;
230 status = "okay";
231};
232
233&sata {
234 status = "okay";
235};
236
237&snvs_poweroff {
238 status = "okay";
Valentin Raevsky682d0552013-10-29 14:11:43 +0200239};
240
241&uart4 {
242 pinctrl-names = "default";
243 pinctrl-0 = <&pinctrl_uart4>;
244 status = "okay";
245};
Christopher Spinrath669c9402016-06-07 19:14:16 +0200246
247&usbh1 {
248 vbus-supply = <&reg_usb_h1_vbus>;
249 pinctrl-names = "default";
250 pinctrl-0 = <&pinctrl_usbh1>;
251 status = "okay";
252};
253
254&usbotg {
255 vbus-supply = <&reg_usb_otg_vbus>;
256 pinctrl-names = "default";
257 pinctrl-0 = <&pinctrl_usbotg>;
258 dr_mode = "otg";
259 status = "okay";
260};