Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2013 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | */ |
| 9 | |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 10 | #include <dt-bindings/interrupt-controller/irq.h> |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 11 | #include "skeleton.dtsi" |
| 12 | #include "imx6sl-pinfunc.h" |
| 13 | #include <dt-bindings/clock/imx6sl-clock.h> |
| 14 | |
| 15 | / { |
| 16 | aliases { |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 17 | gpio0 = &gpio1; |
| 18 | gpio1 = &gpio2; |
| 19 | gpio2 = &gpio3; |
| 20 | gpio3 = &gpio4; |
| 21 | gpio4 = &gpio5; |
Fabio Estevam | 640a7f3 | 2013-09-13 18:13:00 -0300 | [diff] [blame] | 22 | serial0 = &uart1; |
| 23 | serial1 = &uart2; |
| 24 | serial2 = &uart3; |
| 25 | serial3 = &uart4; |
| 26 | serial4 = &uart5; |
| 27 | spi0 = &ecspi1; |
| 28 | spi1 = &ecspi2; |
| 29 | spi2 = &ecspi3; |
| 30 | spi3 = &ecspi4; |
Peter Chen | 8189c51 | 2013-12-20 15:52:05 +0800 | [diff] [blame] | 31 | usbphy0 = &usbphy1; |
| 32 | usbphy1 = &usbphy2; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | cpus { |
| 36 | #address-cells = <1>; |
| 37 | #size-cells = <0>; |
| 38 | |
| 39 | cpu@0 { |
| 40 | compatible = "arm,cortex-a9"; |
| 41 | device_type = "cpu"; |
| 42 | reg = <0x0>; |
| 43 | next-level-cache = <&L2>; |
John Tobias | b0d300d | 2013-12-19 12:35:36 -0800 | [diff] [blame] | 44 | operating-points = < |
| 45 | /* kHz uV */ |
| 46 | 996000 1275000 |
| 47 | 792000 1175000 |
| 48 | 396000 975000 |
| 49 | >; |
| 50 | fsl,soc-operating-points = < |
| 51 | /* ARM kHz SOC-PU uV */ |
| 52 | 996000 1225000 |
| 53 | 792000 1175000 |
| 54 | 396000 1175000 |
| 55 | >; |
| 56 | clock-latency = <61036>; /* two CLK32 periods */ |
| 57 | clocks = <&clks IMX6SL_CLK_ARM>, <&clks IMX6SL_CLK_PLL2_PFD2>, |
| 58 | <&clks IMX6SL_CLK_STEP>, <&clks IMX6SL_CLK_PLL1_SW>, |
| 59 | <&clks IMX6SL_CLK_PLL1_SYS>; |
| 60 | clock-names = "arm", "pll2_pfd2_396m", "step", |
| 61 | "pll1_sw", "pll1_sys"; |
| 62 | arm-supply = <®_arm>; |
| 63 | pu-supply = <®_pu>; |
| 64 | soc-supply = <®_soc>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 65 | }; |
| 66 | }; |
| 67 | |
| 68 | intc: interrupt-controller@00a01000 { |
| 69 | compatible = "arm,cortex-a9-gic"; |
| 70 | #interrupt-cells = <3>; |
| 71 | #address-cells = <1>; |
| 72 | #size-cells = <1>; |
| 73 | interrupt-controller; |
| 74 | reg = <0x00a01000 0x1000>, |
| 75 | <0x00a00100 0x100>; |
| 76 | }; |
| 77 | |
| 78 | clocks { |
| 79 | #address-cells = <1>; |
| 80 | #size-cells = <0>; |
| 81 | |
| 82 | ckil { |
| 83 | compatible = "fixed-clock"; |
| 84 | clock-frequency = <32768>; |
| 85 | }; |
| 86 | |
| 87 | osc { |
| 88 | compatible = "fixed-clock"; |
| 89 | clock-frequency = <24000000>; |
| 90 | }; |
| 91 | }; |
| 92 | |
| 93 | soc { |
| 94 | #address-cells = <1>; |
| 95 | #size-cells = <1>; |
| 96 | compatible = "simple-bus"; |
| 97 | interrupt-parent = <&intc>; |
| 98 | ranges; |
| 99 | |
Anson Huang | 248f15a | 2014-01-06 15:57:37 -0500 | [diff] [blame^] | 100 | ocram: sram@00900000 { |
| 101 | compatible = "mmio-sram"; |
| 102 | reg = <0x00900000 0x20000>; |
| 103 | clocks = <&clks IMX6SL_CLK_OCRAM>; |
| 104 | }; |
| 105 | |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 106 | L2: l2-cache@00a02000 { |
| 107 | compatible = "arm,pl310-cache"; |
| 108 | reg = <0x00a02000 0x1000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 109 | interrupts = <0 92 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 110 | cache-unified; |
| 111 | cache-level = <2>; |
| 112 | arm,tag-latency = <4 2 3>; |
| 113 | arm,data-latency = <4 2 3>; |
| 114 | }; |
| 115 | |
| 116 | pmu { |
| 117 | compatible = "arm,cortex-a9-pmu"; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 118 | interrupts = <0 94 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 119 | }; |
| 120 | |
| 121 | aips1: aips-bus@02000000 { |
| 122 | compatible = "fsl,aips-bus", "simple-bus"; |
| 123 | #address-cells = <1>; |
| 124 | #size-cells = <1>; |
| 125 | reg = <0x02000000 0x100000>; |
| 126 | ranges; |
| 127 | |
| 128 | spba: spba-bus@02000000 { |
| 129 | compatible = "fsl,spba-bus", "simple-bus"; |
| 130 | #address-cells = <1>; |
| 131 | #size-cells = <1>; |
| 132 | reg = <0x02000000 0x40000>; |
| 133 | ranges; |
| 134 | |
| 135 | spdif: spdif@02004000 { |
| 136 | reg = <0x02004000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 137 | interrupts = <0 52 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 138 | }; |
| 139 | |
| 140 | ecspi1: ecspi@02008000 { |
| 141 | #address-cells = <1>; |
| 142 | #size-cells = <0>; |
| 143 | compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi"; |
| 144 | reg = <0x02008000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 145 | interrupts = <0 31 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 146 | clocks = <&clks IMX6SL_CLK_ECSPI1>, |
| 147 | <&clks IMX6SL_CLK_ECSPI1>; |
| 148 | clock-names = "ipg", "per"; |
| 149 | status = "disabled"; |
| 150 | }; |
| 151 | |
| 152 | ecspi2: ecspi@0200c000 { |
| 153 | #address-cells = <1>; |
| 154 | #size-cells = <0>; |
| 155 | compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi"; |
| 156 | reg = <0x0200c000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 157 | interrupts = <0 32 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 158 | clocks = <&clks IMX6SL_CLK_ECSPI2>, |
| 159 | <&clks IMX6SL_CLK_ECSPI2>; |
| 160 | clock-names = "ipg", "per"; |
| 161 | status = "disabled"; |
| 162 | }; |
| 163 | |
| 164 | ecspi3: ecspi@02010000 { |
| 165 | #address-cells = <1>; |
| 166 | #size-cells = <0>; |
| 167 | compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi"; |
| 168 | reg = <0x02010000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 169 | interrupts = <0 33 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 170 | clocks = <&clks IMX6SL_CLK_ECSPI3>, |
| 171 | <&clks IMX6SL_CLK_ECSPI3>; |
| 172 | clock-names = "ipg", "per"; |
| 173 | status = "disabled"; |
| 174 | }; |
| 175 | |
| 176 | ecspi4: ecspi@02014000 { |
| 177 | #address-cells = <1>; |
| 178 | #size-cells = <0>; |
| 179 | compatible = "fsl,imx6sl-ecspi", "fsl,imx51-ecspi"; |
| 180 | reg = <0x02014000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 181 | interrupts = <0 34 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 182 | clocks = <&clks IMX6SL_CLK_ECSPI4>, |
| 183 | <&clks IMX6SL_CLK_ECSPI4>; |
| 184 | clock-names = "ipg", "per"; |
| 185 | status = "disabled"; |
| 186 | }; |
| 187 | |
| 188 | uart5: serial@02018000 { |
Huang Shijie | 6eb85f9 | 2013-07-08 17:14:19 +0800 | [diff] [blame] | 189 | compatible = "fsl,imx6sl-uart", |
| 190 | "fsl,imx6q-uart", "fsl,imx21-uart"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 191 | reg = <0x02018000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 192 | interrupts = <0 30 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 193 | clocks = <&clks IMX6SL_CLK_UART>, |
| 194 | <&clks IMX6SL_CLK_UART_SERIAL>; |
| 195 | clock-names = "ipg", "per"; |
Huang Shijie | 72a5ceb | 2013-07-12 18:02:09 +0800 | [diff] [blame] | 196 | dmas = <&sdma 33 4 0>, <&sdma 34 4 0>; |
| 197 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 198 | status = "disabled"; |
| 199 | }; |
| 200 | |
| 201 | uart1: serial@02020000 { |
Huang Shijie | 6eb85f9 | 2013-07-08 17:14:19 +0800 | [diff] [blame] | 202 | compatible = "fsl,imx6sl-uart", |
| 203 | "fsl,imx6q-uart", "fsl,imx21-uart"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 204 | reg = <0x02020000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 205 | interrupts = <0 26 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 206 | clocks = <&clks IMX6SL_CLK_UART>, |
| 207 | <&clks IMX6SL_CLK_UART_SERIAL>; |
| 208 | clock-names = "ipg", "per"; |
Huang Shijie | 72a5ceb | 2013-07-12 18:02:09 +0800 | [diff] [blame] | 209 | dmas = <&sdma 25 4 0>, <&sdma 26 4 0>; |
| 210 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 211 | status = "disabled"; |
| 212 | }; |
| 213 | |
| 214 | uart2: serial@02024000 { |
Huang Shijie | 6eb85f9 | 2013-07-08 17:14:19 +0800 | [diff] [blame] | 215 | compatible = "fsl,imx6sl-uart", |
| 216 | "fsl,imx6q-uart", "fsl,imx21-uart"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 217 | reg = <0x02024000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 218 | interrupts = <0 27 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 219 | clocks = <&clks IMX6SL_CLK_UART>, |
| 220 | <&clks IMX6SL_CLK_UART_SERIAL>; |
| 221 | clock-names = "ipg", "per"; |
Huang Shijie | 72a5ceb | 2013-07-12 18:02:09 +0800 | [diff] [blame] | 222 | dmas = <&sdma 27 4 0>, <&sdma 28 4 0>; |
| 223 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 224 | status = "disabled"; |
| 225 | }; |
| 226 | |
| 227 | ssi1: ssi@02028000 { |
| 228 | compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi"; |
| 229 | reg = <0x02028000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 230 | interrupts = <0 46 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 231 | clocks = <&clks IMX6SL_CLK_SSI1>; |
Shawn Guo | 5da826a | 2013-07-17 13:50:54 +0800 | [diff] [blame] | 232 | dmas = <&sdma 37 1 0>, |
| 233 | <&sdma 38 1 0>; |
| 234 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 235 | fsl,fifo-depth = <15>; |
| 236 | status = "disabled"; |
| 237 | }; |
| 238 | |
| 239 | ssi2: ssi@0202c000 { |
| 240 | compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi"; |
| 241 | reg = <0x0202c000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 242 | interrupts = <0 47 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 243 | clocks = <&clks IMX6SL_CLK_SSI2>; |
Shawn Guo | 5da826a | 2013-07-17 13:50:54 +0800 | [diff] [blame] | 244 | dmas = <&sdma 41 1 0>, |
| 245 | <&sdma 42 1 0>; |
| 246 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 247 | fsl,fifo-depth = <15>; |
| 248 | status = "disabled"; |
| 249 | }; |
| 250 | |
| 251 | ssi3: ssi@02030000 { |
| 252 | compatible = "fsl,imx6sl-ssi","fsl,imx21-ssi"; |
| 253 | reg = <0x02030000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 254 | interrupts = <0 48 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 255 | clocks = <&clks IMX6SL_CLK_SSI3>; |
Shawn Guo | 5da826a | 2013-07-17 13:50:54 +0800 | [diff] [blame] | 256 | dmas = <&sdma 45 1 0>, |
| 257 | <&sdma 46 1 0>; |
| 258 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 259 | fsl,fifo-depth = <15>; |
| 260 | status = "disabled"; |
| 261 | }; |
| 262 | |
| 263 | uart3: serial@02034000 { |
Huang Shijie | 6eb85f9 | 2013-07-08 17:14:19 +0800 | [diff] [blame] | 264 | compatible = "fsl,imx6sl-uart", |
| 265 | "fsl,imx6q-uart", "fsl,imx21-uart"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 266 | reg = <0x02034000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 267 | interrupts = <0 28 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 268 | clocks = <&clks IMX6SL_CLK_UART>, |
| 269 | <&clks IMX6SL_CLK_UART_SERIAL>; |
| 270 | clock-names = "ipg", "per"; |
Huang Shijie | 72a5ceb | 2013-07-12 18:02:09 +0800 | [diff] [blame] | 271 | dmas = <&sdma 29 4 0>, <&sdma 30 4 0>; |
| 272 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 273 | status = "disabled"; |
| 274 | }; |
| 275 | |
| 276 | uart4: serial@02038000 { |
Huang Shijie | 6eb85f9 | 2013-07-08 17:14:19 +0800 | [diff] [blame] | 277 | compatible = "fsl,imx6sl-uart", |
| 278 | "fsl,imx6q-uart", "fsl,imx21-uart"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 279 | reg = <0x02038000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 280 | interrupts = <0 29 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 281 | clocks = <&clks IMX6SL_CLK_UART>, |
| 282 | <&clks IMX6SL_CLK_UART_SERIAL>; |
| 283 | clock-names = "ipg", "per"; |
Huang Shijie | 72a5ceb | 2013-07-12 18:02:09 +0800 | [diff] [blame] | 284 | dmas = <&sdma 31 4 0>, <&sdma 32 4 0>; |
| 285 | dma-names = "rx", "tx"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 286 | status = "disabled"; |
| 287 | }; |
| 288 | }; |
| 289 | |
| 290 | pwm1: pwm@02080000 { |
| 291 | #pwm-cells = <2>; |
| 292 | compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm"; |
| 293 | reg = <0x02080000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 294 | interrupts = <0 83 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 295 | clocks = <&clks IMX6SL_CLK_PWM1>, |
| 296 | <&clks IMX6SL_CLK_PWM1>; |
| 297 | clock-names = "ipg", "per"; |
| 298 | }; |
| 299 | |
| 300 | pwm2: pwm@02084000 { |
| 301 | #pwm-cells = <2>; |
| 302 | compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm"; |
| 303 | reg = <0x02084000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 304 | interrupts = <0 84 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 305 | clocks = <&clks IMX6SL_CLK_PWM2>, |
| 306 | <&clks IMX6SL_CLK_PWM2>; |
| 307 | clock-names = "ipg", "per"; |
| 308 | }; |
| 309 | |
| 310 | pwm3: pwm@02088000 { |
| 311 | #pwm-cells = <2>; |
| 312 | compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm"; |
| 313 | reg = <0x02088000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 314 | interrupts = <0 85 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 315 | clocks = <&clks IMX6SL_CLK_PWM3>, |
| 316 | <&clks IMX6SL_CLK_PWM3>; |
| 317 | clock-names = "ipg", "per"; |
| 318 | }; |
| 319 | |
| 320 | pwm4: pwm@0208c000 { |
| 321 | #pwm-cells = <2>; |
| 322 | compatible = "fsl,imx6sl-pwm", "fsl,imx27-pwm"; |
| 323 | reg = <0x0208c000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 324 | interrupts = <0 86 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 325 | clocks = <&clks IMX6SL_CLK_PWM4>, |
| 326 | <&clks IMX6SL_CLK_PWM4>; |
| 327 | clock-names = "ipg", "per"; |
| 328 | }; |
| 329 | |
| 330 | gpt: gpt@02098000 { |
| 331 | compatible = "fsl,imx6sl-gpt"; |
| 332 | reg = <0x02098000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 333 | interrupts = <0 55 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 334 | clocks = <&clks IMX6SL_CLK_GPT>, |
| 335 | <&clks IMX6SL_CLK_GPT_SERIAL>; |
| 336 | clock-names = "ipg", "per"; |
| 337 | }; |
| 338 | |
| 339 | gpio1: gpio@0209c000 { |
| 340 | compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio"; |
| 341 | reg = <0x0209c000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 342 | interrupts = <0 66 IRQ_TYPE_LEVEL_HIGH>, |
| 343 | <0 67 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 344 | gpio-controller; |
| 345 | #gpio-cells = <2>; |
| 346 | interrupt-controller; |
| 347 | #interrupt-cells = <2>; |
| 348 | }; |
| 349 | |
| 350 | gpio2: gpio@020a0000 { |
| 351 | compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio"; |
| 352 | reg = <0x020a0000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 353 | interrupts = <0 68 IRQ_TYPE_LEVEL_HIGH>, |
| 354 | <0 69 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 355 | gpio-controller; |
| 356 | #gpio-cells = <2>; |
| 357 | interrupt-controller; |
| 358 | #interrupt-cells = <2>; |
| 359 | }; |
| 360 | |
| 361 | gpio3: gpio@020a4000 { |
| 362 | compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio"; |
| 363 | reg = <0x020a4000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 364 | interrupts = <0 70 IRQ_TYPE_LEVEL_HIGH>, |
| 365 | <0 71 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 366 | gpio-controller; |
| 367 | #gpio-cells = <2>; |
| 368 | interrupt-controller; |
| 369 | #interrupt-cells = <2>; |
| 370 | }; |
| 371 | |
| 372 | gpio4: gpio@020a8000 { |
| 373 | compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio"; |
| 374 | reg = <0x020a8000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 375 | interrupts = <0 72 IRQ_TYPE_LEVEL_HIGH>, |
| 376 | <0 73 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 377 | gpio-controller; |
| 378 | #gpio-cells = <2>; |
| 379 | interrupt-controller; |
| 380 | #interrupt-cells = <2>; |
| 381 | }; |
| 382 | |
| 383 | gpio5: gpio@020ac000 { |
| 384 | compatible = "fsl,imx6sl-gpio", "fsl,imx35-gpio"; |
| 385 | reg = <0x020ac000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 386 | interrupts = <0 74 IRQ_TYPE_LEVEL_HIGH>, |
| 387 | <0 75 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 388 | gpio-controller; |
| 389 | #gpio-cells = <2>; |
| 390 | interrupt-controller; |
| 391 | #interrupt-cells = <2>; |
| 392 | }; |
| 393 | |
| 394 | kpp: kpp@020b8000 { |
| 395 | reg = <0x020b8000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 396 | interrupts = <0 82 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 397 | }; |
| 398 | |
| 399 | wdog1: wdog@020bc000 { |
| 400 | compatible = "fsl,imx6sl-wdt", "fsl,imx21-wdt"; |
| 401 | reg = <0x020bc000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 402 | interrupts = <0 80 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 403 | clocks = <&clks IMX6SL_CLK_DUMMY>; |
| 404 | }; |
| 405 | |
| 406 | wdog2: wdog@020c0000 { |
| 407 | compatible = "fsl,imx6sl-wdt", "fsl,imx21-wdt"; |
| 408 | reg = <0x020c0000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 409 | interrupts = <0 81 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 410 | clocks = <&clks IMX6SL_CLK_DUMMY>; |
| 411 | status = "disabled"; |
| 412 | }; |
| 413 | |
| 414 | clks: ccm@020c4000 { |
| 415 | compatible = "fsl,imx6sl-ccm"; |
| 416 | reg = <0x020c4000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 417 | interrupts = <0 87 IRQ_TYPE_LEVEL_HIGH>, |
| 418 | <0 88 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 419 | #clock-cells = <1>; |
| 420 | }; |
| 421 | |
| 422 | anatop: anatop@020c8000 { |
Shawn Guo | d8ce823 | 2013-08-13 16:54:05 +0800 | [diff] [blame] | 423 | compatible = "fsl,imx6sl-anatop", |
| 424 | "fsl,imx6q-anatop", |
| 425 | "syscon", "simple-bus"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 426 | reg = <0x020c8000 0x1000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 427 | interrupts = <0 49 IRQ_TYPE_LEVEL_HIGH>, |
| 428 | <0 54 IRQ_TYPE_LEVEL_HIGH>, |
| 429 | <0 127 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 430 | |
| 431 | regulator-1p1@110 { |
| 432 | compatible = "fsl,anatop-regulator"; |
| 433 | regulator-name = "vdd1p1"; |
| 434 | regulator-min-microvolt = <800000>; |
| 435 | regulator-max-microvolt = <1375000>; |
| 436 | regulator-always-on; |
| 437 | anatop-reg-offset = <0x110>; |
| 438 | anatop-vol-bit-shift = <8>; |
| 439 | anatop-vol-bit-width = <5>; |
| 440 | anatop-min-bit-val = <4>; |
| 441 | anatop-min-voltage = <800000>; |
| 442 | anatop-max-voltage = <1375000>; |
| 443 | }; |
| 444 | |
| 445 | regulator-3p0@120 { |
| 446 | compatible = "fsl,anatop-regulator"; |
| 447 | regulator-name = "vdd3p0"; |
| 448 | regulator-min-microvolt = <2800000>; |
| 449 | regulator-max-microvolt = <3150000>; |
| 450 | regulator-always-on; |
| 451 | anatop-reg-offset = <0x120>; |
| 452 | anatop-vol-bit-shift = <8>; |
| 453 | anatop-vol-bit-width = <5>; |
| 454 | anatop-min-bit-val = <0>; |
| 455 | anatop-min-voltage = <2625000>; |
| 456 | anatop-max-voltage = <3400000>; |
| 457 | }; |
| 458 | |
| 459 | regulator-2p5@130 { |
| 460 | compatible = "fsl,anatop-regulator"; |
| 461 | regulator-name = "vdd2p5"; |
| 462 | regulator-min-microvolt = <2100000>; |
| 463 | regulator-max-microvolt = <2850000>; |
| 464 | regulator-always-on; |
| 465 | anatop-reg-offset = <0x130>; |
| 466 | anatop-vol-bit-shift = <8>; |
| 467 | anatop-vol-bit-width = <5>; |
| 468 | anatop-min-bit-val = <0>; |
| 469 | anatop-min-voltage = <2100000>; |
| 470 | anatop-max-voltage = <2850000>; |
| 471 | }; |
| 472 | |
| 473 | reg_arm: regulator-vddcore@140 { |
| 474 | compatible = "fsl,anatop-regulator"; |
Fabio Estevam | 118c98a | 2013-12-19 21:08:52 -0200 | [diff] [blame] | 475 | regulator-name = "vddarm"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 476 | regulator-min-microvolt = <725000>; |
| 477 | regulator-max-microvolt = <1450000>; |
| 478 | regulator-always-on; |
| 479 | anatop-reg-offset = <0x140>; |
| 480 | anatop-vol-bit-shift = <0>; |
| 481 | anatop-vol-bit-width = <5>; |
| 482 | anatop-delay-reg-offset = <0x170>; |
| 483 | anatop-delay-bit-shift = <24>; |
| 484 | anatop-delay-bit-width = <2>; |
| 485 | anatop-min-bit-val = <1>; |
| 486 | anatop-min-voltage = <725000>; |
| 487 | anatop-max-voltage = <1450000>; |
| 488 | }; |
| 489 | |
| 490 | reg_pu: regulator-vddpu@140 { |
| 491 | compatible = "fsl,anatop-regulator"; |
| 492 | regulator-name = "vddpu"; |
| 493 | regulator-min-microvolt = <725000>; |
| 494 | regulator-max-microvolt = <1450000>; |
| 495 | regulator-always-on; |
| 496 | anatop-reg-offset = <0x140>; |
| 497 | anatop-vol-bit-shift = <9>; |
| 498 | anatop-vol-bit-width = <5>; |
| 499 | anatop-delay-reg-offset = <0x170>; |
| 500 | anatop-delay-bit-shift = <26>; |
| 501 | anatop-delay-bit-width = <2>; |
| 502 | anatop-min-bit-val = <1>; |
| 503 | anatop-min-voltage = <725000>; |
| 504 | anatop-max-voltage = <1450000>; |
| 505 | }; |
| 506 | |
| 507 | reg_soc: regulator-vddsoc@140 { |
| 508 | compatible = "fsl,anatop-regulator"; |
| 509 | regulator-name = "vddsoc"; |
| 510 | regulator-min-microvolt = <725000>; |
| 511 | regulator-max-microvolt = <1450000>; |
| 512 | regulator-always-on; |
| 513 | anatop-reg-offset = <0x140>; |
| 514 | anatop-vol-bit-shift = <18>; |
| 515 | anatop-vol-bit-width = <5>; |
| 516 | anatop-delay-reg-offset = <0x170>; |
| 517 | anatop-delay-bit-shift = <28>; |
| 518 | anatop-delay-bit-width = <2>; |
| 519 | anatop-min-bit-val = <1>; |
| 520 | anatop-min-voltage = <725000>; |
| 521 | anatop-max-voltage = <1450000>; |
| 522 | }; |
| 523 | }; |
| 524 | |
| 525 | usbphy1: usbphy@020c9000 { |
| 526 | compatible = "fsl,imx6sl-usbphy", "fsl,imx23-usbphy"; |
| 527 | reg = <0x020c9000 0x1000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 528 | interrupts = <0 44 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 529 | clocks = <&clks IMX6SL_CLK_USBPHY1>; |
Peter Chen | 76a3885 | 2013-12-20 15:52:01 +0800 | [diff] [blame] | 530 | fsl,anatop = <&anatop>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 531 | }; |
| 532 | |
| 533 | usbphy2: usbphy@020ca000 { |
| 534 | compatible = "fsl,imx6sl-usbphy", "fsl,imx23-usbphy"; |
| 535 | reg = <0x020ca000 0x1000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 536 | interrupts = <0 45 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 537 | clocks = <&clks IMX6SL_CLK_USBPHY2>; |
Peter Chen | 76a3885 | 2013-12-20 15:52:01 +0800 | [diff] [blame] | 538 | fsl,anatop = <&anatop>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 539 | }; |
| 540 | |
| 541 | snvs@020cc000 { |
| 542 | compatible = "fsl,sec-v4.0-mon", "simple-bus"; |
| 543 | #address-cells = <1>; |
| 544 | #size-cells = <1>; |
| 545 | ranges = <0 0x020cc000 0x4000>; |
| 546 | |
| 547 | snvs-rtc-lp@34 { |
| 548 | compatible = "fsl,sec-v4.0-mon-rtc-lp"; |
| 549 | reg = <0x34 0x58>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 550 | interrupts = <0 19 IRQ_TYPE_LEVEL_HIGH>, |
| 551 | <0 20 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 552 | }; |
| 553 | }; |
| 554 | |
| 555 | epit1: epit@020d0000 { |
| 556 | reg = <0x020d0000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 557 | interrupts = <0 56 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 558 | }; |
| 559 | |
| 560 | epit2: epit@020d4000 { |
| 561 | reg = <0x020d4000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 562 | interrupts = <0 57 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 563 | }; |
| 564 | |
| 565 | src: src@020d8000 { |
| 566 | compatible = "fsl,imx6sl-src", "fsl,imx51-src"; |
| 567 | reg = <0x020d8000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 568 | interrupts = <0 91 IRQ_TYPE_LEVEL_HIGH>, |
| 569 | <0 96 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 570 | #reset-cells = <1>; |
| 571 | }; |
| 572 | |
| 573 | gpc: gpc@020dc000 { |
| 574 | compatible = "fsl,imx6sl-gpc", "fsl,imx6q-gpc"; |
| 575 | reg = <0x020dc000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 576 | interrupts = <0 89 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 577 | }; |
| 578 | |
Fugang Duan | e03d10f | 2013-09-03 12:26:22 +0800 | [diff] [blame] | 579 | gpr: iomuxc-gpr@020e0000 { |
Shawn Guo | 5f7adc9 | 2013-10-18 23:27:37 +0800 | [diff] [blame] | 580 | compatible = "fsl,imx6sl-iomuxc-gpr", |
| 581 | "fsl,imx6q-iomuxc-gpr", "syscon"; |
Fugang Duan | e03d10f | 2013-09-03 12:26:22 +0800 | [diff] [blame] | 582 | reg = <0x020e0000 0x38>; |
| 583 | }; |
| 584 | |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 585 | iomuxc: iomuxc@020e0000 { |
| 586 | compatible = "fsl,imx6sl-iomuxc"; |
| 587 | reg = <0x020e0000 0x4000>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 588 | }; |
| 589 | |
| 590 | csi: csi@020e4000 { |
| 591 | reg = <0x020e4000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 592 | interrupts = <0 7 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 593 | }; |
| 594 | |
| 595 | spdc: spdc@020e8000 { |
| 596 | reg = <0x020e8000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 597 | interrupts = <0 6 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 598 | }; |
| 599 | |
| 600 | sdma: sdma@020ec000 { |
| 601 | compatible = "fsl,imx6sl-sdma", "fsl,imx35-sdma"; |
| 602 | reg = <0x020ec000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 603 | interrupts = <0 2 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 604 | clocks = <&clks IMX6SL_CLK_SDMA>, |
| 605 | <&clks IMX6SL_CLK_SDMA>; |
| 606 | clock-names = "ipg", "ahb"; |
Huang Shijie | fb72bb2 | 2013-07-02 10:15:29 +0800 | [diff] [blame] | 607 | #dma-cells = <3>; |
Shawn Guo | 44a2687 | 2013-08-13 08:55:02 +0800 | [diff] [blame] | 608 | /* imx6sl reuses imx6q sdma firmware */ |
| 609 | fsl,sdma-ram-script-name = "imx/sdma/sdma-imx6q.bin"; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 610 | }; |
| 611 | |
| 612 | pxp: pxp@020f0000 { |
| 613 | reg = <0x020f0000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 614 | interrupts = <0 98 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 615 | }; |
| 616 | |
| 617 | epdc: epdc@020f4000 { |
| 618 | reg = <0x020f4000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 619 | interrupts = <0 97 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 620 | }; |
| 621 | |
| 622 | lcdif: lcdif@020f8000 { |
| 623 | reg = <0x020f8000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 624 | interrupts = <0 39 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 625 | }; |
| 626 | |
| 627 | dcp: dcp@020fc000 { |
| 628 | reg = <0x020fc000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 629 | interrupts = <0 99 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 630 | }; |
| 631 | }; |
| 632 | |
| 633 | aips2: aips-bus@02100000 { |
| 634 | compatible = "fsl,aips-bus", "simple-bus"; |
| 635 | #address-cells = <1>; |
| 636 | #size-cells = <1>; |
| 637 | reg = <0x02100000 0x100000>; |
| 638 | ranges; |
| 639 | |
| 640 | usbotg1: usb@02184000 { |
| 641 | compatible = "fsl,imx6sl-usb", "fsl,imx27-usb"; |
| 642 | reg = <0x02184000 0x200>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 643 | interrupts = <0 43 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 644 | clocks = <&clks IMX6SL_CLK_USBOH3>; |
| 645 | fsl,usbphy = <&usbphy1>; |
| 646 | fsl,usbmisc = <&usbmisc 0>; |
| 647 | status = "disabled"; |
| 648 | }; |
| 649 | |
| 650 | usbotg2: usb@02184200 { |
| 651 | compatible = "fsl,imx6sl-usb", "fsl,imx27-usb"; |
| 652 | reg = <0x02184200 0x200>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 653 | interrupts = <0 42 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 654 | clocks = <&clks IMX6SL_CLK_USBOH3>; |
| 655 | fsl,usbphy = <&usbphy2>; |
| 656 | fsl,usbmisc = <&usbmisc 1>; |
| 657 | status = "disabled"; |
| 658 | }; |
| 659 | |
| 660 | usbh: usb@02184400 { |
| 661 | compatible = "fsl,imx6sl-usb", "fsl,imx27-usb"; |
| 662 | reg = <0x02184400 0x200>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 663 | interrupts = <0 40 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 664 | clocks = <&clks IMX6SL_CLK_USBOH3>; |
| 665 | fsl,usbmisc = <&usbmisc 2>; |
| 666 | status = "disabled"; |
| 667 | }; |
| 668 | |
| 669 | usbmisc: usbmisc@02184800 { |
| 670 | #index-cells = <1>; |
| 671 | compatible = "fsl,imx6sl-usbmisc", "fsl,imx6q-usbmisc"; |
| 672 | reg = <0x02184800 0x200>; |
| 673 | clocks = <&clks IMX6SL_CLK_USBOH3>; |
| 674 | }; |
| 675 | |
| 676 | fec: ethernet@02188000 { |
| 677 | compatible = "fsl,imx6sl-fec", "fsl,imx25-fec"; |
| 678 | reg = <0x02188000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 679 | interrupts = <0 114 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 680 | clocks = <&clks IMX6SL_CLK_ENET_REF>, |
| 681 | <&clks IMX6SL_CLK_ENET_REF>; |
| 682 | clock-names = "ipg", "ahb"; |
| 683 | status = "disabled"; |
| 684 | }; |
| 685 | |
| 686 | usdhc1: usdhc@02190000 { |
| 687 | compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc"; |
| 688 | reg = <0x02190000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 689 | interrupts = <0 22 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 690 | clocks = <&clks IMX6SL_CLK_USDHC1>, |
| 691 | <&clks IMX6SL_CLK_USDHC1>, |
| 692 | <&clks IMX6SL_CLK_USDHC1>; |
| 693 | clock-names = "ipg", "ahb", "per"; |
| 694 | bus-width = <4>; |
| 695 | status = "disabled"; |
| 696 | }; |
| 697 | |
| 698 | usdhc2: usdhc@02194000 { |
| 699 | compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc"; |
| 700 | reg = <0x02194000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 701 | interrupts = <0 23 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 702 | clocks = <&clks IMX6SL_CLK_USDHC2>, |
| 703 | <&clks IMX6SL_CLK_USDHC2>, |
| 704 | <&clks IMX6SL_CLK_USDHC2>; |
| 705 | clock-names = "ipg", "ahb", "per"; |
| 706 | bus-width = <4>; |
| 707 | status = "disabled"; |
| 708 | }; |
| 709 | |
| 710 | usdhc3: usdhc@02198000 { |
| 711 | compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc"; |
| 712 | reg = <0x02198000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 713 | interrupts = <0 24 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 714 | clocks = <&clks IMX6SL_CLK_USDHC3>, |
| 715 | <&clks IMX6SL_CLK_USDHC3>, |
| 716 | <&clks IMX6SL_CLK_USDHC3>; |
| 717 | clock-names = "ipg", "ahb", "per"; |
| 718 | bus-width = <4>; |
| 719 | status = "disabled"; |
| 720 | }; |
| 721 | |
| 722 | usdhc4: usdhc@0219c000 { |
| 723 | compatible = "fsl,imx6sl-usdhc", "fsl,imx6q-usdhc"; |
| 724 | reg = <0x0219c000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 725 | interrupts = <0 25 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 726 | clocks = <&clks IMX6SL_CLK_USDHC4>, |
| 727 | <&clks IMX6SL_CLK_USDHC4>, |
| 728 | <&clks IMX6SL_CLK_USDHC4>; |
| 729 | clock-names = "ipg", "ahb", "per"; |
| 730 | bus-width = <4>; |
| 731 | status = "disabled"; |
| 732 | }; |
| 733 | |
| 734 | i2c1: i2c@021a0000 { |
| 735 | #address-cells = <1>; |
| 736 | #size-cells = <0>; |
| 737 | compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c"; |
| 738 | reg = <0x021a0000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 739 | interrupts = <0 36 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 740 | clocks = <&clks IMX6SL_CLK_I2C1>; |
| 741 | status = "disabled"; |
| 742 | }; |
| 743 | |
| 744 | i2c2: i2c@021a4000 { |
| 745 | #address-cells = <1>; |
| 746 | #size-cells = <0>; |
| 747 | compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c"; |
| 748 | reg = <0x021a4000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 749 | interrupts = <0 37 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 750 | clocks = <&clks IMX6SL_CLK_I2C2>; |
| 751 | status = "disabled"; |
| 752 | }; |
| 753 | |
| 754 | i2c3: i2c@021a8000 { |
| 755 | #address-cells = <1>; |
| 756 | #size-cells = <0>; |
| 757 | compatible = "fsl,imx6sl-i2c", "fsl,imx21-i2c"; |
| 758 | reg = <0x021a8000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 759 | interrupts = <0 38 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 760 | clocks = <&clks IMX6SL_CLK_I2C3>; |
| 761 | status = "disabled"; |
| 762 | }; |
| 763 | |
| 764 | mmdc: mmdc@021b0000 { |
| 765 | compatible = "fsl,imx6sl-mmdc", "fsl,imx6q-mmdc"; |
| 766 | reg = <0x021b0000 0x4000>; |
| 767 | }; |
| 768 | |
| 769 | rngb: rngb@021b4000 { |
| 770 | reg = <0x021b4000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 771 | interrupts = <0 5 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 772 | }; |
| 773 | |
| 774 | weim: weim@021b8000 { |
| 775 | reg = <0x021b8000 0x4000>; |
Troy Kisky | 13088c2 | 2013-11-14 14:02:12 -0700 | [diff] [blame] | 776 | interrupts = <0 14 IRQ_TYPE_LEVEL_HIGH>; |
Shawn Guo | e29fe21 | 2013-05-03 11:26:30 +0800 | [diff] [blame] | 777 | }; |
| 778 | |
| 779 | ocotp: ocotp@021bc000 { |
| 780 | compatible = "fsl,imx6sl-ocotp"; |
| 781 | reg = <0x021bc000 0x4000>; |
| 782 | }; |
| 783 | |
| 784 | audmux: audmux@021d8000 { |
| 785 | compatible = "fsl,imx6sl-audmux", "fsl,imx31-audmux"; |
| 786 | reg = <0x021d8000 0x4000>; |
| 787 | status = "disabled"; |
| 788 | }; |
| 789 | }; |
| 790 | }; |
| 791 | }; |