1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2f126890aSEmmanuel Vadot/* 3f126890aSEmmanuel Vadot * Samsung Exynos5250 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 Exynos5250 SoC device nodes are listed in this file. 9f126890aSEmmanuel Vadot * Exynos5250 based board files can include this file and provide 10f126890aSEmmanuel Vadot * values for board specific bindings. 11f126890aSEmmanuel Vadot * 12f126890aSEmmanuel Vadot * Note: This file does not include device nodes for all the controllers in 13f126890aSEmmanuel Vadot * Exynos5250 SoC. As device tree coverage for Exynos5250 increases, 14f126890aSEmmanuel Vadot * additional nodes can be added to this file. 15f126890aSEmmanuel Vadot */ 16f126890aSEmmanuel Vadot 17f126890aSEmmanuel Vadot#include <dt-bindings/clock/exynos5250.h> 18f126890aSEmmanuel Vadot#include "exynos5.dtsi" 19f126890aSEmmanuel Vadot#include "exynos4-cpu-thermal.dtsi" 20f126890aSEmmanuel Vadot#include <dt-bindings/clock/exynos-audss-clk.h> 21f126890aSEmmanuel Vadot 22f126890aSEmmanuel Vadot/ { 23f126890aSEmmanuel Vadot compatible = "samsung,exynos5250", "samsung,exynos5"; 24f126890aSEmmanuel Vadot 25f126890aSEmmanuel Vadot aliases { 26f126890aSEmmanuel Vadot spi0 = &spi_0; 27f126890aSEmmanuel Vadot spi1 = &spi_1; 28f126890aSEmmanuel Vadot spi2 = &spi_2; 29f126890aSEmmanuel Vadot gsc0 = &gsc_0; 30f126890aSEmmanuel Vadot gsc1 = &gsc_1; 31f126890aSEmmanuel Vadot gsc2 = &gsc_2; 32f126890aSEmmanuel Vadot gsc3 = &gsc_3; 33f126890aSEmmanuel Vadot i2c4 = &i2c_4; 34f126890aSEmmanuel Vadot i2c5 = &i2c_5; 35f126890aSEmmanuel Vadot i2c6 = &i2c_6; 36f126890aSEmmanuel Vadot i2c7 = &i2c_7; 37f126890aSEmmanuel Vadot i2c8 = &i2c_8; 38f126890aSEmmanuel Vadot i2c9 = &i2c_9; 39f126890aSEmmanuel Vadot pinctrl0 = &pinctrl_0; 40f126890aSEmmanuel Vadot pinctrl1 = &pinctrl_1; 41f126890aSEmmanuel Vadot pinctrl2 = &pinctrl_2; 42f126890aSEmmanuel Vadot pinctrl3 = &pinctrl_3; 43f126890aSEmmanuel Vadot }; 44f126890aSEmmanuel Vadot 45f126890aSEmmanuel Vadot cpus { 46f126890aSEmmanuel Vadot #address-cells = <1>; 47f126890aSEmmanuel Vadot #size-cells = <0>; 48f126890aSEmmanuel Vadot 49f126890aSEmmanuel Vadot cpu-map { 50f126890aSEmmanuel Vadot cluster0 { 51f126890aSEmmanuel Vadot core0 { 52f126890aSEmmanuel Vadot cpu = <&cpu0>; 53f126890aSEmmanuel Vadot }; 54f126890aSEmmanuel Vadot core1 { 55f126890aSEmmanuel Vadot cpu = <&cpu1>; 56f126890aSEmmanuel Vadot }; 57f126890aSEmmanuel Vadot }; 58f126890aSEmmanuel Vadot }; 59f126890aSEmmanuel Vadot 60f126890aSEmmanuel Vadot cpu0: cpu@0 { 61f126890aSEmmanuel Vadot device_type = "cpu"; 62f126890aSEmmanuel Vadot compatible = "arm,cortex-a15"; 63f126890aSEmmanuel Vadot reg = <0>; 64f126890aSEmmanuel Vadot clocks = <&clock CLK_ARM_CLK>; 65f126890aSEmmanuel Vadot clock-names = "cpu"; 66f126890aSEmmanuel Vadot operating-points-v2 = <&cpu0_opp_table>; 67f126890aSEmmanuel Vadot #cooling-cells = <2>; /* min followed by max */ 68f126890aSEmmanuel Vadot }; 69f126890aSEmmanuel Vadot cpu1: cpu@1 { 70f126890aSEmmanuel Vadot device_type = "cpu"; 71f126890aSEmmanuel Vadot compatible = "arm,cortex-a15"; 72f126890aSEmmanuel Vadot reg = <1>; 73f126890aSEmmanuel Vadot clocks = <&clock CLK_ARM_CLK>; 74f126890aSEmmanuel Vadot clock-names = "cpu"; 75f126890aSEmmanuel Vadot operating-points-v2 = <&cpu0_opp_table>; 76f126890aSEmmanuel Vadot #cooling-cells = <2>; /* min followed by max */ 77f126890aSEmmanuel Vadot }; 78f126890aSEmmanuel Vadot }; 79f126890aSEmmanuel Vadot 80f126890aSEmmanuel Vadot cpu0_opp_table: opp-table-0 { 81f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 82f126890aSEmmanuel Vadot opp-shared; 83f126890aSEmmanuel Vadot 84f126890aSEmmanuel Vadot opp-200000000 { 85f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <200000000>; 86f126890aSEmmanuel Vadot opp-microvolt = <925000>; 87f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 88f126890aSEmmanuel Vadot }; 89f126890aSEmmanuel Vadot opp-300000000 { 90f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <300000000>; 91f126890aSEmmanuel Vadot opp-microvolt = <937500>; 92f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 93f126890aSEmmanuel Vadot }; 94f126890aSEmmanuel Vadot opp-400000000 { 95f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 96f126890aSEmmanuel Vadot opp-microvolt = <950000>; 97f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 98f126890aSEmmanuel Vadot }; 99f126890aSEmmanuel Vadot opp-500000000 { 100f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <500000000>; 101f126890aSEmmanuel Vadot opp-microvolt = <975000>; 102f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 103f126890aSEmmanuel Vadot }; 104f126890aSEmmanuel Vadot opp-600000000 { 105f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <600000000>; 106f126890aSEmmanuel Vadot opp-microvolt = <1000000>; 107f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 108f126890aSEmmanuel Vadot }; 109f126890aSEmmanuel Vadot opp-700000000 { 110f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <700000000>; 111f126890aSEmmanuel Vadot opp-microvolt = <1012500>; 112f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 113f126890aSEmmanuel Vadot }; 114f126890aSEmmanuel Vadot opp-800000000 { 115f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <800000000>; 116f126890aSEmmanuel Vadot opp-microvolt = <1025000>; 117f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 118f126890aSEmmanuel Vadot }; 119f126890aSEmmanuel Vadot opp-900000000 { 120f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <900000000>; 121f126890aSEmmanuel Vadot opp-microvolt = <1050000>; 122f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 123f126890aSEmmanuel Vadot }; 124f126890aSEmmanuel Vadot opp-1000000000 { 125f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1000000000>; 126f126890aSEmmanuel Vadot opp-microvolt = <1075000>; 127f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 128f126890aSEmmanuel Vadot opp-suspend; 129f126890aSEmmanuel Vadot }; 130f126890aSEmmanuel Vadot opp-1100000000 { 131f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1100000000>; 132f126890aSEmmanuel Vadot opp-microvolt = <1100000>; 133f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 134f126890aSEmmanuel Vadot }; 135f126890aSEmmanuel Vadot opp-1200000000 { 136f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1200000000>; 137f126890aSEmmanuel Vadot opp-microvolt = <1125000>; 138f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 139f126890aSEmmanuel Vadot }; 140f126890aSEmmanuel Vadot opp-1300000000 { 141f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1300000000>; 142f126890aSEmmanuel Vadot opp-microvolt = <1150000>; 143f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 144f126890aSEmmanuel Vadot }; 145f126890aSEmmanuel Vadot opp-1400000000 { 146f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1400000000>; 147f126890aSEmmanuel Vadot opp-microvolt = <1200000>; 148f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 149f126890aSEmmanuel Vadot }; 150f126890aSEmmanuel Vadot opp-1500000000 { 151f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1500000000>; 152f126890aSEmmanuel Vadot opp-microvolt = <1225000>; 153f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 154f126890aSEmmanuel Vadot }; 155f126890aSEmmanuel Vadot opp-1600000000 { 156f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1600000000>; 157f126890aSEmmanuel Vadot opp-microvolt = <1250000>; 158f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 159f126890aSEmmanuel Vadot }; 160f126890aSEmmanuel Vadot opp-1700000000 { 161f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <1700000000>; 162f126890aSEmmanuel Vadot opp-microvolt = <1300000>; 163f126890aSEmmanuel Vadot clock-latency-ns = <140000>; 164f126890aSEmmanuel Vadot }; 165f126890aSEmmanuel Vadot }; 166f126890aSEmmanuel Vadot 167f126890aSEmmanuel Vadot pmu { 168f126890aSEmmanuel Vadot compatible = "arm,cortex-a15-pmu"; 169f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 170f126890aSEmmanuel Vadot interrupts = <1 2>, <22 4>; 171f126890aSEmmanuel Vadot }; 172f126890aSEmmanuel Vadot 173f126890aSEmmanuel Vadot soc: soc { 174f126890aSEmmanuel Vadot sram@2020000 { 175f126890aSEmmanuel Vadot compatible = "mmio-sram"; 176f126890aSEmmanuel Vadot reg = <0x02020000 0x30000>; 177f126890aSEmmanuel Vadot #address-cells = <1>; 178f126890aSEmmanuel Vadot #size-cells = <1>; 179f126890aSEmmanuel Vadot ranges = <0 0x02020000 0x30000>; 180f126890aSEmmanuel Vadot 181f126890aSEmmanuel Vadot smp-sram@0 { 182f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-sysram"; 183f126890aSEmmanuel Vadot reg = <0x0 0x1000>; 184f126890aSEmmanuel Vadot }; 185f126890aSEmmanuel Vadot 186f126890aSEmmanuel Vadot smp-sram@2f000 { 187f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-sysram-ns"; 188f126890aSEmmanuel Vadot reg = <0x2f000 0x1000>; 189f126890aSEmmanuel Vadot }; 190f126890aSEmmanuel Vadot }; 191f126890aSEmmanuel Vadot 192f126890aSEmmanuel Vadot pd_gsc: power-domain@10044000 { 193f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-pd"; 194f126890aSEmmanuel Vadot reg = <0x10044000 0x20>; 195f126890aSEmmanuel Vadot #power-domain-cells = <0>; 196f126890aSEmmanuel Vadot label = "GSC"; 197f126890aSEmmanuel Vadot }; 198f126890aSEmmanuel Vadot 199f126890aSEmmanuel Vadot pd_mfc: power-domain@10044040 { 200f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-pd"; 201f126890aSEmmanuel Vadot reg = <0x10044040 0x20>; 202f126890aSEmmanuel Vadot #power-domain-cells = <0>; 203f126890aSEmmanuel Vadot label = "MFC"; 204f126890aSEmmanuel Vadot }; 205f126890aSEmmanuel Vadot 206f126890aSEmmanuel Vadot pd_g3d: power-domain@10044060 { 207f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-pd"; 208f126890aSEmmanuel Vadot reg = <0x10044060 0x20>; 209f126890aSEmmanuel Vadot #power-domain-cells = <0>; 210f126890aSEmmanuel Vadot label = "G3D"; 211f126890aSEmmanuel Vadot }; 212f126890aSEmmanuel Vadot 213f126890aSEmmanuel Vadot pd_disp1: power-domain@100440a0 { 214f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-pd"; 215f126890aSEmmanuel Vadot reg = <0x100440a0 0x20>; 216f126890aSEmmanuel Vadot #power-domain-cells = <0>; 217f126890aSEmmanuel Vadot label = "DISP1"; 218f126890aSEmmanuel Vadot }; 219f126890aSEmmanuel Vadot 220f126890aSEmmanuel Vadot pd_mau: power-domain@100440c0 { 221f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-pd"; 222f126890aSEmmanuel Vadot reg = <0x100440c0 0x20>; 223f126890aSEmmanuel Vadot #power-domain-cells = <0>; 224f126890aSEmmanuel Vadot label = "MAU"; 225f126890aSEmmanuel Vadot }; 226f126890aSEmmanuel Vadot 227f126890aSEmmanuel Vadot clock: clock-controller@10010000 { 228f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-clock"; 229f126890aSEmmanuel Vadot reg = <0x10010000 0x30000>; 230f126890aSEmmanuel Vadot #clock-cells = <1>; 231f126890aSEmmanuel Vadot }; 232f126890aSEmmanuel Vadot 233f126890aSEmmanuel Vadot clock_audss: audss-clock-controller@3810000 { 234f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-audss-clock"; 235f126890aSEmmanuel Vadot reg = <0x03810000 0x0c>; 236f126890aSEmmanuel Vadot #clock-cells = <1>; 237f126890aSEmmanuel Vadot clocks = <&clock CLK_FIN_PLL>, <&clock CLK_FOUT_EPLL>, 238f126890aSEmmanuel Vadot <&clock CLK_SCLK_AUDIO0>, <&clock CLK_DIV_PCM0>; 239f126890aSEmmanuel Vadot clock-names = "pll_ref", "pll_in", "sclk_audio", "sclk_pcm_in"; 240f126890aSEmmanuel Vadot power-domains = <&pd_mau>; 241f126890aSEmmanuel Vadot }; 242f126890aSEmmanuel Vadot 243f126890aSEmmanuel Vadot timer@101c0000 { 244f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-mct", 245f126890aSEmmanuel Vadot "samsung,exynos4210-mct"; 246f126890aSEmmanuel Vadot reg = <0x101c0000 0x800>; 247f126890aSEmmanuel Vadot clocks = <&clock CLK_FIN_PLL>, <&clock CLK_MCT>; 248f126890aSEmmanuel Vadot clock-names = "fin_pll", "mct"; 249f126890aSEmmanuel Vadot interrupts-extended = <&combiner 23 3>, 250f126890aSEmmanuel Vadot <&combiner 23 4>, 251f126890aSEmmanuel Vadot <&combiner 25 2>, 252f126890aSEmmanuel Vadot <&combiner 25 3>, 253f126890aSEmmanuel Vadot <&gic GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>, 254f126890aSEmmanuel Vadot <&gic GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>; 255f126890aSEmmanuel Vadot }; 256f126890aSEmmanuel Vadot 257f126890aSEmmanuel Vadot pinctrl_0: pinctrl@11400000 { 258f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-pinctrl"; 259f126890aSEmmanuel Vadot reg = <0x11400000 0x1000>; 260f126890aSEmmanuel Vadot interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>; 261f126890aSEmmanuel Vadot 262f126890aSEmmanuel Vadot wakup_eint: wakeup-interrupt-controller { 263f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-wakeup-eint"; 264f126890aSEmmanuel Vadot interrupt-parent = <&gic>; 265f126890aSEmmanuel Vadot interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>; 266f126890aSEmmanuel Vadot }; 267f126890aSEmmanuel Vadot }; 268f126890aSEmmanuel Vadot 269f126890aSEmmanuel Vadot pinctrl_1: pinctrl@13400000 { 270f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-pinctrl"; 271f126890aSEmmanuel Vadot reg = <0x13400000 0x1000>; 272f126890aSEmmanuel Vadot interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>; 273f126890aSEmmanuel Vadot }; 274f126890aSEmmanuel Vadot 275f126890aSEmmanuel Vadot pinctrl_2: pinctrl@10d10000 { 276f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-pinctrl"; 277f126890aSEmmanuel Vadot reg = <0x10d10000 0x1000>; 278f126890aSEmmanuel Vadot interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>; 279f126890aSEmmanuel Vadot }; 280f126890aSEmmanuel Vadot 281f126890aSEmmanuel Vadot pinctrl_3: pinctrl@3860000 { 282f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-pinctrl"; 283f126890aSEmmanuel Vadot reg = <0x03860000 0x1000>; 284f126890aSEmmanuel Vadot interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>; 285f126890aSEmmanuel Vadot power-domains = <&pd_mau>; 286f126890aSEmmanuel Vadot }; 287f126890aSEmmanuel Vadot 288f126890aSEmmanuel Vadot pmu_system_controller: system-controller@10040000 { 289f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-pmu", "simple-mfd", "syscon"; 290f126890aSEmmanuel Vadot reg = <0x10040000 0x5000>; 291f126890aSEmmanuel Vadot clock-names = "clkout16"; 292f126890aSEmmanuel Vadot clocks = <&clock CLK_FIN_PLL>; 293f126890aSEmmanuel Vadot #clock-cells = <1>; 294f126890aSEmmanuel Vadot interrupt-controller; 295f126890aSEmmanuel Vadot #interrupt-cells = <3>; 296f126890aSEmmanuel Vadot interrupt-parent = <&gic>; 297f126890aSEmmanuel Vadot 298f126890aSEmmanuel Vadot dp_phy: dp-phy { 299f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-dp-video-phy"; 300f126890aSEmmanuel Vadot #phy-cells = <0>; 301f126890aSEmmanuel Vadot }; 302f126890aSEmmanuel Vadot 303f126890aSEmmanuel Vadot mipi_phy: mipi-phy { 304f126890aSEmmanuel Vadot compatible = "samsung,s5pv210-mipi-video-phy"; 305f126890aSEmmanuel Vadot #phy-cells = <1>; 306f126890aSEmmanuel Vadot }; 307f126890aSEmmanuel Vadot }; 308f126890aSEmmanuel Vadot 309f126890aSEmmanuel Vadot watchdog@101d0000 { 310f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-wdt"; 311f126890aSEmmanuel Vadot reg = <0x101d0000 0x100>; 312f126890aSEmmanuel Vadot interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>; 313f126890aSEmmanuel Vadot clocks = <&clock CLK_WDT>; 314f126890aSEmmanuel Vadot clock-names = "watchdog"; 315f126890aSEmmanuel Vadot samsung,syscon-phandle = <&pmu_system_controller>; 316f126890aSEmmanuel Vadot }; 317f126890aSEmmanuel Vadot 318f126890aSEmmanuel Vadot mfc: codec@11000000 { 319f126890aSEmmanuel Vadot compatible = "samsung,mfc-v6"; 320f126890aSEmmanuel Vadot reg = <0x11000000 0x10000>; 321f126890aSEmmanuel Vadot interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>; 322f126890aSEmmanuel Vadot power-domains = <&pd_mfc>; 323f126890aSEmmanuel Vadot clocks = <&clock CLK_MFC>; 324f126890aSEmmanuel Vadot clock-names = "mfc"; 325f126890aSEmmanuel Vadot iommus = <&sysmmu_mfc_l>, <&sysmmu_mfc_r>; 326f126890aSEmmanuel Vadot iommu-names = "left", "right"; 327f126890aSEmmanuel Vadot }; 328f126890aSEmmanuel Vadot 329f126890aSEmmanuel Vadot rotator: rotator@11c00000 { 330f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-rotator"; 331f126890aSEmmanuel Vadot reg = <0x11c00000 0x64>; 332f126890aSEmmanuel Vadot interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>; 333f126890aSEmmanuel Vadot clocks = <&clock CLK_ROTATOR>; 334f126890aSEmmanuel Vadot clock-names = "rotator"; 335f126890aSEmmanuel Vadot iommus = <&sysmmu_rotator>; 336f126890aSEmmanuel Vadot }; 337f126890aSEmmanuel Vadot 338f126890aSEmmanuel Vadot mali: gpu@11800000 { 339f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-mali", "arm,mali-t604"; 340f126890aSEmmanuel Vadot reg = <0x11800000 0x5000>; 341f126890aSEmmanuel Vadot interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>, 342f126890aSEmmanuel Vadot <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>, 343f126890aSEmmanuel Vadot <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>; 344f126890aSEmmanuel Vadot interrupt-names = "job", "mmu", "gpu"; 345f126890aSEmmanuel Vadot clocks = <&clock CLK_G3D>; 346f126890aSEmmanuel Vadot clock-names = "core"; 347f126890aSEmmanuel Vadot operating-points-v2 = <&gpu_opp_table>; 348f126890aSEmmanuel Vadot power-domains = <&pd_g3d>; 349f126890aSEmmanuel Vadot status = "disabled"; 350f126890aSEmmanuel Vadot 351f126890aSEmmanuel Vadot gpu_opp_table: opp-table { 352f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 353f126890aSEmmanuel Vadot 354f126890aSEmmanuel Vadot opp-100000000 { 355f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <100000000>; 356f126890aSEmmanuel Vadot opp-microvolt = <925000>; 357f126890aSEmmanuel Vadot }; 358f126890aSEmmanuel Vadot opp-160000000 { 359f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <160000000>; 360f126890aSEmmanuel Vadot opp-microvolt = <925000>; 361f126890aSEmmanuel Vadot }; 362f126890aSEmmanuel Vadot opp-266000000 { 363f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <266000000>; 364f126890aSEmmanuel Vadot opp-microvolt = <1025000>; 365f126890aSEmmanuel Vadot }; 366f126890aSEmmanuel Vadot opp-350000000 { 367f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <350000000>; 368f126890aSEmmanuel Vadot opp-microvolt = <1075000>; 369f126890aSEmmanuel Vadot }; 370f126890aSEmmanuel Vadot opp-400000000 { 371f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <400000000>; 372f126890aSEmmanuel Vadot opp-microvolt = <1125000>; 373f126890aSEmmanuel Vadot }; 374f126890aSEmmanuel Vadot opp-450000000 { 375f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <450000000>; 376f126890aSEmmanuel Vadot opp-microvolt = <1150000>; 377f126890aSEmmanuel Vadot }; 378f126890aSEmmanuel Vadot opp-533000000 { 379f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <533000000>; 380f126890aSEmmanuel Vadot opp-microvolt = <1250000>; 381f126890aSEmmanuel Vadot }; 382f126890aSEmmanuel Vadot }; 383f126890aSEmmanuel Vadot }; 384f126890aSEmmanuel Vadot 385f126890aSEmmanuel Vadot tmu: tmu@10060000 { 386f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-tmu"; 387f126890aSEmmanuel Vadot reg = <0x10060000 0x100>; 388f126890aSEmmanuel Vadot interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>; 389f126890aSEmmanuel Vadot clocks = <&clock CLK_TMU>; 390f126890aSEmmanuel Vadot clock-names = "tmu_apbif"; 391f126890aSEmmanuel Vadot #thermal-sensor-cells = <0>; 392f126890aSEmmanuel Vadot }; 393f126890aSEmmanuel Vadot 394f126890aSEmmanuel Vadot sata: sata@122f0000 { 395f126890aSEmmanuel Vadot compatible = "snps,dwc-ahci"; 396f126890aSEmmanuel Vadot reg = <0x122f0000 0x1ff>; 397f126890aSEmmanuel Vadot interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>; 398f126890aSEmmanuel Vadot clocks = <&clock CLK_SATA>, <&clock CLK_SCLK_SATA>; 399f126890aSEmmanuel Vadot clock-names = "sata", "pclk"; 400f126890aSEmmanuel Vadot phys = <&sata_phy>; 401f126890aSEmmanuel Vadot phy-names = "sata-phy"; 402f126890aSEmmanuel Vadot ports-implemented = <0x1>; 403f126890aSEmmanuel Vadot status = "disabled"; 404f126890aSEmmanuel Vadot }; 405f126890aSEmmanuel Vadot 406f126890aSEmmanuel Vadot sata_phy: sata-phy@12170000 { 407f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-sata-phy"; 408f126890aSEmmanuel Vadot reg = <0x12170000 0x1ff>; 409f126890aSEmmanuel Vadot clocks = <&clock CLK_SATA_PHYCTRL>; 410f126890aSEmmanuel Vadot clock-names = "sata_phyctrl"; 411f126890aSEmmanuel Vadot #phy-cells = <0>; 412f126890aSEmmanuel Vadot samsung,syscon-phandle = <&pmu_system_controller>; 413f126890aSEmmanuel Vadot status = "disabled"; 414f126890aSEmmanuel Vadot }; 415f126890aSEmmanuel Vadot 416f126890aSEmmanuel Vadot /* i2c_0-3 are defined in exynos5.dtsi */ 417f126890aSEmmanuel Vadot i2c_4: i2c@12ca0000 { 418f126890aSEmmanuel Vadot compatible = "samsung,s3c2440-i2c"; 419f126890aSEmmanuel Vadot reg = <0x12ca0000 0x100>; 420f126890aSEmmanuel Vadot interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>; 421f126890aSEmmanuel Vadot #address-cells = <1>; 422f126890aSEmmanuel Vadot #size-cells = <0>; 423f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C4>; 424f126890aSEmmanuel Vadot clock-names = "i2c"; 425f126890aSEmmanuel Vadot pinctrl-names = "default"; 426f126890aSEmmanuel Vadot pinctrl-0 = <&i2c4_bus>; 427f126890aSEmmanuel Vadot status = "disabled"; 428f126890aSEmmanuel Vadot }; 429f126890aSEmmanuel Vadot 430f126890aSEmmanuel Vadot i2c_5: i2c@12cb0000 { 431f126890aSEmmanuel Vadot compatible = "samsung,s3c2440-i2c"; 432f126890aSEmmanuel Vadot reg = <0x12cb0000 0x100>; 433f126890aSEmmanuel Vadot interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>; 434f126890aSEmmanuel Vadot #address-cells = <1>; 435f126890aSEmmanuel Vadot #size-cells = <0>; 436f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C5>; 437f126890aSEmmanuel Vadot clock-names = "i2c"; 438f126890aSEmmanuel Vadot pinctrl-names = "default"; 439f126890aSEmmanuel Vadot pinctrl-0 = <&i2c5_bus>; 440f126890aSEmmanuel Vadot status = "disabled"; 441f126890aSEmmanuel Vadot }; 442f126890aSEmmanuel Vadot 443f126890aSEmmanuel Vadot i2c_6: i2c@12cc0000 { 444f126890aSEmmanuel Vadot compatible = "samsung,s3c2440-i2c"; 445f126890aSEmmanuel Vadot reg = <0x12cc0000 0x100>; 446f126890aSEmmanuel Vadot interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>; 447f126890aSEmmanuel Vadot #address-cells = <1>; 448f126890aSEmmanuel Vadot #size-cells = <0>; 449f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C6>; 450f126890aSEmmanuel Vadot clock-names = "i2c"; 451f126890aSEmmanuel Vadot pinctrl-names = "default"; 452f126890aSEmmanuel Vadot pinctrl-0 = <&i2c6_bus>; 453f126890aSEmmanuel Vadot status = "disabled"; 454f126890aSEmmanuel Vadot }; 455f126890aSEmmanuel Vadot 456f126890aSEmmanuel Vadot i2c_7: i2c@12cd0000 { 457f126890aSEmmanuel Vadot compatible = "samsung,s3c2440-i2c"; 458f126890aSEmmanuel Vadot reg = <0x12cd0000 0x100>; 459f126890aSEmmanuel Vadot interrupts = <GIC_SPI 63 IRQ_TYPE_LEVEL_HIGH>; 460f126890aSEmmanuel Vadot #address-cells = <1>; 461f126890aSEmmanuel Vadot #size-cells = <0>; 462f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C7>; 463f126890aSEmmanuel Vadot clock-names = "i2c"; 464f126890aSEmmanuel Vadot pinctrl-names = "default"; 465f126890aSEmmanuel Vadot pinctrl-0 = <&i2c7_bus>; 466f126890aSEmmanuel Vadot status = "disabled"; 467f126890aSEmmanuel Vadot }; 468f126890aSEmmanuel Vadot 469f126890aSEmmanuel Vadot i2c_8: i2c@12ce0000 { 470f126890aSEmmanuel Vadot compatible = "samsung,s3c2440-hdmiphy-i2c"; 471f126890aSEmmanuel Vadot reg = <0x12ce0000 0x1000>; 472f126890aSEmmanuel Vadot interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>; 473f126890aSEmmanuel Vadot #address-cells = <1>; 474f126890aSEmmanuel Vadot #size-cells = <0>; 475f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C_HDMI>; 476f126890aSEmmanuel Vadot clock-names = "i2c"; 477f126890aSEmmanuel Vadot status = "disabled"; 478f126890aSEmmanuel Vadot 479f126890aSEmmanuel Vadot hdmiphy: hdmi-phy@38 { 480f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-hdmiphy"; 481f126890aSEmmanuel Vadot reg = <0x38>; 482f126890aSEmmanuel Vadot }; 483f126890aSEmmanuel Vadot }; 484f126890aSEmmanuel Vadot 485f126890aSEmmanuel Vadot i2c_9: i2c@121d0000 { 486f126890aSEmmanuel Vadot compatible = "samsung,exynos5-sata-phy-i2c"; 487f126890aSEmmanuel Vadot reg = <0x121d0000 0x100>; 488f126890aSEmmanuel Vadot #address-cells = <1>; 489f126890aSEmmanuel Vadot #size-cells = <0>; 490f126890aSEmmanuel Vadot clocks = <&clock CLK_SATA_PHYI2C>; 491f126890aSEmmanuel Vadot clock-names = "i2c"; 492f126890aSEmmanuel Vadot status = "disabled"; 493f126890aSEmmanuel Vadot 494f126890aSEmmanuel Vadot sata_phy_i2c: sata-phy-i2c@38 { 495f126890aSEmmanuel Vadot compatible = "samsung,exynos-sataphy-i2c"; 496f126890aSEmmanuel Vadot reg = <0x38>; 497f126890aSEmmanuel Vadot status = "disabled"; 498f126890aSEmmanuel Vadot }; 499f126890aSEmmanuel Vadot }; 500f126890aSEmmanuel Vadot 501f126890aSEmmanuel Vadot spi_0: spi@12d20000 { 502f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-spi"; 503f126890aSEmmanuel Vadot status = "disabled"; 504f126890aSEmmanuel Vadot reg = <0x12d20000 0x100>; 505f126890aSEmmanuel Vadot interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>; 506f126890aSEmmanuel Vadot dmas = <&pdma0 5>, <&pdma0 4>; 507f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 508f126890aSEmmanuel Vadot #address-cells = <1>; 509f126890aSEmmanuel Vadot #size-cells = <0>; 510f126890aSEmmanuel Vadot clocks = <&clock CLK_SPI0>, <&clock CLK_SCLK_SPI0>; 511f126890aSEmmanuel Vadot clock-names = "spi", "spi_busclk0"; 512f126890aSEmmanuel Vadot pinctrl-names = "default"; 513f126890aSEmmanuel Vadot pinctrl-0 = <&spi0_bus>; 514*7d0873ebSEmmanuel Vadot fifo-depth = <256>; 515f126890aSEmmanuel Vadot }; 516f126890aSEmmanuel Vadot 517f126890aSEmmanuel Vadot spi_1: spi@12d30000 { 518f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-spi"; 519f126890aSEmmanuel Vadot status = "disabled"; 520f126890aSEmmanuel Vadot reg = <0x12d30000 0x100>; 521f126890aSEmmanuel Vadot interrupts = <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>; 522f126890aSEmmanuel Vadot dmas = <&pdma1 5>, <&pdma1 4>; 523f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 524f126890aSEmmanuel Vadot #address-cells = <1>; 525f126890aSEmmanuel Vadot #size-cells = <0>; 526f126890aSEmmanuel Vadot clocks = <&clock CLK_SPI1>, <&clock CLK_SCLK_SPI1>; 527f126890aSEmmanuel Vadot clock-names = "spi", "spi_busclk0"; 528f126890aSEmmanuel Vadot pinctrl-names = "default"; 529f126890aSEmmanuel Vadot pinctrl-0 = <&spi1_bus>; 530*7d0873ebSEmmanuel Vadot fifo-depth = <64>; 531f126890aSEmmanuel Vadot }; 532f126890aSEmmanuel Vadot 533f126890aSEmmanuel Vadot spi_2: spi@12d40000 { 534f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-spi"; 535f126890aSEmmanuel Vadot status = "disabled"; 536f126890aSEmmanuel Vadot reg = <0x12d40000 0x100>; 537f126890aSEmmanuel Vadot interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>; 538f126890aSEmmanuel Vadot dmas = <&pdma0 7>, <&pdma0 6>; 539f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 540f126890aSEmmanuel Vadot #address-cells = <1>; 541f126890aSEmmanuel Vadot #size-cells = <0>; 542f126890aSEmmanuel Vadot clocks = <&clock CLK_SPI2>, <&clock CLK_SCLK_SPI2>; 543f126890aSEmmanuel Vadot clock-names = "spi", "spi_busclk0"; 544f126890aSEmmanuel Vadot pinctrl-names = "default"; 545f126890aSEmmanuel Vadot pinctrl-0 = <&spi2_bus>; 546*7d0873ebSEmmanuel Vadot fifo-depth = <64>; 547f126890aSEmmanuel Vadot }; 548f126890aSEmmanuel Vadot 549f126890aSEmmanuel Vadot mmc_0: mmc@12200000 { 550f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-dw-mshc"; 551f126890aSEmmanuel Vadot interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>; 552f126890aSEmmanuel Vadot #address-cells = <1>; 553f126890aSEmmanuel Vadot #size-cells = <0>; 554f126890aSEmmanuel Vadot reg = <0x12200000 0x1000>; 555f126890aSEmmanuel Vadot clocks = <&clock CLK_SDMMC0>, <&clock CLK_SCLK_MMC0>; 556f126890aSEmmanuel Vadot clock-names = "biu", "ciu"; 557f126890aSEmmanuel Vadot fifo-depth = <0x80>; 558f126890aSEmmanuel Vadot status = "disabled"; 559f126890aSEmmanuel Vadot }; 560f126890aSEmmanuel Vadot 561f126890aSEmmanuel Vadot mmc_1: mmc@12210000 { 562f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-dw-mshc"; 563f126890aSEmmanuel Vadot interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>; 564f126890aSEmmanuel Vadot #address-cells = <1>; 565f126890aSEmmanuel Vadot #size-cells = <0>; 566f126890aSEmmanuel Vadot reg = <0x12210000 0x1000>; 567f126890aSEmmanuel Vadot clocks = <&clock CLK_SDMMC1>, <&clock CLK_SCLK_MMC1>; 568f126890aSEmmanuel Vadot clock-names = "biu", "ciu"; 569f126890aSEmmanuel Vadot fifo-depth = <0x80>; 570f126890aSEmmanuel Vadot status = "disabled"; 571f126890aSEmmanuel Vadot }; 572f126890aSEmmanuel Vadot 573f126890aSEmmanuel Vadot mmc_2: mmc@12220000 { 574f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-dw-mshc"; 575f126890aSEmmanuel Vadot interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>; 576f126890aSEmmanuel Vadot #address-cells = <1>; 577f126890aSEmmanuel Vadot #size-cells = <0>; 578f126890aSEmmanuel Vadot reg = <0x12220000 0x1000>; 579f126890aSEmmanuel Vadot clocks = <&clock CLK_SDMMC2>, <&clock CLK_SCLK_MMC2>; 580f126890aSEmmanuel Vadot clock-names = "biu", "ciu"; 581f126890aSEmmanuel Vadot fifo-depth = <0x80>; 582f126890aSEmmanuel Vadot status = "disabled"; 583f126890aSEmmanuel Vadot }; 584f126890aSEmmanuel Vadot 585f126890aSEmmanuel Vadot mmc_3: mmc@12230000 { 586f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-dw-mshc"; 587f126890aSEmmanuel Vadot reg = <0x12230000 0x1000>; 588f126890aSEmmanuel Vadot interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>; 589f126890aSEmmanuel Vadot #address-cells = <1>; 590f126890aSEmmanuel Vadot #size-cells = <0>; 591f126890aSEmmanuel Vadot clocks = <&clock CLK_SDMMC3>, <&clock CLK_SCLK_MMC3>; 592f126890aSEmmanuel Vadot clock-names = "biu", "ciu"; 593f126890aSEmmanuel Vadot fifo-depth = <0x80>; 594f126890aSEmmanuel Vadot status = "disabled"; 595f126890aSEmmanuel Vadot }; 596f126890aSEmmanuel Vadot 597f126890aSEmmanuel Vadot i2s0: i2s@3830000 { 598f126890aSEmmanuel Vadot compatible = "samsung,s5pv210-i2s"; 599f126890aSEmmanuel Vadot status = "disabled"; 600f126890aSEmmanuel Vadot reg = <0x03830000 0x100>; 601f126890aSEmmanuel Vadot dmas = <&pdma0 10>, 602f126890aSEmmanuel Vadot <&pdma0 9>, 603f126890aSEmmanuel Vadot <&pdma0 8>; 604f126890aSEmmanuel Vadot dma-names = "tx", "rx", "tx-sec"; 605f126890aSEmmanuel Vadot clocks = <&clock_audss EXYNOS_I2S_BUS>, 606f126890aSEmmanuel Vadot <&clock_audss EXYNOS_I2S_BUS>, 607f126890aSEmmanuel Vadot <&clock_audss EXYNOS_SCLK_I2S>; 608f126890aSEmmanuel Vadot clock-names = "iis", "i2s_opclk0", "i2s_opclk1"; 609f126890aSEmmanuel Vadot samsung,idma-addr = <0x03000000>; 610f126890aSEmmanuel Vadot pinctrl-names = "default"; 611f126890aSEmmanuel Vadot pinctrl-0 = <&i2s0_bus>; 612f126890aSEmmanuel Vadot power-domains = <&pd_mau>; 613f126890aSEmmanuel Vadot #clock-cells = <1>; 614f126890aSEmmanuel Vadot #sound-dai-cells = <1>; 615f126890aSEmmanuel Vadot }; 616f126890aSEmmanuel Vadot 617f126890aSEmmanuel Vadot i2s1: i2s@12d60000 { 618f126890aSEmmanuel Vadot compatible = "samsung,s3c6410-i2s"; 619f126890aSEmmanuel Vadot status = "disabled"; 620f126890aSEmmanuel Vadot reg = <0x12d60000 0x100>; 621f126890aSEmmanuel Vadot dmas = <&pdma1 12>, 622f126890aSEmmanuel Vadot <&pdma1 11>; 623f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 624f126890aSEmmanuel Vadot clocks = <&clock CLK_I2S1>, <&clock CLK_DIV_I2S1>; 625f126890aSEmmanuel Vadot clock-names = "iis", "i2s_opclk0"; 626f126890aSEmmanuel Vadot pinctrl-names = "default"; 627f126890aSEmmanuel Vadot pinctrl-0 = <&i2s1_bus>; 628f126890aSEmmanuel Vadot power-domains = <&pd_mau>; 629f126890aSEmmanuel Vadot #sound-dai-cells = <1>; 630f126890aSEmmanuel Vadot }; 631f126890aSEmmanuel Vadot 632f126890aSEmmanuel Vadot i2s2: i2s@12d70000 { 633f126890aSEmmanuel Vadot compatible = "samsung,s3c6410-i2s"; 634f126890aSEmmanuel Vadot status = "disabled"; 635f126890aSEmmanuel Vadot reg = <0x12d70000 0x100>; 636f126890aSEmmanuel Vadot dmas = <&pdma0 12>, 637f126890aSEmmanuel Vadot <&pdma0 11>; 638f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 639f126890aSEmmanuel Vadot clocks = <&clock CLK_I2S2>, <&clock CLK_DIV_I2S2>; 640f126890aSEmmanuel Vadot clock-names = "iis", "i2s_opclk0"; 641f126890aSEmmanuel Vadot pinctrl-names = "default"; 642f126890aSEmmanuel Vadot pinctrl-0 = <&i2s2_bus>; 643f126890aSEmmanuel Vadot power-domains = <&pd_mau>; 644f126890aSEmmanuel Vadot #sound-dai-cells = <1>; 645f126890aSEmmanuel Vadot }; 646f126890aSEmmanuel Vadot 647f126890aSEmmanuel Vadot usbdrd: usb@12000000 { 648f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-dwusb3"; 649f126890aSEmmanuel Vadot clocks = <&clock CLK_USB3>; 650f126890aSEmmanuel Vadot clock-names = "usbdrd30"; 651f126890aSEmmanuel Vadot #address-cells = <1>; 652f126890aSEmmanuel Vadot #size-cells = <1>; 653f126890aSEmmanuel Vadot ranges = <0x0 0x12000000 0x10000>; 654f126890aSEmmanuel Vadot 655f126890aSEmmanuel Vadot usbdrd_dwc3: usb@0 { 656f126890aSEmmanuel Vadot compatible = "snps,dwc3"; 657f126890aSEmmanuel Vadot reg = <0x0 0x10000>; 658f126890aSEmmanuel Vadot interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; 659f126890aSEmmanuel Vadot phys = <&usbdrd_phy 0>, <&usbdrd_phy 1>; 660f126890aSEmmanuel Vadot phy-names = "usb2-phy", "usb3-phy"; 661f126890aSEmmanuel Vadot }; 662f126890aSEmmanuel Vadot }; 663f126890aSEmmanuel Vadot 664f126890aSEmmanuel Vadot usbdrd_phy: phy@12100000 { 665f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-usbdrd-phy"; 666f126890aSEmmanuel Vadot reg = <0x12100000 0x100>; 667f126890aSEmmanuel Vadot clocks = <&clock CLK_USB3>, <&clock CLK_FIN_PLL>; 668f126890aSEmmanuel Vadot clock-names = "phy", "ref"; 669f126890aSEmmanuel Vadot samsung,pmu-syscon = <&pmu_system_controller>; 670f126890aSEmmanuel Vadot #phy-cells = <1>; 671f126890aSEmmanuel Vadot }; 672f126890aSEmmanuel Vadot 673f126890aSEmmanuel Vadot ehci: usb@12110000 { 674f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-ehci"; 675f126890aSEmmanuel Vadot reg = <0x12110000 0x100>; 676f126890aSEmmanuel Vadot interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; 677f126890aSEmmanuel Vadot 678f126890aSEmmanuel Vadot clocks = <&clock CLK_USB2>; 679f126890aSEmmanuel Vadot clock-names = "usbhost"; 680f126890aSEmmanuel Vadot phys = <&usb2_phy_gen 1>; 681f126890aSEmmanuel Vadot phy-names = "host"; 682f126890aSEmmanuel Vadot }; 683f126890aSEmmanuel Vadot 684f126890aSEmmanuel Vadot ohci: usb@12120000 { 685f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-ohci"; 686f126890aSEmmanuel Vadot reg = <0x12120000 0x100>; 687f126890aSEmmanuel Vadot interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>; 688f126890aSEmmanuel Vadot 689f126890aSEmmanuel Vadot clocks = <&clock CLK_USB2>; 690f126890aSEmmanuel Vadot clock-names = "usbhost"; 691f126890aSEmmanuel Vadot phys = <&usb2_phy_gen 1>; 692f126890aSEmmanuel Vadot phy-names = "host"; 693f126890aSEmmanuel Vadot }; 694f126890aSEmmanuel Vadot 695f126890aSEmmanuel Vadot usb2_phy_gen: phy@12130000 { 696f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-usb2-phy"; 697f126890aSEmmanuel Vadot reg = <0x12130000 0x100>; 698f126890aSEmmanuel Vadot clocks = <&clock CLK_USB2>, <&clock CLK_FIN_PLL>; 699f126890aSEmmanuel Vadot clock-names = "phy", "ref"; 700f126890aSEmmanuel Vadot #phy-cells = <1>; 701f126890aSEmmanuel Vadot samsung,sysreg-phandle = <&sysreg_system_controller>; 702f126890aSEmmanuel Vadot samsung,pmureg-phandle = <&pmu_system_controller>; 703f126890aSEmmanuel Vadot }; 704f126890aSEmmanuel Vadot 705f126890aSEmmanuel Vadot pdma0: dma-controller@121a0000 { 706f126890aSEmmanuel Vadot compatible = "arm,pl330", "arm,primecell"; 707f126890aSEmmanuel Vadot reg = <0x121a0000 0x1000>; 708f126890aSEmmanuel Vadot interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>; 709f126890aSEmmanuel Vadot clocks = <&clock CLK_PDMA0>; 710f126890aSEmmanuel Vadot clock-names = "apb_pclk"; 711f126890aSEmmanuel Vadot #dma-cells = <1>; 712f126890aSEmmanuel Vadot }; 713f126890aSEmmanuel Vadot 714f126890aSEmmanuel Vadot pdma1: dma-controller@121b0000 { 715f126890aSEmmanuel Vadot compatible = "arm,pl330", "arm,primecell"; 716f126890aSEmmanuel Vadot reg = <0x121b0000 0x1000>; 717f126890aSEmmanuel Vadot interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>; 718f126890aSEmmanuel Vadot clocks = <&clock CLK_PDMA1>; 719f126890aSEmmanuel Vadot clock-names = "apb_pclk"; 720f126890aSEmmanuel Vadot #dma-cells = <1>; 721f126890aSEmmanuel Vadot }; 722f126890aSEmmanuel Vadot 723f126890aSEmmanuel Vadot mdma0: dma-controller@10800000 { 724f126890aSEmmanuel Vadot compatible = "arm,pl330", "arm,primecell"; 725f126890aSEmmanuel Vadot reg = <0x10800000 0x1000>; 726f126890aSEmmanuel Vadot interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; 727f126890aSEmmanuel Vadot clocks = <&clock CLK_MDMA0>; 728f126890aSEmmanuel Vadot clock-names = "apb_pclk"; 729f126890aSEmmanuel Vadot #dma-cells = <1>; 730f126890aSEmmanuel Vadot }; 731f126890aSEmmanuel Vadot 732f126890aSEmmanuel Vadot mdma1: dma-controller@11c10000 { 733f126890aSEmmanuel Vadot compatible = "arm,pl330", "arm,primecell"; 734f126890aSEmmanuel Vadot reg = <0x11c10000 0x1000>; 735f126890aSEmmanuel Vadot interrupts = <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>; 736f126890aSEmmanuel Vadot clocks = <&clock CLK_MDMA1>; 737f126890aSEmmanuel Vadot clock-names = "apb_pclk"; 738f126890aSEmmanuel Vadot #dma-cells = <1>; 739f126890aSEmmanuel Vadot }; 740f126890aSEmmanuel Vadot 741f126890aSEmmanuel Vadot gsc_0: gsc@13e00000 { 742f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-gsc", "samsung,exynos5-gsc"; 743f126890aSEmmanuel Vadot reg = <0x13e00000 0x1000>; 744f126890aSEmmanuel Vadot interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>; 745f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 746f126890aSEmmanuel Vadot clocks = <&clock CLK_GSCL0>; 747f126890aSEmmanuel Vadot clock-names = "gscl"; 748f126890aSEmmanuel Vadot iommus = <&sysmmu_gsc0>; 749f126890aSEmmanuel Vadot }; 750f126890aSEmmanuel Vadot 751f126890aSEmmanuel Vadot gsc_1: gsc@13e10000 { 752f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-gsc", "samsung,exynos5-gsc"; 753f126890aSEmmanuel Vadot reg = <0x13e10000 0x1000>; 754f126890aSEmmanuel Vadot interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>; 755f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 756f126890aSEmmanuel Vadot clocks = <&clock CLK_GSCL1>; 757f126890aSEmmanuel Vadot clock-names = "gscl"; 758f126890aSEmmanuel Vadot iommus = <&sysmmu_gsc1>; 759f126890aSEmmanuel Vadot }; 760f126890aSEmmanuel Vadot 761f126890aSEmmanuel Vadot gsc_2: gsc@13e20000 { 762f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-gsc", "samsung,exynos5-gsc"; 763f126890aSEmmanuel Vadot reg = <0x13e20000 0x1000>; 764f126890aSEmmanuel Vadot interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>; 765f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 766f126890aSEmmanuel Vadot clocks = <&clock CLK_GSCL2>; 767f126890aSEmmanuel Vadot clock-names = "gscl"; 768f126890aSEmmanuel Vadot iommus = <&sysmmu_gsc2>; 769f126890aSEmmanuel Vadot }; 770f126890aSEmmanuel Vadot 771f126890aSEmmanuel Vadot gsc_3: gsc@13e30000 { 772f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-gsc", "samsung,exynos5-gsc"; 773f126890aSEmmanuel Vadot reg = <0x13e30000 0x1000>; 774f126890aSEmmanuel Vadot interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>; 775f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 776f126890aSEmmanuel Vadot clocks = <&clock CLK_GSCL3>; 777f126890aSEmmanuel Vadot clock-names = "gscl"; 778f126890aSEmmanuel Vadot iommus = <&sysmmu_gsc3>; 779f126890aSEmmanuel Vadot }; 780f126890aSEmmanuel Vadot 781f126890aSEmmanuel Vadot hdmi: hdmi@14530000 { 782f126890aSEmmanuel Vadot compatible = "samsung,exynos4212-hdmi"; 783f126890aSEmmanuel Vadot reg = <0x14530000 0x70000>; 784f126890aSEmmanuel Vadot power-domains = <&pd_disp1>; 785f126890aSEmmanuel Vadot interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>; 786f126890aSEmmanuel Vadot clocks = <&clock CLK_HDMI>, <&clock CLK_SCLK_HDMI>, 787f126890aSEmmanuel Vadot <&clock CLK_SCLK_PIXEL>, <&clock CLK_SCLK_HDMIPHY>, 788f126890aSEmmanuel Vadot <&clock CLK_MOUT_HDMI>; 789f126890aSEmmanuel Vadot clock-names = "hdmi", "sclk_hdmi", "sclk_pixel", 790f126890aSEmmanuel Vadot "sclk_hdmiphy", "mout_hdmi"; 791f126890aSEmmanuel Vadot samsung,syscon-phandle = <&pmu_system_controller>; 792f126890aSEmmanuel Vadot phy = <&hdmiphy>; 793f126890aSEmmanuel Vadot #sound-dai-cells = <0>; 794f126890aSEmmanuel Vadot status = "disabled"; 795f126890aSEmmanuel Vadot }; 796f126890aSEmmanuel Vadot 797f126890aSEmmanuel Vadot hdmicec: cec@101b0000 { 798f126890aSEmmanuel Vadot compatible = "samsung,s5p-cec"; 799f126890aSEmmanuel Vadot reg = <0x101b0000 0x200>; 800f126890aSEmmanuel Vadot interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>; 801f126890aSEmmanuel Vadot clocks = <&clock CLK_HDMI_CEC>; 802f126890aSEmmanuel Vadot clock-names = "hdmicec"; 803f126890aSEmmanuel Vadot samsung,syscon-phandle = <&pmu_system_controller>; 804f126890aSEmmanuel Vadot hdmi-phandle = <&hdmi>; 805f126890aSEmmanuel Vadot pinctrl-names = "default"; 806f126890aSEmmanuel Vadot pinctrl-0 = <&hdmi_cec>; 807f126890aSEmmanuel Vadot status = "disabled"; 808f126890aSEmmanuel Vadot }; 809f126890aSEmmanuel Vadot 810f126890aSEmmanuel Vadot mixer: mixer@14450000 { 811f126890aSEmmanuel Vadot compatible = "samsung,exynos5250-mixer"; 812f126890aSEmmanuel Vadot reg = <0x14450000 0x10000>; 813f126890aSEmmanuel Vadot power-domains = <&pd_disp1>; 814f126890aSEmmanuel Vadot interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>; 815f126890aSEmmanuel Vadot clocks = <&clock CLK_MIXER>, <&clock CLK_HDMI>, 816f126890aSEmmanuel Vadot <&clock CLK_SCLK_HDMI>; 817f126890aSEmmanuel Vadot clock-names = "mixer", "hdmi", "sclk_hdmi"; 818f126890aSEmmanuel Vadot iommus = <&sysmmu_tv>; 819f126890aSEmmanuel Vadot status = "disabled"; 820f126890aSEmmanuel Vadot }; 821f126890aSEmmanuel Vadot 822f126890aSEmmanuel Vadot dsi_0: dsi@14500000 { 823f126890aSEmmanuel Vadot compatible = "samsung,exynos4210-mipi-dsi"; 824f126890aSEmmanuel Vadot reg = <0x14500000 0x10000>; 825f126890aSEmmanuel Vadot interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>; 826f126890aSEmmanuel Vadot samsung,power-domain = <&pd_disp1>; 827f126890aSEmmanuel Vadot phys = <&mipi_phy 3>; 828f126890aSEmmanuel Vadot phy-names = "dsim"; 829f126890aSEmmanuel Vadot clocks = <&clock CLK_DSIM0>, <&clock CLK_SCLK_MIPI1>; 830f126890aSEmmanuel Vadot clock-names = "bus_clk", "sclk_mipi"; 831f126890aSEmmanuel Vadot status = "disabled"; 832f126890aSEmmanuel Vadot #address-cells = <1>; 833f126890aSEmmanuel Vadot #size-cells = <0>; 834f126890aSEmmanuel Vadot }; 835f126890aSEmmanuel Vadot 836f126890aSEmmanuel Vadot adc: adc@12d10000 { 837f126890aSEmmanuel Vadot compatible = "samsung,exynos-adc-v1"; 838f126890aSEmmanuel Vadot reg = <0x12d10000 0x100>; 839f126890aSEmmanuel Vadot interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>; 840f126890aSEmmanuel Vadot clocks = <&clock CLK_ADC>; 841f126890aSEmmanuel Vadot clock-names = "adc"; 842f126890aSEmmanuel Vadot #io-channel-cells = <1>; 843f126890aSEmmanuel Vadot samsung,syscon-phandle = <&pmu_system_controller>; 844f126890aSEmmanuel Vadot status = "disabled"; 845f126890aSEmmanuel Vadot }; 846f126890aSEmmanuel Vadot 847f126890aSEmmanuel Vadot sysmmu_g2d: sysmmu@10a60000 { 848f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 849f126890aSEmmanuel Vadot reg = <0x10a60000 0x1000>; 850f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 851f126890aSEmmanuel Vadot interrupts = <24 5>; 852f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 853f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_2D>, <&clock CLK_G2D>; 854f126890aSEmmanuel Vadot #iommu-cells = <0>; 855f126890aSEmmanuel Vadot }; 856f126890aSEmmanuel Vadot 857f126890aSEmmanuel Vadot sysmmu_mfc_r: sysmmu@11200000 { 858f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 859f126890aSEmmanuel Vadot reg = <0x11200000 0x1000>; 860f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 861f126890aSEmmanuel Vadot interrupts = <6 2>; 862f126890aSEmmanuel Vadot power-domains = <&pd_mfc>; 863f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 864f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_MFCR>, <&clock CLK_MFC>; 865f126890aSEmmanuel Vadot #iommu-cells = <0>; 866f126890aSEmmanuel Vadot }; 867f126890aSEmmanuel Vadot 868f126890aSEmmanuel Vadot sysmmu_mfc_l: sysmmu@11210000 { 869f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 870f126890aSEmmanuel Vadot reg = <0x11210000 0x1000>; 871f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 872f126890aSEmmanuel Vadot interrupts = <8 5>; 873f126890aSEmmanuel Vadot power-domains = <&pd_mfc>; 874f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 875f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_MFCL>, <&clock CLK_MFC>; 876f126890aSEmmanuel Vadot #iommu-cells = <0>; 877f126890aSEmmanuel Vadot }; 878f126890aSEmmanuel Vadot 879f126890aSEmmanuel Vadot sysmmu_rotator: sysmmu@11d40000 { 880f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 881f126890aSEmmanuel Vadot reg = <0x11d40000 0x1000>; 882f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 883f126890aSEmmanuel Vadot interrupts = <4 0>; 884f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 885f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_ROTATOR>, <&clock CLK_ROTATOR>; 886f126890aSEmmanuel Vadot #iommu-cells = <0>; 887f126890aSEmmanuel Vadot }; 888f126890aSEmmanuel Vadot 889f126890aSEmmanuel Vadot sysmmu_jpeg: sysmmu@11f20000 { 890f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 891f126890aSEmmanuel Vadot reg = <0x11f20000 0x1000>; 892f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 893f126890aSEmmanuel Vadot interrupts = <4 2>; 894f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 895f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 896f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_JPEG>, <&clock CLK_JPEG>; 897f126890aSEmmanuel Vadot #iommu-cells = <0>; 898f126890aSEmmanuel Vadot }; 899f126890aSEmmanuel Vadot 900f126890aSEmmanuel Vadot sysmmu_fimc_isp: sysmmu@13260000 { 901f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 902f126890aSEmmanuel Vadot reg = <0x13260000 0x1000>; 903f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 904f126890aSEmmanuel Vadot interrupts = <10 6>; 905f126890aSEmmanuel Vadot clock-names = "sysmmu"; 906f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_ISP>; 907f126890aSEmmanuel Vadot #iommu-cells = <0>; 908f126890aSEmmanuel Vadot }; 909f126890aSEmmanuel Vadot 910f126890aSEmmanuel Vadot sysmmu_fimc_drc: sysmmu@13270000 { 911f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 912f126890aSEmmanuel Vadot reg = <0x13270000 0x1000>; 913f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 914f126890aSEmmanuel Vadot interrupts = <11 6>; 915f126890aSEmmanuel Vadot clock-names = "sysmmu"; 916f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_DRC>; 917f126890aSEmmanuel Vadot #iommu-cells = <0>; 918f126890aSEmmanuel Vadot }; 919f126890aSEmmanuel Vadot 920f126890aSEmmanuel Vadot sysmmu_fimc_fd: sysmmu@132a0000 { 921f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 922f126890aSEmmanuel Vadot reg = <0x132a0000 0x1000>; 923f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 924f126890aSEmmanuel Vadot interrupts = <5 0>; 925f126890aSEmmanuel Vadot clock-names = "sysmmu"; 926f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_FD>; 927f126890aSEmmanuel Vadot #iommu-cells = <0>; 928f126890aSEmmanuel Vadot }; 929f126890aSEmmanuel Vadot 930f126890aSEmmanuel Vadot sysmmu_fimc_scc: sysmmu@13280000 { 931f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 932f126890aSEmmanuel Vadot reg = <0x13280000 0x1000>; 933f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 934f126890aSEmmanuel Vadot interrupts = <5 2>; 935f126890aSEmmanuel Vadot clock-names = "sysmmu"; 936f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_SCC>; 937f126890aSEmmanuel Vadot #iommu-cells = <0>; 938f126890aSEmmanuel Vadot }; 939f126890aSEmmanuel Vadot 940f126890aSEmmanuel Vadot sysmmu_fimc_scp: sysmmu@13290000 { 941f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 942f126890aSEmmanuel Vadot reg = <0x13290000 0x1000>; 943f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 944f126890aSEmmanuel Vadot interrupts = <3 6>; 945f126890aSEmmanuel Vadot clock-names = "sysmmu"; 946f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_SCP>; 947f126890aSEmmanuel Vadot #iommu-cells = <0>; 948f126890aSEmmanuel Vadot }; 949f126890aSEmmanuel Vadot 950f126890aSEmmanuel Vadot sysmmu_fimc_mcuctl: sysmmu@132b0000 { 951f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 952f126890aSEmmanuel Vadot reg = <0x132b0000 0x1000>; 953f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 954f126890aSEmmanuel Vadot interrupts = <5 4>; 955f126890aSEmmanuel Vadot clock-names = "sysmmu"; 956f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_MCU>; 957f126890aSEmmanuel Vadot #iommu-cells = <0>; 958f126890aSEmmanuel Vadot }; 959f126890aSEmmanuel Vadot 960f126890aSEmmanuel Vadot sysmmu_fimc_odc: sysmmu@132c0000 { 961f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 962f126890aSEmmanuel Vadot reg = <0x132c0000 0x1000>; 963f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 964f126890aSEmmanuel Vadot interrupts = <11 0>; 965f126890aSEmmanuel Vadot clock-names = "sysmmu"; 966f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_ODC>; 967f126890aSEmmanuel Vadot #iommu-cells = <0>; 968f126890aSEmmanuel Vadot }; 969f126890aSEmmanuel Vadot 970f126890aSEmmanuel Vadot sysmmu_fimc_dis0: sysmmu@132d0000 { 971f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 972f126890aSEmmanuel Vadot reg = <0x132d0000 0x1000>; 973f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 974f126890aSEmmanuel Vadot interrupts = <10 4>; 975f126890aSEmmanuel Vadot clock-names = "sysmmu"; 976f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_DIS0>; 977f126890aSEmmanuel Vadot #iommu-cells = <0>; 978f126890aSEmmanuel Vadot }; 979f126890aSEmmanuel Vadot 980f126890aSEmmanuel Vadot sysmmu_fimc_dis1: sysmmu@132e0000 { 981f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 982f126890aSEmmanuel Vadot reg = <0x132e0000 0x1000>; 983f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 984f126890aSEmmanuel Vadot interrupts = <9 4>; 985f126890aSEmmanuel Vadot clock-names = "sysmmu"; 986f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_DIS1>; 987f126890aSEmmanuel Vadot #iommu-cells = <0>; 988f126890aSEmmanuel Vadot }; 989f126890aSEmmanuel Vadot 990f126890aSEmmanuel Vadot sysmmu_fimc_3dnr: sysmmu@132f0000 { 991f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 992f126890aSEmmanuel Vadot reg = <0x132f0000 0x1000>; 993f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 994f126890aSEmmanuel Vadot interrupts = <5 6>; 995f126890aSEmmanuel Vadot clock-names = "sysmmu"; 996f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_3DNR>; 997f126890aSEmmanuel Vadot #iommu-cells = <0>; 998f126890aSEmmanuel Vadot }; 999f126890aSEmmanuel Vadot 1000f126890aSEmmanuel Vadot sysmmu_fimc_lite0: sysmmu@13c40000 { 1001f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1002f126890aSEmmanuel Vadot reg = <0x13c40000 0x1000>; 1003f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1004f126890aSEmmanuel Vadot interrupts = <3 4>; 1005f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 1006f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1007f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_LITE0>, <&clock CLK_CAMIF_TOP>; 1008f126890aSEmmanuel Vadot #iommu-cells = <0>; 1009f126890aSEmmanuel Vadot }; 1010f126890aSEmmanuel Vadot 1011f126890aSEmmanuel Vadot sysmmu_fimc_lite1: sysmmu@13c50000 { 1012f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1013f126890aSEmmanuel Vadot reg = <0x13c50000 0x1000>; 1014f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1015f126890aSEmmanuel Vadot interrupts = <24 1>; 1016f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 1017f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1018f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMC_LITE1>, <&clock CLK_CAMIF_TOP>; 1019f126890aSEmmanuel Vadot #iommu-cells = <0>; 1020f126890aSEmmanuel Vadot }; 1021f126890aSEmmanuel Vadot 1022f126890aSEmmanuel Vadot sysmmu_gsc0: sysmmu@13e80000 { 1023f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1024f126890aSEmmanuel Vadot reg = <0x13e80000 0x1000>; 1025f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1026f126890aSEmmanuel Vadot interrupts = <2 0>; 1027f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 1028f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1029f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_GSCL0>, <&clock CLK_GSCL0>; 1030f126890aSEmmanuel Vadot #iommu-cells = <0>; 1031f126890aSEmmanuel Vadot }; 1032f126890aSEmmanuel Vadot 1033f126890aSEmmanuel Vadot sysmmu_gsc1: sysmmu@13e90000 { 1034f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1035f126890aSEmmanuel Vadot reg = <0x13e90000 0x1000>; 1036f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1037f126890aSEmmanuel Vadot interrupts = <2 2>; 1038f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 1039f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1040f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_GSCL1>, <&clock CLK_GSCL1>; 1041f126890aSEmmanuel Vadot #iommu-cells = <0>; 1042f126890aSEmmanuel Vadot }; 1043f126890aSEmmanuel Vadot 1044f126890aSEmmanuel Vadot sysmmu_gsc2: sysmmu@13ea0000 { 1045f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1046f126890aSEmmanuel Vadot reg = <0x13ea0000 0x1000>; 1047f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1048f126890aSEmmanuel Vadot interrupts = <2 4>; 1049f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 1050f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1051f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_GSCL2>, <&clock CLK_GSCL2>; 1052f126890aSEmmanuel Vadot #iommu-cells = <0>; 1053f126890aSEmmanuel Vadot }; 1054f126890aSEmmanuel Vadot 1055f126890aSEmmanuel Vadot sysmmu_gsc3: sysmmu@13eb0000 { 1056f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1057f126890aSEmmanuel Vadot reg = <0x13eb0000 0x1000>; 1058f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1059f126890aSEmmanuel Vadot interrupts = <2 6>; 1060f126890aSEmmanuel Vadot power-domains = <&pd_gsc>; 1061f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1062f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_GSCL3>, <&clock CLK_GSCL3>; 1063f126890aSEmmanuel Vadot #iommu-cells = <0>; 1064f126890aSEmmanuel Vadot }; 1065f126890aSEmmanuel Vadot 1066f126890aSEmmanuel Vadot sysmmu_fimd1: sysmmu@14640000 { 1067f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1068f126890aSEmmanuel Vadot reg = <0x14640000 0x1000>; 1069f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1070f126890aSEmmanuel Vadot interrupts = <3 2>; 1071f126890aSEmmanuel Vadot power-domains = <&pd_disp1>; 1072f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1073f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_FIMD1>, <&clock CLK_FIMD1>; 1074f126890aSEmmanuel Vadot #iommu-cells = <0>; 1075f126890aSEmmanuel Vadot }; 1076f126890aSEmmanuel Vadot 1077f126890aSEmmanuel Vadot sysmmu_tv: sysmmu@14650000 { 1078f126890aSEmmanuel Vadot compatible = "samsung,exynos-sysmmu"; 1079f126890aSEmmanuel Vadot reg = <0x14650000 0x1000>; 1080f126890aSEmmanuel Vadot interrupt-parent = <&combiner>; 1081f126890aSEmmanuel Vadot interrupts = <7 4>; 1082f126890aSEmmanuel Vadot power-domains = <&pd_disp1>; 1083f126890aSEmmanuel Vadot clock-names = "sysmmu", "master"; 1084f126890aSEmmanuel Vadot clocks = <&clock CLK_SMMU_TV>, <&clock CLK_MIXER>; 1085f126890aSEmmanuel Vadot #iommu-cells = <0>; 1086f126890aSEmmanuel Vadot }; 1087f126890aSEmmanuel Vadot }; 1088f126890aSEmmanuel Vadot 1089f126890aSEmmanuel Vadot timer { 1090f126890aSEmmanuel Vadot compatible = "arm,armv7-timer"; 1091f126890aSEmmanuel Vadot interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 1092f126890aSEmmanuel Vadot <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 1093f126890aSEmmanuel Vadot <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>, 1094f126890aSEmmanuel Vadot <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>; 1095f126890aSEmmanuel Vadot /* 1096f126890aSEmmanuel Vadot * Unfortunately we need this since some versions 1097f126890aSEmmanuel Vadot * of U-Boot on Exynos don't set the CNTFRQ register, 1098f126890aSEmmanuel Vadot * so we need the value from DT. 1099f126890aSEmmanuel Vadot */ 1100f126890aSEmmanuel Vadot clock-frequency = <24000000>; 1101f126890aSEmmanuel Vadot }; 1102f126890aSEmmanuel Vadot}; 1103f126890aSEmmanuel Vadot 1104f126890aSEmmanuel Vadot&cpu_thermal { 1105f126890aSEmmanuel Vadot polling-delay-passive = <0>; 1106f126890aSEmmanuel Vadot polling-delay = <0>; 1107f126890aSEmmanuel Vadot thermal-sensors = <&tmu>; 1108f126890aSEmmanuel Vadot 1109f126890aSEmmanuel Vadot cooling-maps { 1110f126890aSEmmanuel Vadot map0 { 1111f126890aSEmmanuel Vadot /* Corresponds to 800MHz at freq_table */ 1112f126890aSEmmanuel Vadot cooling-device = <&cpu0 9 9>, <&cpu1 9 9>; 1113f126890aSEmmanuel Vadot }; 1114f126890aSEmmanuel Vadot map1 { 1115f126890aSEmmanuel Vadot /* Corresponds to 200MHz at freq_table */ 1116f126890aSEmmanuel Vadot cooling-device = <&cpu0 15 15>, 1117f126890aSEmmanuel Vadot <&cpu1 15 15>; 1118f126890aSEmmanuel Vadot }; 1119f126890aSEmmanuel Vadot }; 1120f126890aSEmmanuel Vadot}; 1121f126890aSEmmanuel Vadot 1122f126890aSEmmanuel Vadot&dp { 1123f126890aSEmmanuel Vadot power-domains = <&pd_disp1>; 1124f126890aSEmmanuel Vadot clocks = <&clock CLK_DP>; 1125f126890aSEmmanuel Vadot clock-names = "dp"; 1126f126890aSEmmanuel Vadot phys = <&dp_phy>; 1127f126890aSEmmanuel Vadot phy-names = "dp"; 1128f126890aSEmmanuel Vadot}; 1129f126890aSEmmanuel Vadot 1130f126890aSEmmanuel Vadot&fimd { 1131f126890aSEmmanuel Vadot power-domains = <&pd_disp1>; 1132f126890aSEmmanuel Vadot clocks = <&clock CLK_SCLK_FIMD1>, <&clock CLK_FIMD1>; 1133f126890aSEmmanuel Vadot clock-names = "sclk_fimd", "fimd"; 1134f126890aSEmmanuel Vadot iommus = <&sysmmu_fimd1>; 1135f126890aSEmmanuel Vadot}; 1136f126890aSEmmanuel Vadot 1137f126890aSEmmanuel Vadot&g2d { 1138f126890aSEmmanuel Vadot iommus = <&sysmmu_g2d>; 1139f126890aSEmmanuel Vadot clocks = <&clock CLK_G2D>; 1140f126890aSEmmanuel Vadot clock-names = "fimg2d"; 1141f126890aSEmmanuel Vadot status = "okay"; 1142f126890aSEmmanuel Vadot}; 1143f126890aSEmmanuel Vadot 1144f126890aSEmmanuel Vadot&i2c_0 { 1145f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C0>; 1146f126890aSEmmanuel Vadot clock-names = "i2c"; 1147f126890aSEmmanuel Vadot pinctrl-names = "default"; 1148f126890aSEmmanuel Vadot pinctrl-0 = <&i2c0_bus>; 1149f126890aSEmmanuel Vadot}; 1150f126890aSEmmanuel Vadot 1151f126890aSEmmanuel Vadot&i2c_1 { 1152f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C1>; 1153f126890aSEmmanuel Vadot clock-names = "i2c"; 1154f126890aSEmmanuel Vadot pinctrl-names = "default"; 1155f126890aSEmmanuel Vadot pinctrl-0 = <&i2c1_bus>; 1156f126890aSEmmanuel Vadot}; 1157f126890aSEmmanuel Vadot 1158f126890aSEmmanuel Vadot&i2c_2 { 1159f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C2>; 1160f126890aSEmmanuel Vadot clock-names = "i2c"; 1161f126890aSEmmanuel Vadot pinctrl-names = "default"; 1162f126890aSEmmanuel Vadot pinctrl-0 = <&i2c2_bus>; 1163f126890aSEmmanuel Vadot}; 1164f126890aSEmmanuel Vadot 1165f126890aSEmmanuel Vadot&i2c_3 { 1166f126890aSEmmanuel Vadot clocks = <&clock CLK_I2C3>; 1167f126890aSEmmanuel Vadot clock-names = "i2c"; 1168f126890aSEmmanuel Vadot pinctrl-names = "default"; 1169f126890aSEmmanuel Vadot pinctrl-0 = <&i2c3_bus>; 1170f126890aSEmmanuel Vadot}; 1171f126890aSEmmanuel Vadot 1172f126890aSEmmanuel Vadot&prng { 1173f126890aSEmmanuel Vadot clocks = <&clock CLK_SSS>; 1174f126890aSEmmanuel Vadot clock-names = "secss"; 1175f126890aSEmmanuel Vadot}; 1176f126890aSEmmanuel Vadot 1177f126890aSEmmanuel Vadot&pwm { 1178f126890aSEmmanuel Vadot clocks = <&clock CLK_PWM>; 1179f126890aSEmmanuel Vadot clock-names = "timers"; 1180f126890aSEmmanuel Vadot}; 1181f126890aSEmmanuel Vadot 1182f126890aSEmmanuel Vadot&rtc { 1183f126890aSEmmanuel Vadot clocks = <&clock CLK_RTC>; 1184f126890aSEmmanuel Vadot clock-names = "rtc"; 1185f126890aSEmmanuel Vadot interrupt-parent = <&pmu_system_controller>; 1186f126890aSEmmanuel Vadot status = "disabled"; 1187f126890aSEmmanuel Vadot}; 1188f126890aSEmmanuel Vadot 1189f126890aSEmmanuel Vadot&serial_0 { 1190f126890aSEmmanuel Vadot clocks = <&clock CLK_UART0>, <&clock CLK_SCLK_UART0>; 1191f126890aSEmmanuel Vadot clock-names = "uart", "clk_uart_baud0"; 1192f126890aSEmmanuel Vadot dmas = <&pdma0 13>, <&pdma0 14>; 1193f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 1194f126890aSEmmanuel Vadot}; 1195f126890aSEmmanuel Vadot 1196f126890aSEmmanuel Vadot&serial_1 { 1197f126890aSEmmanuel Vadot clocks = <&clock CLK_UART1>, <&clock CLK_SCLK_UART1>; 1198f126890aSEmmanuel Vadot clock-names = "uart", "clk_uart_baud0"; 1199f126890aSEmmanuel Vadot dmas = <&pdma1 15>, <&pdma1 16>; 1200f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 1201f126890aSEmmanuel Vadot}; 1202f126890aSEmmanuel Vadot 1203f126890aSEmmanuel Vadot&serial_2 { 1204f126890aSEmmanuel Vadot clocks = <&clock CLK_UART2>, <&clock CLK_SCLK_UART2>; 1205f126890aSEmmanuel Vadot clock-names = "uart", "clk_uart_baud0"; 1206f126890aSEmmanuel Vadot dmas = <&pdma0 15>, <&pdma0 16>; 1207f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 1208f126890aSEmmanuel Vadot}; 1209f126890aSEmmanuel Vadot 1210f126890aSEmmanuel Vadot&serial_3 { 1211f126890aSEmmanuel Vadot clocks = <&clock CLK_UART3>, <&clock CLK_SCLK_UART3>; 1212f126890aSEmmanuel Vadot clock-names = "uart", "clk_uart_baud0"; 1213f126890aSEmmanuel Vadot dmas = <&pdma1 17>, <&pdma1 18>; 1214f126890aSEmmanuel Vadot dma-names = "rx", "tx"; 1215f126890aSEmmanuel Vadot}; 1216f126890aSEmmanuel Vadot 1217f126890aSEmmanuel Vadot&sss { 1218f126890aSEmmanuel Vadot clocks = <&clock CLK_SSS>; 1219f126890aSEmmanuel Vadot clock-names = "secss"; 1220f126890aSEmmanuel Vadot}; 1221f126890aSEmmanuel Vadot 1222f126890aSEmmanuel Vadot&trng { 1223f126890aSEmmanuel Vadot clocks = <&clock CLK_SSS>; 1224f126890aSEmmanuel Vadot clock-names = "secss"; 1225f126890aSEmmanuel Vadot}; 1226f126890aSEmmanuel Vadot 1227f126890aSEmmanuel Vadot#include "exynos5250-pinctrl.dtsi" 1228f126890aSEmmanuel Vadot#include "exynos-syscon-restart.dtsi" 1229