2013-08-13 21:36:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Pavel Machek <pavel@ucw.cz>
|
|
|
|
* Copyright 2013 Aaro Koskinen <aaro.koskinen@iki.fi>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 (or later) as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
|
|
|
#include "omap34xx.dtsi"
|
|
|
|
|
|
|
|
/ {
|
|
|
|
model = "Nokia N900";
|
|
|
|
compatible = "nokia,omap3-n900", "ti,omap3";
|
|
|
|
|
|
|
|
cpus {
|
|
|
|
cpu@0 {
|
|
|
|
cpu0-supply = <&vcc>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
memory {
|
|
|
|
device_type = "memory";
|
|
|
|
reg = <0x80000000 0x10000000>; /* 256 MB */
|
|
|
|
};
|
|
|
|
|
2013-10-23 06:49:34 +08:00
|
|
|
gpio_keys {
|
|
|
|
compatible = "gpio-keys";
|
|
|
|
|
|
|
|
camera_lens_cover {
|
|
|
|
label = "Camera Lens Cover";
|
|
|
|
gpios = <&gpio4 14 GPIO_ACTIVE_LOW>; /* 110 */
|
|
|
|
linux,input-type = <5>; /* EV_SW */
|
|
|
|
linux,code = <0x09>; /* SW_CAMERA_LENS_COVER */
|
|
|
|
gpio-key,wakeup;
|
|
|
|
};
|
|
|
|
|
|
|
|
camera_focus {
|
|
|
|
label = "Camera Focus";
|
|
|
|
gpios = <&gpio3 4 GPIO_ACTIVE_LOW>; /* 68 */
|
|
|
|
linux,code = <0x210>; /* KEY_CAMERA_FOCUS */
|
|
|
|
gpio-key,wakeup;
|
|
|
|
};
|
|
|
|
|
|
|
|
camera_capture {
|
|
|
|
label = "Camera Capture";
|
|
|
|
gpios = <&gpio3 5 GPIO_ACTIVE_LOW>; /* 69 */
|
|
|
|
linux,code = <0xd4>; /* KEY_CAMERA */
|
|
|
|
gpio-key,wakeup;
|
|
|
|
};
|
|
|
|
|
|
|
|
lock_button {
|
|
|
|
label = "Lock Button";
|
|
|
|
gpios = <&gpio4 17 GPIO_ACTIVE_LOW>; /* 113 */
|
|
|
|
linux,code = <0x98>; /* KEY_SCREENLOCK */
|
|
|
|
gpio-key,wakeup;
|
|
|
|
};
|
|
|
|
|
|
|
|
keypad_slide {
|
|
|
|
label = "Keypad Slide";
|
|
|
|
gpios = <&gpio3 7 GPIO_ACTIVE_LOW>; /* 71 */
|
|
|
|
linux,input-type = <5>; /* EV_SW */
|
|
|
|
linux,code = <0x0a>; /* SW_KEYPAD_SLIDE */
|
|
|
|
gpio-key,wakeup;
|
|
|
|
};
|
|
|
|
|
|
|
|
proximity_sensor {
|
|
|
|
label = "Proximity Sensor";
|
|
|
|
gpios = <&gpio3 25 GPIO_ACTIVE_HIGH>; /* 89 */
|
|
|
|
linux,input-type = <5>; /* EV_SW */
|
|
|
|
linux,code = <0x0b>; /* SW_FRONT_PROXIMITY */
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-08-13 21:36:36 +08:00
|
|
|
};
|
|
|
|
|
2013-10-23 06:49:30 +08:00
|
|
|
&omap3_pmx_core {
|
|
|
|
pinctrl-names = "default";
|
|
|
|
|
2013-10-23 06:49:32 +08:00
|
|
|
uart2_pins: pinmux_uart2_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
0x14a (PIN_INPUT | MUX_MODE0) /* uart2_rx */
|
|
|
|
0x148 (PIN_OUTPUT | MUX_MODE0) /* uart2_tx */
|
|
|
|
>;
|
|
|
|
};
|
|
|
|
|
|
|
|
uart3_pins: pinmux_uart3_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
0x16e (PIN_INPUT | MUX_MODE0) /* uart3_rx */
|
|
|
|
0x170 (PIN_OUTPUT | MUX_MODE0) /* uart3_tx */
|
|
|
|
>;
|
|
|
|
};
|
|
|
|
|
2013-10-23 06:49:30 +08:00
|
|
|
i2c1_pins: pinmux_i2c1_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
0x18a (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_scl */
|
|
|
|
0x18c (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c1_sda */
|
|
|
|
>;
|
|
|
|
};
|
|
|
|
|
|
|
|
i2c2_pins: pinmux_i2c2_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
0x18e (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_scl */
|
|
|
|
0x190 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c2_sda */
|
|
|
|
>;
|
|
|
|
};
|
|
|
|
|
|
|
|
i2c3_pins: pinmux_i2c3_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
0x192 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_scl */
|
|
|
|
0x194 (PIN_INPUT_PULLUP | MUX_MODE0) /* i2c3_sda */
|
|
|
|
>;
|
|
|
|
};
|
2013-10-23 06:49:33 +08:00
|
|
|
|
|
|
|
mmc1_pins: pinmux_mmc1_pins {
|
|
|
|
pinctrl-single,pins = <
|
|
|
|
0x114 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_clk */
|
|
|
|
0x116 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_cmd */
|
|
|
|
0x118 (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat0 */
|
|
|
|
0x11a (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat1 */
|
|
|
|
0x11c (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat2 */
|
|
|
|
0x11e (PIN_INPUT_PULLUP | MUX_MODE0) /* sdmmc1_dat3 */
|
|
|
|
>;
|
|
|
|
};
|
2013-10-23 06:49:30 +08:00
|
|
|
};
|
|
|
|
|
2013-08-13 21:36:36 +08:00
|
|
|
&i2c1 {
|
2013-10-23 06:49:30 +08:00
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&i2c1_pins>;
|
|
|
|
|
2013-08-13 21:36:36 +08:00
|
|
|
clock-frequency = <2200000>;
|
|
|
|
|
|
|
|
twl: twl@48 {
|
|
|
|
reg = <0x48>;
|
|
|
|
interrupts = <7>; /* SYS_NIRQ cascaded to intc */
|
|
|
|
interrupt-parent = <&intc>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
#include "twl4030.dtsi"
|
2013-10-23 06:49:30 +08:00
|
|
|
#include "twl4030_omap3.dtsi"
|
2013-08-13 21:36:36 +08:00
|
|
|
|
2013-10-23 06:49:38 +08:00
|
|
|
&vaux1 {
|
|
|
|
regulator-name = "V28";
|
|
|
|
regulator-min-microvolt = <2800000>;
|
|
|
|
regulator-max-microvolt = <2800000>;
|
|
|
|
regulator-always-on; /* due battery cover sensor */
|
|
|
|
};
|
|
|
|
|
|
|
|
&vaux2 {
|
|
|
|
regulator-name = "VCSI";
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vaux3 {
|
|
|
|
regulator-name = "VMMC2_30";
|
|
|
|
regulator-min-microvolt = <2800000>;
|
|
|
|
regulator-max-microvolt = <3000000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vaux4 {
|
|
|
|
regulator-name = "VCAM_ANA_28";
|
|
|
|
regulator-min-microvolt = <2800000>;
|
|
|
|
regulator-max-microvolt = <2800000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vmmc1 {
|
|
|
|
regulator-name = "VMMC1";
|
|
|
|
regulator-min-microvolt = <1850000>;
|
|
|
|
regulator-max-microvolt = <3150000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vmmc2 {
|
|
|
|
regulator-name = "V28_A";
|
|
|
|
regulator-min-microvolt = <2800000>;
|
|
|
|
regulator-max-microvolt = <3000000>;
|
|
|
|
regulator-always-on; /* due VIO leak to AIC34 VDDs */
|
|
|
|
};
|
|
|
|
|
|
|
|
&vpll1 {
|
|
|
|
regulator-name = "VPLL";
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
regulator-always-on;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vpll2 {
|
|
|
|
regulator-name = "VSDI_CSI";
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
regulator-always-on;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vsim {
|
|
|
|
regulator-name = "VMMC2_IO_18";
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vio {
|
|
|
|
regulator-name = "VIO";
|
|
|
|
regulator-min-microvolt = <1800000>;
|
|
|
|
regulator-max-microvolt = <1800000>;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
&vintana1 {
|
|
|
|
regulator-name = "VINTANA1";
|
|
|
|
/* fixed to 1500000 */
|
|
|
|
regulator-always-on;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vintana2 {
|
|
|
|
regulator-name = "VINTANA2";
|
|
|
|
regulator-min-microvolt = <2750000>;
|
|
|
|
regulator-max-microvolt = <2750000>;
|
|
|
|
regulator-always-on;
|
|
|
|
};
|
|
|
|
|
|
|
|
&vintdig {
|
|
|
|
regulator-name = "VINTDIG";
|
|
|
|
/* fixed to 1500000 */
|
|
|
|
regulator-always-on;
|
|
|
|
};
|
|
|
|
|
2013-10-23 06:49:35 +08:00
|
|
|
&twl {
|
|
|
|
twl_audio: audio {
|
|
|
|
compatible = "ti,twl4030-audio";
|
|
|
|
ti,enable-vibra = <1>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-08-13 21:36:36 +08:00
|
|
|
&twl_gpio {
|
|
|
|
ti,pullups = <0x0>;
|
|
|
|
ti,pulldowns = <0x03ff3f>; /* BIT(0..5) | BIT(8..17) */
|
|
|
|
};
|
|
|
|
|
|
|
|
&i2c2 {
|
2013-10-23 06:49:30 +08:00
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&i2c2_pins>;
|
|
|
|
|
2013-10-23 06:49:31 +08:00
|
|
|
clock-frequency = <100000>;
|
2013-10-23 06:49:36 +08:00
|
|
|
|
|
|
|
bq27200: bq27200@55 {
|
|
|
|
compatible = "ti,bq27200";
|
|
|
|
reg = <0x55>;
|
|
|
|
};
|
2013-08-13 21:36:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
&i2c3 {
|
2013-10-23 06:49:30 +08:00
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&i2c3_pins>;
|
|
|
|
|
2013-10-23 06:49:31 +08:00
|
|
|
clock-frequency = <400000>;
|
2013-08-13 21:36:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
&mmc1 {
|
2013-10-23 06:49:33 +08:00
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&mmc1_pins>;
|
|
|
|
vmmc-supply = <&vmmc1>;
|
|
|
|
bus-width = <4>;
|
|
|
|
cd-gpios = <&gpio6 0 GPIO_ACTIVE_HIGH>; /* 160 */
|
2013-08-13 21:36:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
&mmc2 {
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
|
|
|
&mmc3 {
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
|
|
|
&mcspi1 {
|
|
|
|
/*
|
|
|
|
* For some reason, touchscreen is necessary for screen to work at
|
|
|
|
* all on real hw. It works well without it on emulator.
|
|
|
|
*
|
|
|
|
* Also... order in the device tree actually matters here.
|
|
|
|
*/
|
|
|
|
tsc2005@0 {
|
|
|
|
compatible = "tsc2005";
|
|
|
|
spi-max-frequency = <6000000>;
|
|
|
|
reg = <0>;
|
|
|
|
};
|
|
|
|
mipid@2 {
|
|
|
|
compatible = "acx565akm";
|
|
|
|
spi-max-frequency = <6000000>;
|
|
|
|
reg = <2>;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
&usb_otg_hs {
|
|
|
|
interface-type = <0>;
|
|
|
|
usb-phy = <&usb2_phy>;
|
2013-10-07 21:28:13 +08:00
|
|
|
phys = <&usb2_phy>;
|
|
|
|
phy-names = "usb2-phy";
|
2013-08-13 21:36:36 +08:00
|
|
|
mode = <2>;
|
|
|
|
power = <50>;
|
|
|
|
};
|
2013-10-23 06:49:32 +08:00
|
|
|
|
|
|
|
&uart1 {
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
|
|
|
&uart2 {
|
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&uart2_pins>;
|
|
|
|
};
|
|
|
|
|
|
|
|
&uart3 {
|
|
|
|
pinctrl-names = "default";
|
|
|
|
pinctrl-0 = <&uart3_pins>;
|
|
|
|
};
|