R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 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 | #include <dt-bindings/interrupt-controller/arm-gic.h> |
| 11 | #include <dt-bindings/pinctrl/dra.h> |
| 12 | |
| 13 | #include "skeleton.dtsi" |
| 14 | |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 15 | #define MAX_SOURCES 400 |
| 16 | #define DIRECT_IRQ(irq) (MAX_SOURCES + irq) |
| 17 | |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 18 | / { |
| 19 | #address-cells = <1>; |
| 20 | #size-cells = <1>; |
| 21 | |
| 22 | compatible = "ti,dra7xx"; |
| 23 | interrupt-parent = <&gic>; |
| 24 | |
| 25 | aliases { |
Nishanth Menon | 20b8094 | 2013-10-16 15:21:03 -0500 | [diff] [blame] | 26 | i2c0 = &i2c1; |
| 27 | i2c1 = &i2c2; |
| 28 | i2c2 = &i2c3; |
| 29 | i2c3 = &i2c4; |
| 30 | i2c4 = &i2c5; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 31 | serial0 = &uart1; |
| 32 | serial1 = &uart2; |
| 33 | serial2 = &uart3; |
| 34 | serial3 = &uart4; |
| 35 | serial4 = &uart5; |
| 36 | serial5 = &uart6; |
| 37 | }; |
| 38 | |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 39 | timer { |
| 40 | compatible = "arm,armv7-timer"; |
| 41 | interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>, |
| 42 | <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>, |
| 43 | <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>, |
| 44 | <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>; |
| 45 | }; |
| 46 | |
| 47 | gic: interrupt-controller@48211000 { |
| 48 | compatible = "arm,cortex-a15-gic"; |
| 49 | interrupt-controller; |
| 50 | #interrupt-cells = <3>; |
R Sricharan | 5130063 | 2014-06-26 12:55:30 +0530 | [diff] [blame] | 51 | arm,routable-irqs = <192>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 52 | reg = <0x48211000 0x1000>, |
| 53 | <0x48212000 0x1000>, |
| 54 | <0x48214000 0x2000>, |
| 55 | <0x48216000 0x2000>; |
| 56 | interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_HIGH)>; |
| 57 | }; |
| 58 | |
| 59 | /* |
Geert Uytterhoeven | 5c5be9d | 2014-03-28 11:11:37 +0100 | [diff] [blame] | 60 | * The soc node represents the soc top level view. It is used for IPs |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 61 | * that are not memory mapped in the MPU view or for the MPU itself. |
| 62 | */ |
| 63 | soc { |
| 64 | compatible = "ti,omap-infra"; |
| 65 | mpu { |
| 66 | compatible = "ti,omap5-mpu"; |
| 67 | ti,hwmods = "mpu"; |
| 68 | }; |
| 69 | }; |
| 70 | |
| 71 | /* |
| 72 | * XXX: Use a flat representation of the SOC interconnect. |
| 73 | * The real OMAP interconnect network is quite complex. |
Geert Uytterhoeven | b7ab524 | 2014-03-28 11:11:39 +0100 | [diff] [blame] | 74 | * Since it will not bring real advantage to represent that in DT for |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 75 | * the moment, just use a fake OCP bus entry to represent the whole bus |
| 76 | * hierarchy. |
| 77 | */ |
| 78 | ocp { |
Rajendra Nayak | fba387a | 2014-04-10 11:34:32 -0500 | [diff] [blame] | 79 | compatible = "ti,dra7-l3-noc", "simple-bus"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 80 | #address-cells = <1>; |
| 81 | #size-cells = <1>; |
| 82 | ranges; |
| 83 | ti,hwmods = "l3_main_1", "l3_main_2"; |
Rajendra Nayak | fba387a | 2014-04-10 11:34:32 -0500 | [diff] [blame] | 84 | reg = <0x44000000 0x1000000>, |
| 85 | <0x45000000 0x1000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 86 | interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>, |
| 87 | <GIC_SPI DIRECT_IRQ(10) IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 88 | |
Tero Kristo | ee6c750 | 2013-07-18 17:18:33 +0300 | [diff] [blame] | 89 | prm: prm@4ae06000 { |
| 90 | compatible = "ti,dra7-prm"; |
| 91 | reg = <0x4ae06000 0x3000>; |
Nishanth Menon | 5081ce6 | 2014-08-22 09:03:50 -0500 | [diff] [blame] | 92 | interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>; |
Tero Kristo | ee6c750 | 2013-07-18 17:18:33 +0300 | [diff] [blame] | 93 | |
| 94 | prm_clocks: clocks { |
| 95 | #address-cells = <1>; |
| 96 | #size-cells = <0>; |
| 97 | }; |
| 98 | |
| 99 | prm_clockdomains: clockdomains { |
| 100 | }; |
| 101 | }; |
| 102 | |
Kishon Vijay Abraham I | 18dcd79 | 2014-07-14 16:12:23 +0530 | [diff] [blame] | 103 | axi@0 { |
| 104 | compatible = "simple-bus"; |
| 105 | #size-cells = <1>; |
| 106 | #address-cells = <1>; |
| 107 | ranges = <0x51000000 0x51000000 0x3000 |
| 108 | 0x0 0x20000000 0x10000000>; |
| 109 | pcie@51000000 { |
| 110 | compatible = "ti,dra7-pcie"; |
| 111 | reg = <0x51000000 0x2000>, <0x51002000 0x14c>, <0x1000 0x2000>; |
| 112 | reg-names = "rc_dbics", "ti_conf", "config"; |
| 113 | interrupts = <0 232 0x4>, <0 233 0x4>; |
| 114 | #address-cells = <3>; |
| 115 | #size-cells = <2>; |
| 116 | device_type = "pci"; |
| 117 | ranges = <0x81000000 0 0 0x03000 0 0x00010000 |
| 118 | 0x82000000 0 0x20013000 0x13000 0 0xffed000>; |
| 119 | #interrupt-cells = <1>; |
| 120 | num-lanes = <1>; |
| 121 | ti,hwmods = "pcie1"; |
| 122 | phys = <&pcie1_phy>; |
| 123 | phy-names = "pcie-phy0"; |
| 124 | interrupt-map-mask = <0 0 0 7>; |
| 125 | interrupt-map = <0 0 0 1 &pcie1_intc 1>, |
| 126 | <0 0 0 2 &pcie1_intc 2>, |
| 127 | <0 0 0 3 &pcie1_intc 3>, |
| 128 | <0 0 0 4 &pcie1_intc 4>; |
| 129 | pcie1_intc: interrupt-controller { |
| 130 | interrupt-controller; |
| 131 | #address-cells = <0>; |
| 132 | #interrupt-cells = <1>; |
| 133 | }; |
| 134 | }; |
| 135 | }; |
| 136 | |
| 137 | axi@1 { |
| 138 | compatible = "simple-bus"; |
| 139 | #size-cells = <1>; |
| 140 | #address-cells = <1>; |
| 141 | ranges = <0x51800000 0x51800000 0x3000 |
| 142 | 0x0 0x30000000 0x10000000>; |
| 143 | status = "disabled"; |
| 144 | pcie@51000000 { |
| 145 | compatible = "ti,dra7-pcie"; |
| 146 | reg = <0x51800000 0x2000>, <0x51802000 0x14c>, <0x1000 0x2000>; |
| 147 | reg-names = "rc_dbics", "ti_conf", "config"; |
| 148 | interrupts = <0 355 0x4>, <0 356 0x4>; |
| 149 | #address-cells = <3>; |
| 150 | #size-cells = <2>; |
| 151 | device_type = "pci"; |
| 152 | ranges = <0x81000000 0 0 0x03000 0 0x00010000 |
| 153 | 0x82000000 0 0x30013000 0x13000 0 0xffed000>; |
| 154 | #interrupt-cells = <1>; |
| 155 | num-lanes = <1>; |
| 156 | ti,hwmods = "pcie2"; |
| 157 | phys = <&pcie2_phy>; |
| 158 | phy-names = "pcie-phy0"; |
| 159 | interrupt-map-mask = <0 0 0 7>; |
| 160 | interrupt-map = <0 0 0 1 &pcie2_intc 1>, |
| 161 | <0 0 0 2 &pcie2_intc 2>, |
| 162 | <0 0 0 3 &pcie2_intc 3>, |
| 163 | <0 0 0 4 &pcie2_intc 4>; |
| 164 | pcie2_intc: interrupt-controller { |
| 165 | interrupt-controller; |
| 166 | #address-cells = <0>; |
| 167 | #interrupt-cells = <1>; |
| 168 | }; |
| 169 | }; |
| 170 | }; |
| 171 | |
Tero Kristo | ee6c750 | 2013-07-18 17:18:33 +0300 | [diff] [blame] | 172 | cm_core_aon: cm_core_aon@4a005000 { |
| 173 | compatible = "ti,dra7-cm-core-aon"; |
| 174 | reg = <0x4a005000 0x2000>; |
| 175 | |
| 176 | cm_core_aon_clocks: clocks { |
| 177 | #address-cells = <1>; |
| 178 | #size-cells = <0>; |
| 179 | }; |
| 180 | |
| 181 | cm_core_aon_clockdomains: clockdomains { |
| 182 | }; |
| 183 | }; |
| 184 | |
| 185 | cm_core: cm_core@4a008000 { |
| 186 | compatible = "ti,dra7-cm-core"; |
| 187 | reg = <0x4a008000 0x3000>; |
| 188 | |
| 189 | cm_core_clocks: clocks { |
| 190 | #address-cells = <1>; |
| 191 | #size-cells = <0>; |
| 192 | }; |
| 193 | |
| 194 | cm_core_clockdomains: clockdomains { |
| 195 | }; |
| 196 | }; |
| 197 | |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 198 | counter32k: counter@4ae04000 { |
| 199 | compatible = "ti,omap-counter32k"; |
| 200 | reg = <0x4ae04000 0x40>; |
| 201 | ti,hwmods = "counter_32k"; |
| 202 | }; |
| 203 | |
Balaji T K | cd042fe | 2014-02-19 20:26:40 +0530 | [diff] [blame] | 204 | dra7_ctrl_general: tisyscon@4a002e00 { |
| 205 | compatible = "syscon"; |
| 206 | reg = <0x4a002e00 0x7c>; |
| 207 | }; |
| 208 | |
| 209 | pbias_regulator: pbias_regulator { |
| 210 | compatible = "ti,pbias-omap"; |
| 211 | reg = <0 0x4>; |
| 212 | syscon = <&dra7_ctrl_general>; |
| 213 | pbias_mmc_reg: pbias_mmc_omap5 { |
| 214 | regulator-name = "pbias_mmc_omap5"; |
| 215 | regulator-min-microvolt = <1800000>; |
| 216 | regulator-max-microvolt = <3000000>; |
| 217 | }; |
| 218 | }; |
| 219 | |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 220 | dra7_pmx_core: pinmux@4a003400 { |
Nishanth Menon | 817c037 | 2014-05-22 23:47:46 -0500 | [diff] [blame] | 221 | compatible = "ti,dra7-padconf", "pinctrl-single"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 222 | reg = <0x4a003400 0x0464>; |
| 223 | #address-cells = <1>; |
| 224 | #size-cells = <0>; |
Nishanth Menon | 817c037 | 2014-05-22 23:47:46 -0500 | [diff] [blame] | 225 | #interrupt-cells = <1>; |
| 226 | interrupt-controller; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 227 | pinctrl-single,register-width = <32>; |
| 228 | pinctrl-single,function-mask = <0x3fffffff>; |
| 229 | }; |
| 230 | |
| 231 | sdma: dma-controller@4a056000 { |
| 232 | compatible = "ti,omap4430-sdma"; |
| 233 | reg = <0x4a056000 0x1000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 234 | interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>, |
| 235 | <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>, |
| 236 | <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, |
| 237 | <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 238 | #dma-cells = <1>; |
| 239 | #dma-channels = <32>; |
| 240 | #dma-requests = <127>; |
| 241 | }; |
| 242 | |
| 243 | gpio1: gpio@4ae10000 { |
| 244 | compatible = "ti,omap4-gpio"; |
| 245 | reg = <0x4ae10000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 246 | interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 247 | ti,hwmods = "gpio1"; |
| 248 | gpio-controller; |
| 249 | #gpio-cells = <2>; |
| 250 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 251 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 252 | }; |
| 253 | |
| 254 | gpio2: gpio@48055000 { |
| 255 | compatible = "ti,omap4-gpio"; |
| 256 | reg = <0x48055000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 257 | interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 258 | ti,hwmods = "gpio2"; |
| 259 | gpio-controller; |
| 260 | #gpio-cells = <2>; |
| 261 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 262 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 263 | }; |
| 264 | |
| 265 | gpio3: gpio@48057000 { |
| 266 | compatible = "ti,omap4-gpio"; |
| 267 | reg = <0x48057000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 268 | interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 269 | ti,hwmods = "gpio3"; |
| 270 | gpio-controller; |
| 271 | #gpio-cells = <2>; |
| 272 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 273 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 274 | }; |
| 275 | |
| 276 | gpio4: gpio@48059000 { |
| 277 | compatible = "ti,omap4-gpio"; |
| 278 | reg = <0x48059000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 279 | interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 280 | ti,hwmods = "gpio4"; |
| 281 | gpio-controller; |
| 282 | #gpio-cells = <2>; |
| 283 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 284 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 285 | }; |
| 286 | |
| 287 | gpio5: gpio@4805b000 { |
| 288 | compatible = "ti,omap4-gpio"; |
| 289 | reg = <0x4805b000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 290 | interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 291 | ti,hwmods = "gpio5"; |
| 292 | gpio-controller; |
| 293 | #gpio-cells = <2>; |
| 294 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 295 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 296 | }; |
| 297 | |
| 298 | gpio6: gpio@4805d000 { |
| 299 | compatible = "ti,omap4-gpio"; |
| 300 | reg = <0x4805d000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 301 | interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 302 | ti,hwmods = "gpio6"; |
| 303 | gpio-controller; |
| 304 | #gpio-cells = <2>; |
| 305 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 306 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 307 | }; |
| 308 | |
| 309 | gpio7: gpio@48051000 { |
| 310 | compatible = "ti,omap4-gpio"; |
| 311 | reg = <0x48051000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 312 | interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 313 | ti,hwmods = "gpio7"; |
| 314 | gpio-controller; |
| 315 | #gpio-cells = <2>; |
| 316 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 317 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 318 | }; |
| 319 | |
| 320 | gpio8: gpio@48053000 { |
| 321 | compatible = "ti,omap4-gpio"; |
| 322 | reg = <0x48053000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 323 | interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 324 | ti,hwmods = "gpio8"; |
| 325 | gpio-controller; |
| 326 | #gpio-cells = <2>; |
| 327 | interrupt-controller; |
Nishanth Menon | e49d519c | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 328 | #interrupt-cells = <2>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 329 | }; |
| 330 | |
| 331 | uart1: serial@4806a000 { |
| 332 | compatible = "ti,omap4-uart"; |
| 333 | reg = <0x4806a000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 334 | interrupts-extended = <&gic GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 335 | ti,hwmods = "uart1"; |
| 336 | clock-frequency = <48000000>; |
| 337 | status = "disabled"; |
Sebastian Andrzej Siewior | f0199a2 | 2014-09-29 20:06:47 +0200 | [diff] [blame^] | 338 | dmas = <&sdma 49>, <&sdma 50>; |
| 339 | dma-names = "tx", "rx"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 340 | }; |
| 341 | |
| 342 | uart2: serial@4806c000 { |
| 343 | compatible = "ti,omap4-uart"; |
| 344 | reg = <0x4806c000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 345 | interrupts-extended = <&gic GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 346 | ti,hwmods = "uart2"; |
| 347 | clock-frequency = <48000000>; |
| 348 | status = "disabled"; |
Sebastian Andrzej Siewior | f0199a2 | 2014-09-29 20:06:47 +0200 | [diff] [blame^] | 349 | dmas = <&sdma 51>, <&sdma 52>; |
| 350 | dma-names = "tx", "rx"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 351 | }; |
| 352 | |
| 353 | uart3: serial@48020000 { |
| 354 | compatible = "ti,omap4-uart"; |
| 355 | reg = <0x48020000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 356 | interrupts-extended = <&gic GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 357 | ti,hwmods = "uart3"; |
| 358 | clock-frequency = <48000000>; |
| 359 | status = "disabled"; |
Sebastian Andrzej Siewior | f0199a2 | 2014-09-29 20:06:47 +0200 | [diff] [blame^] | 360 | dmas = <&sdma 53>, <&sdma 54>; |
| 361 | dma-names = "tx", "rx"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 362 | }; |
| 363 | |
| 364 | uart4: serial@4806e000 { |
| 365 | compatible = "ti,omap4-uart"; |
| 366 | reg = <0x4806e000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 367 | interrupts-extended = <&gic GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 368 | ti,hwmods = "uart4"; |
| 369 | clock-frequency = <48000000>; |
| 370 | status = "disabled"; |
Sebastian Andrzej Siewior | f0199a2 | 2014-09-29 20:06:47 +0200 | [diff] [blame^] | 371 | dmas = <&sdma 55>, <&sdma 56>; |
| 372 | dma-names = "tx", "rx"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 373 | }; |
| 374 | |
| 375 | uart5: serial@48066000 { |
| 376 | compatible = "ti,omap4-uart"; |
| 377 | reg = <0x48066000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 378 | interrupts-extended = <&gic GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 379 | ti,hwmods = "uart5"; |
| 380 | clock-frequency = <48000000>; |
| 381 | status = "disabled"; |
Sebastian Andrzej Siewior | f0199a2 | 2014-09-29 20:06:47 +0200 | [diff] [blame^] | 382 | dmas = <&sdma 63>, <&sdma 64>; |
| 383 | dma-names = "tx", "rx"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 384 | }; |
| 385 | |
| 386 | uart6: serial@48068000 { |
| 387 | compatible = "ti,omap4-uart"; |
| 388 | reg = <0x48068000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 389 | interrupts-extended = <&gic GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 390 | ti,hwmods = "uart6"; |
| 391 | clock-frequency = <48000000>; |
| 392 | status = "disabled"; |
Sebastian Andrzej Siewior | f0199a2 | 2014-09-29 20:06:47 +0200 | [diff] [blame^] | 393 | dmas = <&sdma 79>, <&sdma 80>; |
| 394 | dma-names = "tx", "rx"; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 395 | }; |
| 396 | |
| 397 | uart7: serial@48420000 { |
| 398 | compatible = "ti,omap4-uart"; |
| 399 | reg = <0x48420000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 400 | interrupts-extended = <&gic GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 401 | ti,hwmods = "uart7"; |
| 402 | clock-frequency = <48000000>; |
| 403 | status = "disabled"; |
| 404 | }; |
| 405 | |
| 406 | uart8: serial@48422000 { |
| 407 | compatible = "ti,omap4-uart"; |
| 408 | reg = <0x48422000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 409 | interrupts-extended = <&gic GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 410 | ti,hwmods = "uart8"; |
| 411 | clock-frequency = <48000000>; |
| 412 | status = "disabled"; |
| 413 | }; |
| 414 | |
| 415 | uart9: serial@48424000 { |
| 416 | compatible = "ti,omap4-uart"; |
| 417 | reg = <0x48424000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 418 | interrupts-extended = <&gic GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 419 | ti,hwmods = "uart9"; |
| 420 | clock-frequency = <48000000>; |
| 421 | status = "disabled"; |
| 422 | }; |
| 423 | |
| 424 | uart10: serial@4ae2b000 { |
| 425 | compatible = "ti,omap4-uart"; |
| 426 | reg = <0x4ae2b000 0x100>; |
Nishanth Menon | e2265ab | 2014-05-23 00:04:02 -0500 | [diff] [blame] | 427 | interrupts-extended = <&gic GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 428 | ti,hwmods = "uart10"; |
| 429 | clock-frequency = <48000000>; |
| 430 | status = "disabled"; |
| 431 | }; |
| 432 | |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 433 | mailbox1: mailbox@4a0f4000 { |
| 434 | compatible = "ti,omap4-mailbox"; |
| 435 | reg = <0x4a0f4000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 436 | interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>, |
| 437 | <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>, |
| 438 | <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 439 | ti,hwmods = "mailbox1"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 440 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 441 | ti,mbox-num-users = <3>; |
| 442 | ti,mbox-num-fifos = <8>; |
| 443 | status = "disabled"; |
| 444 | }; |
| 445 | |
| 446 | mailbox2: mailbox@4883a000 { |
| 447 | compatible = "ti,omap4-mailbox"; |
| 448 | reg = <0x4883a000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 449 | interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>, |
| 450 | <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>, |
| 451 | <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>, |
| 452 | <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 453 | ti,hwmods = "mailbox2"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 454 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 455 | ti,mbox-num-users = <4>; |
| 456 | ti,mbox-num-fifos = <12>; |
| 457 | status = "disabled"; |
| 458 | }; |
| 459 | |
| 460 | mailbox3: mailbox@4883c000 { |
| 461 | compatible = "ti,omap4-mailbox"; |
| 462 | reg = <0x4883c000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 463 | interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>, |
| 464 | <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>, |
| 465 | <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>, |
| 466 | <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 467 | ti,hwmods = "mailbox3"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 468 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 469 | ti,mbox-num-users = <4>; |
| 470 | ti,mbox-num-fifos = <12>; |
| 471 | status = "disabled"; |
| 472 | }; |
| 473 | |
| 474 | mailbox4: mailbox@4883e000 { |
| 475 | compatible = "ti,omap4-mailbox"; |
| 476 | reg = <0x4883e000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 477 | interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>, |
| 478 | <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>, |
| 479 | <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>, |
| 480 | <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 481 | ti,hwmods = "mailbox4"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 482 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 483 | ti,mbox-num-users = <4>; |
| 484 | ti,mbox-num-fifos = <12>; |
| 485 | status = "disabled"; |
| 486 | }; |
| 487 | |
| 488 | mailbox5: mailbox@48840000 { |
| 489 | compatible = "ti,omap4-mailbox"; |
| 490 | reg = <0x48840000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 491 | interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>, |
| 492 | <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>, |
| 493 | <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>, |
| 494 | <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 495 | ti,hwmods = "mailbox5"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 496 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 497 | ti,mbox-num-users = <4>; |
| 498 | ti,mbox-num-fifos = <12>; |
| 499 | status = "disabled"; |
| 500 | }; |
| 501 | |
| 502 | mailbox6: mailbox@48842000 { |
| 503 | compatible = "ti,omap4-mailbox"; |
| 504 | reg = <0x48842000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 505 | interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>, |
| 506 | <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>, |
| 507 | <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>, |
| 508 | <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 509 | ti,hwmods = "mailbox6"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 510 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 511 | ti,mbox-num-users = <4>; |
| 512 | ti,mbox-num-fifos = <12>; |
| 513 | status = "disabled"; |
| 514 | }; |
| 515 | |
| 516 | mailbox7: mailbox@48844000 { |
| 517 | compatible = "ti,omap4-mailbox"; |
| 518 | reg = <0x48844000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 519 | interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>, |
| 520 | <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>, |
| 521 | <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>, |
| 522 | <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 523 | ti,hwmods = "mailbox7"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 524 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 525 | ti,mbox-num-users = <4>; |
| 526 | ti,mbox-num-fifos = <12>; |
| 527 | status = "disabled"; |
| 528 | }; |
| 529 | |
| 530 | mailbox8: mailbox@48846000 { |
| 531 | compatible = "ti,omap4-mailbox"; |
| 532 | reg = <0x48846000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 533 | interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>, |
| 534 | <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>, |
| 535 | <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>, |
| 536 | <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 537 | ti,hwmods = "mailbox8"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 538 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 539 | ti,mbox-num-users = <4>; |
| 540 | ti,mbox-num-fifos = <12>; |
| 541 | status = "disabled"; |
| 542 | }; |
| 543 | |
| 544 | mailbox9: mailbox@4885e000 { |
| 545 | compatible = "ti,omap4-mailbox"; |
| 546 | reg = <0x4885e000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 547 | interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>, |
| 548 | <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>, |
| 549 | <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>, |
| 550 | <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 551 | ti,hwmods = "mailbox9"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 552 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 553 | ti,mbox-num-users = <4>; |
| 554 | ti,mbox-num-fifos = <12>; |
| 555 | status = "disabled"; |
| 556 | }; |
| 557 | |
| 558 | mailbox10: mailbox@48860000 { |
| 559 | compatible = "ti,omap4-mailbox"; |
| 560 | reg = <0x48860000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 561 | interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>, |
| 562 | <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>, |
| 563 | <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>, |
| 564 | <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 565 | ti,hwmods = "mailbox10"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 566 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 567 | ti,mbox-num-users = <4>; |
| 568 | ti,mbox-num-fifos = <12>; |
| 569 | status = "disabled"; |
| 570 | }; |
| 571 | |
| 572 | mailbox11: mailbox@48862000 { |
| 573 | compatible = "ti,omap4-mailbox"; |
| 574 | reg = <0x48862000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 575 | interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>, |
| 576 | <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>, |
| 577 | <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>, |
| 578 | <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 579 | ti,hwmods = "mailbox11"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 580 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 581 | ti,mbox-num-users = <4>; |
| 582 | ti,mbox-num-fifos = <12>; |
| 583 | status = "disabled"; |
| 584 | }; |
| 585 | |
| 586 | mailbox12: mailbox@48864000 { |
| 587 | compatible = "ti,omap4-mailbox"; |
| 588 | reg = <0x48864000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 589 | interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>, |
| 590 | <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>, |
| 591 | <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>, |
| 592 | <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 593 | ti,hwmods = "mailbox12"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 594 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 595 | ti,mbox-num-users = <4>; |
| 596 | ti,mbox-num-fifos = <12>; |
| 597 | status = "disabled"; |
| 598 | }; |
| 599 | |
| 600 | mailbox13: mailbox@48802000 { |
| 601 | compatible = "ti,omap4-mailbox"; |
| 602 | reg = <0x48802000 0x200>; |
Suman Anna | b46a6ae | 2014-11-03 17:07:34 -0600 | [diff] [blame] | 603 | interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>, |
| 604 | <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>, |
| 605 | <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>, |
| 606 | <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 607 | ti,hwmods = "mailbox13"; |
Suman Anna | 24df045 | 2014-11-03 17:07:35 -0600 | [diff] [blame] | 608 | #mbox-cells = <1>; |
Suman Anna | 38baefb | 2014-07-11 16:44:38 -0500 | [diff] [blame] | 609 | ti,mbox-num-users = <4>; |
| 610 | ti,mbox-num-fifos = <12>; |
| 611 | status = "disabled"; |
| 612 | }; |
| 613 | |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 614 | timer1: timer@4ae18000 { |
| 615 | compatible = "ti,omap5430-timer"; |
| 616 | reg = <0x4ae18000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 617 | interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 618 | ti,hwmods = "timer1"; |
| 619 | ti,timer-alwon; |
| 620 | }; |
| 621 | |
| 622 | timer2: timer@48032000 { |
| 623 | compatible = "ti,omap5430-timer"; |
| 624 | reg = <0x48032000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 625 | interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 626 | ti,hwmods = "timer2"; |
| 627 | }; |
| 628 | |
| 629 | timer3: timer@48034000 { |
| 630 | compatible = "ti,omap5430-timer"; |
| 631 | reg = <0x48034000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 632 | interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 633 | ti,hwmods = "timer3"; |
| 634 | }; |
| 635 | |
| 636 | timer4: timer@48036000 { |
| 637 | compatible = "ti,omap5430-timer"; |
| 638 | reg = <0x48036000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 639 | interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 640 | ti,hwmods = "timer4"; |
| 641 | }; |
| 642 | |
| 643 | timer5: timer@48820000 { |
| 644 | compatible = "ti,omap5430-timer"; |
| 645 | reg = <0x48820000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 646 | interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 647 | ti,hwmods = "timer5"; |
| 648 | ti,timer-dsp; |
| 649 | }; |
| 650 | |
| 651 | timer6: timer@48822000 { |
| 652 | compatible = "ti,omap5430-timer"; |
| 653 | reg = <0x48822000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 654 | interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 655 | ti,hwmods = "timer6"; |
| 656 | ti,timer-dsp; |
| 657 | ti,timer-pwm; |
| 658 | }; |
| 659 | |
| 660 | timer7: timer@48824000 { |
| 661 | compatible = "ti,omap5430-timer"; |
| 662 | reg = <0x48824000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 663 | interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 664 | ti,hwmods = "timer7"; |
| 665 | ti,timer-dsp; |
| 666 | }; |
| 667 | |
| 668 | timer8: timer@48826000 { |
| 669 | compatible = "ti,omap5430-timer"; |
| 670 | reg = <0x48826000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 671 | interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 672 | ti,hwmods = "timer8"; |
| 673 | ti,timer-dsp; |
| 674 | ti,timer-pwm; |
| 675 | }; |
| 676 | |
| 677 | timer9: timer@4803e000 { |
| 678 | compatible = "ti,omap5430-timer"; |
| 679 | reg = <0x4803e000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 680 | interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 681 | ti,hwmods = "timer9"; |
| 682 | }; |
| 683 | |
| 684 | timer10: timer@48086000 { |
| 685 | compatible = "ti,omap5430-timer"; |
| 686 | reg = <0x48086000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 687 | interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 688 | ti,hwmods = "timer10"; |
| 689 | }; |
| 690 | |
| 691 | timer11: timer@48088000 { |
| 692 | compatible = "ti,omap5430-timer"; |
| 693 | reg = <0x48088000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 694 | interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 695 | ti,hwmods = "timer11"; |
| 696 | ti,timer-pwm; |
| 697 | }; |
| 698 | |
| 699 | timer13: timer@48828000 { |
| 700 | compatible = "ti,omap5430-timer"; |
| 701 | reg = <0x48828000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 702 | interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 703 | ti,hwmods = "timer13"; |
| 704 | status = "disabled"; |
| 705 | }; |
| 706 | |
| 707 | timer14: timer@4882a000 { |
| 708 | compatible = "ti,omap5430-timer"; |
| 709 | reg = <0x4882a000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 710 | interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 711 | ti,hwmods = "timer14"; |
| 712 | status = "disabled"; |
| 713 | }; |
| 714 | |
| 715 | timer15: timer@4882c000 { |
| 716 | compatible = "ti,omap5430-timer"; |
| 717 | reg = <0x4882c000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 718 | interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 719 | ti,hwmods = "timer15"; |
| 720 | status = "disabled"; |
| 721 | }; |
| 722 | |
| 723 | timer16: timer@4882e000 { |
| 724 | compatible = "ti,omap5430-timer"; |
| 725 | reg = <0x4882e000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 726 | interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 727 | ti,hwmods = "timer16"; |
| 728 | status = "disabled"; |
| 729 | }; |
| 730 | |
| 731 | wdt2: wdt@4ae14000 { |
| 732 | compatible = "ti,omap4-wdt"; |
| 733 | reg = <0x4ae14000 0x80>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 734 | interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 735 | ti,hwmods = "wd_timer2"; |
| 736 | }; |
| 737 | |
Suman Anna | dbd7c19 | 2014-01-13 18:26:46 -0600 | [diff] [blame] | 738 | hwspinlock: spinlock@4a0f6000 { |
| 739 | compatible = "ti,omap4-hwspinlock"; |
| 740 | reg = <0x4a0f6000 0x1000>; |
| 741 | ti,hwmods = "spinlock"; |
| 742 | #hwlock-cells = <1>; |
| 743 | }; |
| 744 | |
Archit Taneja | 1a5fe3c | 2013-12-17 15:32:21 +0530 | [diff] [blame] | 745 | dmm@4e000000 { |
| 746 | compatible = "ti,omap5-dmm"; |
| 747 | reg = <0x4e000000 0x800>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 748 | interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>; |
Archit Taneja | 1a5fe3c | 2013-12-17 15:32:21 +0530 | [diff] [blame] | 749 | ti,hwmods = "dmm"; |
| 750 | }; |
| 751 | |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 752 | i2c1: i2c@48070000 { |
| 753 | compatible = "ti,omap4-i2c"; |
| 754 | reg = <0x48070000 0x100>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 755 | interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 756 | #address-cells = <1>; |
| 757 | #size-cells = <0>; |
| 758 | ti,hwmods = "i2c1"; |
| 759 | status = "disabled"; |
| 760 | }; |
| 761 | |
| 762 | i2c2: i2c@48072000 { |
| 763 | compatible = "ti,omap4-i2c"; |
| 764 | reg = <0x48072000 0x100>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 765 | interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 766 | #address-cells = <1>; |
| 767 | #size-cells = <0>; |
| 768 | ti,hwmods = "i2c2"; |
| 769 | status = "disabled"; |
| 770 | }; |
| 771 | |
| 772 | i2c3: i2c@48060000 { |
| 773 | compatible = "ti,omap4-i2c"; |
| 774 | reg = <0x48060000 0x100>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 775 | interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 776 | #address-cells = <1>; |
| 777 | #size-cells = <0>; |
| 778 | ti,hwmods = "i2c3"; |
| 779 | status = "disabled"; |
| 780 | }; |
| 781 | |
| 782 | i2c4: i2c@4807a000 { |
| 783 | compatible = "ti,omap4-i2c"; |
| 784 | reg = <0x4807a000 0x100>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 785 | interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 786 | #address-cells = <1>; |
| 787 | #size-cells = <0>; |
| 788 | ti,hwmods = "i2c4"; |
| 789 | status = "disabled"; |
| 790 | }; |
| 791 | |
| 792 | i2c5: i2c@4807c000 { |
| 793 | compatible = "ti,omap4-i2c"; |
| 794 | reg = <0x4807c000 0x100>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 795 | interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 796 | #address-cells = <1>; |
| 797 | #size-cells = <0>; |
| 798 | ti,hwmods = "i2c5"; |
| 799 | status = "disabled"; |
| 800 | }; |
| 801 | |
| 802 | mmc1: mmc@4809c000 { |
| 803 | compatible = "ti,omap4-hsmmc"; |
| 804 | reg = <0x4809c000 0x400>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 805 | interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 806 | ti,hwmods = "mmc1"; |
| 807 | ti,dual-volt; |
| 808 | ti,needs-special-reset; |
| 809 | dmas = <&sdma 61>, <&sdma 62>; |
| 810 | dma-names = "tx", "rx"; |
| 811 | status = "disabled"; |
Balaji T K | cd042fe | 2014-02-19 20:26:40 +0530 | [diff] [blame] | 812 | pbias-supply = <&pbias_mmc_reg>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 813 | }; |
| 814 | |
| 815 | mmc2: mmc@480b4000 { |
| 816 | compatible = "ti,omap4-hsmmc"; |
| 817 | reg = <0x480b4000 0x400>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 818 | interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 819 | ti,hwmods = "mmc2"; |
| 820 | ti,needs-special-reset; |
| 821 | dmas = <&sdma 47>, <&sdma 48>; |
| 822 | dma-names = "tx", "rx"; |
| 823 | status = "disabled"; |
| 824 | }; |
| 825 | |
| 826 | mmc3: mmc@480ad000 { |
| 827 | compatible = "ti,omap4-hsmmc"; |
| 828 | reg = <0x480ad000 0x400>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 829 | interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 830 | ti,hwmods = "mmc3"; |
| 831 | ti,needs-special-reset; |
| 832 | dmas = <&sdma 77>, <&sdma 78>; |
| 833 | dma-names = "tx", "rx"; |
| 834 | status = "disabled"; |
| 835 | }; |
| 836 | |
| 837 | mmc4: mmc@480d1000 { |
| 838 | compatible = "ti,omap4-hsmmc"; |
| 839 | reg = <0x480d1000 0x400>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 840 | interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 841 | ti,hwmods = "mmc4"; |
| 842 | ti,needs-special-reset; |
| 843 | dmas = <&sdma 57>, <&sdma 58>; |
| 844 | dma-names = "tx", "rx"; |
| 845 | status = "disabled"; |
| 846 | }; |
| 847 | |
Nishanth Menon | a1b8ee1 | 2014-03-03 20:20:23 +0530 | [diff] [blame] | 848 | abb_mpu: regulator-abb-mpu { |
| 849 | compatible = "ti,abb-v3"; |
| 850 | regulator-name = "abb_mpu"; |
| 851 | #address-cells = <0>; |
| 852 | #size-cells = <0>; |
| 853 | clocks = <&sys_clkin1>; |
| 854 | ti,settling-time = <50>; |
| 855 | ti,clock-cycles = <16>; |
| 856 | |
| 857 | reg = <0x4ae07ddc 0x4>, <0x4ae07de0 0x4>, |
| 858 | <0x4ae06014 0x4>, <0x4a003b20 0x8>, |
| 859 | <0x4ae0c158 0x4>; |
| 860 | reg-names = "setup-address", "control-address", |
| 861 | "int-address", "efuse-address", |
| 862 | "ldo-address"; |
| 863 | ti,tranxdone-status-mask = <0x80>; |
| 864 | /* LDOVBBMPU_FBB_MUX_CTRL */ |
| 865 | ti,ldovbb-override-mask = <0x400>; |
| 866 | /* LDOVBBMPU_FBB_VSET_OUT */ |
| 867 | ti,ldovbb-vset-mask = <0x1F>; |
| 868 | |
| 869 | /* |
| 870 | * NOTE: only FBB mode used but actual vset will |
| 871 | * determine final biasing |
| 872 | */ |
| 873 | ti,abb_info = < |
| 874 | /*uV ABB efuse rbb_m fbb_m vset_m*/ |
| 875 | 1060000 0 0x0 0 0x02000000 0x01F00000 |
| 876 | 1160000 0 0x4 0 0x02000000 0x01F00000 |
| 877 | 1210000 0 0x8 0 0x02000000 0x01F00000 |
| 878 | >; |
| 879 | }; |
| 880 | |
| 881 | abb_ivahd: regulator-abb-ivahd { |
| 882 | compatible = "ti,abb-v3"; |
| 883 | regulator-name = "abb_ivahd"; |
| 884 | #address-cells = <0>; |
| 885 | #size-cells = <0>; |
| 886 | clocks = <&sys_clkin1>; |
| 887 | ti,settling-time = <50>; |
| 888 | ti,clock-cycles = <16>; |
| 889 | |
| 890 | reg = <0x4ae07e34 0x4>, <0x4ae07e24 0x4>, |
| 891 | <0x4ae06010 0x4>, <0x4a0025cc 0x8>, |
| 892 | <0x4a002470 0x4>; |
| 893 | reg-names = "setup-address", "control-address", |
| 894 | "int-address", "efuse-address", |
| 895 | "ldo-address"; |
| 896 | ti,tranxdone-status-mask = <0x40000000>; |
| 897 | /* LDOVBBIVA_FBB_MUX_CTRL */ |
| 898 | ti,ldovbb-override-mask = <0x400>; |
| 899 | /* LDOVBBIVA_FBB_VSET_OUT */ |
| 900 | ti,ldovbb-vset-mask = <0x1F>; |
| 901 | |
| 902 | /* |
| 903 | * NOTE: only FBB mode used but actual vset will |
| 904 | * determine final biasing |
| 905 | */ |
| 906 | ti,abb_info = < |
| 907 | /*uV ABB efuse rbb_m fbb_m vset_m*/ |
| 908 | 1055000 0 0x0 0 0x02000000 0x01F00000 |
| 909 | 1150000 0 0x4 0 0x02000000 0x01F00000 |
| 910 | 1250000 0 0x8 0 0x02000000 0x01F00000 |
| 911 | >; |
| 912 | }; |
| 913 | |
| 914 | abb_dspeve: regulator-abb-dspeve { |
| 915 | compatible = "ti,abb-v3"; |
| 916 | regulator-name = "abb_dspeve"; |
| 917 | #address-cells = <0>; |
| 918 | #size-cells = <0>; |
| 919 | clocks = <&sys_clkin1>; |
| 920 | ti,settling-time = <50>; |
| 921 | ti,clock-cycles = <16>; |
| 922 | |
| 923 | reg = <0x4ae07e30 0x4>, <0x4ae07e20 0x4>, |
| 924 | <0x4ae06010 0x4>, <0x4a0025e0 0x8>, |
| 925 | <0x4a00246c 0x4>; |
| 926 | reg-names = "setup-address", "control-address", |
| 927 | "int-address", "efuse-address", |
| 928 | "ldo-address"; |
| 929 | ti,tranxdone-status-mask = <0x20000000>; |
| 930 | /* LDOVBBDSPEVE_FBB_MUX_CTRL */ |
| 931 | ti,ldovbb-override-mask = <0x400>; |
| 932 | /* LDOVBBDSPEVE_FBB_VSET_OUT */ |
| 933 | ti,ldovbb-vset-mask = <0x1F>; |
| 934 | |
| 935 | /* |
| 936 | * NOTE: only FBB mode used but actual vset will |
| 937 | * determine final biasing |
| 938 | */ |
| 939 | ti,abb_info = < |
| 940 | /*uV ABB efuse rbb_m fbb_m vset_m*/ |
| 941 | 1055000 0 0x0 0 0x02000000 0x01F00000 |
| 942 | 1150000 0 0x4 0 0x02000000 0x01F00000 |
| 943 | 1250000 0 0x8 0 0x02000000 0x01F00000 |
| 944 | >; |
| 945 | }; |
| 946 | |
| 947 | abb_gpu: regulator-abb-gpu { |
| 948 | compatible = "ti,abb-v3"; |
| 949 | regulator-name = "abb_gpu"; |
| 950 | #address-cells = <0>; |
| 951 | #size-cells = <0>; |
| 952 | clocks = <&sys_clkin1>; |
| 953 | ti,settling-time = <50>; |
| 954 | ti,clock-cycles = <16>; |
| 955 | |
| 956 | reg = <0x4ae07de4 0x4>, <0x4ae07de8 0x4>, |
| 957 | <0x4ae06010 0x4>, <0x4a003b08 0x8>, |
| 958 | <0x4ae0c154 0x4>; |
| 959 | reg-names = "setup-address", "control-address", |
| 960 | "int-address", "efuse-address", |
| 961 | "ldo-address"; |
| 962 | ti,tranxdone-status-mask = <0x10000000>; |
| 963 | /* LDOVBBGPU_FBB_MUX_CTRL */ |
| 964 | ti,ldovbb-override-mask = <0x400>; |
| 965 | /* LDOVBBGPU_FBB_VSET_OUT */ |
| 966 | ti,ldovbb-vset-mask = <0x1F>; |
| 967 | |
| 968 | /* |
| 969 | * NOTE: only FBB mode used but actual vset will |
| 970 | * determine final biasing |
| 971 | */ |
| 972 | ti,abb_info = < |
| 973 | /*uV ABB efuse rbb_m fbb_m vset_m*/ |
| 974 | 1090000 0 0x0 0 0x02000000 0x01F00000 |
| 975 | 1210000 0 0x4 0 0x02000000 0x01F00000 |
| 976 | 1280000 0 0x8 0 0x02000000 0x01F00000 |
| 977 | >; |
| 978 | }; |
| 979 | |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 980 | mcspi1: spi@48098000 { |
| 981 | compatible = "ti,omap4-mcspi"; |
| 982 | reg = <0x48098000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 983 | interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 984 | #address-cells = <1>; |
| 985 | #size-cells = <0>; |
| 986 | ti,hwmods = "mcspi1"; |
| 987 | ti,spi-num-cs = <4>; |
| 988 | dmas = <&sdma 35>, |
| 989 | <&sdma 36>, |
| 990 | <&sdma 37>, |
| 991 | <&sdma 38>, |
| 992 | <&sdma 39>, |
| 993 | <&sdma 40>, |
| 994 | <&sdma 41>, |
| 995 | <&sdma 42>; |
| 996 | dma-names = "tx0", "rx0", "tx1", "rx1", |
| 997 | "tx2", "rx2", "tx3", "rx3"; |
| 998 | status = "disabled"; |
| 999 | }; |
| 1000 | |
| 1001 | mcspi2: spi@4809a000 { |
| 1002 | compatible = "ti,omap4-mcspi"; |
| 1003 | reg = <0x4809a000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1004 | interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 1005 | #address-cells = <1>; |
| 1006 | #size-cells = <0>; |
| 1007 | ti,hwmods = "mcspi2"; |
| 1008 | ti,spi-num-cs = <2>; |
| 1009 | dmas = <&sdma 43>, |
| 1010 | <&sdma 44>, |
| 1011 | <&sdma 45>, |
| 1012 | <&sdma 46>; |
| 1013 | dma-names = "tx0", "rx0", "tx1", "rx1"; |
| 1014 | status = "disabled"; |
| 1015 | }; |
| 1016 | |
| 1017 | mcspi3: spi@480b8000 { |
| 1018 | compatible = "ti,omap4-mcspi"; |
| 1019 | reg = <0x480b8000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1020 | interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 1021 | #address-cells = <1>; |
| 1022 | #size-cells = <0>; |
| 1023 | ti,hwmods = "mcspi3"; |
| 1024 | ti,spi-num-cs = <2>; |
| 1025 | dmas = <&sdma 15>, <&sdma 16>; |
| 1026 | dma-names = "tx0", "rx0"; |
| 1027 | status = "disabled"; |
| 1028 | }; |
| 1029 | |
| 1030 | mcspi4: spi@480ba000 { |
| 1031 | compatible = "ti,omap4-mcspi"; |
| 1032 | reg = <0x480ba000 0x200>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1033 | interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 1034 | #address-cells = <1>; |
| 1035 | #size-cells = <0>; |
| 1036 | ti,hwmods = "mcspi4"; |
| 1037 | ti,spi-num-cs = <1>; |
| 1038 | dmas = <&sdma 70>, <&sdma 71>; |
| 1039 | dma-names = "tx0", "rx0"; |
| 1040 | status = "disabled"; |
| 1041 | }; |
Sourav Poddar | dc2dd5b | 2014-05-06 16:37:24 +0530 | [diff] [blame] | 1042 | |
| 1043 | qspi: qspi@4b300000 { |
| 1044 | compatible = "ti,dra7xxx-qspi"; |
| 1045 | reg = <0x4b300000 0x100>; |
| 1046 | reg-names = "qspi_base"; |
| 1047 | #address-cells = <1>; |
| 1048 | #size-cells = <0>; |
| 1049 | ti,hwmods = "qspi"; |
| 1050 | clocks = <&qspi_gfclk_div>; |
| 1051 | clock-names = "fck"; |
| 1052 | num-cs = <4>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1053 | interrupts = <GIC_SPI 343 IRQ_TYPE_LEVEL_HIGH>; |
Sourav Poddar | dc2dd5b | 2014-05-06 16:37:24 +0530 | [diff] [blame] | 1054 | status = "disabled"; |
| 1055 | }; |
Balaji T K | 7be8056 | 2014-05-07 14:58:58 +0300 | [diff] [blame] | 1056 | |
| 1057 | omap_control_sata: control-phy@4a002374 { |
| 1058 | compatible = "ti,control-phy-pipe3"; |
| 1059 | reg = <0x4a002374 0x4>; |
| 1060 | reg-names = "power"; |
| 1061 | clocks = <&sys_clkin1>; |
| 1062 | clock-names = "sysclk"; |
| 1063 | }; |
| 1064 | |
| 1065 | /* OCP2SCP3 */ |
| 1066 | ocp2scp@4a090000 { |
| 1067 | compatible = "ti,omap-ocp2scp"; |
| 1068 | #address-cells = <1>; |
| 1069 | #size-cells = <1>; |
| 1070 | ranges; |
| 1071 | reg = <0x4a090000 0x20>; |
| 1072 | ti,hwmods = "ocp2scp3"; |
| 1073 | sata_phy: phy@4A096000 { |
| 1074 | compatible = "ti,phy-pipe3-sata"; |
| 1075 | reg = <0x4A096000 0x80>, /* phy_rx */ |
| 1076 | <0x4A096400 0x64>, /* phy_tx */ |
| 1077 | <0x4A096800 0x40>; /* pll_ctrl */ |
| 1078 | reg-names = "phy_rx", "phy_tx", "pll_ctrl"; |
| 1079 | ctrl-module = <&omap_control_sata>; |
| 1080 | clocks = <&sys_clkin1>; |
| 1081 | clock-names = "sysclk"; |
| 1082 | #phy-cells = <0>; |
| 1083 | }; |
Kishon Vijay Abraham I | 692df0e | 2014-07-14 16:12:22 +0530 | [diff] [blame] | 1084 | |
| 1085 | pcie1_phy: pciephy@4a094000 { |
| 1086 | compatible = "ti,phy-pipe3-pcie"; |
| 1087 | reg = <0x4a094000 0x80>, /* phy_rx */ |
| 1088 | <0x4a094400 0x64>; /* phy_tx */ |
| 1089 | reg-names = "phy_rx", "phy_tx"; |
| 1090 | ctrl-module = <&omap_control_pcie1phy>; |
| 1091 | clocks = <&dpll_pcie_ref_ck>, |
| 1092 | <&dpll_pcie_ref_m2ldo_ck>, |
| 1093 | <&optfclk_pciephy1_32khz>, |
| 1094 | <&optfclk_pciephy1_clk>, |
| 1095 | <&optfclk_pciephy1_div_clk>, |
| 1096 | <&optfclk_pciephy_div>; |
| 1097 | clock-names = "dpll_ref", "dpll_ref_m2", |
| 1098 | "wkupclk", "refclk", |
| 1099 | "div-clk", "phy-div"; |
| 1100 | #phy-cells = <0>; |
| 1101 | id = <1>; |
| 1102 | ti,hwmods = "pcie1-phy"; |
| 1103 | }; |
| 1104 | |
| 1105 | pcie2_phy: pciephy@4a095000 { |
| 1106 | compatible = "ti,phy-pipe3-pcie"; |
| 1107 | reg = <0x4a095000 0x80>, /* phy_rx */ |
| 1108 | <0x4a095400 0x64>; /* phy_tx */ |
| 1109 | reg-names = "phy_rx", "phy_tx"; |
| 1110 | ctrl-module = <&omap_control_pcie2phy>; |
| 1111 | clocks = <&dpll_pcie_ref_ck>, |
| 1112 | <&dpll_pcie_ref_m2ldo_ck>, |
| 1113 | <&optfclk_pciephy2_32khz>, |
| 1114 | <&optfclk_pciephy2_clk>, |
| 1115 | <&optfclk_pciephy2_div_clk>, |
| 1116 | <&optfclk_pciephy_div>; |
| 1117 | clock-names = "dpll_ref", "dpll_ref_m2", |
| 1118 | "wkupclk", "refclk", |
| 1119 | "div-clk", "phy-div"; |
| 1120 | #phy-cells = <0>; |
| 1121 | ti,hwmods = "pcie2-phy"; |
| 1122 | id = <2>; |
| 1123 | status = "disabled"; |
| 1124 | }; |
Balaji T K | 7be8056 | 2014-05-07 14:58:58 +0300 | [diff] [blame] | 1125 | }; |
| 1126 | |
| 1127 | sata: sata@4a141100 { |
| 1128 | compatible = "snps,dwc-ahci"; |
| 1129 | reg = <0x4a140000 0x1100>, <0x4a141100 0x7>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1130 | interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; |
Balaji T K | 7be8056 | 2014-05-07 14:58:58 +0300 | [diff] [blame] | 1131 | phys = <&sata_phy>; |
| 1132 | phy-names = "sata-phy"; |
| 1133 | clocks = <&sata_ref_clk>; |
| 1134 | ti,hwmods = "sata"; |
| 1135 | }; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1136 | |
Kishon Vijay Abraham I | d1ff66b | 2014-07-14 16:12:21 +0530 | [diff] [blame] | 1137 | omap_control_pcie1phy: control-phy@0x4a003c40 { |
| 1138 | compatible = "ti,control-phy-pcie"; |
| 1139 | reg = <0x4a003c40 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>; |
| 1140 | reg-names = "power", "control_sma", "pcie_pcs"; |
| 1141 | clocks = <&sys_clkin1>; |
| 1142 | clock-names = "sysclk"; |
| 1143 | }; |
| 1144 | |
| 1145 | omap_control_pcie2phy: control-pcie@0x4a003c44 { |
| 1146 | compatible = "ti,control-phy-pcie"; |
| 1147 | reg = <0x4a003c44 0x4>, <0x4a003c14 0x4>, <0x4a003c34 0x4>; |
| 1148 | reg-names = "power", "control_sma", "pcie_pcs"; |
| 1149 | clocks = <&sys_clkin1>; |
| 1150 | clock-names = "sysclk"; |
| 1151 | status = "disabled"; |
| 1152 | }; |
| 1153 | |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1154 | omap_control_usb2phy1: control-phy@4a002300 { |
| 1155 | compatible = "ti,control-phy-usb2"; |
| 1156 | reg = <0x4a002300 0x4>; |
| 1157 | reg-names = "power"; |
| 1158 | }; |
| 1159 | |
| 1160 | omap_control_usb3phy1: control-phy@4a002370 { |
| 1161 | compatible = "ti,control-phy-pipe3"; |
| 1162 | reg = <0x4a002370 0x4>; |
| 1163 | reg-names = "power"; |
| 1164 | }; |
| 1165 | |
| 1166 | omap_control_usb2phy2: control-phy@0x4a002e74 { |
| 1167 | compatible = "ti,control-phy-usb2-dra7"; |
| 1168 | reg = <0x4a002e74 0x4>; |
| 1169 | reg-names = "power"; |
| 1170 | }; |
| 1171 | |
| 1172 | /* OCP2SCP1 */ |
| 1173 | ocp2scp@4a080000 { |
| 1174 | compatible = "ti,omap-ocp2scp"; |
| 1175 | #address-cells = <1>; |
| 1176 | #size-cells = <1>; |
| 1177 | ranges; |
| 1178 | reg = <0x4a080000 0x20>; |
| 1179 | ti,hwmods = "ocp2scp1"; |
| 1180 | |
| 1181 | usb2_phy1: phy@4a084000 { |
| 1182 | compatible = "ti,omap-usb2"; |
| 1183 | reg = <0x4a084000 0x400>; |
| 1184 | ctrl-module = <&omap_control_usb2phy1>; |
| 1185 | clocks = <&usb_phy1_always_on_clk32k>, |
| 1186 | <&usb_otg_ss1_refclk960m>; |
| 1187 | clock-names = "wkupclk", |
| 1188 | "refclk"; |
| 1189 | #phy-cells = <0>; |
| 1190 | }; |
| 1191 | |
| 1192 | usb2_phy2: phy@4a085000 { |
| 1193 | compatible = "ti,omap-usb2"; |
| 1194 | reg = <0x4a085000 0x400>; |
| 1195 | ctrl-module = <&omap_control_usb2phy2>; |
| 1196 | clocks = <&usb_phy2_always_on_clk32k>, |
| 1197 | <&usb_otg_ss2_refclk960m>; |
| 1198 | clock-names = "wkupclk", |
| 1199 | "refclk"; |
| 1200 | #phy-cells = <0>; |
| 1201 | }; |
| 1202 | |
| 1203 | usb3_phy1: phy@4a084400 { |
| 1204 | compatible = "ti,omap-usb3"; |
| 1205 | reg = <0x4a084400 0x80>, |
| 1206 | <0x4a084800 0x64>, |
| 1207 | <0x4a084c00 0x40>; |
| 1208 | reg-names = "phy_rx", "phy_tx", "pll_ctrl"; |
| 1209 | ctrl-module = <&omap_control_usb3phy1>; |
| 1210 | clocks = <&usb_phy3_always_on_clk32k>, |
| 1211 | <&sys_clkin1>, |
| 1212 | <&usb_otg_ss1_refclk960m>; |
| 1213 | clock-names = "wkupclk", |
| 1214 | "sysclk", |
| 1215 | "refclk"; |
| 1216 | #phy-cells = <0>; |
| 1217 | }; |
| 1218 | }; |
| 1219 | |
| 1220 | omap_dwc3_1@48880000 { |
| 1221 | compatible = "ti,dwc3"; |
| 1222 | ti,hwmods = "usb_otg_ss1"; |
| 1223 | reg = <0x48880000 0x10000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1224 | interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1225 | #address-cells = <1>; |
| 1226 | #size-cells = <1>; |
| 1227 | utmi-mode = <2>; |
| 1228 | ranges; |
| 1229 | usb1: usb@48890000 { |
| 1230 | compatible = "snps,dwc3"; |
| 1231 | reg = <0x48890000 0x17000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1232 | interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1233 | phys = <&usb2_phy1>, <&usb3_phy1>; |
| 1234 | phy-names = "usb2-phy", "usb3-phy"; |
| 1235 | tx-fifo-resize; |
| 1236 | maximum-speed = "super-speed"; |
| 1237 | dr_mode = "otg"; |
| 1238 | }; |
| 1239 | }; |
| 1240 | |
| 1241 | omap_dwc3_2@488c0000 { |
| 1242 | compatible = "ti,dwc3"; |
| 1243 | ti,hwmods = "usb_otg_ss2"; |
| 1244 | reg = <0x488c0000 0x10000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1245 | interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1246 | #address-cells = <1>; |
| 1247 | #size-cells = <1>; |
| 1248 | utmi-mode = <2>; |
| 1249 | ranges; |
| 1250 | usb2: usb@488d0000 { |
| 1251 | compatible = "snps,dwc3"; |
| 1252 | reg = <0x488d0000 0x17000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1253 | interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1254 | phys = <&usb2_phy2>; |
| 1255 | phy-names = "usb2-phy"; |
| 1256 | tx-fifo-resize; |
| 1257 | maximum-speed = "high-speed"; |
| 1258 | dr_mode = "otg"; |
| 1259 | }; |
| 1260 | }; |
| 1261 | |
| 1262 | /* IRQ for DWC3_3 and DWC3_4 need IRQ crossbar */ |
| 1263 | omap_dwc3_3@48900000 { |
| 1264 | compatible = "ti,dwc3"; |
| 1265 | ti,hwmods = "usb_otg_ss3"; |
| 1266 | reg = <0x48900000 0x10000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1267 | interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1268 | #address-cells = <1>; |
| 1269 | #size-cells = <1>; |
| 1270 | utmi-mode = <2>; |
| 1271 | ranges; |
| 1272 | status = "disabled"; |
| 1273 | usb3: usb@48910000 { |
| 1274 | compatible = "snps,dwc3"; |
| 1275 | reg = <0x48910000 0x17000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1276 | interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1277 | tx-fifo-resize; |
| 1278 | maximum-speed = "high-speed"; |
| 1279 | dr_mode = "otg"; |
| 1280 | }; |
| 1281 | }; |
| 1282 | |
| 1283 | omap_dwc3_4@48940000 { |
| 1284 | compatible = "ti,dwc3"; |
| 1285 | ti,hwmods = "usb_otg_ss4"; |
| 1286 | reg = <0x48940000 0x10000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1287 | interrupts = <GIC_SPI 346 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1288 | #address-cells = <1>; |
| 1289 | #size-cells = <1>; |
| 1290 | utmi-mode = <2>; |
| 1291 | ranges; |
| 1292 | status = "disabled"; |
| 1293 | usb4: usb@48950000 { |
| 1294 | compatible = "snps,dwc3"; |
| 1295 | reg = <0x48950000 0x17000>; |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1296 | interrupts = <GIC_SPI 345 IRQ_TYPE_LEVEL_HIGH>; |
Roger Quadros | fbf3e55 | 2014-05-05 12:54:45 +0300 | [diff] [blame] | 1297 | tx-fifo-resize; |
| 1298 | maximum-speed = "high-speed"; |
| 1299 | dr_mode = "otg"; |
| 1300 | }; |
| 1301 | }; |
Minal Shah | ff66a3c | 2014-05-19 14:45:47 +0530 | [diff] [blame] | 1302 | |
| 1303 | elm: elm@48078000 { |
| 1304 | compatible = "ti,am3352-elm"; |
| 1305 | reg = <0x48078000 0xfc0>; /* device IO registers */ |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1306 | interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>; |
Minal Shah | ff66a3c | 2014-05-19 14:45:47 +0530 | [diff] [blame] | 1307 | ti,hwmods = "elm"; |
| 1308 | status = "disabled"; |
| 1309 | }; |
| 1310 | |
| 1311 | gpmc: gpmc@50000000 { |
| 1312 | compatible = "ti,am3352-gpmc"; |
| 1313 | ti,hwmods = "gpmc"; |
| 1314 | reg = <0x50000000 0x37c>; /* device IO registers */ |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1315 | interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>; |
Minal Shah | ff66a3c | 2014-05-19 14:45:47 +0530 | [diff] [blame] | 1316 | gpmc,num-cs = <8>; |
| 1317 | gpmc,num-waitpins = <2>; |
| 1318 | #address-cells = <2>; |
| 1319 | #size-cells = <1>; |
| 1320 | status = "disabled"; |
| 1321 | }; |
Peter Ujfalusi | 2ca0945 | 2014-05-07 13:20:48 +0300 | [diff] [blame] | 1322 | |
| 1323 | atl: atl@4843c000 { |
| 1324 | compatible = "ti,dra7-atl"; |
| 1325 | reg = <0x4843c000 0x3ff>; |
| 1326 | ti,hwmods = "atl"; |
| 1327 | ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>, |
| 1328 | <&atl_clkin2_ck>, <&atl_clkin3_ck>; |
| 1329 | clocks = <&atl_gfclk_mux>; |
| 1330 | clock-names = "fck"; |
| 1331 | status = "disabled"; |
| 1332 | }; |
Olof Johansson | 412a9bb | 2014-07-18 22:16:15 -0700 | [diff] [blame] | 1333 | |
R Sricharan | a46631c | 2014-06-26 12:55:31 +0530 | [diff] [blame] | 1334 | crossbar_mpu: crossbar@4a020000 { |
| 1335 | compatible = "ti,irq-crossbar"; |
| 1336 | reg = <0x4a002a48 0x130>; |
| 1337 | ti,max-irqs = <160>; |
| 1338 | ti,max-crossbar-sources = <MAX_SOURCES>; |
| 1339 | ti,reg-size = <2>; |
| 1340 | ti,irqs-reserved = <0 1 2 3 5 6 131 132>; |
| 1341 | ti,irqs-skip = <10 133 139 140>; |
| 1342 | ti,irqs-safe-map = <0>; |
| 1343 | }; |
R Sricharan | 6e58b8f | 2013-08-14 19:08:20 +0530 | [diff] [blame] | 1344 | }; |
| 1345 | }; |
Tero Kristo | ee6c750 | 2013-07-18 17:18:33 +0300 | [diff] [blame] | 1346 | |
| 1347 | /include/ "dra7xx-clocks.dtsi" |