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