]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/boot/dts/omap3-n900.dts
Merge remote-tracking branch 'regulator/for-next'
[karo-tx-linux.git] / arch / arm / boot / dts / omap3-n900.dts
1 /*
2  * Copyright (C) 2013 Pavel Machek <pavel@ucw.cz>
3  * Copyright (C) 2013-2014 Aaro Koskinen <aaro.koskinen@iki.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 (or later) as
7  * published by the Free Software Foundation.
8  */
9
10 /dts-v1/;
11
12 #include "omap34xx.dtsi"
13 #include <dt-bindings/input/input.h>
14
15 /*
16  * Default secure signed bootloader (Nokia X-Loader) does not enable L3 firewall
17  * for omap AES HW crypto support. When linux kernel try to access memory of AES
18  * blocks then kernel receive "Unhandled fault: external abort on non-linefetch"
19  * and crash. Until somebody fix omap-aes.c and omap_hwmod_3xxx_data.c code (no
20  * crash anymore) omap AES support will be disabled for all Nokia N900 devices.
21  * There is "unofficial" version of bootloader which enables AES in L3 firewall
22  * but it is not widely used and to prevent kernel crash rather AES is disabled.
23  * There is also no runtime detection code if AES is disabled in L3 firewall...
24  */
25 &aes {
26         status = "disabled";
27 };
28
29 / {
30         model = "Nokia N900";
31         compatible = "nokia,omap3-n900", "ti,omap3430", "ti,omap3";
32
33         aliases {
34                 i2c0;
35                 i2c1 = &i2c1;
36                 i2c2 = &i2c2;
37                 i2c3 = &i2c3;
38         };
39
40         cpus {
41                 cpu@0 {
42                         cpu0-supply = <&vcc>;
43                 };
44         };
45
46         leds {
47                 compatible = "gpio-leds";
48                 heartbeat {
49                         label = "debug::sleep";
50                         gpios = <&gpio6 2 GPIO_ACTIVE_HIGH>;  /* gpio162 */
51                         linux,default-trigger = "default-on";
52                         pinctrl-names = "default";
53                         pinctrl-0 = <&debug_leds>;
54                 };
55         };
56
57         memory {
58                 device_type = "memory";
59                 reg = <0x80000000 0x10000000>; /* 256 MB */
60         };
61
62         gpio_keys {
63                 compatible = "gpio-keys";
64
65                 camera_lens_cover {
66                         label = "Camera Lens Cover";
67                         gpios = <&gpio4 14 GPIO_ACTIVE_LOW>; /* 110 */
68                         linux,input-type = <5>; /* EV_SW */
69                         linux,code = <0x09>; /* SW_CAMERA_LENS_COVER */
70                         wakeup-source;
71                 };
72
73                 camera_focus {
74                         label = "Camera Focus";
75                         gpios = <&gpio3 4 GPIO_ACTIVE_LOW>; /* 68 */
76                         linux,code = <0x210>; /* KEY_CAMERA_FOCUS */
77                         wakeup-source;
78                 };
79
80                 camera_capture {
81                         label = "Camera Capture";
82                         gpios = <&gpio3 5 GPIO_ACTIVE_LOW>; /* 69 */
83                         linux,code = <0xd4>; /* KEY_CAMERA */
84                         wakeup-source;
85                 };
86
87                 lock_button {
88                         label = "Lock Button";
89                         gpios = <&gpio4 17 GPIO_ACTIVE_LOW>; /* 113 */
90                         linux,code = <0x98>; /* KEY_SCREENLOCK */
91                         wakeup-source;
92                 };
93
94                 keypad_slide {
95                         label = "Keypad Slide";
96                         gpios = <&gpio3 7 GPIO_ACTIVE_LOW>; /* 71 */
97                         linux,input-type = <5>; /* EV_SW */
98                         linux,code = <0x0a>; /* SW_KEYPAD_SLIDE */
99                         wakeup-source;
100                 };
101
102                 proximity_sensor {
103                         label = "Proximity Sensor";
104                         gpios = <&gpio3 25 GPIO_ACTIVE_HIGH>; /* 89 */
105                         linux,input-type = <5>; /* EV_SW */
106                         linux,code = <0x0b>; /* SW_FRONT_PROXIMITY */
107                 };
108         };
109
110         isp1704: isp1704 {
111                 compatible = "nxp,isp1704";
112                 nxp,enable-gpio = <&gpio3 3 GPIO_ACTIVE_HIGH>;
113                 usb-phy = <&usb2_phy>;
114         };
115
116         tv: connector {
117                 compatible = "composite-video-connector";
118                 label = "tv";
119
120                 port {
121                         tv_connector_in: endpoint {
122                                 remote-endpoint = <&venc_out>;
123                         };
124                 };
125         };
126
127         sound: n900-audio {
128                 compatible = "nokia,n900-audio";
129
130                 nokia,cpu-dai = <&mcbsp2>;
131                 nokia,audio-codec = <&tlv320aic3x>, <&tlv320aic3x_aux>;
132                 nokia,headphone-amplifier = <&tpa6130a2>;
133
134                 tvout-selection-gpios = <&gpio2 8 GPIO_ACTIVE_HIGH>; /* 40 */
135                 jack-detection-gpios = <&gpio6 17 GPIO_ACTIVE_HIGH>; /* 177 */
136                 eci-switch-gpios = <&gpio6 22 GPIO_ACTIVE_HIGH>; /* 182 */
137                 speaker-amplifier-gpios = <&twl_gpio 7 GPIO_ACTIVE_HIGH>;
138         };
139
140         battery: n900-battery {
141                 compatible = "nokia,n900-battery";
142                 io-channels = <&twl_madc 0>, <&twl_madc 4>, <&twl_madc 12>;
143                 io-channel-names = "temp", "bsi", "vbat";
144         };
145 };
146
147 &omap3_pmx_core {
148         pinctrl-names = "default";
149
150         uart2_pins: pinmux_uart2_pins {
151                 pinctrl-single,pins = <
152                         OMAP3_CORE1_IOPAD(0x217a, PIN_INPUT | MUX_MODE0)                /* uart2_rx */
153                         OMAP3_CORE1_IOPAD(0x2178, PIN_OUTPUT | MUX_MODE0)               /* uart2_tx */
154                 >;
155         };
156
157         uart3_pins: pinmux_uart3_pins {
158                 pinctrl-single,pins = <
159                         OMAP3_CORE1_IOPAD(0x219e, PIN_INPUT | MUX_MODE0)                /* uart3_rx */
160                         OMAP3_CORE1_IOPAD(0x21a0, PIN_OUTPUT | MUX_MODE0)               /* uart3_tx */
161                 >;
162         };
163
164         ethernet_pins: pinmux_ethernet_pins {
165                 pinctrl-single,pins = <
166                         OMAP3_CORE1_IOPAD(0x20b4, PIN_INPUT_PULLDOWN | MUX_MODE4)       /* gpmc_ncs3.gpio_54 */
167                         OMAP3_CORE1_IOPAD(0x20fc, PIN_OUTPUT | MUX_MODE4)               /* dss_data16.gpio_86 */
168                         OMAP3_CORE1_IOPAD(0x219c, PIN_OUTPUT | MUX_MODE4)               /* uart3_rts_sd.gpio_164 */
169                 >;
170         };
171
172         gpmc_pins: pinmux_gpmc_pins {
173                 pinctrl-single,pins = <
174
175                         /* address lines */
176                         OMAP3_CORE1_IOPAD(0x207a, PIN_OUTPUT | MUX_MODE0)       /* gpmc_a1.gpmc_a1 */
177                         OMAP3_CORE1_IOPAD(0x207c, PIN_OUTPUT | MUX_MODE0)       /* gpmc_a2.gpmc_a2 */
178                         OMAP3_CORE1_IOPAD(0x207e, PIN_OUTPUT | MUX_MODE0)       /* gpmc_a3.gpmc_a3 */
179
180                         /* data lines, gpmc_d0..d7 not muxable according to TRM */
181                         OMAP3_CORE1_IOPAD(0x209e, PIN_INPUT | MUX_MODE0)        /* gpmc_d8.gpmc_d8 */
182                         OMAP3_CORE1_IOPAD(0x20a0, PIN_INPUT | MUX_MODE0)        /* gpmc_d9.gpmc_d9 */
183                         OMAP3_CORE1_IOPAD(0x20a2, PIN_INPUT | MUX_MODE0)        /* gpmc_d10.gpmc_d10 */
184                         OMAP3_CORE1_IOPAD(0x20a4, PIN_INPUT | MUX_MODE0)        /* gpmc_d11.gpmc_d11 */
185                         OMAP3_CORE1_IOPAD(0x20a6, PIN_INPUT | MUX_MODE0)        /* gpmc_d12.gpmc_d12 */
186                         OMAP3_CORE1_IOPAD(0x20a8, PIN_INPUT | MUX_MODE0)        /* gpmc_d13.gpmc_d13 */
187                         OMAP3_CORE1_IOPAD(0x20aa, PIN_INPUT | MUX_MODE0)        /* gpmc_d14.gpmc_d14 */
188                         OMAP3_CORE1_IOPAD(0x20ac, PIN_INPUT | MUX_MODE0)        /* gpmc_d15.gpmc_d15 */
189
190                         /*
191                          * gpmc_ncs0, gpmc_nadv_ale, gpmc_noe, gpmc_nwe, gpmc_wait0 not muxable
192                          * according to TRM. OneNAND seems to require PIN_INPUT on clock.
193                          */
194                         OMAP3_CORE1_IOPAD(0x20b0, PIN_OUTPUT | MUX_MODE0)       /* gpmc_ncs1.gpmc_ncs1 */
195                         OMAP3_CORE1_IOPAD(0x20be, PIN_INPUT | MUX_MODE0)        /* gpmc_clk.gpmc_clk */
196                 >;
197         };
198
199         i2c1_pins: pinmux_i2c1_pins {
200                 pinctrl-single,pins = <
201                         OMAP3_CORE1_IOPAD(0x21ba, PIN_INPUT | MUX_MODE0)                /* i2c1_scl */
202                         OMAP3_CORE1_IOPAD(0x21bc, PIN_INPUT | MUX_MODE0)                /* i2c1_sda */
203                 >;
204         };
205
206         i2c2_pins: pinmux_i2c2_pins {
207                 pinctrl-single,pins = <
208                         OMAP3_CORE1_IOPAD(0x21be, PIN_INPUT | MUX_MODE0)                /* i2c2_scl */
209                         OMAP3_CORE1_IOPAD(0x21c0, PIN_INPUT | MUX_MODE0)                /* i2c2_sda */
210                 >;
211         };
212
213         i2c3_pins: pinmux_i2c3_pins {
214                 pinctrl-single,pins = <
215                         OMAP3_CORE1_IOPAD(0x21c2, PIN_INPUT | MUX_MODE0)                /* i2c3_scl */
216                         OMAP3_CORE1_IOPAD(0x21c4, PIN_INPUT | MUX_MODE0)                /* i2c3_sda */
217                 >;
218         };
219
220         debug_leds: pinmux_debug_led_pins {
221                 pinctrl-single,pins = <
222                         OMAP3_CORE1_IOPAD(0x2198, PIN_OUTPUT | MUX_MODE4)       /* mcbsp1_clkx.gpio_162 */
223                 >;
224         };
225
226         mcspi4_pins: pinmux_mcspi4_pins {
227                 pinctrl-single,pins = <
228                         OMAP3_CORE1_IOPAD(0x218c, PIN_INPUT_PULLDOWN | MUX_MODE1) /* mcspi4_clk */
229                         OMAP3_CORE1_IOPAD(0x2192, PIN_INPUT_PULLDOWN | MUX_MODE1) /* mcspi4_somi */
230                         OMAP3_CORE1_IOPAD(0x2190, PIN_OUTPUT | MUX_MODE1) /* mcspi4_simo */
231                         OMAP3_CORE1_IOPAD(0x2196, PIN_OUTPUT | MUX_MODE1) /* mcspi4_cs0 */
232                 >;
233         };
234
235         mmc1_pins: pinmux_mmc1_pins {
236                 pinctrl-single,pins = <
237                         OMAP3_CORE1_IOPAD(0x2144, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_clk */
238                         OMAP3_CORE1_IOPAD(0x2146, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_cmd */
239                         OMAP3_CORE1_IOPAD(0x2148, PIN_INPUT_PULLUP | MUX_MODE0)         /* sdmmc1_dat0 */
240                         OMAP3_CORE1_IOPAD(0x214a, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat1 */
241                         OMAP3_CORE1_IOPAD(0x214c, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat2 */
242                         OMAP3_CORE1_IOPAD(0x214e, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat3 */
243                 >;
244         };
245
246         mmc2_pins: pinmux_mmc2_pins {
247                 pinctrl-single,pins = <
248                         OMAP3_CORE1_IOPAD(0x2158, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_clk */
249                         OMAP3_CORE1_IOPAD(0x215a, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_cmd */
250                         OMAP3_CORE1_IOPAD(0x215c, PIN_INPUT_PULLUP | MUX_MODE0)         /* sdmmc2_dat0 */
251                         OMAP3_CORE1_IOPAD(0x215e, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_dat1 */
252                         OMAP3_CORE1_IOPAD(0x2160, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_dat2 */
253                         OMAP3_CORE1_IOPAD(0x2162, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_dat3 */
254                         OMAP3_CORE1_IOPAD(0x2164, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_dat4 */
255                         OMAP3_CORE1_IOPAD(0x2166, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_dat5 */
256                         OMAP3_CORE1_IOPAD(0x2168, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_dat6 */
257                         OMAP3_CORE1_IOPAD(0x216a, PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc2_dat7 */
258                 >;
259         };
260
261         acx565akm_pins: pinmux_acx565akm_pins {
262                 pinctrl-single,pins = <
263                         OMAP3_CORE1_IOPAD(0x2104, PIN_OUTPUT | MUX_MODE4)               /* RX51_LCD_RESET_GPIO */
264                 >;
265         };
266
267         dss_sdi_pins: pinmux_dss_sdi_pins {
268                 pinctrl-single,pins = <
269                         OMAP3_CORE1_IOPAD(0x20f0, PIN_OUTPUT | MUX_MODE1)   /* dss_data10.sdi_dat1n */
270                         OMAP3_CORE1_IOPAD(0x20f2, PIN_OUTPUT | MUX_MODE1)   /* dss_data11.sdi_dat1p */
271                         OMAP3_CORE1_IOPAD(0x20f4, PIN_OUTPUT | MUX_MODE1)   /* dss_data12.sdi_dat2n */
272                         OMAP3_CORE1_IOPAD(0x20f6, PIN_OUTPUT | MUX_MODE1)   /* dss_data13.sdi_dat2p */
273
274                         OMAP3_CORE1_IOPAD(0x2108, PIN_OUTPUT | MUX_MODE1)   /* dss_data22.sdi_clkp */
275                         OMAP3_CORE1_IOPAD(0x210a, PIN_OUTPUT | MUX_MODE1)   /* dss_data23.sdi_clkn */
276                 >;
277         };
278
279         wl1251_pins: pinmux_wl1251 {
280                 pinctrl-single,pins = <
281                         OMAP3_CORE1_IOPAD(0x20fe, PIN_OUTPUT | MUX_MODE4)               /* gpio 87 => wl1251 enable */
282                         OMAP3_CORE1_IOPAD(0x208a, PIN_INPUT | MUX_MODE4)                /* gpio 42 => wl1251 irq */
283                 >;
284         };
285
286         ssi_pins: pinmux_ssi {
287                 pinctrl-single,pins = <
288                         OMAP3_CORE1_IOPAD(0x2180, PIN_INPUT_PULLUP | MUX_MODE1) /* ssi1_rdy_tx */
289                         OMAP3_CORE1_IOPAD(0x217e, PIN_OUTPUT | MUX_MODE1)               /* ssi1_flag_tx */
290                         OMAP3_CORE1_IOPAD(0x2182, PIN_INPUT | WAKEUP_EN | MUX_MODE4) /* ssi1_wake_tx (cawake) */
291                         OMAP3_CORE1_IOPAD(0x217c, PIN_OUTPUT | MUX_MODE1)               /* ssi1_dat_tx */
292                         OMAP3_CORE1_IOPAD(0x2184, PIN_INPUT | MUX_MODE1)                /* ssi1_dat_rx */
293                         OMAP3_CORE1_IOPAD(0x2186, PIN_INPUT | MUX_MODE1)                /* ssi1_flag_rx */
294                         OMAP3_CORE1_IOPAD(0x2188, PIN_OUTPUT | MUX_MODE1)               /* ssi1_rdy_rx */
295                         OMAP3_CORE1_IOPAD(0x218a, PIN_OUTPUT | MUX_MODE1)               /* ssi1_wake */
296                 >;
297         };
298
299         modem_pins: pinmux_modem {
300                 pinctrl-single,pins = <
301                         OMAP3_CORE1_IOPAD(0x20dc, PIN_OUTPUT | MUX_MODE4)               /* gpio 70 => cmt_apeslpx */
302                         OMAP3_CORE1_IOPAD(0x20e0, PIN_INPUT | WAKEUP_EN | MUX_MODE4) /* gpio 72 => ape_rst_rq */
303                         OMAP3_CORE1_IOPAD(0x20e2, PIN_OUTPUT | MUX_MODE4)               /* gpio 73 => cmt_rst_rq */
304                         OMAP3_CORE1_IOPAD(0x20e4, PIN_OUTPUT | MUX_MODE4)               /* gpio 74 => cmt_en */
305                         OMAP3_CORE1_IOPAD(0x20e6, PIN_OUTPUT | MUX_MODE4)               /* gpio 75 => cmt_rst */
306                         OMAP3_CORE1_IOPAD(0x218e, PIN_OUTPUT | MUX_MODE4)               /* gpio 157 => cmt_bsi */
307                 >;
308         };
309 };
310
311 &i2c1 {
312         pinctrl-names = "default";
313         pinctrl-0 = <&i2c1_pins>;
314
315         clock-frequency = <2200000>;
316
317         twl: twl@48 {
318                 reg = <0x48>;
319                 interrupts = <7>; /* SYS_NIRQ cascaded to intc */
320                 interrupt-parent = <&intc>;
321         };
322 };
323
324 #include "twl4030.dtsi"
325 #include "twl4030_omap3.dtsi"
326
327 &vaux1 {
328         regulator-name = "V28";
329         regulator-min-microvolt = <2800000>;
330         regulator-max-microvolt = <2800000>;
331         regulator-always-on; /* due to battery cover sensor */
332 };
333
334 &vaux2 {
335         regulator-name = "VCSI";
336         regulator-min-microvolt = <1800000>;
337         regulator-max-microvolt = <1800000>;
338 };
339
340 &vaux3 {
341         regulator-name = "VMMC2_30";
342         regulator-min-microvolt = <2800000>;
343         regulator-max-microvolt = <3000000>;
344 };
345
346 &vaux4 {
347         regulator-name = "VCAM_ANA_28";
348         regulator-min-microvolt = <2800000>;
349         regulator-max-microvolt = <2800000>;
350 };
351
352 &vmmc1 {
353         regulator-name = "VMMC1";
354         regulator-min-microvolt = <1850000>;
355         regulator-max-microvolt = <3150000>;
356 };
357
358 &vmmc2 {
359         regulator-name = "V28_A";
360         regulator-min-microvolt = <2800000>;
361         regulator-max-microvolt = <3000000>;
362         regulator-always-on; /* due VIO leak to AIC34 VDDs */
363 };
364
365 &vpll1 {
366         regulator-name = "VPLL";
367         regulator-min-microvolt = <1800000>;
368         regulator-max-microvolt = <1800000>;
369         regulator-always-on;
370 };
371
372 &vpll2 {
373         regulator-name = "VSDI_CSI";
374         regulator-min-microvolt = <1800000>;
375         regulator-max-microvolt = <1800000>;
376         regulator-always-on;
377 };
378
379 &vsim {
380         regulator-name = "VMMC2_IO_18";
381         regulator-min-microvolt = <1800000>;
382         regulator-max-microvolt = <1800000>;
383 };
384
385 &vio {
386         regulator-name = "VIO";
387         regulator-min-microvolt = <1800000>;
388         regulator-max-microvolt = <1800000>;
389 };
390
391 &vintana1 {
392         regulator-name = "VINTANA1";
393         /* fixed to 1500000 */
394         regulator-always-on;
395 };
396
397 &vintana2 {
398         regulator-name = "VINTANA2";
399         regulator-min-microvolt = <2750000>;
400         regulator-max-microvolt = <2750000>;
401         regulator-always-on;
402 };
403
404 &vintdig {
405         regulator-name = "VINTDIG";
406         /* fixed to 1500000 */
407         regulator-always-on;
408 };
409
410 &twl {
411         twl_audio: audio {
412                 compatible = "ti,twl4030-audio";
413                 ti,enable-vibra = <1>;
414         };
415
416         twl_power: power {
417                 compatible = "ti,twl4030-power-n900", "ti,twl4030-power-idle-osc-off";
418                 ti,use_poweroff;
419         };
420 };
421
422 &twl_keypad {
423         linux,keymap = < MATRIX_KEY(0x00, 0x00, KEY_Q)
424                          MATRIX_KEY(0x00, 0x01, KEY_O)
425                          MATRIX_KEY(0x00, 0x02, KEY_P)
426                          MATRIX_KEY(0x00, 0x03, KEY_COMMA)
427                          MATRIX_KEY(0x00, 0x04, KEY_BACKSPACE)
428                          MATRIX_KEY(0x00, 0x06, KEY_A)
429                          MATRIX_KEY(0x00, 0x07, KEY_S)
430
431                          MATRIX_KEY(0x01, 0x00, KEY_W)
432                          MATRIX_KEY(0x01, 0x01, KEY_D)
433                          MATRIX_KEY(0x01, 0x02, KEY_F)
434                          MATRIX_KEY(0x01, 0x03, KEY_G)
435                          MATRIX_KEY(0x01, 0x04, KEY_H)
436                          MATRIX_KEY(0x01, 0x05, KEY_J)
437                          MATRIX_KEY(0x01, 0x06, KEY_K)
438                          MATRIX_KEY(0x01, 0x07, KEY_L)
439
440                          MATRIX_KEY(0x02, 0x00, KEY_E)
441                          MATRIX_KEY(0x02, 0x01, KEY_DOT)
442                          MATRIX_KEY(0x02, 0x02, KEY_UP)
443                          MATRIX_KEY(0x02, 0x03, KEY_ENTER)
444                          MATRIX_KEY(0x02, 0x05, KEY_Z)
445                          MATRIX_KEY(0x02, 0x06, KEY_X)
446                          MATRIX_KEY(0x02, 0x07, KEY_C)
447                          MATRIX_KEY(0x02, 0x08, KEY_F9)
448
449                          MATRIX_KEY(0x03, 0x00, KEY_R)
450                          MATRIX_KEY(0x03, 0x01, KEY_V)
451                          MATRIX_KEY(0x03, 0x02, KEY_B)
452                          MATRIX_KEY(0x03, 0x03, KEY_N)
453                          MATRIX_KEY(0x03, 0x04, KEY_M)
454                          MATRIX_KEY(0x03, 0x05, KEY_SPACE)
455                          MATRIX_KEY(0x03, 0x06, KEY_SPACE)
456                          MATRIX_KEY(0x03, 0x07, KEY_LEFT)
457
458                          MATRIX_KEY(0x04, 0x00, KEY_T)
459                          MATRIX_KEY(0x04, 0x01, KEY_DOWN)
460                          MATRIX_KEY(0x04, 0x02, KEY_RIGHT)
461                          MATRIX_KEY(0x04, 0x04, KEY_LEFTCTRL)
462                          MATRIX_KEY(0x04, 0x05, KEY_RIGHTALT)
463                          MATRIX_KEY(0x04, 0x06, KEY_LEFTSHIFT)
464                          MATRIX_KEY(0x04, 0x08, KEY_F10)
465
466                          MATRIX_KEY(0x05, 0x00, KEY_Y)
467                          MATRIX_KEY(0x05, 0x08, KEY_F11)
468
469                          MATRIX_KEY(0x06, 0x00, KEY_U)
470
471                          MATRIX_KEY(0x07, 0x00, KEY_I)
472                          MATRIX_KEY(0x07, 0x01, KEY_F7)
473                          MATRIX_KEY(0x07, 0x02, KEY_F8)
474                          >;
475 };
476
477 &twl_gpio {
478         ti,pullups      = <0x0>;
479         ti,pulldowns    = <0x03ff3f>; /* BIT(0..5) | BIT(8..17) */
480 };
481
482 &i2c2 {
483         pinctrl-names = "default";
484         pinctrl-0 = <&i2c2_pins>;
485
486         clock-frequency = <100000>;
487
488         tlv320aic3x: tlv320aic3x@18 {
489                 compatible = "ti,tlv320aic3x";
490                 reg = <0x18>;
491                 gpio-reset = <&gpio2 28 GPIO_ACTIVE_HIGH>; /* 60 */
492                 ai3x-gpio-func = <
493                         0 /* AIC3X_GPIO1_FUNC_DISABLED */
494                         5 /* AIC3X_GPIO2_FUNC_DIGITAL_MIC_INPUT */
495                 >;
496
497                 AVDD-supply = <&vmmc2>;
498                 DRVDD-supply = <&vmmc2>;
499                 IOVDD-supply = <&vio>;
500                 DVDD-supply = <&vio>;
501
502                 ai3x-micbias-vg = <1>;
503         };
504
505         tlv320aic3x_aux: tlv320aic3x@19 {
506                 compatible = "ti,tlv320aic3x";
507                 reg = <0x19>;
508                 gpio-reset = <&gpio2 28 GPIO_ACTIVE_HIGH>; /* 60 */
509
510                 AVDD-supply = <&vmmc2>;
511                 DRVDD-supply = <&vmmc2>;
512                 IOVDD-supply = <&vio>;
513                 DVDD-supply = <&vio>;
514
515                 ai3x-micbias-vg = <2>;
516         };
517
518         tsl2563: tsl2563@29 {
519                 compatible = "amstaos,tsl2563";
520                 reg = <0x29>;
521
522                 amstaos,cover-comp-gain = <16>;
523         };
524
525         adp1653: led-controller@30 {
526                 compatible = "adi,adp1653";
527                 reg = <0x30>;
528                 enable-gpios = <&gpio3 24 GPIO_ACTIVE_HIGH>; /* 88 */
529
530                 flash {
531                         flash-timeout-us = <500000>;
532                         flash-max-microamp = <320000>;
533                         led-max-microamp = <50000>;
534                 };
535                 indicator {
536                         led-max-microamp = <17500>;
537                 };
538         };
539
540         lp5523: lp5523@32 {
541                 compatible = "national,lp5523";
542                 reg = <0x32>;
543                 clock-mode = /bits/ 8 <0>; /* LP55XX_CLOCK_AUTO */
544                 enable-gpio = <&gpio2 9 GPIO_ACTIVE_HIGH>; /* 41 */
545
546                 chan0 {
547                         chan-name = "lp5523:kb1";
548                         led-cur = /bits/ 8 <50>;
549                         max-cur = /bits/ 8 <100>;
550                 };
551
552                 chan1 {
553                         chan-name = "lp5523:kb2";
554                         led-cur = /bits/ 8 <50>;
555                         max-cur = /bits/ 8 <100>;
556                 };
557
558                 chan2 {
559                         chan-name = "lp5523:kb3";
560                         led-cur = /bits/ 8 <50>;
561                         max-cur = /bits/ 8 <100>;
562                 };
563
564                 chan3 {
565                         chan-name = "lp5523:kb4";
566                         led-cur = /bits/ 8 <50>;
567                         max-cur = /bits/ 8 <100>;
568                 };
569
570                 chan4 {
571                         chan-name = "lp5523:b";
572                         led-cur = /bits/ 8 <50>;
573                         max-cur = /bits/ 8 <100>;
574                 };
575
576                 chan5 {
577                         chan-name = "lp5523:g";
578                         led-cur = /bits/ 8 <50>;
579                         max-cur = /bits/ 8 <100>;
580                 };
581
582                 chan6 {
583                         chan-name = "lp5523:r";
584                         led-cur = /bits/ 8 <50>;
585                         max-cur = /bits/ 8 <100>;
586                 };
587
588                 chan7 {
589                         chan-name = "lp5523:kb5";
590                         led-cur = /bits/ 8 <50>;
591                         max-cur = /bits/ 8 <100>;
592                 };
593
594                 chan8 {
595                         chan-name = "lp5523:kb6";
596                         led-cur = /bits/ 8 <50>;
597                         max-cur = /bits/ 8 <100>;
598                 };
599         };
600
601         bq27200: bq27200@55 {
602                 compatible = "ti,bq27200";
603                 reg = <0x55>;
604         };
605
606         tpa6130a2: tpa6130a2@60 {
607                 compatible = "ti,tpa6130a2";
608                 reg = <0x60>;
609
610                 Vdd-supply = <&vmmc2>;
611
612                 power-gpio = <&gpio4 2 GPIO_ACTIVE_HIGH>; /* 98 */
613         };
614
615         si4713: si4713@63 {
616                 compatible = "silabs,si4713";
617                 reg = <0x63>;
618
619                 interrupts-extended = <&gpio2 21 IRQ_TYPE_EDGE_FALLING>; /* 53 */
620                 reset-gpios = <&gpio6 3 GPIO_ACTIVE_HIGH>; /* 163 */
621                 vio-supply = <&vio>;
622                 vdd-supply = <&vaux1>;
623         };
624
625         bq24150a: bq24150a@6b {
626                 compatible = "ti,bq24150a";
627                 reg = <0x6b>;
628
629                 ti,current-limit = <100>;
630                 ti,weak-battery-voltage = <3400>;
631                 ti,battery-regulation-voltage = <4200>;
632                 ti,charge-current = <650>;
633                 ti,termination-current = <100>;
634                 ti,resistor-sense = <68>;
635
636                 ti,usb-charger-detection = <&isp1704>;
637         };
638 };
639
640 &i2c3 {
641         pinctrl-names = "default";
642         pinctrl-0 = <&i2c3_pins>;
643
644         clock-frequency = <400000>;
645
646         lis302dl: lis3lv02d@1d {
647                 compatible = "st,lis3lv02d";
648                 reg = <0x1d>;
649
650                 Vdd-supply = <&vaux1>;
651                 Vdd_IO-supply = <&vio>;
652
653                 interrupt-parent = <&gpio6>;
654                 interrupts = <21 20>; /* 181 and 180 */
655
656                 /* click flags */
657                 st,click-single-x;
658                 st,click-single-y;
659                 st,click-single-z;
660
661                 /* Limits are 0.5g * value */
662                 st,click-threshold-x = <8>;
663                 st,click-threshold-y = <8>;
664                 st,click-threshold-z = <10>;
665
666                 /* Click must be longer than time limit */
667                 st,click-time-limit = <9>;
668
669                 /* Kind of debounce filter */
670                 st,click-latency = <50>;
671
672                 /* Interrupt line 2 for click detection */
673                 st,irq2-click;
674
675                 st,wakeup-x-hi;
676                 st,wakeup-y-hi;
677                 st,wakeup-threshold = <(800/18)>; /* millig-value / 18 to get HW values */
678
679                 st,wakeup2-z-hi;
680                 st,wakeup2-threshold = <(900/18)>; /* millig-value / 18 to get HW values */
681
682                 st,hipass1-disable;
683                 st,hipass2-disable;
684
685                 st,axis-x = <1>;    /* LIS3_DEV_X */
686                 st,axis-y = <(-2)>; /* LIS3_INV_DEV_Y */
687                 st,axis-z = <(-3)>; /* LIS3_INV_DEV_Z */
688
689                 st,min-limit-x = <(-32)>;
690                 st,min-limit-y = <3>;
691                 st,min-limit-z = <3>;
692
693                 st,max-limit-x = <(-3)>;
694                 st,max-limit-y = <32>;
695                 st,max-limit-z = <32>;
696         };
697 };
698
699 &mmc1 {
700         pinctrl-names = "default";
701         pinctrl-0 = <&mmc1_pins>;
702         vmmc-supply = <&vmmc1>;
703         bus-width = <4>;
704         cd-gpios = <&gpio6 0 GPIO_ACTIVE_HIGH>; /* 160 */
705 };
706
707 /* most boards use vaux3, only some old versions use vmmc2 instead */
708 &mmc2 {
709         pinctrl-names = "default";
710         pinctrl-0 = <&mmc2_pins>;
711         vmmc-supply = <&vaux3>;
712         vmmc_aux-supply = <&vsim>;
713         bus-width = <8>;
714         non-removable;
715 };
716
717 &mmc3 {
718         status = "disabled";
719 };
720
721 &gpmc {
722         ranges = <0 0 0x01000000 0x01000000>,   /* 16 MB for OneNAND */
723                  <1 0 0x02000000 0x01000000>;   /* 16 MB for smc91c96 */
724         pinctrl-names = "default";
725         pinctrl-0 = <&gpmc_pins>;
726
727         /* sys_ndmareq1 could be used by the driver, not as gpio65 though */
728         onenand@0,0 {
729                 #address-cells = <1>;
730                 #size-cells = <1>;
731                 reg = <0 0 0x20000>;    /* CS0, offset 0, IO size 128K */
732
733                 gpmc,sync-read;
734                 gpmc,sync-write;
735                 gpmc,burst-length = <16>;
736                 gpmc,burst-read;
737                 gpmc,burst-wrap;
738                 gpmc,burst-write;
739                 gpmc,device-width = <2>; /* GPMC_DEVWIDTH_16BIT */
740                 gpmc,mux-add-data = <2>; /* GPMC_MUX_AD */
741                 gpmc,cs-on-ns = <0>;
742                 gpmc,cs-rd-off-ns = <87>;
743                 gpmc,cs-wr-off-ns = <87>;
744                 gpmc,adv-on-ns = <0>;
745                 gpmc,adv-rd-off-ns = <10>;
746                 gpmc,adv-wr-off-ns = <10>;
747                 gpmc,oe-on-ns = <15>;
748                 gpmc,oe-off-ns = <87>;
749                 gpmc,we-on-ns = <0>;
750                 gpmc,we-off-ns = <87>;
751                 gpmc,rd-cycle-ns = <112>;
752                 gpmc,wr-cycle-ns = <112>;
753                 gpmc,access-ns = <81>;
754                 gpmc,page-burst-access-ns = <15>;
755                 gpmc,bus-turnaround-ns = <0>;
756                 gpmc,cycle2cycle-delay-ns = <0>;
757                 gpmc,wait-monitoring-ns = <0>;
758                 gpmc,clk-activation-ns = <5>;
759                 gpmc,wr-data-mux-bus-ns = <30>;
760                 gpmc,wr-access-ns = <81>;
761                 gpmc,sync-clk-ps = <15000>;
762
763                 /*
764                  * MTD partition table corresponding to Nokia's
765                  * Maemo 5 (Fremantle) release.
766                  */
767                 partition@0 {
768                         label = "bootloader";
769                         reg = <0x00000000 0x00020000>;
770                         read-only;
771                 };
772                 partition@1 {
773                         label = "config";
774                         reg = <0x00020000 0x00060000>;
775                 };
776                 partition@2 {
777                         label = "log";
778                         reg = <0x00080000 0x00040000>;
779                 };
780                 partition@3 {
781                         label = "kernel";
782                         reg = <0x000c0000 0x00200000>;
783                 };
784                 partition@4 {
785                         label = "initfs";
786                         reg = <0x002c0000 0x00200000>;
787                 };
788                 partition@5 {
789                         label = "rootfs";
790                         reg = <0x004c0000 0x0fb40000>;
791                 };
792         };
793
794         /* Ethernet is on some early development boards and qemu */
795         ethernet@gpmc {
796                 compatible = "smsc,lan91c94";
797                 interrupt-parent = <&gpio2>;
798                 interrupts = <22 IRQ_TYPE_LEVEL_HIGH>;  /* gpio54 */
799                 reg = <1 0 0xf>;                /* 16 byte IO range */
800                 bank-width = <2>;
801                 pinctrl-names = "default";
802                 pinctrl-0 = <&ethernet_pins>;
803                 power-gpios = <&gpio3 22 GPIO_ACTIVE_HIGH>;     /* gpio86 */
804                 reset-gpios = <&gpio6 4 GPIO_ACTIVE_HIGH>;      /* gpio164 */
805                 gpmc,device-width = <2>;
806                 gpmc,sync-clk-ps = <0>;
807                 gpmc,cs-on-ns = <0>;
808                 gpmc,cs-rd-off-ns = <48>;
809                 gpmc,cs-wr-off-ns = <24>;
810                 gpmc,adv-on-ns = <0>;
811                 gpmc,adv-rd-off-ns = <0>;
812                 gpmc,adv-wr-off-ns = <0>;
813                 gpmc,we-on-ns = <12>;
814                 gpmc,we-off-ns = <18>;
815                 gpmc,oe-on-ns = <12>;
816                 gpmc,oe-off-ns = <48>;
817                 gpmc,page-burst-access-ns = <0>;
818                 gpmc,access-ns = <42>;
819                 gpmc,rd-cycle-ns = <180>;
820                 gpmc,wr-cycle-ns = <180>;
821                 gpmc,bus-turnaround-ns = <0>;
822                 gpmc,cycle2cycle-delay-ns = <0>;
823                 gpmc,wait-monitoring-ns = <0>;
824                 gpmc,clk-activation-ns = <0>;
825                 gpmc,wr-access-ns = <0>;
826                 gpmc,wr-data-mux-bus-ns = <12>;
827         };
828 };
829
830 &mcspi1 {
831         /*
832          * For some reason, touchscreen is necessary for screen to work at
833          * all on real hw. It works well without it on emulator.
834          *
835          * Also... order in the device tree actually matters here.
836          */
837         tsc2005@0 {
838                 compatible = "ti,tsc2005";
839                 spi-max-frequency = <6000000>;
840                 reg = <0>;
841
842                 vio-supply = <&vio>;
843
844                 reset-gpios = <&gpio4 8 GPIO_ACTIVE_HIGH>; /* 104 */
845                 interrupts-extended = <&gpio4 4 IRQ_TYPE_EDGE_RISING>; /* 100 */
846
847                 touchscreen-fuzz-x = <4>;
848                 touchscreen-fuzz-y = <7>;
849                 touchscreen-fuzz-pressure = <2>;
850                 touchscreen-size-x = <4096>;
851                 touchscreen-size-y = <4096>;
852                 touchscreen-max-pressure = <2048>;
853
854                 ti,x-plate-ohms = <280>;
855                 ti,esd-recovery-timeout-ms = <8000>;
856         };
857
858         acx565akm@2 {
859                 compatible = "sony,acx565akm";
860                 spi-max-frequency = <6000000>;
861                 reg = <2>;
862
863                 pinctrl-names = "default";
864                 pinctrl-0 = <&acx565akm_pins>;
865
866                 label = "lcd";
867                 reset-gpios = <&gpio3 26 GPIO_ACTIVE_HIGH>; /* 90 */
868
869                 port {
870                         lcd_in: endpoint {
871                                 remote-endpoint = <&sdi_out>;
872                         };
873                 };
874         };
875 };
876
877 &mcspi4 {
878         pinctrl-names = "default";
879         pinctrl-0 = <&mcspi4_pins>;
880
881         wl1251@0 {
882                 pinctrl-names = "default";
883                 pinctrl-0 = <&wl1251_pins>;
884
885                 vio-supply = <&vio>;
886
887                 compatible = "ti,wl1251";
888                 reg = <0>;
889                 spi-max-frequency = <48000000>;
890
891                 spi-cpol;
892                 spi-cpha;
893
894                 ti,power-gpio = <&gpio3 23 GPIO_ACTIVE_HIGH>; /* 87 */
895
896                 interrupt-parent = <&gpio2>;
897                 interrupts = <10 IRQ_TYPE_NONE>; /* gpio line 42 */
898         };
899 };
900
901 &usb_otg_hs {
902         interface-type = <0>;
903         usb-phy = <&usb2_phy>;
904         phys = <&usb2_phy>;
905         phy-names = "usb2-phy";
906         mode = <2>;
907         power = <50>;
908 };
909
910 &uart1 {
911         status = "disabled";
912 };
913
914 &uart2 {
915         interrupts-extended = <&intc 73 &omap3_pmx_core OMAP3_UART2_RX>;
916         pinctrl-names = "default";
917         pinctrl-0 = <&uart2_pins>;
918 };
919
920 &uart3 {
921         interrupts-extended = <&intc 74 &omap3_pmx_core OMAP3_UART3_RX>;
922         pinctrl-names = "default";
923         pinctrl-0 = <&uart3_pins>;
924 };
925
926 &dss {
927         status = "ok";
928
929         pinctrl-names = "default";
930         pinctrl-0 = <&dss_sdi_pins>;
931
932         vdds_sdi-supply = <&vaux1>;
933
934         ports {
935                 #address-cells = <1>;
936                 #size-cells = <0>;
937
938                 port@1 {
939                         reg = <1>;
940
941                         sdi_out: endpoint {
942                                 remote-endpoint = <&lcd_in>;
943                                 datapairs = <2>;
944                         };
945                 };
946         };
947 };
948
949 &venc {
950         status = "ok";
951
952         vdda-supply = <&vdac>;
953
954         port {
955                 venc_out: endpoint {
956                         remote-endpoint = <&tv_connector_in>;
957                         ti,channels = <1>;
958                 };
959         };
960 };
961
962 &mcbsp2 {
963         status = "ok";
964 };
965
966 &ssi_port1 {
967         pinctrl-names = "default";
968         pinctrl-0 = <&ssi_pins>;
969
970         ti,ssi-cawake-gpio = <&gpio5 23 GPIO_ACTIVE_HIGH>; /* 151 */
971
972         modem: hsi-client {
973                 compatible = "nokia,n900-modem";
974
975                 pinctrl-names = "default";
976                 pinctrl-0 = <&modem_pins>;
977
978                 hsi-channel-ids = <0>, <1>, <2>, <3>;
979                 hsi-channel-names = "mcsaab-control",
980                                     "speech-control",
981                                     "speech-data",
982                                     "mcsaab-data";
983                 hsi-speed-kbps = <55000>;
984                 hsi-mode = "frame";
985                 hsi-flow = "synchronized";
986                 hsi-arb-mode = "round-robin";
987
988                 interrupts-extended = <&gpio3 8 IRQ_TYPE_EDGE_FALLING>; /* 72 */
989
990                 gpios = <&gpio3  6 GPIO_ACTIVE_HIGH>, /* 70 */
991                         <&gpio3  9 GPIO_ACTIVE_HIGH>, /* 73 */
992                         <&gpio3 10 GPIO_ACTIVE_HIGH>, /* 74 */
993                         <&gpio3 11 GPIO_ACTIVE_HIGH>, /* 75 */
994                         <&gpio5 29 GPIO_ACTIVE_HIGH>; /* 157 */
995                 gpio-names = "cmt_apeslpx",
996                              "cmt_rst_rq",
997                              "cmt_en",
998                              "cmt_rst",
999                              "cmt_bsi";
1000         };
1001 };
1002
1003 &ssi_port2 {
1004         status = "disabled";
1005 };