]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/gnu/dts/arm/motorola-mapphone-common.dtsi
MFC r358430, r359934-r359936, r359939, r359969, r360093
[FreeBSD/FreeBSD.git] / sys / gnu / dts / arm / motorola-mapphone-common.dtsi
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                 simple-graph-card,widgets =
144                         "Speaker", "Earpiece",
145                         "Speaker", "Loudspeaker",
146                         "Headphone", "Headphone Jack",
147                         "Microphone", "Internal Mic";
148
149                 simple-graph-card,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: display {
211                 compatible = "panel-dsi-cm";
212                 label = "lcd0";
213                 vddi-supply = <&lcd_regulator>;
214                 reset-gpios = <&gpio4 5 GPIO_ACTIVE_HIGH>;      /* gpio101 */
215
216                 backlight = <&backlight>;
217
218                 width-mm = <50>;
219                 height-mm = <89>;
220
221                 panel-timing {
222                         clock-frequency = <0>;          /* Calculated by dsi */
223
224                         hback-porch = <2>;
225                         hactive = <540>;
226                         hfront-porch = <0>;
227                         hsync-len = <2>;
228
229                         vback-porch = <1>;
230                         vactive = <960>;
231                         vfront-porch = <0>;
232                         vsync-len = <1>;
233
234                         hsync-active = <0>;
235                         vsync-active = <0>;
236                         de-active = <1>;
237                         pixelclk-active = <1>;
238                 };
239
240                 port {
241                         lcd0_in: endpoint {
242                                 remote-endpoint = <&dsi1_out_ep>;
243                         };
244                 };
245         };
246 };
247
248 &hdmi {
249         status = "okay";
250         pinctrl-0 = <&dss_hdmi_pins>;
251         pinctrl-names = "default";
252         vdda-supply = <&vdac>;
253
254         port {
255                 hdmi_out: endpoint {
256                         remote-endpoint = <&hdmi_connector_in>;
257                         lanes = <1 0 3 2 5 4 7 6>;
258                 };
259         };
260 };
261
262 /* Battery NVRAM on 1-wire handled by w1_ds250x driver */
263 &hdqw1w {
264         pinctrl-0 = <&hdq_pins>;
265         pinctrl-names = "default";
266         ti,mode = "1w";
267 };
268
269 &i2c1 {
270         tmp105@48 {
271                 compatible = "ti,tmp105";
272                 reg = <0x48>;
273                 pinctrl-0 = <&tmp105_irq>;
274                 pinctrl-names = "default";
275                 /* kpd_row0.gpio_178 */
276                 interrupts-extended = <&gpio6 18 IRQ_TYPE_EDGE_FALLING
277                                        &omap4_pmx_core 0x14e>;
278                 interrupt-names = "irq", "wakeup";
279                 wakeup-source;
280         };
281 };
282
283 &keypad {
284         keypad,num-rows = <8>;
285         keypad,num-columns = <8>;
286         linux,keymap = <
287
288         /* Row 1 */
289         MATRIX_KEY(0, 2, KEY_1)
290         MATRIX_KEY(0, 6, KEY_2)
291         MATRIX_KEY(2, 3, KEY_3)
292         MATRIX_KEY(0, 7, KEY_4)
293         MATRIX_KEY(0, 4, KEY_5)
294         MATRIX_KEY(5, 5, KEY_6)
295         MATRIX_KEY(0, 1, KEY_7)
296         MATRIX_KEY(0, 5, KEY_8)
297         MATRIX_KEY(0, 0, KEY_9)
298         MATRIX_KEY(1, 6, KEY_0)
299
300         /* Row 2 */
301         MATRIX_KEY(3, 4, KEY_APOSTROPHE)
302         MATRIX_KEY(7, 6, KEY_Q)
303         MATRIX_KEY(7, 7, KEY_W)
304         MATRIX_KEY(7, 2, KEY_E)
305         MATRIX_KEY(1, 0, KEY_R)
306         MATRIX_KEY(4, 4, KEY_T)
307         MATRIX_KEY(1, 2, KEY_Y)
308         MATRIX_KEY(6, 7, KEY_U)
309         MATRIX_KEY(2, 2, KEY_I)
310         MATRIX_KEY(5, 6, KEY_O)
311         MATRIX_KEY(3, 7, KEY_P)
312         MATRIX_KEY(6, 5, KEY_BACKSPACE)
313
314         /* Row 3 */
315         MATRIX_KEY(5, 4, KEY_TAB)
316         MATRIX_KEY(5, 7, KEY_A)
317         MATRIX_KEY(2, 7, KEY_S)
318         MATRIX_KEY(7, 0, KEY_D)
319         MATRIX_KEY(2, 6, KEY_F)
320         MATRIX_KEY(6, 2, KEY_G)
321         MATRIX_KEY(6, 6, KEY_H)
322         MATRIX_KEY(1, 4, KEY_J)
323         MATRIX_KEY(3, 1, KEY_K)
324         MATRIX_KEY(2, 1, KEY_L)
325         MATRIX_KEY(4, 6, KEY_ENTER)
326
327         /* Row 4 */
328         MATRIX_KEY(3, 6, KEY_LEFTSHIFT)         /* KEY_CAPSLOCK */
329         MATRIX_KEY(6, 1, KEY_Z)
330         MATRIX_KEY(7, 4, KEY_X)
331         MATRIX_KEY(5, 1, KEY_C)
332         MATRIX_KEY(1, 7, KEY_V)
333         MATRIX_KEY(2, 4, KEY_B)
334         MATRIX_KEY(4, 1, KEY_N)
335         MATRIX_KEY(1, 1, KEY_M)
336         MATRIX_KEY(3, 5, KEY_COMMA)
337         MATRIX_KEY(5, 2, KEY_DOT)
338         MATRIX_KEY(6, 3, KEY_UP)
339         MATRIX_KEY(7, 3, KEY_OK)
340
341         /* Row 5 */
342         MATRIX_KEY(2, 5, KEY_LEFTCTRL)          /* KEY_LEFTSHIFT */
343         MATRIX_KEY(4, 5, KEY_LEFTALT)           /* SYM */
344         MATRIX_KEY(6, 0, KEY_MINUS)
345         MATRIX_KEY(4, 7, KEY_EQUAL)
346         MATRIX_KEY(1, 5, KEY_SPACE)
347         MATRIX_KEY(3, 2, KEY_SLASH)
348         MATRIX_KEY(4, 3, KEY_LEFT)
349         MATRIX_KEY(5, 3, KEY_DOWN)
350         MATRIX_KEY(3, 3, KEY_RIGHT)
351
352         /* Side buttons, KEY_VOLUMEDOWN and KEY_PWER are on CPCAP? */
353         MATRIX_KEY(5, 0, KEY_VOLUMEUP)
354         >;
355 };
356
357 &mmc1 {
358         vmmc-supply = <&vwlan2>;
359         bus-width = <4>;
360         cd-gpios = <&gpio6 16 GPIO_ACTIVE_LOW>; /* gpio176 */
361 };
362
363 &mmc2 {
364         vmmc-supply = <&vsdio>;
365         bus-width = <8>;
366         ti,non-removable;
367 };
368
369 &mmc3 {
370         vmmc-supply = <&wl12xx_vmmc>;
371         /* uart2_tx.sdmmc3_dat1 pad as wakeirq */
372         interrupts-extended = <&wakeupgen GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH
373                                &omap4_pmx_core 0xde>;
374         interrupt-names = "irq", "wakeup";
375         non-removable;
376         bus-width = <4>;
377         cap-power-off-card;
378         keep-power-in-suspend;
379
380         #address-cells = <1>;
381         #size-cells = <0>;
382         wlcore: wlcore@2 {
383                 compatible = "ti,wl1285", "ti,wl1283";
384                 reg = <2>;
385                 /* gpio_100 with gpmc_wait2 pad as wakeirq */
386                 interrupts-extended = <&gpio4 4 IRQ_TYPE_LEVEL_HIGH>,
387                                       <&omap4_pmx_core 0x4e>;
388                 interrupt-names = "irq", "wakeup";
389                 ref-clock-frequency = <26000000>;
390                 tcxo-clock-frequency = <26000000>;
391         };
392 };
393
394 &i2c1 {
395         led-controller@38 {
396                 compatible = "ti,lm3532";
397                 #address-cells = <1>;
398                 #size-cells = <0>;
399                 reg = <0x38>;
400
401                 enable-gpios = <&gpio6 12 GPIO_ACTIVE_HIGH>;
402
403                 ramp-up-us = <1024>;
404                 ramp-down-us = <8193>;
405
406                 backlight_led: led@0 {
407                         reg = <0>;
408                         led-sources = <2>;
409                         ti,led-mode = <0>;
410                         label = ":backlight";
411                 };
412
413                 led@1 {
414                         reg = <1>;
415                         led-sources = <1>;
416                         ti,led-mode = <0>;
417                         label = ":kbd_backlight";
418                 };
419         };
420 };
421
422 &i2c2 {
423         touchscreen@4a {
424                 compatible = "atmel,maxtouch";
425                 reg = <0x4a>;
426                 pinctrl-names = "default";
427                 pinctrl-0 = <&touchscreen_pins>;
428
429                 reset-gpios = <&gpio6 13 GPIO_ACTIVE_HIGH>; /* gpio173 */
430
431                 /* gpio_183 with sys_nirq2 pad as wakeup */
432                 interrupts-extended = <&gpio6 23 IRQ_TYPE_LEVEL_LOW>,
433                                       <&omap4_pmx_core 0x160>;
434                 interrupt-names = "irq", "wakeup";
435                 wakeup-source;
436         };
437
438         isl29030@44 {
439                 compatible = "isil,isl29030";
440                 reg = <0x44>;
441
442                 pinctrl-names = "default";
443                 pinctrl-0 = <&als_proximity_pins>;
444
445                 interrupt-parent = <&gpio6>;
446                 interrupts = <17 IRQ_TYPE_LEVEL_LOW>; /* gpio177 */
447         };
448 };
449
450 &omap4_pmx_core {
451
452         /* hdmi_hpd.gpio_63 */
453         hdmi_hpd_gpio: pinmux_hdmi_hpd_pins {
454                 pinctrl-single,pins = <
455                 OMAP4_IOPAD(0x098, PIN_INPUT | MUX_MODE3)
456                 >;
457         };
458
459         hdq_pins: pinmux_hdq_pins {
460                 pinctrl-single,pins = <
461                 /* 0x4a100120 hdq_sio.hdq_sio aa27 */
462                 OMAP4_IOPAD(0x120, PIN_INPUT | MUX_MODE0)
463                 >;
464         };
465
466         /* hdmi_cec.hdmi_cec, hdmi_scl.hdmi_scl, hdmi_sda.hdmi_sda */
467         dss_hdmi_pins: pinmux_dss_hdmi_pins {
468                 pinctrl-single,pins = <
469                 OMAP4_IOPAD(0x09a, PIN_INPUT | MUX_MODE0)
470                 OMAP4_IOPAD(0x09c, PIN_INPUT | MUX_MODE0)
471                 OMAP4_IOPAD(0x09e, PIN_INPUT | MUX_MODE0)
472                 >;
473         };
474
475         /* gpmc_ncs0.gpio_50 */
476         poweroff_gpio: pinmux_poweroff_pins {
477                 pinctrl-single,pins = <
478                 OMAP4_IOPAD(0x074, PIN_OUTPUT_PULLUP | MUX_MODE3)
479                 >;
480         };
481
482         /* kpd_row0.gpio_178 */
483         tmp105_irq: pinmux_tmp105_irq {
484                 pinctrl-single,pins = <
485                 OMAP4_IOPAD(0x18e, PIN_INPUT_PULLUP | MUX_MODE3)
486                 >;
487         };
488
489         usb_gpio_mux_sel1: pinmux_usb_gpio_mux_sel1_pins {
490                 /* gpio_60 */
491                 pinctrl-single,pins = <
492                 OMAP4_IOPAD(0x088, PIN_OUTPUT | MUX_MODE3)
493                 >;
494         };
495
496         touchscreen_pins: pinmux_touchscreen_pins {
497                 pinctrl-single,pins = <
498                 OMAP4_IOPAD(0x180, PIN_OUTPUT | MUX_MODE3)
499                 OMAP4_IOPAD(0x1a0, PIN_INPUT_PULLUP | MUX_MODE3)
500                 >;
501         };
502
503         als_proximity_pins: pinmux_als_proximity_pins {
504                 pinctrl-single,pins = <
505                 OMAP4_IOPAD(0x18c, PIN_INPUT_PULLUP | MUX_MODE3)
506                 >;
507         };
508
509         usb_mdm6600_pins: pinmux_usb_mdm6600_pins {
510                 pinctrl-single,pins = <
511                 /* enable 0x4a1000d8 usbb1_ulpitll_dat7.gpio_95 ag16 */
512                 OMAP4_IOPAD(0x0d8, PIN_INPUT | MUX_MODE3)
513
514                 /* power 0x4a10007c gpmc_nwp.gpio_54 c25 */
515                 OMAP4_IOPAD(0x07c, PIN_OUTPUT | MUX_MODE3)
516
517                 /* reset 0x4a100072 gpmc_a25.gpio_49 d20 */
518                 OMAP4_IOPAD(0x072, PIN_OUTPUT | MUX_MODE3)
519
520                 /* mode0/bpwake 0x4a10014e sdmmc5_dat1.gpio_148 af4 */
521                 OMAP4_IOPAD(0x14e, PIN_OUTPUT | MUX_MODE3)
522
523                 /* mode1/apwake 0x4a100150 sdmmc5_dat2.gpio_149 ag3 */
524                 OMAP4_IOPAD(0x150, PIN_OFF_OUTPUT_LOW | PIN_INPUT | MUX_MODE3)
525
526                 /* status0 0x4a10007e gpmc_clk.gpio_55 b22 */
527                 OMAP4_IOPAD(0x07e, PIN_INPUT | MUX_MODE3)
528
529                 /* status1 0x4a10007a gpmc_ncs3.gpio_53 c22 */
530                 OMAP4_IOPAD(0x07a, PIN_INPUT | MUX_MODE3)
531
532                 /* status2 0x4a100078 gpmc_ncs2.gpio_52 d21 */
533                 OMAP4_IOPAD(0x078, PIN_INPUT | MUX_MODE3)
534
535                 /* cmd0 0x4a100094 gpmc_ncs6.gpio_103 c24 */
536                 OMAP4_IOPAD(0x094, PIN_OUTPUT | MUX_MODE3)
537
538                 /* cmd1 0x4a100096 gpmc_ncs7.gpio_104 d24 */
539                 OMAP4_IOPAD(0x096, PIN_OUTPUT | MUX_MODE3)
540
541                 /* cmd2 0x4a100142 uart3_rts_sd.gpio_142 f28 */
542                 OMAP4_IOPAD(0x142, PIN_OUTPUT | MUX_MODE3)
543                 >;
544         };
545
546         usb_ulpi_pins: pinmux_usb_ulpi_pins {
547                 pinctrl-single,pins = <
548                 OMAP4_IOPAD(0x196, MUX_MODE7)
549                 OMAP4_IOPAD(0x198, MUX_MODE7)
550                 OMAP4_IOPAD(0x1b2, PIN_INPUT_PULLUP | MUX_MODE0)
551                 OMAP4_IOPAD(0x1b4, PIN_INPUT_PULLUP | MUX_MODE0)
552                 OMAP4_IOPAD(0x1b6, PIN_INPUT_PULLUP | MUX_MODE0)
553                 OMAP4_IOPAD(0x1b8, PIN_INPUT_PULLUP | MUX_MODE0)
554                 OMAP4_IOPAD(0x1ba, PIN_INPUT_PULLUP | MUX_MODE0)
555                 OMAP4_IOPAD(0x1bc, PIN_INPUT_PULLUP | MUX_MODE0)
556                 OMAP4_IOPAD(0x1be, PIN_INPUT_PULLUP | MUX_MODE0)
557                 OMAP4_IOPAD(0x1c0, PIN_INPUT_PULLUP | MUX_MODE0)
558                 OMAP4_IOPAD(0x1c2, PIN_INPUT_PULLUP | MUX_MODE0)
559                 OMAP4_IOPAD(0x1c4, PIN_INPUT_PULLUP | MUX_MODE0)
560                 OMAP4_IOPAD(0x1c6, PIN_INPUT_PULLUP | MUX_MODE0)
561                 OMAP4_IOPAD(0x1c8, PIN_INPUT_PULLUP | MUX_MODE0)
562                 >;
563         };
564
565         /* usb0_otg_dp and usb0_otg_dm */
566         usb_utmi_pins: pinmux_usb_utmi_pins {
567                 pinctrl-single,pins = <
568                 OMAP4_IOPAD(0x196, PIN_INPUT | MUX_MODE0)
569                 OMAP4_IOPAD(0x198, PIN_INPUT | MUX_MODE0)
570                 OMAP4_IOPAD(0x1b2, PIN_INPUT_PULLUP | MUX_MODE7)
571                 OMAP4_IOPAD(0x1b4, PIN_INPUT_PULLUP | MUX_MODE7)
572                 OMAP4_IOPAD(0x1b6, PIN_INPUT_PULLUP | MUX_MODE7)
573                 OMAP4_IOPAD(0x1b8, PIN_INPUT_PULLUP | MUX_MODE7)
574                 OMAP4_IOPAD(0x1ba, PIN_INPUT_PULLUP | MUX_MODE7)
575                 OMAP4_IOPAD(0x1bc, PIN_INPUT_PULLUP | MUX_MODE7)
576                 OMAP4_IOPAD(0x1be, PIN_INPUT_PULLUP | MUX_MODE7)
577                 OMAP4_IOPAD(0x1c0, PIN_INPUT_PULLUP | MUX_MODE7)
578                 OMAP4_IOPAD(0x1c2, PIN_INPUT_PULLUP | MUX_MODE7)
579                 OMAP4_IOPAD(0x1c4, PIN_INPUT_PULLUP | MUX_MODE7)
580                 OMAP4_IOPAD(0x1c6, PIN_INPUT_PULLUP | MUX_MODE7)
581                 OMAP4_IOPAD(0x1c8, PIN_INPUT_PULLUP | MUX_MODE7)
582                 >;
583         };
584
585         /*
586          * Note that the v3.0.8 stock userspace dynamically remuxes uart1
587          * rts pin probably for PM purposes to PIN_INPUT_PULLUP | MUX_MODE7
588          * when not used. If needed, we can add rts pin remux later based
589          * on power measurements.
590          */
591         uart1_pins: pinmux_uart1_pins {
592                 pinctrl-single,pins = <
593                 /* 0x4a10013c mcspi1_cs2.uart1_cts ag23 */
594                 OMAP4_IOPAD(0x13c, PIN_INPUT_PULLUP | MUX_MODE1)
595
596                 /* 0x4a10013e mcspi1_cs3.uart1_rts ah23 */
597                 OMAP4_IOPAD(0x13e, MUX_MODE1)
598
599                 /* 0x4a100140 uart3_cts_rctx.uart1_tx f27 */
600                 OMAP4_IOPAD(0x140, PIN_OUTPUT | MUX_MODE1)
601
602                 /* 0x4a1001ca dpm_emu14.uart1_rx aa3 */
603                 OMAP4_IOPAD(0x1ca, PIN_INPUT_PULLUP | MUX_MODE2)
604                 >;
605         };
606
607         /* uart3_tx_irtx and uart3_rx_irrx */
608         uart3_pins: pinmux_uart3_pins {
609                 pinctrl-single,pins = <
610                 OMAP4_IOPAD(0x196, MUX_MODE7)
611                 OMAP4_IOPAD(0x198, MUX_MODE7)
612                 OMAP4_IOPAD(0x1b2, PIN_INPUT_PULLUP | MUX_MODE7)
613                 OMAP4_IOPAD(0x1b4, PIN_INPUT_PULLUP | MUX_MODE7)
614                 OMAP4_IOPAD(0x1b6, PIN_INPUT_PULLUP | MUX_MODE7)
615                 OMAP4_IOPAD(0x1b8, PIN_INPUT_PULLUP | MUX_MODE7)
616                 OMAP4_IOPAD(0x1ba, MUX_MODE2)
617                 OMAP4_IOPAD(0x1bc, PIN_INPUT | MUX_MODE2)
618                 OMAP4_IOPAD(0x1be, PIN_INPUT_PULLUP | MUX_MODE7)
619                 OMAP4_IOPAD(0x1c0, PIN_INPUT_PULLUP | MUX_MODE7)
620                 OMAP4_IOPAD(0x1c2, PIN_INPUT_PULLUP | MUX_MODE7)
621                 OMAP4_IOPAD(0x1c4, PIN_INPUT_PULLUP | MUX_MODE7)
622                 OMAP4_IOPAD(0x1c6, PIN_INPUT_PULLUP | MUX_MODE7)
623                 OMAP4_IOPAD(0x1c8, PIN_INPUT_PULLUP | MUX_MODE7)
624                 >;
625         };
626
627         uart4_pins: pinmux_uart4_pins {
628                 pinctrl-single,pins = <
629                 OMAP4_IOPAD(0x15c, PIN_INPUT | MUX_MODE0)               /* uart4_rx */
630                 OMAP4_IOPAD(0x15e, PIN_OUTPUT | MUX_MODE0)              /* uart4_tx */
631                 OMAP4_IOPAD(0x110, PIN_INPUT_PULLUP | MUX_MODE5)        /* uart4_cts */
632                 OMAP4_IOPAD(0x112, PIN_OUTPUT_PULLUP | MUX_MODE5)       /* uart4_rts */
633                 >;
634         };
635
636         mcbsp2_pins: pinmux_mcbsp2_pins {
637                 pinctrl-single,pins = <
638                 OMAP4_IOPAD(0x0f6, PIN_INPUT | MUX_MODE0)       /* abe_mcbsp2_clkx */
639                 OMAP4_IOPAD(0x0f8, PIN_INPUT | MUX_MODE0)       /* abe_mcbsp2_dr */
640                 OMAP4_IOPAD(0x0fa, PIN_OUTPUT | MUX_MODE0)      /* abe_mcbsp2_dx */
641                 OMAP4_IOPAD(0x0fc, PIN_INPUT | MUX_MODE0)       /* abe_mcbsp2_fsx */
642                 >;
643         };
644
645         mcbsp3_pins: pinmux_mcbsp3_pins {
646                 pinctrl-single,pins = <
647                 OMAP4_IOPAD(0x106, PIN_INPUT | MUX_MODE1)       /* abe_mcbsp3_dr */
648                 OMAP4_IOPAD(0x108, PIN_OUTPUT | MUX_MODE1)      /* abe_mcbsp3_dx */
649                 OMAP4_IOPAD(0x10a, PIN_INPUT | MUX_MODE1)       /* abe_mcbsp3_clkx */
650                 OMAP4_IOPAD(0x10c, PIN_INPUT | MUX_MODE1)       /* abe_mcbsp3_fsx */
651                 >;
652         };
653
654         vibrator_direction_pin: pinmux_vibrator_direction_pin {
655                 pinctrl-single,pins = <
656                 OMAP4_IOPAD(0x1ce, PIN_OUTPUT | MUX_MODE1)      /* dmtimer8_pwm_evt (gpio_27) */
657                 >;
658         };
659
660         vibrator_enable_pin: pinmux_vibrator_enable_pin {
661                 pinctrl-single,pins = <
662                 OMAP4_IOPAD(0X1d0, PIN_OUTPUT | MUX_MODE1)      /* dmtimer9_pwm_evt (gpio_28) */
663                 >;
664         };
665 };
666
667 &omap4_pmx_wkup {
668         usb_gpio_mux_sel2: pinmux_usb_gpio_mux_sel2_pins {
669                 /* gpio_wk0 */
670                 pinctrl-single,pins = <
671                 OMAP4_IOPAD(0x040, PIN_OUTPUT_PULLDOWN | MUX_MODE3)
672                 >;
673         };
674 };
675
676 /* RNG is used by secure mode and not accessible */
677 &rng_target {
678         status = "disabled";
679 };
680
681 /* Configure pwm clock source for timers 8 & 9 */
682 &timer8 {
683         assigned-clocks = <&abe_clkctrl OMAP4_TIMER8_CLKCTRL 24>;
684         assigned-clock-parents = <&sys_clkin_ck>;
685 };
686
687 &timer9 {
688         assigned-clocks = <&l4_per_clkctrl OMAP4_TIMER9_CLKCTRL 24>;
689         assigned-clock-parents = <&sys_clkin_ck>;
690 };
691
692 /*
693  * As uart1 is wired to mdm6600 with rts and cts, we can use the cts pin for
694  * uart1 wakeirq.
695  */
696 &uart1 {
697         pinctrl-names = "default";
698         pinctrl-0 = <&uart1_pins>;
699         interrupts-extended = <&wakeupgen GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH
700                                &omap4_pmx_core 0xfc>;
701 };
702
703 &uart3 {
704         interrupts-extended = <&wakeupgen GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH
705                                &omap4_pmx_core 0x17c>;
706 };
707
708 &uart4 {
709         pinctrl-names = "default";
710         pinctrl-0 = <&uart4_pins>;
711
712         bluetooth {
713                 compatible = "ti,wl1285-st";
714                 enable-gpios = <&gpio6 14 GPIO_ACTIVE_HIGH>; /* gpio 174 */
715                 max-speed = <3686400>;
716         };
717 };
718
719 &usbhsohci {
720         phys = <&fsusb1_phy>;
721         phy-names = "usb";
722 };
723
724 &usbhsehci {
725         phys = <&hsusb2_phy>;
726 };
727
728 &usbhshost {
729         port1-mode = "ohci-phy-4pin-dpdm";
730         port2-mode = "ehci-tll";
731 };
732
733 /* Internal UTMI+ PHY used for OTG, CPCAP ULPI PHY for detection and charger */
734 &usb_otg_hs {
735         interface-type = <1>;
736         mode = <3>;
737
738         /*
739          * Max 300 mA steps based on similar PMIC MC13783UG.pdf "Table 10-4.
740          * VBUS Regulator Main Characteristics". Binding uses 2 mA units.
741          */
742         power = <150>;
743 };
744
745 &i2c4 {
746         ak8975: magnetometer@c {
747                 compatible = "asahi-kasei,ak8975";
748                 reg = <0x0c>;
749
750                 vdd-supply = <&vhvio>;
751
752                 interrupt-parent = <&gpio6>;
753                 interrupts = <15 IRQ_TYPE_EDGE_RISING>; /* gpio175 */
754
755                 rotation-matrix = "-1", "0", "0",
756                                   "0", "1", "0",
757                                   "0", "0", "-1";
758
759         };
760
761         lis3dh: accelerometer@18 {
762                 compatible = "st,lis3dh-accel";
763                 reg = <0x18>;
764
765                 vdd-supply = <&vhvio>;
766
767                 interrupt-parent = <&gpio2>;
768                 interrupts = <2 IRQ_TYPE_EDGE_BOTH>; /* gpio34 */
769
770                 rotation-matrix = "0", "-1", "0",
771                                   "1", "0", "0",
772                                   "0", "0", "1";
773         };
774 };
775
776 &mcbsp2 {
777         #sound-dai-cells = <0>;
778         pinctrl-names = "default";
779         pinctrl-0 = <&mcbsp2_pins>;
780         status = "okay";
781
782         mcbsp2_port: port {
783                 cpu_dai2: endpoint {
784                         dai-format = "i2s";
785                         remote-endpoint = <&cpcap_audio_codec0>;
786                         frame-master = <&cpcap_audio_codec0>;
787                         bitclock-master = <&cpcap_audio_codec0>;
788                 };
789         };
790 };
791
792 &mcbsp3 {
793         #sound-dai-cells = <0>;
794         pinctrl-names = "default";
795         pinctrl-0 = <&mcbsp3_pins>;
796         status = "okay";
797
798         mcbsp3_port: port {
799                 cpu_dai3: endpoint {
800                         dai-format = "dsp_a";
801                         frame-master = <&cpcap_audio_codec1>;
802                         bitclock-master = <&cpcap_audio_codec1>;
803                         remote-endpoint = <&cpcap_audio_codec1>;
804                 };
805         };
806 };
807
808 &cpcap_audio_codec0 {
809         remote-endpoint = <&cpu_dai2>;
810 };
811
812 &cpcap_audio_codec1 {
813         remote-endpoint = <&cpu_dai3>;
814 };