• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// SPDX-License-Identifier: GPL-2.0-only
2/dts-v1/;
3
4#include <dt-bindings/input/input.h>
5#include "omap443x.dtsi"
6#include "motorola-cpcap-mapphone.dtsi"
7
8/ {
9	chosen {
10		stdout-path = &uart3;
11	};
12
13	aliases {
14		display0 = &lcd0;
15		display1 = &hdmi0;
16	};
17
18	/*
19	 * We seem to have only 1021 MB accessible, 1021 - 1022 is locked,
20	 * then 1023 - 1024 seems to contain mbm.
21	 */
22	memory {
23		device_type = "memory";
24		reg = <0x80000000 0x3fd00000>;	/* 1021 MB */
25	};
26
27	/* Poweroff GPIO probably connected to CPCAP */
28	gpio-poweroff {
29		compatible = "gpio-poweroff";
30		pinctrl-0 = <&poweroff_gpio>;
31		pinctrl-names = "default";
32		gpios = <&gpio2 18 GPIO_ACTIVE_LOW>;	/* gpio50 */
33	};
34
35	hdmi0: connector {
36		compatible = "hdmi-connector";
37		pinctrl-0 = <&hdmi_hpd_gpio>;
38		pinctrl-names = "default";
39		label = "hdmi";
40		type = "d";
41
42		hpd-gpios = <&gpio2 31 GPIO_ACTIVE_HIGH>;	/* gpio63 */
43
44		port {
45			hdmi_connector_in: endpoint {
46				remote-endpoint = <&hdmi_out>;
47			};
48		};
49	};
50
51	/*
52	 * HDMI 5V regulator probably sourced from battery. Let's keep
53	 * keep this as always enabled for HDMI to work until we've
54	 * figured what the encoder chip is.
55	 */
56	hdmi_regulator: regulator-hdmi {
57		compatible = "regulator-fixed";
58		regulator-name = "hdmi";
59		regulator-min-microvolt = <5000000>;
60		regulator-max-microvolt = <5000000>;
61		gpio = <&gpio2 27 GPIO_ACTIVE_HIGH>;	/* gpio59 */
62		enable-active-high;
63		regulator-always-on;
64	};
65
66	/* FS USB Host PHY on port 1 for mdm6600 */
67	fsusb1_phy: usb-phy@1 {
68		compatible = "motorola,mapphone-mdm6600";
69		pinctrl-0 = <&usb_mdm6600_pins>;
70		pinctrl-names = "default";
71		enable-gpios = <&gpio3 31 GPIO_ACTIVE_LOW>;     /* gpio_95 */
72		power-gpios = <&gpio2 22 GPIO_ACTIVE_HIGH>;	/* gpio_54 */
73		reset-gpios = <&gpio2 17 GPIO_ACTIVE_HIGH>;	/* gpio_49 */
74		/* mode: gpio_148 gpio_149 */
75		motorola,mode-gpios = <&gpio5 20 GPIO_ACTIVE_HIGH>,
76				      <&gpio5 21 GPIO_ACTIVE_HIGH>;
77		/* cmd: gpio_103 gpio_104 gpio_142 */
78		motorola,cmd-gpios = <&gpio4 7 GPIO_ACTIVE_HIGH>,
79				     <&gpio4 8 GPIO_ACTIVE_HIGH>,
80				     <&gpio5 14 GPIO_ACTIVE_HIGH>;
81		/* status: gpio_52 gpio_53 gpio_55 */
82		motorola,status-gpios = <&gpio2 20 GPIO_ACTIVE_HIGH>,
83					<&gpio2 21 GPIO_ACTIVE_HIGH>,
84					<&gpio2 23 GPIO_ACTIVE_HIGH>;
85		#phy-cells = <0>;
86	};
87
88	/* HS USB host TLL nop-phy on port 2 for w3glte */
89	hsusb2_phy: usb-phy@2 {
90		compatible = "usb-nop-xceiv";
91		#phy-cells = <0>;
92	};
93
94	/* LCD regulator from sw5 source */
95	lcd_regulator: regulator-lcd {
96		compatible = "regulator-fixed";
97		regulator-name = "lcd";
98		regulator-min-microvolt = <5050000>;
99		regulator-max-microvolt = <5050000>;
100		gpio = <&gpio4 0 GPIO_ACTIVE_HIGH>;	/* gpio96 */
101		enable-active-high;
102		vin-supply = <&sw5>;
103	};
104
105	/* This is probably coming straight from the battery.. */
106	wl12xx_vmmc: regulator-wl12xx {
107		compatible = "regulator-fixed";
108		regulator-name = "vwl1271";
109		regulator-min-microvolt = <1650000>;
110		regulator-max-microvolt = <1650000>;
111		gpio = <&gpio3 30 GPIO_ACTIVE_HIGH>;	/* gpio94 */
112		startup-delay-us = <70000>;
113		enable-active-high;
114	};
115
116	gpio_keys {
117		compatible = "gpio-keys";
118
119		volume_down {
120			label = "Volume Down";
121			gpios = <&gpio5 26 GPIO_ACTIVE_LOW>; /* gpio154 */
122			linux,code = <KEY_VOLUMEDOWN>;
123			linux,can-disable;
124			/* Value above 7.95ms for no GPIO hardware debounce */
125			debounce-interval = <10>;
126		};
127
128		slider {
129			label = "Keypad Slide";
130			gpios = <&gpio4 26 GPIO_ACTIVE_HIGH>; /* gpio122 */
131			linux,input-type = <EV_SW>;
132			linux,code = <SW_KEYPAD_SLIDE>;
133			linux,can-disable;
134			/* Value above 7.95ms for no GPIO hardware debounce */
135			debounce-interval = <10>;
136		};
137	};
138
139	soundcard {
140		compatible = "audio-graph-card";
141		label = "Droid 4 Audio";
142
143		widgets =
144			"Speaker", "Earpiece",
145			"Speaker", "Loudspeaker",
146			"Headphone", "Headphone Jack",
147			"Microphone", "Internal Mic";
148
149		routing =
150			"Earpiece", "EP",
151			"Loudspeaker", "SPKR",
152			"Headphone Jack", "HSL",
153			"Headphone Jack", "HSR",
154			"MICR", "Internal Mic";
155
156		dais = <&mcbsp2_port>, <&mcbsp3_port>;
157	};
158
159	pwm8: dmtimer-pwm-8 {
160		pinctrl-names = "default";
161		pinctrl-0 = <&vibrator_direction_pin>;
162
163		compatible = "ti,omap-dmtimer-pwm";
164		#pwm-cells = <3>;
165		ti,timers = <&timer8>;
166		ti,clock-source = <0x01>;
167	};
168
169	pwm9: dmtimer-pwm-9 {
170		pinctrl-names = "default";
171		pinctrl-0 = <&vibrator_enable_pin>;
172
173		compatible = "ti,omap-dmtimer-pwm";
174		#pwm-cells = <3>;
175		ti,timers = <&timer9>;
176		ti,clock-source = <0x01>;
177	};
178
179	vibrator {
180		compatible = "pwm-vibrator";
181		pwms = <&pwm9 0 10000000 0>, <&pwm8 0 10000000 0>;
182		pwm-names = "enable", "direction";
183		direction-duty-cycle-ns = <10000000>;
184	};
185
186	backlight: backlight {
187		compatible = "led-backlight";
188
189		leds = <&backlight_led>;
190		brightness-levels = <31 63 95 127 159 191 223 255>;
191		default-brightness-level = <6>;
192	};
193};
194
195&dss {
196	status = "okay";
197};
198
199&dsi1 {
200	status = "okay";
201	vdd-supply = <&vcsi>;
202
203	port {
204		dsi1_out_ep: endpoint {
205			remote-endpoint = <&lcd0_in>;
206			lanes = <0 1 2 3 4 5>;
207		};
208	};
209
210	lcd0: panel@0 {
211		compatible = "motorola,droid4-panel", "panel-dsi-cm";
212		reg = <0>;
213		label = "lcd0";
214		vddi-supply = <&lcd_regulator>;
215		reset-gpios = <&gpio4 5 GPIO_ACTIVE_HIGH>;	/* gpio101 */
216
217		backlight = <&backlight>;
218
219		width-mm = <50>;
220		height-mm = <89>;
221		rotation = <90>;
222
223		panel-timing {
224			clock-frequency = <0>;		/* Calculated by dsi */
225
226			hback-porch = <2>;
227			hactive = <540>;
228			hfront-porch = <0>;
229			hsync-len = <2>;
230
231			vback-porch = <1>;
232			vactive = <960>;
233			vfront-porch = <0>;
234			vsync-len = <1>;
235
236			hsync-active = <0>;
237			vsync-active = <0>;
238			de-active = <1>;
239			pixelclk-active = <1>;
240		};
241
242		port {
243			lcd0_in: endpoint {
244				remote-endpoint = <&dsi1_out_ep>;
245			};
246		};
247	};
248};
249
250&hdmi {
251	status = "okay";
252	pinctrl-0 = <&dss_hdmi_pins>;
253	pinctrl-names = "default";
254	vdda-supply = <&vdac>;
255
256	port {
257		hdmi_out: endpoint {
258			remote-endpoint = <&hdmi_connector_in>;
259			lanes = <1 0 3 2 5 4 7 6>;
260		};
261	};
262};
263
264/* Battery NVRAM on 1-wire handled by w1_ds250x driver */
265&hdqw1w {
266	pinctrl-0 = <&hdq_pins>;
267	pinctrl-names = "default";
268	ti,mode = "1w";
269};
270
271&i2c1 {
272	tmp105@48 {
273		compatible = "ti,tmp105";
274		reg = <0x48>;
275		pinctrl-0 = <&tmp105_irq>;
276		pinctrl-names = "default";
277		/* kpd_row0.gpio_178 */
278		interrupts-extended = <&gpio6 18 IRQ_TYPE_EDGE_FALLING
279				       &omap4_pmx_core 0x14e>;
280		interrupt-names = "irq", "wakeup";
281		wakeup-source;
282	};
283};
284
285&keypad {
286	keypad,num-rows = <8>;
287	keypad,num-columns = <8>;
288	linux,keymap = <
289
290	/* Row 1 */
291	MATRIX_KEY(0, 2, KEY_1)
292	MATRIX_KEY(0, 6, KEY_2)
293	MATRIX_KEY(2, 3, KEY_3)
294	MATRIX_KEY(0, 7, KEY_4)
295	MATRIX_KEY(0, 4, KEY_5)
296	MATRIX_KEY(5, 5, KEY_6)
297	MATRIX_KEY(0, 1, KEY_7)
298	MATRIX_KEY(0, 5, KEY_8)
299	MATRIX_KEY(0, 0, KEY_9)
300	MATRIX_KEY(1, 6, KEY_0)
301
302	/* Row 2 */
303	MATRIX_KEY(3, 4, KEY_APOSTROPHE)
304	MATRIX_KEY(7, 6, KEY_Q)
305	MATRIX_KEY(7, 7, KEY_W)
306	MATRIX_KEY(7, 2, KEY_E)
307	MATRIX_KEY(1, 0, KEY_R)
308	MATRIX_KEY(4, 4, KEY_T)
309	MATRIX_KEY(1, 2, KEY_Y)
310	MATRIX_KEY(6, 7, KEY_U)
311	MATRIX_KEY(2, 2, KEY_I)
312	MATRIX_KEY(5, 6, KEY_O)
313	MATRIX_KEY(3, 7, KEY_P)
314	MATRIX_KEY(6, 5, KEY_BACKSPACE)
315
316	/* Row 3 */
317	MATRIX_KEY(5, 4, KEY_TAB)
318	MATRIX_KEY(5, 7, KEY_A)
319	MATRIX_KEY(2, 7, KEY_S)
320	MATRIX_KEY(7, 0, KEY_D)
321	MATRIX_KEY(2, 6, KEY_F)
322	MATRIX_KEY(6, 2, KEY_G)
323	MATRIX_KEY(6, 6, KEY_H)
324	MATRIX_KEY(1, 4, KEY_J)
325	MATRIX_KEY(3, 1, KEY_K)
326	MATRIX_KEY(2, 1, KEY_L)
327	MATRIX_KEY(4, 6, KEY_ENTER)
328
329	/* Row 4 */
330	MATRIX_KEY(3, 6, KEY_LEFTSHIFT)		/* KEY_CAPSLOCK */
331	MATRIX_KEY(6, 1, KEY_Z)
332	MATRIX_KEY(7, 4, KEY_X)
333	MATRIX_KEY(5, 1, KEY_C)
334	MATRIX_KEY(1, 7, KEY_V)
335	MATRIX_KEY(2, 4, KEY_B)
336	MATRIX_KEY(4, 1, KEY_N)
337	MATRIX_KEY(1, 1, KEY_M)
338	MATRIX_KEY(3, 5, KEY_COMMA)
339	MATRIX_KEY(5, 2, KEY_DOT)
340	MATRIX_KEY(6, 3, KEY_UP)
341	MATRIX_KEY(7, 3, KEY_OK)
342
343	/* Row 5 */
344	MATRIX_KEY(2, 5, KEY_LEFTCTRL)		/* KEY_LEFTSHIFT */
345	MATRIX_KEY(4, 5, KEY_LEFTALT)		/* SYM */
346	MATRIX_KEY(6, 0, KEY_MINUS)
347	MATRIX_KEY(4, 7, KEY_EQUAL)
348	MATRIX_KEY(1, 5, KEY_SPACE)
349	MATRIX_KEY(3, 2, KEY_SLASH)
350	MATRIX_KEY(4, 3, KEY_LEFT)
351	MATRIX_KEY(5, 3, KEY_DOWN)
352	MATRIX_KEY(3, 3, KEY_RIGHT)
353
354	/* Side buttons, KEY_VOLUMEDOWN and KEY_PWER are on CPCAP? */
355	MATRIX_KEY(5, 0, KEY_VOLUMEUP)
356	>;
357};
358
359&mmc1 {
360	vmmc-supply = <&vwlan2>;
361	bus-width = <4>;
362	cd-gpios = <&gpio6 16 GPIO_ACTIVE_LOW>;	/* gpio176 */
363};
364
365&mmc2 {
366	vmmc-supply = <&vsdio>;
367	bus-width = <8>;
368	ti,non-removable;
369};
370
371&mmc3 {
372	pinctrl-names = "default";
373	pinctrl-0 = <&mmc3_pins>;
374	vmmc-supply = <&wl12xx_vmmc>;
375	/* uart2_tx.sdmmc3_dat1 pad as wakeirq */
376	interrupts-extended = <&wakeupgen GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH
377			       &omap4_pmx_core 0xde>;
378	interrupt-names = "irq", "wakeup";
379	non-removable;
380	bus-width = <4>;
381	cap-power-off-card;
382	keep-power-in-suspend;
383
384	#address-cells = <1>;
385	#size-cells = <0>;
386	wlcore: wlcore@2 {
387		compatible = "ti,wl1285", "ti,wl1283";
388		reg = <2>;
389		/* gpio_100 with gpmc_wait2 pad as wakeirq */
390		interrupts-extended = <&gpio4 4 IRQ_TYPE_LEVEL_HIGH>,
391				      <&omap4_pmx_core 0x4e>;
392		interrupt-names = "irq", "wakeup";
393		ref-clock-frequency = <26000000>;
394		tcxo-clock-frequency = <26000000>;
395	};
396};
397
398&i2c1 {
399	led-controller@38 {
400		compatible = "ti,lm3532";
401		#address-cells = <1>;
402		#size-cells = <0>;
403		reg = <0x38>;
404
405		enable-gpios = <&gpio6 12 GPIO_ACTIVE_HIGH>;
406
407		ramp-up-us = <1024>;
408		ramp-down-us = <8193>;
409
410		backlight_led: led@0 {
411			reg = <0>;
412			led-sources = <2>;
413			ti,led-mode = <0>;
414			label = ":backlight";
415		};
416
417		led@1 {
418			reg = <1>;
419			led-sources = <1>;
420			ti,led-mode = <0>;
421			label = ":kbd_backlight";
422		};
423	};
424};
425
426&i2c2 {
427	touchscreen@4a {
428		compatible = "atmel,maxtouch";
429		reg = <0x4a>;
430		pinctrl-names = "default";
431		pinctrl-0 = <&touchscreen_pins>;
432
433		reset-gpios = <&gpio6 13 GPIO_ACTIVE_LOW>; /* gpio173 */
434
435		/* gpio_183 with sys_nirq2 pad as wakeup */
436		interrupts-extended = <&gpio6 23 IRQ_TYPE_LEVEL_LOW>,
437				      <&omap4_pmx_core 0x160>;
438		interrupt-names = "irq", "wakeup";
439		wakeup-source;
440	};
441
442	isl29030@44 {
443		compatible = "isil,isl29030";
444		reg = <0x44>;
445
446		pinctrl-names = "default";
447		pinctrl-0 = <&als_proximity_pins>;
448
449		interrupt-parent = <&gpio6>;
450		interrupts = <17 IRQ_TYPE_LEVEL_LOW>; /* gpio177 */
451	};
452};
453
454&omap4_pmx_core {
455
456	/* hdmi_hpd.gpio_63 */
457	hdmi_hpd_gpio: pinmux_hdmi_hpd_pins {
458		pinctrl-single,pins = <
459		OMAP4_IOPAD(0x098, PIN_INPUT | MUX_MODE3)
460		>;
461	};
462
463	hdq_pins: pinmux_hdq_pins {
464		pinctrl-single,pins = <
465		/* 0x4a100120 hdq_sio.hdq_sio aa27 */
466		OMAP4_IOPAD(0x120, PIN_INPUT | MUX_MODE0)
467		>;
468	};
469
470	/* hdmi_cec.hdmi_cec, hdmi_scl.hdmi_scl, hdmi_sda.hdmi_sda */
471	dss_hdmi_pins: pinmux_dss_hdmi_pins {
472		pinctrl-single,pins = <
473		OMAP4_IOPAD(0x09a, PIN_INPUT | MUX_MODE0)
474		OMAP4_IOPAD(0x09c, PIN_INPUT | MUX_MODE0)
475		OMAP4_IOPAD(0x09e, PIN_INPUT | MUX_MODE0)
476		>;
477	};
478
479	/*
480	 * Android uses PIN_OFF_INPUT_PULLDOWN | PIN_INPUT_PULLUP | MUX_MODE3
481	 * for gpio_100, but the internal pull makes wlan flakey on some
482	 * devices. Off mode value should be tested if we have off mode working
483	 * later on.
484	 */
485	mmc3_pins: pinmux_mmc3_pins {
486		pinctrl-single,pins = <
487		/* 0x4a10008e gpmc_wait2.gpio_100 d23 */
488		OMAP4_IOPAD(0x08e, PIN_INPUT | MUX_MODE3)
489
490		/* 0x4a100102 abe_mcbsp1_dx.sdmmc3_dat2 ab25 */
491		OMAP4_IOPAD(0x102, PIN_INPUT_PULLUP | MUX_MODE1)
492
493		/* 0x4a100104 abe_mcbsp1_fsx.sdmmc3_dat3 ac27 */
494		OMAP4_IOPAD(0x104, PIN_INPUT_PULLUP | MUX_MODE1)
495
496		/* 0x4a100118 uart2_cts.sdmmc3_clk ab26 */
497		OMAP4_IOPAD(0x118, PIN_INPUT | MUX_MODE1)
498
499		/* 0x4a10011a uart2_rts.sdmmc3_cmd ab27 */
500		OMAP4_IOPAD(0x11a, PIN_INPUT_PULLUP | MUX_MODE1)
501
502		/* 0x4a10011c uart2_rx.sdmmc3_dat0 aa25 */
503		OMAP4_IOPAD(0x11c, PIN_INPUT_PULLUP | MUX_MODE1)
504
505		/* 0x4a10011e uart2_tx.sdmmc3_dat1 aa26 */
506		OMAP4_IOPAD(0x11e, PIN_INPUT_PULLUP | MUX_MODE1)
507		>;
508	};
509
510	/* gpmc_ncs0.gpio_50 */
511	poweroff_gpio: pinmux_poweroff_pins {
512		pinctrl-single,pins = <
513		OMAP4_IOPAD(0x074, PIN_OUTPUT_PULLUP | MUX_MODE3)
514		>;
515	};
516
517	/* kpd_row0.gpio_178 */
518	tmp105_irq: pinmux_tmp105_irq {
519		pinctrl-single,pins = <
520		OMAP4_IOPAD(0x18e, PIN_INPUT_PULLUP | MUX_MODE3)
521		>;
522	};
523
524	usb_gpio_mux_sel1: pinmux_usb_gpio_mux_sel1_pins {
525		/* gpio_60 */
526		pinctrl-single,pins = <
527		OMAP4_IOPAD(0x088, PIN_OUTPUT | MUX_MODE3)
528		>;
529	};
530
531	touchscreen_pins: pinmux_touchscreen_pins {
532		pinctrl-single,pins = <
533		OMAP4_IOPAD(0x180, PIN_OUTPUT | MUX_MODE3)
534		OMAP4_IOPAD(0x1a0, PIN_INPUT_PULLUP | MUX_MODE3)
535		>;
536	};
537
538	als_proximity_pins: pinmux_als_proximity_pins {
539		pinctrl-single,pins = <
540		OMAP4_IOPAD(0x18c, PIN_INPUT_PULLUP | MUX_MODE3)
541		>;
542	};
543
544	usb_mdm6600_pins: pinmux_usb_mdm6600_pins {
545		pinctrl-single,pins = <
546		/* enable 0x4a1000d8 usbb1_ulpitll_dat7.gpio_95 ag16 */
547		OMAP4_IOPAD(0x0d8, PIN_INPUT | MUX_MODE3)
548
549		/* power 0x4a10007c gpmc_nwp.gpio_54 c25 */
550		OMAP4_IOPAD(0x07c, PIN_OUTPUT | MUX_MODE3)
551
552		/* reset 0x4a100072 gpmc_a25.gpio_49 d20 */
553		OMAP4_IOPAD(0x072, PIN_OUTPUT | MUX_MODE3)
554
555		/* mode0/bpwake 0x4a10014e sdmmc5_dat1.gpio_148 af4 */
556		OMAP4_IOPAD(0x14e, PIN_OUTPUT | MUX_MODE3)
557
558		/* mode1/apwake 0x4a100150 sdmmc5_dat2.gpio_149 ag3 */
559		OMAP4_IOPAD(0x150, PIN_OFF_OUTPUT_LOW | PIN_INPUT | MUX_MODE3)
560
561		/* status0 0x4a10007e gpmc_clk.gpio_55 b22 */
562		OMAP4_IOPAD(0x07e, PIN_INPUT | MUX_MODE3)
563
564		/* status1 0x4a10007a gpmc_ncs3.gpio_53 c22 */
565		OMAP4_IOPAD(0x07a, PIN_INPUT | MUX_MODE3)
566
567		/* status2 0x4a100078 gpmc_ncs2.gpio_52 d21 */
568		OMAP4_IOPAD(0x078, PIN_INPUT | MUX_MODE3)
569
570		/* cmd0 0x4a100094 gpmc_ncs6.gpio_103 c24 */
571		OMAP4_IOPAD(0x094, PIN_OUTPUT | MUX_MODE3)
572
573		/* cmd1 0x4a100096 gpmc_ncs7.gpio_104 d24 */
574		OMAP4_IOPAD(0x096, PIN_OUTPUT | MUX_MODE3)
575
576		/* cmd2 0x4a100142 uart3_rts_sd.gpio_142 f28 */
577		OMAP4_IOPAD(0x142, PIN_OUTPUT | MUX_MODE3)
578		>;
579	};
580
581	usb_ulpi_pins: pinmux_usb_ulpi_pins {
582		pinctrl-single,pins = <
583		OMAP4_IOPAD(0x196, MUX_MODE7)
584		OMAP4_IOPAD(0x198, MUX_MODE7)
585		OMAP4_IOPAD(0x1b2, PIN_INPUT_PULLUP | MUX_MODE0)
586		OMAP4_IOPAD(0x1b4, PIN_INPUT_PULLUP | MUX_MODE0)
587		OMAP4_IOPAD(0x1b6, PIN_INPUT_PULLUP | MUX_MODE0)
588		OMAP4_IOPAD(0x1b8, PIN_INPUT_PULLUP | MUX_MODE0)
589		OMAP4_IOPAD(0x1ba, PIN_INPUT_PULLUP | MUX_MODE0)
590		OMAP4_IOPAD(0x1bc, PIN_INPUT_PULLUP | MUX_MODE0)
591		OMAP4_IOPAD(0x1be, PIN_INPUT_PULLUP | MUX_MODE0)
592		OMAP4_IOPAD(0x1c0, PIN_INPUT_PULLUP | MUX_MODE0)
593		OMAP4_IOPAD(0x1c2, PIN_INPUT_PULLUP | MUX_MODE0)
594		OMAP4_IOPAD(0x1c4, PIN_INPUT_PULLUP | MUX_MODE0)
595		OMAP4_IOPAD(0x1c6, PIN_INPUT_PULLUP | MUX_MODE0)
596		OMAP4_IOPAD(0x1c8, PIN_INPUT_PULLUP | MUX_MODE0)
597		>;
598	};
599
600	/* usb0_otg_dp and usb0_otg_dm */
601	usb_utmi_pins: pinmux_usb_utmi_pins {
602		pinctrl-single,pins = <
603		OMAP4_IOPAD(0x196, PIN_INPUT | MUX_MODE0)
604		OMAP4_IOPAD(0x198, PIN_INPUT | MUX_MODE0)
605		OMAP4_IOPAD(0x1b2, PIN_INPUT_PULLUP | MUX_MODE7)
606		OMAP4_IOPAD(0x1b4, PIN_INPUT_PULLUP | MUX_MODE7)
607		OMAP4_IOPAD(0x1b6, PIN_INPUT_PULLUP | MUX_MODE7)
608		OMAP4_IOPAD(0x1b8, PIN_INPUT_PULLUP | MUX_MODE7)
609		OMAP4_IOPAD(0x1ba, PIN_INPUT_PULLUP | MUX_MODE7)
610		OMAP4_IOPAD(0x1bc, PIN_INPUT_PULLUP | MUX_MODE7)
611		OMAP4_IOPAD(0x1be, PIN_INPUT_PULLUP | MUX_MODE7)
612		OMAP4_IOPAD(0x1c0, PIN_INPUT_PULLUP | MUX_MODE7)
613		OMAP4_IOPAD(0x1c2, PIN_INPUT_PULLUP | MUX_MODE7)
614		OMAP4_IOPAD(0x1c4, PIN_INPUT_PULLUP | MUX_MODE7)
615		OMAP4_IOPAD(0x1c6, PIN_INPUT_PULLUP | MUX_MODE7)
616		OMAP4_IOPAD(0x1c8, PIN_INPUT_PULLUP | MUX_MODE7)
617		>;
618	};
619
620	/*
621	 * Note that the v3.0.8 stock userspace dynamically remuxes uart1
622	 * rts pin probably for PM purposes to PIN_INPUT_PULLUP | MUX_MODE7
623	 * when not used. If needed, we can add rts pin remux later based
624	 * on power measurements.
625	 */
626	uart1_pins: pinmux_uart1_pins {
627		pinctrl-single,pins = <
628		/* 0x4a10013c mcspi1_cs2.uart1_cts ag23 */
629		OMAP4_IOPAD(0x13c, PIN_INPUT_PULLUP | MUX_MODE1)
630
631		/* 0x4a10013e mcspi1_cs3.uart1_rts ah23 */
632		OMAP4_IOPAD(0x13e, MUX_MODE1)
633
634		/* 0x4a100140 uart3_cts_rctx.uart1_tx f27 */
635		OMAP4_IOPAD(0x140, PIN_OUTPUT | MUX_MODE1)
636
637		/* 0x4a1001ca dpm_emu14.uart1_rx aa3 */
638		OMAP4_IOPAD(0x1ca, PIN_INPUT_PULLUP | MUX_MODE2)
639		>;
640	};
641
642	/* uart3_tx_irtx and uart3_rx_irrx */
643	uart3_pins: pinmux_uart3_pins {
644		pinctrl-single,pins = <
645		OMAP4_IOPAD(0x196, MUX_MODE7)
646		OMAP4_IOPAD(0x198, MUX_MODE7)
647		OMAP4_IOPAD(0x1b2, PIN_INPUT_PULLUP | MUX_MODE7)
648		OMAP4_IOPAD(0x1b4, PIN_INPUT_PULLUP | MUX_MODE7)
649		OMAP4_IOPAD(0x1b6, PIN_INPUT_PULLUP | MUX_MODE7)
650		OMAP4_IOPAD(0x1b8, PIN_INPUT_PULLUP | MUX_MODE7)
651		OMAP4_IOPAD(0x1ba, MUX_MODE2)
652		OMAP4_IOPAD(0x1bc, PIN_INPUT | MUX_MODE2)
653		OMAP4_IOPAD(0x1be, PIN_INPUT_PULLUP | MUX_MODE7)
654		OMAP4_IOPAD(0x1c0, PIN_INPUT_PULLUP | MUX_MODE7)
655		OMAP4_IOPAD(0x1c2, PIN_INPUT_PULLUP | MUX_MODE7)
656		OMAP4_IOPAD(0x1c4, PIN_INPUT_PULLUP | MUX_MODE7)
657		OMAP4_IOPAD(0x1c6, PIN_INPUT_PULLUP | MUX_MODE7)
658		OMAP4_IOPAD(0x1c8, PIN_INPUT_PULLUP | MUX_MODE7)
659		>;
660	};
661
662	uart4_pins: pinmux_uart4_pins {
663		pinctrl-single,pins = <
664		OMAP4_IOPAD(0x15c, PIN_INPUT | MUX_MODE0)		/* uart4_rx */
665		OMAP4_IOPAD(0x15e, PIN_OUTPUT | MUX_MODE0)		/* uart4_tx */
666		OMAP4_IOPAD(0x110, PIN_INPUT_PULLUP | MUX_MODE5)	/* uart4_cts */
667		OMAP4_IOPAD(0x112, PIN_OUTPUT_PULLUP | MUX_MODE5)	/* uart4_rts */
668		>;
669	};
670
671	mcbsp2_pins: pinmux_mcbsp2_pins {
672		pinctrl-single,pins = <
673		OMAP4_IOPAD(0x0f6, PIN_INPUT | MUX_MODE0)	/* abe_mcbsp2_clkx */
674		OMAP4_IOPAD(0x0f8, PIN_INPUT | MUX_MODE0)	/* abe_mcbsp2_dr */
675		OMAP4_IOPAD(0x0fa, PIN_OUTPUT | MUX_MODE0)	/* abe_mcbsp2_dx */
676		OMAP4_IOPAD(0x0fc, PIN_INPUT | MUX_MODE0)	/* abe_mcbsp2_fsx */
677		>;
678	};
679
680	mcbsp3_pins: pinmux_mcbsp3_pins {
681		pinctrl-single,pins = <
682		OMAP4_IOPAD(0x106, PIN_INPUT | MUX_MODE1)	/* abe_mcbsp3_dr */
683		OMAP4_IOPAD(0x108, PIN_OUTPUT | MUX_MODE1)	/* abe_mcbsp3_dx */
684		OMAP4_IOPAD(0x10a, PIN_INPUT | MUX_MODE1)	/* abe_mcbsp3_clkx */
685		OMAP4_IOPAD(0x10c, PIN_INPUT | MUX_MODE1)	/* abe_mcbsp3_fsx */
686		>;
687	};
688
689	vibrator_direction_pin: pinmux_vibrator_direction_pin {
690		pinctrl-single,pins = <
691		OMAP4_IOPAD(0x1ce, PIN_OUTPUT | MUX_MODE1)	/* dmtimer8_pwm_evt (gpio_27) */
692		>;
693	};
694
695	vibrator_enable_pin: pinmux_vibrator_enable_pin {
696		pinctrl-single,pins = <
697		OMAP4_IOPAD(0X1d0, PIN_OUTPUT | MUX_MODE1)	/* dmtimer9_pwm_evt (gpio_28) */
698		>;
699	};
700};
701
702&omap4_pmx_wkup {
703	usb_gpio_mux_sel2: pinmux_usb_gpio_mux_sel2_pins {
704		/* gpio_wk0 */
705		pinctrl-single,pins = <
706		OMAP4_IOPAD(0x040, PIN_OUTPUT_PULLDOWN | MUX_MODE3)
707		>;
708	};
709};
710
711/* RNG is used by secure mode and not accessible */
712&rng_target {
713	status = "disabled";
714};
715
716/* Configure pwm clock source for timers 8 & 9 */
717&timer8 {
718	assigned-clocks = <&abe_clkctrl OMAP4_TIMER8_CLKCTRL 24>;
719	assigned-clock-parents = <&sys_clkin_ck>;
720};
721
722&timer9 {
723	assigned-clocks = <&l4_per_clkctrl OMAP4_TIMER9_CLKCTRL 24>;
724	assigned-clock-parents = <&sys_clkin_ck>;
725};
726
727/*
728 * The uart1 port is wired to mdm6600 with rts and cts. The modem uses gpio_149
729 * for wake-up events for both the USB PHY and the UART. We can use gpio_149
730 * pad as the shared wakeirq for the UART rather than the RX or CTS pad as we
731 * have gpio_149 trigger before the UART transfer starts.
732 */
733&uart1 {
734	pinctrl-names = "default";
735	pinctrl-0 = <&uart1_pins>;
736	interrupts-extended = <&wakeupgen GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH
737			       &omap4_pmx_core 0x110>;
738	uart-has-rtscts;
739	current-speed = <115200>;
740};
741
742&uart3 {
743	interrupts-extended = <&wakeupgen GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH
744			       &omap4_pmx_core 0x17c>;
745};
746
747&uart4 {
748	pinctrl-names = "default";
749	pinctrl-0 = <&uart4_pins>;
750
751	bluetooth {
752		compatible = "ti,wl1285-st";
753		enable-gpios = <&gpio6 14 GPIO_ACTIVE_HIGH>; /* gpio 174 */
754		max-speed = <3686400>;
755	};
756};
757
758&usbhsohci {
759	phys = <&fsusb1_phy>;
760	phy-names = "usb";
761};
762
763&usbhsehci {
764	phys = <&hsusb2_phy>;
765};
766
767&usbhshost {
768	port1-mode = "ohci-phy-4pin-dpdm";
769	port2-mode = "ehci-tll";
770};
771
772/* Internal UTMI+ PHY used for OTG, CPCAP ULPI PHY for detection and charger */
773&usb_otg_hs {
774	interface-type = <1>;
775	mode = <3>;
776
777	/*
778	 * Max 300 mA steps based on similar PMIC MC13783UG.pdf "Table 10-4.
779	 * VBUS Regulator Main Characteristics". Binding uses 2 mA units.
780	 */
781	power = <150>;
782};
783
784&i2c4 {
785	ak8975: magnetometer@c {
786		compatible = "asahi-kasei,ak8975";
787		reg = <0x0c>;
788
789		vdd-supply = <&vhvio>;
790
791		interrupt-parent = <&gpio6>;
792		interrupts = <15 IRQ_TYPE_EDGE_RISING>; /* gpio175 */
793
794		rotation-matrix = "-1", "0", "0",
795				  "0", "1", "0",
796				  "0", "0", "-1";
797
798	};
799
800	lis3dh: accelerometer@18 {
801		compatible = "st,lis3dh-accel";
802		reg = <0x18>;
803
804		vdd-supply = <&vhvio>;
805
806		interrupt-parent = <&gpio2>;
807		interrupts = <2 IRQ_TYPE_EDGE_BOTH>; /* gpio34 */
808
809		rotation-matrix = "0", "-1", "0",
810				  "1", "0", "0",
811				  "0", "0", "1";
812	};
813};
814
815&mcbsp2 {
816	#sound-dai-cells = <0>;
817	pinctrl-names = "default";
818	pinctrl-0 = <&mcbsp2_pins>;
819	status = "okay";
820
821	mcbsp2_port: port {
822		cpu_dai2: endpoint {
823			dai-format = "i2s";
824			remote-endpoint = <&cpcap_audio_codec0>;
825			frame-master = <&cpcap_audio_codec0>;
826			bitclock-master = <&cpcap_audio_codec0>;
827		};
828	};
829};
830
831&mcbsp3 {
832	#sound-dai-cells = <0>;
833	pinctrl-names = "default";
834	pinctrl-0 = <&mcbsp3_pins>;
835	status = "okay";
836
837	mcbsp3_port: port {
838		cpu_dai3: endpoint {
839			dai-format = "dsp_a";
840			frame-master = <&cpcap_audio_codec1>;
841			bitclock-master = <&cpcap_audio_codec1>;
842			remote-endpoint = <&cpcap_audio_codec1>;
843		};
844	};
845};
846
847&cpcap_audio_codec0 {
848	remote-endpoint = <&cpu_dai2>;
849};
850
851&cpcap_audio_codec1 {
852	remote-endpoint = <&cpu_dai3>;
853};
854