Tom Rini | 8b0c8a1 | 2018-05-06 18:27:01 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ OR X11 |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 2 | /* |
| 3 | * NXP ls1088a SOC common device tree source |
| 4 | * |
Ioana Ciornei | f86ce81 | 2023-03-15 13:04:11 +0200 | [diff] [blame] | 5 | * Copyright 2017, 2020-2021, 2023 NXP |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 6 | */ |
| 7 | |
Ioana Ciornei | f86ce81 | 2023-03-15 13:04:11 +0200 | [diff] [blame] | 8 | #include <dt-bindings/clock/fsl,qoriq-clockgen.h> |
Biwen Li | 0f42d06 | 2021-02-05 19:01:53 +0800 | [diff] [blame] | 9 | #include <dt-bindings/interrupt-controller/arm-gic.h> |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 10 | / { |
| 11 | compatible = "fsl,ls1088a"; |
| 12 | interrupt-parent = <&gic>; |
| 13 | #address-cells = <2>; |
| 14 | #size-cells = <2>; |
| 15 | |
Mathew McBride | 28bb934 | 2023-04-12 07:38:21 +0000 | [diff] [blame] | 16 | cpus { |
| 17 | #address-cells = <1>; |
| 18 | #size-cells = <0>; |
| 19 | |
| 20 | /* We have 2 clusters having 4 Cortex-A53 cores each */ |
| 21 | cpu0: cpu@0 { |
| 22 | device_type = "cpu"; |
| 23 | compatible = "arm,cortex-a53"; |
| 24 | reg = <0x0>; |
| 25 | clocks = <&clockgen QORIQ_CLK_CMUX 0>; |
| 26 | cpu-idle-states = <&CPU_PH20>; |
| 27 | #cooling-cells = <2>; |
| 28 | }; |
| 29 | |
| 30 | cpu1: cpu@1 { |
| 31 | device_type = "cpu"; |
| 32 | compatible = "arm,cortex-a53"; |
| 33 | reg = <0x1>; |
| 34 | clocks = <&clockgen QORIQ_CLK_CMUX 0>; |
| 35 | cpu-idle-states = <&CPU_PH20>; |
| 36 | #cooling-cells = <2>; |
| 37 | }; |
| 38 | |
| 39 | cpu2: cpu@2 { |
| 40 | device_type = "cpu"; |
| 41 | compatible = "arm,cortex-a53"; |
| 42 | reg = <0x2>; |
| 43 | clocks = <&clockgen QORIQ_CLK_CMUX 0>; |
| 44 | cpu-idle-states = <&CPU_PH20>; |
| 45 | #cooling-cells = <2>; |
| 46 | }; |
| 47 | |
| 48 | cpu3: cpu@3 { |
| 49 | device_type = "cpu"; |
| 50 | compatible = "arm,cortex-a53"; |
| 51 | reg = <0x3>; |
| 52 | clocks = <&clockgen QORIQ_CLK_CMUX 0>; |
| 53 | cpu-idle-states = <&CPU_PH20>; |
| 54 | #cooling-cells = <2>; |
| 55 | }; |
| 56 | |
| 57 | cpu4: cpu@100 { |
| 58 | device_type = "cpu"; |
| 59 | compatible = "arm,cortex-a53"; |
| 60 | reg = <0x100>; |
| 61 | clocks = <&clockgen QORIQ_CLK_CMUX 1>; |
| 62 | cpu-idle-states = <&CPU_PH20>; |
| 63 | #cooling-cells = <2>; |
| 64 | }; |
| 65 | |
| 66 | cpu5: cpu@101 { |
| 67 | device_type = "cpu"; |
| 68 | compatible = "arm,cortex-a53"; |
| 69 | reg = <0x101>; |
| 70 | clocks = <&clockgen QORIQ_CLK_CMUX 1>; |
| 71 | cpu-idle-states = <&CPU_PH20>; |
| 72 | #cooling-cells = <2>; |
| 73 | }; |
| 74 | |
| 75 | cpu6: cpu@102 { |
| 76 | device_type = "cpu"; |
| 77 | compatible = "arm,cortex-a53"; |
| 78 | reg = <0x102>; |
| 79 | clocks = <&clockgen QORIQ_CLK_CMUX 1>; |
| 80 | cpu-idle-states = <&CPU_PH20>; |
| 81 | #cooling-cells = <2>; |
| 82 | }; |
| 83 | |
| 84 | cpu7: cpu@103 { |
| 85 | device_type = "cpu"; |
| 86 | compatible = "arm,cortex-a53"; |
| 87 | reg = <0x103>; |
| 88 | clocks = <&clockgen QORIQ_CLK_CMUX 1>; |
| 89 | cpu-idle-states = <&CPU_PH20>; |
| 90 | #cooling-cells = <2>; |
| 91 | }; |
| 92 | |
| 93 | CPU_PH20: cpu-ph20 { |
| 94 | compatible = "arm,idle-state"; |
| 95 | idle-state-name = "PH20"; |
| 96 | arm,psci-suspend-param = <0x0>; |
| 97 | entry-latency-us = <1000>; |
| 98 | exit-latency-us = <1000>; |
| 99 | min-residency-us = <3000>; |
| 100 | }; |
| 101 | }; |
| 102 | |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 103 | gic: interrupt-controller@6000000 { |
| 104 | compatible = "arm,gic-v3"; |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 105 | #interrupt-cells = <3>; |
| 106 | interrupt-controller; |
Mathew McBride | f6b411d | 2023-04-12 07:38:18 +0000 | [diff] [blame] | 107 | reg = <0x0 0x06000000 0 0x10000>, /* GIC Dist */ |
| 108 | <0x0 0x06100000 0 0x100000>, /* GICR(RD_base+SGI_base)*/ |
| 109 | <0x0 0x0c0c0000 0 0x2000>, /* GICC */ |
| 110 | <0x0 0x0c0d0000 0 0x1000>, /* GICH */ |
| 111 | <0x0 0x0c0e0000 0 0x20000>; /* GICV */ |
| 112 | interrupts = <1 9 IRQ_TYPE_LEVEL_HIGH>; |
| 113 | #address-cells = <2>; |
| 114 | #size-cells = <2>; |
| 115 | ranges; |
| 116 | |
| 117 | its: gic-its@6020000 { |
| 118 | compatible = "arm,gic-v3-its"; |
| 119 | msi-controller; |
| 120 | reg = <0x0 0x6020000 0 0x20000>; |
| 121 | }; |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | timer { |
| 125 | compatible = "arm,armv8-timer"; |
| 126 | interrupts = <1 13 0x8>, /* Physical Secure PPI, active-low */ |
| 127 | <1 14 0x8>, /* Physical Non-Secure PPI, active-low */ |
| 128 | <1 11 0x8>, /* Virtual PPI, active-low */ |
| 129 | <1 10 0x8>; /* Hypervisor PPI, active-low */ |
| 130 | }; |
| 131 | |
Ioana Ciornei | f86ce81 | 2023-03-15 13:04:11 +0200 | [diff] [blame] | 132 | sysclk: sysclk { |
| 133 | compatible = "fixed-clock"; |
| 134 | #clock-cells = <0>; |
| 135 | clock-frequency = <100000000>; |
| 136 | clock-output-names = "sysclk"; |
| 137 | }; |
| 138 | |
Ioana Ciornei | 923de4e | 2023-03-15 13:04:09 +0200 | [diff] [blame] | 139 | soc { |
| 140 | compatible = "simple-bus"; |
| 141 | #address-cells = <2>; |
| 142 | #size-cells = <2>; |
| 143 | ranges; |
| 144 | dma-ranges = <0x0 0x0 0x0 0x0 0x10000 0x00000000>; |
| 145 | |
Ioana Ciornei | f86ce81 | 2023-03-15 13:04:11 +0200 | [diff] [blame] | 146 | clockgen: clocking@1300000 { |
| 147 | compatible = "fsl,ls1088a-clockgen"; |
| 148 | reg = <0 0x1300000 0 0xa0000>; |
| 149 | #clock-cells = <2>; |
| 150 | clocks = <&sysclk>; |
| 151 | }; |
| 152 | |
| 153 | duart0: serial@21c0500 { |
Ioana Ciornei | 006bd1b | 2023-03-15 13:04:10 +0200 | [diff] [blame] | 154 | compatible = "fsl,ns16550", "ns16550a"; |
| 155 | reg = <0x0 0x21c0500 0x0 0x100>; |
Ioana Ciornei | f86ce81 | 2023-03-15 13:04:11 +0200 | [diff] [blame] | 156 | clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL |
| 157 | QORIQ_CLK_PLL_DIV(4)>; |
| 158 | interrupts = <0 32 IRQ_TYPE_LEVEL_HIGH>; |
| 159 | status = "disabled"; |
Ioana Ciornei | 006bd1b | 2023-03-15 13:04:10 +0200 | [diff] [blame] | 160 | }; |
| 161 | |
Ioana Ciornei | f86ce81 | 2023-03-15 13:04:11 +0200 | [diff] [blame] | 162 | duart1: serial@21c0600 { |
Ioana Ciornei | 006bd1b | 2023-03-15 13:04:10 +0200 | [diff] [blame] | 163 | compatible = "fsl,ns16550", "ns16550a"; |
| 164 | reg = <0x0 0x21c0600 0x0 0x100>; |
Ioana Ciornei | f86ce81 | 2023-03-15 13:04:11 +0200 | [diff] [blame] | 165 | clocks = <&clockgen QORIQ_CLK_PLATFORM_PLL |
| 166 | QORIQ_CLK_PLL_DIV(4)>; |
| 167 | interrupts = <0 32 IRQ_TYPE_LEVEL_HIGH>; |
| 168 | status = "disabled"; |
Ioana Ciornei | 006bd1b | 2023-03-15 13:04:10 +0200 | [diff] [blame] | 169 | }; |
Mathew McBride | f6b411d | 2023-04-12 07:38:18 +0000 | [diff] [blame] | 170 | |
Mathew McBride | 6ba7e72 | 2023-04-12 07:38:22 +0000 | [diff] [blame^] | 171 | gpio0: gpio@2300000 { |
| 172 | compatible = "fsl,ls1088a-gpio", "fsl,qoriq-gpio"; |
| 173 | reg = <0x0 0x2300000 0x0 0x10000>; |
| 174 | interrupts = <0 36 IRQ_TYPE_LEVEL_HIGH>; |
| 175 | little-endian; |
| 176 | gpio-controller; |
| 177 | #gpio-cells = <2>; |
| 178 | interrupt-controller; |
| 179 | #interrupt-cells = <2>; |
| 180 | }; |
| 181 | |
| 182 | gpio1: gpio@2310000 { |
| 183 | compatible = "fsl,ls1088a-gpio", "fsl,qoriq-gpio"; |
| 184 | reg = <0x0 0x2310000 0x0 0x10000>; |
| 185 | interrupts = <0 36 IRQ_TYPE_LEVEL_HIGH>; |
| 186 | little-endian; |
| 187 | gpio-controller; |
| 188 | #gpio-cells = <2>; |
| 189 | interrupt-controller; |
| 190 | #interrupt-cells = <2>; |
| 191 | }; |
| 192 | |
| 193 | gpio2: gpio@2320000 { |
| 194 | compatible = "fsl,ls1088a-gpio", "fsl,qoriq-gpio"; |
| 195 | reg = <0x0 0x2320000 0x0 0x10000>; |
| 196 | interrupts = <0 37 IRQ_TYPE_LEVEL_HIGH>; |
| 197 | little-endian; |
| 198 | gpio-controller; |
| 199 | #gpio-cells = <2>; |
| 200 | interrupt-controller; |
| 201 | #interrupt-cells = <2>; |
| 202 | }; |
| 203 | |
| 204 | gpio3: gpio@2330000 { |
| 205 | compatible = "fsl,ls1088a-gpio", "fsl,qoriq-gpio"; |
| 206 | reg = <0x0 0x2330000 0x0 0x10000>; |
| 207 | interrupts = <0 37 IRQ_TYPE_LEVEL_HIGH>; |
| 208 | little-endian; |
| 209 | gpio-controller; |
| 210 | #gpio-cells = <2>; |
| 211 | interrupt-controller; |
| 212 | #interrupt-cells = <2>; |
| 213 | }; |
| 214 | |
Mathew McBride | cb6a659 | 2023-04-12 07:38:19 +0000 | [diff] [blame] | 215 | pcie1: pcie@3400000 { |
| 216 | compatible = "fsl,ls1088a-pcie"; |
| 217 | reg = <0x00 0x03400000 0x0 0x00100000>, /* controller registers */ |
| 218 | <0x20 0x00000000 0x0 0x00002000>; /* configuration space */ |
| 219 | reg-names = "regs", "config"; |
| 220 | interrupts = <0 108 IRQ_TYPE_LEVEL_HIGH>; /* aer interrupt */ |
| 221 | interrupt-names = "aer"; |
| 222 | #address-cells = <3>; |
| 223 | #size-cells = <2>; |
| 224 | device_type = "pci"; |
| 225 | dma-coherent; |
| 226 | num-viewport = <256>; |
| 227 | bus-range = <0x0 0xff>; |
| 228 | ranges = <0x81000000 0x0 0x00000000 0x20 0x00010000 0x0 0x00010000 /* downstream I/O */ |
| 229 | 0x82000000 0x0 0x40000000 0x20 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */ |
| 230 | msi-parent = <&its>; |
| 231 | #interrupt-cells = <1>; |
| 232 | interrupt-map-mask = <0 0 0 7>; |
| 233 | interrupt-map = <0000 0 0 1 &gic 0 0 0 109 IRQ_TYPE_LEVEL_HIGH>, |
| 234 | <0000 0 0 2 &gic 0 0 0 110 IRQ_TYPE_LEVEL_HIGH>, |
| 235 | <0000 0 0 3 &gic 0 0 0 111 IRQ_TYPE_LEVEL_HIGH>, |
| 236 | <0000 0 0 4 &gic 0 0 0 112 IRQ_TYPE_LEVEL_HIGH>; |
| 237 | iommu-map = <0 &smmu 0 1>; /* Fixed-up by bootloader */ |
Mathew McBride | 510b988 | 2023-04-12 07:38:20 +0000 | [diff] [blame] | 238 | status = "disabled"; |
Mathew McBride | cb6a659 | 2023-04-12 07:38:19 +0000 | [diff] [blame] | 239 | }; |
| 240 | |
| 241 | pcie_ep1: pcie-ep@3400000 { |
| 242 | compatible = "fsl,ls1088a-pcie-ep", "fsl,ls-pcie-ep"; |
| 243 | reg = <0x00 0x03400000 0x0 0x00100000>, |
| 244 | <0x20 0x00000000 0x8 0x00000000>; |
| 245 | reg-names = "regs", "addr_space"; |
| 246 | num-ib-windows = <24>; |
| 247 | num-ob-windows = <256>; |
| 248 | max-functions = /bits/ 8 <2>; |
| 249 | status = "disabled"; |
| 250 | }; |
| 251 | |
| 252 | pcie2: pcie@3500000 { |
| 253 | compatible = "fsl,ls1088a-pcie"; |
| 254 | reg = <0x00 0x03500000 0x0 0x00100000>, /* controller registers */ |
| 255 | <0x28 0x00000000 0x0 0x00002000>; /* configuration space */ |
| 256 | reg-names = "regs", "config"; |
| 257 | interrupts = <0 113 IRQ_TYPE_LEVEL_HIGH>; /* aer interrupt */ |
| 258 | interrupt-names = "aer"; |
| 259 | #address-cells = <3>; |
| 260 | #size-cells = <2>; |
| 261 | device_type = "pci"; |
| 262 | dma-coherent; |
| 263 | num-viewport = <6>; |
| 264 | bus-range = <0x0 0xff>; |
| 265 | ranges = <0x81000000 0x0 0x00000000 0x28 0x00010000 0x0 0x00010000 /* downstream I/O */ |
| 266 | 0x82000000 0x0 0x40000000 0x28 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */ |
| 267 | msi-parent = <&its>; |
| 268 | #interrupt-cells = <1>; |
| 269 | interrupt-map-mask = <0 0 0 7>; |
| 270 | interrupt-map = <0000 0 0 1 &gic 0 0 0 114 IRQ_TYPE_LEVEL_HIGH>, |
| 271 | <0000 0 0 2 &gic 0 0 0 115 IRQ_TYPE_LEVEL_HIGH>, |
| 272 | <0000 0 0 3 &gic 0 0 0 116 IRQ_TYPE_LEVEL_HIGH>, |
| 273 | <0000 0 0 4 &gic 0 0 0 117 IRQ_TYPE_LEVEL_HIGH>; |
| 274 | iommu-map = <0 &smmu 0 1>; /* Fixed-up by bootloader */ |
Mathew McBride | 510b988 | 2023-04-12 07:38:20 +0000 | [diff] [blame] | 275 | status = "disabled"; |
Mathew McBride | cb6a659 | 2023-04-12 07:38:19 +0000 | [diff] [blame] | 276 | }; |
| 277 | |
| 278 | pcie_ep2: pcie-ep@3500000 { |
| 279 | compatible = "fsl,ls1088a-pcie-ep", "fsl,ls-pcie-ep"; |
| 280 | reg = <0x00 0x03500000 0x0 0x00100000>, |
| 281 | <0x28 0x00000000 0x8 0x00000000>; |
| 282 | reg-names = "regs", "addr_space"; |
| 283 | num-ib-windows = <6>; |
| 284 | num-ob-windows = <6>; |
| 285 | status = "disabled"; |
| 286 | }; |
| 287 | |
| 288 | pcie3: pcie@3600000 { |
| 289 | compatible = "fsl,ls1088a-pcie"; |
| 290 | reg = <0x00 0x03600000 0x0 0x00100000>, /* controller registers */ |
| 291 | <0x30 0x00000000 0x0 0x00002000>; /* configuration space */ |
| 292 | reg-names = "regs", "config"; |
| 293 | interrupts = <0 118 IRQ_TYPE_LEVEL_HIGH>; /* aer interrupt */ |
| 294 | interrupt-names = "aer"; |
| 295 | #address-cells = <3>; |
| 296 | #size-cells = <2>; |
| 297 | device_type = "pci"; |
| 298 | dma-coherent; |
| 299 | num-viewport = <6>; |
| 300 | bus-range = <0x0 0xff>; |
| 301 | ranges = <0x81000000 0x0 0x00000000 0x30 0x00010000 0x0 0x00010000 /* downstream I/O */ |
| 302 | 0x82000000 0x0 0x40000000 0x30 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */ |
| 303 | msi-parent = <&its>; |
| 304 | #interrupt-cells = <1>; |
| 305 | interrupt-map-mask = <0 0 0 7>; |
| 306 | interrupt-map = <0000 0 0 1 &gic 0 0 0 119 IRQ_TYPE_LEVEL_HIGH>, |
| 307 | <0000 0 0 2 &gic 0 0 0 120 IRQ_TYPE_LEVEL_HIGH>, |
| 308 | <0000 0 0 3 &gic 0 0 0 121 IRQ_TYPE_LEVEL_HIGH>, |
| 309 | <0000 0 0 4 &gic 0 0 0 122 IRQ_TYPE_LEVEL_HIGH>; |
| 310 | iommu-map = <0 &smmu 0 1>; /* Fixed-up by bootloader */ |
Mathew McBride | 510b988 | 2023-04-12 07:38:20 +0000 | [diff] [blame] | 311 | status = "disabled"; |
Mathew McBride | cb6a659 | 2023-04-12 07:38:19 +0000 | [diff] [blame] | 312 | }; |
| 313 | |
| 314 | pcie_ep3: pcie-ep@3600000 { |
| 315 | compatible = "fsl,ls1088a-pcie-ep", "fsl,ls-pcie-ep"; |
| 316 | reg = <0x00 0x03600000 0x0 0x00100000>, |
| 317 | <0x30 0x00000000 0x8 0x00000000>; |
| 318 | reg-names = "regs", "addr_space"; |
| 319 | num-ib-windows = <6>; |
| 320 | num-ob-windows = <6>; |
| 321 | status = "disabled"; |
| 322 | }; |
| 323 | |
Mathew McBride | f6b411d | 2023-04-12 07:38:18 +0000 | [diff] [blame] | 324 | smmu: iommu@5000000 { |
| 325 | compatible = "arm,mmu-500"; |
| 326 | reg = <0 0x5000000 0 0x800000>; |
| 327 | #iommu-cells = <1>; |
| 328 | stream-match-mask = <0x7C00>; |
| 329 | dma-coherent; |
| 330 | #global-interrupts = <12>; |
| 331 | // global secure fault |
| 332 | interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>, |
| 333 | // combined secure |
| 334 | <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>, |
| 335 | // global non-secure fault |
| 336 | <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>, |
| 337 | // combined non-secure |
| 338 | <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>, |
| 339 | // performance counter interrupts 0-7 |
| 340 | <GIC_SPI 211 IRQ_TYPE_LEVEL_HIGH>, |
| 341 | <GIC_SPI 212 IRQ_TYPE_LEVEL_HIGH>, |
| 342 | <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>, |
| 343 | <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>, |
| 344 | <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>, |
| 345 | <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>, |
| 346 | <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>, |
| 347 | <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>, |
| 348 | // per context interrupt, 64 interrupts |
| 349 | <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>, |
| 350 | <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>, |
| 351 | <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>, |
| 352 | <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>, |
| 353 | <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>, |
| 354 | <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>, |
| 355 | <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>, |
| 356 | <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>, |
| 357 | <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>, |
| 358 | <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>, |
| 359 | <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>, |
| 360 | <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>, |
| 361 | <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>, |
| 362 | <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>, |
| 363 | <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>, |
| 364 | <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>, |
| 365 | <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>, |
| 366 | <GIC_SPI 163 IRQ_TYPE_LEVEL_HIGH>, |
| 367 | <GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>, |
| 368 | <GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>, |
| 369 | <GIC_SPI 166 IRQ_TYPE_LEVEL_HIGH>, |
| 370 | <GIC_SPI 167 IRQ_TYPE_LEVEL_HIGH>, |
| 371 | <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>, |
| 372 | <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>, |
| 373 | <GIC_SPI 170 IRQ_TYPE_LEVEL_HIGH>, |
| 374 | <GIC_SPI 171 IRQ_TYPE_LEVEL_HIGH>, |
| 375 | <GIC_SPI 172 IRQ_TYPE_LEVEL_HIGH>, |
| 376 | <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>, |
| 377 | <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>, |
| 378 | <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>, |
| 379 | <GIC_SPI 176 IRQ_TYPE_LEVEL_HIGH>, |
| 380 | <GIC_SPI 177 IRQ_TYPE_LEVEL_HIGH>, |
| 381 | <GIC_SPI 178 IRQ_TYPE_LEVEL_HIGH>, |
| 382 | <GIC_SPI 179 IRQ_TYPE_LEVEL_HIGH>, |
| 383 | <GIC_SPI 180 IRQ_TYPE_LEVEL_HIGH>, |
| 384 | <GIC_SPI 181 IRQ_TYPE_LEVEL_HIGH>, |
| 385 | <GIC_SPI 182 IRQ_TYPE_LEVEL_HIGH>, |
| 386 | <GIC_SPI 183 IRQ_TYPE_LEVEL_HIGH>, |
| 387 | <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>, |
| 388 | <GIC_SPI 185 IRQ_TYPE_LEVEL_HIGH>, |
| 389 | <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>, |
| 390 | <GIC_SPI 187 IRQ_TYPE_LEVEL_HIGH>, |
| 391 | <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>, |
| 392 | <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>, |
| 393 | <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>, |
| 394 | <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>, |
| 395 | <GIC_SPI 192 IRQ_TYPE_LEVEL_HIGH>, |
| 396 | <GIC_SPI 193 IRQ_TYPE_LEVEL_HIGH>, |
| 397 | <GIC_SPI 194 IRQ_TYPE_LEVEL_HIGH>, |
| 398 | <GIC_SPI 195 IRQ_TYPE_LEVEL_HIGH>, |
| 399 | <GIC_SPI 196 IRQ_TYPE_LEVEL_HIGH>, |
| 400 | <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>, |
| 401 | <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>, |
| 402 | <GIC_SPI 199 IRQ_TYPE_LEVEL_HIGH>, |
| 403 | <GIC_SPI 200 IRQ_TYPE_LEVEL_HIGH>, |
| 404 | <GIC_SPI 201 IRQ_TYPE_LEVEL_HIGH>, |
| 405 | <GIC_SPI 202 IRQ_TYPE_LEVEL_HIGH>, |
| 406 | <GIC_SPI 203 IRQ_TYPE_LEVEL_HIGH>, |
| 407 | <GIC_SPI 204 IRQ_TYPE_LEVEL_HIGH>, |
| 408 | <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>, |
| 409 | <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>, |
| 410 | <GIC_SPI 207 IRQ_TYPE_LEVEL_HIGH>, |
| 411 | <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>, |
| 412 | <GIC_SPI 209 IRQ_TYPE_LEVEL_HIGH>; |
| 413 | }; |
Ioana Ciornei | 923de4e | 2023-03-15 13:04:09 +0200 | [diff] [blame] | 414 | }; |
| 415 | |
Chuanhua Han | 2f2767b | 2019-07-23 18:43:14 +0800 | [diff] [blame] | 416 | i2c0: i2c@2000000 { |
| 417 | compatible = "fsl,vf610-i2c"; |
| 418 | #address-cells = <1>; |
| 419 | #size-cells = <0>; |
| 420 | reg = <0x0 0x2000000 0x0 0x10000>; |
| 421 | interrupts = <0 34 4>; |
| 422 | }; |
| 423 | |
| 424 | i2c1: i2c@2010000 { |
| 425 | compatible = "fsl,vf610-i2c"; |
| 426 | #address-cells = <1>; |
| 427 | #size-cells = <0>; |
| 428 | reg = <0x0 0x2010000 0x0 0x10000>; |
| 429 | interrupts = <0 34 4>; |
| 430 | }; |
| 431 | |
| 432 | i2c2: i2c@2020000 { |
| 433 | compatible = "fsl,vf610-i2c"; |
| 434 | #address-cells = <1>; |
| 435 | #size-cells = <0>; |
| 436 | reg = <0x0 0x2020000 0x0 0x10000>; |
| 437 | interrupts = <0 35 4>; |
| 438 | }; |
| 439 | |
| 440 | i2c3: i2c@2030000 { |
| 441 | compatible = "fsl,vf610-i2c"; |
| 442 | #address-cells = <1>; |
| 443 | #size-cells = <0>; |
| 444 | reg = <0x0 0x2030000 0x0 0x10000>; |
| 445 | interrupts = <0 35 4>; |
| 446 | }; |
| 447 | |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 448 | dspi: dspi@2100000 { |
| 449 | compatible = "fsl,vf610-dspi"; |
| 450 | #address-cells = <1>; |
| 451 | #size-cells = <0>; |
| 452 | reg = <0x0 0x2100000 0x0 0x10000>; |
| 453 | interrupts = <0 26 0x4>; /* Level high type */ |
Michael Walle | 2de392c | 2021-10-13 18:14:18 +0200 | [diff] [blame] | 454 | spi-num-chipselects = <6>; |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 455 | }; |
| 456 | |
| 457 | qspi: quadspi@1550000 { |
Kuldeep Singh | 4c38087 | 2019-12-12 11:49:24 +0530 | [diff] [blame] | 458 | compatible = "fsl,ls1088a-qspi"; |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 459 | #address-cells = <1>; |
| 460 | #size-cells = <0>; |
| 461 | reg = <0x0 0x20c0000 0x0 0x10000>, |
| 462 | <0x0 0x20000000 0x0 0x10000000>; |
| 463 | reg-names = "QuadSPI", "QuadSPI-memory"; |
Kuldeep Singh | 46d908b | 2021-10-01 16:24:24 +0530 | [diff] [blame] | 464 | status = "disabled"; |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 465 | }; |
Yinbo Zhu | 26caa0e | 2018-09-25 14:47:09 +0800 | [diff] [blame] | 466 | |
| 467 | esdhc: esdhc@2140000 { |
| 468 | compatible = "fsl,esdhc"; |
| 469 | reg = <0x0 0x2140000 0x0 0x10000>; |
| 470 | interrupts = <0 28 0x4>; /* Level high type */ |
| 471 | little-endian; |
| 472 | bus-width = <4>; |
| 473 | }; |
| 474 | |
Ashish Kumar | 55fd8b9 | 2018-02-19 14:16:58 +0530 | [diff] [blame] | 475 | ifc: ifc@1530000 { |
| 476 | compatible = "fsl,ifc", "simple-bus"; |
| 477 | reg = <0x0 0x2240000 0x0 0x20000>; |
| 478 | interrupts = <0 21 0x4>; /* Level high type */ |
| 479 | }; |
Hou Zhiqiang | 6ae9a8c | 2017-09-04 10:47:53 +0800 | [diff] [blame] | 480 | |
Ran Wang | 9a43a6c | 2017-10-23 10:09:24 +0800 | [diff] [blame] | 481 | usb0: usb3@3100000 { |
| 482 | compatible = "fsl,layerscape-dwc3"; |
| 483 | reg = <0x0 0x3100000 0x0 0x10000>; |
| 484 | interrupts = <0 80 0x4>; /* Level high type */ |
| 485 | dr_mode = "host"; |
| 486 | }; |
| 487 | |
| 488 | usb1: usb3@3110000 { |
| 489 | compatible = "fsl,layerscape-dwc3"; |
| 490 | reg = <0x0 0x3110000 0x0 0x10000>; |
| 491 | interrupts = <0 81 0x4>; /* Level high type */ |
| 492 | dr_mode = "host"; |
| 493 | }; |
| 494 | |
Gaurav Jain | 994824c | 2022-03-24 11:50:34 +0530 | [diff] [blame] | 495 | crypto: crypto@8000000 { |
| 496 | compatible = "fsl,sec-v5.0", "fsl,sec-v4.0"; |
| 497 | fsl,sec-era = <8>; |
| 498 | #address-cells = <1>; |
| 499 | #size-cells = <1>; |
| 500 | ranges = <0x0 0x00 0x8000000 0x100000>; |
| 501 | reg = <0x00 0x8000000 0x0 0x100000>; |
| 502 | interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_HIGH>; |
| 503 | dma-coherent; |
| 504 | |
| 505 | sec_jr0: jr@10000 { |
| 506 | compatible = "fsl,sec-v5.0-job-ring", |
| 507 | "fsl,sec-v4.0-job-ring"; |
| 508 | reg = <0x10000 0x10000>; |
| 509 | interrupts = <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>; |
| 510 | }; |
| 511 | |
| 512 | sec_jr1: jr@20000 { |
| 513 | compatible = "fsl,sec-v5.0-job-ring", |
| 514 | "fsl,sec-v4.0-job-ring"; |
| 515 | reg = <0x20000 0x10000>; |
| 516 | interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>; |
| 517 | }; |
| 518 | |
| 519 | sec_jr2: jr@30000 { |
| 520 | compatible = "fsl,sec-v5.0-job-ring", |
| 521 | "fsl,sec-v4.0-job-ring"; |
| 522 | reg = <0x30000 0x10000>; |
| 523 | interrupts = <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>; |
| 524 | }; |
| 525 | |
| 526 | sec_jr3: jr@40000 { |
| 527 | compatible = "fsl,sec-v5.0-job-ring", |
| 528 | "fsl,sec-v4.0-job-ring"; |
| 529 | reg = <0x40000 0x10000>; |
| 530 | interrupts = <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>; |
| 531 | }; |
| 532 | }; |
| 533 | |
Peng Ma | 47ab834 | 2018-10-22 10:39:50 +0800 | [diff] [blame] | 534 | sata: sata@3200000 { |
| 535 | compatible = "fsl,ls1088a-ahci"; |
Peng Ma | e70d362 | 2019-04-17 10:10:49 +0000 | [diff] [blame] | 536 | reg = <0x0 0x3200000 0x0 0x10000 /* ccsr sata base */ |
| 537 | 0x7 0x100520 0x0 0x4>; /* ecc sata addr*/ |
Michael Walle | 0234b5f | 2021-10-13 18:14:20 +0200 | [diff] [blame] | 538 | reg-names = "ahci", "sata-ecc"; |
Peng Ma | 47ab834 | 2018-10-22 10:39:50 +0800 | [diff] [blame] | 539 | interrupts = <0 133 4>; |
| 540 | status = "disabled"; |
| 541 | }; |
| 542 | |
Mathew McBride | 505ca5d | 2019-10-18 14:27:53 +1100 | [diff] [blame] | 543 | psci { |
| 544 | compatible = "arm,psci-0.2"; |
| 545 | method = "smc"; |
| 546 | }; |
| 547 | |
Ioana Ciornei | e62ae82 | 2020-03-18 16:47:46 +0200 | [diff] [blame] | 548 | fsl_mc: fsl-mc@80c000000 { |
| 549 | compatible = "fsl,qoriq-mc", "simple-mfd"; |
| 550 | reg = <0x00000008 0x0c000000 0 0x40>, /* MC portal base */ |
| 551 | <0x00000000 0x08340000 0 0x40000>; /* MC control reg */ |
| 552 | #address-cells = <3>; |
| 553 | #size-cells = <1>; |
| 554 | |
| 555 | /* |
| 556 | * Region type 0x0 - MC portals |
| 557 | * Region type 0x1 - QBMAN portals |
| 558 | */ |
| 559 | ranges = <0x0 0x0 0x0 0x8 0x0c000000 0x4000000 |
| 560 | 0x1 0x0 0x0 0x8 0x18000000 0x8000000>; |
| 561 | |
| 562 | dpmacs { |
| 563 | compatible = "simple-mfd"; |
| 564 | #address-cells = <1>; |
| 565 | #size-cells = <0>; |
| 566 | |
| 567 | dpmac1: dpmac@1 { |
| 568 | compatible = "fsl,qoriq-mc-dpmac"; |
| 569 | reg = <0x1>; |
| 570 | status = "disabled"; |
| 571 | }; |
| 572 | |
| 573 | dpmac2: dpmac@2 { |
| 574 | compatible = "fsl,qoriq-mc-dpmac"; |
| 575 | reg = <0x2>; |
| 576 | status = "disabled"; |
| 577 | }; |
| 578 | |
| 579 | dpmac3: dpmac@3 { |
| 580 | compatible = "fsl,qoriq-mc-dpmac"; |
| 581 | reg = <0x3>; |
| 582 | status = "disabled"; |
| 583 | }; |
| 584 | |
| 585 | dpmac4: dpmac@4 { |
| 586 | compatible = "fsl,qoriq-mc-dpmac"; |
| 587 | reg = <0x4>; |
| 588 | status = "disabled"; |
| 589 | }; |
| 590 | |
| 591 | dpmac5: dpmac@5 { |
| 592 | compatible = "fsl,qoriq-mc-dpmac"; |
| 593 | reg = <0x5>; |
| 594 | status = "disabled"; |
| 595 | }; |
| 596 | |
| 597 | dpmac6: dpmac@6 { |
| 598 | compatible = "fsl,qoriq-mc-dpmac"; |
| 599 | reg = <0x6>; |
| 600 | status = "disabled"; |
| 601 | }; |
| 602 | |
| 603 | dpmac7: dpmac@7 { |
| 604 | compatible = "fsl,qoriq-mc-dpmac"; |
| 605 | reg = <0x7>; |
| 606 | status = "disabled"; |
| 607 | }; |
| 608 | |
| 609 | dpmac8: dpmac@8 { |
| 610 | compatible = "fsl,qoriq-mc-dpmac"; |
| 611 | reg = <0x8>; |
| 612 | status = "disabled"; |
| 613 | }; |
| 614 | |
| 615 | dpmac9: dpmac@9 { |
| 616 | compatible = "fsl,qoriq-mc-dpmac"; |
| 617 | reg = <0x9>; |
| 618 | status = "disabled"; |
| 619 | }; |
| 620 | |
| 621 | dpmac10: dpmac@a { |
| 622 | compatible = "fsl,qoriq-mc-dpmac"; |
| 623 | reg = <0xa>; |
| 624 | status = "disabled"; |
| 625 | }; |
| 626 | }; |
| 627 | }; |
| 628 | |
Ioana Ciornei | df3b8c5 | 2020-03-18 16:47:43 +0200 | [diff] [blame] | 629 | emdio1: mdio@8B96000 { |
| 630 | compatible = "fsl,ls-mdio"; |
| 631 | reg = <0x0 0x8B96000 0x0 0x1000>; |
| 632 | #address-cells = <1>; |
| 633 | #size-cells = <0>; |
| 634 | status = "disabled"; |
| 635 | }; |
| 636 | |
| 637 | emdio2: mdio@8B97000 { |
| 638 | compatible = "fsl,ls-mdio"; |
| 639 | reg = <0x0 0x8B97000 0x0 0x1000>; |
| 640 | #address-cells = <1>; |
| 641 | #size-cells = <0>; |
| 642 | status = "disabled"; |
| 643 | }; |
Ashish Kumar | b25faa2 | 2017-08-31 16:12:53 +0530 | [diff] [blame] | 644 | }; |