blob: f004913f7d80a1f2c0df7b229f7a011b17399818 [file] [log] [blame]
Richard Zhao3c8276c2011-12-14 09:26:46 +08001/*
2 * Copyright 2011 Freescale Semiconductor, Inc.
3 * Copyright 2011 Linaro Ltd.
4 *
5 * The code contained herein is licensed under the GNU General Public
6 * License. You may obtain a copy of the GNU General Public License
7 * Version 2 or later at the following locations:
8 *
9 * http://www.opensource.org/licenses/gpl-license.html
10 * http://www.gnu.org/copyleft/gpl.html
11 */
12
13/dts-v1/;
Shawn Guo36dffd82013-04-07 10:49:34 +080014#include "imx6q.dtsi"
Richard Zhao3c8276c2011-12-14 09:26:46 +080015
16/ {
17 model = "Freescale i.MX6 Quad SABRE Lite Board";
18 compatible = "fsl,imx6q-sabrelite", "fsl,imx6q";
19
20 memory {
21 reg = <0x10000000 0x40000000>;
22 };
23
Richard Zhaocf37a8e2012-02-02 10:12:02 +080024 regulators {
25 compatible = "simple-bus";
26
27 reg_2p5v: 2p5v {
28 compatible = "regulator-fixed";
29 regulator-name = "2P5V";
30 regulator-min-microvolt = <2500000>;
31 regulator-max-microvolt = <2500000>;
32 regulator-always-on;
33 };
34
35 reg_3p3v: 3p3v {
36 compatible = "regulator-fixed";
37 regulator-name = "3P3V";
38 regulator-min-microvolt = <3300000>;
39 regulator-max-microvolt = <3300000>;
40 regulator-always-on;
41 };
Richard Zhao74bd88f2012-07-12 14:21:41 +080042
43 reg_usb_otg_vbus: usb_otg_vbus {
44 compatible = "regulator-fixed";
45 regulator-name = "usb_otg_vbus";
46 regulator-min-microvolt = <5000000>;
47 regulator-max-microvolt = <5000000>;
48 gpio = <&gpio3 22 0>;
49 enable-active-high;
50 };
Richard Zhaocf37a8e2012-02-02 10:12:02 +080051 };
Richard Zhaob7879fe2012-05-09 14:15:45 +080052
53 sound {
54 compatible = "fsl,imx6q-sabrelite-sgtl5000",
55 "fsl,imx-audio-sgtl5000";
56 model = "imx6q-sabrelite-sgtl5000";
57 ssi-controller = <&ssi1>;
58 audio-codec = <&codec>;
59 audio-routing =
60 "MIC_IN", "Mic Jack",
61 "Mic Jack", "Mic Bias",
62 "Headphone Jack", "HP_OUT";
63 mux-int-port = <1>;
64 mux-ext-port = <4>;
65 };
Richard Zhao3c8276c2011-12-14 09:26:46 +080066};
Shawn Guobe4ccfc2012-12-31 11:32:48 +080067
Fabio Estevam2422d432013-08-27 23:33:36 -030068&audmux {
Richard Zhu0fb1f802013-07-16 11:28:46 +080069 status = "okay";
Fabio Estevam2422d432013-08-27 23:33:36 -030070 pinctrl-names = "default";
71 pinctrl-0 = <&pinctrl_audmux_1>;
Richard Zhu0fb1f802013-07-16 11:28:46 +080072};
73
Shawn Guobe4ccfc2012-12-31 11:32:48 +080074&ecspi1 {
75 fsl,spi-num-chipselects = <1>;
76 cs-gpios = <&gpio3 19 0>;
77 pinctrl-names = "default";
78 pinctrl-0 = <&pinctrl_ecspi1_1>;
79 status = "okay";
80
81 flash: m25p80@0 {
82 compatible = "sst,sst25vf016b";
83 spi-max-frequency = <20000000>;
84 reg = <0>;
85 };
86};
87
Fabio Estevam2422d432013-08-27 23:33:36 -030088&fec {
89 pinctrl-names = "default";
90 pinctrl-0 = <&pinctrl_enet_1>;
91 phy-mode = "rgmii";
92 phy-reset-gpios = <&gpio3 23 0>;
Shawn Guobe4ccfc2012-12-31 11:32:48 +080093 status = "okay";
94};
95
Fabio Estevam2422d432013-08-27 23:33:36 -030096&i2c1 {
97 status = "okay";
98 clock-frequency = <100000>;
99 pinctrl-names = "default";
100 pinctrl-0 = <&pinctrl_i2c1_1>;
101
102 codec: sgtl5000@0a {
103 compatible = "fsl,sgtl5000";
104 reg = <0x0a>;
105 clocks = <&clks 201>;
106 VDDA-supply = <&reg_2p5v>;
107 VDDIO-supply = <&reg_3p3v>;
108 };
109};
110
Shawn Guobe4ccfc2012-12-31 11:32:48 +0800111&iomuxc {
112 pinctrl-names = "default";
113 pinctrl-0 = <&pinctrl_hog>;
114
115 hog {
116 pinctrl_hog: hoggrp {
117 fsl,pins = <
Shawn Guoc56009b2f2013-07-11 13:58:36 +0800118 MX6QDL_PAD_NANDF_D6__GPIO2_IO06 0x80000000
119 MX6QDL_PAD_NANDF_D7__GPIO2_IO07 0x80000000
120 MX6QDL_PAD_EIM_D19__GPIO3_IO19 0x80000000
121 MX6QDL_PAD_EIM_D22__GPIO3_IO22 0x80000000
122 MX6QDL_PAD_EIM_D23__GPIO3_IO23 0x80000000
123 MX6QDL_PAD_SD3_DAT5__GPIO7_IO00 0x80000000
124 MX6QDL_PAD_SD3_DAT4__GPIO7_IO01 0x1f0b0
125 MX6QDL_PAD_GPIO_0__CCM_CLKO1 0x80000000
Fabio Estevamc986d352013-09-27 11:12:40 -0300126 MX6QDL_PAD_EIM_D23__GPIO3_IO23 0x80000000
Shawn Guobe4ccfc2012-12-31 11:32:48 +0800127 >;
128 };
129 };
130};
131
Fabio Estevama09644b2013-08-27 23:33:37 -0300132&ldb {
133 status = "okay";
134
135 lvds-channel@0 {
136 fsl,data-mapping = "spwg";
137 fsl,data-width = <18>;
138 status = "okay";
139
140 display-timings {
141 native-mode = <&timing0>;
142 timing0: hsd100pxn1 {
143 clock-frequency = <65000000>;
144 hactive = <1024>;
145 vactive = <768>;
146 hback-porch = <220>;
147 hfront-porch = <40>;
148 vback-porch = <21>;
149 vfront-porch = <7>;
150 hsync-len = <60>;
151 vsync-len = <10>;
152 };
153 };
154 };
155};
156
Fabio Estevam2422d432013-08-27 23:33:36 -0300157&sata {
Shawn Guobe4ccfc2012-12-31 11:32:48 +0800158 status = "okay";
159};
160
Fabio Estevam2422d432013-08-27 23:33:36 -0300161&ssi1 {
162 fsl,mode = "i2s-slave";
163 status = "okay";
164};
165
166&uart2 {
167 status = "okay";
168 pinctrl-names = "default";
169 pinctrl-0 = <&pinctrl_uart2_1>;
170};
171
Shawn Guobe4ccfc2012-12-31 11:32:48 +0800172&usbh1 {
173 status = "okay";
174};
175
Fabio Estevam2422d432013-08-27 23:33:36 -0300176&usbotg {
177 vbus-supply = <&reg_usb_otg_vbus>;
Shawn Guobe4ccfc2012-12-31 11:32:48 +0800178 pinctrl-names = "default";
Fabio Estevam2422d432013-08-27 23:33:36 -0300179 pinctrl-0 = <&pinctrl_usbotg_1>;
180 disable-over-current;
Shawn Guobe4ccfc2012-12-31 11:32:48 +0800181 status = "okay";
182};
183
184&usdhc3 {
185 pinctrl-names = "default";
186 pinctrl-0 = <&pinctrl_usdhc3_2>;
187 cd-gpios = <&gpio7 0 0>;
188 wp-gpios = <&gpio7 1 0>;
189 vmmc-supply = <&reg_3p3v>;
190 status = "okay";
191};
192
193&usdhc4 {
194 pinctrl-names = "default";
195 pinctrl-0 = <&pinctrl_usdhc4_2>;
196 cd-gpios = <&gpio2 6 0>;
197 wp-gpios = <&gpio2 7 0>;
198 vmmc-supply = <&reg_3p3v>;
199 status = "okay";
200};