1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2f126890aSEmmanuel Vadot/* 3f126890aSEmmanuel Vadot * Samsung's Exynos4412 SoC device tree source 4f126890aSEmmanuel Vadot * 5f126890aSEmmanuel Vadot * Copyright (c) 2012 Samsung Electronics Co., Ltd. 6f126890aSEmmanuel Vadot * http://www.samsung.com 7f126890aSEmmanuel Vadot * 8f126890aSEmmanuel Vadot * Samsung's Exynos4x12 SoC series device nodes are listed in this file. 9f126890aSEmmanuel Vadot * Particular SoCs from Exynos4x12 series can include this file and provide 10f126890aSEmmanuel Vadot * values for SoCs specific bindings. 11f126890aSEmmanuel Vadot * 12f126890aSEmmanuel Vadot * Note: This file does not include device nodes for all the controllers in 13f126890aSEmmanuel Vadot * Exynos4x12 SoCs. As device tree coverage for Exynos4x12 increases, additional 14f126890aSEmmanuel Vadot * nodes can be added to this file. 15f126890aSEmmanuel Vadot */ 16f126890aSEmmanuel Vadot 17f126890aSEmmanuel Vadot#include "exynos4.dtsi" 18f126890aSEmmanuel Vadot 19f126890aSEmmanuel Vadot#include "exynos4-cpu-thermal.dtsi" 20f126890aSEmmanuel Vadot 21f126890aSEmmanuel Vadot/ { 22f126890aSEmmanuel Vadot aliases { 23f126890aSEmmanuel Vadot pinctrl0 = &pinctrl_0; 24f126890aSEmmanuel Vadot pinctrl1 = &pinctrl_1; 25f126890aSEmmanuel Vadot pinctrl2 = &pinctrl_2; 26f126890aSEmmanuel Vadot pinctrl3 = &pinctrl_3; 27f126890aSEmmanuel Vadot fimc-lite0 = &fimc_lite_0; 28f126890aSEmmanuel Vadot fimc-lite1 = &fimc_lite_1; 29f126890aSEmmanuel Vadot }; 30f126890aSEmmanuel Vadot 31f126890aSEmmanuel Vadot bus_acp: bus-acp { 32f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 33f126890aSEmmanuel Vadot clocks = <&clock CLK_DIV_ACP>; 34f126890aSEmmanuel Vadot clock-names = "bus"; 35f126890aSEmmanuel Vadot operating-points-v2 = <&bus_acp_opp_table>; 36f126890aSEmmanuel Vadot status = "disabled"; 37f126890aSEmmanuel Vadot 38f126890aSEmmanuel Vadot bus_acp_opp_table: opp-table { 39f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 40f126890aSEmmanuel Vadot 41f126890aSEmmanuel Vadot opp-100000000 { 42f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 43f126890aSEmmanuel Vadot }; 44f126890aSEmmanuel Vadot opp-134000000 { 45f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <134000000>; 46f126890aSEmmanuel Vadot }; 47f126890aSEmmanuel Vadot opp-160000000 { 48f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <160000000>; 49f126890aSEmmanuel Vadot }; 50f126890aSEmmanuel Vadot opp-267000000 { 51f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 52f126890aSEmmanuel Vadot }; 53f126890aSEmmanuel Vadot }; 54f126890aSEmmanuel Vadot }; 55f126890aSEmmanuel Vadot 56f126890aSEmmanuel Vadot bus_c2c: bus-c2c { 57f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 58f126890aSEmmanuel Vadot clocks = <&clock CLK_DIV_C2C>; 59f126890aSEmmanuel Vadot clock-names = "bus"; 60f126890aSEmmanuel Vadot operating-points-v2 = <&bus_dmc_opp_table>; 61f126890aSEmmanuel Vadot status = "disabled"; 62f126890aSEmmanuel Vadot }; 63f126890aSEmmanuel Vadot 64f126890aSEmmanuel Vadot bus_dmc: bus-dmc { 65f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 66f126890aSEmmanuel Vadot clocks = <&clock CLK_DIV_DMC>; 67f126890aSEmmanuel Vadot clock-names = "bus"; 68f126890aSEmmanuel Vadot operating-points-v2 = <&bus_dmc_opp_table>; 69f126890aSEmmanuel Vadot samsung,data-clock-ratio = <4>; 70f126890aSEmmanuel Vadot #interconnect-cells = <0>; 71f126890aSEmmanuel Vadot status = "disabled"; 72f126890aSEmmanuel Vadot }; 73f126890aSEmmanuel Vadot 74f126890aSEmmanuel Vadot bus_display: bus-display { 75f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 76f126890aSEmmanuel Vadot clocks = <&clock CLK_ACLK160>; 77f126890aSEmmanuel Vadot clock-names = "bus"; 78f126890aSEmmanuel Vadot operating-points-v2 = <&bus_display_opp_table>; 79f126890aSEmmanuel Vadot interconnects = <&bus_leftbus &bus_dmc>; 80f126890aSEmmanuel Vadot #interconnect-cells = <0>; 81f126890aSEmmanuel Vadot status = "disabled"; 82f126890aSEmmanuel Vadot 83f126890aSEmmanuel Vadot bus_display_opp_table: opp-table { 84f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 85f126890aSEmmanuel Vadot 86f126890aSEmmanuel Vadot opp-160000000 { 87f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <160000000>; 88f126890aSEmmanuel Vadot }; 89f126890aSEmmanuel Vadot opp-200000000 { 90f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <200000000>; 91f126890aSEmmanuel Vadot }; 92f126890aSEmmanuel Vadot }; 93f126890aSEmmanuel Vadot }; 94f126890aSEmmanuel Vadot 95f126890aSEmmanuel Vadot bus_fsys: bus-fsys { 96f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 97f126890aSEmmanuel Vadot clocks = <&clock CLK_ACLK133>; 98f126890aSEmmanuel Vadot clock-names = "bus"; 99f126890aSEmmanuel Vadot operating-points-v2 = <&bus_fsys_opp_table>; 100f126890aSEmmanuel Vadot status = "disabled"; 101f126890aSEmmanuel Vadot 102f126890aSEmmanuel Vadot bus_fsys_opp_table: opp-table { 103f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 104f126890aSEmmanuel Vadot 105f126890aSEmmanuel Vadot opp-100000000 { 106f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 107f126890aSEmmanuel Vadot }; 108f126890aSEmmanuel Vadot opp-134000000 { 109f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <134000000>; 110f126890aSEmmanuel Vadot }; 111f126890aSEmmanuel Vadot }; 112f126890aSEmmanuel Vadot }; 113f126890aSEmmanuel Vadot 114f126890aSEmmanuel Vadot bus_leftbus: bus-leftbus { 115f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 116f126890aSEmmanuel Vadot clocks = <&clock CLK_DIV_GDL>; 117f126890aSEmmanuel Vadot clock-names = "bus"; 118f126890aSEmmanuel Vadot operating-points-v2 = <&bus_leftbus_opp_table>; 119f126890aSEmmanuel Vadot interconnects = <&bus_dmc>; 120f126890aSEmmanuel Vadot #interconnect-cells = <0>; 121f126890aSEmmanuel Vadot status = "disabled"; 122f126890aSEmmanuel Vadot }; 123f126890aSEmmanuel Vadot 124f126890aSEmmanuel Vadot bus_mfc: bus-mfc { 125f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 126f126890aSEmmanuel Vadot clocks = <&clock CLK_SCLK_MFC>; 127f126890aSEmmanuel Vadot clock-names = "bus"; 128f126890aSEmmanuel Vadot operating-points-v2 = <&bus_leftbus_opp_table>; 129f126890aSEmmanuel Vadot status = "disabled"; 130f126890aSEmmanuel Vadot }; 131f126890aSEmmanuel Vadot 132f126890aSEmmanuel Vadot bus_peri: bus-peri { 133f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 134f126890aSEmmanuel Vadot clocks = <&clock CLK_ACLK100>; 135f126890aSEmmanuel Vadot clock-names = "bus"; 136f126890aSEmmanuel Vadot operating-points-v2 = <&bus_peri_opp_table>; 137f126890aSEmmanuel Vadot status = "disabled"; 138f126890aSEmmanuel Vadot 139f126890aSEmmanuel Vadot bus_peri_opp_table: opp-table { 140f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 141f126890aSEmmanuel Vadot 142f126890aSEmmanuel Vadot opp-50000000 { 143f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <50000000>; 144f126890aSEmmanuel Vadot }; 145f126890aSEmmanuel Vadot opp-100000000 { 146f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 147f126890aSEmmanuel Vadot }; 148f126890aSEmmanuel Vadot }; 149f126890aSEmmanuel Vadot }; 150f126890aSEmmanuel Vadot 151f126890aSEmmanuel Vadot bus_rightbus: bus-rightbus { 152f126890aSEmmanuel Vadot compatible = "samsung,exynos-bus"; 153f126890aSEmmanuel Vadot clocks = <&clock CLK_DIV_GDR>; 154f126890aSEmmanuel Vadot clock-names = "bus"; 155f126890aSEmmanuel Vadot operating-points-v2 = <&bus_leftbus_opp_table>; 156f126890aSEmmanuel Vadot status = "disabled"; 157f126890aSEmmanuel Vadot }; 158f126890aSEmmanuel Vadot 159f126890aSEmmanuel Vadot bus_dmc_opp_table: opp-table-1 { 160f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 161f126890aSEmmanuel Vadot 162f126890aSEmmanuel Vadot opp-100000000 { 163f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 164f126890aSEmmanuel Vadot opp-microvolt = <900000>; 165f126890aSEmmanuel Vadot }; 166f126890aSEmmanuel Vadot opp-134000000 { 167f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <134000000>; 168f126890aSEmmanuel Vadot opp-microvolt = <900000>; 169f126890aSEmmanuel Vadot }; 170f126890aSEmmanuel Vadot opp-160000000 { 171f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <160000000>; 172f126890aSEmmanuel Vadot opp-microvolt = <900000>; 173f126890aSEmmanuel Vadot }; 174f126890aSEmmanuel Vadot opp-267000000 { 175f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 176f126890aSEmmanuel Vadot opp-microvolt = <950000>; 177f126890aSEmmanuel Vadot }; 178f126890aSEmmanuel Vadot opp-400000000 { 179f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 180f126890aSEmmanuel Vadot opp-microvolt = <1050000>; 181f126890aSEmmanuel Vadot opp-suspend; 182f126890aSEmmanuel Vadot }; 183f126890aSEmmanuel Vadot }; 184f126890aSEmmanuel Vadot 185f126890aSEmmanuel Vadot bus_leftbus_opp_table: opp-table-2 { 186f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 187f126890aSEmmanuel Vadot 188f126890aSEmmanuel Vadot opp-100000000 { 189f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 190f126890aSEmmanuel Vadot opp-microvolt = <900000>; 191f126890aSEmmanuel Vadot }; 192f126890aSEmmanuel Vadot opp-134000000 { 193f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <134000000>; 194f126890aSEmmanuel Vadot opp-microvolt = <925000>; 195f126890aSEmmanuel Vadot }; 196f126890aSEmmanuel Vadot opp-160000000 { 197f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <160000000>; 198f126890aSEmmanuel Vadot opp-microvolt = <950000>; 199f126890aSEmmanuel Vadot }; 200f126890aSEmmanuel Vadot opp-200000000 { 201f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <200000000>; 202f126890aSEmmanuel Vadot opp-microvolt = <1000000>; 203f126890aSEmmanuel Vadot opp-suspend; 204f126890aSEmmanuel Vadot }; 205f126890aSEmmanuel Vadot }; 206f126890aSEmmanuel Vadot 207f126890aSEmmanuel Vadot soc: soc { 208f126890aSEmmanuel Vadot 209f126890aSEmmanuel Vadot pinctrl_0: pinctrl@11400000 { 210f126890aSEmmanuel Vadot compatible = "samsung,exynos4x12-pinctrl"; 211f126890aSEmmanuel Vadot reg = <0x11400000 0x1000>; 212f126890aSEmmanuel Vadot interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>; 213f126890aSEmmanuel Vadot }; 214f126890aSEmmanuel Vadot 215f126890aSEmmanuel Vadot pinctrl_1: pinctrl@11000000 { 216f126890aSEmmanuel Vadot compatible = "samsung,exynos4x12-pinctrl"; 217f126890aSEmmanuel Vadot reg = <0x11000000 0x1000>; 218f126890aSEmmanuel Vadot interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>; 219f126890aSEmmanuel Vadot 220f126890aSEmmanuel Vadot wakup_eint: wakeup-interrupt-controller { 221f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-wakeup-eint"; 222f126890aSEmmanuel Vadot interrupt-parent = <&gic>; 223f126890aSEmmanuel Vadot interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; 224f126890aSEmmanuel Vadot }; 225f126890aSEmmanuel Vadot }; 226f126890aSEmmanuel Vadot 227f126890aSEmmanuel Vadot pinctrl_2: pinctrl@3860000 { 228f126890aSEmmanuel Vadot compatible = "samsung,exynos4x12-pinctrl"; 229f126890aSEmmanuel Vadot reg = <0x03860000 0x1000>; 230f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 231f126890aSEmmanuel Vadot interrupts = <10 0>; 232f126890aSEmmanuel Vadot }; 233f126890aSEmmanuel Vadot 234f126890aSEmmanuel Vadot pinctrl_3: pinctrl@106e0000 { 235f126890aSEmmanuel Vadot compatible = "samsung,exynos4x12-pinctrl"; 236f126890aSEmmanuel Vadot reg = <0x106e0000 0x1000>; 237f126890aSEmmanuel Vadot interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; 238f126890aSEmmanuel Vadot }; 239f126890aSEmmanuel Vadot 240f126890aSEmmanuel Vadot sram@2020000 { 241f126890aSEmmanuel Vadot compatible = "mmio-sram"; 242f126890aSEmmanuel Vadot reg = <0x02020000 0x40000>; 243f126890aSEmmanuel Vadot #address-cells = <1>; 244f126890aSEmmanuel Vadot #size-cells = <1>; 245f126890aSEmmanuel Vadot ranges = <0 0x02020000 0x40000>; 246f126890aSEmmanuel Vadot 247f126890aSEmmanuel Vadot smp-sram@0 { 248f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-sysram"; 249f126890aSEmmanuel Vadot reg = <0x0 0x1000>; 250f126890aSEmmanuel Vadot }; 251f126890aSEmmanuel Vadot 252f126890aSEmmanuel Vadot smp-sram@2f000 { 253f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-sysram-ns"; 254f126890aSEmmanuel Vadot reg = <0x2f000 0x1000>; 255f126890aSEmmanuel Vadot }; 256f126890aSEmmanuel Vadot }; 257f126890aSEmmanuel Vadot 258f126890aSEmmanuel Vadot pd_isp: power-domain@10023ca0 { 259f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-pd"; 260f126890aSEmmanuel Vadot reg = <0x10023ca0 0x20>; 261f126890aSEmmanuel Vadot #power-domain-cells = <0>; 262f126890aSEmmanuel Vadot label = "ISP"; 263f126890aSEmmanuel Vadot }; 264f126890aSEmmanuel Vadot 265f126890aSEmmanuel Vadot l2c: cache-controller@10502000 { 266f126890aSEmmanuel Vadot compatible = "arm,pl310-cache"; 267f126890aSEmmanuel Vadot reg = <0x10502000 0x1000>; 268f126890aSEmmanuel Vadot cache-unified; 269f126890aSEmmanuel Vadot cache-level = <2>; 270f126890aSEmmanuel Vadot prefetch-data = <1>; 271f126890aSEmmanuel Vadot prefetch-instr = <1>; 272f126890aSEmmanuel Vadot arm,tag-latency = <2 2 1>; 273f126890aSEmmanuel Vadot arm,data-latency = <3 2 1>; 274f126890aSEmmanuel Vadot arm,double-linefill = <1>; 275f126890aSEmmanuel Vadot arm,double-linefill-incr = <0>; 276f126890aSEmmanuel Vadot arm,double-linefill-wrap = <1>; 277f126890aSEmmanuel Vadot arm,prefetch-drop = <1>; 278f126890aSEmmanuel Vadot arm,prefetch-offset = <7>; 279f126890aSEmmanuel Vadot }; 280f126890aSEmmanuel Vadot 281f126890aSEmmanuel Vadot clock: clock-controller@10030000 { 282f126890aSEmmanuel Vadot reg = <0x10030000 0x18000>; 283f126890aSEmmanuel Vadot #clock-cells = <1>; 284f126890aSEmmanuel Vadot }; 285f126890aSEmmanuel Vadot 286f126890aSEmmanuel Vadot isp_clock: clock-controller@10048000 { 287f126890aSEmmanuel Vadot compatible = "samsung,exynos4412-isp-clock"; 288f126890aSEmmanuel Vadot reg = <0x10048000 0x1000>; 289f126890aSEmmanuel Vadot #clock-cells = <1>; 290f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 291f126890aSEmmanuel Vadot clocks = <&clock CLK_ACLK200>, 292f126890aSEmmanuel Vadot <&clock CLK_ACLK400_MCUISP>; 293f126890aSEmmanuel Vadot clock-names = "aclk200", "aclk400_mcuisp"; 294f126890aSEmmanuel Vadot }; 295f126890aSEmmanuel Vadot 296f126890aSEmmanuel Vadot timer@10050000 { 297f126890aSEmmanuel Vadot compatible = "samsung,exynos4412-mct"; 298f126890aSEmmanuel Vadot reg = <0x10050000 0x800>; 299f126890aSEmmanuel Vadot clocks = <&clock CLK_FIN_PLL>, <&clock CLK_MCT>; 300f126890aSEmmanuel Vadot clock-names = "fin_pll", "mct"; 301f126890aSEmmanuel Vadot interrupts-extended = <&gic GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>, 302f126890aSEmmanuel Vadot <&combiner 12 5>, 303f126890aSEmmanuel Vadot <&combiner 12 6>, 304f126890aSEmmanuel Vadot <&combiner 12 7>, 305f126890aSEmmanuel Vadot <&gic GIC_PPI 12 IRQ_TYPE_LEVEL_HIGH>; 306f126890aSEmmanuel Vadot }; 307f126890aSEmmanuel Vadot 308f126890aSEmmanuel Vadot watchdog: watchdog@10060000 { 309f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-wdt"; 310f126890aSEmmanuel Vadot reg = <0x10060000 0x100>; 311f126890aSEmmanuel Vadot interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>; 312f126890aSEmmanuel Vadot clocks = <&clock CLK_WDT>; 313f126890aSEmmanuel Vadot clock-names = "watchdog"; 314f126890aSEmmanuel Vadot samsung,syscon-phandle = <&pmu_system_controller>; 315f126890aSEmmanuel Vadot }; 316f126890aSEmmanuel Vadot 317f126890aSEmmanuel Vadot adc: adc@126c0000 { 318f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-adc"; 319f126890aSEmmanuel Vadot reg = <0x126c0000 0x100>; 320f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 321f126890aSEmmanuel Vadot interrupts = <10 3>; 322f126890aSEmmanuel Vadot clocks = <&clock CLK_TSADC>; 323f126890aSEmmanuel Vadot clock-names = "adc"; 324f126890aSEmmanuel Vadot #io-channel-cells = <1>; 325f126890aSEmmanuel Vadot samsung,syscon-phandle = <&pmu_system_controller>; 326f126890aSEmmanuel Vadot status = "disabled"; 327f126890aSEmmanuel Vadot }; 328f126890aSEmmanuel Vadot 329f126890aSEmmanuel Vadot g2d: g2d@10800000 { 330f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-g2d"; 331f126890aSEmmanuel Vadot reg = <0x10800000 0x1000>; 332f126890aSEmmanuel Vadot interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>; 333f126890aSEmmanuel Vadot clocks = <&clock CLK_SCLK_FIMG2D>, <&clock CLK_G2D>; 334f126890aSEmmanuel Vadot clock-names = "sclk_fimg2d", "fimg2d"; 335f126890aSEmmanuel Vadot iommus = <&sysmmu_g2d>; 336f126890aSEmmanuel Vadot }; 337f126890aSEmmanuel Vadot 338f126890aSEmmanuel Vadot mshc_0: mmc@12550000 { 339f126890aSEmmanuel Vadot compatible = "samsung,exynos4412-dw-mshc"; 340f126890aSEmmanuel Vadot reg = <0x12550000 0x1000>; 341f126890aSEmmanuel Vadot interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>; 342f126890aSEmmanuel Vadot #address-cells = <1>; 343f126890aSEmmanuel Vadot #size-cells = <0>; 344f126890aSEmmanuel Vadot fifo-depth = <0x80>; 345f126890aSEmmanuel Vadot clocks = <&clock CLK_SDMMC4>, <&clock CLK_SCLK_MMC4>; 346f126890aSEmmanuel Vadot clock-names = "biu", "ciu"; 347f126890aSEmmanuel Vadot status = "disabled"; 348f126890aSEmmanuel Vadot }; 349f126890aSEmmanuel Vadot 350f126890aSEmmanuel Vadot sysmmu_g2d: sysmmu@10a40000 { 351f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 352f126890aSEmmanuel Vadot reg = <0x10a40000 0x1000>; 353f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 354f126890aSEmmanuel Vadot interrupts = <4 7>; 355f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 356f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_G2D>, <&clock CLK_G2D>; 357f126890aSEmmanuel Vadot #iommu-cells = <0>; 358f126890aSEmmanuel Vadot }; 359f126890aSEmmanuel Vadot 360f126890aSEmmanuel Vadot sysmmu_fimc_isp: sysmmu@12260000 { 361f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 362f126890aSEmmanuel Vadot reg = <0x12260000 0x1000>; 363f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 364f126890aSEmmanuel Vadot interrupts = <16 2>; 365f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 366f126890aSEmmanuel Vadot clock-names = "sysmmu"; 367f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_SMMU_ISP>; 368f126890aSEmmanuel Vadot #iommu-cells = <0>; 369f126890aSEmmanuel Vadot }; 370f126890aSEmmanuel Vadot 371f126890aSEmmanuel Vadot sysmmu_fimc_drc: sysmmu@12270000 { 372f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 373f126890aSEmmanuel Vadot reg = <0x12270000 0x1000>; 374f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 375f126890aSEmmanuel Vadot interrupts = <16 3>; 376f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 377f126890aSEmmanuel Vadot clock-names = "sysmmu"; 378f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_SMMU_DRC>; 379f126890aSEmmanuel Vadot #iommu-cells = <0>; 380f126890aSEmmanuel Vadot }; 381f126890aSEmmanuel Vadot 382f126890aSEmmanuel Vadot sysmmu_fimc_fd: sysmmu@122a0000 { 383f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 384f126890aSEmmanuel Vadot reg = <0x122a0000 0x1000>; 385f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 386f126890aSEmmanuel Vadot interrupts = <16 4>; 387f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 388f126890aSEmmanuel Vadot clock-names = "sysmmu"; 389f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_SMMU_FD>; 390f126890aSEmmanuel Vadot #iommu-cells = <0>; 391f126890aSEmmanuel Vadot }; 392f126890aSEmmanuel Vadot 393f126890aSEmmanuel Vadot sysmmu_fimc_mcuctl: sysmmu@122b0000 { 394f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 395f126890aSEmmanuel Vadot reg = <0x122b0000 0x1000>; 396f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 397f126890aSEmmanuel Vadot interrupts = <16 5>; 398f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 399f126890aSEmmanuel Vadot clock-names = "sysmmu"; 400f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_SMMU_ISPCX>; 401f126890aSEmmanuel Vadot #iommu-cells = <0>; 402f126890aSEmmanuel Vadot }; 403f126890aSEmmanuel Vadot 404f126890aSEmmanuel Vadot sysmmu_fimc_lite0: sysmmu@123b0000 { 405f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 406f126890aSEmmanuel Vadot reg = <0x123b0000 0x1000>; 407f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 408f126890aSEmmanuel Vadot interrupts = <16 0>; 409f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 410f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 411f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_SMMU_LITE0>, 412f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_FIMC_LITE0>; 413f126890aSEmmanuel Vadot #iommu-cells = <0>; 414f126890aSEmmanuel Vadot }; 415f126890aSEmmanuel Vadot 416f126890aSEmmanuel Vadot sysmmu_fimc_lite1: sysmmu@123c0000 { 417f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 418f126890aSEmmanuel Vadot reg = <0x123c0000 0x1000>; 419f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 420f126890aSEmmanuel Vadot interrupts = <16 1>; 421f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 422f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 423f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_SMMU_LITE1>, 424f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_FIMC_LITE1>; 425f126890aSEmmanuel Vadot #iommu-cells = <0>; 426f126890aSEmmanuel Vadot }; 427f126890aSEmmanuel Vadot }; 428f126890aSEmmanuel Vadot}; 429f126890aSEmmanuel Vadot 430f126890aSEmmanuel Vadot&combiner { 431f126890aSEmmanuel Vadot interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>, 432f126890aSEmmanuel Vadot <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>, 433f126890aSEmmanuel Vadot <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>, 434f126890aSEmmanuel Vadot <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>, 435f126890aSEmmanuel Vadot <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>, 436f126890aSEmmanuel Vadot <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH>, 437f126890aSEmmanuel Vadot <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>, 438f126890aSEmmanuel Vadot <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>, 439f126890aSEmmanuel Vadot <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>, 440f126890aSEmmanuel Vadot <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>, 441f126890aSEmmanuel Vadot <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>, 442f126890aSEmmanuel Vadot <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>, 443f126890aSEmmanuel Vadot <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>, 444f126890aSEmmanuel Vadot <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>, 445f126890aSEmmanuel Vadot <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>, 446f126890aSEmmanuel Vadot <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>, 447f126890aSEmmanuel Vadot <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>, 448f126890aSEmmanuel Vadot <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>, 449f126890aSEmmanuel Vadot <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>, 450f126890aSEmmanuel Vadot <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>; 451f126890aSEmmanuel Vadot}; 452f126890aSEmmanuel Vadot 453f126890aSEmmanuel Vadot&camera { 454*8d13bc63SEmmanuel Vadot ranges = <0x0 0x11800000 0xba1000>; 455f126890aSEmmanuel Vadot clocks = <&clock CLK_SCLK_CAM0>, <&clock CLK_SCLK_CAM1>, 456f126890aSEmmanuel Vadot <&clock CLK_PIXELASYNCM0>, <&clock CLK_PIXELASYNCM1>; 457f126890aSEmmanuel Vadot clock-names = "sclk_cam0", "sclk_cam1", "pxl_async0", "pxl_async1"; 458f126890aSEmmanuel Vadot 459f126890aSEmmanuel Vadot /* fimc_[0-3] are configured outside, under phandles */ 460*8d13bc63SEmmanuel Vadot fimc_lite_0: fimc-lite@b90000 { 461f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-fimc-lite"; 462*8d13bc63SEmmanuel Vadot reg = <0x00b90000 0x1000>; 463f126890aSEmmanuel Vadot interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>; 464f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 465f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_FIMC_LITE0>; 466f126890aSEmmanuel Vadot clock-names = "flite"; 467f126890aSEmmanuel Vadot iommus = <&sysmmu_fimc_lite0>; 468f126890aSEmmanuel Vadot status = "disabled"; 469f126890aSEmmanuel Vadot }; 470f126890aSEmmanuel Vadot 471*8d13bc63SEmmanuel Vadot fimc_lite_1: fimc-lite@ba0000 { 472f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-fimc-lite"; 473*8d13bc63SEmmanuel Vadot reg = <0x00ba0000 0x1000>; 474f126890aSEmmanuel Vadot interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>; 475f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 476f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_FIMC_LITE1>; 477f126890aSEmmanuel Vadot clock-names = "flite"; 478f126890aSEmmanuel Vadot iommus = <&sysmmu_fimc_lite1>; 479f126890aSEmmanuel Vadot status = "disabled"; 480f126890aSEmmanuel Vadot }; 481f126890aSEmmanuel Vadot 482*8d13bc63SEmmanuel Vadot fimc_is: fimc-is@800000 { 483f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-fimc-is"; 484*8d13bc63SEmmanuel Vadot reg = <0x00800000 0x260000>; 485f126890aSEmmanuel Vadot interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>, 486f126890aSEmmanuel Vadot <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>; 487f126890aSEmmanuel Vadot power-domains = <&pd_isp>; 488f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_FIMC_LITE0>, 489f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_FIMC_LITE1>, 490f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_PPMUISPX>, 491f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_PPMUISPMX>, 492f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_FIMC_ISP>, 493f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_FIMC_DRC>, 494f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_FIMC_FD>, 495f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_MCUISP>, 496f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_GICISP>, 497f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_MCUCTL_ISP>, 498f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_PWM_ISP>, 499f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_DIV_ISP0>, 500f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_DIV_ISP1>, 501f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_DIV_MCUISP0>, 502f126890aSEmmanuel Vadot <&isp_clock CLK_ISP_DIV_MCUISP1>, 503f126890aSEmmanuel Vadot <&clock CLK_MOUT_MPLL_USER_T>, 504f126890aSEmmanuel Vadot <&clock CLK_ACLK200>, 505f126890aSEmmanuel Vadot <&clock CLK_ACLK400_MCUISP>, 506f126890aSEmmanuel Vadot <&clock CLK_DIV_ACLK200>, 507f126890aSEmmanuel Vadot <&clock CLK_DIV_ACLK400_MCUISP>, 508f126890aSEmmanuel Vadot <&clock CLK_UART_ISP_SCLK>; 509f126890aSEmmanuel Vadot clock-names = "lite0", "lite1", "ppmuispx", 510f126890aSEmmanuel Vadot "ppmuispmx", "isp", 511f126890aSEmmanuel Vadot "drc", "fd", "mcuisp", 512f126890aSEmmanuel Vadot "gicisp", "mcuctl_isp", "pwm_isp", 513f126890aSEmmanuel Vadot "ispdiv0", "ispdiv1", "mcuispdiv0", 514f126890aSEmmanuel Vadot "mcuispdiv1", "mpll", "aclk200", 515f126890aSEmmanuel Vadot "aclk400mcuisp", "div_aclk200", 516f126890aSEmmanuel Vadot "div_aclk400mcuisp", "uart"; 517f126890aSEmmanuel Vadot iommus = <&sysmmu_fimc_isp>, <&sysmmu_fimc_drc>, 518f126890aSEmmanuel Vadot <&sysmmu_fimc_fd>, <&sysmmu_fimc_mcuctl>; 519f126890aSEmmanuel Vadot iommu-names = "isp", "drc", "fd", "mcuctl"; 520*8d13bc63SEmmanuel Vadot samsung,pmu-syscon = <&pmu_system_controller>; 521f126890aSEmmanuel Vadot #address-cells = <1>; 522f126890aSEmmanuel Vadot #size-cells = <1>; 523f126890aSEmmanuel Vadot ranges; 524f126890aSEmmanuel Vadot status = "disabled"; 525f126890aSEmmanuel Vadot 526*8d13bc63SEmmanuel Vadot i2c1_isp: i2c-isp@940000 { 527f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-i2c-isp"; 528*8d13bc63SEmmanuel Vadot reg = <0x00940000 0x100>; 529f126890aSEmmanuel Vadot clocks = <&isp_clock CLK_ISP_I2C1_ISP>; 530f126890aSEmmanuel Vadot clock-names = "i2c_isp"; 531f126890aSEmmanuel Vadot #address-cells = <1>; 532f126890aSEmmanuel Vadot #size-cells = <0>; 533f126890aSEmmanuel Vadot }; 534f126890aSEmmanuel Vadot }; 535f126890aSEmmanuel Vadot}; 536f126890aSEmmanuel Vadot 537f126890aSEmmanuel Vadot&exynos_usbphy { 538f126890aSEmmanuel Vadot compatible = "samsung,exynos4x12-usb2-phy"; 539f126890aSEmmanuel Vadot samsung,sysreg-phandle = <&sys_reg>; 540f126890aSEmmanuel Vadot}; 541f126890aSEmmanuel Vadot 542f126890aSEmmanuel Vadot&fimc_0 { 543f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-fimc"; 544f126890aSEmmanuel Vadot samsung,pix-limits = <4224 8192 1920 4224>; 545f126890aSEmmanuel Vadot samsung,mainscaler-ext; 546f126890aSEmmanuel Vadot samsung,isp-wb; 547f126890aSEmmanuel Vadot samsung,cam-if; 548f126890aSEmmanuel Vadot}; 549f126890aSEmmanuel Vadot 550f126890aSEmmanuel Vadot&fimc_1 { 551f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-fimc"; 552f126890aSEmmanuel Vadot samsung,pix-limits = <4224 8192 1920 4224>; 553f126890aSEmmanuel Vadot samsung,mainscaler-ext; 554f126890aSEmmanuel Vadot samsung,isp-wb; 555f126890aSEmmanuel Vadot samsung,cam-if; 556f126890aSEmmanuel Vadot}; 557f126890aSEmmanuel Vadot 558f126890aSEmmanuel Vadot&fimc_2 { 559f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-fimc"; 560f126890aSEmmanuel Vadot samsung,pix-limits = <4224 8192 1920 4224>; 561f126890aSEmmanuel Vadot samsung,mainscaler-ext; 562f126890aSEmmanuel Vadot samsung,isp-wb; 563f126890aSEmmanuel Vadot samsung,lcd-wb; 564f126890aSEmmanuel Vadot samsung,cam-if; 565f126890aSEmmanuel Vadot}; 566f126890aSEmmanuel Vadot 567f126890aSEmmanuel Vadot&fimc_3 { 568f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-fimc"; 569f126890aSEmmanuel Vadot samsung,pix-limits = <1920 8192 1366 1920>; 570f126890aSEmmanuel Vadot samsung,rotators = <0>; 571f126890aSEmmanuel Vadot samsung,mainscaler-ext; 572f126890aSEmmanuel Vadot samsung,isp-wb; 573f126890aSEmmanuel Vadot samsung,lcd-wb; 574f126890aSEmmanuel Vadot}; 575f126890aSEmmanuel Vadot 576f126890aSEmmanuel Vadot&gpu { 577f126890aSEmmanuel Vadot interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>, 578f126890aSEmmanuel Vadot <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>, 579f126890aSEmmanuel Vadot <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, 580f126890aSEmmanuel Vadot <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>, 581f126890aSEmmanuel Vadot <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>, 582f126890aSEmmanuel Vadot <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>, 583f126890aSEmmanuel Vadot <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>, 584f126890aSEmmanuel Vadot <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>, 585f126890aSEmmanuel Vadot <GIC_SPI 126 IRQ_TYPE_LEVEL_HIGH>, 586f126890aSEmmanuel Vadot <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>, 587f126890aSEmmanuel Vadot <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>; 588f126890aSEmmanuel Vadot interrupt-names = "gp", 589f126890aSEmmanuel Vadot "gpmmu", 590f126890aSEmmanuel Vadot "pp0", 591f126890aSEmmanuel Vadot "ppmmu0", 592f126890aSEmmanuel Vadot "pp1", 593f126890aSEmmanuel Vadot "ppmmu1", 594f126890aSEmmanuel Vadot "pp2", 595f126890aSEmmanuel Vadot "ppmmu2", 596f126890aSEmmanuel Vadot "pp3", 597f126890aSEmmanuel Vadot "ppmmu3", 598f126890aSEmmanuel Vadot "pmu"; 599f126890aSEmmanuel Vadot operating-points-v2 = <&gpu_opp_table>; 600f126890aSEmmanuel Vadot 601f126890aSEmmanuel Vadot gpu_opp_table: opp-table { 602f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 603f126890aSEmmanuel Vadot 604f126890aSEmmanuel Vadot opp-160000000 { 605f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <160000000>; 606f126890aSEmmanuel Vadot opp-microvolt = <875000>; 607f126890aSEmmanuel Vadot }; 608f126890aSEmmanuel Vadot opp-267000000 { 609f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <267000000>; 610f126890aSEmmanuel Vadot opp-microvolt = <900000>; 611f126890aSEmmanuel Vadot }; 612f126890aSEmmanuel Vadot opp-350000000 { 613f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <350000000>; 614f126890aSEmmanuel Vadot opp-microvolt = <950000>; 615f126890aSEmmanuel Vadot }; 616f126890aSEmmanuel Vadot opp-440000000 { 617f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <440000000>; 618f126890aSEmmanuel Vadot opp-microvolt = <1025000>; 619f126890aSEmmanuel Vadot }; 620f126890aSEmmanuel Vadot }; 621f126890aSEmmanuel Vadot}; 622f126890aSEmmanuel Vadot 623f126890aSEmmanuel Vadot&hdmi { 624f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-hdmi"; 625f126890aSEmmanuel Vadot}; 626f126890aSEmmanuel Vadot 627f126890aSEmmanuel Vadot&jpeg_codec { 628f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-jpeg"; 629f126890aSEmmanuel Vadot}; 630f126890aSEmmanuel Vadot 631f126890aSEmmanuel Vadot&rotator { 632f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-rotator"; 633f126890aSEmmanuel Vadot}; 634f126890aSEmmanuel Vadot 635f126890aSEmmanuel Vadot&mixer { 636f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-mixer"; 637f126890aSEmmanuel Vadot clock-names = "mixer", "hdmi", "sclk_hdmi", "vp"; 638f126890aSEmmanuel Vadot clocks = <&clock CLK_MIXER>, <&clock CLK_HDMI>, 639f126890aSEmmanuel Vadot <&clock CLK_SCLK_HDMI>, <&clock CLK_VP>; 640f126890aSEmmanuel Vadot interconnects = <&bus_display &bus_dmc>; 641f126890aSEmmanuel Vadot}; 642f126890aSEmmanuel Vadot 643f126890aSEmmanuel Vadot&pmu_system_controller { 644f126890aSEmmanuel Vadot clock-names = "clkout0", "clkout1", "clkout2", "clkout3", 645f126890aSEmmanuel Vadot "clkout4", "clkout8", "clkout9"; 646f126890aSEmmanuel Vadot clocks = <&clock CLK_OUT_DMC>, <&clock CLK_OUT_TOP>, 647f126890aSEmmanuel Vadot <&clock CLK_OUT_LEFTBUS>, <&clock CLK_OUT_RIGHTBUS>, 648f126890aSEmmanuel Vadot <&clock CLK_OUT_CPU>, <&clock CLK_XXTI>, <&clock CLK_XUSBXTI>; 649f126890aSEmmanuel Vadot #clock-cells = <1>; 650f126890aSEmmanuel Vadot}; 651f126890aSEmmanuel Vadot 652f126890aSEmmanuel Vadot&tmu { 653f126890aSEmmanuel Vadot compatible = "samsung,exynos4412-tmu"; 654f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 655f126890aSEmmanuel Vadot interrupts = <2 4>; 656f126890aSEmmanuel Vadot reg = <0x100c0000 0x100>; 657f126890aSEmmanuel Vadot clocks = <&clock CLK_TMU_APBIF>; 658f126890aSEmmanuel Vadot clock-names = "tmu_apbif"; 659f126890aSEmmanuel Vadot status = "disabled"; 660f126890aSEmmanuel Vadot}; 661f126890aSEmmanuel Vadot 662f126890aSEmmanuel Vadot#include "exynos4x12-pinctrl.dtsi" 663