1*f126890aSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0 OR MIT) 2*f126890aSEmmanuel Vadot/* 3*f126890aSEmmanuel Vadot * Copyright 2016 Freescale Semiconductor, Inc. 4*f126890aSEmmanuel Vadot * Copyright 2017-2018 NXP. 5*f126890aSEmmanuel Vadot * 6*f126890aSEmmanuel Vadot */ 7*f126890aSEmmanuel Vadot 8*f126890aSEmmanuel Vadot#include <dt-bindings/clock/imx6sll-clock.h> 9*f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 10*f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h> 11*f126890aSEmmanuel Vadot#include "imx6sll-pinfunc.h" 12*f126890aSEmmanuel Vadot 13*f126890aSEmmanuel Vadot/ { 14*f126890aSEmmanuel Vadot #address-cells = <1>; 15*f126890aSEmmanuel Vadot #size-cells = <1>; 16*f126890aSEmmanuel Vadot 17*f126890aSEmmanuel Vadot aliases { 18*f126890aSEmmanuel Vadot gpio0 = &gpio1; 19*f126890aSEmmanuel Vadot gpio1 = &gpio2; 20*f126890aSEmmanuel Vadot gpio2 = &gpio3; 21*f126890aSEmmanuel Vadot gpio3 = &gpio4; 22*f126890aSEmmanuel Vadot gpio4 = &gpio5; 23*f126890aSEmmanuel Vadot gpio5 = &gpio6; 24*f126890aSEmmanuel Vadot i2c0 = &i2c1; 25*f126890aSEmmanuel Vadot i2c1 = &i2c2; 26*f126890aSEmmanuel Vadot i2c2 = &i2c3; 27*f126890aSEmmanuel Vadot mmc0 = &usdhc1; 28*f126890aSEmmanuel Vadot mmc1 = &usdhc2; 29*f126890aSEmmanuel Vadot mmc2 = &usdhc3; 30*f126890aSEmmanuel Vadot serial0 = &uart1; 31*f126890aSEmmanuel Vadot serial1 = &uart2; 32*f126890aSEmmanuel Vadot serial2 = &uart3; 33*f126890aSEmmanuel Vadot serial3 = &uart4; 34*f126890aSEmmanuel Vadot serial4 = &uart5; 35*f126890aSEmmanuel Vadot spi0 = &ecspi1; 36*f126890aSEmmanuel Vadot spi1 = &ecspi2; 37*f126890aSEmmanuel Vadot spi3 = &ecspi3; 38*f126890aSEmmanuel Vadot spi4 = &ecspi4; 39*f126890aSEmmanuel Vadot usb0 = &usbotg1; 40*f126890aSEmmanuel Vadot usb1 = &usbotg2; 41*f126890aSEmmanuel Vadot usbphy0 = &usbphy1; 42*f126890aSEmmanuel Vadot usbphy1 = &usbphy2; 43*f126890aSEmmanuel Vadot }; 44*f126890aSEmmanuel Vadot 45*f126890aSEmmanuel Vadot cpus { 46*f126890aSEmmanuel Vadot #address-cells = <1>; 47*f126890aSEmmanuel Vadot #size-cells = <0>; 48*f126890aSEmmanuel Vadot 49*f126890aSEmmanuel Vadot cpu0: cpu@0 { 50*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9"; 51*f126890aSEmmanuel Vadot device_type = "cpu"; 52*f126890aSEmmanuel Vadot reg = <0>; 53*f126890aSEmmanuel Vadot next-level-cache = <&L2>; 54*f126890aSEmmanuel Vadot operating-points = 55*f126890aSEmmanuel Vadot /* kHz uV */ 56*f126890aSEmmanuel Vadot <996000 1275000>, 57*f126890aSEmmanuel Vadot <792000 1175000>, 58*f126890aSEmmanuel Vadot <396000 1075000>, 59*f126890aSEmmanuel Vadot <198000 975000>; 60*f126890aSEmmanuel Vadot fsl,soc-operating-points = 61*f126890aSEmmanuel Vadot /* ARM kHz SOC-PU uV */ 62*f126890aSEmmanuel Vadot <996000 1175000>, 63*f126890aSEmmanuel Vadot <792000 1175000>, 64*f126890aSEmmanuel Vadot <396000 1175000>, 65*f126890aSEmmanuel Vadot <198000 1175000>; 66*f126890aSEmmanuel Vadot clock-latency = <61036>; /* two CLK32 periods */ 67*f126890aSEmmanuel Vadot #cooling-cells = <2>; 68*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_ARM>, 69*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_PLL2_PFD2>, 70*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_STEP>, 71*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_PLL1_SW>, 72*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_PLL1_SYS>; 73*f126890aSEmmanuel Vadot clock-names = "arm", "pll2_pfd2_396m", "step", 74*f126890aSEmmanuel Vadot "pll1_sw", "pll1_sys"; 75*f126890aSEmmanuel Vadot nvmem-cells = <&cpu_speed_grade>; 76*f126890aSEmmanuel Vadot nvmem-cell-names = "speed_grade"; 77*f126890aSEmmanuel Vadot }; 78*f126890aSEmmanuel Vadot }; 79*f126890aSEmmanuel Vadot 80*f126890aSEmmanuel Vadot ckil: clock-ckil { 81*f126890aSEmmanuel Vadot compatible = "fixed-clock"; 82*f126890aSEmmanuel Vadot #clock-cells = <0>; 83*f126890aSEmmanuel Vadot clock-frequency = <32768>; 84*f126890aSEmmanuel Vadot clock-output-names = "ckil"; 85*f126890aSEmmanuel Vadot }; 86*f126890aSEmmanuel Vadot 87*f126890aSEmmanuel Vadot osc: clock-osc-24m { 88*f126890aSEmmanuel Vadot compatible = "fixed-clock"; 89*f126890aSEmmanuel Vadot #clock-cells = <0>; 90*f126890aSEmmanuel Vadot clock-frequency = <24000000>; 91*f126890aSEmmanuel Vadot clock-output-names = "osc"; 92*f126890aSEmmanuel Vadot }; 93*f126890aSEmmanuel Vadot 94*f126890aSEmmanuel Vadot ipp_di0: clock-ipp-di0 { 95*f126890aSEmmanuel Vadot compatible = "fixed-clock"; 96*f126890aSEmmanuel Vadot #clock-cells = <0>; 97*f126890aSEmmanuel Vadot clock-frequency = <0>; 98*f126890aSEmmanuel Vadot clock-output-names = "ipp_di0"; 99*f126890aSEmmanuel Vadot }; 100*f126890aSEmmanuel Vadot 101*f126890aSEmmanuel Vadot ipp_di1: clock-ipp-di1 { 102*f126890aSEmmanuel Vadot compatible = "fixed-clock"; 103*f126890aSEmmanuel Vadot #clock-cells = <0>; 104*f126890aSEmmanuel Vadot clock-frequency = <0>; 105*f126890aSEmmanuel Vadot clock-output-names = "ipp_di1"; 106*f126890aSEmmanuel Vadot }; 107*f126890aSEmmanuel Vadot 108*f126890aSEmmanuel Vadot soc { 109*f126890aSEmmanuel Vadot #address-cells = <1>; 110*f126890aSEmmanuel Vadot #size-cells = <1>; 111*f126890aSEmmanuel Vadot compatible = "simple-bus"; 112*f126890aSEmmanuel Vadot interrupt-parent = <&gpc>; 113*f126890aSEmmanuel Vadot ranges; 114*f126890aSEmmanuel Vadot 115*f126890aSEmmanuel Vadot ocram: sram@900000 { 116*f126890aSEmmanuel Vadot compatible = "mmio-sram"; 117*f126890aSEmmanuel Vadot reg = <0x00900000 0x20000>; 118*f126890aSEmmanuel Vadot ranges = <0 0x00900000 0x20000>; 119*f126890aSEmmanuel Vadot #address-cells = <1>; 120*f126890aSEmmanuel Vadot #size-cells = <1>; 121*f126890aSEmmanuel Vadot }; 122*f126890aSEmmanuel Vadot 123*f126890aSEmmanuel Vadot intc: interrupt-controller@a01000 { 124*f126890aSEmmanuel Vadot compatible = "arm,cortex-a9-gic"; 125*f126890aSEmmanuel Vadot #interrupt-cells = <3>; 126*f126890aSEmmanuel Vadot interrupt-controller; 127*f126890aSEmmanuel Vadot reg = <0x00a01000 0x1000>, 128*f126890aSEmmanuel Vadot <0x00a00100 0x100>; 129*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 130*f126890aSEmmanuel Vadot }; 131*f126890aSEmmanuel Vadot 132*f126890aSEmmanuel Vadot L2: cache-controller@a02000 { 133*f126890aSEmmanuel Vadot compatible = "arm,pl310-cache"; 134*f126890aSEmmanuel Vadot reg = <0x00a02000 0x1000>; 135*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>; 136*f126890aSEmmanuel Vadot cache-unified; 137*f126890aSEmmanuel Vadot cache-level = <2>; 138*f126890aSEmmanuel Vadot arm,tag-latency = <4 2 3>; 139*f126890aSEmmanuel Vadot arm,data-latency = <4 2 3>; 140*f126890aSEmmanuel Vadot }; 141*f126890aSEmmanuel Vadot 142*f126890aSEmmanuel Vadot aips1: bus@2000000 { 143*f126890aSEmmanuel Vadot compatible = "fsl,aips-bus", "simple-bus"; 144*f126890aSEmmanuel Vadot #address-cells = <1>; 145*f126890aSEmmanuel Vadot #size-cells = <1>; 146*f126890aSEmmanuel Vadot reg = <0x02000000 0x100000>; 147*f126890aSEmmanuel Vadot ranges; 148*f126890aSEmmanuel Vadot 149*f126890aSEmmanuel Vadot spba: spba-bus@2000000 { 150*f126890aSEmmanuel Vadot compatible = "fsl,spba-bus", "simple-bus"; 151*f126890aSEmmanuel Vadot #address-cells = <1>; 152*f126890aSEmmanuel Vadot #size-cells = <1>; 153*f126890aSEmmanuel Vadot reg = <0x02000000 0x40000>; 154*f126890aSEmmanuel Vadot ranges; 155*f126890aSEmmanuel Vadot 156*f126890aSEmmanuel Vadot spdif: spdif@2004000 { 157*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-spdif", "fsl,imx35-spdif"; 158*f126890aSEmmanuel Vadot reg = <0x02004000 0x4000>; 159*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>; 160*f126890aSEmmanuel Vadot dmas = <&sdma 14 18 0>, <&sdma 15 18 0>; 161*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 162*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_SPDIF_GCLK>, 163*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_OSC>, 164*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_SPDIF>, 165*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_DUMMY>, 166*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_DUMMY>, 167*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_DUMMY>, 168*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_IPG>, 169*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_DUMMY>, 170*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_DUMMY>, 171*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_SPBA>; 172*f126890aSEmmanuel Vadot clock-names = "core", "rxtx0", 173*f126890aSEmmanuel Vadot "rxtx1", "rxtx2", 174*f126890aSEmmanuel Vadot "rxtx3", "rxtx4", 175*f126890aSEmmanuel Vadot "rxtx5", "rxtx6", 176*f126890aSEmmanuel Vadot "rxtx7", "dma"; 177*f126890aSEmmanuel Vadot status = "disabled"; 178*f126890aSEmmanuel Vadot }; 179*f126890aSEmmanuel Vadot 180*f126890aSEmmanuel Vadot ecspi1: spi@2008000 { 181*f126890aSEmmanuel Vadot compatible = "fsl,imx6ul-ecspi", "fsl,imx51-ecspi"; 182*f126890aSEmmanuel Vadot reg = <0x02008000 0x4000>; 183*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>; 184*f126890aSEmmanuel Vadot dmas = <&sdma 3 7 1>, <&sdma 4 7 2>; 185*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 186*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_ECSPI1>, 187*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_ECSPI1>; 188*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 189*f126890aSEmmanuel Vadot status = "disabled"; 190*f126890aSEmmanuel Vadot }; 191*f126890aSEmmanuel Vadot 192*f126890aSEmmanuel Vadot ecspi2: spi@200c000 { 193*f126890aSEmmanuel Vadot compatible = "fsl,imx6ul-ecspi", "fsl,imx51-ecspi"; 194*f126890aSEmmanuel Vadot reg = <0x0200c000 0x4000>; 195*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; 196*f126890aSEmmanuel Vadot dmas = <&sdma 5 7 1>, <&sdma 6 7 2>; 197*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 198*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_ECSPI2>, 199*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_ECSPI2>; 200*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 201*f126890aSEmmanuel Vadot status = "disabled"; 202*f126890aSEmmanuel Vadot }; 203*f126890aSEmmanuel Vadot 204*f126890aSEmmanuel Vadot ecspi3: spi@2010000 { 205*f126890aSEmmanuel Vadot compatible = "fsl,imx6ul-ecspi", "fsl,imx51-ecspi"; 206*f126890aSEmmanuel Vadot reg = <0x02010000 0x4000>; 207*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; 208*f126890aSEmmanuel Vadot dmas = <&sdma 7 7 1>, <&sdma 8 7 2>; 209*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 210*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_ECSPI3>, 211*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_ECSPI3>; 212*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 213*f126890aSEmmanuel Vadot status = "disabled"; 214*f126890aSEmmanuel Vadot }; 215*f126890aSEmmanuel Vadot 216*f126890aSEmmanuel Vadot ecspi4: spi@2014000 { 217*f126890aSEmmanuel Vadot compatible = "fsl,imx6ul-ecspi", "fsl,imx51-ecspi"; 218*f126890aSEmmanuel Vadot reg = <0x02014000 0x4000>; 219*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; 220*f126890aSEmmanuel Vadot dmas = <&sdma 9 7 1>, <&sdma 10 7 2>; 221*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 222*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_ECSPI4>, 223*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_ECSPI4>; 224*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 225*f126890aSEmmanuel Vadot status = "disabled"; 226*f126890aSEmmanuel Vadot }; 227*f126890aSEmmanuel Vadot 228*f126890aSEmmanuel Vadot uart4: serial@2018000 { 229*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-uart", "fsl,imx6q-uart", 230*f126890aSEmmanuel Vadot "fsl,imx21-uart"; 231*f126890aSEmmanuel Vadot reg = <0x02018000 0x4000>; 232*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>; 233*f126890aSEmmanuel Vadot dmas = <&sdma 31 4 0>, <&sdma 32 4 0>; 234*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 235*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_UART4_IPG>, 236*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_UART4_SERIAL>; 237*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 238*f126890aSEmmanuel Vadot status = "disabled"; 239*f126890aSEmmanuel Vadot }; 240*f126890aSEmmanuel Vadot 241*f126890aSEmmanuel Vadot uart1: serial@2020000 { 242*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-uart", "fsl,imx6q-uart", 243*f126890aSEmmanuel Vadot "fsl,imx21-uart"; 244*f126890aSEmmanuel Vadot reg = <0x02020000 0x4000>; 245*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>; 246*f126890aSEmmanuel Vadot dmas = <&sdma 25 4 0>, <&sdma 26 4 0>; 247*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 248*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_UART1_IPG>, 249*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_UART1_SERIAL>; 250*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 251*f126890aSEmmanuel Vadot status = "disabled"; 252*f126890aSEmmanuel Vadot }; 253*f126890aSEmmanuel Vadot 254*f126890aSEmmanuel Vadot uart2: serial@2024000 { 255*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-uart", "fsl,imx6q-uart", 256*f126890aSEmmanuel Vadot "fsl,imx21-uart"; 257*f126890aSEmmanuel Vadot reg = <0x02024000 0x4000>; 258*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>; 259*f126890aSEmmanuel Vadot dmas = <&sdma 27 4 0>, <&sdma 28 4 0>; 260*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 261*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_UART2_IPG>, 262*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_UART2_SERIAL>; 263*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 264*f126890aSEmmanuel Vadot status = "disabled"; 265*f126890aSEmmanuel Vadot }; 266*f126890aSEmmanuel Vadot 267*f126890aSEmmanuel Vadot ssi1: ssi@2028000 { 268*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-ssi", "fsl,imx51-ssi"; 269*f126890aSEmmanuel Vadot reg = <0x02028000 0x4000>; 270*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>; 271*f126890aSEmmanuel Vadot dmas = <&sdma 37 22 0>, <&sdma 38 22 0>; 272*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 273*f126890aSEmmanuel Vadot fsl,fifo-depth = <15>; 274*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_SSI1_IPG>, 275*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_SSI1>; 276*f126890aSEmmanuel Vadot clock-names = "ipg", "baud"; 277*f126890aSEmmanuel Vadot status = "disabled"; 278*f126890aSEmmanuel Vadot }; 279*f126890aSEmmanuel Vadot 280*f126890aSEmmanuel Vadot ssi2: ssi@202c000 { 281*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-ssi", "fsl,imx51-ssi"; 282*f126890aSEmmanuel Vadot reg = <0x0202c000 0x4000>; 283*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>; 284*f126890aSEmmanuel Vadot dmas = <&sdma 41 22 0>, <&sdma 42 22 0>; 285*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 286*f126890aSEmmanuel Vadot fsl,fifo-depth = <15>; 287*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_SSI2_IPG>, 288*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_SSI2>; 289*f126890aSEmmanuel Vadot clock-names = "ipg", "baud"; 290*f126890aSEmmanuel Vadot status = "disabled"; 291*f126890aSEmmanuel Vadot }; 292*f126890aSEmmanuel Vadot 293*f126890aSEmmanuel Vadot ssi3: ssi@2030000 { 294*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-ssi", "fsl,imx51-ssi"; 295*f126890aSEmmanuel Vadot reg = <0x02030000 0x4000>; 296*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>; 297*f126890aSEmmanuel Vadot dmas = <&sdma 45 22 0>, <&sdma 46 22 0>; 298*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 299*f126890aSEmmanuel Vadot fsl,fifo-depth = <15>; 300*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_SSI3_IPG>, 301*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_SSI3>; 302*f126890aSEmmanuel Vadot clock-names = "ipg", "baud"; 303*f126890aSEmmanuel Vadot status = "disabled"; 304*f126890aSEmmanuel Vadot }; 305*f126890aSEmmanuel Vadot 306*f126890aSEmmanuel Vadot uart3: serial@2034000 { 307*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-uart", "fsl,imx6q-uart", 308*f126890aSEmmanuel Vadot "fsl,imx21-uart"; 309*f126890aSEmmanuel Vadot reg = <0x02034000 0x4000>; 310*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>; 311*f126890aSEmmanuel Vadot dmas = <&sdma 29 4 0>, <&sdma 30 4 0>; 312*f126890aSEmmanuel Vadot dma-name = "rx", "tx"; 313*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_UART3_IPG>, 314*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_UART3_SERIAL>; 315*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 316*f126890aSEmmanuel Vadot status = "disabled"; 317*f126890aSEmmanuel Vadot }; 318*f126890aSEmmanuel Vadot }; 319*f126890aSEmmanuel Vadot 320*f126890aSEmmanuel Vadot pwm1: pwm@2080000 { 321*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-pwm", "fsl,imx27-pwm"; 322*f126890aSEmmanuel Vadot reg = <0x02080000 0x4000>; 323*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>; 324*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_PWM1>, 325*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_PWM1>; 326*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 327*f126890aSEmmanuel Vadot #pwm-cells = <3>; 328*f126890aSEmmanuel Vadot }; 329*f126890aSEmmanuel Vadot 330*f126890aSEmmanuel Vadot pwm2: pwm@2084000 { 331*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-pwm", "fsl,imx27-pwm"; 332*f126890aSEmmanuel Vadot reg = <0x02084000 0x4000>; 333*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>; 334*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_PWM2>, 335*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_PWM2>; 336*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 337*f126890aSEmmanuel Vadot #pwm-cells = <3>; 338*f126890aSEmmanuel Vadot }; 339*f126890aSEmmanuel Vadot 340*f126890aSEmmanuel Vadot pwm3: pwm@2088000 { 341*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-pwm", "fsl,imx27-pwm"; 342*f126890aSEmmanuel Vadot reg = <0x02088000 0x4000>; 343*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>; 344*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_PWM3>, 345*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_PWM3>; 346*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 347*f126890aSEmmanuel Vadot #pwm-cells = <3>; 348*f126890aSEmmanuel Vadot }; 349*f126890aSEmmanuel Vadot 350*f126890aSEmmanuel Vadot pwm4: pwm@208c000 { 351*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-pwm", "fsl,imx27-pwm"; 352*f126890aSEmmanuel Vadot reg = <0x0208c000 0x4000>; 353*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>; 354*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_PWM4>, 355*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_PWM4>; 356*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 357*f126890aSEmmanuel Vadot #pwm-cells = <3>; 358*f126890aSEmmanuel Vadot }; 359*f126890aSEmmanuel Vadot 360*f126890aSEmmanuel Vadot gpt1: timer@2098000 { 361*f126890aSEmmanuel Vadot compatible = "fsl,imx6sl-gpt"; 362*f126890aSEmmanuel Vadot reg = <0x02098000 0x4000>; 363*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>; 364*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_GPT_BUS>, 365*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_GPT_SERIAL>; 366*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 367*f126890aSEmmanuel Vadot }; 368*f126890aSEmmanuel Vadot 369*f126890aSEmmanuel Vadot gpio1: gpio@209c000 { 370*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-gpio", "fsl,imx35-gpio"; 371*f126890aSEmmanuel Vadot reg = <0x0209c000 0x4000>; 372*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>, 373*f126890aSEmmanuel Vadot <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>; 374*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_GPIO1>; 375*f126890aSEmmanuel Vadot gpio-controller; 376*f126890aSEmmanuel Vadot #gpio-cells = <2>; 377*f126890aSEmmanuel Vadot interrupt-controller; 378*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 379*f126890aSEmmanuel Vadot gpio-ranges = <&iomuxc 0 94 7>, <&iomuxc 7 25 25>; 380*f126890aSEmmanuel Vadot }; 381*f126890aSEmmanuel Vadot 382*f126890aSEmmanuel Vadot gpio2: gpio@20a0000 { 383*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-gpio", "fsl,imx35-gpio"; 384*f126890aSEmmanuel Vadot reg = <0x020a0000 0x4000>; 385*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>, 386*f126890aSEmmanuel Vadot <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>; 387*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_GPIO2>; 388*f126890aSEmmanuel Vadot gpio-controller; 389*f126890aSEmmanuel Vadot #gpio-cells = <2>; 390*f126890aSEmmanuel Vadot interrupt-controller; 391*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 392*f126890aSEmmanuel Vadot gpio-ranges = <&iomuxc 0 50 32>; 393*f126890aSEmmanuel Vadot }; 394*f126890aSEmmanuel Vadot 395*f126890aSEmmanuel Vadot gpio3: gpio@20a4000 { 396*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-gpio", "fsl,imx35-gpio"; 397*f126890aSEmmanuel Vadot reg = <0x020a4000 0x4000>; 398*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>, 399*f126890aSEmmanuel Vadot <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; 400*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_GPIO3>; 401*f126890aSEmmanuel Vadot gpio-controller; 402*f126890aSEmmanuel Vadot #gpio-cells = <2>; 403*f126890aSEmmanuel Vadot interrupt-controller; 404*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 405*f126890aSEmmanuel Vadot gpio-ranges = <&iomuxc 0 82 12>, <&iomuxc 12 103 4>, 406*f126890aSEmmanuel Vadot <&iomuxc 16 101 2>, <&iomuxc 18 5 1>, 407*f126890aSEmmanuel Vadot <&iomuxc 21 6 11>; 408*f126890aSEmmanuel Vadot }; 409*f126890aSEmmanuel Vadot 410*f126890aSEmmanuel Vadot gpio4: gpio@20a8000 { 411*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-gpio", "fsl,imx35-gpio"; 412*f126890aSEmmanuel Vadot reg = <0x020a8000 0x4000>; 413*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>, 414*f126890aSEmmanuel Vadot <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>; 415*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_GPIO4>; 416*f126890aSEmmanuel Vadot gpio-controller; 417*f126890aSEmmanuel Vadot #gpio-cells = <2>; 418*f126890aSEmmanuel Vadot interrupt-controller; 419*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 420*f126890aSEmmanuel Vadot gpio-ranges = <&iomuxc 0 17 8>, <&iomuxc 8 107 8>, 421*f126890aSEmmanuel Vadot <&iomuxc 16 151 1>, <&iomuxc 17 149 1>, 422*f126890aSEmmanuel Vadot <&iomuxc 18 146 1>, <&iomuxc 19 144 1>, 423*f126890aSEmmanuel Vadot <&iomuxc 20 142 1>, <&iomuxc 21 143 1>, 424*f126890aSEmmanuel Vadot <&iomuxc 22 150 1>, <&iomuxc 23 148 1>, 425*f126890aSEmmanuel Vadot <&iomuxc 24 147 1>, <&iomuxc 25 145 1>, 426*f126890aSEmmanuel Vadot <&iomuxc 26 152 1>, <&iomuxc 27 125 1>, 427*f126890aSEmmanuel Vadot <&iomuxc 28 131 1>, <&iomuxc 29 134 1>, 428*f126890aSEmmanuel Vadot <&iomuxc 30 129 1>, <&iomuxc 31 133 1>; 429*f126890aSEmmanuel Vadot }; 430*f126890aSEmmanuel Vadot 431*f126890aSEmmanuel Vadot gpio5: gpio@20ac000 { 432*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-gpio", "fsl,imx35-gpio"; 433*f126890aSEmmanuel Vadot reg = <0x020ac000 0x4000>; 434*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>, 435*f126890aSEmmanuel Vadot <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>; 436*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_GPIO5>; 437*f126890aSEmmanuel Vadot gpio-controller; 438*f126890aSEmmanuel Vadot #gpio-cells = <2>; 439*f126890aSEmmanuel Vadot interrupt-controller; 440*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 441*f126890aSEmmanuel Vadot gpio-ranges = <&iomuxc 0 135 1>, <&iomuxc 1 128 1>, 442*f126890aSEmmanuel Vadot <&iomuxc 2 132 1>, <&iomuxc 3 130 1>, 443*f126890aSEmmanuel Vadot <&iomuxc 4 127 1>, <&iomuxc 5 126 1>, 444*f126890aSEmmanuel Vadot <&iomuxc 6 120 1>, <&iomuxc 7 123 1>, 445*f126890aSEmmanuel Vadot <&iomuxc 8 118 1>, <&iomuxc 9 122 1>, 446*f126890aSEmmanuel Vadot <&iomuxc 10 124 1>, <&iomuxc 11 117 1>, 447*f126890aSEmmanuel Vadot <&iomuxc 12 121 1>, <&iomuxc 13 119 1>, 448*f126890aSEmmanuel Vadot <&iomuxc 14 116 1>, <&iomuxc 15 115 1>, 449*f126890aSEmmanuel Vadot <&iomuxc 16 140 2>, <&iomuxc 18 136 1>, 450*f126890aSEmmanuel Vadot <&iomuxc 19 138 1>, <&iomuxc 20 139 1>, 451*f126890aSEmmanuel Vadot <&iomuxc 21 137 1>; 452*f126890aSEmmanuel Vadot }; 453*f126890aSEmmanuel Vadot 454*f126890aSEmmanuel Vadot gpio6: gpio@20b0000 { 455*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-gpio", "fsl,imx35-gpio"; 456*f126890aSEmmanuel Vadot reg = <0x020b0000 0x4000>; 457*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>, 458*f126890aSEmmanuel Vadot <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>; 459*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_GPIO6>; 460*f126890aSEmmanuel Vadot gpio-controller; 461*f126890aSEmmanuel Vadot #gpio-cells = <2>; 462*f126890aSEmmanuel Vadot interrupt-controller; 463*f126890aSEmmanuel Vadot #interrupt-cells = <2>; 464*f126890aSEmmanuel Vadot }; 465*f126890aSEmmanuel Vadot 466*f126890aSEmmanuel Vadot kpp: keypad@20b8000 { 467*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-kpp", "fsl,imx21-kpp"; 468*f126890aSEmmanuel Vadot reg = <0x020b8000 0x4000>; 469*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; 470*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_KPP>; 471*f126890aSEmmanuel Vadot status = "disabled"; 472*f126890aSEmmanuel Vadot }; 473*f126890aSEmmanuel Vadot 474*f126890aSEmmanuel Vadot wdog1: watchdog@20bc000 { 475*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-wdt", "fsl,imx21-wdt"; 476*f126890aSEmmanuel Vadot reg = <0x020bc000 0x4000>; 477*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_HIGH>; 478*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_WDOG1>; 479*f126890aSEmmanuel Vadot }; 480*f126890aSEmmanuel Vadot 481*f126890aSEmmanuel Vadot wdog2: watchdog@20c0000 { 482*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-wdt", "fsl,imx21-wdt"; 483*f126890aSEmmanuel Vadot reg = <0x020c0000 0x4000>; 484*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>; 485*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_WDOG2>; 486*f126890aSEmmanuel Vadot status = "disabled"; 487*f126890aSEmmanuel Vadot }; 488*f126890aSEmmanuel Vadot 489*f126890aSEmmanuel Vadot clks: clock-controller@20c4000 { 490*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-ccm"; 491*f126890aSEmmanuel Vadot reg = <0x020c4000 0x4000>; 492*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>, 493*f126890aSEmmanuel Vadot <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>; 494*f126890aSEmmanuel Vadot #clock-cells = <1>; 495*f126890aSEmmanuel Vadot clocks = <&ckil>, <&osc>, <&ipp_di0>, <&ipp_di1>; 496*f126890aSEmmanuel Vadot clock-names = "ckil", "osc", "ipp_di0", "ipp_di1"; 497*f126890aSEmmanuel Vadot 498*f126890aSEmmanuel Vadot assigned-clocks = <&clks IMX6SLL_CLK_PERCLK_SEL>; 499*f126890aSEmmanuel Vadot assigned-clock-parents = <&clks IMX6SLL_CLK_OSC>; 500*f126890aSEmmanuel Vadot }; 501*f126890aSEmmanuel Vadot 502*f126890aSEmmanuel Vadot anatop: anatop@20c8000 { 503*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-anatop", 504*f126890aSEmmanuel Vadot "fsl,imx6q-anatop", 505*f126890aSEmmanuel Vadot "syscon", "simple-mfd"; 506*f126890aSEmmanuel Vadot reg = <0x020c8000 0x4000>; 507*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>, 508*f126890aSEmmanuel Vadot <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>, 509*f126890aSEmmanuel Vadot <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>; 510*f126890aSEmmanuel Vadot #address-cells = <1>; 511*f126890aSEmmanuel Vadot #size-cells = <0>; 512*f126890aSEmmanuel Vadot 513*f126890aSEmmanuel Vadot reg_3p0: regulator-3p0@20c8120 { 514*f126890aSEmmanuel Vadot compatible = "fsl,anatop-regulator"; 515*f126890aSEmmanuel Vadot reg = <0x20c8120>; 516*f126890aSEmmanuel Vadot regulator-name = "vdd3p0"; 517*f126890aSEmmanuel Vadot regulator-min-microvolt = <2625000>; 518*f126890aSEmmanuel Vadot regulator-max-microvolt = <3400000>; 519*f126890aSEmmanuel Vadot anatop-reg-offset = <0x120>; 520*f126890aSEmmanuel Vadot anatop-vol-bit-shift = <8>; 521*f126890aSEmmanuel Vadot anatop-vol-bit-width = <5>; 522*f126890aSEmmanuel Vadot anatop-min-bit-val = <0>; 523*f126890aSEmmanuel Vadot anatop-min-voltage = <2625000>; 524*f126890aSEmmanuel Vadot anatop-max-voltage = <3400000>; 525*f126890aSEmmanuel Vadot anatop-enable-bit = <0>; 526*f126890aSEmmanuel Vadot }; 527*f126890aSEmmanuel Vadot 528*f126890aSEmmanuel Vadot tempmon: temperature-sensor { 529*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-tempmon", "fsl,imx6sx-tempmon"; 530*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>; 531*f126890aSEmmanuel Vadot interrupt-parent = <&gpc>; 532*f126890aSEmmanuel Vadot fsl,tempmon = <&anatop>; 533*f126890aSEmmanuel Vadot nvmem-cells = <&tempmon_calib>, <&tempmon_temp_grade>; 534*f126890aSEmmanuel Vadot nvmem-cell-names = "calib", "temp_grade"; 535*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_PLL3_USB_OTG>; 536*f126890aSEmmanuel Vadot }; 537*f126890aSEmmanuel Vadot }; 538*f126890aSEmmanuel Vadot 539*f126890aSEmmanuel Vadot usbphy1: usb-phy@20c9000 { 540*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usbphy", "fsl,imx6ul-usbphy", 541*f126890aSEmmanuel Vadot "fsl,imx23-usbphy"; 542*f126890aSEmmanuel Vadot reg = <0x020c9000 0x1000>; 543*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>; 544*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_USBPHY1>; 545*f126890aSEmmanuel Vadot phy-3p0-supply = <®_3p0>; 546*f126890aSEmmanuel Vadot fsl,anatop = <&anatop>; 547*f126890aSEmmanuel Vadot }; 548*f126890aSEmmanuel Vadot 549*f126890aSEmmanuel Vadot usbphy2: usb-phy@20ca000 { 550*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usbphy", "fsl,imx6ul-usbphy", 551*f126890aSEmmanuel Vadot "fsl,imx23-usbphy"; 552*f126890aSEmmanuel Vadot reg = <0x020ca000 0x1000>; 553*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>; 554*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_USBPHY2>; 555*f126890aSEmmanuel Vadot phy-3p0-supply = <®_3p0>; 556*f126890aSEmmanuel Vadot fsl,anatop = <&anatop>; 557*f126890aSEmmanuel Vadot }; 558*f126890aSEmmanuel Vadot 559*f126890aSEmmanuel Vadot snvs: snvs@20cc000 { 560*f126890aSEmmanuel Vadot compatible = "fsl,sec-v4.0-mon", "syscon", "simple-mfd"; 561*f126890aSEmmanuel Vadot reg = <0x020cc000 0x4000>; 562*f126890aSEmmanuel Vadot 563*f126890aSEmmanuel Vadot snvs_rtc: snvs-rtc-lp { 564*f126890aSEmmanuel Vadot compatible = "fsl,sec-v4.0-mon-rtc-lp"; 565*f126890aSEmmanuel Vadot regmap = <&snvs>; 566*f126890aSEmmanuel Vadot offset = <0x34>; 567*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>, 568*f126890aSEmmanuel Vadot <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>; 569*f126890aSEmmanuel Vadot }; 570*f126890aSEmmanuel Vadot 571*f126890aSEmmanuel Vadot snvs_poweroff: snvs-poweroff { 572*f126890aSEmmanuel Vadot compatible = "syscon-poweroff"; 573*f126890aSEmmanuel Vadot regmap = <&snvs>; 574*f126890aSEmmanuel Vadot offset = <0x38>; 575*f126890aSEmmanuel Vadot mask = <0x61>; 576*f126890aSEmmanuel Vadot status = "disabled"; 577*f126890aSEmmanuel Vadot }; 578*f126890aSEmmanuel Vadot 579*f126890aSEmmanuel Vadot snvs_pwrkey: snvs-powerkey { 580*f126890aSEmmanuel Vadot compatible = "fsl,sec-v4.0-pwrkey"; 581*f126890aSEmmanuel Vadot regmap = <&snvs>; 582*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>; 583*f126890aSEmmanuel Vadot linux,keycode = <KEY_POWER>; 584*f126890aSEmmanuel Vadot wakeup-source; 585*f126890aSEmmanuel Vadot status = "disabled"; 586*f126890aSEmmanuel Vadot }; 587*f126890aSEmmanuel Vadot }; 588*f126890aSEmmanuel Vadot 589*f126890aSEmmanuel Vadot src: reset-controller@20d8000 { 590*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-src", "fsl,imx51-src"; 591*f126890aSEmmanuel Vadot reg = <0x020d8000 0x4000>; 592*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>, 593*f126890aSEmmanuel Vadot <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>; 594*f126890aSEmmanuel Vadot #reset-cells = <1>; 595*f126890aSEmmanuel Vadot }; 596*f126890aSEmmanuel Vadot 597*f126890aSEmmanuel Vadot gpc: interrupt-controller@20dc000 { 598*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-gpc", "fsl,imx6q-gpc"; 599*f126890aSEmmanuel Vadot reg = <0x020dc000 0x4000>; 600*f126890aSEmmanuel Vadot interrupt-controller; 601*f126890aSEmmanuel Vadot #interrupt-cells = <3>; 602*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>; 603*f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 604*f126890aSEmmanuel Vadot }; 605*f126890aSEmmanuel Vadot 606*f126890aSEmmanuel Vadot iomuxc: pinctrl@20e0000 { 607*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-iomuxc"; 608*f126890aSEmmanuel Vadot reg = <0x020e0000 0x4000>; 609*f126890aSEmmanuel Vadot }; 610*f126890aSEmmanuel Vadot 611*f126890aSEmmanuel Vadot gpr: iomuxc-gpr@20e4000 { 612*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-iomuxc-gpr", 613*f126890aSEmmanuel Vadot "fsl,imx6q-iomuxc-gpr", "syscon"; 614*f126890aSEmmanuel Vadot reg = <0x020e4000 0x4000>; 615*f126890aSEmmanuel Vadot }; 616*f126890aSEmmanuel Vadot 617*f126890aSEmmanuel Vadot csi: csi@20e8000 { 618*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-csi", "fsl,imx6s-csi"; 619*f126890aSEmmanuel Vadot reg = <0x020e8000 0x4000>; 620*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>; 621*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_DUMMY>, 622*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_CSI>, 623*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_DUMMY>; 624*f126890aSEmmanuel Vadot clock-names = "disp-axi", "csi_mclk", "disp_dcic"; 625*f126890aSEmmanuel Vadot status = "disabled"; 626*f126890aSEmmanuel Vadot }; 627*f126890aSEmmanuel Vadot 628*f126890aSEmmanuel Vadot sdma: dma-controller@20ec000 { 629*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-sdma", "fsl,imx6ul-sdma"; 630*f126890aSEmmanuel Vadot reg = <0x020ec000 0x4000>; 631*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>; 632*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_IPG>, 633*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_SDMA>; 634*f126890aSEmmanuel Vadot clock-names = "ipg", "ahb"; 635*f126890aSEmmanuel Vadot #dma-cells = <3>; 636*f126890aSEmmanuel Vadot iram = <&ocram>; 637*f126890aSEmmanuel Vadot fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin"; 638*f126890aSEmmanuel Vadot }; 639*f126890aSEmmanuel Vadot 640*f126890aSEmmanuel Vadot pxp: pxp@20f0000 { 641*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-pxp", "fsl,imx6ull-pxp"; 642*f126890aSEmmanuel Vadot reg = <0x20f0000 0x4000>; 643*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>, 644*f126890aSEmmanuel Vadot <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>; 645*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_PXP>; 646*f126890aSEmmanuel Vadot clock-names = "axi"; 647*f126890aSEmmanuel Vadot }; 648*f126890aSEmmanuel Vadot 649*f126890aSEmmanuel Vadot lcdif: lcd-controller@20f8000 { 650*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-lcdif", "fsl,imx28-lcdif"; 651*f126890aSEmmanuel Vadot reg = <0x020f8000 0x4000>; 652*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>; 653*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_LCDIF_PIX>, 654*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_LCDIF_APB>, 655*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_DUMMY>; 656*f126890aSEmmanuel Vadot clock-names = "pix", "axi", "disp_axi"; 657*f126890aSEmmanuel Vadot status = "disabled"; 658*f126890aSEmmanuel Vadot }; 659*f126890aSEmmanuel Vadot 660*f126890aSEmmanuel Vadot dcp: crypto@20fc000 { 661*f126890aSEmmanuel Vadot compatible = "fsl,imx28-dcp"; 662*f126890aSEmmanuel Vadot reg = <0x020fc000 0x4000>; 663*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>, 664*f126890aSEmmanuel Vadot <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>, 665*f126890aSEmmanuel Vadot <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>; 666*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_DCP>; 667*f126890aSEmmanuel Vadot clock-names = "dcp"; 668*f126890aSEmmanuel Vadot }; 669*f126890aSEmmanuel Vadot }; 670*f126890aSEmmanuel Vadot 671*f126890aSEmmanuel Vadot aips2: bus@2100000 { 672*f126890aSEmmanuel Vadot compatible = "fsl,aips-bus", "simple-bus"; 673*f126890aSEmmanuel Vadot #address-cells = <1>; 674*f126890aSEmmanuel Vadot #size-cells = <1>; 675*f126890aSEmmanuel Vadot reg = <0x02100000 0x100000>; 676*f126890aSEmmanuel Vadot ranges; 677*f126890aSEmmanuel Vadot 678*f126890aSEmmanuel Vadot usbotg1: usb@2184000 { 679*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usb", "fsl,imx6ul-usb", 680*f126890aSEmmanuel Vadot "fsl,imx27-usb"; 681*f126890aSEmmanuel Vadot reg = <0x02184000 0x200>; 682*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>; 683*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_USBOH3>; 684*f126890aSEmmanuel Vadot fsl,usbphy = <&usbphy1>; 685*f126890aSEmmanuel Vadot fsl,usbmisc = <&usbmisc 0>; 686*f126890aSEmmanuel Vadot ahb-burst-config = <0x0>; 687*f126890aSEmmanuel Vadot tx-burst-size-dword = <0x10>; 688*f126890aSEmmanuel Vadot rx-burst-size-dword = <0x10>; 689*f126890aSEmmanuel Vadot status = "disabled"; 690*f126890aSEmmanuel Vadot }; 691*f126890aSEmmanuel Vadot 692*f126890aSEmmanuel Vadot usbotg2: usb@2184200 { 693*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usb", "fsl,imx6ul-usb", 694*f126890aSEmmanuel Vadot "fsl,imx27-usb"; 695*f126890aSEmmanuel Vadot reg = <0x02184200 0x200>; 696*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>; 697*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_USBOH3>; 698*f126890aSEmmanuel Vadot fsl,usbphy = <&usbphy2>; 699*f126890aSEmmanuel Vadot fsl,usbmisc = <&usbmisc 1>; 700*f126890aSEmmanuel Vadot ahb-burst-config = <0x0>; 701*f126890aSEmmanuel Vadot tx-burst-size-dword = <0x10>; 702*f126890aSEmmanuel Vadot rx-burst-size-dword = <0x10>; 703*f126890aSEmmanuel Vadot status = "disabled"; 704*f126890aSEmmanuel Vadot }; 705*f126890aSEmmanuel Vadot 706*f126890aSEmmanuel Vadot usbmisc: usbmisc@2184800 { 707*f126890aSEmmanuel Vadot #index-cells = <1>; 708*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usbmisc", "fsl,imx6ul-usbmisc", 709*f126890aSEmmanuel Vadot "fsl,imx6q-usbmisc"; 710*f126890aSEmmanuel Vadot reg = <0x02184800 0x200>; 711*f126890aSEmmanuel Vadot }; 712*f126890aSEmmanuel Vadot 713*f126890aSEmmanuel Vadot usdhc1: mmc@2190000 { 714*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usdhc", "fsl,imx6sx-usdhc"; 715*f126890aSEmmanuel Vadot reg = <0x02190000 0x4000>; 716*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>; 717*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_USDHC1>, 718*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_USDHC1>, 719*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_USDHC1>; 720*f126890aSEmmanuel Vadot clock-names = "ipg", "ahb", "per"; 721*f126890aSEmmanuel Vadot bus-width = <4>; 722*f126890aSEmmanuel Vadot fsl,tuning-step = <2>; 723*f126890aSEmmanuel Vadot fsl,tuning-start-tap = <20>; 724*f126890aSEmmanuel Vadot status = "disabled"; 725*f126890aSEmmanuel Vadot }; 726*f126890aSEmmanuel Vadot 727*f126890aSEmmanuel Vadot usdhc2: mmc@2194000 { 728*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usdhc", "fsl,imx6sx-usdhc"; 729*f126890aSEmmanuel Vadot reg = <0x02194000 0x4000>; 730*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>; 731*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_USDHC2>, 732*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_USDHC2>, 733*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_USDHC2>; 734*f126890aSEmmanuel Vadot clock-names = "ipg", "ahb", "per"; 735*f126890aSEmmanuel Vadot bus-width = <4>; 736*f126890aSEmmanuel Vadot fsl,tuning-step = <2>; 737*f126890aSEmmanuel Vadot fsl,tuning-start-tap = <20>; 738*f126890aSEmmanuel Vadot status = "disabled"; 739*f126890aSEmmanuel Vadot }; 740*f126890aSEmmanuel Vadot 741*f126890aSEmmanuel Vadot usdhc3: mmc@2198000 { 742*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-usdhc", "fsl,imx6sx-usdhc"; 743*f126890aSEmmanuel Vadot reg = <0x02198000 0x4000>; 744*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>; 745*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_USDHC3>, 746*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_USDHC3>, 747*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_USDHC3>; 748*f126890aSEmmanuel Vadot clock-names = "ipg", "ahb", "per"; 749*f126890aSEmmanuel Vadot bus-width = <4>; 750*f126890aSEmmanuel Vadot fsl,tuning-step = <2>; 751*f126890aSEmmanuel Vadot fsl,tuning-start-tap = <20>; 752*f126890aSEmmanuel Vadot status = "disabled"; 753*f126890aSEmmanuel Vadot }; 754*f126890aSEmmanuel Vadot 755*f126890aSEmmanuel Vadot i2c1: i2c@21a0000 { 756*f126890aSEmmanuel Vadot #address-cells = <1>; 757*f126890aSEmmanuel Vadot #size-cells = <0>; 758*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-i2c", "fsl,imx21-i2c"; 759*f126890aSEmmanuel Vadot reg = <0x021a0000 0x4000>; 760*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>; 761*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_I2C1>; 762*f126890aSEmmanuel Vadot status = "disabled"; 763*f126890aSEmmanuel Vadot }; 764*f126890aSEmmanuel Vadot 765*f126890aSEmmanuel Vadot i2c2: i2c@21a4000 { 766*f126890aSEmmanuel Vadot #address-cells = <1>; 767*f126890aSEmmanuel Vadot #size-cells = <0>; 768*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-i2c", "fsl,imx21-i2c"; 769*f126890aSEmmanuel Vadot reg = <0x021a4000 0x4000>; 770*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>; 771*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_I2C2>; 772*f126890aSEmmanuel Vadot status = "disabled"; 773*f126890aSEmmanuel Vadot }; 774*f126890aSEmmanuel Vadot 775*f126890aSEmmanuel Vadot i2c3: i2c@21a8000 { 776*f126890aSEmmanuel Vadot #address-cells = <1>; 777*f126890aSEmmanuel Vadot #size-cells = <0>; 778*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-i2c", "fsl,imx21-i2c"; 779*f126890aSEmmanuel Vadot reg = <0x021a8000 0x4000>; 780*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>; 781*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_I2C3>; 782*f126890aSEmmanuel Vadot status = "disabled"; 783*f126890aSEmmanuel Vadot }; 784*f126890aSEmmanuel Vadot 785*f126890aSEmmanuel Vadot mmdc: memory-controller@21b0000 { 786*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-mmdc", "fsl,imx6q-mmdc"; 787*f126890aSEmmanuel Vadot reg = <0x021b0000 0x4000>; 788*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_MMDC_P0_IPG>; 789*f126890aSEmmanuel Vadot }; 790*f126890aSEmmanuel Vadot 791*f126890aSEmmanuel Vadot rngb: rng@21b4000 { 792*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-rngb", "fsl,imx25-rngb"; 793*f126890aSEmmanuel Vadot reg = <0x021b4000 0x4000>; 794*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>; 795*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_DUMMY>; 796*f126890aSEmmanuel Vadot }; 797*f126890aSEmmanuel Vadot 798*f126890aSEmmanuel Vadot ocotp: efuse@21bc000 { 799*f126890aSEmmanuel Vadot #address-cells = <1>; 800*f126890aSEmmanuel Vadot #size-cells = <1>; 801*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-ocotp", "syscon"; 802*f126890aSEmmanuel Vadot reg = <0x021bc000 0x4000>; 803*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_OCOTP>; 804*f126890aSEmmanuel Vadot 805*f126890aSEmmanuel Vadot cpu_speed_grade: speed-grade@10 { 806*f126890aSEmmanuel Vadot reg = <0x10 4>; 807*f126890aSEmmanuel Vadot }; 808*f126890aSEmmanuel Vadot 809*f126890aSEmmanuel Vadot tempmon_calib: calib@38 { 810*f126890aSEmmanuel Vadot reg = <0x38 4>; 811*f126890aSEmmanuel Vadot }; 812*f126890aSEmmanuel Vadot 813*f126890aSEmmanuel Vadot tempmon_temp_grade: temp-grade@20 { 814*f126890aSEmmanuel Vadot reg = <0x20 4>; 815*f126890aSEmmanuel Vadot }; 816*f126890aSEmmanuel Vadot }; 817*f126890aSEmmanuel Vadot 818*f126890aSEmmanuel Vadot audmux: audmux@21d8000 { 819*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-audmux", "fsl,imx31-audmux"; 820*f126890aSEmmanuel Vadot reg = <0x021d8000 0x4000>; 821*f126890aSEmmanuel Vadot status = "disabled"; 822*f126890aSEmmanuel Vadot }; 823*f126890aSEmmanuel Vadot 824*f126890aSEmmanuel Vadot uart5: serial@21f4000 { 825*f126890aSEmmanuel Vadot compatible = "fsl,imx6sll-uart", "fsl,imx6q-uart", 826*f126890aSEmmanuel Vadot "fsl,imx21-uart"; 827*f126890aSEmmanuel Vadot reg = <0x021f4000 0x4000>; 828*f126890aSEmmanuel Vadot interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>; 829*f126890aSEmmanuel Vadot dmas = <&sdma 33 4 0>, <&sdma 34 4 0>; 830*f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 831*f126890aSEmmanuel Vadot clocks = <&clks IMX6SLL_CLK_UART5_IPG>, 832*f126890aSEmmanuel Vadot <&clks IMX6SLL_CLK_UART5_SERIAL>; 833*f126890aSEmmanuel Vadot clock-names = "ipg", "per"; 834*f126890aSEmmanuel Vadot status = "disabled"; 835*f126890aSEmmanuel Vadot }; 836*f126890aSEmmanuel Vadot }; 837*f126890aSEmmanuel Vadot }; 838*f126890aSEmmanuel Vadot}; 839