1*0e8011faSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only OR MIT 2*0e8011faSEmmanuel Vadot/* 3*0e8011faSEmmanuel Vadot * Device Tree file for the MAIN domain peripherals shared by AM62P and J722S 4*0e8011faSEmmanuel Vadot * 5*0e8011faSEmmanuel Vadot * Copyright (C) 2023-2024 Texas Instruments Incorporated - https://www.ti.com/ 6*0e8011faSEmmanuel Vadot */ 7*0e8011faSEmmanuel Vadot 8*0e8011faSEmmanuel Vadot&cbass_main { 9*0e8011faSEmmanuel Vadot oc_sram: sram@70000000 { 10*0e8011faSEmmanuel Vadot compatible = "mmio-sram"; 11*0e8011faSEmmanuel Vadot #address-cells = <1>; 12*0e8011faSEmmanuel Vadot #size-cells = <1>; 13*0e8011faSEmmanuel Vadot }; 14*0e8011faSEmmanuel Vadot 15*0e8011faSEmmanuel Vadot gic500: interrupt-controller@1800000 { 16*0e8011faSEmmanuel Vadot compatible = "arm,gic-v3"; 17*0e8011faSEmmanuel Vadot #address-cells = <2>; 18*0e8011faSEmmanuel Vadot #size-cells = <2>; 19*0e8011faSEmmanuel Vadot ranges; 20*0e8011faSEmmanuel Vadot #interrupt-cells = <3>; 21*0e8011faSEmmanuel Vadot interrupt-controller; 22*0e8011faSEmmanuel Vadot reg = <0x00 0x01800000 0x00 0x10000>, /* GICD */ 23*0e8011faSEmmanuel Vadot <0x00 0x01880000 0x00 0xc0000>, /* GICR */ 24*0e8011faSEmmanuel Vadot <0x01 0x00000000 0x00 0x2000>, /* GICC */ 25*0e8011faSEmmanuel Vadot <0x01 0x00010000 0x00 0x1000>, /* GICH */ 26*0e8011faSEmmanuel Vadot <0x01 0x00020000 0x00 0x2000>; /* GICV */ 27*0e8011faSEmmanuel Vadot /* 28*0e8011faSEmmanuel Vadot * vcpumntirq: 29*0e8011faSEmmanuel Vadot * virtual CPU interface maintenance interrupt 30*0e8011faSEmmanuel Vadot */ 31*0e8011faSEmmanuel Vadot interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>; 32*0e8011faSEmmanuel Vadot 33*0e8011faSEmmanuel Vadot gic_its: msi-controller@1820000 { 34*0e8011faSEmmanuel Vadot compatible = "arm,gic-v3-its"; 35*0e8011faSEmmanuel Vadot reg = <0x00 0x01820000 0x00 0x10000>; 36*0e8011faSEmmanuel Vadot socionext,synquacer-pre-its = <0x1000000 0x400000>; 37*0e8011faSEmmanuel Vadot msi-controller; 38*0e8011faSEmmanuel Vadot #msi-cells = <1>; 39*0e8011faSEmmanuel Vadot }; 40*0e8011faSEmmanuel Vadot }; 41*0e8011faSEmmanuel Vadot 42*0e8011faSEmmanuel Vadot main_conf: bus@100000 { 43*0e8011faSEmmanuel Vadot compatible = "simple-bus"; 44*0e8011faSEmmanuel Vadot reg = <0x00 0x00100000 0x00 0x20000>; 45*0e8011faSEmmanuel Vadot #address-cells = <1>; 46*0e8011faSEmmanuel Vadot #size-cells = <1>; 47*0e8011faSEmmanuel Vadot ranges = <0x00 0x00 0x00100000 0x20000>; 48*0e8011faSEmmanuel Vadot 49*0e8011faSEmmanuel Vadot phy_gmii_sel: phy@4044 { 50*0e8011faSEmmanuel Vadot compatible = "ti,am654-phy-gmii-sel"; 51*0e8011faSEmmanuel Vadot reg = <0x4044 0x8>; 52*0e8011faSEmmanuel Vadot #phy-cells = <1>; 53*0e8011faSEmmanuel Vadot }; 54*0e8011faSEmmanuel Vadot 55*0e8011faSEmmanuel Vadot epwm_tbclk: clock-controller@4130 { 56*0e8011faSEmmanuel Vadot compatible = "ti,am62-epwm-tbclk"; 57*0e8011faSEmmanuel Vadot reg = <0x4130 0x4>; 58*0e8011faSEmmanuel Vadot #clock-cells = <1>; 59*0e8011faSEmmanuel Vadot }; 60*0e8011faSEmmanuel Vadot }; 61*0e8011faSEmmanuel Vadot 62*0e8011faSEmmanuel Vadot dmss: bus@48000000 { 63*0e8011faSEmmanuel Vadot compatible = "simple-bus"; 64*0e8011faSEmmanuel Vadot #address-cells = <2>; 65*0e8011faSEmmanuel Vadot #size-cells = <2>; 66*0e8011faSEmmanuel Vadot dma-ranges; 67*0e8011faSEmmanuel Vadot ranges = <0x00 0x48000000 0x00 0x48000000 0x00 0x06400000>; 68*0e8011faSEmmanuel Vadot bootph-all; 69*0e8011faSEmmanuel Vadot 70*0e8011faSEmmanuel Vadot ti,sci-dev-id = <25>; 71*0e8011faSEmmanuel Vadot 72*0e8011faSEmmanuel Vadot secure_proxy_main: mailbox@4d000000 { 73*0e8011faSEmmanuel Vadot compatible = "ti,am654-secure-proxy"; 74*0e8011faSEmmanuel Vadot #mbox-cells = <1>; 75*0e8011faSEmmanuel Vadot reg-names = "target_data", "rt", "scfg"; 76*0e8011faSEmmanuel Vadot reg = <0x00 0x4d000000 0x00 0x80000>, 77*0e8011faSEmmanuel Vadot <0x00 0x4a600000 0x00 0x80000>, 78*0e8011faSEmmanuel Vadot <0x00 0x4a400000 0x00 0x80000>; 79*0e8011faSEmmanuel Vadot interrupt-names = "rx_012"; 80*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; 81*0e8011faSEmmanuel Vadot bootph-all; 82*0e8011faSEmmanuel Vadot }; 83*0e8011faSEmmanuel Vadot 84*0e8011faSEmmanuel Vadot inta_main_dmss: interrupt-controller@48000000 { 85*0e8011faSEmmanuel Vadot compatible = "ti,sci-inta"; 86*0e8011faSEmmanuel Vadot reg = <0x00 0x48000000 0x00 0x100000>; 87*0e8011faSEmmanuel Vadot #interrupt-cells = <0>; 88*0e8011faSEmmanuel Vadot interrupt-controller; 89*0e8011faSEmmanuel Vadot interrupt-parent = <&gic500>; 90*0e8011faSEmmanuel Vadot msi-controller; 91*0e8011faSEmmanuel Vadot ti,sci = <&dmsc>; 92*0e8011faSEmmanuel Vadot ti,sci-dev-id = <28>; 93*0e8011faSEmmanuel Vadot ti,unmapped-event-sources = <&main_bcdma>, <&main_pktdma>; 94*0e8011faSEmmanuel Vadot }; 95*0e8011faSEmmanuel Vadot 96*0e8011faSEmmanuel Vadot main_bcdma: dma-controller@485c0100 { 97*0e8011faSEmmanuel Vadot compatible = "ti,am64-dmss-bcdma"; 98*0e8011faSEmmanuel Vadot reg = <0x00 0x485c0100 0x00 0x100>, 99*0e8011faSEmmanuel Vadot <0x00 0x4c000000 0x00 0x20000>, 100*0e8011faSEmmanuel Vadot <0x00 0x4a820000 0x00 0x20000>, 101*0e8011faSEmmanuel Vadot <0x00 0x4aa40000 0x00 0x20000>, 102*0e8011faSEmmanuel Vadot <0x00 0x4bc00000 0x00 0x100000>, 103*0e8011faSEmmanuel Vadot <0x00 0x48600000 0x00 0x8000>, 104*0e8011faSEmmanuel Vadot <0x00 0x484a4000 0x00 0x2000>, 105*0e8011faSEmmanuel Vadot <0x00 0x484c2000 0x00 0x2000>, 106*0e8011faSEmmanuel Vadot <0x00 0x48420000 0x00 0x2000>; 107*0e8011faSEmmanuel Vadot reg-names = "gcfg", "bchanrt", "rchanrt", "tchanrt", "ringrt", 108*0e8011faSEmmanuel Vadot "ring", "tchan", "rchan", "bchan"; 109*0e8011faSEmmanuel Vadot msi-parent = <&inta_main_dmss>; 110*0e8011faSEmmanuel Vadot #dma-cells = <3>; 111*0e8011faSEmmanuel Vadot 112*0e8011faSEmmanuel Vadot ti,sci = <&dmsc>; 113*0e8011faSEmmanuel Vadot ti,sci-dev-id = <26>; 114*0e8011faSEmmanuel Vadot ti,sci-rm-range-bchan = <0x20>; /* BLOCK_COPY_CHAN */ 115*0e8011faSEmmanuel Vadot ti,sci-rm-range-rchan = <0x21>; /* SPLIT_TR_RX_CHAN */ 116*0e8011faSEmmanuel Vadot ti,sci-rm-range-tchan = <0x22>; /* SPLIT_TR_TX_CHAN */ 117*0e8011faSEmmanuel Vadot bootph-all; 118*0e8011faSEmmanuel Vadot }; 119*0e8011faSEmmanuel Vadot 120*0e8011faSEmmanuel Vadot main_pktdma: dma-controller@485c0000 { 121*0e8011faSEmmanuel Vadot compatible = "ti,am64-dmss-pktdma"; 122*0e8011faSEmmanuel Vadot reg = <0x00 0x485c0000 0x00 0x100>, 123*0e8011faSEmmanuel Vadot <0x00 0x4a800000 0x00 0x20000>, 124*0e8011faSEmmanuel Vadot <0x00 0x4aa00000 0x00 0x20000>, 125*0e8011faSEmmanuel Vadot <0x00 0x4b800000 0x00 0x200000>, 126*0e8011faSEmmanuel Vadot <0x00 0x485e0000 0x00 0x10000>, 127*0e8011faSEmmanuel Vadot <0x00 0x484a0000 0x00 0x2000>, 128*0e8011faSEmmanuel Vadot <0x00 0x484c0000 0x00 0x2000>, 129*0e8011faSEmmanuel Vadot <0x00 0x48430000 0x00 0x1000>; 130*0e8011faSEmmanuel Vadot reg-names = "gcfg", "rchanrt", "tchanrt", "ringrt", 131*0e8011faSEmmanuel Vadot "ring", "tchan", "rchan", "rflow"; 132*0e8011faSEmmanuel Vadot msi-parent = <&inta_main_dmss>; 133*0e8011faSEmmanuel Vadot #dma-cells = <2>; 134*0e8011faSEmmanuel Vadot bootph-all; 135*0e8011faSEmmanuel Vadot 136*0e8011faSEmmanuel Vadot ti,sci = <&dmsc>; 137*0e8011faSEmmanuel Vadot ti,sci-dev-id = <30>; 138*0e8011faSEmmanuel Vadot ti,sci-rm-range-tchan = <0x23>, /* UNMAPPED_TX_CHAN */ 139*0e8011faSEmmanuel Vadot <0x24>, /* CPSW_TX_CHAN */ 140*0e8011faSEmmanuel Vadot <0x25>, /* SAUL_TX_0_CHAN */ 141*0e8011faSEmmanuel Vadot <0x26>; /* SAUL_TX_1_CHAN */ 142*0e8011faSEmmanuel Vadot ti,sci-rm-range-tflow = <0x10>, /* RING_UNMAPPED_TX_CHAN */ 143*0e8011faSEmmanuel Vadot <0x11>, /* RING_CPSW_TX_CHAN */ 144*0e8011faSEmmanuel Vadot <0x12>, /* RING_SAUL_TX_0_CHAN */ 145*0e8011faSEmmanuel Vadot <0x13>; /* RING_SAUL_TX_1_CHAN */ 146*0e8011faSEmmanuel Vadot ti,sci-rm-range-rchan = <0x29>, /* UNMAPPED_RX_CHAN */ 147*0e8011faSEmmanuel Vadot <0x2b>, /* CPSW_RX_CHAN */ 148*0e8011faSEmmanuel Vadot <0x2d>, /* SAUL_RX_0_CHAN */ 149*0e8011faSEmmanuel Vadot <0x2f>, /* SAUL_RX_1_CHAN */ 150*0e8011faSEmmanuel Vadot <0x31>, /* SAUL_RX_2_CHAN */ 151*0e8011faSEmmanuel Vadot <0x33>; /* SAUL_RX_3_CHAN */ 152*0e8011faSEmmanuel Vadot ti,sci-rm-range-rflow = <0x2a>, /* FLOW_UNMAPPED_RX_CHAN */ 153*0e8011faSEmmanuel Vadot <0x2c>, /* FLOW_CPSW_RX_CHAN */ 154*0e8011faSEmmanuel Vadot <0x2e>, /* FLOW_SAUL_RX_0/1_CHAN */ 155*0e8011faSEmmanuel Vadot <0x32>; /* FLOW_SAUL_RX_2/3_CHAN */ 156*0e8011faSEmmanuel Vadot }; 157*0e8011faSEmmanuel Vadot }; 158*0e8011faSEmmanuel Vadot 159*0e8011faSEmmanuel Vadot dmss_csi: bus@4e000000 { 160*0e8011faSEmmanuel Vadot compatible = "simple-bus"; 161*0e8011faSEmmanuel Vadot ranges = <0x00 0x4e000000 0x00 0x4e000000 0x00 0x408000>; 162*0e8011faSEmmanuel Vadot #address-cells = <2>; 163*0e8011faSEmmanuel Vadot #size-cells = <2>; 164*0e8011faSEmmanuel Vadot dma-ranges; 165*0e8011faSEmmanuel Vadot ti,sci-dev-id = <198>; 166*0e8011faSEmmanuel Vadot 167*0e8011faSEmmanuel Vadot inta_main_dmss_csi: interrupt-controller@4e400000 { 168*0e8011faSEmmanuel Vadot compatible = "ti,sci-inta"; 169*0e8011faSEmmanuel Vadot reg = <0x00 0x4e400000 0x00 0x8000>; 170*0e8011faSEmmanuel Vadot #interrupt-cells = <0>; 171*0e8011faSEmmanuel Vadot interrupt-controller; 172*0e8011faSEmmanuel Vadot interrupt-parent = <&gic500>; 173*0e8011faSEmmanuel Vadot msi-controller; 174*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 182 TI_SCI_PD_EXCLUSIVE>; 175*0e8011faSEmmanuel Vadot ti,sci = <&dmsc>; 176*0e8011faSEmmanuel Vadot ti,sci-dev-id = <200>; 177*0e8011faSEmmanuel Vadot ti,interrupt-ranges = <0 237 8>; 178*0e8011faSEmmanuel Vadot ti,unmapped-event-sources = <&main_bcdma_csi>; 179*0e8011faSEmmanuel Vadot }; 180*0e8011faSEmmanuel Vadot 181*0e8011faSEmmanuel Vadot main_bcdma_csi: dma-controller@4e230000 { 182*0e8011faSEmmanuel Vadot compatible = "ti,am62a-dmss-bcdma-csirx"; 183*0e8011faSEmmanuel Vadot reg = <0x00 0x4e230000 0x00 0x100>, 184*0e8011faSEmmanuel Vadot <0x00 0x4e180000 0x00 0x8000>, 185*0e8011faSEmmanuel Vadot <0x00 0x4e100000 0x00 0x10000>; 186*0e8011faSEmmanuel Vadot reg-names = "gcfg", "rchanrt", "ringrt"; 187*0e8011faSEmmanuel Vadot #dma-cells = <3>; 188*0e8011faSEmmanuel Vadot msi-parent = <&inta_main_dmss_csi>; 189*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 182 TI_SCI_PD_EXCLUSIVE>; 190*0e8011faSEmmanuel Vadot ti,sci = <&dmsc>; 191*0e8011faSEmmanuel Vadot ti,sci-dev-id = <199>; 192*0e8011faSEmmanuel Vadot ti,sci-rm-range-rchan = <0x21>; 193*0e8011faSEmmanuel Vadot }; 194*0e8011faSEmmanuel Vadot }; 195*0e8011faSEmmanuel Vadot 196*0e8011faSEmmanuel Vadot dmsc: system-controller@44043000 { 197*0e8011faSEmmanuel Vadot compatible = "ti,k2g-sci"; 198*0e8011faSEmmanuel Vadot ti,host-id = <12>; 199*0e8011faSEmmanuel Vadot mbox-names = "rx", "tx"; 200*0e8011faSEmmanuel Vadot mboxes = <&secure_proxy_main 12>, 201*0e8011faSEmmanuel Vadot <&secure_proxy_main 13>; 202*0e8011faSEmmanuel Vadot reg-names = "debug_messages"; 203*0e8011faSEmmanuel Vadot reg = <0x00 0x44043000 0x00 0xfe0>; 204*0e8011faSEmmanuel Vadot bootph-all; 205*0e8011faSEmmanuel Vadot 206*0e8011faSEmmanuel Vadot k3_pds: power-controller { 207*0e8011faSEmmanuel Vadot compatible = "ti,sci-pm-domain"; 208*0e8011faSEmmanuel Vadot #power-domain-cells = <2>; 209*0e8011faSEmmanuel Vadot bootph-all; 210*0e8011faSEmmanuel Vadot }; 211*0e8011faSEmmanuel Vadot 212*0e8011faSEmmanuel Vadot k3_clks: clock-controller { 213*0e8011faSEmmanuel Vadot compatible = "ti,k2g-sci-clk"; 214*0e8011faSEmmanuel Vadot #clock-cells = <2>; 215*0e8011faSEmmanuel Vadot bootph-all; 216*0e8011faSEmmanuel Vadot }; 217*0e8011faSEmmanuel Vadot 218*0e8011faSEmmanuel Vadot k3_reset: reset-controller { 219*0e8011faSEmmanuel Vadot compatible = "ti,sci-reset"; 220*0e8011faSEmmanuel Vadot #reset-cells = <2>; 221*0e8011faSEmmanuel Vadot bootph-all; 222*0e8011faSEmmanuel Vadot }; 223*0e8011faSEmmanuel Vadot }; 224*0e8011faSEmmanuel Vadot 225*0e8011faSEmmanuel Vadot crypto: crypto@40900000 { 226*0e8011faSEmmanuel Vadot compatible = "ti,am62-sa3ul"; 227*0e8011faSEmmanuel Vadot reg = <0x00 0x40900000 0x00 0x1200>; 228*0e8011faSEmmanuel Vadot #address-cells = <2>; 229*0e8011faSEmmanuel Vadot #size-cells = <2>; 230*0e8011faSEmmanuel Vadot dmas = <&main_pktdma 0xf501 0>, <&main_pktdma 0x7506 0>, 231*0e8011faSEmmanuel Vadot <&main_pktdma 0x7507 0>; 232*0e8011faSEmmanuel Vadot dma-names = "tx", "rx1", "rx2"; 233*0e8011faSEmmanuel Vadot }; 234*0e8011faSEmmanuel Vadot 235*0e8011faSEmmanuel Vadot secure_proxy_sa3: mailbox@43600000 { 236*0e8011faSEmmanuel Vadot compatible = "ti,am654-secure-proxy"; 237*0e8011faSEmmanuel Vadot #mbox-cells = <1>; 238*0e8011faSEmmanuel Vadot reg-names = "target_data", "rt", "scfg"; 239*0e8011faSEmmanuel Vadot reg = <0x00 0x43600000 0x00 0x10000>, 240*0e8011faSEmmanuel Vadot <0x00 0x44880000 0x00 0x20000>, 241*0e8011faSEmmanuel Vadot <0x00 0x44860000 0x00 0x20000>; 242*0e8011faSEmmanuel Vadot /* 243*0e8011faSEmmanuel Vadot * Marked Disabled: 244*0e8011faSEmmanuel Vadot * Node is incomplete as it is meant for bootloaders and 245*0e8011faSEmmanuel Vadot * firmware on non-MPU processors 246*0e8011faSEmmanuel Vadot */ 247*0e8011faSEmmanuel Vadot status = "disabled"; 248*0e8011faSEmmanuel Vadot bootph-all; 249*0e8011faSEmmanuel Vadot }; 250*0e8011faSEmmanuel Vadot 251*0e8011faSEmmanuel Vadot main_pmx0: pinctrl@f4000 { 252*0e8011faSEmmanuel Vadot compatible = "pinctrl-single"; 253*0e8011faSEmmanuel Vadot reg = <0x00 0xf4000 0x00 0x2ac>; 254*0e8011faSEmmanuel Vadot #pinctrl-cells = <1>; 255*0e8011faSEmmanuel Vadot pinctrl-single,register-width = <32>; 256*0e8011faSEmmanuel Vadot pinctrl-single,function-mask = <0xffffffff>; 257*0e8011faSEmmanuel Vadot bootph-all; 258*0e8011faSEmmanuel Vadot }; 259*0e8011faSEmmanuel Vadot 260*0e8011faSEmmanuel Vadot main_esm: esm@420000 { 261*0e8011faSEmmanuel Vadot compatible = "ti,j721e-esm"; 262*0e8011faSEmmanuel Vadot reg = <0x00 0x420000 0x00 0x1000>; 263*0e8011faSEmmanuel Vadot ti,esm-pins = <160>, <161>, <162>, <163>, <177>, <178>; 264*0e8011faSEmmanuel Vadot bootph-pre-ram; 265*0e8011faSEmmanuel Vadot }; 266*0e8011faSEmmanuel Vadot 267*0e8011faSEmmanuel Vadot main_timer0: timer@2400000 { 268*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 269*0e8011faSEmmanuel Vadot reg = <0x00 0x2400000 0x00 0x400>; 270*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>; 271*0e8011faSEmmanuel Vadot clocks = <&k3_clks 36 2>; 272*0e8011faSEmmanuel Vadot clock-names = "fck"; 273*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 36 2>; 274*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 36 3>; 275*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 36 TI_SCI_PD_EXCLUSIVE>; 276*0e8011faSEmmanuel Vadot ti,timer-pwm; 277*0e8011faSEmmanuel Vadot bootph-all; 278*0e8011faSEmmanuel Vadot }; 279*0e8011faSEmmanuel Vadot 280*0e8011faSEmmanuel Vadot main_timer1: timer@2410000 { 281*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 282*0e8011faSEmmanuel Vadot reg = <0x00 0x2410000 0x00 0x400>; 283*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>; 284*0e8011faSEmmanuel Vadot clocks = <&k3_clks 37 2>; 285*0e8011faSEmmanuel Vadot clock-names = "fck"; 286*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 37 2>; 287*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 37 3>; 288*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 37 TI_SCI_PD_EXCLUSIVE>; 289*0e8011faSEmmanuel Vadot ti,timer-pwm; 290*0e8011faSEmmanuel Vadot }; 291*0e8011faSEmmanuel Vadot 292*0e8011faSEmmanuel Vadot main_timer2: timer@2420000 { 293*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 294*0e8011faSEmmanuel Vadot reg = <0x00 0x2420000 0x00 0x400>; 295*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>; 296*0e8011faSEmmanuel Vadot clocks = <&k3_clks 38 2>; 297*0e8011faSEmmanuel Vadot clock-names = "fck"; 298*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 38 2>; 299*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 38 3>; 300*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 38 TI_SCI_PD_EXCLUSIVE>; 301*0e8011faSEmmanuel Vadot ti,timer-pwm; 302*0e8011faSEmmanuel Vadot }; 303*0e8011faSEmmanuel Vadot 304*0e8011faSEmmanuel Vadot main_timer3: timer@2430000 { 305*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 306*0e8011faSEmmanuel Vadot reg = <0x00 0x2430000 0x00 0x400>; 307*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>; 308*0e8011faSEmmanuel Vadot clocks = <&k3_clks 39 2>; 309*0e8011faSEmmanuel Vadot clock-names = "fck"; 310*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 39 2>; 311*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 39 3>; 312*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 39 TI_SCI_PD_EXCLUSIVE>; 313*0e8011faSEmmanuel Vadot ti,timer-pwm; 314*0e8011faSEmmanuel Vadot }; 315*0e8011faSEmmanuel Vadot 316*0e8011faSEmmanuel Vadot main_timer4: timer@2440000 { 317*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 318*0e8011faSEmmanuel Vadot reg = <0x00 0x2440000 0x00 0x400>; 319*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>; 320*0e8011faSEmmanuel Vadot clocks = <&k3_clks 40 2>; 321*0e8011faSEmmanuel Vadot clock-names = "fck"; 322*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 40 2>; 323*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 40 3>; 324*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 40 TI_SCI_PD_EXCLUSIVE>; 325*0e8011faSEmmanuel Vadot ti,timer-pwm; 326*0e8011faSEmmanuel Vadot }; 327*0e8011faSEmmanuel Vadot 328*0e8011faSEmmanuel Vadot main_timer5: timer@2450000 { 329*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 330*0e8011faSEmmanuel Vadot reg = <0x00 0x2450000 0x00 0x400>; 331*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>; 332*0e8011faSEmmanuel Vadot clocks = <&k3_clks 41 2>; 333*0e8011faSEmmanuel Vadot clock-names = "fck"; 334*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 41 2>; 335*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 41 3>; 336*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 41 TI_SCI_PD_EXCLUSIVE>; 337*0e8011faSEmmanuel Vadot ti,timer-pwm; 338*0e8011faSEmmanuel Vadot }; 339*0e8011faSEmmanuel Vadot 340*0e8011faSEmmanuel Vadot main_timer6: timer@2460000 { 341*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 342*0e8011faSEmmanuel Vadot reg = <0x00 0x2460000 0x00 0x400>; 343*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>; 344*0e8011faSEmmanuel Vadot clocks = <&k3_clks 42 2>; 345*0e8011faSEmmanuel Vadot clock-names = "fck"; 346*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 42 2>; 347*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 42 3>; 348*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 42 TI_SCI_PD_EXCLUSIVE>; 349*0e8011faSEmmanuel Vadot ti,timer-pwm; 350*0e8011faSEmmanuel Vadot }; 351*0e8011faSEmmanuel Vadot 352*0e8011faSEmmanuel Vadot main_timer7: timer@2470000 { 353*0e8011faSEmmanuel Vadot compatible = "ti,am654-timer"; 354*0e8011faSEmmanuel Vadot reg = <0x00 0x2470000 0x00 0x400>; 355*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>; 356*0e8011faSEmmanuel Vadot clocks = <&k3_clks 43 2>; 357*0e8011faSEmmanuel Vadot clock-names = "fck"; 358*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 43 2>; 359*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 43 3>; 360*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 43 TI_SCI_PD_EXCLUSIVE>; 361*0e8011faSEmmanuel Vadot ti,timer-pwm; 362*0e8011faSEmmanuel Vadot }; 363*0e8011faSEmmanuel Vadot 364*0e8011faSEmmanuel Vadot main_uart0: serial@2800000 { 365*0e8011faSEmmanuel Vadot compatible = "ti,am64-uart", "ti,am654-uart"; 366*0e8011faSEmmanuel Vadot reg = <0x00 0x02800000 0x00 0x100>; 367*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 178 IRQ_TYPE_LEVEL_HIGH>; 368*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 146 TI_SCI_PD_EXCLUSIVE>; 369*0e8011faSEmmanuel Vadot clocks = <&k3_clks 146 0>; 370*0e8011faSEmmanuel Vadot clock-names = "fclk"; 371*0e8011faSEmmanuel Vadot status = "disabled"; 372*0e8011faSEmmanuel Vadot }; 373*0e8011faSEmmanuel Vadot 374*0e8011faSEmmanuel Vadot main_uart1: serial@2810000 { 375*0e8011faSEmmanuel Vadot compatible = "ti,am64-uart", "ti,am654-uart"; 376*0e8011faSEmmanuel Vadot reg = <0x00 0x02810000 0x00 0x100>; 377*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 179 IRQ_TYPE_LEVEL_HIGH>; 378*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 152 TI_SCI_PD_EXCLUSIVE>; 379*0e8011faSEmmanuel Vadot clocks = <&k3_clks 152 0>; 380*0e8011faSEmmanuel Vadot clock-names = "fclk"; 381*0e8011faSEmmanuel Vadot status = "disabled"; 382*0e8011faSEmmanuel Vadot }; 383*0e8011faSEmmanuel Vadot 384*0e8011faSEmmanuel Vadot main_uart2: serial@2820000 { 385*0e8011faSEmmanuel Vadot compatible = "ti,am64-uart", "ti,am654-uart"; 386*0e8011faSEmmanuel Vadot reg = <0x00 0x02820000 0x00 0x100>; 387*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 180 IRQ_TYPE_LEVEL_HIGH>; 388*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 153 TI_SCI_PD_EXCLUSIVE>; 389*0e8011faSEmmanuel Vadot clocks = <&k3_clks 153 0>; 390*0e8011faSEmmanuel Vadot clock-names = "fclk"; 391*0e8011faSEmmanuel Vadot status = "disabled"; 392*0e8011faSEmmanuel Vadot }; 393*0e8011faSEmmanuel Vadot 394*0e8011faSEmmanuel Vadot main_uart3: serial@2830000 { 395*0e8011faSEmmanuel Vadot compatible = "ti,am64-uart", "ti,am654-uart"; 396*0e8011faSEmmanuel Vadot reg = <0x00 0x02830000 0x00 0x100>; 397*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 181 IRQ_TYPE_LEVEL_HIGH>; 398*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 154 TI_SCI_PD_EXCLUSIVE>; 399*0e8011faSEmmanuel Vadot clocks = <&k3_clks 154 0>; 400*0e8011faSEmmanuel Vadot clock-names = "fclk"; 401*0e8011faSEmmanuel Vadot status = "disabled"; 402*0e8011faSEmmanuel Vadot }; 403*0e8011faSEmmanuel Vadot 404*0e8011faSEmmanuel Vadot main_uart4: serial@2840000 { 405*0e8011faSEmmanuel Vadot compatible = "ti,am64-uart", "ti,am654-uart"; 406*0e8011faSEmmanuel Vadot reg = <0x00 0x02840000 0x00 0x100>; 407*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 182 IRQ_TYPE_LEVEL_HIGH>; 408*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 155 TI_SCI_PD_EXCLUSIVE>; 409*0e8011faSEmmanuel Vadot clocks = <&k3_clks 155 0>; 410*0e8011faSEmmanuel Vadot clock-names = "fclk"; 411*0e8011faSEmmanuel Vadot status = "disabled"; 412*0e8011faSEmmanuel Vadot }; 413*0e8011faSEmmanuel Vadot 414*0e8011faSEmmanuel Vadot main_uart5: serial@2850000 { 415*0e8011faSEmmanuel Vadot compatible = "ti,am64-uart", "ti,am654-uart"; 416*0e8011faSEmmanuel Vadot reg = <0x00 0x02850000 0x00 0x100>; 417*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 183 IRQ_TYPE_LEVEL_HIGH>; 418*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 156 TI_SCI_PD_EXCLUSIVE>; 419*0e8011faSEmmanuel Vadot clocks = <&k3_clks 156 0>; 420*0e8011faSEmmanuel Vadot clock-names = "fclk"; 421*0e8011faSEmmanuel Vadot status = "disabled"; 422*0e8011faSEmmanuel Vadot }; 423*0e8011faSEmmanuel Vadot 424*0e8011faSEmmanuel Vadot main_uart6: serial@2860000 { 425*0e8011faSEmmanuel Vadot compatible = "ti,am64-uart", "ti,am654-uart"; 426*0e8011faSEmmanuel Vadot reg = <0x00 0x02860000 0x00 0x100>; 427*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>; 428*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 158 TI_SCI_PD_EXCLUSIVE>; 429*0e8011faSEmmanuel Vadot clocks = <&k3_clks 158 0>; 430*0e8011faSEmmanuel Vadot clock-names = "fclk"; 431*0e8011faSEmmanuel Vadot status = "disabled"; 432*0e8011faSEmmanuel Vadot }; 433*0e8011faSEmmanuel Vadot 434*0e8011faSEmmanuel Vadot main_i2c0: i2c@20000000 { 435*0e8011faSEmmanuel Vadot compatible = "ti,am64-i2c", "ti,omap4-i2c"; 436*0e8011faSEmmanuel Vadot reg = <0x00 0x20000000 0x00 0x100>; 437*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>; 438*0e8011faSEmmanuel Vadot #address-cells = <1>; 439*0e8011faSEmmanuel Vadot #size-cells = <0>; 440*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 102 TI_SCI_PD_EXCLUSIVE>; 441*0e8011faSEmmanuel Vadot clocks = <&k3_clks 102 2>; 442*0e8011faSEmmanuel Vadot clock-names = "fck"; 443*0e8011faSEmmanuel Vadot status = "disabled"; 444*0e8011faSEmmanuel Vadot }; 445*0e8011faSEmmanuel Vadot 446*0e8011faSEmmanuel Vadot main_i2c1: i2c@20010000 { 447*0e8011faSEmmanuel Vadot compatible = "ti,am64-i2c", "ti,omap4-i2c"; 448*0e8011faSEmmanuel Vadot reg = <0x00 0x20010000 0x00 0x100>; 449*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>; 450*0e8011faSEmmanuel Vadot #address-cells = <1>; 451*0e8011faSEmmanuel Vadot #size-cells = <0>; 452*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 103 TI_SCI_PD_EXCLUSIVE>; 453*0e8011faSEmmanuel Vadot clocks = <&k3_clks 103 2>; 454*0e8011faSEmmanuel Vadot clock-names = "fck"; 455*0e8011faSEmmanuel Vadot status = "disabled"; 456*0e8011faSEmmanuel Vadot }; 457*0e8011faSEmmanuel Vadot 458*0e8011faSEmmanuel Vadot main_i2c2: i2c@20020000 { 459*0e8011faSEmmanuel Vadot compatible = "ti,am64-i2c", "ti,omap4-i2c"; 460*0e8011faSEmmanuel Vadot reg = <0x00 0x20020000 0x00 0x100>; 461*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 163 IRQ_TYPE_LEVEL_HIGH>; 462*0e8011faSEmmanuel Vadot #address-cells = <1>; 463*0e8011faSEmmanuel Vadot #size-cells = <0>; 464*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 104 TI_SCI_PD_EXCLUSIVE>; 465*0e8011faSEmmanuel Vadot clocks = <&k3_clks 104 2>; 466*0e8011faSEmmanuel Vadot clock-names = "fck"; 467*0e8011faSEmmanuel Vadot status = "disabled"; 468*0e8011faSEmmanuel Vadot }; 469*0e8011faSEmmanuel Vadot 470*0e8011faSEmmanuel Vadot main_i2c3: i2c@20030000 { 471*0e8011faSEmmanuel Vadot compatible = "ti,am64-i2c", "ti,omap4-i2c"; 472*0e8011faSEmmanuel Vadot reg = <0x00 0x20030000 0x00 0x100>; 473*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>; 474*0e8011faSEmmanuel Vadot #address-cells = <1>; 475*0e8011faSEmmanuel Vadot #size-cells = <0>; 476*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 105 TI_SCI_PD_EXCLUSIVE>; 477*0e8011faSEmmanuel Vadot clocks = <&k3_clks 105 2>; 478*0e8011faSEmmanuel Vadot clock-names = "fck"; 479*0e8011faSEmmanuel Vadot status = "disabled"; 480*0e8011faSEmmanuel Vadot }; 481*0e8011faSEmmanuel Vadot 482*0e8011faSEmmanuel Vadot main_spi0: spi@20100000 { 483*0e8011faSEmmanuel Vadot compatible = "ti,am654-mcspi", "ti,omap4-mcspi"; 484*0e8011faSEmmanuel Vadot reg = <0x00 0x20100000 0x00 0x400>; 485*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 172 IRQ_TYPE_LEVEL_HIGH>; 486*0e8011faSEmmanuel Vadot #address-cells = <1>; 487*0e8011faSEmmanuel Vadot #size-cells = <0>; 488*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 141 TI_SCI_PD_EXCLUSIVE>; 489*0e8011faSEmmanuel Vadot clocks = <&k3_clks 141 0>; 490*0e8011faSEmmanuel Vadot status = "disabled"; 491*0e8011faSEmmanuel Vadot }; 492*0e8011faSEmmanuel Vadot 493*0e8011faSEmmanuel Vadot main_spi1: spi@20110000 { 494*0e8011faSEmmanuel Vadot compatible = "ti,am654-mcspi","ti,omap4-mcspi"; 495*0e8011faSEmmanuel Vadot reg = <0x00 0x20110000 0x00 0x400>; 496*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>; 497*0e8011faSEmmanuel Vadot #address-cells = <1>; 498*0e8011faSEmmanuel Vadot #size-cells = <0>; 499*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 142 TI_SCI_PD_EXCLUSIVE>; 500*0e8011faSEmmanuel Vadot clocks = <&k3_clks 142 0>; 501*0e8011faSEmmanuel Vadot status = "disabled"; 502*0e8011faSEmmanuel Vadot }; 503*0e8011faSEmmanuel Vadot 504*0e8011faSEmmanuel Vadot main_spi2: spi@20120000 { 505*0e8011faSEmmanuel Vadot compatible = "ti,am654-mcspi","ti,omap4-mcspi"; 506*0e8011faSEmmanuel Vadot reg = <0x00 0x20120000 0x00 0x400>; 507*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 174 IRQ_TYPE_LEVEL_HIGH>; 508*0e8011faSEmmanuel Vadot #address-cells = <1>; 509*0e8011faSEmmanuel Vadot #size-cells = <0>; 510*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 143 TI_SCI_PD_EXCLUSIVE>; 511*0e8011faSEmmanuel Vadot clocks = <&k3_clks 143 0>; 512*0e8011faSEmmanuel Vadot status = "disabled"; 513*0e8011faSEmmanuel Vadot }; 514*0e8011faSEmmanuel Vadot 515*0e8011faSEmmanuel Vadot main_gpio_intr: interrupt-controller@a00000 { 516*0e8011faSEmmanuel Vadot compatible = "ti,sci-intr"; 517*0e8011faSEmmanuel Vadot reg = <0x00 0x00a00000 0x00 0x800>; 518*0e8011faSEmmanuel Vadot ti,intr-trigger-type = <1>; 519*0e8011faSEmmanuel Vadot interrupt-controller; 520*0e8011faSEmmanuel Vadot interrupt-parent = <&gic500>; 521*0e8011faSEmmanuel Vadot #interrupt-cells = <1>; 522*0e8011faSEmmanuel Vadot ti,sci = <&dmsc>; 523*0e8011faSEmmanuel Vadot ti,sci-dev-id = <3>; 524*0e8011faSEmmanuel Vadot ti,interrupt-ranges = <0 32 16>; 525*0e8011faSEmmanuel Vadot }; 526*0e8011faSEmmanuel Vadot 527*0e8011faSEmmanuel Vadot main_gpio0: gpio@600000 { 528*0e8011faSEmmanuel Vadot compatible = "ti,am64-gpio", "ti,keystone-gpio"; 529*0e8011faSEmmanuel Vadot reg = <0x00 0x00600000 0x00 0x100>; 530*0e8011faSEmmanuel Vadot gpio-controller; 531*0e8011faSEmmanuel Vadot #gpio-cells = <2>; 532*0e8011faSEmmanuel Vadot interrupt-parent = <&main_gpio_intr>; 533*0e8011faSEmmanuel Vadot interrupts = <190>, <191>, <192>, 534*0e8011faSEmmanuel Vadot <193>, <194>, <195>; 535*0e8011faSEmmanuel Vadot interrupt-controller; 536*0e8011faSEmmanuel Vadot #interrupt-cells = <2>; 537*0e8011faSEmmanuel Vadot ti,davinci-gpio-unbanked = <0>; 538*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 77 TI_SCI_PD_EXCLUSIVE>; 539*0e8011faSEmmanuel Vadot clocks = <&k3_clks 77 0>; 540*0e8011faSEmmanuel Vadot clock-names = "gpio"; 541*0e8011faSEmmanuel Vadot }; 542*0e8011faSEmmanuel Vadot 543*0e8011faSEmmanuel Vadot main_gpio1: gpio@601000 { 544*0e8011faSEmmanuel Vadot compatible = "ti,am64-gpio", "ti,keystone-gpio"; 545*0e8011faSEmmanuel Vadot reg = <0x00 0x00601000 0x00 0x100>; 546*0e8011faSEmmanuel Vadot gpio-controller; 547*0e8011faSEmmanuel Vadot #gpio-cells = <2>; 548*0e8011faSEmmanuel Vadot interrupt-parent = <&main_gpio_intr>; 549*0e8011faSEmmanuel Vadot interrupts = <180>, <181>, <182>, 550*0e8011faSEmmanuel Vadot <183>, <184>, <185>; 551*0e8011faSEmmanuel Vadot interrupt-controller; 552*0e8011faSEmmanuel Vadot #interrupt-cells = <2>; 553*0e8011faSEmmanuel Vadot ti,davinci-gpio-unbanked = <0>; 554*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 78 TI_SCI_PD_EXCLUSIVE>; 555*0e8011faSEmmanuel Vadot clocks = <&k3_clks 78 0>; 556*0e8011faSEmmanuel Vadot clock-names = "gpio"; 557*0e8011faSEmmanuel Vadot }; 558*0e8011faSEmmanuel Vadot 559*0e8011faSEmmanuel Vadot sdhci0: mmc@fa10000 { 560*0e8011faSEmmanuel Vadot compatible = "ti,am64-sdhci-8bit"; 561*0e8011faSEmmanuel Vadot reg = <0x00 0x0fa10000 0x00 0x1000>, <0x00 0x0fa18000 0x00 0x400>; 562*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>; 563*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 57 TI_SCI_PD_EXCLUSIVE>; 564*0e8011faSEmmanuel Vadot clocks = <&k3_clks 57 1>, <&k3_clks 57 2>; 565*0e8011faSEmmanuel Vadot clock-names = "clk_ahb", "clk_xin"; 566*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 57 2>; 567*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 57 4>; 568*0e8011faSEmmanuel Vadot bus-width = <8>; 569*0e8011faSEmmanuel Vadot mmc-ddr-1_8v; 570*0e8011faSEmmanuel Vadot mmc-hs200-1_8v; 571*0e8011faSEmmanuel Vadot mmc-hs400-1_8v; 572*0e8011faSEmmanuel Vadot ti,clkbuf-sel = <0x7>; 573*0e8011faSEmmanuel Vadot ti,strobe-sel = <0x77>; 574*0e8011faSEmmanuel Vadot ti,trm-icp = <0x8>; 575*0e8011faSEmmanuel Vadot ti,otap-del-sel-legacy = <0x1>; 576*0e8011faSEmmanuel Vadot ti,otap-del-sel-mmc-hs = <0x1>; 577*0e8011faSEmmanuel Vadot ti,otap-del-sel-ddr52 = <0x6>; 578*0e8011faSEmmanuel Vadot ti,otap-del-sel-hs200 = <0x8>; 579*0e8011faSEmmanuel Vadot ti,otap-del-sel-hs400 = <0x5>; 580*0e8011faSEmmanuel Vadot ti,itap-del-sel-legacy = <0x10>; 581*0e8011faSEmmanuel Vadot ti,itap-del-sel-mmc-hs = <0xa>; 582*0e8011faSEmmanuel Vadot ti,itap-del-sel-ddr52 = <0x3>; 583*0e8011faSEmmanuel Vadot status = "disabled"; 584*0e8011faSEmmanuel Vadot }; 585*0e8011faSEmmanuel Vadot 586*0e8011faSEmmanuel Vadot sdhci1: mmc@fa00000 { 587*0e8011faSEmmanuel Vadot compatible = "ti,am62-sdhci"; 588*0e8011faSEmmanuel Vadot reg = <0x00 0x0fa00000 0x00 0x1000>, <0x00 0x0fa08000 0x00 0x400>; 589*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; 590*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 58 TI_SCI_PD_EXCLUSIVE>; 591*0e8011faSEmmanuel Vadot clocks = <&k3_clks 58 5>, <&k3_clks 58 6>; 592*0e8011faSEmmanuel Vadot clock-names = "clk_ahb", "clk_xin"; 593*0e8011faSEmmanuel Vadot bus-width = <4>; 594*0e8011faSEmmanuel Vadot ti,clkbuf-sel = <0x7>; 595*0e8011faSEmmanuel Vadot ti,otap-del-sel-legacy = <0x0>; 596*0e8011faSEmmanuel Vadot ti,otap-del-sel-sd-hs = <0x0>; 597*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr12 = <0xf>; 598*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr25 = <0xf>; 599*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr50 = <0xc>; 600*0e8011faSEmmanuel Vadot ti,otap-del-sel-ddr50 = <0x9>; 601*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr104 = <0x6>; 602*0e8011faSEmmanuel Vadot ti,itap-del-sel-legacy = <0x0>; 603*0e8011faSEmmanuel Vadot ti,itap-del-sel-sd-hs = <0x0>; 604*0e8011faSEmmanuel Vadot ti,itap-del-sel-sdr12 = <0x0>; 605*0e8011faSEmmanuel Vadot ti,itap-del-sel-sdr25 = <0x0>; 606*0e8011faSEmmanuel Vadot status = "disabled"; 607*0e8011faSEmmanuel Vadot }; 608*0e8011faSEmmanuel Vadot 609*0e8011faSEmmanuel Vadot sdhci2: mmc@fa20000 { 610*0e8011faSEmmanuel Vadot compatible = "ti,am62-sdhci"; 611*0e8011faSEmmanuel Vadot reg = <0x00 0x0fa20000 0x00 0x1000>, <0x00 0x0fa28000 0x00 0x400>; 612*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; 613*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 184 TI_SCI_PD_EXCLUSIVE>; 614*0e8011faSEmmanuel Vadot clocks = <&k3_clks 184 5>, <&k3_clks 184 6>; 615*0e8011faSEmmanuel Vadot clock-names = "clk_ahb", "clk_xin"; 616*0e8011faSEmmanuel Vadot bus-width = <4>; 617*0e8011faSEmmanuel Vadot ti,clkbuf-sel = <0x7>; 618*0e8011faSEmmanuel Vadot ti,otap-del-sel-legacy = <0x0>; 619*0e8011faSEmmanuel Vadot ti,otap-del-sel-sd-hs = <0x0>; 620*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr12 = <0xf>; 621*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr25 = <0xf>; 622*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr50 = <0xc>; 623*0e8011faSEmmanuel Vadot ti,otap-del-sel-ddr50 = <0x9>; 624*0e8011faSEmmanuel Vadot ti,otap-del-sel-sdr104 = <0x6>; 625*0e8011faSEmmanuel Vadot ti,itap-del-sel-legacy = <0x0>; 626*0e8011faSEmmanuel Vadot ti,itap-del-sel-sd-hs = <0x0>; 627*0e8011faSEmmanuel Vadot ti,itap-del-sel-sdr12 = <0x0>; 628*0e8011faSEmmanuel Vadot ti,itap-del-sel-sdr25 = <0x0>; 629*0e8011faSEmmanuel Vadot status = "disabled"; 630*0e8011faSEmmanuel Vadot }; 631*0e8011faSEmmanuel Vadot 632*0e8011faSEmmanuel Vadot usbss0: usb@f900000 { 633*0e8011faSEmmanuel Vadot compatible = "ti,am62-usb"; 634*0e8011faSEmmanuel Vadot reg = <0x00 0x0f900000 0x00 0x800>, 635*0e8011faSEmmanuel Vadot <0x00 0x0f908000 0x00 0x400>; 636*0e8011faSEmmanuel Vadot clocks = <&k3_clks 161 3>; 637*0e8011faSEmmanuel Vadot clock-names = "ref"; 638*0e8011faSEmmanuel Vadot ti,syscon-phy-pll-refclk = <&usb0_phy_ctrl 0x0>; 639*0e8011faSEmmanuel Vadot #address-cells = <2>; 640*0e8011faSEmmanuel Vadot #size-cells = <2>; 641*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 178 TI_SCI_PD_EXCLUSIVE>; 642*0e8011faSEmmanuel Vadot ranges; 643*0e8011faSEmmanuel Vadot status = "disabled"; 644*0e8011faSEmmanuel Vadot 645*0e8011faSEmmanuel Vadot usb0: usb@31000000 { 646*0e8011faSEmmanuel Vadot compatible = "snps,dwc3"; 647*0e8011faSEmmanuel Vadot reg = <0x00 0x31000000 0x00 0x50000>; 648*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>, /* irq.0 */ 649*0e8011faSEmmanuel Vadot <GIC_SPI 188 IRQ_TYPE_LEVEL_HIGH>; /* irq.0 */ 650*0e8011faSEmmanuel Vadot interrupt-names = "host", "peripheral"; 651*0e8011faSEmmanuel Vadot maximum-speed = "high-speed"; 652*0e8011faSEmmanuel Vadot dr_mode = "otg"; 653*0e8011faSEmmanuel Vadot snps,usb2-gadget-lpm-disable; 654*0e8011faSEmmanuel Vadot snps,usb2-lpm-disable; 655*0e8011faSEmmanuel Vadot }; 656*0e8011faSEmmanuel Vadot }; 657*0e8011faSEmmanuel Vadot 658*0e8011faSEmmanuel Vadot fss: bus@fc00000 { 659*0e8011faSEmmanuel Vadot compatible = "simple-bus"; 660*0e8011faSEmmanuel Vadot reg = <0x00 0x0fc00000 0x00 0x70000>; 661*0e8011faSEmmanuel Vadot #address-cells = <2>; 662*0e8011faSEmmanuel Vadot #size-cells = <2>; 663*0e8011faSEmmanuel Vadot ranges; 664*0e8011faSEmmanuel Vadot 665*0e8011faSEmmanuel Vadot ospi0: spi@fc40000 { 666*0e8011faSEmmanuel Vadot compatible = "ti,am654-ospi", "cdns,qspi-nor"; 667*0e8011faSEmmanuel Vadot reg = <0x00 0x0fc40000 0x00 0x100>, 668*0e8011faSEmmanuel Vadot <0x05 0x00000000 0x01 0x00000000>; 669*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_HIGH>; 670*0e8011faSEmmanuel Vadot cdns,fifo-depth = <256>; 671*0e8011faSEmmanuel Vadot cdns,fifo-width = <4>; 672*0e8011faSEmmanuel Vadot cdns,trigger-address = <0x0>; 673*0e8011faSEmmanuel Vadot clocks = <&k3_clks 75 7>; 674*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 75 7>; 675*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 75 8>; 676*0e8011faSEmmanuel Vadot assigned-clock-rates = <166666666>; 677*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 75 TI_SCI_PD_EXCLUSIVE>; 678*0e8011faSEmmanuel Vadot #address-cells = <1>; 679*0e8011faSEmmanuel Vadot #size-cells = <0>; 680*0e8011faSEmmanuel Vadot status = "disabled"; 681*0e8011faSEmmanuel Vadot }; 682*0e8011faSEmmanuel Vadot }; 683*0e8011faSEmmanuel Vadot 684*0e8011faSEmmanuel Vadot cpsw3g: ethernet@8000000 { 685*0e8011faSEmmanuel Vadot compatible = "ti,am642-cpsw-nuss"; 686*0e8011faSEmmanuel Vadot #address-cells = <2>; 687*0e8011faSEmmanuel Vadot #size-cells = <2>; 688*0e8011faSEmmanuel Vadot reg = <0x00 0x08000000 0x00 0x200000>; 689*0e8011faSEmmanuel Vadot reg-names = "cpsw_nuss"; 690*0e8011faSEmmanuel Vadot ranges = <0x00 0x00 0x00 0x08000000 0x00 0x200000>; 691*0e8011faSEmmanuel Vadot clocks = <&k3_clks 13 0>; 692*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 13 3>; 693*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 13 11>; 694*0e8011faSEmmanuel Vadot clock-names = "fck"; 695*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 13 TI_SCI_PD_EXCLUSIVE>; 696*0e8011faSEmmanuel Vadot status = "disabled"; 697*0e8011faSEmmanuel Vadot 698*0e8011faSEmmanuel Vadot dmas = <&main_pktdma 0xc600 15>, 699*0e8011faSEmmanuel Vadot <&main_pktdma 0xc601 15>, 700*0e8011faSEmmanuel Vadot <&main_pktdma 0xc602 15>, 701*0e8011faSEmmanuel Vadot <&main_pktdma 0xc603 15>, 702*0e8011faSEmmanuel Vadot <&main_pktdma 0xc604 15>, 703*0e8011faSEmmanuel Vadot <&main_pktdma 0xc605 15>, 704*0e8011faSEmmanuel Vadot <&main_pktdma 0xc606 15>, 705*0e8011faSEmmanuel Vadot <&main_pktdma 0xc607 15>, 706*0e8011faSEmmanuel Vadot <&main_pktdma 0x4600 15>; 707*0e8011faSEmmanuel Vadot dma-names = "tx0", "tx1", "tx2", "tx3", "tx4", "tx5", "tx6", 708*0e8011faSEmmanuel Vadot "tx7", "rx"; 709*0e8011faSEmmanuel Vadot 710*0e8011faSEmmanuel Vadot ethernet-ports { 711*0e8011faSEmmanuel Vadot #address-cells = <1>; 712*0e8011faSEmmanuel Vadot #size-cells = <0>; 713*0e8011faSEmmanuel Vadot 714*0e8011faSEmmanuel Vadot cpsw_port1: port@1 { 715*0e8011faSEmmanuel Vadot reg = <1>; 716*0e8011faSEmmanuel Vadot ti,mac-only; 717*0e8011faSEmmanuel Vadot label = "port1"; 718*0e8011faSEmmanuel Vadot phys = <&phy_gmii_sel 1>; 719*0e8011faSEmmanuel Vadot mac-address = [00 00 00 00 00 00]; 720*0e8011faSEmmanuel Vadot ti,syscon-efuse = <&cpsw_mac_syscon 0x0>; 721*0e8011faSEmmanuel Vadot status = "disabled"; 722*0e8011faSEmmanuel Vadot }; 723*0e8011faSEmmanuel Vadot 724*0e8011faSEmmanuel Vadot cpsw_port2: port@2 { 725*0e8011faSEmmanuel Vadot reg = <2>; 726*0e8011faSEmmanuel Vadot ti,mac-only; 727*0e8011faSEmmanuel Vadot label = "port2"; 728*0e8011faSEmmanuel Vadot phys = <&phy_gmii_sel 2>; 729*0e8011faSEmmanuel Vadot mac-address = [00 00 00 00 00 00]; 730*0e8011faSEmmanuel Vadot status = "disabled"; 731*0e8011faSEmmanuel Vadot }; 732*0e8011faSEmmanuel Vadot }; 733*0e8011faSEmmanuel Vadot 734*0e8011faSEmmanuel Vadot cpsw3g_mdio: mdio@f00 { 735*0e8011faSEmmanuel Vadot compatible = "ti,cpsw-mdio","ti,davinci_mdio"; 736*0e8011faSEmmanuel Vadot reg = <0x00 0xf00 0x00 0x100>; 737*0e8011faSEmmanuel Vadot #address-cells = <1>; 738*0e8011faSEmmanuel Vadot #size-cells = <0>; 739*0e8011faSEmmanuel Vadot clocks = <&k3_clks 13 0>; 740*0e8011faSEmmanuel Vadot clock-names = "fck"; 741*0e8011faSEmmanuel Vadot bus_freq = <1000000>; 742*0e8011faSEmmanuel Vadot status = "disabled"; 743*0e8011faSEmmanuel Vadot }; 744*0e8011faSEmmanuel Vadot 745*0e8011faSEmmanuel Vadot cpts@3d000 { 746*0e8011faSEmmanuel Vadot compatible = "ti,j721e-cpts"; 747*0e8011faSEmmanuel Vadot reg = <0x00 0x3d000 0x00 0x400>; 748*0e8011faSEmmanuel Vadot clocks = <&k3_clks 13 3>; 749*0e8011faSEmmanuel Vadot clock-names = "cpts"; 750*0e8011faSEmmanuel Vadot interrupts-extended = <&gic500 GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>; 751*0e8011faSEmmanuel Vadot interrupt-names = "cpts"; 752*0e8011faSEmmanuel Vadot ti,cpts-ext-ts-inputs = <4>; 753*0e8011faSEmmanuel Vadot ti,cpts-periodic-outputs = <2>; 754*0e8011faSEmmanuel Vadot }; 755*0e8011faSEmmanuel Vadot }; 756*0e8011faSEmmanuel Vadot 757*0e8011faSEmmanuel Vadot hwspinlock: spinlock@2a000000 { 758*0e8011faSEmmanuel Vadot compatible = "ti,am64-hwspinlock"; 759*0e8011faSEmmanuel Vadot reg = <0x00 0x2a000000 0x00 0x1000>; 760*0e8011faSEmmanuel Vadot #hwlock-cells = <1>; 761*0e8011faSEmmanuel Vadot }; 762*0e8011faSEmmanuel Vadot 763*0e8011faSEmmanuel Vadot mailbox0_cluster0: mailbox@29000000 { 764*0e8011faSEmmanuel Vadot compatible = "ti,am64-mailbox"; 765*0e8011faSEmmanuel Vadot reg = <0x00 0x29000000 0x00 0x200>; 766*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>; 767*0e8011faSEmmanuel Vadot #mbox-cells = <1>; 768*0e8011faSEmmanuel Vadot ti,mbox-num-users = <4>; 769*0e8011faSEmmanuel Vadot ti,mbox-num-fifos = <16>; 770*0e8011faSEmmanuel Vadot }; 771*0e8011faSEmmanuel Vadot 772*0e8011faSEmmanuel Vadot mailbox0_cluster1: mailbox@29010000 { 773*0e8011faSEmmanuel Vadot compatible = "ti,am64-mailbox"; 774*0e8011faSEmmanuel Vadot reg = <0x00 0x29010000 0x00 0x200>; 775*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>; 776*0e8011faSEmmanuel Vadot #mbox-cells = <1>; 777*0e8011faSEmmanuel Vadot ti,mbox-num-users = <4>; 778*0e8011faSEmmanuel Vadot ti,mbox-num-fifos = <16>; 779*0e8011faSEmmanuel Vadot }; 780*0e8011faSEmmanuel Vadot 781*0e8011faSEmmanuel Vadot mailbox0_cluster2: mailbox@29020000 { 782*0e8011faSEmmanuel Vadot compatible = "ti,am64-mailbox"; 783*0e8011faSEmmanuel Vadot reg = <0x00 0x29020000 0x00 0x200>; 784*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>; 785*0e8011faSEmmanuel Vadot #mbox-cells = <1>; 786*0e8011faSEmmanuel Vadot ti,mbox-num-users = <4>; 787*0e8011faSEmmanuel Vadot ti,mbox-num-fifos = <16>; 788*0e8011faSEmmanuel Vadot }; 789*0e8011faSEmmanuel Vadot 790*0e8011faSEmmanuel Vadot mailbox0_cluster3: mailbox@29030000 { 791*0e8011faSEmmanuel Vadot compatible = "ti,am64-mailbox"; 792*0e8011faSEmmanuel Vadot reg = <0x00 0x29030000 0x00 0x200>; 793*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>; 794*0e8011faSEmmanuel Vadot #mbox-cells = <1>; 795*0e8011faSEmmanuel Vadot ti,mbox-num-users = <4>; 796*0e8011faSEmmanuel Vadot ti,mbox-num-fifos = <16>; 797*0e8011faSEmmanuel Vadot }; 798*0e8011faSEmmanuel Vadot 799*0e8011faSEmmanuel Vadot ecap0: pwm@23100000 { 800*0e8011faSEmmanuel Vadot compatible = "ti,am3352-ecap"; 801*0e8011faSEmmanuel Vadot #pwm-cells = <3>; 802*0e8011faSEmmanuel Vadot reg = <0x00 0x23100000 0x00 0x100>; 803*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 51 TI_SCI_PD_EXCLUSIVE>; 804*0e8011faSEmmanuel Vadot clocks = <&k3_clks 51 0>; 805*0e8011faSEmmanuel Vadot clock-names = "fck"; 806*0e8011faSEmmanuel Vadot status = "disabled"; 807*0e8011faSEmmanuel Vadot }; 808*0e8011faSEmmanuel Vadot 809*0e8011faSEmmanuel Vadot ecap1: pwm@23110000 { 810*0e8011faSEmmanuel Vadot compatible = "ti,am3352-ecap"; 811*0e8011faSEmmanuel Vadot #pwm-cells = <3>; 812*0e8011faSEmmanuel Vadot reg = <0x00 0x23110000 0x00 0x100>; 813*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 52 TI_SCI_PD_EXCLUSIVE>; 814*0e8011faSEmmanuel Vadot clocks = <&k3_clks 52 0>; 815*0e8011faSEmmanuel Vadot clock-names = "fck"; 816*0e8011faSEmmanuel Vadot status = "disabled"; 817*0e8011faSEmmanuel Vadot }; 818*0e8011faSEmmanuel Vadot 819*0e8011faSEmmanuel Vadot ecap2: pwm@23120000 { 820*0e8011faSEmmanuel Vadot compatible = "ti,am3352-ecap"; 821*0e8011faSEmmanuel Vadot #pwm-cells = <3>; 822*0e8011faSEmmanuel Vadot reg = <0x00 0x23120000 0x00 0x100>; 823*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 53 TI_SCI_PD_EXCLUSIVE>; 824*0e8011faSEmmanuel Vadot clocks = <&k3_clks 53 0>; 825*0e8011faSEmmanuel Vadot clock-names = "fck"; 826*0e8011faSEmmanuel Vadot status = "disabled"; 827*0e8011faSEmmanuel Vadot }; 828*0e8011faSEmmanuel Vadot 829*0e8011faSEmmanuel Vadot main_mcan0: can@20701000 { 830*0e8011faSEmmanuel Vadot compatible = "bosch,m_can"; 831*0e8011faSEmmanuel Vadot reg = <0x00 0x20701000 0x00 0x200>, 832*0e8011faSEmmanuel Vadot <0x00 0x20708000 0x00 0x8000>; 833*0e8011faSEmmanuel Vadot reg-names = "m_can", "message_ram"; 834*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 98 TI_SCI_PD_EXCLUSIVE>; 835*0e8011faSEmmanuel Vadot clocks = <&k3_clks 98 6>, <&k3_clks 98 1>; 836*0e8011faSEmmanuel Vadot clock-names = "hclk", "cclk"; 837*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>, 838*0e8011faSEmmanuel Vadot <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>; 839*0e8011faSEmmanuel Vadot interrupt-names = "int0", "int1"; 840*0e8011faSEmmanuel Vadot bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>; 841*0e8011faSEmmanuel Vadot status = "disabled"; 842*0e8011faSEmmanuel Vadot }; 843*0e8011faSEmmanuel Vadot 844*0e8011faSEmmanuel Vadot main_mcan1: can@20711000 { 845*0e8011faSEmmanuel Vadot compatible = "bosch,m_can"; 846*0e8011faSEmmanuel Vadot reg = <0x00 0x20711000 0x00 0x200>, 847*0e8011faSEmmanuel Vadot <0x00 0x20718000 0x00 0x8000>; 848*0e8011faSEmmanuel Vadot reg-names = "m_can", "message_ram"; 849*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 99 TI_SCI_PD_EXCLUSIVE>; 850*0e8011faSEmmanuel Vadot clocks = <&k3_clks 99 6>, <&k3_clks 99 1>; 851*0e8011faSEmmanuel Vadot clock-names = "hclk", "cclk"; 852*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>, 853*0e8011faSEmmanuel Vadot <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>; 854*0e8011faSEmmanuel Vadot interrupt-names = "int0", "int1"; 855*0e8011faSEmmanuel Vadot bosch,mram-cfg = <0x0 128 64 64 64 64 32 32>; 856*0e8011faSEmmanuel Vadot status = "disabled"; 857*0e8011faSEmmanuel Vadot }; 858*0e8011faSEmmanuel Vadot 859*0e8011faSEmmanuel Vadot main_rti0: watchdog@e000000 { 860*0e8011faSEmmanuel Vadot compatible = "ti,j7-rti-wdt"; 861*0e8011faSEmmanuel Vadot reg = <0x00 0x0e000000 0x00 0x100>; 862*0e8011faSEmmanuel Vadot clocks = <&k3_clks 125 0>; 863*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 125 TI_SCI_PD_EXCLUSIVE>; 864*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 125 0>; 865*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 125 2>; 866*0e8011faSEmmanuel Vadot }; 867*0e8011faSEmmanuel Vadot 868*0e8011faSEmmanuel Vadot main_rti1: watchdog@e010000 { 869*0e8011faSEmmanuel Vadot compatible = "ti,j7-rti-wdt"; 870*0e8011faSEmmanuel Vadot reg = <0x00 0x0e010000 0x00 0x100>; 871*0e8011faSEmmanuel Vadot clocks = <&k3_clks 126 0>; 872*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 126 TI_SCI_PD_EXCLUSIVE>; 873*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 126 0>; 874*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 126 2>; 875*0e8011faSEmmanuel Vadot }; 876*0e8011faSEmmanuel Vadot 877*0e8011faSEmmanuel Vadot main_rti2: watchdog@e020000 { 878*0e8011faSEmmanuel Vadot compatible = "ti,j7-rti-wdt"; 879*0e8011faSEmmanuel Vadot reg = <0x00 0x0e020000 0x00 0x100>; 880*0e8011faSEmmanuel Vadot clocks = <&k3_clks 127 0>; 881*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 127 TI_SCI_PD_EXCLUSIVE>; 882*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 127 0>; 883*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 127 2>; 884*0e8011faSEmmanuel Vadot }; 885*0e8011faSEmmanuel Vadot 886*0e8011faSEmmanuel Vadot main_rti3: watchdog@e030000 { 887*0e8011faSEmmanuel Vadot compatible = "ti,j7-rti-wdt"; 888*0e8011faSEmmanuel Vadot reg = <0x00 0x0e030000 0x00 0x100>; 889*0e8011faSEmmanuel Vadot clocks = <&k3_clks 128 0>; 890*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 128 TI_SCI_PD_EXCLUSIVE>; 891*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 128 0>; 892*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 128 2>; 893*0e8011faSEmmanuel Vadot }; 894*0e8011faSEmmanuel Vadot 895*0e8011faSEmmanuel Vadot main_rti15: watchdog@e0f0000 { 896*0e8011faSEmmanuel Vadot compatible = "ti,j7-rti-wdt"; 897*0e8011faSEmmanuel Vadot reg = <0x00 0x0e0f0000 0x00 0x100>; 898*0e8011faSEmmanuel Vadot clocks = <&k3_clks 130 0>; 899*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 130 TI_SCI_PD_EXCLUSIVE>; 900*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 130 0>; 901*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 130 2>; 902*0e8011faSEmmanuel Vadot }; 903*0e8011faSEmmanuel Vadot 904*0e8011faSEmmanuel Vadot epwm0: pwm@23000000 { 905*0e8011faSEmmanuel Vadot compatible = "ti,am64-epwm", "ti,am3352-ehrpwm"; 906*0e8011faSEmmanuel Vadot #pwm-cells = <3>; 907*0e8011faSEmmanuel Vadot reg = <0x00 0x23000000 0x00 0x100>; 908*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 86 TI_SCI_PD_EXCLUSIVE>; 909*0e8011faSEmmanuel Vadot clocks = <&epwm_tbclk 0>, <&k3_clks 86 0>; 910*0e8011faSEmmanuel Vadot clock-names = "tbclk", "fck"; 911*0e8011faSEmmanuel Vadot status = "disabled"; 912*0e8011faSEmmanuel Vadot }; 913*0e8011faSEmmanuel Vadot 914*0e8011faSEmmanuel Vadot epwm1: pwm@23010000 { 915*0e8011faSEmmanuel Vadot compatible = "ti,am64-epwm", "ti,am3352-ehrpwm"; 916*0e8011faSEmmanuel Vadot #pwm-cells = <3>; 917*0e8011faSEmmanuel Vadot reg = <0x00 0x23010000 0x00 0x100>; 918*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 87 TI_SCI_PD_EXCLUSIVE>; 919*0e8011faSEmmanuel Vadot clocks = <&epwm_tbclk 1>, <&k3_clks 87 0>; 920*0e8011faSEmmanuel Vadot clock-names = "tbclk", "fck"; 921*0e8011faSEmmanuel Vadot status = "disabled"; 922*0e8011faSEmmanuel Vadot }; 923*0e8011faSEmmanuel Vadot 924*0e8011faSEmmanuel Vadot epwm2: pwm@23020000 { 925*0e8011faSEmmanuel Vadot compatible = "ti,am64-epwm", "ti,am3352-ehrpwm"; 926*0e8011faSEmmanuel Vadot #pwm-cells = <3>; 927*0e8011faSEmmanuel Vadot reg = <0x00 0x23020000 0x00 0x100>; 928*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 88 TI_SCI_PD_EXCLUSIVE>; 929*0e8011faSEmmanuel Vadot clocks = <&epwm_tbclk 2>, <&k3_clks 88 0>; 930*0e8011faSEmmanuel Vadot clock-names = "tbclk", "fck"; 931*0e8011faSEmmanuel Vadot status = "disabled"; 932*0e8011faSEmmanuel Vadot }; 933*0e8011faSEmmanuel Vadot 934*0e8011faSEmmanuel Vadot mcasp0: audio-controller@2b00000 { 935*0e8011faSEmmanuel Vadot compatible = "ti,am33xx-mcasp-audio"; 936*0e8011faSEmmanuel Vadot reg = <0x00 0x02b00000 0x00 0x2000>, 937*0e8011faSEmmanuel Vadot <0x00 0x02b08000 0x00 0x400>; 938*0e8011faSEmmanuel Vadot reg-names = "mpu", "dat"; 939*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 236 IRQ_TYPE_LEVEL_HIGH>, 940*0e8011faSEmmanuel Vadot <GIC_SPI 235 IRQ_TYPE_LEVEL_HIGH>; 941*0e8011faSEmmanuel Vadot interrupt-names = "tx", "rx"; 942*0e8011faSEmmanuel Vadot 943*0e8011faSEmmanuel Vadot dmas = <&main_bcdma 0 0xc500 0>, <&main_bcdma 0 0x4500 0>; 944*0e8011faSEmmanuel Vadot dma-names = "tx", "rx"; 945*0e8011faSEmmanuel Vadot 946*0e8011faSEmmanuel Vadot clocks = <&k3_clks 190 0>; 947*0e8011faSEmmanuel Vadot clock-names = "fck"; 948*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 190 0>; 949*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 190 2>; 950*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 190 TI_SCI_PD_EXCLUSIVE>; 951*0e8011faSEmmanuel Vadot status = "disabled"; 952*0e8011faSEmmanuel Vadot }; 953*0e8011faSEmmanuel Vadot 954*0e8011faSEmmanuel Vadot mcasp1: audio-controller@2b10000 { 955*0e8011faSEmmanuel Vadot compatible = "ti,am33xx-mcasp-audio"; 956*0e8011faSEmmanuel Vadot reg = <0x00 0x02b10000 0x00 0x2000>, 957*0e8011faSEmmanuel Vadot <0x00 0x02b18000 0x00 0x400>; 958*0e8011faSEmmanuel Vadot reg-names = "mpu", "dat"; 959*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>, 960*0e8011faSEmmanuel Vadot <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>; 961*0e8011faSEmmanuel Vadot interrupt-names = "tx", "rx"; 962*0e8011faSEmmanuel Vadot 963*0e8011faSEmmanuel Vadot dmas = <&main_bcdma 0 0xc501 0>, <&main_bcdma 0 0x4501 0>; 964*0e8011faSEmmanuel Vadot dma-names = "tx", "rx"; 965*0e8011faSEmmanuel Vadot 966*0e8011faSEmmanuel Vadot clocks = <&k3_clks 191 0>; 967*0e8011faSEmmanuel Vadot clock-names = "fck"; 968*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 191 0>; 969*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 191 2>; 970*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 191 TI_SCI_PD_EXCLUSIVE>; 971*0e8011faSEmmanuel Vadot status = "disabled"; 972*0e8011faSEmmanuel Vadot }; 973*0e8011faSEmmanuel Vadot 974*0e8011faSEmmanuel Vadot mcasp2: audio-controller@2b20000 { 975*0e8011faSEmmanuel Vadot compatible = "ti,am33xx-mcasp-audio"; 976*0e8011faSEmmanuel Vadot reg = <0x00 0x02b20000 0x00 0x2000>, 977*0e8011faSEmmanuel Vadot <0x00 0x02b28000 0x00 0x400>; 978*0e8011faSEmmanuel Vadot reg-names = "mpu", "dat"; 979*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>, 980*0e8011faSEmmanuel Vadot <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>; 981*0e8011faSEmmanuel Vadot interrupt-names = "tx", "rx"; 982*0e8011faSEmmanuel Vadot 983*0e8011faSEmmanuel Vadot dmas = <&main_bcdma 0 0xc502 0>, <&main_bcdma 0 0x4502 0>; 984*0e8011faSEmmanuel Vadot dma-names = "tx", "rx"; 985*0e8011faSEmmanuel Vadot 986*0e8011faSEmmanuel Vadot clocks = <&k3_clks 192 0>; 987*0e8011faSEmmanuel Vadot clock-names = "fck"; 988*0e8011faSEmmanuel Vadot assigned-clocks = <&k3_clks 192 0>; 989*0e8011faSEmmanuel Vadot assigned-clock-parents = <&k3_clks 192 2>; 990*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 192 TI_SCI_PD_EXCLUSIVE>; 991*0e8011faSEmmanuel Vadot status = "disabled"; 992*0e8011faSEmmanuel Vadot }; 993*0e8011faSEmmanuel Vadot 994*0e8011faSEmmanuel Vadot ti_csi2rx0: ticsi2rx@30102000 { 995*0e8011faSEmmanuel Vadot compatible = "ti,j721e-csi2rx-shim"; 996*0e8011faSEmmanuel Vadot reg = <0x00 0x30102000 0x00 0x1000>; 997*0e8011faSEmmanuel Vadot ranges; 998*0e8011faSEmmanuel Vadot #address-cells = <2>; 999*0e8011faSEmmanuel Vadot #size-cells = <2>; 1000*0e8011faSEmmanuel Vadot dmas = <&main_bcdma_csi 0 0x5000 0>; 1001*0e8011faSEmmanuel Vadot dma-names = "rx0"; 1002*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 182 TI_SCI_PD_EXCLUSIVE>; 1003*0e8011faSEmmanuel Vadot status = "disabled"; 1004*0e8011faSEmmanuel Vadot 1005*0e8011faSEmmanuel Vadot cdns_csi2rx0: csi-bridge@30101000 { 1006*0e8011faSEmmanuel Vadot compatible = "ti,j721e-csi2rx", "cdns,csi2rx"; 1007*0e8011faSEmmanuel Vadot reg = <0x00 0x30101000 0x00 0x1000>; 1008*0e8011faSEmmanuel Vadot clocks = <&k3_clks 182 0>, <&k3_clks 182 3>, <&k3_clks 182 0>, 1009*0e8011faSEmmanuel Vadot <&k3_clks 182 0>, <&k3_clks 182 4>, <&k3_clks 182 4>; 1010*0e8011faSEmmanuel Vadot clock-names = "sys_clk", "p_clk", "pixel_if0_clk", 1011*0e8011faSEmmanuel Vadot "pixel_if1_clk", "pixel_if2_clk", "pixel_if3_clk"; 1012*0e8011faSEmmanuel Vadot phys = <&dphy0>; 1013*0e8011faSEmmanuel Vadot phy-names = "dphy"; 1014*0e8011faSEmmanuel Vadot 1015*0e8011faSEmmanuel Vadot ports { 1016*0e8011faSEmmanuel Vadot #address-cells = <1>; 1017*0e8011faSEmmanuel Vadot #size-cells = <0>; 1018*0e8011faSEmmanuel Vadot 1019*0e8011faSEmmanuel Vadot csi0_port0: port@0 { 1020*0e8011faSEmmanuel Vadot reg = <0>; 1021*0e8011faSEmmanuel Vadot status = "disabled"; 1022*0e8011faSEmmanuel Vadot }; 1023*0e8011faSEmmanuel Vadot 1024*0e8011faSEmmanuel Vadot csi0_port1: port@1 { 1025*0e8011faSEmmanuel Vadot reg = <1>; 1026*0e8011faSEmmanuel Vadot status = "disabled"; 1027*0e8011faSEmmanuel Vadot }; 1028*0e8011faSEmmanuel Vadot 1029*0e8011faSEmmanuel Vadot csi0_port2: port@2 { 1030*0e8011faSEmmanuel Vadot reg = <2>; 1031*0e8011faSEmmanuel Vadot status = "disabled"; 1032*0e8011faSEmmanuel Vadot }; 1033*0e8011faSEmmanuel Vadot 1034*0e8011faSEmmanuel Vadot csi0_port3: port@3 { 1035*0e8011faSEmmanuel Vadot reg = <3>; 1036*0e8011faSEmmanuel Vadot status = "disabled"; 1037*0e8011faSEmmanuel Vadot }; 1038*0e8011faSEmmanuel Vadot 1039*0e8011faSEmmanuel Vadot csi0_port4: port@4 { 1040*0e8011faSEmmanuel Vadot reg = <4>; 1041*0e8011faSEmmanuel Vadot status = "disabled"; 1042*0e8011faSEmmanuel Vadot }; 1043*0e8011faSEmmanuel Vadot }; 1044*0e8011faSEmmanuel Vadot }; 1045*0e8011faSEmmanuel Vadot }; 1046*0e8011faSEmmanuel Vadot 1047*0e8011faSEmmanuel Vadot dphy0: phy@30110000 { 1048*0e8011faSEmmanuel Vadot compatible = "cdns,dphy-rx"; 1049*0e8011faSEmmanuel Vadot reg = <0x00 0x30110000 0x00 0x1100>; 1050*0e8011faSEmmanuel Vadot #phy-cells = <0>; 1051*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 185 TI_SCI_PD_EXCLUSIVE>; 1052*0e8011faSEmmanuel Vadot status = "disabled"; 1053*0e8011faSEmmanuel Vadot }; 1054*0e8011faSEmmanuel Vadot 1055*0e8011faSEmmanuel Vadot vpu: video-codec@30210000 { 1056*0e8011faSEmmanuel Vadot compatible = "ti,j721s2-wave521c", "cnm,wave521c"; 1057*0e8011faSEmmanuel Vadot reg = <0x00 0x30210000 0x00 0x10000>; 1058*0e8011faSEmmanuel Vadot interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>; 1059*0e8011faSEmmanuel Vadot clocks = <&k3_clks 204 2>; 1060*0e8011faSEmmanuel Vadot power-domains = <&k3_pds 204 TI_SCI_PD_EXCLUSIVE>; 1061*0e8011faSEmmanuel Vadot }; 1062*0e8011faSEmmanuel Vadot}; 1063