Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/ |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | */ |
| 8 | |
| 9 | /* |
| 10 | * Carveout for multimedia usecases |
| 11 | * It should be the last 48MB of the first 512MB memory part |
| 12 | * In theory, it should not even exist. That zone should be reserved |
| 13 | * dynamically during the .reserve callback. |
| 14 | */ |
| 15 | /memreserve/ 0x9d000000 0x03000000; |
| 16 | |
| 17 | /include/ "skeleton.dtsi" |
| 18 | |
| 19 | / { |
| 20 | compatible = "ti,omap4430", "ti,omap4"; |
| 21 | interrupt-parent = <&gic>; |
| 22 | |
| 23 | aliases { |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 24 | serial0 = &uart1; |
| 25 | serial1 = &uart2; |
| 26 | serial2 = &uart3; |
| 27 | serial3 = &uart4; |
Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 28 | }; |
| 29 | |
Benoit Cousson | 476b679 | 2011-08-16 11:49:08 +0200 | [diff] [blame] | 30 | cpus { |
| 31 | cpu@0 { |
| 32 | compatible = "arm,cortex-a9"; |
Santosh Shilimkar | 926fd45 | 2012-07-04 17:57:34 +0530 | [diff] [blame] | 33 | next-level-cache = <&L2>; |
Benoit Cousson | 476b679 | 2011-08-16 11:49:08 +0200 | [diff] [blame] | 34 | }; |
| 35 | cpu@1 { |
| 36 | compatible = "arm,cortex-a9"; |
Santosh Shilimkar | 926fd45 | 2012-07-04 17:57:34 +0530 | [diff] [blame] | 37 | next-level-cache = <&L2>; |
Benoit Cousson | 476b679 | 2011-08-16 11:49:08 +0200 | [diff] [blame] | 38 | }; |
| 39 | }; |
| 40 | |
Benoit Cousson | 5635121 | 2012-09-03 17:56:32 +0200 | [diff] [blame] | 41 | gic: interrupt-controller@48241000 { |
| 42 | compatible = "arm,cortex-a9-gic"; |
| 43 | interrupt-controller; |
| 44 | #interrupt-cells = <3>; |
| 45 | reg = <0x48241000 0x1000>, |
| 46 | <0x48240100 0x0100>; |
| 47 | }; |
| 48 | |
Santosh Shilimkar | 926fd45 | 2012-07-04 17:57:34 +0530 | [diff] [blame] | 49 | L2: l2-cache-controller@48242000 { |
| 50 | compatible = "arm,pl310-cache"; |
| 51 | reg = <0x48242000 0x1000>; |
| 52 | cache-unified; |
| 53 | cache-level = <2>; |
| 54 | }; |
| 55 | |
Santosh Shilimkar | eed0de2 | 2012-07-04 18:32:32 +0530 | [diff] [blame] | 56 | local-timer@0x48240600 { |
| 57 | compatible = "arm,cortex-a9-twd-timer"; |
| 58 | reg = <0x48240600 0x20>; |
| 59 | interrupts = <1 13 0x304>; |
| 60 | }; |
| 61 | |
Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 62 | /* |
| 63 | * The soc node represents the soc top level view. It is uses for IPs |
| 64 | * that are not memory mapped in the MPU view or for the MPU itself. |
| 65 | */ |
| 66 | soc { |
| 67 | compatible = "ti,omap-infra"; |
Benoit Cousson | 476b679 | 2011-08-16 11:49:08 +0200 | [diff] [blame] | 68 | mpu { |
| 69 | compatible = "ti,omap4-mpu"; |
| 70 | ti,hwmods = "mpu"; |
| 71 | }; |
| 72 | |
| 73 | dsp { |
| 74 | compatible = "ti,omap3-c64"; |
| 75 | ti,hwmods = "dsp"; |
| 76 | }; |
| 77 | |
| 78 | iva { |
| 79 | compatible = "ti,ivahd"; |
| 80 | ti,hwmods = "iva"; |
| 81 | }; |
Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 82 | }; |
| 83 | |
| 84 | /* |
| 85 | * XXX: Use a flat representation of the OMAP4 interconnect. |
| 86 | * The real OMAP interconnect network is quite complex. |
Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 87 | * Since that will not bring real advantage to represent that in DT for |
| 88 | * the moment, just use a fake OCP bus entry to represent the whole bus |
| 89 | * hierarchy. |
| 90 | */ |
| 91 | ocp { |
Benoit Cousson | ad8dfac | 2011-08-12 13:48:47 +0200 | [diff] [blame] | 92 | compatible = "ti,omap4-l3-noc", "simple-bus"; |
Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 93 | #address-cells = <1>; |
| 94 | #size-cells = <1>; |
| 95 | ranges; |
Benoit Cousson | ad8dfac | 2011-08-12 13:48:47 +0200 | [diff] [blame] | 96 | ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3"; |
Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 97 | |
Jon Hunter | 510c0ff | 2012-10-25 14:24:14 -0500 | [diff] [blame] | 98 | counter32k: counter@4a304000 { |
| 99 | compatible = "ti,omap-counter32k"; |
| 100 | reg = <0x4a304000 0x20>; |
| 101 | ti,hwmods = "counter_32k"; |
| 102 | }; |
| 103 | |
Tony Lindgren | 679e331 | 2012-09-10 10:34:51 -0700 | [diff] [blame] | 104 | omap4_pmx_core: pinmux@4a100040 { |
| 105 | compatible = "ti,omap4-padconf", "pinctrl-single"; |
| 106 | reg = <0x4a100040 0x0196>; |
| 107 | #address-cells = <1>; |
| 108 | #size-cells = <0>; |
| 109 | pinctrl-single,register-width = <16>; |
| 110 | pinctrl-single,function-mask = <0x7fff>; |
| 111 | }; |
| 112 | omap4_pmx_wkup: pinmux@4a31e040 { |
| 113 | compatible = "ti,omap4-padconf", "pinctrl-single"; |
| 114 | reg = <0x4a31e040 0x0038>; |
| 115 | #address-cells = <1>; |
| 116 | #size-cells = <0>; |
| 117 | pinctrl-single,register-width = <16>; |
| 118 | pinctrl-single,function-mask = <0x7fff>; |
| 119 | }; |
| 120 | |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 121 | sdma: dma-controller@4a056000 { |
| 122 | compatible = "ti,omap4430-sdma"; |
| 123 | reg = <0x4a056000 0x1000>; |
| 124 | interrupts = <0 12 0x4>, |
| 125 | <0 13 0x4>, |
| 126 | <0 14 0x4>, |
| 127 | <0 15 0x4>; |
| 128 | #dma-cells = <1>; |
| 129 | #dma-channels = <32>; |
| 130 | #dma-requests = <127>; |
| 131 | }; |
| 132 | |
Benoit Cousson | e3e5a92 | 2011-08-16 11:51:54 +0200 | [diff] [blame] | 133 | gpio1: gpio@4a310000 { |
| 134 | compatible = "ti,omap4-gpio"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 135 | reg = <0x4a310000 0x200>; |
| 136 | interrupts = <0 29 0x4>; |
Benoit Cousson | e3e5a92 | 2011-08-16 11:51:54 +0200 | [diff] [blame] | 137 | ti,hwmods = "gpio1"; |
| 138 | gpio-controller; |
| 139 | #gpio-cells = <2>; |
| 140 | interrupt-controller; |
| 141 | #interrupt-cells = <1>; |
| 142 | }; |
| 143 | |
| 144 | gpio2: gpio@48055000 { |
| 145 | compatible = "ti,omap4-gpio"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 146 | reg = <0x48055000 0x200>; |
| 147 | interrupts = <0 30 0x4>; |
Benoit Cousson | e3e5a92 | 2011-08-16 11:51:54 +0200 | [diff] [blame] | 148 | ti,hwmods = "gpio2"; |
| 149 | gpio-controller; |
| 150 | #gpio-cells = <2>; |
| 151 | interrupt-controller; |
| 152 | #interrupt-cells = <1>; |
| 153 | }; |
| 154 | |
| 155 | gpio3: gpio@48057000 { |
| 156 | compatible = "ti,omap4-gpio"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 157 | reg = <0x48057000 0x200>; |
| 158 | interrupts = <0 31 0x4>; |
Benoit Cousson | e3e5a92 | 2011-08-16 11:51:54 +0200 | [diff] [blame] | 159 | ti,hwmods = "gpio3"; |
| 160 | gpio-controller; |
| 161 | #gpio-cells = <2>; |
| 162 | interrupt-controller; |
| 163 | #interrupt-cells = <1>; |
| 164 | }; |
| 165 | |
| 166 | gpio4: gpio@48059000 { |
| 167 | compatible = "ti,omap4-gpio"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 168 | reg = <0x48059000 0x200>; |
| 169 | interrupts = <0 32 0x4>; |
Benoit Cousson | e3e5a92 | 2011-08-16 11:51:54 +0200 | [diff] [blame] | 170 | ti,hwmods = "gpio4"; |
| 171 | gpio-controller; |
| 172 | #gpio-cells = <2>; |
| 173 | interrupt-controller; |
| 174 | #interrupt-cells = <1>; |
| 175 | }; |
| 176 | |
| 177 | gpio5: gpio@4805b000 { |
| 178 | compatible = "ti,omap4-gpio"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 179 | reg = <0x4805b000 0x200>; |
| 180 | interrupts = <0 33 0x4>; |
Benoit Cousson | e3e5a92 | 2011-08-16 11:51:54 +0200 | [diff] [blame] | 181 | ti,hwmods = "gpio5"; |
| 182 | gpio-controller; |
| 183 | #gpio-cells = <2>; |
| 184 | interrupt-controller; |
| 185 | #interrupt-cells = <1>; |
| 186 | }; |
| 187 | |
| 188 | gpio6: gpio@4805d000 { |
| 189 | compatible = "ti,omap4-gpio"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 190 | reg = <0x4805d000 0x200>; |
| 191 | interrupts = <0 34 0x4>; |
Benoit Cousson | e3e5a92 | 2011-08-16 11:51:54 +0200 | [diff] [blame] | 192 | ti,hwmods = "gpio6"; |
| 193 | gpio-controller; |
| 194 | #gpio-cells = <2>; |
| 195 | interrupt-controller; |
| 196 | #interrupt-cells = <1>; |
| 197 | }; |
| 198 | |
Benoit Cousson | 19bfb76 | 2012-02-16 11:55:27 +0100 | [diff] [blame] | 199 | uart1: serial@4806a000 { |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 200 | compatible = "ti,omap4-uart"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 201 | reg = <0x4806a000 0x100>; |
| 202 | interrupts = <0 72 0x4>; |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 203 | ti,hwmods = "uart1"; |
| 204 | clock-frequency = <48000000>; |
| 205 | }; |
| 206 | |
Benoit Cousson | 19bfb76 | 2012-02-16 11:55:27 +0100 | [diff] [blame] | 207 | uart2: serial@4806c000 { |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 208 | compatible = "ti,omap4-uart"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 209 | reg = <0x4806c000 0x100>; |
| 210 | interrupts = <0 73 0x4>; |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 211 | ti,hwmods = "uart2"; |
| 212 | clock-frequency = <48000000>; |
| 213 | }; |
| 214 | |
Benoit Cousson | 19bfb76 | 2012-02-16 11:55:27 +0100 | [diff] [blame] | 215 | uart3: serial@48020000 { |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 216 | compatible = "ti,omap4-uart"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 217 | reg = <0x48020000 0x100>; |
| 218 | interrupts = <0 74 0x4>; |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 219 | ti,hwmods = "uart3"; |
| 220 | clock-frequency = <48000000>; |
| 221 | }; |
| 222 | |
Benoit Cousson | 19bfb76 | 2012-02-16 11:55:27 +0100 | [diff] [blame] | 223 | uart4: serial@4806e000 { |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 224 | compatible = "ti,omap4-uart"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 225 | reg = <0x4806e000 0x100>; |
| 226 | interrupts = <0 70 0x4>; |
Rajendra Nayak | cf3c79d | 2011-12-14 17:25:46 +0530 | [diff] [blame] | 227 | ti,hwmods = "uart4"; |
| 228 | clock-frequency = <48000000>; |
| 229 | }; |
Benoit Cousson | 58e778f | 2011-08-17 19:00:03 +0530 | [diff] [blame] | 230 | |
| 231 | i2c1: i2c@48070000 { |
| 232 | compatible = "ti,omap4-i2c"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 233 | reg = <0x48070000 0x100>; |
| 234 | interrupts = <0 56 0x4>; |
Benoit Cousson | 58e778f | 2011-08-17 19:00:03 +0530 | [diff] [blame] | 235 | #address-cells = <1>; |
| 236 | #size-cells = <0>; |
| 237 | ti,hwmods = "i2c1"; |
| 238 | }; |
| 239 | |
| 240 | i2c2: i2c@48072000 { |
| 241 | compatible = "ti,omap4-i2c"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 242 | reg = <0x48072000 0x100>; |
| 243 | interrupts = <0 57 0x4>; |
Benoit Cousson | 58e778f | 2011-08-17 19:00:03 +0530 | [diff] [blame] | 244 | #address-cells = <1>; |
| 245 | #size-cells = <0>; |
| 246 | ti,hwmods = "i2c2"; |
| 247 | }; |
| 248 | |
| 249 | i2c3: i2c@48060000 { |
| 250 | compatible = "ti,omap4-i2c"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 251 | reg = <0x48060000 0x100>; |
| 252 | interrupts = <0 61 0x4>; |
Benoit Cousson | 58e778f | 2011-08-17 19:00:03 +0530 | [diff] [blame] | 253 | #address-cells = <1>; |
| 254 | #size-cells = <0>; |
| 255 | ti,hwmods = "i2c3"; |
| 256 | }; |
| 257 | |
| 258 | i2c4: i2c@48350000 { |
| 259 | compatible = "ti,omap4-i2c"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 260 | reg = <0x48350000 0x100>; |
| 261 | interrupts = <0 62 0x4>; |
Benoit Cousson | 58e778f | 2011-08-17 19:00:03 +0530 | [diff] [blame] | 262 | #address-cells = <1>; |
| 263 | #size-cells = <0>; |
| 264 | ti,hwmods = "i2c4"; |
| 265 | }; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 266 | |
| 267 | mcspi1: spi@48098000 { |
| 268 | compatible = "ti,omap4-mcspi"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 269 | reg = <0x48098000 0x200>; |
| 270 | interrupts = <0 65 0x4>; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 271 | #address-cells = <1>; |
| 272 | #size-cells = <0>; |
| 273 | ti,hwmods = "mcspi1"; |
| 274 | ti,spi-num-cs = <4>; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 275 | dmas = <&sdma 35>, |
| 276 | <&sdma 36>, |
| 277 | <&sdma 37>, |
| 278 | <&sdma 38>, |
| 279 | <&sdma 39>, |
| 280 | <&sdma 40>, |
| 281 | <&sdma 41>, |
| 282 | <&sdma 42>; |
| 283 | dma-names = "tx0", "rx0", "tx1", "rx1", |
| 284 | "tx2", "rx2", "tx3", "rx3"; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 285 | }; |
| 286 | |
| 287 | mcspi2: spi@4809a000 { |
| 288 | compatible = "ti,omap4-mcspi"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 289 | reg = <0x4809a000 0x200>; |
| 290 | interrupts = <0 66 0x4>; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 291 | #address-cells = <1>; |
| 292 | #size-cells = <0>; |
| 293 | ti,hwmods = "mcspi2"; |
| 294 | ti,spi-num-cs = <2>; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 295 | dmas = <&sdma 43>, |
| 296 | <&sdma 44>, |
| 297 | <&sdma 45>, |
| 298 | <&sdma 46>; |
| 299 | dma-names = "tx0", "rx0", "tx1", "rx1"; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 300 | }; |
| 301 | |
| 302 | mcspi3: spi@480b8000 { |
| 303 | compatible = "ti,omap4-mcspi"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 304 | reg = <0x480b8000 0x200>; |
| 305 | interrupts = <0 91 0x4>; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 306 | #address-cells = <1>; |
| 307 | #size-cells = <0>; |
| 308 | ti,hwmods = "mcspi3"; |
| 309 | ti,spi-num-cs = <2>; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 310 | dmas = <&sdma 15>, <&sdma 16>; |
| 311 | dma-names = "tx0", "rx0"; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 312 | }; |
| 313 | |
| 314 | mcspi4: spi@480ba000 { |
| 315 | compatible = "ti,omap4-mcspi"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 316 | reg = <0x480ba000 0x200>; |
| 317 | interrupts = <0 48 0x4>; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 318 | #address-cells = <1>; |
| 319 | #size-cells = <0>; |
| 320 | ti,hwmods = "mcspi4"; |
| 321 | ti,spi-num-cs = <1>; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 322 | dmas = <&sdma 70>, <&sdma 71>; |
| 323 | dma-names = "tx0", "rx0"; |
Benoit Cousson | efcf1e5 | 2012-01-20 14:15:58 +0100 | [diff] [blame] | 324 | }; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 325 | |
| 326 | mmc1: mmc@4809c000 { |
| 327 | compatible = "ti,omap4-hsmmc"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 328 | reg = <0x4809c000 0x400>; |
| 329 | interrupts = <0 83 0x4>; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 330 | ti,hwmods = "mmc1"; |
| 331 | ti,dual-volt; |
| 332 | ti,needs-special-reset; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 333 | dmas = <&sdma 61>, <&sdma 62>; |
| 334 | dma-names = "tx", "rx"; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 335 | }; |
| 336 | |
| 337 | mmc2: mmc@480b4000 { |
| 338 | compatible = "ti,omap4-hsmmc"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 339 | reg = <0x480b4000 0x400>; |
| 340 | interrupts = <0 86 0x4>; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 341 | ti,hwmods = "mmc2"; |
| 342 | ti,needs-special-reset; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 343 | dmas = <&sdma 47>, <&sdma 48>; |
| 344 | dma-names = "tx", "rx"; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 345 | }; |
| 346 | |
| 347 | mmc3: mmc@480ad000 { |
| 348 | compatible = "ti,omap4-hsmmc"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 349 | reg = <0x480ad000 0x400>; |
| 350 | interrupts = <0 94 0x4>; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 351 | ti,hwmods = "mmc3"; |
| 352 | ti,needs-special-reset; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 353 | dmas = <&sdma 77>, <&sdma 78>; |
| 354 | dma-names = "tx", "rx"; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 355 | }; |
| 356 | |
| 357 | mmc4: mmc@480d1000 { |
| 358 | compatible = "ti,omap4-hsmmc"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 359 | reg = <0x480d1000 0x400>; |
| 360 | interrupts = <0 96 0x4>; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 361 | ti,hwmods = "mmc4"; |
| 362 | ti,needs-special-reset; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 363 | dmas = <&sdma 57>, <&sdma 58>; |
| 364 | dma-names = "tx", "rx"; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 365 | }; |
| 366 | |
| 367 | mmc5: mmc@480d5000 { |
| 368 | compatible = "ti,omap4-hsmmc"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 369 | reg = <0x480d5000 0x400>; |
| 370 | interrupts = <0 59 0x4>; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 371 | ti,hwmods = "mmc5"; |
| 372 | ti,needs-special-reset; |
Jon Hunter | 2c2dc54 | 2012-04-26 13:47:59 -0500 | [diff] [blame^] | 373 | dmas = <&sdma 59>, <&sdma 60>; |
| 374 | dma-names = "tx", "rx"; |
Rajendra Nayak | 7498176 | 2011-10-04 17:10:27 +0530 | [diff] [blame] | 375 | }; |
Xiao Jiang | 94c3073 | 2012-06-01 12:44:14 +0800 | [diff] [blame] | 376 | |
| 377 | wdt2: wdt@4a314000 { |
| 378 | compatible = "ti,omap4-wdt", "ti,omap3-wdt"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 379 | reg = <0x4a314000 0x80>; |
| 380 | interrupts = <0 80 0x4>; |
Xiao Jiang | 94c3073 | 2012-06-01 12:44:14 +0800 | [diff] [blame] | 381 | ti,hwmods = "wd_timer2"; |
| 382 | }; |
Peter Ujfalusi | 4f4b5c7 | 2012-06-08 17:01:59 +0300 | [diff] [blame] | 383 | |
| 384 | mcpdm: mcpdm@40132000 { |
| 385 | compatible = "ti,omap4-mcpdm"; |
| 386 | reg = <0x40132000 0x7f>, /* MPU private access */ |
| 387 | <0x49032000 0x7f>; /* L3 Interconnect */ |
Peter Ujfalusi | 63467cf | 2012-08-29 16:31:06 +0300 | [diff] [blame] | 388 | reg-names = "mpu", "dma"; |
Peter Ujfalusi | 4f4b5c7 | 2012-06-08 17:01:59 +0300 | [diff] [blame] | 389 | interrupts = <0 112 0x4>; |
Peter Ujfalusi | 4f4b5c7 | 2012-06-08 17:01:59 +0300 | [diff] [blame] | 390 | ti,hwmods = "mcpdm"; |
| 391 | }; |
Peter Ujfalusi | a4c3831 | 2012-06-08 17:02:00 +0300 | [diff] [blame] | 392 | |
| 393 | dmic: dmic@4012e000 { |
| 394 | compatible = "ti,omap4-dmic"; |
| 395 | reg = <0x4012e000 0x7f>, /* MPU private access */ |
| 396 | <0x4902e000 0x7f>; /* L3 Interconnect */ |
Peter Ujfalusi | 63467cf | 2012-08-29 16:31:06 +0300 | [diff] [blame] | 397 | reg-names = "mpu", "dma"; |
Peter Ujfalusi | a4c3831 | 2012-06-08 17:02:00 +0300 | [diff] [blame] | 398 | interrupts = <0 114 0x4>; |
Peter Ujfalusi | a4c3831 | 2012-06-08 17:02:00 +0300 | [diff] [blame] | 399 | ti,hwmods = "dmic"; |
| 400 | }; |
Sourav Poddar | 61bc354 | 2012-08-14 16:45:37 +0530 | [diff] [blame] | 401 | |
Peter Ujfalusi | 2995a10 | 2012-07-26 17:13:21 +0300 | [diff] [blame] | 402 | mcbsp1: mcbsp@40122000 { |
| 403 | compatible = "ti,omap4-mcbsp"; |
| 404 | reg = <0x40122000 0xff>, /* MPU private access */ |
| 405 | <0x49022000 0xff>; /* L3 Interconnect */ |
| 406 | reg-names = "mpu", "dma"; |
| 407 | interrupts = <0 17 0x4>; |
| 408 | interrupt-names = "common"; |
Peter Ujfalusi | 2995a10 | 2012-07-26 17:13:21 +0300 | [diff] [blame] | 409 | ti,buffer-size = <128>; |
| 410 | ti,hwmods = "mcbsp1"; |
| 411 | }; |
| 412 | |
| 413 | mcbsp2: mcbsp@40124000 { |
| 414 | compatible = "ti,omap4-mcbsp"; |
| 415 | reg = <0x40124000 0xff>, /* MPU private access */ |
| 416 | <0x49024000 0xff>; /* L3 Interconnect */ |
| 417 | reg-names = "mpu", "dma"; |
| 418 | interrupts = <0 22 0x4>; |
| 419 | interrupt-names = "common"; |
Peter Ujfalusi | 2995a10 | 2012-07-26 17:13:21 +0300 | [diff] [blame] | 420 | ti,buffer-size = <128>; |
| 421 | ti,hwmods = "mcbsp2"; |
| 422 | }; |
| 423 | |
| 424 | mcbsp3: mcbsp@40126000 { |
| 425 | compatible = "ti,omap4-mcbsp"; |
| 426 | reg = <0x40126000 0xff>, /* MPU private access */ |
| 427 | <0x49026000 0xff>; /* L3 Interconnect */ |
| 428 | reg-names = "mpu", "dma"; |
| 429 | interrupts = <0 23 0x4>; |
| 430 | interrupt-names = "common"; |
Peter Ujfalusi | 2995a10 | 2012-07-26 17:13:21 +0300 | [diff] [blame] | 431 | ti,buffer-size = <128>; |
| 432 | ti,hwmods = "mcbsp3"; |
| 433 | }; |
| 434 | |
| 435 | mcbsp4: mcbsp@48096000 { |
| 436 | compatible = "ti,omap4-mcbsp"; |
| 437 | reg = <0x48096000 0xff>; /* L4 Interconnect */ |
| 438 | reg-names = "mpu"; |
| 439 | interrupts = <0 16 0x4>; |
| 440 | interrupt-names = "common"; |
Peter Ujfalusi | 2995a10 | 2012-07-26 17:13:21 +0300 | [diff] [blame] | 441 | ti,buffer-size = <128>; |
| 442 | ti,hwmods = "mcbsp4"; |
| 443 | }; |
| 444 | |
Sourav Poddar | 61bc354 | 2012-08-14 16:45:37 +0530 | [diff] [blame] | 445 | keypad: keypad@4a31c000 { |
| 446 | compatible = "ti,omap4-keypad"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 447 | reg = <0x4a31c000 0x80>; |
| 448 | interrupts = <0 120 0x4>; |
| 449 | reg-names = "mpu"; |
Sourav Poddar | 61bc354 | 2012-08-14 16:45:37 +0530 | [diff] [blame] | 450 | ti,hwmods = "kbd"; |
| 451 | }; |
Aneesh V | 11c2706 | 2012-01-20 20:35:26 +0530 | [diff] [blame] | 452 | |
| 453 | emif1: emif@4c000000 { |
| 454 | compatible = "ti,emif-4d"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 455 | reg = <0x4c000000 0x100>; |
| 456 | interrupts = <0 110 0x4>; |
Aneesh V | 11c2706 | 2012-01-20 20:35:26 +0530 | [diff] [blame] | 457 | ti,hwmods = "emif1"; |
| 458 | phy-type = <1>; |
| 459 | hw-caps-read-idle-ctrl; |
| 460 | hw-caps-ll-interface; |
| 461 | hw-caps-temp-alert; |
| 462 | }; |
| 463 | |
| 464 | emif2: emif@4d000000 { |
| 465 | compatible = "ti,emif-4d"; |
Benoit Cousson | 48420db | 2012-09-05 11:38:23 +0200 | [diff] [blame] | 466 | reg = <0x4d000000 0x100>; |
| 467 | interrupts = <0 111 0x4>; |
Aneesh V | 11c2706 | 2012-01-20 20:35:26 +0530 | [diff] [blame] | 468 | ti,hwmods = "emif2"; |
| 469 | phy-type = <1>; |
| 470 | hw-caps-read-idle-ctrl; |
| 471 | hw-caps-ll-interface; |
| 472 | hw-caps-temp-alert; |
| 473 | }; |
Linus Torvalds | 8f446a7 | 2012-10-01 18:46:13 -0700 | [diff] [blame] | 474 | |
Kishon Vijay Abraham I | 3ce0a99 | 2012-09-19 16:02:51 +0530 | [diff] [blame] | 475 | ocp2scp@4a0ad000 { |
Kishon Vijay Abraham I | 59bafcf | 2012-08-22 14:10:03 +0530 | [diff] [blame] | 476 | compatible = "ti,omap-ocp2scp"; |
Kishon Vijay Abraham I | 3ce0a99 | 2012-09-19 16:02:51 +0530 | [diff] [blame] | 477 | reg = <0x4a0ad000 0x1f>; |
Kishon Vijay Abraham I | 59bafcf | 2012-08-22 14:10:03 +0530 | [diff] [blame] | 478 | #address-cells = <1>; |
| 479 | #size-cells = <1>; |
| 480 | ranges; |
| 481 | ti,hwmods = "ocp2scp_usb_phy"; |
Kishon Vijay Abraham I | cf0d869 | 2013-03-07 19:05:15 +0530 | [diff] [blame] | 482 | usb2_phy: usb2phy@4a0ad080 { |
| 483 | compatible = "ti,omap-usb2"; |
| 484 | reg = <0x4a0ad080 0x58>; |
| 485 | ctrl-module = <&omap_control_usb>; |
| 486 | }; |
Kishon Vijay Abraham I | 59bafcf | 2012-08-22 14:10:03 +0530 | [diff] [blame] | 487 | }; |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 488 | |
| 489 | timer1: timer@4a318000 { |
| 490 | compatible = "ti,omap2-timer"; |
| 491 | reg = <0x4a318000 0x80>; |
| 492 | interrupts = <0 37 0x4>; |
| 493 | ti,hwmods = "timer1"; |
| 494 | ti,timer-alwon; |
| 495 | }; |
| 496 | |
| 497 | timer2: timer@48032000 { |
| 498 | compatible = "ti,omap2-timer"; |
| 499 | reg = <0x48032000 0x80>; |
| 500 | interrupts = <0 38 0x4>; |
| 501 | ti,hwmods = "timer2"; |
| 502 | }; |
| 503 | |
| 504 | timer3: timer@48034000 { |
| 505 | compatible = "ti,omap2-timer"; |
| 506 | reg = <0x48034000 0x80>; |
| 507 | interrupts = <0 39 0x4>; |
| 508 | ti,hwmods = "timer3"; |
| 509 | }; |
| 510 | |
| 511 | timer4: timer@48036000 { |
| 512 | compatible = "ti,omap2-timer"; |
| 513 | reg = <0x48036000 0x80>; |
| 514 | interrupts = <0 40 0x4>; |
| 515 | ti,hwmods = "timer4"; |
| 516 | }; |
| 517 | |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 518 | timer5: timer@40138000 { |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 519 | compatible = "ti,omap2-timer"; |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 520 | reg = <0x40138000 0x80>, |
| 521 | <0x49038000 0x80>; |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 522 | interrupts = <0 41 0x4>; |
| 523 | ti,hwmods = "timer5"; |
| 524 | ti,timer-dsp; |
| 525 | }; |
| 526 | |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 527 | timer6: timer@4013a000 { |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 528 | compatible = "ti,omap2-timer"; |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 529 | reg = <0x4013a000 0x80>, |
| 530 | <0x4903a000 0x80>; |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 531 | interrupts = <0 42 0x4>; |
| 532 | ti,hwmods = "timer6"; |
| 533 | ti,timer-dsp; |
| 534 | }; |
| 535 | |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 536 | timer7: timer@4013c000 { |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 537 | compatible = "ti,omap2-timer"; |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 538 | reg = <0x4013c000 0x80>, |
| 539 | <0x4903c000 0x80>; |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 540 | interrupts = <0 43 0x4>; |
| 541 | ti,hwmods = "timer7"; |
| 542 | ti,timer-dsp; |
| 543 | }; |
| 544 | |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 545 | timer8: timer@4013e000 { |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 546 | compatible = "ti,omap2-timer"; |
Jon Hunter | d03a93b | 2012-11-01 08:57:08 -0500 | [diff] [blame] | 547 | reg = <0x4013e000 0x80>, |
| 548 | <0x4903e000 0x80>; |
Jon Hunter | fab8ad0 | 2012-10-19 09:59:00 -0500 | [diff] [blame] | 549 | interrupts = <0 44 0x4>; |
| 550 | ti,hwmods = "timer8"; |
| 551 | ti,timer-pwm; |
| 552 | ti,timer-dsp; |
| 553 | }; |
| 554 | |
| 555 | timer9: timer@4803e000 { |
| 556 | compatible = "ti,omap2-timer"; |
| 557 | reg = <0x4803e000 0x80>; |
| 558 | interrupts = <0 45 0x4>; |
| 559 | ti,hwmods = "timer9"; |
| 560 | ti,timer-pwm; |
| 561 | }; |
| 562 | |
| 563 | timer10: timer@48086000 { |
| 564 | compatible = "ti,omap2-timer"; |
| 565 | reg = <0x48086000 0x80>; |
| 566 | interrupts = <0 46 0x4>; |
| 567 | ti,hwmods = "timer10"; |
| 568 | ti,timer-pwm; |
| 569 | }; |
| 570 | |
| 571 | timer11: timer@48088000 { |
| 572 | compatible = "ti,omap2-timer"; |
| 573 | reg = <0x48088000 0x80>; |
| 574 | interrupts = <0 47 0x4>; |
| 575 | ti,hwmods = "timer11"; |
| 576 | ti,timer-pwm; |
| 577 | }; |
Roger Quadros | f17c899 | 2013-03-20 17:44:58 +0200 | [diff] [blame] | 578 | |
| 579 | usbhstll: usbhstll@4a062000 { |
| 580 | compatible = "ti,usbhs-tll"; |
| 581 | reg = <0x4a062000 0x1000>; |
| 582 | interrupts = <0 78 0x4>; |
| 583 | ti,hwmods = "usb_tll_hs"; |
| 584 | }; |
| 585 | |
| 586 | usbhshost: usbhshost@4a064000 { |
| 587 | compatible = "ti,usbhs-host"; |
| 588 | reg = <0x4a064000 0x800>; |
| 589 | ti,hwmods = "usb_host_hs"; |
| 590 | #address-cells = <1>; |
| 591 | #size-cells = <1>; |
| 592 | ranges; |
| 593 | |
| 594 | usbhsohci: ohci@4a064800 { |
| 595 | compatible = "ti,ohci-omap3", "usb-ohci"; |
| 596 | reg = <0x4a064800 0x400>; |
| 597 | interrupt-parent = <&gic>; |
| 598 | interrupts = <0 76 0x4>; |
| 599 | }; |
| 600 | |
| 601 | usbhsehci: ehci@4a064c00 { |
| 602 | compatible = "ti,ehci-omap", "usb-ehci"; |
| 603 | reg = <0x4a064c00 0x400>; |
| 604 | interrupt-parent = <&gic>; |
| 605 | interrupts = <0 77 0x4>; |
| 606 | }; |
| 607 | }; |
Kishon Vijay Abraham I | 840e5fd | 2013-03-07 19:05:14 +0530 | [diff] [blame] | 608 | |
| 609 | omap_control_usb: omap-control-usb@4a002300 { |
| 610 | compatible = "ti,omap-control-usb"; |
| 611 | reg = <0x4a002300 0x4>, |
| 612 | <0x4a00233c 0x4>; |
| 613 | reg-names = "control_dev_conf", "otghs_control"; |
| 614 | ti,type = <1>; |
| 615 | }; |
Kishon Vijay Abraham I | ad871c1 | 2013-03-07 19:05:16 +0530 | [diff] [blame] | 616 | |
| 617 | usb_otg_hs: usb_otg_hs@4a0ab000 { |
| 618 | compatible = "ti,omap4-musb"; |
| 619 | reg = <0x4a0ab000 0x7ff>; |
| 620 | interrupts = <0 92 0x4>, <0 93 0x4>; |
| 621 | interrupt-names = "mc", "dma"; |
| 622 | ti,hwmods = "usb_otg_hs"; |
| 623 | usb-phy = <&usb2_phy>; |
| 624 | multipoint = <1>; |
| 625 | num-eps = <16>; |
| 626 | ram-bits = <12>; |
| 627 | ti,has-mailbox; |
| 628 | }; |
Benoit Cousson | d9fda07 | 2011-08-09 17:15:17 +0200 | [diff] [blame] | 629 | }; |
| 630 | }; |