Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
| 2 | /* |
| 3 | * Copyright Altera Corporation (C) 2015. All rights reserved. |
| 4 | */ |
| 5 | |
| 6 | /dts-v1/; |
| 7 | #include <dt-bindings/reset/altr,rst-mgr-s10.h> |
| 8 | #include <dt-bindings/gpio/gpio.h> |
| 9 | #include <dt-bindings/clock/stratix10-clock.h> |
| 10 | |
| 11 | / { |
| 12 | compatible = "altr,socfpga-stratix10"; |
| 13 | #address-cells = <2>; |
| 14 | #size-cells = <2>; |
| 15 | |
| 16 | reserved-memory { |
| 17 | #address-cells = <2>; |
| 18 | #size-cells = <2>; |
| 19 | ranges; |
| 20 | |
| 21 | service_reserved: svcbuffer@0 { |
| 22 | compatible = "shared-dma-pool"; |
| 23 | reg = <0x0 0x0 0x0 0x1000000>; |
| 24 | alignment = <0x1000>; |
| 25 | no-map; |
| 26 | }; |
| 27 | }; |
| 28 | |
| 29 | cpus { |
| 30 | #address-cells = <1>; |
| 31 | #size-cells = <0>; |
| 32 | |
| 33 | cpu0: cpu@0 { |
| 34 | compatible = "arm,cortex-a53"; |
| 35 | device_type = "cpu"; |
| 36 | enable-method = "psci"; |
Tom Rini | 6b642ac | 2024-10-01 12:20:28 -0600 | [diff] [blame] | 37 | next-level-cache = <&l2_shared>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 38 | reg = <0x0>; |
| 39 | }; |
| 40 | |
| 41 | cpu1: cpu@1 { |
| 42 | compatible = "arm,cortex-a53"; |
| 43 | device_type = "cpu"; |
| 44 | enable-method = "psci"; |
Tom Rini | 6b642ac | 2024-10-01 12:20:28 -0600 | [diff] [blame] | 45 | next-level-cache = <&l2_shared>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 46 | reg = <0x1>; |
| 47 | }; |
| 48 | |
| 49 | cpu2: cpu@2 { |
| 50 | compatible = "arm,cortex-a53"; |
| 51 | device_type = "cpu"; |
| 52 | enable-method = "psci"; |
Tom Rini | 6b642ac | 2024-10-01 12:20:28 -0600 | [diff] [blame] | 53 | next-level-cache = <&l2_shared>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 54 | reg = <0x2>; |
| 55 | }; |
| 56 | |
| 57 | cpu3: cpu@3 { |
| 58 | compatible = "arm,cortex-a53"; |
| 59 | device_type = "cpu"; |
| 60 | enable-method = "psci"; |
Tom Rini | 6b642ac | 2024-10-01 12:20:28 -0600 | [diff] [blame] | 61 | next-level-cache = <&l2_shared>; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 62 | reg = <0x3>; |
| 63 | }; |
Tom Rini | 6b642ac | 2024-10-01 12:20:28 -0600 | [diff] [blame] | 64 | |
| 65 | l2_shared: cache { |
| 66 | compatible = "cache"; |
| 67 | cache-level = <2>; |
| 68 | cache-unified; |
| 69 | }; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 70 | }; |
| 71 | |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame] | 72 | firmware { |
| 73 | svc { |
| 74 | compatible = "intel,stratix10-svc"; |
| 75 | method = "smc"; |
| 76 | memory-region = <&service_reserved>; |
| 77 | |
| 78 | fpga_mgr: fpga-mgr { |
| 79 | compatible = "intel,stratix10-soc-fpga-mgr"; |
| 80 | }; |
| 81 | }; |
| 82 | }; |
| 83 | |
| 84 | fpga-region { |
| 85 | compatible = "fpga-region"; |
| 86 | #address-cells = <0x2>; |
| 87 | #size-cells = <0x2>; |
| 88 | fpga-mgr = <&fpga_mgr>; |
| 89 | }; |
| 90 | |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 91 | pmu { |
Tom Rini | 762f85b | 2024-07-20 11:15:10 -0600 | [diff] [blame] | 92 | compatible = "arm,cortex-a53-pmu"; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 93 | interrupts = <0 170 4>, |
| 94 | <0 171 4>, |
| 95 | <0 172 4>, |
| 96 | <0 173 4>; |
| 97 | interrupt-affinity = <&cpu0>, |
| 98 | <&cpu1>, |
| 99 | <&cpu2>, |
| 100 | <&cpu3>; |
| 101 | interrupt-parent = <&intc>; |
| 102 | }; |
| 103 | |
| 104 | psci { |
| 105 | compatible = "arm,psci-0.2"; |
| 106 | method = "smc"; |
| 107 | }; |
| 108 | |
| 109 | /* Local timer */ |
| 110 | timer { |
| 111 | compatible = "arm,armv8-timer"; |
| 112 | interrupts = <1 13 0xf08>, |
| 113 | <1 14 0xf08>, |
| 114 | <1 11 0xf08>, |
| 115 | <1 10 0xf08>; |
| 116 | interrupt-parent = <&intc>; |
| 117 | }; |
| 118 | |
| 119 | intc: interrupt-controller@fffc1000 { |
| 120 | compatible = "arm,gic-400", "arm,cortex-a15-gic"; |
| 121 | #interrupt-cells = <3>; |
| 122 | interrupt-controller; |
| 123 | reg = <0x0 0xfffc1000 0x0 0x1000>, |
| 124 | <0x0 0xfffc2000 0x0 0x2000>, |
| 125 | <0x0 0xfffc4000 0x0 0x2000>, |
| 126 | <0x0 0xfffc6000 0x0 0x2000>; |
| 127 | }; |
| 128 | |
| 129 | clocks { |
| 130 | cb_intosc_hs_div2_clk: cb-intosc-hs-div2-clk { |
| 131 | #clock-cells = <0>; |
| 132 | compatible = "fixed-clock"; |
| 133 | }; |
| 134 | |
| 135 | cb_intosc_ls_clk: cb-intosc-ls-clk { |
| 136 | #clock-cells = <0>; |
| 137 | compatible = "fixed-clock"; |
| 138 | }; |
| 139 | |
| 140 | f2s_free_clk: f2s-free-clk { |
| 141 | #clock-cells = <0>; |
| 142 | compatible = "fixed-clock"; |
| 143 | }; |
| 144 | |
| 145 | osc1: osc1 { |
| 146 | #clock-cells = <0>; |
| 147 | compatible = "fixed-clock"; |
| 148 | }; |
| 149 | |
| 150 | qspi_clk: qspi-clk { |
| 151 | #clock-cells = <0>; |
| 152 | compatible = "fixed-clock"; |
| 153 | clock-frequency = <200000000>; |
| 154 | }; |
| 155 | }; |
| 156 | |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame] | 157 | soc@0 { |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 158 | #address-cells = <1>; |
| 159 | #size-cells = <1>; |
| 160 | compatible = "simple-bus"; |
| 161 | device_type = "soc"; |
| 162 | interrupt-parent = <&intc>; |
| 163 | ranges = <0 0 0 0xffffffff>; |
| 164 | |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 165 | clkmgr: clock-controller@ffd10000 { |
| 166 | compatible = "intel,stratix10-clkmgr"; |
| 167 | reg = <0xffd10000 0x1000>; |
| 168 | #clock-cells = <1>; |
| 169 | }; |
| 170 | |
| 171 | gmac0: ethernet@ff800000 { |
| 172 | compatible = "altr,socfpga-stmmac-a10-s10", "snps,dwmac-3.74a", "snps,dwmac"; |
| 173 | reg = <0xff800000 0x2000>; |
| 174 | interrupts = <0 90 4>; |
| 175 | interrupt-names = "macirq"; |
| 176 | mac-address = [00 00 00 00 00 00]; |
| 177 | resets = <&rst EMAC0_RESET>, <&rst EMAC0_OCP_RESET>; |
| 178 | reset-names = "stmmaceth", "ahb"; |
| 179 | clocks = <&clkmgr STRATIX10_EMAC0_CLK>, <&clkmgr STRATIX10_EMAC_PTP_CLK>; |
| 180 | clock-names = "stmmaceth", "ptp_ref"; |
| 181 | tx-fifo-depth = <16384>; |
| 182 | rx-fifo-depth = <16384>; |
| 183 | snps,multicast-filter-bins = <256>; |
| 184 | iommus = <&smmu 1>; |
| 185 | altr,sysmgr-syscon = <&sysmgr 0x44 0>; |
| 186 | status = "disabled"; |
| 187 | }; |
| 188 | |
| 189 | gmac1: ethernet@ff802000 { |
| 190 | compatible = "altr,socfpga-stmmac-a10-s10", "snps,dwmac-3.74a", "snps,dwmac"; |
| 191 | reg = <0xff802000 0x2000>; |
| 192 | interrupts = <0 91 4>; |
| 193 | interrupt-names = "macirq"; |
| 194 | mac-address = [00 00 00 00 00 00]; |
| 195 | resets = <&rst EMAC1_RESET>, <&rst EMAC1_OCP_RESET>; |
| 196 | reset-names = "stmmaceth", "ahb"; |
| 197 | clocks = <&clkmgr STRATIX10_EMAC1_CLK>, <&clkmgr STRATIX10_EMAC_PTP_CLK>; |
| 198 | clock-names = "stmmaceth", "ptp_ref"; |
| 199 | tx-fifo-depth = <16384>; |
| 200 | rx-fifo-depth = <16384>; |
| 201 | snps,multicast-filter-bins = <256>; |
| 202 | iommus = <&smmu 2>; |
| 203 | altr,sysmgr-syscon = <&sysmgr 0x48 8>; |
| 204 | status = "disabled"; |
| 205 | }; |
| 206 | |
| 207 | gmac2: ethernet@ff804000 { |
| 208 | compatible = "altr,socfpga-stmmac-a10-s10", "snps,dwmac-3.74a", "snps,dwmac"; |
| 209 | reg = <0xff804000 0x2000>; |
| 210 | interrupts = <0 92 4>; |
| 211 | interrupt-names = "macirq"; |
| 212 | mac-address = [00 00 00 00 00 00]; |
| 213 | resets = <&rst EMAC2_RESET>, <&rst EMAC2_OCP_RESET>; |
| 214 | reset-names = "stmmaceth", "ahb"; |
| 215 | clocks = <&clkmgr STRATIX10_EMAC2_CLK>, <&clkmgr STRATIX10_EMAC_PTP_CLK>; |
| 216 | clock-names = "stmmaceth", "ptp_ref"; |
| 217 | tx-fifo-depth = <16384>; |
| 218 | rx-fifo-depth = <16384>; |
| 219 | snps,multicast-filter-bins = <256>; |
| 220 | iommus = <&smmu 3>; |
| 221 | altr,sysmgr-syscon = <&sysmgr 0x4c 16>; |
| 222 | status = "disabled"; |
| 223 | }; |
| 224 | |
| 225 | gpio0: gpio@ffc03200 { |
| 226 | #address-cells = <1>; |
| 227 | #size-cells = <0>; |
| 228 | compatible = "snps,dw-apb-gpio"; |
| 229 | reg = <0xffc03200 0x100>; |
| 230 | resets = <&rst GPIO0_RESET>; |
| 231 | status = "disabled"; |
| 232 | |
| 233 | porta: gpio-controller@0 { |
| 234 | compatible = "snps,dw-apb-gpio-port"; |
| 235 | gpio-controller; |
| 236 | #gpio-cells = <2>; |
| 237 | ngpios = <24>; |
| 238 | reg = <0>; |
| 239 | interrupt-controller; |
| 240 | #interrupt-cells = <2>; |
| 241 | interrupts = <0 110 4>; |
| 242 | }; |
| 243 | }; |
| 244 | |
| 245 | gpio1: gpio@ffc03300 { |
| 246 | #address-cells = <1>; |
| 247 | #size-cells = <0>; |
| 248 | compatible = "snps,dw-apb-gpio"; |
| 249 | reg = <0xffc03300 0x100>; |
| 250 | resets = <&rst GPIO1_RESET>; |
| 251 | status = "disabled"; |
| 252 | |
| 253 | portb: gpio-controller@0 { |
| 254 | compatible = "snps,dw-apb-gpio-port"; |
| 255 | gpio-controller; |
| 256 | #gpio-cells = <2>; |
| 257 | ngpios = <24>; |
| 258 | reg = <0>; |
| 259 | interrupt-controller; |
| 260 | #interrupt-cells = <2>; |
| 261 | interrupts = <0 111 4>; |
| 262 | }; |
| 263 | }; |
| 264 | |
| 265 | i2c0: i2c@ffc02800 { |
| 266 | #address-cells = <1>; |
| 267 | #size-cells = <0>; |
| 268 | compatible = "snps,designware-i2c"; |
| 269 | reg = <0xffc02800 0x100>; |
| 270 | interrupts = <0 103 4>; |
| 271 | resets = <&rst I2C0_RESET>; |
| 272 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 273 | status = "disabled"; |
| 274 | }; |
| 275 | |
| 276 | i2c1: i2c@ffc02900 { |
| 277 | #address-cells = <1>; |
| 278 | #size-cells = <0>; |
| 279 | compatible = "snps,designware-i2c"; |
| 280 | reg = <0xffc02900 0x100>; |
| 281 | interrupts = <0 104 4>; |
| 282 | resets = <&rst I2C1_RESET>; |
| 283 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 284 | status = "disabled"; |
| 285 | }; |
| 286 | |
| 287 | i2c2: i2c@ffc02a00 { |
| 288 | #address-cells = <1>; |
| 289 | #size-cells = <0>; |
| 290 | compatible = "snps,designware-i2c"; |
| 291 | reg = <0xffc02a00 0x100>; |
| 292 | interrupts = <0 105 4>; |
| 293 | resets = <&rst I2C2_RESET>; |
| 294 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 295 | status = "disabled"; |
| 296 | }; |
| 297 | |
| 298 | i2c3: i2c@ffc02b00 { |
| 299 | #address-cells = <1>; |
| 300 | #size-cells = <0>; |
| 301 | compatible = "snps,designware-i2c"; |
| 302 | reg = <0xffc02b00 0x100>; |
| 303 | interrupts = <0 106 4>; |
| 304 | resets = <&rst I2C3_RESET>; |
| 305 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 306 | status = "disabled"; |
| 307 | }; |
| 308 | |
| 309 | i2c4: i2c@ffc02c00 { |
| 310 | #address-cells = <1>; |
| 311 | #size-cells = <0>; |
| 312 | compatible = "snps,designware-i2c"; |
| 313 | reg = <0xffc02c00 0x100>; |
| 314 | interrupts = <0 107 4>; |
| 315 | resets = <&rst I2C4_RESET>; |
| 316 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 317 | status = "disabled"; |
| 318 | }; |
| 319 | |
| 320 | mmc: mmc@ff808000 { |
| 321 | #address-cells = <1>; |
| 322 | #size-cells = <0>; |
| 323 | compatible = "altr,socfpga-dw-mshc"; |
| 324 | reg = <0xff808000 0x1000>; |
| 325 | interrupts = <0 96 4>; |
| 326 | fifo-depth = <0x400>; |
| 327 | resets = <&rst SDMMC_RESET>; |
| 328 | reset-names = "reset"; |
| 329 | clocks = <&clkmgr STRATIX10_L4_MP_CLK>, |
| 330 | <&clkmgr STRATIX10_SDMMC_CLK>; |
| 331 | clock-names = "biu", "ciu"; |
| 332 | iommus = <&smmu 5>; |
| 333 | altr,sysmgr-syscon = <&sysmgr 0x28 4>; |
| 334 | status = "disabled"; |
| 335 | }; |
| 336 | |
| 337 | nand: nand-controller@ffb90000 { |
| 338 | #address-cells = <1>; |
| 339 | #size-cells = <0>; |
| 340 | compatible = "altr,socfpga-denali-nand"; |
| 341 | reg = <0xffb90000 0x10000>, |
| 342 | <0xffb80000 0x1000>; |
| 343 | reg-names = "nand_data", "denali_reg"; |
| 344 | interrupts = <0 97 4>; |
| 345 | clocks = <&clkmgr STRATIX10_NAND_CLK>, |
| 346 | <&clkmgr STRATIX10_NAND_X_CLK>, |
| 347 | <&clkmgr STRATIX10_NAND_ECC_CLK>; |
| 348 | clock-names = "nand", "nand_x", "ecc"; |
| 349 | resets = <&rst NAND_RESET>, <&rst NAND_OCP_RESET>; |
| 350 | status = "disabled"; |
| 351 | }; |
| 352 | |
| 353 | ocram: sram@ffe00000 { |
| 354 | compatible = "mmio-sram"; |
| 355 | reg = <0xffe00000 0x100000>; |
| 356 | #address-cells = <1>; |
| 357 | #size-cells = <1>; |
| 358 | ranges = <0 0xffe00000 0x100000>; |
| 359 | }; |
| 360 | |
| 361 | pdma: dma-controller@ffda0000 { |
| 362 | compatible = "arm,pl330", "arm,primecell"; |
| 363 | reg = <0xffda0000 0x1000>; |
| 364 | interrupts = <0 81 4>, |
| 365 | <0 82 4>, |
| 366 | <0 83 4>, |
| 367 | <0 84 4>, |
| 368 | <0 85 4>, |
| 369 | <0 86 4>, |
| 370 | <0 87 4>, |
| 371 | <0 88 4>, |
| 372 | <0 89 4>; |
| 373 | #dma-cells = <1>; |
| 374 | clocks = <&clkmgr STRATIX10_L4_MAIN_CLK>; |
| 375 | clock-names = "apb_pclk"; |
| 376 | resets = <&rst DMA_RESET>, <&rst DMA_OCP_RESET>; |
| 377 | reset-names = "dma", "dma-ocp"; |
| 378 | }; |
| 379 | |
| 380 | pinctrl0: pinctrl@ffd13000 { |
| 381 | compatible = "pinctrl-single"; |
| 382 | reg = <0xffd13000 0xA0>; |
| 383 | #pinctrl-cells = <1>; |
| 384 | pinctrl-single,register-width = <32>; |
| 385 | pinctrl-single,function-mask = <0x0000000f>; |
| 386 | }; |
| 387 | |
| 388 | pinctrl1: pinctrl@ffd13100 { |
| 389 | compatible = "pinctrl-single"; |
| 390 | reg = <0xffd13100 0x20>; |
| 391 | #pinctrl-cells = <1>; |
| 392 | pinctrl-single,register-width = <32>; |
| 393 | pinctrl-single,function-mask = <0x0000000f>; |
| 394 | }; |
| 395 | |
| 396 | rst: rstmgr@ffd11000 { |
| 397 | #reset-cells = <1>; |
| 398 | compatible = "altr,stratix10-rst-mgr"; |
| 399 | reg = <0xffd11000 0x1000>; |
| 400 | }; |
| 401 | |
| 402 | smmu: iommu@fa000000 { |
| 403 | compatible = "arm,mmu-500", "arm,smmu-v2"; |
| 404 | reg = <0xfa000000 0x40000>; |
| 405 | #global-interrupts = <2>; |
| 406 | #iommu-cells = <1>; |
| 407 | clocks = <&clkmgr STRATIX10_L4_MAIN_CLK>; |
| 408 | clock-names = "iommu"; |
| 409 | interrupt-parent = <&intc>; |
| 410 | interrupts = <0 128 4>, /* Global Secure Fault */ |
| 411 | <0 129 4>, /* Global Non-secure Fault */ |
| 412 | /* Non-secure Context Interrupts (32) */ |
| 413 | <0 138 4>, <0 139 4>, <0 140 4>, <0 141 4>, |
| 414 | <0 142 4>, <0 143 4>, <0 144 4>, <0 145 4>, |
| 415 | <0 146 4>, <0 147 4>, <0 148 4>, <0 149 4>, |
| 416 | <0 150 4>, <0 151 4>, <0 152 4>, <0 153 4>, |
| 417 | <0 154 4>, <0 155 4>, <0 156 4>, <0 157 4>, |
| 418 | <0 158 4>, <0 159 4>, <0 160 4>, <0 161 4>, |
| 419 | <0 162 4>, <0 163 4>, <0 164 4>, <0 165 4>, |
| 420 | <0 166 4>, <0 167 4>, <0 168 4>, <0 169 4>; |
| 421 | stream-match-mask = <0x7ff0>; |
| 422 | status = "disabled"; |
| 423 | }; |
| 424 | |
| 425 | spi0: spi@ffda4000 { |
| 426 | compatible = "snps,dw-apb-ssi"; |
| 427 | #address-cells = <1>; |
| 428 | #size-cells = <0>; |
| 429 | reg = <0xffda4000 0x1000>; |
| 430 | interrupts = <0 99 4>; |
| 431 | resets = <&rst SPIM0_RESET>; |
| 432 | reset-names = "spi"; |
| 433 | reg-io-width = <4>; |
| 434 | num-cs = <4>; |
| 435 | clocks = <&clkmgr STRATIX10_L4_MAIN_CLK>; |
| 436 | status = "disabled"; |
| 437 | }; |
| 438 | |
| 439 | spi1: spi@ffda5000 { |
| 440 | compatible = "snps,dw-apb-ssi"; |
| 441 | #address-cells = <1>; |
| 442 | #size-cells = <0>; |
| 443 | reg = <0xffda5000 0x1000>; |
| 444 | interrupts = <0 100 4>; |
| 445 | resets = <&rst SPIM1_RESET>; |
| 446 | reset-names = "spi"; |
| 447 | reg-io-width = <4>; |
| 448 | num-cs = <4>; |
| 449 | clocks = <&clkmgr STRATIX10_L4_MAIN_CLK>; |
| 450 | status = "disabled"; |
| 451 | }; |
| 452 | |
| 453 | sysmgr: sysmgr@ffd12000 { |
| 454 | compatible = "altr,sys-mgr-s10","altr,sys-mgr"; |
| 455 | reg = <0xffd12000 0x228>; |
| 456 | }; |
| 457 | |
| 458 | timer0: timer0@ffc03000 { |
| 459 | compatible = "snps,dw-apb-timer"; |
| 460 | interrupts = <0 113 4>; |
| 461 | reg = <0xffc03000 0x100>; |
| 462 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 463 | clock-names = "timer"; |
| 464 | }; |
| 465 | |
| 466 | timer1: timer1@ffc03100 { |
| 467 | compatible = "snps,dw-apb-timer"; |
| 468 | interrupts = <0 114 4>; |
| 469 | reg = <0xffc03100 0x100>; |
| 470 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 471 | clock-names = "timer"; |
| 472 | }; |
| 473 | |
| 474 | timer2: timer2@ffd00000 { |
| 475 | compatible = "snps,dw-apb-timer"; |
| 476 | interrupts = <0 115 4>; |
| 477 | reg = <0xffd00000 0x100>; |
| 478 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 479 | clock-names = "timer"; |
| 480 | }; |
| 481 | |
| 482 | timer3: timer3@ffd00100 { |
| 483 | compatible = "snps,dw-apb-timer"; |
| 484 | interrupts = <0 116 4>; |
| 485 | reg = <0xffd00100 0x100>; |
| 486 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 487 | clock-names = "timer"; |
| 488 | }; |
| 489 | |
| 490 | uart0: serial@ffc02000 { |
| 491 | compatible = "snps,dw-apb-uart"; |
| 492 | reg = <0xffc02000 0x100>; |
| 493 | interrupts = <0 108 4>; |
| 494 | reg-shift = <2>; |
| 495 | reg-io-width = <4>; |
| 496 | resets = <&rst UART0_RESET>; |
| 497 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 498 | status = "disabled"; |
| 499 | }; |
| 500 | |
| 501 | uart1: serial@ffc02100 { |
| 502 | compatible = "snps,dw-apb-uart"; |
| 503 | reg = <0xffc02100 0x100>; |
| 504 | interrupts = <0 109 4>; |
| 505 | reg-shift = <2>; |
| 506 | reg-io-width = <4>; |
| 507 | resets = <&rst UART1_RESET>; |
| 508 | clocks = <&clkmgr STRATIX10_L4_SP_CLK>; |
| 509 | status = "disabled"; |
| 510 | }; |
| 511 | |
| 512 | usb0: usb@ffb00000 { |
| 513 | compatible = "snps,dwc2"; |
| 514 | reg = <0xffb00000 0x40000>; |
| 515 | interrupts = <0 93 4>; |
| 516 | phys = <&usbphy0>; |
| 517 | phy-names = "usb2-phy"; |
| 518 | resets = <&rst USB0_RESET>, <&rst USB0_OCP_RESET>; |
| 519 | reset-names = "dwc2", "dwc2-ecc"; |
| 520 | clocks = <&clkmgr STRATIX10_USB_CLK>; |
| 521 | clock-names = "otg"; |
| 522 | iommus = <&smmu 6>; |
| 523 | status = "disabled"; |
| 524 | }; |
| 525 | |
| 526 | usb1: usb@ffb40000 { |
| 527 | compatible = "snps,dwc2"; |
| 528 | reg = <0xffb40000 0x40000>; |
| 529 | interrupts = <0 94 4>; |
| 530 | phys = <&usbphy0>; |
| 531 | phy-names = "usb2-phy"; |
| 532 | resets = <&rst USB1_RESET>, <&rst USB1_OCP_RESET>; |
| 533 | reset-names = "dwc2", "dwc2-ecc"; |
| 534 | clocks = <&clkmgr STRATIX10_USB_CLK>; |
Tom Rini | 93743d2 | 2024-04-01 09:08:13 -0400 | [diff] [blame] | 535 | clock-names = "otg"; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 536 | iommus = <&smmu 7>; |
| 537 | status = "disabled"; |
| 538 | }; |
| 539 | |
| 540 | watchdog0: watchdog@ffd00200 { |
| 541 | compatible = "snps,dw-wdt"; |
| 542 | reg = <0xffd00200 0x100>; |
| 543 | interrupts = <0 117 4>; |
| 544 | resets = <&rst WATCHDOG0_RESET>; |
| 545 | clocks = <&clkmgr STRATIX10_L4_SYS_FREE_CLK>; |
| 546 | status = "disabled"; |
| 547 | }; |
| 548 | |
| 549 | watchdog1: watchdog@ffd00300 { |
| 550 | compatible = "snps,dw-wdt"; |
| 551 | reg = <0xffd00300 0x100>; |
| 552 | interrupts = <0 118 4>; |
| 553 | resets = <&rst WATCHDOG1_RESET>; |
| 554 | clocks = <&clkmgr STRATIX10_L4_SYS_FREE_CLK>; |
| 555 | status = "disabled"; |
| 556 | }; |
| 557 | |
| 558 | watchdog2: watchdog@ffd00400 { |
| 559 | compatible = "snps,dw-wdt"; |
| 560 | reg = <0xffd00400 0x100>; |
| 561 | interrupts = <0 125 4>; |
| 562 | resets = <&rst WATCHDOG2_RESET>; |
| 563 | clocks = <&clkmgr STRATIX10_L4_SYS_FREE_CLK>; |
| 564 | status = "disabled"; |
| 565 | }; |
| 566 | |
| 567 | watchdog3: watchdog@ffd00500 { |
| 568 | compatible = "snps,dw-wdt"; |
| 569 | reg = <0xffd00500 0x100>; |
| 570 | interrupts = <0 126 4>; |
| 571 | resets = <&rst WATCHDOG3_RESET>; |
| 572 | clocks = <&clkmgr STRATIX10_L4_SYS_FREE_CLK>; |
| 573 | status = "disabled"; |
| 574 | }; |
| 575 | |
| 576 | sdr: sdr@f8011100 { |
| 577 | compatible = "altr,sdr-ctl", "syscon"; |
| 578 | reg = <0xf8011100 0xc0>; |
| 579 | }; |
| 580 | |
| 581 | eccmgr { |
| 582 | compatible = "altr,socfpga-s10-ecc-manager", |
| 583 | "altr,socfpga-a10-ecc-manager"; |
| 584 | altr,sysmgr-syscon = <&sysmgr>; |
| 585 | #address-cells = <1>; |
| 586 | #size-cells = <1>; |
| 587 | interrupts = <0 15 4>; |
| 588 | interrupt-controller; |
| 589 | #interrupt-cells = <2>; |
| 590 | ranges; |
| 591 | |
| 592 | sdramedac { |
| 593 | compatible = "altr,sdram-edac-s10"; |
| 594 | altr,sdr-syscon = <&sdr>; |
| 595 | interrupts = <16 4>; |
| 596 | }; |
| 597 | |
| 598 | ocram-ecc@ff8cc000 { |
| 599 | compatible = "altr,socfpga-s10-ocram-ecc", |
| 600 | "altr,socfpga-a10-ocram-ecc"; |
| 601 | reg = <0xff8cc000 0x100>; |
| 602 | altr,ecc-parent = <&ocram>; |
| 603 | interrupts = <1 4>; |
| 604 | }; |
| 605 | |
| 606 | usb0-ecc@ff8c4000 { |
| 607 | compatible = "altr,socfpga-s10-usb-ecc", |
| 608 | "altr,socfpga-usb-ecc"; |
| 609 | reg = <0xff8c4000 0x100>; |
| 610 | altr,ecc-parent = <&usb0>; |
| 611 | interrupts = <2 4>; |
| 612 | }; |
| 613 | |
| 614 | emac0-rx-ecc@ff8c0000 { |
| 615 | compatible = "altr,socfpga-s10-eth-mac-ecc", |
| 616 | "altr,socfpga-eth-mac-ecc"; |
| 617 | reg = <0xff8c0000 0x100>; |
| 618 | altr,ecc-parent = <&gmac0>; |
| 619 | interrupts = <4 4>; |
| 620 | }; |
| 621 | |
| 622 | emac0-tx-ecc@ff8c0400 { |
| 623 | compatible = "altr,socfpga-s10-eth-mac-ecc", |
| 624 | "altr,socfpga-eth-mac-ecc"; |
| 625 | reg = <0xff8c0400 0x100>; |
| 626 | altr,ecc-parent = <&gmac0>; |
| 627 | interrupts = <5 4>; |
| 628 | }; |
| 629 | |
| 630 | }; |
| 631 | |
| 632 | qspi: spi@ff8d2000 { |
| 633 | compatible = "intel,socfpga-qspi", "cdns,qspi-nor"; |
| 634 | #address-cells = <1>; |
| 635 | #size-cells = <0>; |
| 636 | reg = <0xff8d2000 0x100>, |
| 637 | <0xff900000 0x100000>; |
| 638 | interrupts = <0 3 4>; |
| 639 | cdns,fifo-depth = <128>; |
| 640 | cdns,fifo-width = <4>; |
| 641 | cdns,trigger-address = <0x00000000>; |
| 642 | clocks = <&qspi_clk>; |
| 643 | |
| 644 | status = "disabled"; |
| 645 | }; |
Tom Rini | 53633a8 | 2024-02-29 12:33:36 -0500 | [diff] [blame] | 646 | }; |
| 647 | |
| 648 | usbphy0: usbphy0 { |
| 649 | compatible = "usb-nop-xceiv"; |
| 650 | #phy-cells = <0>; |
| 651 | }; |
| 652 | }; |