R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 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 | * Based on "omap4.dtsi" |
| 8 | */ |
| 9 | |
| 10 | /* |
| 11 | * Carveout for multimedia usecases |
| 12 | * It should be the last 48MB of the first 512MB memory part |
| 13 | * In theory, it should not even exist. That zone should be reserved |
| 14 | * dynamically during the .reserve callback. |
| 15 | */ |
| 16 | /memreserve/ 0x9d000000 0x03000000; |
| 17 | |
| 18 | /include/ "skeleton.dtsi" |
| 19 | |
| 20 | / { |
| 21 | compatible = "ti,omap5"; |
| 22 | interrupt-parent = <&gic>; |
| 23 | |
| 24 | aliases { |
| 25 | serial0 = &uart1; |
| 26 | serial1 = &uart2; |
| 27 | serial2 = &uart3; |
| 28 | serial3 = &uart4; |
| 29 | serial4 = &uart5; |
| 30 | serial5 = &uart6; |
| 31 | }; |
| 32 | |
| 33 | cpus { |
| 34 | cpu@0 { |
| 35 | compatible = "arm,cortex-a15"; |
Santosh Shilimkar | 3c7c5da | 2012-08-13 14:39:03 +0530 | [diff] [blame] | 36 | timer { |
| 37 | compatible = "arm,armv7-timer"; |
| 38 | /* 14th PPI IRQ, active low level-sensitive */ |
| 39 | interrupts = <1 14 0x308>; |
| 40 | clock-frequency = <6144000>; |
| 41 | }; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 42 | }; |
| 43 | cpu@1 { |
| 44 | compatible = "arm,cortex-a15"; |
Santosh Shilimkar | 3c7c5da | 2012-08-13 14:39:03 +0530 | [diff] [blame] | 45 | timer { |
| 46 | compatible = "arm,armv7-timer"; |
| 47 | /* 14th PPI IRQ, active low level-sensitive */ |
| 48 | interrupts = <1 14 0x308>; |
| 49 | clock-frequency = <6144000>; |
| 50 | }; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 51 | }; |
| 52 | }; |
| 53 | |
| 54 | /* |
| 55 | * The soc node represents the soc top level view. It is uses for IPs |
| 56 | * that are not memory mapped in the MPU view or for the MPU itself. |
| 57 | */ |
| 58 | soc { |
| 59 | compatible = "ti,omap-infra"; |
| 60 | mpu { |
| 61 | compatible = "ti,omap5-mpu"; |
| 62 | ti,hwmods = "mpu"; |
| 63 | }; |
| 64 | }; |
| 65 | |
| 66 | /* |
| 67 | * XXX: Use a flat representation of the OMAP3 interconnect. |
| 68 | * The real OMAP interconnect network is quite complex. |
| 69 | * Since that will not bring real advantage to represent that in DT for |
| 70 | * the moment, just use a fake OCP bus entry to represent the whole bus |
| 71 | * hierarchy. |
| 72 | */ |
| 73 | ocp { |
| 74 | compatible = "ti,omap4-l3-noc", "simple-bus"; |
| 75 | #address-cells = <1>; |
| 76 | #size-cells = <1>; |
| 77 | ranges; |
| 78 | ti,hwmods = "l3_main_1", "l3_main_2", "l3_main_3"; |
| 79 | |
Peter Ujfalusi | 5da6a2d | 2012-10-04 14:57:27 +0300 | [diff] [blame] | 80 | omap5_pmx_core: pinmux@4a002840 { |
| 81 | compatible = "ti,omap4-padconf", "pinctrl-single"; |
| 82 | reg = <0x4a002840 0x01b6>; |
| 83 | #address-cells = <1>; |
| 84 | #size-cells = <0>; |
| 85 | pinctrl-single,register-width = <16>; |
| 86 | pinctrl-single,function-mask = <0x7fff>; |
| 87 | }; |
| 88 | omap5_pmx_wkup: pinmux@4ae0c840 { |
| 89 | compatible = "ti,omap4-padconf", "pinctrl-single"; |
| 90 | reg = <0x4ae0c840 0x0038>; |
| 91 | #address-cells = <1>; |
| 92 | #size-cells = <0>; |
| 93 | pinctrl-single,register-width = <16>; |
| 94 | pinctrl-single,function-mask = <0x7fff>; |
| 95 | }; |
| 96 | |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 97 | gic: interrupt-controller@48211000 { |
| 98 | compatible = "arm,cortex-a15-gic"; |
| 99 | interrupt-controller; |
| 100 | #interrupt-cells = <3>; |
| 101 | reg = <0x48211000 0x1000>, |
| 102 | <0x48212000 0x1000>; |
| 103 | }; |
| 104 | |
| 105 | gpio1: gpio@4ae10000 { |
| 106 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 107 | reg = <0x4ae10000 0x200>; |
| 108 | interrupts = <0 29 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 109 | ti,hwmods = "gpio1"; |
| 110 | gpio-controller; |
| 111 | #gpio-cells = <2>; |
| 112 | interrupt-controller; |
| 113 | #interrupt-cells = <1>; |
| 114 | }; |
| 115 | |
| 116 | gpio2: gpio@48055000 { |
| 117 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 118 | reg = <0x48055000 0x200>; |
| 119 | interrupts = <0 30 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 120 | ti,hwmods = "gpio2"; |
| 121 | gpio-controller; |
| 122 | #gpio-cells = <2>; |
| 123 | interrupt-controller; |
| 124 | #interrupt-cells = <1>; |
| 125 | }; |
| 126 | |
| 127 | gpio3: gpio@48057000 { |
| 128 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 129 | reg = <0x48057000 0x200>; |
| 130 | interrupts = <0 31 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 131 | ti,hwmods = "gpio3"; |
| 132 | gpio-controller; |
| 133 | #gpio-cells = <2>; |
| 134 | interrupt-controller; |
| 135 | #interrupt-cells = <1>; |
| 136 | }; |
| 137 | |
| 138 | gpio4: gpio@48059000 { |
| 139 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 140 | reg = <0x48059000 0x200>; |
| 141 | interrupts = <0 32 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 142 | ti,hwmods = "gpio4"; |
| 143 | gpio-controller; |
| 144 | #gpio-cells = <2>; |
| 145 | interrupt-controller; |
| 146 | #interrupt-cells = <1>; |
| 147 | }; |
| 148 | |
| 149 | gpio5: gpio@4805b000 { |
| 150 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 151 | reg = <0x4805b000 0x200>; |
| 152 | interrupts = <0 33 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 153 | ti,hwmods = "gpio5"; |
| 154 | gpio-controller; |
| 155 | #gpio-cells = <2>; |
| 156 | interrupt-controller; |
| 157 | #interrupt-cells = <1>; |
| 158 | }; |
| 159 | |
| 160 | gpio6: gpio@4805d000 { |
| 161 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 162 | reg = <0x4805d000 0x200>; |
| 163 | interrupts = <0 34 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 164 | ti,hwmods = "gpio6"; |
| 165 | gpio-controller; |
| 166 | #gpio-cells = <2>; |
| 167 | interrupt-controller; |
| 168 | #interrupt-cells = <1>; |
| 169 | }; |
| 170 | |
| 171 | gpio7: gpio@48051000 { |
| 172 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 173 | reg = <0x48051000 0x200>; |
| 174 | interrupts = <0 35 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 175 | ti,hwmods = "gpio7"; |
| 176 | gpio-controller; |
| 177 | #gpio-cells = <2>; |
| 178 | interrupt-controller; |
| 179 | #interrupt-cells = <1>; |
| 180 | }; |
| 181 | |
| 182 | gpio8: gpio@48053000 { |
| 183 | compatible = "ti,omap4-gpio"; |
Sebastien Guiriec | f4b224f | 2012-10-23 10:37:09 +0200 | [diff] [blame] | 184 | reg = <0x48053000 0x200>; |
| 185 | interrupts = <0 121 0x4>; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 186 | ti,hwmods = "gpio8"; |
| 187 | gpio-controller; |
| 188 | #gpio-cells = <2>; |
| 189 | interrupt-controller; |
| 190 | #interrupt-cells = <1>; |
| 191 | }; |
| 192 | |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 193 | i2c1: i2c@48070000 { |
| 194 | compatible = "ti,omap4-i2c"; |
Sebastien Guiriec | d7118bb | 2012-10-23 10:37:10 +0200 | [diff] [blame^] | 195 | reg = <0x48070000 0x100>; |
| 196 | interrupts = <0 56 0x4>; |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 197 | #address-cells = <1>; |
| 198 | #size-cells = <0>; |
| 199 | ti,hwmods = "i2c1"; |
| 200 | }; |
| 201 | |
| 202 | i2c2: i2c@48072000 { |
| 203 | compatible = "ti,omap4-i2c"; |
Sebastien Guiriec | d7118bb | 2012-10-23 10:37:10 +0200 | [diff] [blame^] | 204 | reg = <0x48072000 0x100>; |
| 205 | interrupts = <0 57 0x4>; |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 206 | #address-cells = <1>; |
| 207 | #size-cells = <0>; |
| 208 | ti,hwmods = "i2c2"; |
| 209 | }; |
| 210 | |
| 211 | i2c3: i2c@48060000 { |
| 212 | compatible = "ti,omap4-i2c"; |
Sebastien Guiriec | d7118bb | 2012-10-23 10:37:10 +0200 | [diff] [blame^] | 213 | reg = <0x48060000 0x100>; |
| 214 | interrupts = <0 61 0x4>; |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 215 | #address-cells = <1>; |
| 216 | #size-cells = <0>; |
| 217 | ti,hwmods = "i2c3"; |
| 218 | }; |
| 219 | |
Sebastien Guiriec | d7118bb | 2012-10-23 10:37:10 +0200 | [diff] [blame^] | 220 | i2c4: i2c@4807a000 { |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 221 | compatible = "ti,omap4-i2c"; |
Sebastien Guiriec | d7118bb | 2012-10-23 10:37:10 +0200 | [diff] [blame^] | 222 | reg = <0x4807a000 0x100>; |
| 223 | interrupts = <0 62 0x4>; |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 224 | #address-cells = <1>; |
| 225 | #size-cells = <0>; |
| 226 | ti,hwmods = "i2c4"; |
| 227 | }; |
| 228 | |
Sebastien Guiriec | d7118bb | 2012-10-23 10:37:10 +0200 | [diff] [blame^] | 229 | i2c5: i2c@4807c000 { |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 230 | compatible = "ti,omap4-i2c"; |
Sebastien Guiriec | d7118bb | 2012-10-23 10:37:10 +0200 | [diff] [blame^] | 231 | reg = <0x4807c000 0x100>; |
| 232 | interrupts = <0 60 0x4>; |
Sourav Poddar | 6e6a9a50 | 2012-07-25 10:57:58 +0530 | [diff] [blame] | 233 | #address-cells = <1>; |
| 234 | #size-cells = <0>; |
| 235 | ti,hwmods = "i2c5"; |
| 236 | }; |
| 237 | |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 238 | uart1: serial@4806a000 { |
| 239 | compatible = "ti,omap4-uart"; |
| 240 | ti,hwmods = "uart1"; |
| 241 | clock-frequency = <48000000>; |
| 242 | }; |
| 243 | |
| 244 | uart2: serial@4806c000 { |
| 245 | compatible = "ti,omap4-uart"; |
| 246 | ti,hwmods = "uart2"; |
| 247 | clock-frequency = <48000000>; |
| 248 | }; |
| 249 | |
| 250 | uart3: serial@48020000 { |
| 251 | compatible = "ti,omap4-uart"; |
| 252 | ti,hwmods = "uart3"; |
| 253 | clock-frequency = <48000000>; |
| 254 | }; |
| 255 | |
| 256 | uart4: serial@4806e000 { |
| 257 | compatible = "ti,omap4-uart"; |
| 258 | ti,hwmods = "uart4"; |
| 259 | clock-frequency = <48000000>; |
| 260 | }; |
| 261 | |
| 262 | uart5: serial@48066000 { |
| 263 | compatible = "ti,omap5-uart"; |
| 264 | ti,hwmods = "uart5"; |
| 265 | clock-frequency = <48000000>; |
| 266 | }; |
| 267 | |
| 268 | uart6: serial@48068000 { |
| 269 | compatible = "ti,omap6-uart"; |
| 270 | ti,hwmods = "uart6"; |
| 271 | clock-frequency = <48000000>; |
| 272 | }; |
Balaji T K | 5dd18b0 | 2012-08-07 12:48:21 +0530 | [diff] [blame] | 273 | |
| 274 | mmc1: mmc@4809c000 { |
| 275 | compatible = "ti,omap4-hsmmc"; |
| 276 | ti,hwmods = "mmc1"; |
| 277 | ti,dual-volt; |
| 278 | ti,needs-special-reset; |
| 279 | }; |
| 280 | |
| 281 | mmc2: mmc@480b4000 { |
| 282 | compatible = "ti,omap4-hsmmc"; |
| 283 | ti,hwmods = "mmc2"; |
| 284 | ti,needs-special-reset; |
| 285 | }; |
| 286 | |
| 287 | mmc3: mmc@480ad000 { |
| 288 | compatible = "ti,omap4-hsmmc"; |
| 289 | ti,hwmods = "mmc3"; |
| 290 | ti,needs-special-reset; |
| 291 | }; |
| 292 | |
| 293 | mmc4: mmc@480d1000 { |
| 294 | compatible = "ti,omap4-hsmmc"; |
| 295 | ti,hwmods = "mmc4"; |
| 296 | ti,needs-special-reset; |
| 297 | }; |
| 298 | |
| 299 | mmc5: mmc@480d5000 { |
| 300 | compatible = "ti,omap4-hsmmc"; |
| 301 | ti,hwmods = "mmc5"; |
| 302 | ti,needs-special-reset; |
| 303 | }; |
Sourav Poddar | 5449fbc | 2012-07-25 11:03:27 +0530 | [diff] [blame] | 304 | |
| 305 | keypad: keypad@4ae1c000 { |
| 306 | compatible = "ti,omap4-keypad"; |
| 307 | ti,hwmods = "kbd"; |
| 308 | }; |
Peter Ujfalusi | ffd5db2 | 2012-08-29 16:31:04 +0300 | [diff] [blame] | 309 | |
Peter Ujfalusi | cbb57f0 | 2012-08-29 16:31:07 +0300 | [diff] [blame] | 310 | mcpdm: mcpdm@40132000 { |
| 311 | compatible = "ti,omap4-mcpdm"; |
| 312 | reg = <0x40132000 0x7f>, /* MPU private access */ |
| 313 | <0x49032000 0x7f>; /* L3 Interconnect */ |
| 314 | reg-names = "mpu", "dma"; |
| 315 | interrupts = <0 112 0x4>; |
Peter Ujfalusi | cbb57f0 | 2012-08-29 16:31:07 +0300 | [diff] [blame] | 316 | ti,hwmods = "mcpdm"; |
| 317 | }; |
| 318 | |
| 319 | dmic: dmic@4012e000 { |
| 320 | compatible = "ti,omap4-dmic"; |
| 321 | reg = <0x4012e000 0x7f>, /* MPU private access */ |
| 322 | <0x4902e000 0x7f>; /* L3 Interconnect */ |
| 323 | reg-names = "mpu", "dma"; |
| 324 | interrupts = <0 114 0x4>; |
Peter Ujfalusi | cbb57f0 | 2012-08-29 16:31:07 +0300 | [diff] [blame] | 325 | ti,hwmods = "dmic"; |
| 326 | }; |
| 327 | |
Peter Ujfalusi | ffd5db2 | 2012-08-29 16:31:04 +0300 | [diff] [blame] | 328 | mcbsp1: mcbsp@40122000 { |
| 329 | compatible = "ti,omap4-mcbsp"; |
| 330 | reg = <0x40122000 0xff>, /* MPU private access */ |
| 331 | <0x49022000 0xff>; /* L3 Interconnect */ |
| 332 | reg-names = "mpu", "dma"; |
| 333 | interrupts = <0 17 0x4>; |
| 334 | interrupt-names = "common"; |
Peter Ujfalusi | ffd5db2 | 2012-08-29 16:31:04 +0300 | [diff] [blame] | 335 | ti,buffer-size = <128>; |
| 336 | ti,hwmods = "mcbsp1"; |
| 337 | }; |
| 338 | |
| 339 | mcbsp2: mcbsp@40124000 { |
| 340 | compatible = "ti,omap4-mcbsp"; |
| 341 | reg = <0x40124000 0xff>, /* MPU private access */ |
| 342 | <0x49024000 0xff>; /* L3 Interconnect */ |
| 343 | reg-names = "mpu", "dma"; |
| 344 | interrupts = <0 22 0x4>; |
| 345 | interrupt-names = "common"; |
Peter Ujfalusi | ffd5db2 | 2012-08-29 16:31:04 +0300 | [diff] [blame] | 346 | ti,buffer-size = <128>; |
| 347 | ti,hwmods = "mcbsp2"; |
| 348 | }; |
| 349 | |
| 350 | mcbsp3: mcbsp@40126000 { |
| 351 | compatible = "ti,omap4-mcbsp"; |
| 352 | reg = <0x40126000 0xff>, /* MPU private access */ |
| 353 | <0x49026000 0xff>; /* L3 Interconnect */ |
| 354 | reg-names = "mpu", "dma"; |
| 355 | interrupts = <0 23 0x4>; |
| 356 | interrupt-names = "common"; |
Peter Ujfalusi | ffd5db2 | 2012-08-29 16:31:04 +0300 | [diff] [blame] | 357 | ti,buffer-size = <128>; |
| 358 | ti,hwmods = "mcbsp3"; |
| 359 | }; |
R Sricharan | 6b5de09 | 2012-05-10 19:46:00 +0530 | [diff] [blame] | 360 | }; |
| 361 | }; |