blob: 98797e521c5875be5dc59dc230557ceb076635e6 [file] [log] [blame]
Pavel Macheka4d4b152013-08-13 15:36:36 +02001/*
2 * Copyright (C) 2013 Pavel Machek <pavel@ucw.cz>
3 * Copyright 2013 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
14/ {
15 model = "Nokia N900";
16 compatible = "nokia,omap3-n900", "ti,omap3";
17
18 cpus {
19 cpu@0 {
20 cpu0-supply = <&vcc>;
21 };
22 };
23
24 memory {
25 device_type = "memory";
26 reg = <0x80000000 0x10000000>; /* 256 MB */
27 };
28
Sebastian Reichel3931c8392013-10-23 00:49:34 +020029 gpio_keys {
30 compatible = "gpio-keys";
31
32 camera_lens_cover {
33 label = "Camera Lens Cover";
34 gpios = <&gpio4 14 GPIO_ACTIVE_LOW>; /* 110 */
35 linux,input-type = <5>; /* EV_SW */
36 linux,code = <0x09>; /* SW_CAMERA_LENS_COVER */
37 gpio-key,wakeup;
38 };
39
40 camera_focus {
41 label = "Camera Focus";
42 gpios = <&gpio3 4 GPIO_ACTIVE_LOW>; /* 68 */
43 linux,code = <0x210>; /* KEY_CAMERA_FOCUS */
44 gpio-key,wakeup;
45 };
46
47 camera_capture {
48 label = "Camera Capture";
49 gpios = <&gpio3 5 GPIO_ACTIVE_LOW>; /* 69 */
50 linux,code = <0xd4>; /* KEY_CAMERA */
51 gpio-key,wakeup;
52 };
53
54 lock_button {
55 label = "Lock Button";
56 gpios = <&gpio4 17 GPIO_ACTIVE_LOW>; /* 113 */
57 linux,code = <0x98>; /* KEY_SCREENLOCK */
58 gpio-key,wakeup;
59 };
60
61 keypad_slide {
62 label = "Keypad Slide";
63 gpios = <&gpio3 7 GPIO_ACTIVE_LOW>; /* 71 */
64 linux,input-type = <5>; /* EV_SW */
65 linux,code = <0x0a>; /* SW_KEYPAD_SLIDE */
66 gpio-key,wakeup;
67 };
68
69 proximity_sensor {
70 label = "Proximity Sensor";
71 gpios = <&gpio3 25 GPIO_ACTIVE_HIGH>; /* 89 */
72 linux,input-type = <5>; /* EV_SW */
73 linux,code = <0x0b>; /* SW_FRONT_PROXIMITY */
74 };
75 };
76
Pavel Macheka4d4b152013-08-13 15:36:36 +020077};
78
Sebastian Reichelac888a82013-10-23 00:49:30 +020079&omap3_pmx_core {
80 pinctrl-names = "default";
81
Sebastian Reichel7a89eec2013-10-23 00:49:32 +020082 uart2_pins: pinmux_uart2_pins {
83 pinctrl-single,pins = <
84 0x14a (PIN_INPUT | MUX_MODE0) /* uart2_rx */
85 0x148 (PIN_OUTPUT | MUX_MODE0) /* uart2_tx */
86 >;
87 };
88
89 uart3_pins: pinmux_uart3_pins {
90 pinctrl-single,pins = <
91 0x16e (PIN_INPUT | MUX_MODE0) /* uart3_rx */
92 0x170 (PIN_OUTPUT | MUX_MODE0) /* uart3_tx */
93 >;
94 };
95
Sebastian Reichelac888a82013-10-23 00:49:30 +020096 i2c1_pins: pinmux_i2c1_pins {
97 pinctrl-single,pins = <
98 0x18a (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */
99 0x18c (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_sda */
100 >;
101 };
102
103 i2c2_pins: pinmux_i2c2_pins {
104 pinctrl-single,pins = <
105 0x18e (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_scl */
106 0x190 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_sda */
107 >;
108 };
109
110 i2c3_pins: pinmux_i2c3_pins {
111 pinctrl-single,pins = <
112 0x192 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_scl */
113 0x194 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_sda */
114 >;
115 };
Sebastian Reichelf1751cf2013-10-23 00:49:33 +0200116
117 mmc1_pins: pinmux_mmc1_pins {
118 pinctrl-single,pins = <
119 0x114 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_clk */
120 0x116 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_cmd */
121 0x118 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat0 */
122 0x11a (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat1 */
123 0x11c (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat2 */
124 0x11e (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat3 */
125 >;
126 };
Sebastian Reicheld1e6f512013-10-23 00:49:40 +0200127
128 display_pins: pinmux_display_pins {
129 pinctrl-single,pins = <
130 0x0d4 (PIN_OUTPUT | MUX_MODE4) /* RX51_LCD_RESET_GPIO */
131 >;
132 };
Sebastian Reichelac888a82013-10-23 00:49:30 +0200133};
134
Pavel Macheka4d4b152013-08-13 15:36:36 +0200135&i2c1 {
Sebastian Reichelac888a82013-10-23 00:49:30 +0200136 pinctrl-names = "default";
137 pinctrl-0 = <&i2c1_pins>;
138
Pavel Macheka4d4b152013-08-13 15:36:36 +0200139 clock-frequency = <2200000>;
140
141 twl: twl@48 {
142 reg = <0x48>;
143 interrupts = <7>; /* SYS_NIRQ cascaded to intc */
144 interrupt-parent = <&intc>;
145 };
146};
147
148#include "twl4030.dtsi"
Sebastian Reichelac888a82013-10-23 00:49:30 +0200149#include "twl4030_omap3.dtsi"
Pavel Macheka4d4b152013-08-13 15:36:36 +0200150
Sebastian Reichel9cdbbad2013-10-23 00:49:38 +0200151&vaux1 {
152 regulator-name = "V28";
153 regulator-min-microvolt = <2800000>;
154 regulator-max-microvolt = <2800000>;
155 regulator-always-on; /* due battery cover sensor */
156};
157
158&vaux2 {
159 regulator-name = "VCSI";
160 regulator-min-microvolt = <1800000>;
161 regulator-max-microvolt = <1800000>;
162};
163
164&vaux3 {
165 regulator-name = "VMMC2_30";
166 regulator-min-microvolt = <2800000>;
167 regulator-max-microvolt = <3000000>;
168};
169
170&vaux4 {
171 regulator-name = "VCAM_ANA_28";
172 regulator-min-microvolt = <2800000>;
173 regulator-max-microvolt = <2800000>;
174};
175
176&vmmc1 {
177 regulator-name = "VMMC1";
178 regulator-min-microvolt = <1850000>;
179 regulator-max-microvolt = <3150000>;
180};
181
182&vmmc2 {
183 regulator-name = "V28_A";
184 regulator-min-microvolt = <2800000>;
185 regulator-max-microvolt = <3000000>;
186 regulator-always-on; /* due VIO leak to AIC34 VDDs */
187};
188
189&vpll1 {
190 regulator-name = "VPLL";
191 regulator-min-microvolt = <1800000>;
192 regulator-max-microvolt = <1800000>;
193 regulator-always-on;
194};
195
196&vpll2 {
197 regulator-name = "VSDI_CSI";
198 regulator-min-microvolt = <1800000>;
199 regulator-max-microvolt = <1800000>;
200 regulator-always-on;
201};
202
203&vsim {
204 regulator-name = "VMMC2_IO_18";
205 regulator-min-microvolt = <1800000>;
206 regulator-max-microvolt = <1800000>;
207};
208
209&vio {
210 regulator-name = "VIO";
211 regulator-min-microvolt = <1800000>;
212 regulator-max-microvolt = <1800000>;
213
214};
215
216&vintana1 {
217 regulator-name = "VINTANA1";
218 /* fixed to 1500000 */
219 regulator-always-on;
220};
221
222&vintana2 {
223 regulator-name = "VINTANA2";
224 regulator-min-microvolt = <2750000>;
225 regulator-max-microvolt = <2750000>;
226 regulator-always-on;
227};
228
229&vintdig {
230 regulator-name = "VINTDIG";
231 /* fixed to 1500000 */
232 regulator-always-on;
233};
234
Sebastian Reichel06ba7a62013-10-23 00:49:35 +0200235&twl {
236 twl_audio: audio {
237 compatible = "ti,twl4030-audio";
238 ti,enable-vibra = <1>;
239 };
240};
241
Pavel Macheka4d4b152013-08-13 15:36:36 +0200242&twl_gpio {
243 ti,pullups = <0x0>;
244 ti,pulldowns = <0x03ff3f>; /* BIT(0..5) | BIT(8..17) */
245};
246
247&i2c2 {
Sebastian Reichelac888a82013-10-23 00:49:30 +0200248 pinctrl-names = "default";
249 pinctrl-0 = <&i2c2_pins>;
250
Sebastian Reichel48fc9862013-10-23 00:49:31 +0200251 clock-frequency = <100000>;
Sebastian Reichelb2b9b252013-10-23 00:49:36 +0200252
Sebastian Reichel14e3e292013-10-23 00:49:41 +0200253 tlv320aic3x: tlv320aic3x@18 {
254 compatible = "ti,tlv320aic3x";
255 reg = <0x18>;
256 gpio-reset = <&gpio2 28 GPIO_ACTIVE_HIGH>; /* 60 */
257 ai3x-gpio-func = <
258 0 /* AIC3X_GPIO1_FUNC_DISABLED */
259 5 /* AIC3X_GPIO2_FUNC_DIGITAL_MIC_INPUT */
260 >;
261
262 AVDD-supply = <&vmmc2>;
263 DRVDD-supply = <&vmmc2>;
264 IOVDD-supply = <&vio>;
265 DVDD-supply = <&vio>;
266 };
267
268 tlv320aic3x_aux: tlv320aic3x@19 {
269 compatible = "ti,tlv320aic3x";
270 reg = <0x19>;
271 gpio-reset = <&gpio2 28 GPIO_ACTIVE_HIGH>; /* 60 */
272
273 AVDD-supply = <&vmmc2>;
274 DRVDD-supply = <&vmmc2>;
275 IOVDD-supply = <&vio>;
276 DVDD-supply = <&vio>;
277 };
278
Sebastian Reichelb2b9b252013-10-23 00:49:36 +0200279 bq27200: bq27200@55 {
280 compatible = "ti,bq27200";
281 reg = <0x55>;
282 };
Pavel Macheka4d4b152013-08-13 15:36:36 +0200283};
284
285&i2c3 {
Sebastian Reichelac888a82013-10-23 00:49:30 +0200286 pinctrl-names = "default";
287 pinctrl-0 = <&i2c3_pins>;
288
Sebastian Reichel48fc9862013-10-23 00:49:31 +0200289 clock-frequency = <400000>;
Pavel Macheka4d4b152013-08-13 15:36:36 +0200290};
291
292&mmc1 {
Sebastian Reichelf1751cf2013-10-23 00:49:33 +0200293 pinctrl-names = "default";
294 pinctrl-0 = <&mmc1_pins>;
295 vmmc-supply = <&vmmc1>;
296 bus-width = <4>;
297 cd-gpios = <&gpio6 0 GPIO_ACTIVE_HIGH>; /* 160 */
Pavel Macheka4d4b152013-08-13 15:36:36 +0200298};
299
300&mmc2 {
301 status = "disabled";
302};
303
304&mmc3 {
305 status = "disabled";
306};
307
Sebastian Reichel8699d2d2013-10-23 00:49:39 +0200308&gpmc {
309 ranges = <0 0 0x04000000 0x10000000>; /* 256MB */
310
311 /* gpio-irq for dma: 65 */
312
313 onenand@0,0 {
314 #address-cells = <1>;
315 #size-cells = <1>;
316 reg = <0 0 0x10000000>;
317
318 gpmc,sync-read;
319 gpmc,sync-write;
320 gpmc,burst-length = <16>;
321 gpmc,burst-read;
322 gpmc,burst-wrap;
323 gpmc,burst-write;
324 gpmc,device-width = <2>; /* GPMC_DEVWIDTH_16BIT */
325 gpmc,mux-add-data = <2>; /* GPMC_MUX_AD */
326 gpmc,cs-on-ns = <0>;
327 gpmc,cs-rd-off-ns = <87>;
328 gpmc,cs-wr-off-ns = <87>;
329 gpmc,adv-on-ns = <0>;
330 gpmc,adv-rd-off-ns = <10>;
331 gpmc,adv-wr-off-ns = <10>;
332 gpmc,oe-on-ns = <15>;
333 gpmc,oe-off-ns = <87>;
334 gpmc,we-on-ns = <0>;
335 gpmc,we-off-ns = <87>;
336 gpmc,rd-cycle-ns = <112>;
337 gpmc,wr-cycle-ns = <112>;
338 gpmc,access-ns = <81>;
339 gpmc,page-burst-access-ns = <15>;
340 gpmc,bus-turnaround-ns = <0>;
341 gpmc,cycle2cycle-delay-ns = <0>;
342 gpmc,wait-monitoring-ns = <0>;
343 gpmc,clk-activation-ns = <5>;
344 gpmc,wr-data-mux-bus-ns = <30>;
345 gpmc,wr-access-ns = <81>;
346 gpmc,sync-clk-ps = <15000>;
347
348 /*
349 * MTD partition table corresponding to Nokia's
350 * Maemo 5 (Fremantle) release.
351 */
352 partition@0 {
353 label = "bootloader";
354 reg = <0x00000000 0x00020000>;
355 read-only;
356 };
357 partition@1 {
358 label = "config";
359 reg = <0x00020000 0x00060000>;
360 };
361 partition@2 {
362 label = "log";
363 reg = <0x00080000 0x00040000>;
364 };
365 partition@3 {
366 label = "kernel";
367 reg = <0x000c0000 0x00200000>;
368 };
369 partition@4 {
370 label = "initfs";
371 reg = <0x002c0000 0x00200000>;
372 };
373 partition@5 {
374 label = "rootfs";
375 reg = <0x004c0000 0x0fb40000>;
376 };
377 };
378};
379
Pavel Macheka4d4b152013-08-13 15:36:36 +0200380&mcspi1 {
381 /*
382 * For some reason, touchscreen is necessary for screen to work at
383 * all on real hw. It works well without it on emulator.
384 *
385 * Also... order in the device tree actually matters here.
386 */
387 tsc2005@0 {
388 compatible = "tsc2005";
389 spi-max-frequency = <6000000>;
390 reg = <0>;
391 };
392 mipid@2 {
393 compatible = "acx565akm";
394 spi-max-frequency = <6000000>;
395 reg = <2>;
Sebastian Reicheld1e6f512013-10-23 00:49:40 +0200396
397 pinctrl-names = "default";
398 pinctrl-0 = <&display_pins>;
Pavel Macheka4d4b152013-08-13 15:36:36 +0200399 };
400};
401
402&usb_otg_hs {
403 interface-type = <0>;
404 usb-phy = <&usb2_phy>;
Roger Quadrosd2afcf02013-10-07 16:28:13 +0300405 phys = <&usb2_phy>;
406 phy-names = "usb2-phy";
Pavel Macheka4d4b152013-08-13 15:36:36 +0200407 mode = <2>;
408 power = <50>;
409};
Sebastian Reichel7a89eec2013-10-23 00:49:32 +0200410
411&uart1 {
412 status = "disabled";
413};
414
415&uart2 {
416 pinctrl-names = "default";
417 pinctrl-0 = <&uart2_pins>;
418};
419
420&uart3 {
421 pinctrl-names = "default";
422 pinctrl-0 = <&uart3_pins>;
423};