1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Copyright (C) 2011 - 2014 Xilinx 4*f126890aSEmmanuel Vadot */ 5*f126890aSEmmanuel Vadot 6*f126890aSEmmanuel Vadot/ { 7*f126890aSEmmanuel Vadot #address-cells = <1>; 8*f126890aSEmmanuel Vadot #size-cells = <1>; 9*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-7000"; 10*f126890aSEmmanuel Vadot 11*f126890aSEmmanuel Vadot cpus { 12*f126890aSEmmanuel Vadot #address-cells = <1>; 13*f126890aSEmmanuel Vadot #size-cells = <0>; 14*f126890aSEmmanuel Vadot 15*f126890aSEmmanuel Vadot cpu0: cpu@0 { 16*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9"; 17*f126890aSEmmanuel Vadot device_type = "cpu"; 18*f126890aSEmmanuel Vadot reg = <0>; 19*f126890aSEmmanuel Vadot clocks = <&clkc 3>; 20*f126890aSEmmanuel Vadot clock-latency = <1000>; 21*f126890aSEmmanuel Vadot cpu0-supply = <®ulator_vccpint>; 22*f126890aSEmmanuel Vadot operating-points = < 23*f126890aSEmmanuel Vadot /* kHz uV */ 24*f126890aSEmmanuel Vadot 666667 1000000 25*f126890aSEmmanuel Vadot 333334 1000000 26*f126890aSEmmanuel Vadot >; 27*f126890aSEmmanuel Vadot }; 28*f126890aSEmmanuel Vadot 29*f126890aSEmmanuel Vadot cpu1: cpu@1 { 30*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9"; 31*f126890aSEmmanuel Vadot device_type = "cpu"; 32*f126890aSEmmanuel Vadot reg = <1>; 33*f126890aSEmmanuel Vadot clocks = <&clkc 3>; 34*f126890aSEmmanuel Vadot }; 35*f126890aSEmmanuel Vadot }; 36*f126890aSEmmanuel Vadot 37*f126890aSEmmanuel Vadot fpga_full: fpga-full { 38*f126890aSEmmanuel Vadot compatible = "fpga-region"; 39*f126890aSEmmanuel Vadot fpga-mgr = <&devcfg>; 40*f126890aSEmmanuel Vadot #address-cells = <1>; 41*f126890aSEmmanuel Vadot #size-cells = <1>; 42*f126890aSEmmanuel Vadot ranges; 43*f126890aSEmmanuel Vadot }; 44*f126890aSEmmanuel Vadot 45*f126890aSEmmanuel Vadot pmu@f8891000 { 46*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9-pmu"; 47*f126890aSEmmanuel Vadot interrupts = <0 5 4>, <0 6 4>; 48*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 49*f126890aSEmmanuel Vadot reg = <0xf8891000 0x1000>, 50*f126890aSEmmanuel Vadot <0xf8893000 0x1000>; 51*f126890aSEmmanuel Vadot }; 52*f126890aSEmmanuel Vadot 53*f126890aSEmmanuel Vadot regulator_vccpint: fixedregulator { 54*f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 55*f126890aSEmmanuel Vadot regulator-name = "VCCPINT"; 56*f126890aSEmmanuel Vadot regulator-min-microvolt = <1000000>; 57*f126890aSEmmanuel Vadot regulator-max-microvolt = <1000000>; 58*f126890aSEmmanuel Vadot regulator-boot-on; 59*f126890aSEmmanuel Vadot regulator-always-on; 60*f126890aSEmmanuel Vadot }; 61*f126890aSEmmanuel Vadot 62*f126890aSEmmanuel Vadot replicator { 63*f126890aSEmmanuel Vadot compatible = "arm,coresight-static-replicator"; 64*f126890aSEmmanuel Vadot clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>; 65*f126890aSEmmanuel Vadot clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; 66*f126890aSEmmanuel Vadot 67*f126890aSEmmanuel Vadot out-ports { 68*f126890aSEmmanuel Vadot #address-cells = <1>; 69*f126890aSEmmanuel Vadot #size-cells = <0>; 70*f126890aSEmmanuel Vadot 71*f126890aSEmmanuel Vadot /* replicator output ports */ 72*f126890aSEmmanuel Vadot port@0 { 73*f126890aSEmmanuel Vadot reg = <0>; 74*f126890aSEmmanuel Vadot replicator_out_port0: endpoint { 75*f126890aSEmmanuel Vadot remote-endpoint = <&tpiu_in_port>; 76*f126890aSEmmanuel Vadot }; 77*f126890aSEmmanuel Vadot }; 78*f126890aSEmmanuel Vadot port@1 { 79*f126890aSEmmanuel Vadot reg = <1>; 80*f126890aSEmmanuel Vadot replicator_out_port1: endpoint { 81*f126890aSEmmanuel Vadot remote-endpoint = <&etb_in_port>; 82*f126890aSEmmanuel Vadot }; 83*f126890aSEmmanuel Vadot }; 84*f126890aSEmmanuel Vadot }; 85*f126890aSEmmanuel Vadot in-ports { 86*f126890aSEmmanuel Vadot /* replicator input port */ 87*f126890aSEmmanuel Vadot port { 88*f126890aSEmmanuel Vadot replicator_in_port0: endpoint { 89*f126890aSEmmanuel Vadot remote-endpoint = <&funnel_out_port>; 90*f126890aSEmmanuel Vadot }; 91*f126890aSEmmanuel Vadot }; 92*f126890aSEmmanuel Vadot }; 93*f126890aSEmmanuel Vadot }; 94*f126890aSEmmanuel Vadot 95*f126890aSEmmanuel Vadot amba: axi { 96*f126890aSEmmanuel Vadot compatible = "simple-bus"; 97*f126890aSEmmanuel Vadot #address-cells = <1>; 98*f126890aSEmmanuel Vadot #size-cells = <1>; 99*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 100*f126890aSEmmanuel Vadot ranges; 101*f126890aSEmmanuel Vadot 102*f126890aSEmmanuel Vadot adc: adc@f8007100 { 103*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-xadc-1.00.a"; 104*f126890aSEmmanuel Vadot reg = <0xf8007100 0x20>; 105*f126890aSEmmanuel Vadot interrupts = <0 7 4>; 106*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 107*f126890aSEmmanuel Vadot clocks = <&clkc 12>; 108*f126890aSEmmanuel Vadot }; 109*f126890aSEmmanuel Vadot 110*f126890aSEmmanuel Vadot can0: can@e0008000 { 111*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-can-1.0"; 112*f126890aSEmmanuel Vadot status = "disabled"; 113*f126890aSEmmanuel Vadot clocks = <&clkc 19>, <&clkc 36>; 114*f126890aSEmmanuel Vadot clock-names = "can_clk", "pclk"; 115*f126890aSEmmanuel Vadot reg = <0xe0008000 0x1000>; 116*f126890aSEmmanuel Vadot interrupts = <0 28 4>; 117*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 118*f126890aSEmmanuel Vadot tx-fifo-depth = <0x40>; 119*f126890aSEmmanuel Vadot rx-fifo-depth = <0x40>; 120*f126890aSEmmanuel Vadot }; 121*f126890aSEmmanuel Vadot 122*f126890aSEmmanuel Vadot can1: can@e0009000 { 123*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-can-1.0"; 124*f126890aSEmmanuel Vadot status = "disabled"; 125*f126890aSEmmanuel Vadot clocks = <&clkc 20>, <&clkc 37>; 126*f126890aSEmmanuel Vadot clock-names = "can_clk", "pclk"; 127*f126890aSEmmanuel Vadot reg = <0xe0009000 0x1000>; 128*f126890aSEmmanuel Vadot interrupts = <0 51 4>; 129*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 130*f126890aSEmmanuel Vadot tx-fifo-depth = <0x40>; 131*f126890aSEmmanuel Vadot rx-fifo-depth = <0x40>; 132*f126890aSEmmanuel Vadot }; 133*f126890aSEmmanuel Vadot 134*f126890aSEmmanuel Vadot gpio0: gpio@e000a000 { 135*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-gpio-1.0"; 136*f126890aSEmmanuel Vadot #gpio-cells = <2>; 137*f126890aSEmmanuel Vadot clocks = <&clkc 42>; 138*f126890aSEmmanuel Vadot gpio-controller; 139*f126890aSEmmanuel Vadot interrupt-controller; 140*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 141*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 142*f126890aSEmmanuel Vadot interrupts = <0 20 4>; 143*f126890aSEmmanuel Vadot reg = <0xe000a000 0x1000>; 144*f126890aSEmmanuel Vadot }; 145*f126890aSEmmanuel Vadot 146*f126890aSEmmanuel Vadot i2c0: i2c@e0004000 { 147*f126890aSEmmanuel Vadot compatible = "cdns,i2c-r1p10"; 148*f126890aSEmmanuel Vadot status = "disabled"; 149*f126890aSEmmanuel Vadot clocks = <&clkc 38>; 150*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 151*f126890aSEmmanuel Vadot interrupts = <0 25 4>; 152*f126890aSEmmanuel Vadot clock-frequency = <400000>; 153*f126890aSEmmanuel Vadot reg = <0xe0004000 0x1000>; 154*f126890aSEmmanuel Vadot #address-cells = <1>; 155*f126890aSEmmanuel Vadot #size-cells = <0>; 156*f126890aSEmmanuel Vadot }; 157*f126890aSEmmanuel Vadot 158*f126890aSEmmanuel Vadot i2c1: i2c@e0005000 { 159*f126890aSEmmanuel Vadot compatible = "cdns,i2c-r1p10"; 160*f126890aSEmmanuel Vadot status = "disabled"; 161*f126890aSEmmanuel Vadot clocks = <&clkc 39>; 162*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 163*f126890aSEmmanuel Vadot interrupts = <0 48 4>; 164*f126890aSEmmanuel Vadot clock-frequency = <400000>; 165*f126890aSEmmanuel Vadot reg = <0xe0005000 0x1000>; 166*f126890aSEmmanuel Vadot #address-cells = <1>; 167*f126890aSEmmanuel Vadot #size-cells = <0>; 168*f126890aSEmmanuel Vadot }; 169*f126890aSEmmanuel Vadot 170*f126890aSEmmanuel Vadot intc: interrupt-controller@f8f01000 { 171*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9-gic"; 172*f126890aSEmmanuel Vadot #interrupt-cells = <3>; 173*f126890aSEmmanuel Vadot interrupt-controller; 174*f126890aSEmmanuel Vadot reg = <0xF8F01000 0x1000>, 175*f126890aSEmmanuel Vadot <0xF8F00100 0x100>; 176*f126890aSEmmanuel Vadot }; 177*f126890aSEmmanuel Vadot 178*f126890aSEmmanuel Vadot L2: cache-controller@f8f02000 { 179*f126890aSEmmanuel Vadot compatible = "arm,pl310-cache"; 180*f126890aSEmmanuel Vadot reg = <0xF8F02000 0x1000>; 181*f126890aSEmmanuel Vadot interrupts = <0 2 4>; 182*f126890aSEmmanuel Vadot arm,data-latency = <3 2 2>; 183*f126890aSEmmanuel Vadot arm,tag-latency = <2 2 2>; 184*f126890aSEmmanuel Vadot cache-unified; 185*f126890aSEmmanuel Vadot cache-level = <2>; 186*f126890aSEmmanuel Vadot }; 187*f126890aSEmmanuel Vadot 188*f126890aSEmmanuel Vadot mc: memory-controller@f8006000 { 189*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-ddrc-a05"; 190*f126890aSEmmanuel Vadot reg = <0xf8006000 0x1000>; 191*f126890aSEmmanuel Vadot }; 192*f126890aSEmmanuel Vadot 193*f126890aSEmmanuel Vadot uart0: serial@e0000000 { 194*f126890aSEmmanuel Vadot compatible = "xlnx,xuartps", "cdns,uart-r1p8"; 195*f126890aSEmmanuel Vadot status = "disabled"; 196*f126890aSEmmanuel Vadot clocks = <&clkc 23>, <&clkc 40>; 197*f126890aSEmmanuel Vadot clock-names = "uart_clk", "pclk"; 198*f126890aSEmmanuel Vadot reg = <0xE0000000 0x1000>; 199*f126890aSEmmanuel Vadot interrupts = <0 27 4>; 200*f126890aSEmmanuel Vadot }; 201*f126890aSEmmanuel Vadot 202*f126890aSEmmanuel Vadot uart1: serial@e0001000 { 203*f126890aSEmmanuel Vadot compatible = "xlnx,xuartps", "cdns,uart-r1p8"; 204*f126890aSEmmanuel Vadot status = "disabled"; 205*f126890aSEmmanuel Vadot clocks = <&clkc 24>, <&clkc 41>; 206*f126890aSEmmanuel Vadot clock-names = "uart_clk", "pclk"; 207*f126890aSEmmanuel Vadot reg = <0xE0001000 0x1000>; 208*f126890aSEmmanuel Vadot interrupts = <0 50 4>; 209*f126890aSEmmanuel Vadot }; 210*f126890aSEmmanuel Vadot 211*f126890aSEmmanuel Vadot spi0: spi@e0006000 { 212*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-spi-r1p6"; 213*f126890aSEmmanuel Vadot reg = <0xe0006000 0x1000>; 214*f126890aSEmmanuel Vadot status = "disabled"; 215*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 216*f126890aSEmmanuel Vadot interrupts = <0 26 4>; 217*f126890aSEmmanuel Vadot clocks = <&clkc 25>, <&clkc 34>; 218*f126890aSEmmanuel Vadot clock-names = "ref_clk", "pclk"; 219*f126890aSEmmanuel Vadot #address-cells = <1>; 220*f126890aSEmmanuel Vadot #size-cells = <0>; 221*f126890aSEmmanuel Vadot }; 222*f126890aSEmmanuel Vadot 223*f126890aSEmmanuel Vadot spi1: spi@e0007000 { 224*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-spi-r1p6"; 225*f126890aSEmmanuel Vadot reg = <0xe0007000 0x1000>; 226*f126890aSEmmanuel Vadot status = "disabled"; 227*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 228*f126890aSEmmanuel Vadot interrupts = <0 49 4>; 229*f126890aSEmmanuel Vadot clocks = <&clkc 26>, <&clkc 35>; 230*f126890aSEmmanuel Vadot clock-names = "ref_clk", "pclk"; 231*f126890aSEmmanuel Vadot #address-cells = <1>; 232*f126890aSEmmanuel Vadot #size-cells = <0>; 233*f126890aSEmmanuel Vadot }; 234*f126890aSEmmanuel Vadot 235*f126890aSEmmanuel Vadot qspi: spi@e000d000 { 236*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-qspi-1.0"; 237*f126890aSEmmanuel Vadot reg = <0xe000d000 0x1000>; 238*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 239*f126890aSEmmanuel Vadot interrupts = <0 19 4>; 240*f126890aSEmmanuel Vadot clocks = <&clkc 10>, <&clkc 43>; 241*f126890aSEmmanuel Vadot clock-names = "ref_clk", "pclk"; 242*f126890aSEmmanuel Vadot status = "disabled"; 243*f126890aSEmmanuel Vadot #address-cells = <1>; 244*f126890aSEmmanuel Vadot #size-cells = <0>; 245*f126890aSEmmanuel Vadot }; 246*f126890aSEmmanuel Vadot 247*f126890aSEmmanuel Vadot gem0: ethernet@e000b000 { 248*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-gem", "cdns,gem"; 249*f126890aSEmmanuel Vadot reg = <0xe000b000 0x1000>; 250*f126890aSEmmanuel Vadot status = "disabled"; 251*f126890aSEmmanuel Vadot interrupts = <0 22 4>; 252*f126890aSEmmanuel Vadot clocks = <&clkc 30>, <&clkc 30>, <&clkc 13>; 253*f126890aSEmmanuel Vadot clock-names = "pclk", "hclk", "tx_clk"; 254*f126890aSEmmanuel Vadot #address-cells = <1>; 255*f126890aSEmmanuel Vadot #size-cells = <0>; 256*f126890aSEmmanuel Vadot }; 257*f126890aSEmmanuel Vadot 258*f126890aSEmmanuel Vadot gem1: ethernet@e000c000 { 259*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-gem", "cdns,gem"; 260*f126890aSEmmanuel Vadot reg = <0xe000c000 0x1000>; 261*f126890aSEmmanuel Vadot status = "disabled"; 262*f126890aSEmmanuel Vadot interrupts = <0 45 4>; 263*f126890aSEmmanuel Vadot clocks = <&clkc 31>, <&clkc 31>, <&clkc 14>; 264*f126890aSEmmanuel Vadot clock-names = "pclk", "hclk", "tx_clk"; 265*f126890aSEmmanuel Vadot #address-cells = <1>; 266*f126890aSEmmanuel Vadot #size-cells = <0>; 267*f126890aSEmmanuel Vadot }; 268*f126890aSEmmanuel Vadot 269*f126890aSEmmanuel Vadot smcc: memory-controller@e000e000 { 270*f126890aSEmmanuel Vadot compatible = "arm,pl353-smc-r2p1", "arm,primecell"; 271*f126890aSEmmanuel Vadot reg = <0xe000e000 0x0001000>; 272*f126890aSEmmanuel Vadot status = "disabled"; 273*f126890aSEmmanuel Vadot clock-names = "memclk", "apb_pclk"; 274*f126890aSEmmanuel Vadot clocks = <&clkc 11>, <&clkc 44>; 275*f126890aSEmmanuel Vadot ranges = <0x0 0x0 0xe1000000 0x1000000 /* Nand CS region */ 276*f126890aSEmmanuel Vadot 0x1 0x0 0xe2000000 0x2000000 /* SRAM/NOR CS0 region */ 277*f126890aSEmmanuel Vadot 0x2 0x0 0xe4000000 0x2000000>; /* SRAM/NOR CS1 region */ 278*f126890aSEmmanuel Vadot #address-cells = <2>; 279*f126890aSEmmanuel Vadot #size-cells = <1>; 280*f126890aSEmmanuel Vadot 281*f126890aSEmmanuel Vadot nfc0: nand-controller@0,0 { 282*f126890aSEmmanuel Vadot compatible = "arm,pl353-nand-r2p1"; 283*f126890aSEmmanuel Vadot reg = <0 0 0x1000000>; 284*f126890aSEmmanuel Vadot status = "disabled"; 285*f126890aSEmmanuel Vadot #address-cells = <1>; 286*f126890aSEmmanuel Vadot #size-cells = <0>; 287*f126890aSEmmanuel Vadot }; 288*f126890aSEmmanuel Vadot }; 289*f126890aSEmmanuel Vadot 290*f126890aSEmmanuel Vadot sdhci0: mmc@e0100000 { 291*f126890aSEmmanuel Vadot compatible = "arasan,sdhci-8.9a"; 292*f126890aSEmmanuel Vadot status = "disabled"; 293*f126890aSEmmanuel Vadot clock-names = "clk_xin", "clk_ahb"; 294*f126890aSEmmanuel Vadot clocks = <&clkc 21>, <&clkc 32>; 295*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 296*f126890aSEmmanuel Vadot interrupts = <0 24 4>; 297*f126890aSEmmanuel Vadot reg = <0xe0100000 0x1000>; 298*f126890aSEmmanuel Vadot }; 299*f126890aSEmmanuel Vadot 300*f126890aSEmmanuel Vadot sdhci1: mmc@e0101000 { 301*f126890aSEmmanuel Vadot compatible = "arasan,sdhci-8.9a"; 302*f126890aSEmmanuel Vadot status = "disabled"; 303*f126890aSEmmanuel Vadot clock-names = "clk_xin", "clk_ahb"; 304*f126890aSEmmanuel Vadot clocks = <&clkc 22>, <&clkc 33>; 305*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 306*f126890aSEmmanuel Vadot interrupts = <0 47 4>; 307*f126890aSEmmanuel Vadot reg = <0xe0101000 0x1000>; 308*f126890aSEmmanuel Vadot }; 309*f126890aSEmmanuel Vadot 310*f126890aSEmmanuel Vadot slcr: slcr@f8000000 { 311*f126890aSEmmanuel Vadot #address-cells = <1>; 312*f126890aSEmmanuel Vadot #size-cells = <1>; 313*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-slcr", "syscon", "simple-mfd"; 314*f126890aSEmmanuel Vadot reg = <0xF8000000 0x1000>; 315*f126890aSEmmanuel Vadot ranges; 316*f126890aSEmmanuel Vadot clkc: clkc@100 { 317*f126890aSEmmanuel Vadot #clock-cells = <1>; 318*f126890aSEmmanuel Vadot compatible = "xlnx,ps7-clkc"; 319*f126890aSEmmanuel Vadot fclk-enable = <0>; 320*f126890aSEmmanuel Vadot clock-output-names = "armpll", "ddrpll", "iopll", "cpu_6or4x", 321*f126890aSEmmanuel Vadot "cpu_3or2x", "cpu_2x", "cpu_1x", "ddr2x", "ddr3x", 322*f126890aSEmmanuel Vadot "dci", "lqspi", "smc", "pcap", "gem0", "gem1", 323*f126890aSEmmanuel Vadot "fclk0", "fclk1", "fclk2", "fclk3", "can0", "can1", 324*f126890aSEmmanuel Vadot "sdio0", "sdio1", "uart0", "uart1", "spi0", "spi1", 325*f126890aSEmmanuel Vadot "dma", "usb0_aper", "usb1_aper", "gem0_aper", 326*f126890aSEmmanuel Vadot "gem1_aper", "sdio0_aper", "sdio1_aper", 327*f126890aSEmmanuel Vadot "spi0_aper", "spi1_aper", "can0_aper", "can1_aper", 328*f126890aSEmmanuel Vadot "i2c0_aper", "i2c1_aper", "uart0_aper", "uart1_aper", 329*f126890aSEmmanuel Vadot "gpio_aper", "lqspi_aper", "smc_aper", "swdt", 330*f126890aSEmmanuel Vadot "dbg_trc", "dbg_apb"; 331*f126890aSEmmanuel Vadot reg = <0x100 0x100>; 332*f126890aSEmmanuel Vadot }; 333*f126890aSEmmanuel Vadot 334*f126890aSEmmanuel Vadot rstc: rstc@200 { 335*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-reset"; 336*f126890aSEmmanuel Vadot reg = <0x200 0x48>; 337*f126890aSEmmanuel Vadot #reset-cells = <1>; 338*f126890aSEmmanuel Vadot syscon = <&slcr>; 339*f126890aSEmmanuel Vadot }; 340*f126890aSEmmanuel Vadot 341*f126890aSEmmanuel Vadot pinctrl0: pinctrl@700 { 342*f126890aSEmmanuel Vadot compatible = "xlnx,pinctrl-zynq"; 343*f126890aSEmmanuel Vadot reg = <0x700 0x200>; 344*f126890aSEmmanuel Vadot syscon = <&slcr>; 345*f126890aSEmmanuel Vadot }; 346*f126890aSEmmanuel Vadot }; 347*f126890aSEmmanuel Vadot 348*f126890aSEmmanuel Vadot dmac_s: dma-controller@f8003000 { 349*f126890aSEmmanuel Vadot compatible = "arm,pl330", "arm,primecell"; 350*f126890aSEmmanuel Vadot reg = <0xf8003000 0x1000>; 351*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 352*f126890aSEmmanuel Vadot /* 353*f126890aSEmmanuel Vadot * interrupt-names = "abort", "dma0", "dma1", "dma2", "dma3", 354*f126890aSEmmanuel Vadot * "dma4", "dma5", "dma6", "dma7"; 355*f126890aSEmmanuel Vadot */ 356*f126890aSEmmanuel Vadot interrupts = <0 13 4>, 357*f126890aSEmmanuel Vadot <0 14 4>, <0 15 4>, 358*f126890aSEmmanuel Vadot <0 16 4>, <0 17 4>, 359*f126890aSEmmanuel Vadot <0 40 4>, <0 41 4>, 360*f126890aSEmmanuel Vadot <0 42 4>, <0 43 4>; 361*f126890aSEmmanuel Vadot #dma-cells = <1>; 362*f126890aSEmmanuel Vadot clocks = <&clkc 27>; 363*f126890aSEmmanuel Vadot clock-names = "apb_pclk"; 364*f126890aSEmmanuel Vadot }; 365*f126890aSEmmanuel Vadot 366*f126890aSEmmanuel Vadot devcfg: devcfg@f8007000 { 367*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-devcfg-1.0"; 368*f126890aSEmmanuel Vadot reg = <0xf8007000 0x100>; 369*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 370*f126890aSEmmanuel Vadot interrupts = <0 8 4>; 371*f126890aSEmmanuel Vadot clocks = <&clkc 12>; 372*f126890aSEmmanuel Vadot clock-names = "ref_clk"; 373*f126890aSEmmanuel Vadot syscon = <&slcr>; 374*f126890aSEmmanuel Vadot }; 375*f126890aSEmmanuel Vadot 376*f126890aSEmmanuel Vadot global_timer: timer@f8f00200 { 377*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9-global-timer"; 378*f126890aSEmmanuel Vadot reg = <0xf8f00200 0x20>; 379*f126890aSEmmanuel Vadot interrupts = <1 11 0x301>; 380*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 381*f126890aSEmmanuel Vadot clocks = <&clkc 4>; 382*f126890aSEmmanuel Vadot }; 383*f126890aSEmmanuel Vadot 384*f126890aSEmmanuel Vadot ttc0: timer@f8001000 { 385*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 386*f126890aSEmmanuel Vadot interrupts = <0 10 4>, <0 11 4>, <0 12 4>; 387*f126890aSEmmanuel Vadot compatible = "cdns,ttc"; 388*f126890aSEmmanuel Vadot clocks = <&clkc 6>; 389*f126890aSEmmanuel Vadot reg = <0xF8001000 0x1000>; 390*f126890aSEmmanuel Vadot }; 391*f126890aSEmmanuel Vadot 392*f126890aSEmmanuel Vadot ttc1: timer@f8002000 { 393*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 394*f126890aSEmmanuel Vadot interrupts = <0 37 4>, <0 38 4>, <0 39 4>; 395*f126890aSEmmanuel Vadot compatible = "cdns,ttc"; 396*f126890aSEmmanuel Vadot clocks = <&clkc 6>; 397*f126890aSEmmanuel Vadot reg = <0xF8002000 0x1000>; 398*f126890aSEmmanuel Vadot }; 399*f126890aSEmmanuel Vadot 400*f126890aSEmmanuel Vadot scutimer: timer@f8f00600 { 401*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 402*f126890aSEmmanuel Vadot interrupts = <1 13 0x301>; 403*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9-twd-timer"; 404*f126890aSEmmanuel Vadot reg = <0xf8f00600 0x20>; 405*f126890aSEmmanuel Vadot clocks = <&clkc 4>; 406*f126890aSEmmanuel Vadot }; 407*f126890aSEmmanuel Vadot 408*f126890aSEmmanuel Vadot usb0: usb@e0002000 { 409*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-usb-2.20a", "chipidea,usb2"; 410*f126890aSEmmanuel Vadot status = "disabled"; 411*f126890aSEmmanuel Vadot clocks = <&clkc 28>; 412*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 413*f126890aSEmmanuel Vadot interrupts = <0 21 4>; 414*f126890aSEmmanuel Vadot reg = <0xe0002000 0x1000>; 415*f126890aSEmmanuel Vadot phy_type = "ulpi"; 416*f126890aSEmmanuel Vadot }; 417*f126890aSEmmanuel Vadot 418*f126890aSEmmanuel Vadot usb1: usb@e0003000 { 419*f126890aSEmmanuel Vadot compatible = "xlnx,zynq-usb-2.20a", "chipidea,usb2"; 420*f126890aSEmmanuel Vadot status = "disabled"; 421*f126890aSEmmanuel Vadot clocks = <&clkc 29>; 422*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 423*f126890aSEmmanuel Vadot interrupts = <0 44 4>; 424*f126890aSEmmanuel Vadot reg = <0xe0003000 0x1000>; 425*f126890aSEmmanuel Vadot phy_type = "ulpi"; 426*f126890aSEmmanuel Vadot }; 427*f126890aSEmmanuel Vadot 428*f126890aSEmmanuel Vadot watchdog0: watchdog@f8005000 { 429*f126890aSEmmanuel Vadot clocks = <&clkc 45>; 430*f126890aSEmmanuel Vadot compatible = "cdns,wdt-r1p2"; 431*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 432*f126890aSEmmanuel Vadot interrupts = <0 9 1>; 433*f126890aSEmmanuel Vadot reg = <0xf8005000 0x1000>; 434*f126890aSEmmanuel Vadot timeout-sec = <10>; 435*f126890aSEmmanuel Vadot }; 436*f126890aSEmmanuel Vadot 437*f126890aSEmmanuel Vadot etb@f8801000 { 438*f126890aSEmmanuel Vadot compatible = "arm,coresight-etb10", "arm,primecell"; 439*f126890aSEmmanuel Vadot reg = <0xf8801000 0x1000>; 440*f126890aSEmmanuel Vadot clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>; 441*f126890aSEmmanuel Vadot clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; 442*f126890aSEmmanuel Vadot in-ports { 443*f126890aSEmmanuel Vadot port { 444*f126890aSEmmanuel Vadot etb_in_port: endpoint { 445*f126890aSEmmanuel Vadot remote-endpoint = <&replicator_out_port1>; 446*f126890aSEmmanuel Vadot }; 447*f126890aSEmmanuel Vadot }; 448*f126890aSEmmanuel Vadot }; 449*f126890aSEmmanuel Vadot }; 450*f126890aSEmmanuel Vadot 451*f126890aSEmmanuel Vadot tpiu@f8803000 { 452*f126890aSEmmanuel Vadot compatible = "arm,coresight-tpiu", "arm,primecell"; 453*f126890aSEmmanuel Vadot reg = <0xf8803000 0x1000>; 454*f126890aSEmmanuel Vadot clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>; 455*f126890aSEmmanuel Vadot clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; 456*f126890aSEmmanuel Vadot in-ports { 457*f126890aSEmmanuel Vadot port { 458*f126890aSEmmanuel Vadot tpiu_in_port: endpoint { 459*f126890aSEmmanuel Vadot remote-endpoint = <&replicator_out_port0>; 460*f126890aSEmmanuel Vadot }; 461*f126890aSEmmanuel Vadot }; 462*f126890aSEmmanuel Vadot }; 463*f126890aSEmmanuel Vadot }; 464*f126890aSEmmanuel Vadot 465*f126890aSEmmanuel Vadot funnel@f8804000 { 466*f126890aSEmmanuel Vadot compatible = "arm,coresight-static-funnel", "arm,primecell"; 467*f126890aSEmmanuel Vadot reg = <0xf8804000 0x1000>; 468*f126890aSEmmanuel Vadot clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>; 469*f126890aSEmmanuel Vadot clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; 470*f126890aSEmmanuel Vadot 471*f126890aSEmmanuel Vadot /* funnel output ports */ 472*f126890aSEmmanuel Vadot out-ports { 473*f126890aSEmmanuel Vadot port { 474*f126890aSEmmanuel Vadot funnel_out_port: endpoint { 475*f126890aSEmmanuel Vadot remote-endpoint = 476*f126890aSEmmanuel Vadot <&replicator_in_port0>; 477*f126890aSEmmanuel Vadot }; 478*f126890aSEmmanuel Vadot }; 479*f126890aSEmmanuel Vadot }; 480*f126890aSEmmanuel Vadot 481*f126890aSEmmanuel Vadot in-ports { 482*f126890aSEmmanuel Vadot #address-cells = <1>; 483*f126890aSEmmanuel Vadot #size-cells = <0>; 484*f126890aSEmmanuel Vadot 485*f126890aSEmmanuel Vadot /* funnel input ports */ 486*f126890aSEmmanuel Vadot port@0 { 487*f126890aSEmmanuel Vadot reg = <0>; 488*f126890aSEmmanuel Vadot funnel0_in_port0: endpoint { 489*f126890aSEmmanuel Vadot remote-endpoint = <&ptm0_out_port>; 490*f126890aSEmmanuel Vadot }; 491*f126890aSEmmanuel Vadot }; 492*f126890aSEmmanuel Vadot 493*f126890aSEmmanuel Vadot port@1 { 494*f126890aSEmmanuel Vadot reg = <1>; 495*f126890aSEmmanuel Vadot funnel0_in_port1: endpoint { 496*f126890aSEmmanuel Vadot remote-endpoint = <&ptm1_out_port>; 497*f126890aSEmmanuel Vadot }; 498*f126890aSEmmanuel Vadot }; 499*f126890aSEmmanuel Vadot 500*f126890aSEmmanuel Vadot port@2 { 501*f126890aSEmmanuel Vadot reg = <2>; 502*f126890aSEmmanuel Vadot funnel0_in_port2: endpoint { 503*f126890aSEmmanuel Vadot }; 504*f126890aSEmmanuel Vadot }; 505*f126890aSEmmanuel Vadot /* The other input ports are not connect to anything */ 506*f126890aSEmmanuel Vadot }; 507*f126890aSEmmanuel Vadot }; 508*f126890aSEmmanuel Vadot 509*f126890aSEmmanuel Vadot ptm@f889c000 { 510*f126890aSEmmanuel Vadot compatible = "arm,coresight-etm3x", "arm,primecell"; 511*f126890aSEmmanuel Vadot reg = <0xf889c000 0x1000>; 512*f126890aSEmmanuel Vadot clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>; 513*f126890aSEmmanuel Vadot clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; 514*f126890aSEmmanuel Vadot cpu = <&cpu0>; 515*f126890aSEmmanuel Vadot out-ports { 516*f126890aSEmmanuel Vadot port { 517*f126890aSEmmanuel Vadot ptm0_out_port: endpoint { 518*f126890aSEmmanuel Vadot remote-endpoint = <&funnel0_in_port0>; 519*f126890aSEmmanuel Vadot }; 520*f126890aSEmmanuel Vadot }; 521*f126890aSEmmanuel Vadot }; 522*f126890aSEmmanuel Vadot }; 523*f126890aSEmmanuel Vadot 524*f126890aSEmmanuel Vadot ptm@f889d000 { 525*f126890aSEmmanuel Vadot compatible = "arm,coresight-etm3x", "arm,primecell"; 526*f126890aSEmmanuel Vadot reg = <0xf889d000 0x1000>; 527*f126890aSEmmanuel Vadot clocks = <&clkc 27>, <&clkc 46>, <&clkc 47>; 528*f126890aSEmmanuel Vadot clock-names = "apb_pclk", "dbg_trc", "dbg_apb"; 529*f126890aSEmmanuel Vadot cpu = <&cpu1>; 530*f126890aSEmmanuel Vadot out-ports { 531*f126890aSEmmanuel Vadot port { 532*f126890aSEmmanuel Vadot ptm1_out_port: endpoint { 533*f126890aSEmmanuel Vadot remote-endpoint = <&funnel0_in_port1>; 534*f126890aSEmmanuel Vadot }; 535*f126890aSEmmanuel Vadot }; 536*f126890aSEmmanuel Vadot }; 537*f126890aSEmmanuel Vadot }; 538*f126890aSEmmanuel Vadot }; 539*f126890aSEmmanuel Vadot}; 540