Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2014 MediaTek Inc. |
| 3 | * Author: Eddie Huang <eddie.huang@mediatek.com> |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 | * GNU General Public License for more details. |
| 12 | */ |
| 13 | |
Sascha Hauer | f2ce701 | 2015-05-20 15:32:44 +0200 | [diff] [blame] | 14 | #include <dt-bindings/clock/mt8173-clk.h> |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 15 | #include <dt-bindings/interrupt-controller/irq.h> |
| 16 | #include <dt-bindings/interrupt-controller/arm-gic.h> |
Koro Chen | c02e0e8 | 2015-07-09 11:32:05 +0800 | [diff] [blame] | 17 | #include <dt-bindings/power/mt8173-power.h> |
Sascha Hauer | 6cf15fc | 2015-05-20 15:32:46 +0200 | [diff] [blame] | 18 | #include <dt-bindings/reset-controller/mt8173-resets.h> |
Hongzhou Yang | 359f936 | 2015-03-09 21:54:39 -0700 | [diff] [blame] | 19 | #include "mt8173-pinfunc.h" |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 20 | |
| 21 | / { |
| 22 | compatible = "mediatek,mt8173"; |
| 23 | interrupt-parent = <&sysirq>; |
| 24 | #address-cells = <2>; |
| 25 | #size-cells = <2>; |
| 26 | |
| 27 | cpus { |
| 28 | #address-cells = <1>; |
| 29 | #size-cells = <0>; |
| 30 | |
| 31 | cpu-map { |
| 32 | cluster0 { |
| 33 | core0 { |
| 34 | cpu = <&cpu0>; |
| 35 | }; |
| 36 | core1 { |
| 37 | cpu = <&cpu1>; |
| 38 | }; |
| 39 | }; |
| 40 | |
| 41 | cluster1 { |
| 42 | core0 { |
| 43 | cpu = <&cpu2>; |
| 44 | }; |
| 45 | core1 { |
| 46 | cpu = <&cpu3>; |
| 47 | }; |
| 48 | }; |
| 49 | }; |
| 50 | |
| 51 | cpu0: cpu@0 { |
| 52 | device_type = "cpu"; |
| 53 | compatible = "arm,cortex-a53"; |
| 54 | reg = <0x000>; |
Howard Chen | ad4df7a | 2015-06-04 15:13:37 +0800 | [diff] [blame] | 55 | enable-method = "psci"; |
| 56 | cpu-idle-states = <&CPU_SLEEP_0>; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 57 | }; |
| 58 | |
| 59 | cpu1: cpu@1 { |
| 60 | device_type = "cpu"; |
| 61 | compatible = "arm,cortex-a53"; |
| 62 | reg = <0x001>; |
| 63 | enable-method = "psci"; |
Howard Chen | ad4df7a | 2015-06-04 15:13:37 +0800 | [diff] [blame] | 64 | cpu-idle-states = <&CPU_SLEEP_0>; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | cpu2: cpu@100 { |
| 68 | device_type = "cpu"; |
| 69 | compatible = "arm,cortex-a57"; |
| 70 | reg = <0x100>; |
| 71 | enable-method = "psci"; |
Howard Chen | ad4df7a | 2015-06-04 15:13:37 +0800 | [diff] [blame] | 72 | cpu-idle-states = <&CPU_SLEEP_0>; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | cpu3: cpu@101 { |
| 76 | device_type = "cpu"; |
| 77 | compatible = "arm,cortex-a57"; |
| 78 | reg = <0x101>; |
| 79 | enable-method = "psci"; |
Howard Chen | ad4df7a | 2015-06-04 15:13:37 +0800 | [diff] [blame] | 80 | cpu-idle-states = <&CPU_SLEEP_0>; |
| 81 | }; |
| 82 | |
| 83 | idle-states { |
| 84 | entry-method = "arm,psci"; |
| 85 | |
| 86 | CPU_SLEEP_0: cpu-sleep-0 { |
| 87 | compatible = "arm,idle-state"; |
| 88 | local-timer-stop; |
| 89 | entry-latency-us = <639>; |
| 90 | exit-latency-us = <680>; |
| 91 | min-residency-us = <1088>; |
| 92 | arm,psci-suspend-param = <0x0010000>; |
| 93 | }; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 94 | }; |
| 95 | }; |
| 96 | |
| 97 | psci { |
| 98 | compatible = "arm,psci"; |
| 99 | method = "smc"; |
| 100 | cpu_suspend = <0x84000001>; |
| 101 | cpu_off = <0x84000002>; |
| 102 | cpu_on = <0x84000003>; |
| 103 | }; |
| 104 | |
Sascha Hauer | f2ce701 | 2015-05-20 15:32:44 +0200 | [diff] [blame] | 105 | clk26m: oscillator@0 { |
| 106 | compatible = "fixed-clock"; |
| 107 | #clock-cells = <0>; |
| 108 | clock-frequency = <26000000>; |
| 109 | clock-output-names = "clk26m"; |
| 110 | }; |
| 111 | |
| 112 | clk32k: oscillator@1 { |
| 113 | compatible = "fixed-clock"; |
| 114 | #clock-cells = <0>; |
| 115 | clock-frequency = <32000>; |
| 116 | clock-output-names = "clk32k"; |
| 117 | }; |
| 118 | |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 119 | timer { |
| 120 | compatible = "arm,armv8-timer"; |
| 121 | interrupt-parent = <&gic>; |
| 122 | interrupts = <GIC_PPI 13 |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 123 | (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 124 | <GIC_PPI 14 |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 125 | (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 126 | <GIC_PPI 11 |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 127 | (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 128 | <GIC_PPI 10 |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 129 | (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 130 | }; |
| 131 | |
| 132 | soc { |
| 133 | #address-cells = <2>; |
| 134 | #size-cells = <2>; |
| 135 | compatible = "simple-bus"; |
| 136 | ranges; |
| 137 | |
Sascha Hauer | f2ce701 | 2015-05-20 15:32:44 +0200 | [diff] [blame] | 138 | topckgen: clock-controller@10000000 { |
| 139 | compatible = "mediatek,mt8173-topckgen"; |
| 140 | reg = <0 0x10000000 0 0x1000>; |
| 141 | #clock-cells = <1>; |
| 142 | }; |
| 143 | |
| 144 | infracfg: power-controller@10001000 { |
| 145 | compatible = "mediatek,mt8173-infracfg", "syscon"; |
| 146 | reg = <0 0x10001000 0 0x1000>; |
| 147 | #clock-cells = <1>; |
| 148 | #reset-cells = <1>; |
| 149 | }; |
| 150 | |
| 151 | pericfg: power-controller@10003000 { |
| 152 | compatible = "mediatek,mt8173-pericfg", "syscon"; |
| 153 | reg = <0 0x10003000 0 0x1000>; |
| 154 | #clock-cells = <1>; |
| 155 | #reset-cells = <1>; |
| 156 | }; |
| 157 | |
| 158 | syscfg_pctl_a: syscfg_pctl_a@10005000 { |
| 159 | compatible = "mediatek,mt8173-pctl-a-syscfg", "syscon"; |
| 160 | reg = <0 0x10005000 0 0x1000>; |
| 161 | }; |
| 162 | |
| 163 | pio: pinctrl@0x10005000 { |
Hongzhou Yang | 359f936 | 2015-03-09 21:54:39 -0700 | [diff] [blame] | 164 | compatible = "mediatek,mt8173-pinctrl"; |
Yingjoe Chen | 6769b93 | 2015-05-01 14:49:31 +0800 | [diff] [blame] | 165 | reg = <0 0x1000b000 0 0x1000>; |
Hongzhou Yang | 359f936 | 2015-03-09 21:54:39 -0700 | [diff] [blame] | 166 | mediatek,pctl-regmap = <&syscfg_pctl_a>; |
| 167 | pins-are-numbered; |
| 168 | gpio-controller; |
| 169 | #gpio-cells = <2>; |
| 170 | interrupt-controller; |
| 171 | #interrupt-cells = <2>; |
| 172 | interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>, |
Yingjoe Chen | 6769b93 | 2015-05-01 14:49:31 +0800 | [diff] [blame] | 173 | <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>, |
| 174 | <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>; |
Yingjoe Chen | 6769b93 | 2015-05-01 14:49:31 +0800 | [diff] [blame] | 175 | |
Eddie Huang | 091cf59 | 2015-06-17 23:08:03 +0800 | [diff] [blame] | 176 | i2c0_pins_a: i2c0 { |
| 177 | pins1 { |
| 178 | pinmux = <MT8173_PIN_45_SDA0__FUNC_SDA0>, |
| 179 | <MT8173_PIN_46_SCL0__FUNC_SCL0>; |
| 180 | bias-disable; |
| 181 | }; |
| 182 | }; |
| 183 | |
| 184 | i2c1_pins_a: i2c1 { |
| 185 | pins1 { |
| 186 | pinmux = <MT8173_PIN_125_SDA1__FUNC_SDA1>, |
| 187 | <MT8173_PIN_126_SCL1__FUNC_SCL1>; |
| 188 | bias-disable; |
| 189 | }; |
| 190 | }; |
| 191 | |
| 192 | i2c2_pins_a: i2c2 { |
| 193 | pins1 { |
| 194 | pinmux = <MT8173_PIN_43_SDA2__FUNC_SDA2>, |
| 195 | <MT8173_PIN_44_SCL2__FUNC_SCL2>; |
| 196 | bias-disable; |
| 197 | }; |
| 198 | }; |
| 199 | |
| 200 | i2c3_pins_a: i2c3 { |
| 201 | pins1 { |
| 202 | pinmux = <MT8173_PIN_106_SDA3__FUNC_SDA3>, |
| 203 | <MT8173_PIN_107_SCL3__FUNC_SCL3>; |
| 204 | bias-disable; |
| 205 | }; |
| 206 | }; |
| 207 | |
| 208 | i2c4_pins_a: i2c4 { |
| 209 | pins1 { |
| 210 | pinmux = <MT8173_PIN_133_SDA4__FUNC_SDA4>, |
| 211 | <MT8173_PIN_134_SCL4__FUNC_SCL4>; |
| 212 | bias-disable; |
| 213 | }; |
| 214 | }; |
| 215 | |
| 216 | i2c6_pins_a: i2c6 { |
| 217 | pins1 { |
| 218 | pinmux = <MT8173_PIN_100_MSDC2_DAT0__FUNC_SDA5>, |
| 219 | <MT8173_PIN_101_MSDC2_DAT1__FUNC_SCL5>; |
| 220 | bias-disable; |
| 221 | }; |
| 222 | }; |
Hongzhou Yang | 359f936 | 2015-03-09 21:54:39 -0700 | [diff] [blame] | 223 | }; |
| 224 | |
Sascha Hauer | c010ff5 | 2015-06-24 08:17:05 +0200 | [diff] [blame] | 225 | scpsys: scpsys@10006000 { |
| 226 | compatible = "mediatek,mt8173-scpsys"; |
| 227 | #power-domain-cells = <1>; |
| 228 | reg = <0 0x10006000 0 0x1000>; |
| 229 | clocks = <&clk26m>, |
| 230 | <&topckgen CLK_TOP_MM_SEL>; |
| 231 | clock-names = "mfg", "mm"; |
| 232 | infracfg = <&infracfg>; |
| 233 | }; |
| 234 | |
Eddie Huang | 13421b3 | 2015-06-01 21:08:26 +0800 | [diff] [blame] | 235 | watchdog: watchdog@10007000 { |
| 236 | compatible = "mediatek,mt8173-wdt", |
| 237 | "mediatek,mt6589-wdt"; |
| 238 | reg = <0 0x10007000 0 0x100>; |
| 239 | }; |
| 240 | |
Sascha Hauer | 6cf15fc | 2015-05-20 15:32:46 +0200 | [diff] [blame] | 241 | pwrap: pwrap@1000d000 { |
| 242 | compatible = "mediatek,mt8173-pwrap"; |
| 243 | reg = <0 0x1000d000 0 0x1000>; |
| 244 | reg-names = "pwrap"; |
| 245 | interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>; |
| 246 | resets = <&infracfg MT8173_INFRA_PMIC_WRAP_RST>; |
| 247 | reset-names = "pwrap"; |
| 248 | clocks = <&infracfg CLK_INFRA_PMICSPI>, <&infracfg CLK_INFRA_PMICWRAP>; |
| 249 | clock-names = "spi", "wrap"; |
| 250 | }; |
| 251 | |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 252 | sysirq: intpol-controller@10200620 { |
| 253 | compatible = "mediatek,mt8173-sysirq", |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 254 | "mediatek,mt6577-sysirq"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 255 | interrupt-controller; |
| 256 | #interrupt-cells = <3>; |
| 257 | interrupt-parent = <&gic>; |
| 258 | reg = <0 0x10200620 0 0x20>; |
| 259 | }; |
| 260 | |
Sascha Hauer | f2ce701 | 2015-05-20 15:32:44 +0200 | [diff] [blame] | 261 | apmixedsys: clock-controller@10209000 { |
| 262 | compatible = "mediatek,mt8173-apmixedsys"; |
| 263 | reg = <0 0x10209000 0 0x1000>; |
| 264 | #clock-cells = <1>; |
| 265 | }; |
| 266 | |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 267 | gic: interrupt-controller@10220000 { |
| 268 | compatible = "arm,gic-400"; |
| 269 | #interrupt-cells = <3>; |
| 270 | interrupt-parent = <&gic>; |
| 271 | interrupt-controller; |
| 272 | reg = <0 0x10221000 0 0x1000>, |
| 273 | <0 0x10222000 0 0x2000>, |
| 274 | <0 0x10224000 0 0x2000>, |
| 275 | <0 0x10226000 0 0x2000>; |
| 276 | interrupts = <GIC_PPI 9 |
| 277 | (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>; |
| 278 | }; |
| 279 | |
| 280 | uart0: serial@11002000 { |
| 281 | compatible = "mediatek,mt8173-uart", |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 282 | "mediatek,mt6577-uart"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 283 | reg = <0 0x11002000 0 0x400>; |
| 284 | interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_LOW>; |
Sascha Hauer | 0e84faa | 2015-05-20 15:32:45 +0200 | [diff] [blame] | 285 | clocks = <&pericfg CLK_PERI_UART0_SEL>, <&pericfg CLK_PERI_UART0>; |
| 286 | clock-names = "baud", "bus"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 287 | status = "disabled"; |
| 288 | }; |
| 289 | |
| 290 | uart1: serial@11003000 { |
| 291 | compatible = "mediatek,mt8173-uart", |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 292 | "mediatek,mt6577-uart"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 293 | reg = <0 0x11003000 0 0x400>; |
| 294 | interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_LOW>; |
Sascha Hauer | 0e84faa | 2015-05-20 15:32:45 +0200 | [diff] [blame] | 295 | clocks = <&pericfg CLK_PERI_UART1_SEL>, <&pericfg CLK_PERI_UART1>; |
| 296 | clock-names = "baud", "bus"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 297 | status = "disabled"; |
| 298 | }; |
| 299 | |
| 300 | uart2: serial@11004000 { |
| 301 | compatible = "mediatek,mt8173-uart", |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 302 | "mediatek,mt6577-uart"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 303 | reg = <0 0x11004000 0 0x400>; |
| 304 | interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_LOW>; |
Sascha Hauer | 0e84faa | 2015-05-20 15:32:45 +0200 | [diff] [blame] | 305 | clocks = <&pericfg CLK_PERI_UART2_SEL>, <&pericfg CLK_PERI_UART2>; |
| 306 | clock-names = "baud", "bus"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 307 | status = "disabled"; |
| 308 | }; |
| 309 | |
| 310 | uart3: serial@11005000 { |
| 311 | compatible = "mediatek,mt8173-uart", |
Daniel Kurtz | e881ad1 | 2015-05-20 18:20:07 +0800 | [diff] [blame] | 312 | "mediatek,mt6577-uart"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 313 | reg = <0 0x11005000 0 0x400>; |
| 314 | interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_LOW>; |
Sascha Hauer | 0e84faa | 2015-05-20 15:32:45 +0200 | [diff] [blame] | 315 | clocks = <&pericfg CLK_PERI_UART3_SEL>, <&pericfg CLK_PERI_UART3>; |
| 316 | clock-names = "baud", "bus"; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 317 | status = "disabled"; |
| 318 | }; |
Eddie Huang | 091cf59 | 2015-06-17 23:08:03 +0800 | [diff] [blame] | 319 | |
| 320 | i2c0: i2c@11007000 { |
| 321 | compatible = "mediatek,mt8173-i2c"; |
| 322 | reg = <0 0x11007000 0 0x70>, |
| 323 | <0 0x11000100 0 0x80>; |
| 324 | interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_LOW>; |
| 325 | clock-div = <16>; |
| 326 | clocks = <&pericfg CLK_PERI_I2C0>, |
| 327 | <&pericfg CLK_PERI_AP_DMA>; |
| 328 | clock-names = "main", "dma"; |
| 329 | pinctrl-names = "default"; |
| 330 | pinctrl-0 = <&i2c0_pins_a>; |
| 331 | #address-cells = <1>; |
| 332 | #size-cells = <0>; |
| 333 | status = "disabled"; |
| 334 | }; |
| 335 | |
| 336 | i2c1: i2c@11008000 { |
| 337 | compatible = "mediatek,mt8173-i2c"; |
| 338 | reg = <0 0x11008000 0 0x70>, |
| 339 | <0 0x11000180 0 0x80>; |
| 340 | interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_LOW>; |
| 341 | clock-div = <16>; |
| 342 | clocks = <&pericfg CLK_PERI_I2C1>, |
| 343 | <&pericfg CLK_PERI_AP_DMA>; |
| 344 | clock-names = "main", "dma"; |
| 345 | pinctrl-names = "default"; |
| 346 | pinctrl-0 = <&i2c1_pins_a>; |
| 347 | #address-cells = <1>; |
| 348 | #size-cells = <0>; |
| 349 | status = "disabled"; |
| 350 | }; |
| 351 | |
| 352 | i2c2: i2c@11009000 { |
| 353 | compatible = "mediatek,mt8173-i2c"; |
| 354 | reg = <0 0x11009000 0 0x70>, |
| 355 | <0 0x11000200 0 0x80>; |
| 356 | interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_LOW>; |
| 357 | clock-div = <16>; |
| 358 | clocks = <&pericfg CLK_PERI_I2C2>, |
| 359 | <&pericfg CLK_PERI_AP_DMA>; |
| 360 | clock-names = "main", "dma"; |
| 361 | pinctrl-names = "default"; |
| 362 | pinctrl-0 = <&i2c2_pins_a>; |
| 363 | #address-cells = <1>; |
| 364 | #size-cells = <0>; |
| 365 | status = "disabled"; |
| 366 | }; |
| 367 | |
| 368 | i2c3: i2c3@11010000 { |
| 369 | compatible = "mediatek,mt8173-i2c"; |
| 370 | reg = <0 0x11010000 0 0x70>, |
| 371 | <0 0x11000280 0 0x80>; |
| 372 | interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_LOW>; |
| 373 | clock-div = <16>; |
| 374 | clocks = <&pericfg CLK_PERI_I2C3>, |
| 375 | <&pericfg CLK_PERI_AP_DMA>; |
| 376 | clock-names = "main", "dma"; |
| 377 | pinctrl-names = "default"; |
| 378 | pinctrl-0 = <&i2c3_pins_a>; |
| 379 | #address-cells = <1>; |
| 380 | #size-cells = <0>; |
| 381 | status = "disabled"; |
| 382 | }; |
| 383 | |
| 384 | i2c4: i2c4@11011000 { |
| 385 | compatible = "mediatek,mt8173-i2c"; |
| 386 | reg = <0 0x11011000 0 0x70>, |
| 387 | <0 0x11000300 0 0x80>; |
| 388 | interrupts = <GIC_SPI 80 IRQ_TYPE_LEVEL_LOW>; |
| 389 | clock-div = <16>; |
| 390 | clocks = <&pericfg CLK_PERI_I2C4>, |
| 391 | <&pericfg CLK_PERI_AP_DMA>; |
| 392 | clock-names = "main", "dma"; |
| 393 | pinctrl-names = "default"; |
| 394 | pinctrl-0 = <&i2c4_pins_a>; |
| 395 | #address-cells = <1>; |
| 396 | #size-cells = <0>; |
| 397 | status = "disabled"; |
| 398 | }; |
| 399 | |
| 400 | i2c6: i2c6@11013000 { |
| 401 | compatible = "mediatek,mt8173-i2c"; |
| 402 | reg = <0 0x11013000 0 0x70>, |
| 403 | <0 0x11000080 0 0x80>; |
| 404 | interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_LOW>; |
| 405 | clock-div = <16>; |
| 406 | clocks = <&pericfg CLK_PERI_I2C6>, |
| 407 | <&pericfg CLK_PERI_AP_DMA>; |
| 408 | clock-names = "main", "dma"; |
| 409 | pinctrl-names = "default"; |
| 410 | pinctrl-0 = <&i2c6_pins_a>; |
| 411 | #address-cells = <1>; |
| 412 | #size-cells = <0>; |
| 413 | status = "disabled"; |
| 414 | }; |
Koro Chen | c02e0e8 | 2015-07-09 11:32:05 +0800 | [diff] [blame] | 415 | |
| 416 | afe: audio-controller@11220000 { |
| 417 | compatible = "mediatek,mt8173-afe-pcm"; |
| 418 | reg = <0 0x11220000 0 0x1000>; |
| 419 | interrupts = <GIC_SPI 134 IRQ_TYPE_EDGE_FALLING>; |
| 420 | power-domains = <&scpsys MT8173_POWER_DOMAIN_AUDIO>; |
| 421 | clocks = <&infracfg CLK_INFRA_AUDIO>, |
| 422 | <&topckgen CLK_TOP_AUDIO_SEL>, |
| 423 | <&topckgen CLK_TOP_AUD_INTBUS_SEL>, |
| 424 | <&topckgen CLK_TOP_APLL1_DIV0>, |
| 425 | <&topckgen CLK_TOP_APLL2_DIV0>, |
| 426 | <&topckgen CLK_TOP_I2S0_M_SEL>, |
| 427 | <&topckgen CLK_TOP_I2S1_M_SEL>, |
| 428 | <&topckgen CLK_TOP_I2S2_M_SEL>, |
| 429 | <&topckgen CLK_TOP_I2S3_M_SEL>, |
| 430 | <&topckgen CLK_TOP_I2S3_B_SEL>; |
| 431 | clock-names = "infra_sys_audio_clk", |
| 432 | "top_pdn_audio", |
| 433 | "top_pdn_aud_intbus", |
| 434 | "bck0", |
| 435 | "bck1", |
| 436 | "i2s0_m", |
| 437 | "i2s1_m", |
| 438 | "i2s2_m", |
| 439 | "i2s3_m", |
| 440 | "i2s3_b"; |
| 441 | assigned-clocks = <&topckgen CLK_TOP_AUD_1_SEL>, |
| 442 | <&topckgen CLK_TOP_AUD_2_SEL>; |
| 443 | assigned-clock-parents = <&topckgen CLK_TOP_APLL1>, |
| 444 | <&topckgen CLK_TOP_APLL2>; |
| 445 | }; |
Eddie Huang | 9719fa5 | 2015-07-16 19:36:20 +0800 | [diff] [blame] | 446 | |
| 447 | mmc0: mmc@11230000 { |
| 448 | compatible = "mediatek,mt8173-mmc", |
| 449 | "mediatek,mt8135-mmc"; |
| 450 | reg = <0 0x11230000 0 0x1000>; |
| 451 | interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_LOW>; |
| 452 | clocks = <&pericfg CLK_PERI_MSDC30_0>, |
| 453 | <&topckgen CLK_TOP_MSDC50_0_H_SEL>; |
| 454 | clock-names = "source", "hclk"; |
| 455 | status = "disabled"; |
| 456 | }; |
| 457 | |
| 458 | mmc1: mmc@11240000 { |
| 459 | compatible = "mediatek,mt8173-mmc", |
| 460 | "mediatek,mt8135-mmc"; |
| 461 | reg = <0 0x11240000 0 0x1000>; |
| 462 | interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_LOW>; |
| 463 | clocks = <&pericfg CLK_PERI_MSDC30_1>, |
| 464 | <&topckgen CLK_TOP_AXI_SEL>; |
| 465 | clock-names = "source", "hclk"; |
| 466 | status = "disabled"; |
| 467 | }; |
| 468 | |
| 469 | mmc2: mmc@11250000 { |
| 470 | compatible = "mediatek,mt8173-mmc", |
| 471 | "mediatek,mt8135-mmc"; |
| 472 | reg = <0 0x11250000 0 0x1000>; |
| 473 | interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_LOW>; |
| 474 | clocks = <&pericfg CLK_PERI_MSDC30_2>, |
| 475 | <&topckgen CLK_TOP_AXI_SEL>; |
| 476 | clock-names = "source", "hclk"; |
| 477 | status = "disabled"; |
| 478 | }; |
| 479 | |
| 480 | mmc3: mmc@11260000 { |
| 481 | compatible = "mediatek,mt8173-mmc", |
| 482 | "mediatek,mt8135-mmc"; |
| 483 | reg = <0 0x11260000 0 0x1000>; |
| 484 | interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_LOW>; |
| 485 | clocks = <&pericfg CLK_PERI_MSDC30_3>, |
| 486 | <&topckgen CLK_TOP_MSDC50_2_H_SEL>; |
| 487 | clock-names = "source", "hclk"; |
| 488 | status = "disabled"; |
| 489 | }; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 490 | }; |
Eddie Huang | b3a3724 | 2015-12-01 10:14:00 +0100 | [diff] [blame] | 491 | }; |
| 492 | |