blob: 6cbcce26eaca47893a25eae7c8f67d21ad2a853d [file] [log] [blame]
Tony Lindgren687c2762015-05-20 09:23:43 -07001/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License version 2 as
4 * published by the Free Software Foundation.
5 */
6
7/dts-v1/;
8
9#include "omap36xx.dtsi"
10#include "logicpd-torpedo-som.dtsi"
11#include "omap-gpmc-smsc9221.dtsi"
12
13/ {
14 model = "LogicPD Zoom DM3730 Torpedo Development Kit";
Tony Lindgren57df5382015-10-16 12:23:33 -070015 compatible = "logicpd,dm3730-torpedo-devkit", "ti,omap3630", "ti,omap3";
Tony Lindgren687c2762015-05-20 09:23:43 -070016
17 gpio_keys {
18 compatible = "gpio-keys";
19 pinctrl-names = "default";
20 pinctrl-0 = <&gpio_key_pins &gpio_key_pins_wkup>;
21
22 sysboot2 {
23 label = "sysboot2";
24 gpios = <&gpio1 2 GPIO_ACTIVE_LOW>; /* gpio2 */
25 linux,code = <BTN_0>;
Sudeep Holla0c4d63b2015-10-21 11:10:12 +010026 wakeup-source;
Tony Lindgren687c2762015-05-20 09:23:43 -070027 };
28
29 sysboot5 {
30 label = "sysboot5";
31 gpios = <&gpio1 7 GPIO_ACTIVE_LOW>; /* gpio7 */
32 linux,code = <BTN_1>;
Sudeep Holla0c4d63b2015-10-21 11:10:12 +010033 wakeup-source;
Tony Lindgren687c2762015-05-20 09:23:43 -070034 };
35
36 gpio1 {
37 label = "gpio1";
38 gpios = <&gpio6 21 GPIO_ACTIVE_LOW>; /* gpio181 */
39 linux,code = <BTN_2>;
Sudeep Holla0c4d63b2015-10-21 11:10:12 +010040 wakeup-source;
Tony Lindgren687c2762015-05-20 09:23:43 -070041 };
42
43 gpio2 {
44 label = "gpio2";
45 gpios = <&gpio6 18 GPIO_ACTIVE_LOW>; /* gpio178 */
46 linux,code = <BTN_3>;
Sudeep Holla0c4d63b2015-10-21 11:10:12 +010047 wakeup-source;
Tony Lindgren687c2762015-05-20 09:23:43 -070048 };
49 };
50
Adam Fordf81902e2015-10-23 07:20:23 -050051 sound {
52 compatible = "ti,omap-twl4030";
53 ti,model = "omap3logic";
54 ti,mcbsp = <&mcbsp2>;
55 };
56
Tony Lindgren687c2762015-05-20 09:23:43 -070057 leds {
58 compatible = "gpio-leds";
59 pinctrl-names = "default";
60 pinctrl-0 = <&led_pins>;
61
62 led1 {
63 label = "led1";
64 gpios = <&gpio6 20 GPIO_ACTIVE_HIGH>; /* gpio180 */
65 linux,default-trigger = "cpu0";
66 };
67
68 led2 {
69 label = "led2";
70 gpios = <&gpio6 19 GPIO_ACTIVE_HIGH>; /* gpio179 */
71 linux,default-trigger = "none";
72 };
73 };
Adam Ford730d7dc2016-02-17 18:30:12 -060074
75 pwm10: dmtimer-pwm@10 {
76 compatible = "ti,omap-dmtimer-pwm";
77 pinctrl-names = "default";
78 pinctrl-0 = <&pwm_pins>;
79 ti,timers = <&timer10>;
80 #pwm-cells = <3>;
81 };
82
Tony Lindgren687c2762015-05-20 09:23:43 -070083};
84
Adam Ford2d119612015-10-23 07:27:33 -050085&vaux1 {
86 regulator-min-microvolt = <3000000>;
87 regulator-max-microvolt = <3000000>;
88};
89
90&vaux4 {
91 regulator-min-microvolt = <1800000>;
92 regulator-max-microvolt = <1800000>;
93};
94
Adam Fordf81902e2015-10-23 07:20:23 -050095&mcbsp2 {
96 status = "okay";
97};
98
Tony Lindgren687c2762015-05-20 09:23:43 -070099&charger {
100 ti,bb-uvolt = <3200000>;
101 ti,bb-uamp = <150>;
102};
103
104&gpmc {
105 ranges = <1 0 0x08000000 0x1000000>; /* CS1: 16MB for LAN9221 */
106
107 ethernet@gpmc {
108 pinctrl-names = "default";
109 pinctrl-0 = <&lan9221_pins>;
110 interrupt-parent = <&gpio5>;
111 interrupts = <1 IRQ_TYPE_LEVEL_LOW>; /* gpio129 */
112 reg = <1 0 0xff>;
113 };
114};
115
Adam Ford60db5542015-12-16 21:18:29 -0600116&vpll2 {
117 regulator-always-on;
118};
119
120&dss {
121 status = "ok";
122 vdds_dsi-supply = <&vpll2>;
Adam Ford59d2c402016-01-11 17:07:11 -0600123 vdda_video-supply = <&video_reg>;
Adam Ford60db5542015-12-16 21:18:29 -0600124 pinctrl-names = "default";
125 pinctrl-0 = <&dss_dpi_pins1>;
126 port {
127 dpi_out: endpoint {
128 remote-endpoint = <&lcd_in>;
129 data-lines = <16>;
130 };
131 };
132};
133
134/ {
135 aliases {
136 display0 = &lcd0;
137 };
138
Adam Ford59d2c402016-01-11 17:07:11 -0600139 video_reg: video_reg {
140 pinctrl-names = "default";
141 pinctrl-0 = <&panel_pwr_pins>;
142 compatible = "regulator-fixed";
143 regulator-name = "fixed-supply";
144 regulator-min-microvolt = <3300000>;
145 regulator-max-microvolt = <3300000>;
146 gpio = <&gpio5 27 GPIO_ACTIVE_HIGH>; /* gpio155, lcd INI */
147 };
148
Adam Ford60db5542015-12-16 21:18:29 -0600149 lcd0: display@0 {
150 compatible = "panel-dpi";
151 label = "15";
152 status = "okay";
153 /* default-on; */
154 pinctrl-names = "default";
Adam Ford60db5542015-12-16 21:18:29 -0600155
156 port {
157 lcd_in: endpoint {
158 remote-endpoint = <&dpi_out>;
159 };
160 };
161
162 panel-timing {
163 clock-frequency = <9000000>;
164 hactive = <480>;
165 vactive = <272>;
166 hfront-porch = <3>;
167 hback-porch = <2>;
168 hsync-len = <42>;
169 vback-porch = <3>;
170 vfront-porch = <4>;
171 vsync-len = <11>;
172 hsync-active = <0>;
173 vsync-active = <0>;
174 de-active = <1>;
175 pixelclk-active = <1>;
176 };
177 };
178
179 bl: backlight {
Adam Ford730d7dc2016-02-17 18:30:12 -0600180 compatible = "pwm-backlight";
Adam Ford60db5542015-12-16 21:18:29 -0600181 pinctrl-names = "default";
182 pinctrl-0 = <&backlight_pins>;
Adam Ford730d7dc2016-02-17 18:30:12 -0600183 pwms = <&pwm10 0 5000000 0>;
184 brightness-levels = <0 10 20 30 40 50 60 70 80 90 100>;
185 default-brightness-level = <7>;
186 enable-gpios = <&gpio5 26 GPIO_ACTIVE_HIGH>; /* gpio_154 */
Adam Ford60db5542015-12-16 21:18:29 -0600187 };
188};
189
Tony Lindgren687c2762015-05-20 09:23:43 -0700190&mmc1 {
191 interrupts-extended = <&intc 83 &omap3_pmx_core 0x11a>;
192 pinctrl-names = "default";
193 pinctrl-0 = <&mmc1_pins &mmc1_cd>;
194 cd-gpios = <&gpio4 31 IRQ_TYPE_LEVEL_LOW>; /* gpio127 */
195 vmmc-supply = <&vmmc1>;
196 bus-width = <4>;
197 cap-power-off-card;
198};
199
200&omap3_pmx_core {
201 gpio_key_pins: pinmux_gpio_key_pins {
202 pinctrl-single,pins = <
203 OMAP3_CORE1_IOPAD(0x21d6, PIN_INPUT_PULLUP | MUX_MODE4) /* mcspi2_clk.gpio_178 */
204 OMAP3_CORE1_IOPAD(0x21dc, PIN_INPUT_PULLUP | MUX_MODE4) /* mcspi2_cs0.gpio_181 */
205 >;
206 };
207
Adam Ford730d7dc2016-02-17 18:30:12 -0600208 pwm_pins: pinmux_pwm_pins {
209 pinctrl-single,pins = <
210 OMAP3_CORE1_IOPAD(0x20B8, PIN_OUTPUT | PIN_OFF_OUTPUT_LOW | MUX_MODE3) /* gpmc_ncs5.gpt_10_pwm_evt */
211 >;
212 };
213
Tony Lindgren687c2762015-05-20 09:23:43 -0700214 led_pins: pinmux_led_pins {
215 pinctrl-single,pins = <
216 OMAP3_CORE1_IOPAD(0x21d8, PIN_OUTPUT | MUX_MODE4) /* gpio_179 */
217 OMAP3_CORE1_IOPAD(0x21da, PIN_OUTPUT | MUX_MODE4) /* gpio_180 */
218 >;
219 };
220
221 mmc1_pins: pinmux_mmc1_pins {
222 pinctrl-single,pins = <
223 OMAP3_CORE1_IOPAD(0x2144, PIN_OUTPUT | MUX_MODE0) /* sdmmc1_clk.sdmmc1_clk */
224 OMAP3_CORE1_IOPAD(0x2146, PIN_INPUT | MUX_MODE0) /* sdmmc1_cmd.sdmmc1_cmd */
225 OMAP3_CORE1_IOPAD(0x2148, PIN_INPUT | MUX_MODE0) /* sdmmc1_dat0.sdmmc1_dat0 */
226 OMAP3_CORE1_IOPAD(0x214a, PIN_INPUT | MUX_MODE0) /* sdmmc1_dat1.sdmmc1_dat1 */
227 OMAP3_CORE1_IOPAD(0x214c, PIN_INPUT | MUX_MODE0) /* sdmmc1_dat2.sdmmc1_dat2 */
228 OMAP3_CORE1_IOPAD(0x214e, PIN_INPUT | MUX_MODE0) /* sdmmc1_dat3.sdmmc1_dat3 */
229 >;
230 };
Adam Ford60db5542015-12-16 21:18:29 -0600231
Adam Ford6c957712015-12-20 09:26:15 -0600232 tsc2004_pins: pinmux_tsc2004_pins {
233 pinctrl-single,pins = <
234 OMAP3_CORE1_IOPAD(0x2186, PIN_INPUT | MUX_MODE4) /* mcbsp4_dr.gpio_153 */
235 >;
236 };
237
Adam Ford60db5542015-12-16 21:18:29 -0600238 backlight_pins: pinmux_backlight_pins {
239 pinctrl-single,pins = <
Adam Ford59d2c402016-01-11 17:07:11 -0600240 OMAP3_CORE1_IOPAD(0x2188, PIN_OUTPUT | PIN_OFF_OUTPUT_LOW | MUX_MODE4) /* mcbsp4_dx.gpio_154 */
Adam Ford60db5542015-12-16 21:18:29 -0600241 >;
242 };
243
Adam Ford05c4ffc2016-01-08 23:50:12 -0600244 isp_pins: pinmux_isp_pins {
245 pinctrl-single,pins = <
246 OMAP3_CORE1_IOPAD(0x210c, PIN_INPUT | MUX_MODE0) /* cam_hs.cam_hs */
247 OMAP3_CORE1_IOPAD(0x210e, PIN_INPUT | MUX_MODE0) /* cam_vs.cam_vs */
248 OMAP3_CORE1_IOPAD(0x2110, PIN_INPUT | MUX_MODE0) /* cam_xclka.cam_xclka */
249 OMAP3_CORE1_IOPAD(0x2112, PIN_INPUT | MUX_MODE0) /* cam_pclk.cam_pclk */
250
251 OMAP3_CORE1_IOPAD(0x2114, PIN_INPUT | MUX_MODE0) /* cam_d0.cam_d0 */
252 OMAP3_CORE1_IOPAD(0x2116, PIN_INPUT | MUX_MODE0) /* cam_d1.cam_d1 */
253 OMAP3_CORE1_IOPAD(0x2118, PIN_INPUT | MUX_MODE0) /* cam_d2.cam_d2 */
254 OMAP3_CORE1_IOPAD(0x211c, PIN_INPUT | MUX_MODE0) /* cam_d3.cam_d3 */
255 OMAP3_CORE1_IOPAD(0x211e, PIN_INPUT | MUX_MODE0) /* cam_d4.cam_d4 */
256 OMAP3_CORE1_IOPAD(0x2120, PIN_INPUT | MUX_MODE0) /* cam_d5.cam_d5 */
257 OMAP3_CORE1_IOPAD(0x2122, PIN_INPUT | MUX_MODE0) /* cam_d6.cam_d6 */
258 OMAP3_CORE1_IOPAD(0x2124, PIN_INPUT | MUX_MODE0) /* cam_d7.cam_d7 */
259 >;
260 };
261
Adam Ford59d2c402016-01-11 17:07:11 -0600262 panel_pwr_pins: pinmux_panel_pwr_pins {
263 pinctrl-single,pins = <
264 OMAP3_CORE1_IOPAD(0x218a, PIN_OUTPUT | PIN_OFF_OUTPUT_LOW | MUX_MODE4) /* mcbsp4_fs.gpio_155 */
265 >;
266 };
267
Adam Ford60db5542015-12-16 21:18:29 -0600268 dss_dpi_pins1: pinmux_dss_dpi_pins1 {
269 pinctrl-single,pins = <
Adam Ford59d2c402016-01-11 17:07:11 -0600270 OMAP3_CORE1_IOPAD(0x20d4, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_pclk.dss_pclk */
271 OMAP3_CORE1_IOPAD(0x20d6, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_hsync.dss_hsync */
272 OMAP3_CORE1_IOPAD(0x20d8, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_vsync.dss_vsync */
273 OMAP3_CORE1_IOPAD(0x20da, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_acbias.dss_acbias */
Adam Ford60db5542015-12-16 21:18:29 -0600274
Adam Ford59d2c402016-01-11 17:07:11 -0600275 OMAP3_CORE1_IOPAD(0x20e8, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data6.dss_data6 */
276 OMAP3_CORE1_IOPAD(0x20ea, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data7.dss_data7 */
277 OMAP3_CORE1_IOPAD(0x20ec, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data8.dss_data8 */
278 OMAP3_CORE1_IOPAD(0x20ee, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data9.dss_data9 */
279 OMAP3_CORE1_IOPAD(0x20f0, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data10.dss_data10 */
280 OMAP3_CORE1_IOPAD(0x20f2, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data11.dss_data11 */
281 OMAP3_CORE1_IOPAD(0x20f4, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data12.dss_data12 */
282 OMAP3_CORE1_IOPAD(0x20f6, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data13.dss_data13 */
283 OMAP3_CORE1_IOPAD(0x20f8, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data14.dss_data14 */
284 OMAP3_CORE1_IOPAD(0x20fa, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data15.dss_data15 */
285 OMAP3_CORE1_IOPAD(0x20fc, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data16.dss_data16 */
286 OMAP3_CORE1_IOPAD(0x20fe, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE0) /* dss_data17.dss_data17 */
Adam Ford60db5542015-12-16 21:18:29 -0600287
Adam Ford59d2c402016-01-11 17:07:11 -0600288 OMAP3_CORE1_IOPAD(0x2100, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE3) /* dss_data18.dss_data0 */
289 OMAP3_CORE1_IOPAD(0x2102, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE3) /* dss_data19.dss_data1 */
290 OMAP3_CORE1_IOPAD(0x2104, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE3) /* dss_data20.dss_data2 */
291 OMAP3_CORE1_IOPAD(0x2106, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE3) /* dss_data21.dss_data3 */
292 OMAP3_CORE1_IOPAD(0x2108, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE3) /* dss_data22.dss_data4 */
293 OMAP3_CORE1_IOPAD(0x210a, PIN_OUTPUT_PULLDOWN | PIN_OFF_OUTPUT_LOW | MUX_MODE3) /* dss_data23.dss_data5 */
Adam Ford60db5542015-12-16 21:18:29 -0600294 >;
295 };
Tony Lindgren687c2762015-05-20 09:23:43 -0700296};
297
298&omap3_pmx_wkup {
299 gpio_key_pins_wkup: pinmux_gpio_key_pins_wkup {
300 pinctrl-single,pins = <
301 OMAP3_WKUP_IOPAD(0x2a0a, PIN_INPUT_PULLUP | MUX_MODE4) /* sys_boot0.gpio_2 */
302 OMAP3_WKUP_IOPAD(0x2a14, PIN_INPUT_PULLUP | MUX_MODE4) /* sys_boot5.gpio_7 */
303 >;
304 };
305
306 lan9221_pins: pinmux_lan9221_pins {
307 pinctrl-single,pins = <
308 OMAP3_WKUP_IOPAD(0x2a5a, PIN_INPUT | MUX_MODE4) /* reserved.gpio_129 */
309 >;
310 };
311
312 mmc1_cd: pinmux_mmc1_cd {
313 pinctrl-single,pins = <
314 OMAP3_WKUP_IOPAD(0x2a54, PIN_INPUT_PULLUP | MUX_MODE4) /* reserved.gpio_127 */
315 >;
316 };
317};
318
Adam Ford05c4ffc2016-01-08 23:50:12 -0600319&i2c2 {
320 mt9p031@48 {
321 compatible = "aptina,mt9p031";
322 reg = <0x48>;
323 clocks = <&isp 0>;
324 vaa-supply = <&vaux4>;
325 vdd-supply = <&vaux4>;
326 vdd_io-supply = <&vaux4>;
327 port {
328 mt9p031_out: endpoint {
329 input-clock-frequency = <24000000>;
330 pixel-clock-frequency = <72000000>;
331 remote-endpoint = <&ccdc_ep>;
332 };
333 };
334 };
335};
336
Adam Ford6c957712015-12-20 09:26:15 -0600337&i2c3 {
338 touchscreen: tsc2004@48 {
339 compatible = "ti,tsc2004";
340 reg = <0x48>;
341 vio-supply = <&vaux1>;
342 pinctrl-names = "default";
343 pinctrl-0 = <&tsc2004_pins>;
344 interrupts-extended = <&gpio5 25 IRQ_TYPE_EDGE_RISING>; /* gpio 153 */
345
346 touchscreen-fuzz-x = <4>;
347 touchscreen-fuzz-y = <7>;
348 touchscreen-fuzz-pressure = <2>;
349 touchscreen-size-x = <4096>;
350 touchscreen-size-y = <4096>;
351 touchscreen-max-pressure = <2048>;
352
353 ti,x-plate-ohms = <280>;
354 ti,esd-recovery-timeout-ms = <8000>;
355 };
356};
357
Adam Ford40d5cb22016-01-11 22:57:58 -0600358&mcspi1 {
359 at25@0 {
360 compatible = "atmel,at25";
361 reg = <0>;
362 spi-max-frequency = <5000000>;
363 spi-cpha;
364 spi-cpol;
365
366 pagesize = <64>;
367 size = <32768>;
368 address-width = <16>;
369 };
370};
371
Adam Ford05c4ffc2016-01-08 23:50:12 -0600372&isp {
373 pinctrl-names = "default";
374 pinctrl-0 = <&isp_pins>;
375 ports {
376 port@0 {
377 reg = <0>;
378 ccdc_ep: endpoint {
379 remote-endpoint = <&mt9p031_out>;
380 bus-width = <8>;
381 hsync-active = <1>;
382 vsync-active = <1>;
383 pclk-sample = <0>;
384 };
385 };
386 };
387};
388
Tony Lindgren687c2762015-05-20 09:23:43 -0700389&uart1 {
390 interrupts-extended = <&intc 72 &omap3_pmx_core OMAP3_UART1_RX>;
391};
392
393/* Wired to the tps65950 on the SOM, only the USB connector is on the devkit */
394&usb_otg_hs {
Adam Fordb4cc2b72016-01-17 17:53:48 -0600395 pinctrl-names = "default";
396 pinctrl-0 = <&hsusb_otg_pins>;
Tony Lindgren687c2762015-05-20 09:23:43 -0700397 interface-type = <0>;
398 usb-phy = <&usb2_phy>;
399 phys = <&usb2_phy>;
400 phy-names = "usb2-phy";
401 mode = <3>;
402 power = <50>;
403};