1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Device Tree Source for K2G SOC 4*f126890aSEmmanuel Vadot * 5*f126890aSEmmanuel Vadot * Copyright (C) 2016-2017 Texas Instruments Incorporated - http://www.ti.com/ 6*f126890aSEmmanuel Vadot */ 7*f126890aSEmmanuel Vadot 8*f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h> 9*f126890aSEmmanuel Vadot#include <dt-bindings/pinctrl/keystone.h> 10*f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 11*f126890aSEmmanuel Vadot 12*f126890aSEmmanuel Vadot/ { 13*f126890aSEmmanuel Vadot compatible = "ti,k2g","ti,keystone"; 14*f126890aSEmmanuel Vadot model = "Texas Instruments K2G SoC"; 15*f126890aSEmmanuel Vadot #address-cells = <2>; 16*f126890aSEmmanuel Vadot #size-cells = <2>; 17*f126890aSEmmanuel Vadot interrupt-parent = <&gic>; 18*f126890aSEmmanuel Vadot 19*f126890aSEmmanuel Vadot chosen { }; 20*f126890aSEmmanuel Vadot 21*f126890aSEmmanuel Vadot aliases { 22*f126890aSEmmanuel Vadot serial0 = &uart0; 23*f126890aSEmmanuel Vadot serial1 = &uart1; 24*f126890aSEmmanuel Vadot serial2 = &uart2; 25*f126890aSEmmanuel Vadot i2c0 = &i2c0; 26*f126890aSEmmanuel Vadot i2c1 = &i2c1; 27*f126890aSEmmanuel Vadot i2c2 = &i2c2; 28*f126890aSEmmanuel Vadot rproc0 = &dsp0; 29*f126890aSEmmanuel Vadot }; 30*f126890aSEmmanuel Vadot 31*f126890aSEmmanuel Vadot cpus { 32*f126890aSEmmanuel Vadot #address-cells = <1>; 33*f126890aSEmmanuel Vadot #size-cells = <0>; 34*f126890aSEmmanuel Vadot 35*f126890aSEmmanuel Vadot cpu@0 { 36*f126890aSEmmanuel Vadot compatible = "arm,cortex-a15"; 37*f126890aSEmmanuel Vadot device_type = "cpu"; 38*f126890aSEmmanuel Vadot reg = <0>; 39*f126890aSEmmanuel Vadot }; 40*f126890aSEmmanuel Vadot }; 41*f126890aSEmmanuel Vadot 42*f126890aSEmmanuel Vadot gic: interrupt-controller@2561000 { 43*f126890aSEmmanuel Vadot compatible = "arm,gic-400", "arm,cortex-a15-gic"; 44*f126890aSEmmanuel Vadot #interrupt-cells = <3>; 45*f126890aSEmmanuel Vadot interrupt-controller; 46*f126890aSEmmanuel Vadot reg = <0x0 0x02561000 0x0 0x1000>, 47*f126890aSEmmanuel Vadot <0x0 0x02562000 0x0 0x2000>, 48*f126890aSEmmanuel Vadot <0x0 0x02564000 0x0 0x2000>, 49*f126890aSEmmanuel Vadot <0x0 0x02566000 0x0 0x2000>; 50*f126890aSEmmanuel Vadot interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | 51*f126890aSEmmanuel Vadot IRQ_TYPE_LEVEL_HIGH)>; 52*f126890aSEmmanuel Vadot }; 53*f126890aSEmmanuel Vadot 54*f126890aSEmmanuel Vadot timer { 55*f126890aSEmmanuel Vadot compatible = "arm,armv7-timer"; 56*f126890aSEmmanuel Vadot interrupts = 57*f126890aSEmmanuel Vadot <GIC_PPI 13 58*f126890aSEmmanuel Vadot (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 59*f126890aSEmmanuel Vadot <GIC_PPI 14 60*f126890aSEmmanuel Vadot (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 61*f126890aSEmmanuel Vadot <GIC_PPI 11 62*f126890aSEmmanuel Vadot (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 63*f126890aSEmmanuel Vadot <GIC_PPI 10 64*f126890aSEmmanuel Vadot (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>; 65*f126890aSEmmanuel Vadot }; 66*f126890aSEmmanuel Vadot 67*f126890aSEmmanuel Vadot pmu { 68*f126890aSEmmanuel Vadot compatible = "arm,cortex-a15-pmu"; 69*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 4 IRQ_TYPE_EDGE_RISING>; 70*f126890aSEmmanuel Vadot }; 71*f126890aSEmmanuel Vadot 72*f126890aSEmmanuel Vadot usbphy { 73*f126890aSEmmanuel Vadot #address-cells = <1>; 74*f126890aSEmmanuel Vadot #size-cells = <0>; 75*f126890aSEmmanuel Vadot compatible = "simple-bus"; 76*f126890aSEmmanuel Vadot 77*f126890aSEmmanuel Vadot usb0_phy: usb-phy@0 { 78*f126890aSEmmanuel Vadot compatible = "usb-nop-xceiv"; 79*f126890aSEmmanuel Vadot reg = <0>; 80*f126890aSEmmanuel Vadot status = "disabled"; 81*f126890aSEmmanuel Vadot }; 82*f126890aSEmmanuel Vadot 83*f126890aSEmmanuel Vadot usb1_phy: usb-phy@1 { 84*f126890aSEmmanuel Vadot compatible = "usb-nop-xceiv"; 85*f126890aSEmmanuel Vadot reg = <1>; 86*f126890aSEmmanuel Vadot status = "disabled"; 87*f126890aSEmmanuel Vadot }; 88*f126890aSEmmanuel Vadot }; 89*f126890aSEmmanuel Vadot 90*f126890aSEmmanuel Vadot soc0: soc@0 { 91*f126890aSEmmanuel Vadot #address-cells = <1>; 92*f126890aSEmmanuel Vadot #size-cells = <1>; 93*f126890aSEmmanuel Vadot #pinctrl-cells = <1>; 94*f126890aSEmmanuel Vadot compatible = "ti,keystone","simple-bus"; 95*f126890aSEmmanuel Vadot ranges = <0x0 0x0 0x0 0xc0000000>; 96*f126890aSEmmanuel Vadot dma-ranges = <0x80000000 0x8 0x00000000 0x80000000>; 97*f126890aSEmmanuel Vadot 98*f126890aSEmmanuel Vadot msm_ram: sram@c000000 { 99*f126890aSEmmanuel Vadot compatible = "mmio-sram"; 100*f126890aSEmmanuel Vadot reg = <0x0c000000 0x100000>; 101*f126890aSEmmanuel Vadot ranges = <0x0 0x0c000000 0x100000>; 102*f126890aSEmmanuel Vadot #address-cells = <1>; 103*f126890aSEmmanuel Vadot #size-cells = <1>; 104*f126890aSEmmanuel Vadot 105*f126890aSEmmanuel Vadot bm-sram@f7000 { 106*f126890aSEmmanuel Vadot reg = <0x000f7000 0x8000>; 107*f126890aSEmmanuel Vadot }; 108*f126890aSEmmanuel Vadot }; 109*f126890aSEmmanuel Vadot 110*f126890aSEmmanuel Vadot k2g_pinctrl: pinmux@2621000 { 111*f126890aSEmmanuel Vadot compatible = "pinctrl-single"; 112*f126890aSEmmanuel Vadot reg = <0x02621000 0x410>; 113*f126890aSEmmanuel Vadot pinctrl-single,register-width = <32>; 114*f126890aSEmmanuel Vadot pinctrl-single,function-mask = <0x001b0007>; 115*f126890aSEmmanuel Vadot }; 116*f126890aSEmmanuel Vadot 117*f126890aSEmmanuel Vadot devctrl: device-state-control@2620000 { 118*f126890aSEmmanuel Vadot compatible = "ti,keystone-devctrl", "syscon", "simple-mfd"; 119*f126890aSEmmanuel Vadot reg = <0x02620000 0x1000>; 120*f126890aSEmmanuel Vadot #address-cells = <1>; 121*f126890aSEmmanuel Vadot #size-cells = <1>; 122*f126890aSEmmanuel Vadot ranges = <0x0 0x02620000 0x1000>; 123*f126890aSEmmanuel Vadot 124*f126890aSEmmanuel Vadot kirq0: keystone_irq@2a0 { 125*f126890aSEmmanuel Vadot compatible = "ti,keystone-irq"; 126*f126890aSEmmanuel Vadot reg = <0x2a0 0x10>; 127*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 1 IRQ_TYPE_EDGE_RISING>; 128*f126890aSEmmanuel Vadot interrupt-controller; 129*f126890aSEmmanuel Vadot #interrupt-cells = <1>; 130*f126890aSEmmanuel Vadot ti,syscon-dev = <&devctrl 0x2a0>; 131*f126890aSEmmanuel Vadot }; 132*f126890aSEmmanuel Vadot 133*f126890aSEmmanuel Vadot dspgpio0: keystone_dsp_gpio@240 { 134*f126890aSEmmanuel Vadot compatible = "ti,keystone-dsp-gpio"; 135*f126890aSEmmanuel Vadot reg = <0x240 0x4>; 136*f126890aSEmmanuel Vadot gpio-controller; 137*f126890aSEmmanuel Vadot #gpio-cells = <2>; 138*f126890aSEmmanuel Vadot gpio,syscon-dev = <&devctrl 0x240>; 139*f126890aSEmmanuel Vadot }; 140*f126890aSEmmanuel Vadot }; 141*f126890aSEmmanuel Vadot 142*f126890aSEmmanuel Vadot uart0: serial@2530c00 { 143*f126890aSEmmanuel Vadot compatible = "ti,da830-uart", "ns16550a"; 144*f126890aSEmmanuel Vadot current-speed = <115200>; 145*f126890aSEmmanuel Vadot reg-shift = <2>; 146*f126890aSEmmanuel Vadot reg-io-width = <4>; 147*f126890aSEmmanuel Vadot reg = <0x02530c00 0x100>; 148*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 164 IRQ_TYPE_EDGE_RISING>; 149*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x2c 0>; 150*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x2c>; 151*f126890aSEmmanuel Vadot status = "disabled"; 152*f126890aSEmmanuel Vadot }; 153*f126890aSEmmanuel Vadot 154*f126890aSEmmanuel Vadot uart1: serial@2531000 { 155*f126890aSEmmanuel Vadot compatible = "ti,da830-uart", "ns16550a"; 156*f126890aSEmmanuel Vadot current-speed = <115200>; 157*f126890aSEmmanuel Vadot reg-shift = <2>; 158*f126890aSEmmanuel Vadot reg-io-width = <4>; 159*f126890aSEmmanuel Vadot reg = <0x02531000 0x100>; 160*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 165 IRQ_TYPE_EDGE_RISING>; 161*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x2d 0>; 162*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x2d>; 163*f126890aSEmmanuel Vadot status = "disabled"; 164*f126890aSEmmanuel Vadot }; 165*f126890aSEmmanuel Vadot 166*f126890aSEmmanuel Vadot uart2: serial@2531400 { 167*f126890aSEmmanuel Vadot compatible = "ti,da830-uart", "ns16550a"; 168*f126890aSEmmanuel Vadot current-speed = <115200>; 169*f126890aSEmmanuel Vadot reg-shift = <2>; 170*f126890aSEmmanuel Vadot reg-io-width = <4>; 171*f126890aSEmmanuel Vadot reg = <0x02531400 0x100>; 172*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 166 IRQ_TYPE_EDGE_RISING>; 173*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x2e 0>; 174*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x2e>; 175*f126890aSEmmanuel Vadot status = "disabled"; 176*f126890aSEmmanuel Vadot }; 177*f126890aSEmmanuel Vadot 178*f126890aSEmmanuel Vadot dcan0: can@260b200 { 179*f126890aSEmmanuel Vadot compatible = "ti,am4372-d_can", "ti,am3352-d_can"; 180*f126890aSEmmanuel Vadot reg = <0x0260b200 0x200>; 181*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 190 IRQ_TYPE_EDGE_RISING>; 182*f126890aSEmmanuel Vadot status = "disabled"; 183*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0008>; 184*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x0008 1>; 185*f126890aSEmmanuel Vadot }; 186*f126890aSEmmanuel Vadot 187*f126890aSEmmanuel Vadot dcan1: can@260b400 { 188*f126890aSEmmanuel Vadot compatible = "ti,am4372-d_can", "ti,am3352-d_can"; 189*f126890aSEmmanuel Vadot reg = <0x0260b400 0x200>; 190*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 193 IRQ_TYPE_EDGE_RISING>; 191*f126890aSEmmanuel Vadot status = "disabled"; 192*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0009>; 193*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x0009 1>; 194*f126890aSEmmanuel Vadot }; 195*f126890aSEmmanuel Vadot 196*f126890aSEmmanuel Vadot i2c0: i2c@2530000 { 197*f126890aSEmmanuel Vadot compatible = "ti,keystone-i2c"; 198*f126890aSEmmanuel Vadot reg = <0x02530000 0x400>; 199*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x003a 0>; 200*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x003a>; 201*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 88 IRQ_TYPE_EDGE_RISING>; 202*f126890aSEmmanuel Vadot #address-cells = <1>; 203*f126890aSEmmanuel Vadot #size-cells = <0>; 204*f126890aSEmmanuel Vadot status = "disabled"; 205*f126890aSEmmanuel Vadot }; 206*f126890aSEmmanuel Vadot 207*f126890aSEmmanuel Vadot i2c1: i2c@2530400 { 208*f126890aSEmmanuel Vadot compatible = "ti,keystone-i2c"; 209*f126890aSEmmanuel Vadot reg = <0x02530400 0x400>; 210*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x003b 0>; 211*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x003b>; 212*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 89 IRQ_TYPE_EDGE_RISING>; 213*f126890aSEmmanuel Vadot #address-cells = <1>; 214*f126890aSEmmanuel Vadot #size-cells = <0>; 215*f126890aSEmmanuel Vadot status = "disabled"; 216*f126890aSEmmanuel Vadot }; 217*f126890aSEmmanuel Vadot 218*f126890aSEmmanuel Vadot i2c2: i2c@2530800 { 219*f126890aSEmmanuel Vadot compatible = "ti,keystone-i2c"; 220*f126890aSEmmanuel Vadot reg = <0x02530800 0x400>; 221*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x003c 0>; 222*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x003c>; 223*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 90 IRQ_TYPE_EDGE_RISING>; 224*f126890aSEmmanuel Vadot #address-cells = <1>; 225*f126890aSEmmanuel Vadot #size-cells = <0>; 226*f126890aSEmmanuel Vadot status = "disabled"; 227*f126890aSEmmanuel Vadot }; 228*f126890aSEmmanuel Vadot 229*f126890aSEmmanuel Vadot dsp0: dsp@10800000 { 230*f126890aSEmmanuel Vadot compatible = "ti,k2g-dsp"; 231*f126890aSEmmanuel Vadot reg = <0x10800000 0x00100000>, 232*f126890aSEmmanuel Vadot <0x10e00000 0x00008000>, 233*f126890aSEmmanuel Vadot <0x10f00000 0x00008000>; 234*f126890aSEmmanuel Vadot reg-names = "l2sram", "l1pram", "l1dram"; 235*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0046>; 236*f126890aSEmmanuel Vadot ti,syscon-dev = <&devctrl 0x844>; 237*f126890aSEmmanuel Vadot resets = <&k2g_reset 0x0046 0x1>; 238*f126890aSEmmanuel Vadot interrupt-parent = <&kirq0>; 239*f126890aSEmmanuel Vadot interrupts = <0 8>; 240*f126890aSEmmanuel Vadot interrupt-names = "vring", "exception"; 241*f126890aSEmmanuel Vadot kick-gpios = <&dspgpio0 27 0>; 242*f126890aSEmmanuel Vadot status = "disabled"; 243*f126890aSEmmanuel Vadot }; 244*f126890aSEmmanuel Vadot 245*f126890aSEmmanuel Vadot msgmgr: mailbox@2a00000 { 246*f126890aSEmmanuel Vadot compatible = "ti,k2g-message-manager"; 247*f126890aSEmmanuel Vadot #mbox-cells = <2>; 248*f126890aSEmmanuel Vadot reg-names = "queue_proxy_region", 249*f126890aSEmmanuel Vadot "queue_state_debug_region"; 250*f126890aSEmmanuel Vadot reg = <0x02a00000 0x400000>, <0x028c3400 0x400>; 251*f126890aSEmmanuel Vadot interrupt-names = "rx_005", 252*f126890aSEmmanuel Vadot "rx_057"; 253*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 324 IRQ_TYPE_LEVEL_HIGH>, 254*f126890aSEmmanuel Vadot <GIC_SPI 327 IRQ_TYPE_LEVEL_HIGH>; 255*f126890aSEmmanuel Vadot }; 256*f126890aSEmmanuel Vadot 257*f126890aSEmmanuel Vadot pmmc: system-controller@2921c00 { 258*f126890aSEmmanuel Vadot compatible = "ti,k2g-sci"; 259*f126890aSEmmanuel Vadot /* 260*f126890aSEmmanuel Vadot * In case of rare platforms that does not use k2g as 261*f126890aSEmmanuel Vadot * system master, use /delete-property/ 262*f126890aSEmmanuel Vadot */ 263*f126890aSEmmanuel Vadot ti,system-reboot-controller; 264*f126890aSEmmanuel Vadot mbox-names = "rx", "tx"; 265*f126890aSEmmanuel Vadot mboxes = <&msgmgr 5 2>, 266*f126890aSEmmanuel Vadot <&msgmgr 0 0>; 267*f126890aSEmmanuel Vadot reg-names = "debug_messages"; 268*f126890aSEmmanuel Vadot reg = <0x02921c00 0x400>; 269*f126890aSEmmanuel Vadot 270*f126890aSEmmanuel Vadot k2g_pds: power-controller { 271*f126890aSEmmanuel Vadot compatible = "ti,sci-pm-domain"; 272*f126890aSEmmanuel Vadot #power-domain-cells = <1>; 273*f126890aSEmmanuel Vadot }; 274*f126890aSEmmanuel Vadot 275*f126890aSEmmanuel Vadot k2g_clks: clock-controller { 276*f126890aSEmmanuel Vadot compatible = "ti,k2g-sci-clk"; 277*f126890aSEmmanuel Vadot #clock-cells = <2>; 278*f126890aSEmmanuel Vadot }; 279*f126890aSEmmanuel Vadot 280*f126890aSEmmanuel Vadot k2g_reset: reset-controller { 281*f126890aSEmmanuel Vadot compatible = "ti,sci-reset"; 282*f126890aSEmmanuel Vadot #reset-cells = <2>; 283*f126890aSEmmanuel Vadot }; 284*f126890aSEmmanuel Vadot }; 285*f126890aSEmmanuel Vadot 286*f126890aSEmmanuel Vadot gpio0: gpio@2603000 { 287*f126890aSEmmanuel Vadot compatible = "ti,k2g-gpio", "ti,keystone-gpio"; 288*f126890aSEmmanuel Vadot reg = <0x02603000 0x100>; 289*f126890aSEmmanuel Vadot gpio-controller; 290*f126890aSEmmanuel Vadot #gpio-cells = <2>; 291*f126890aSEmmanuel Vadot 292*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 432 IRQ_TYPE_EDGE_RISING>, 293*f126890aSEmmanuel Vadot <GIC_SPI 433 IRQ_TYPE_EDGE_RISING>, 294*f126890aSEmmanuel Vadot <GIC_SPI 434 IRQ_TYPE_EDGE_RISING>, 295*f126890aSEmmanuel Vadot <GIC_SPI 435 IRQ_TYPE_EDGE_RISING>, 296*f126890aSEmmanuel Vadot <GIC_SPI 436 IRQ_TYPE_EDGE_RISING>, 297*f126890aSEmmanuel Vadot <GIC_SPI 437 IRQ_TYPE_EDGE_RISING>, 298*f126890aSEmmanuel Vadot <GIC_SPI 438 IRQ_TYPE_EDGE_RISING>, 299*f126890aSEmmanuel Vadot <GIC_SPI 439 IRQ_TYPE_EDGE_RISING>, 300*f126890aSEmmanuel Vadot <GIC_SPI 440 IRQ_TYPE_EDGE_RISING>; 301*f126890aSEmmanuel Vadot interrupt-controller; 302*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 303*f126890aSEmmanuel Vadot ti,ngpio = <144>; 304*f126890aSEmmanuel Vadot ti,davinci-gpio-unbanked = <0>; 305*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x001b 0x0>; 306*f126890aSEmmanuel Vadot clock-names = "gpio"; 307*f126890aSEmmanuel Vadot }; 308*f126890aSEmmanuel Vadot 309*f126890aSEmmanuel Vadot gpio1: gpio@260a000 { 310*f126890aSEmmanuel Vadot compatible = "ti,k2g-gpio", "ti,keystone-gpio"; 311*f126890aSEmmanuel Vadot reg = <0x0260a000 0x100>; 312*f126890aSEmmanuel Vadot gpio-controller; 313*f126890aSEmmanuel Vadot #gpio-cells = <2>; 314*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 442 IRQ_TYPE_EDGE_RISING>, 315*f126890aSEmmanuel Vadot <GIC_SPI 443 IRQ_TYPE_EDGE_RISING>, 316*f126890aSEmmanuel Vadot <GIC_SPI 444 IRQ_TYPE_EDGE_RISING>, 317*f126890aSEmmanuel Vadot <GIC_SPI 445 IRQ_TYPE_EDGE_RISING>, 318*f126890aSEmmanuel Vadot <GIC_SPI 446 IRQ_TYPE_EDGE_RISING>; 319*f126890aSEmmanuel Vadot interrupt-controller; 320*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 321*f126890aSEmmanuel Vadot ti,ngpio = <68>; 322*f126890aSEmmanuel Vadot ti,davinci-gpio-unbanked = <0>; 323*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x001c 0x0>; 324*f126890aSEmmanuel Vadot clock-names = "gpio"; 325*f126890aSEmmanuel Vadot }; 326*f126890aSEmmanuel Vadot 327*f126890aSEmmanuel Vadot dss: dss@02540000 { 328*f126890aSEmmanuel Vadot compatible = "ti,k2g-dss"; 329*f126890aSEmmanuel Vadot reg = <0x02540000 0x400>, 330*f126890aSEmmanuel Vadot <0x02550000 0x1000>, 331*f126890aSEmmanuel Vadot <0x02557000 0x1000>, 332*f126890aSEmmanuel Vadot <0x0255a800 0x100>, 333*f126890aSEmmanuel Vadot <0x0255ac00 0x100>; 334*f126890aSEmmanuel Vadot reg-names = "cfg", "common", "vid1", "ovr1", "vp1"; 335*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x2 0>, 336*f126890aSEmmanuel Vadot <&k2g_clks 0x2 1>; 337*f126890aSEmmanuel Vadot clock-names = "fck", "vp1"; 338*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 247 IRQ_TYPE_EDGE_RISING>; 339*f126890aSEmmanuel Vadot 340*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x2>; 341*f126890aSEmmanuel Vadot status = "disabled"; 342*f126890aSEmmanuel Vadot #address-cells = <1>; 343*f126890aSEmmanuel Vadot #size-cells = <1>; 344*f126890aSEmmanuel Vadot ranges; 345*f126890aSEmmanuel Vadot 346*f126890aSEmmanuel Vadot max-memory-bandwidth = <230000000>; 347*f126890aSEmmanuel Vadot }; 348*f126890aSEmmanuel Vadot 349*f126890aSEmmanuel Vadot edma0: edma@2700000 { 350*f126890aSEmmanuel Vadot compatible = "ti,k2g-edma3-tpcc", "ti,edma3-tpcc"; 351*f126890aSEmmanuel Vadot reg = <0x02700000 0x8000>; 352*f126890aSEmmanuel Vadot reg-names = "edma3_cc"; 353*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 200 IRQ_TYPE_EDGE_RISING>, 354*f126890aSEmmanuel Vadot <GIC_SPI 216 IRQ_TYPE_EDGE_RISING>, 355*f126890aSEmmanuel Vadot <GIC_SPI 217 IRQ_TYPE_EDGE_RISING>; 356*f126890aSEmmanuel Vadot interrupt-names = "edma3_ccint", "emda3_mperr", 357*f126890aSEmmanuel Vadot "edma3_ccerrint"; 358*f126890aSEmmanuel Vadot dma-requests = <64>; 359*f126890aSEmmanuel Vadot #dma-cells = <2>; 360*f126890aSEmmanuel Vadot 361*f126890aSEmmanuel Vadot ti,tptcs = <&edma0_tptc0 7>, <&edma0_tptc1 0>; 362*f126890aSEmmanuel Vadot 363*f126890aSEmmanuel Vadot ti,edma-memcpy-channels = <32 33 34 35>; 364*f126890aSEmmanuel Vadot 365*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x3f>; 366*f126890aSEmmanuel Vadot }; 367*f126890aSEmmanuel Vadot 368*f126890aSEmmanuel Vadot edma0_tptc0: tptc@2760000 { 369*f126890aSEmmanuel Vadot compatible = "ti,k2g-edma3-tptc", "ti,edma3-tptc"; 370*f126890aSEmmanuel Vadot reg = <0x02760000 0x400>; 371*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x3f>; 372*f126890aSEmmanuel Vadot }; 373*f126890aSEmmanuel Vadot 374*f126890aSEmmanuel Vadot edma0_tptc1: tptc@2768000 { 375*f126890aSEmmanuel Vadot compatible = "ti,k2g-edma3-tptc", "ti,edma3-tptc"; 376*f126890aSEmmanuel Vadot reg = <0x02768000 0x400>; 377*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x3f>; 378*f126890aSEmmanuel Vadot }; 379*f126890aSEmmanuel Vadot 380*f126890aSEmmanuel Vadot edma1: edma@2728000 { 381*f126890aSEmmanuel Vadot compatible = "ti,k2g-edma3-tpcc", "ti,edma3-tpcc"; 382*f126890aSEmmanuel Vadot reg = <0x02728000 0x8000>; 383*f126890aSEmmanuel Vadot reg-names = "edma3_cc"; 384*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 208 IRQ_TYPE_EDGE_RISING>, 385*f126890aSEmmanuel Vadot <GIC_SPI 219 IRQ_TYPE_EDGE_RISING>, 386*f126890aSEmmanuel Vadot <GIC_SPI 220 IRQ_TYPE_EDGE_RISING>; 387*f126890aSEmmanuel Vadot interrupt-names = "edma3_ccint", "emda3_mperr", 388*f126890aSEmmanuel Vadot "edma3_ccerrint"; 389*f126890aSEmmanuel Vadot dma-requests = <64>; 390*f126890aSEmmanuel Vadot #dma-cells = <2>; 391*f126890aSEmmanuel Vadot 392*f126890aSEmmanuel Vadot ti,tptcs = <&edma1_tptc0 7>, <&edma1_tptc1 0>; 393*f126890aSEmmanuel Vadot 394*f126890aSEmmanuel Vadot /* 395*f126890aSEmmanuel Vadot * memcpy is disabled, can be enabled with: 396*f126890aSEmmanuel Vadot * ti,edma-memcpy-channels = <12 13 14 15>; 397*f126890aSEmmanuel Vadot * for example. 398*f126890aSEmmanuel Vadot */ 399*f126890aSEmmanuel Vadot 400*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x4f>; 401*f126890aSEmmanuel Vadot }; 402*f126890aSEmmanuel Vadot 403*f126890aSEmmanuel Vadot edma1_tptc0: tptc@27b0000 { 404*f126890aSEmmanuel Vadot compatible = "ti,k2g-edma3-tptc", "ti,edma3-tptc"; 405*f126890aSEmmanuel Vadot reg = <0x027b0000 0x400>; 406*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x4f>; 407*f126890aSEmmanuel Vadot }; 408*f126890aSEmmanuel Vadot 409*f126890aSEmmanuel Vadot edma1_tptc1: tptc@27b8000 { 410*f126890aSEmmanuel Vadot compatible = "ti,k2g-edma3-tptc", "ti,edma3-tptc"; 411*f126890aSEmmanuel Vadot reg = <0x027b8000 0x400>; 412*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x4f>; 413*f126890aSEmmanuel Vadot }; 414*f126890aSEmmanuel Vadot 415*f126890aSEmmanuel Vadot mmc0: mmc@23000000 { 416*f126890aSEmmanuel Vadot compatible = "ti,k2g-sdhci"; 417*f126890aSEmmanuel Vadot reg = <0x23000000 0x400>; 418*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 96 IRQ_TYPE_EDGE_RISING>; 419*f126890aSEmmanuel Vadot bus-width = <4>; 420*f126890aSEmmanuel Vadot no-1-8-v; 421*f126890aSEmmanuel Vadot max-frequency = <96000000>; 422*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0xb>; 423*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0xb 1>, <&k2g_clks 0xb 2>; 424*f126890aSEmmanuel Vadot clock-names = "fck", "mmchsdb_fck"; 425*f126890aSEmmanuel Vadot status = "disabled"; 426*f126890aSEmmanuel Vadot }; 427*f126890aSEmmanuel Vadot 428*f126890aSEmmanuel Vadot mmc1: mmc@23100000 { 429*f126890aSEmmanuel Vadot compatible = "ti,k2g-sdhci"; 430*f126890aSEmmanuel Vadot reg = <0x23100000 0x400>; 431*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 97 IRQ_TYPE_EDGE_RISING>; 432*f126890aSEmmanuel Vadot bus-width = <8>; 433*f126890aSEmmanuel Vadot no-1-8-v; 434*f126890aSEmmanuel Vadot non-removable; 435*f126890aSEmmanuel Vadot max-frequency = <96000000>; 436*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0xc>; 437*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0xc 1>, <&k2g_clks 0xc 2>; 438*f126890aSEmmanuel Vadot clock-names = "fck", "mmchsdb_fck"; 439*f126890aSEmmanuel Vadot }; 440*f126890aSEmmanuel Vadot 441*f126890aSEmmanuel Vadot qspi: spi@2940000 { 442*f126890aSEmmanuel Vadot compatible = "ti,k2g-qspi", "cdns,qspi-nor"; 443*f126890aSEmmanuel Vadot #address-cells = <1>; 444*f126890aSEmmanuel Vadot #size-cells = <0>; 445*f126890aSEmmanuel Vadot reg = <0x02940000 0x1000>, 446*f126890aSEmmanuel Vadot <0x24000000 0x4000000>; 447*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 198 IRQ_TYPE_EDGE_RISING>; 448*f126890aSEmmanuel Vadot cdns,fifo-depth = <256>; 449*f126890aSEmmanuel Vadot cdns,fifo-width = <4>; 450*f126890aSEmmanuel Vadot cdns,trigger-address = <0x24000000>; 451*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x43 0x0>; 452*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x43>; 453*f126890aSEmmanuel Vadot status = "disabled"; 454*f126890aSEmmanuel Vadot }; 455*f126890aSEmmanuel Vadot 456*f126890aSEmmanuel Vadot mcasp0: mcasp@2340000 { 457*f126890aSEmmanuel Vadot compatible = "ti,am33xx-mcasp-audio"; 458*f126890aSEmmanuel Vadot reg = <0x02340000 0x2000>, 459*f126890aSEmmanuel Vadot <0x21804000 0x1000>; 460*f126890aSEmmanuel Vadot reg-names = "mpu","dat"; 461*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>, 462*f126890aSEmmanuel Vadot <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>; 463*f126890aSEmmanuel Vadot interrupt-names = "tx", "rx"; 464*f126890aSEmmanuel Vadot dmas = <&edma0 24 1>, <&edma0 25 1>; 465*f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 466*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x4>; 467*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x4 0>; 468*f126890aSEmmanuel Vadot clock-names = "fck"; 469*f126890aSEmmanuel Vadot status = "disabled"; 470*f126890aSEmmanuel Vadot }; 471*f126890aSEmmanuel Vadot 472*f126890aSEmmanuel Vadot mcasp1: mcasp@2342000 { 473*f126890aSEmmanuel Vadot compatible = "ti,am33xx-mcasp-audio"; 474*f126890aSEmmanuel Vadot reg = <0x02342000 0x2000>, 475*f126890aSEmmanuel Vadot <0x21804400 0x1000>; 476*f126890aSEmmanuel Vadot reg-names = "mpu","dat"; 477*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>, 478*f126890aSEmmanuel Vadot <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; 479*f126890aSEmmanuel Vadot interrupt-names = "tx", "rx"; 480*f126890aSEmmanuel Vadot dmas = <&edma1 48 1>, <&edma1 49 1>; 481*f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 482*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x5>; 483*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x5 0>; 484*f126890aSEmmanuel Vadot clock-names = "fck"; 485*f126890aSEmmanuel Vadot status = "disabled"; 486*f126890aSEmmanuel Vadot }; 487*f126890aSEmmanuel Vadot 488*f126890aSEmmanuel Vadot mcasp2: mcasp@2344000 { 489*f126890aSEmmanuel Vadot compatible = "ti,am33xx-mcasp-audio"; 490*f126890aSEmmanuel Vadot reg = <0x02344000 0x2000>, 491*f126890aSEmmanuel Vadot <0x21804800 0x1000>; 492*f126890aSEmmanuel Vadot reg-names = "mpu","dat"; 493*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>, 494*f126890aSEmmanuel Vadot <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>; 495*f126890aSEmmanuel Vadot interrupt-names = "tx", "rx"; 496*f126890aSEmmanuel Vadot dmas = <&edma1 50 1>, <&edma1 51 1>; 497*f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 498*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x6>; 499*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x6 0>; 500*f126890aSEmmanuel Vadot clock-names = "fck"; 501*f126890aSEmmanuel Vadot status = "disabled"; 502*f126890aSEmmanuel Vadot }; 503*f126890aSEmmanuel Vadot 504*f126890aSEmmanuel Vadot keystone_usb0: keystone-dwc3@2680000 { 505*f126890aSEmmanuel Vadot compatible = "ti,keystone-dwc3"; 506*f126890aSEmmanuel Vadot #address-cells = <1>; 507*f126890aSEmmanuel Vadot #size-cells = <1>; 508*f126890aSEmmanuel Vadot reg = <0x2680000 0x10000>; 509*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 128 IRQ_TYPE_EDGE_RISING>; 510*f126890aSEmmanuel Vadot ranges; 511*f126890aSEmmanuel Vadot dma-coherent; 512*f126890aSEmmanuel Vadot dma-ranges; 513*f126890aSEmmanuel Vadot status = "disabled"; 514*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0016>; 515*f126890aSEmmanuel Vadot 516*f126890aSEmmanuel Vadot usb0: usb@2690000 { 517*f126890aSEmmanuel Vadot compatible = "snps,dwc3"; 518*f126890aSEmmanuel Vadot reg = <0x2690000 0x10000>; 519*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 128 IRQ_TYPE_EDGE_RISING>; 520*f126890aSEmmanuel Vadot maximum-speed = "high-speed"; 521*f126890aSEmmanuel Vadot dr_mode = "otg"; 522*f126890aSEmmanuel Vadot usb-phy = <&usb0_phy>; 523*f126890aSEmmanuel Vadot status = "disabled"; 524*f126890aSEmmanuel Vadot }; 525*f126890aSEmmanuel Vadot }; 526*f126890aSEmmanuel Vadot 527*f126890aSEmmanuel Vadot keystone_usb1: keystone-dwc3@2580000 { 528*f126890aSEmmanuel Vadot compatible = "ti,keystone-dwc3"; 529*f126890aSEmmanuel Vadot #address-cells = <1>; 530*f126890aSEmmanuel Vadot #size-cells = <1>; 531*f126890aSEmmanuel Vadot reg = <0x2580000 0x10000>; 532*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 144 IRQ_TYPE_EDGE_RISING>; 533*f126890aSEmmanuel Vadot ranges; 534*f126890aSEmmanuel Vadot dma-coherent; 535*f126890aSEmmanuel Vadot dma-ranges; 536*f126890aSEmmanuel Vadot status = "disabled"; 537*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0017>; 538*f126890aSEmmanuel Vadot 539*f126890aSEmmanuel Vadot usb1: usb@2590000 { 540*f126890aSEmmanuel Vadot compatible = "snps,dwc3"; 541*f126890aSEmmanuel Vadot reg = <0x2590000 0x10000>; 542*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 144 IRQ_TYPE_EDGE_RISING>; 543*f126890aSEmmanuel Vadot maximum-speed = "high-speed"; 544*f126890aSEmmanuel Vadot dr_mode = "otg"; 545*f126890aSEmmanuel Vadot usb-phy = <&usb1_phy>; 546*f126890aSEmmanuel Vadot status = "disabled"; 547*f126890aSEmmanuel Vadot }; 548*f126890aSEmmanuel Vadot }; 549*f126890aSEmmanuel Vadot 550*f126890aSEmmanuel Vadot ecap0: pwm@21d1800 { 551*f126890aSEmmanuel Vadot compatible = "ti,k2g-ecap", "ti,am3352-ecap"; 552*f126890aSEmmanuel Vadot #pwm-cells = <3>; 553*f126890aSEmmanuel Vadot reg = <0x021d1800 0x60>; 554*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x38>; 555*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x38 0>; 556*f126890aSEmmanuel Vadot clock-names = "fck"; 557*f126890aSEmmanuel Vadot status = "disabled"; 558*f126890aSEmmanuel Vadot }; 559*f126890aSEmmanuel Vadot 560*f126890aSEmmanuel Vadot ecap1: pwm@21d1c00 { 561*f126890aSEmmanuel Vadot compatible = "ti,k2g-ecap", "ti,am3352-ecap"; 562*f126890aSEmmanuel Vadot #pwm-cells = <3>; 563*f126890aSEmmanuel Vadot reg = <0x021d1c00 0x60>; 564*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x39>; 565*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x39 0x0>; 566*f126890aSEmmanuel Vadot clock-names = "fck"; 567*f126890aSEmmanuel Vadot status = "disabled"; 568*f126890aSEmmanuel Vadot }; 569*f126890aSEmmanuel Vadot 570*f126890aSEmmanuel Vadot spi0: spi@21805400 { 571*f126890aSEmmanuel Vadot compatible = "ti,keystone-spi"; 572*f126890aSEmmanuel Vadot reg = <0x21805400 0x200>; 573*f126890aSEmmanuel Vadot num-cs = <4>; 574*f126890aSEmmanuel Vadot ti,davinci-spi-intr-line = <0>; 575*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 64 IRQ_TYPE_EDGE_RISING>; 576*f126890aSEmmanuel Vadot #address-cells = <1>; 577*f126890aSEmmanuel Vadot #size-cells = <0>; 578*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0010>; 579*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x0010 0>; 580*f126890aSEmmanuel Vadot }; 581*f126890aSEmmanuel Vadot 582*f126890aSEmmanuel Vadot spi1: spi@21805800 { 583*f126890aSEmmanuel Vadot compatible = "ti,keystone-spi"; 584*f126890aSEmmanuel Vadot reg = <0x21805800 0x200>; 585*f126890aSEmmanuel Vadot num-cs = <4>; 586*f126890aSEmmanuel Vadot ti,davinci-spi-intr-line = <0>; 587*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 66 IRQ_TYPE_EDGE_RISING>; 588*f126890aSEmmanuel Vadot #address-cells = <1>; 589*f126890aSEmmanuel Vadot #size-cells = <0>; 590*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0011>; 591*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x0011 0>; 592*f126890aSEmmanuel Vadot }; 593*f126890aSEmmanuel Vadot 594*f126890aSEmmanuel Vadot spi2: spi@21805c00 { 595*f126890aSEmmanuel Vadot compatible = "ti,keystone-spi"; 596*f126890aSEmmanuel Vadot reg = <0x21805c00 0x200>; 597*f126890aSEmmanuel Vadot num-cs = <4>; 598*f126890aSEmmanuel Vadot ti,davinci-spi-intr-line = <0>; 599*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 68 IRQ_TYPE_EDGE_RISING>; 600*f126890aSEmmanuel Vadot #address-cells = <1>; 601*f126890aSEmmanuel Vadot #size-cells = <0>; 602*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0012>; 603*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x0012 0>; 604*f126890aSEmmanuel Vadot }; 605*f126890aSEmmanuel Vadot 606*f126890aSEmmanuel Vadot spi3: spi@21806000 { 607*f126890aSEmmanuel Vadot compatible = "ti,keystone-spi"; 608*f126890aSEmmanuel Vadot reg = <0x21806000 0x200>; 609*f126890aSEmmanuel Vadot num-cs = <4>; 610*f126890aSEmmanuel Vadot ti,davinci-spi-intr-line = <0>; 611*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 70 IRQ_TYPE_EDGE_RISING>; 612*f126890aSEmmanuel Vadot #address-cells = <1>; 613*f126890aSEmmanuel Vadot #size-cells = <0>; 614*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0013>; 615*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x0013 0>; 616*f126890aSEmmanuel Vadot }; 617*f126890aSEmmanuel Vadot 618*f126890aSEmmanuel Vadot wdt: wdt@02250000 { 619*f126890aSEmmanuel Vadot compatible = "ti,keystone-wdt", "ti,davinci-wdt"; 620*f126890aSEmmanuel Vadot reg = <0x02250000 0x80>; 621*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x22>; 622*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x22 0>; 623*f126890aSEmmanuel Vadot }; 624*f126890aSEmmanuel Vadot 625*f126890aSEmmanuel Vadot emif: emif@21010000 { 626*f126890aSEmmanuel Vadot compatible = "ti,emif-keystone"; 627*f126890aSEmmanuel Vadot reg = <0x21010000 0x200>; 628*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 123 IRQ_TYPE_EDGE_RISING>; 629*f126890aSEmmanuel Vadot }; 630*f126890aSEmmanuel Vadot 631*f126890aSEmmanuel Vadot mdio: mdio@4200f00 { 632*f126890aSEmmanuel Vadot compatible = "ti,keystone_mdio", "ti,davinci_mdio"; 633*f126890aSEmmanuel Vadot reg = <0x04200f00 0x100>; 634*f126890aSEmmanuel Vadot #address-cells = <1>; 635*f126890aSEmmanuel Vadot #size-cells = <0>; 636*f126890aSEmmanuel Vadot clocks = <&k2g_clks 0x0018 3>; 637*f126890aSEmmanuel Vadot clock-names = "fck"; 638*f126890aSEmmanuel Vadot power-domains = <&k2g_pds 0x0018>; 639*f126890aSEmmanuel Vadot status = "disabled"; 640*f126890aSEmmanuel Vadot bus_freq = <2500000>; 641*f126890aSEmmanuel Vadot }; 642*f126890aSEmmanuel Vadot #include "keystone-k2g-netcp.dtsi" 643*f126890aSEmmanuel Vadot }; 644*f126890aSEmmanuel Vadot}; 645