1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0 2f126890aSEmmanuel Vadot/dts-v1/; 3f126890aSEmmanuel Vadot 4f126890aSEmmanuel Vadot#include <dt-bindings/interconnect/qcom,msm8974.h> 5f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h> 6f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,gcc-msm8974.h> 7f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,mmcc-msm8974.h> 8f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,rpmcc.h> 9f126890aSEmmanuel Vadot#include <dt-bindings/reset/qcom,gcc-msm8974.h> 10f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 11f126890aSEmmanuel Vadot 12f126890aSEmmanuel Vadot/ { 13f126890aSEmmanuel Vadot #address-cells = <1>; 14f126890aSEmmanuel Vadot #size-cells = <1>; 15f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 16f126890aSEmmanuel Vadot 17f126890aSEmmanuel Vadot clocks { 18f126890aSEmmanuel Vadot xo_board: xo_board { 19f126890aSEmmanuel Vadot compatible = "fixed-clock"; 20f126890aSEmmanuel Vadot #clock-cells = <0>; 21f126890aSEmmanuel Vadot clock-frequency = <19200000>; 22f126890aSEmmanuel Vadot }; 23f126890aSEmmanuel Vadot 24f126890aSEmmanuel Vadot sleep_clk: sleep_clk { 25f126890aSEmmanuel Vadot compatible = "fixed-clock"; 26f126890aSEmmanuel Vadot #clock-cells = <0>; 27f126890aSEmmanuel Vadot clock-frequency = <32768>; 28f126890aSEmmanuel Vadot }; 29f126890aSEmmanuel Vadot }; 30f126890aSEmmanuel Vadot 31f126890aSEmmanuel Vadot cpus { 32f126890aSEmmanuel Vadot #address-cells = <1>; 33f126890aSEmmanuel Vadot #size-cells = <0>; 34f126890aSEmmanuel Vadot interrupts = <GIC_PPI 9 0xf04>; 35f126890aSEmmanuel Vadot 36f126890aSEmmanuel Vadot CPU0: cpu@0 { 37f126890aSEmmanuel Vadot compatible = "qcom,krait"; 38f126890aSEmmanuel Vadot enable-method = "qcom,kpss-acc-v2"; 39f126890aSEmmanuel Vadot device_type = "cpu"; 40f126890aSEmmanuel Vadot reg = <0>; 41f126890aSEmmanuel Vadot next-level-cache = <&L2>; 42f126890aSEmmanuel Vadot qcom,acc = <&acc0>; 43f126890aSEmmanuel Vadot qcom,saw = <&saw0>; 44f126890aSEmmanuel Vadot cpu-idle-states = <&CPU_SPC>; 45f126890aSEmmanuel Vadot }; 46f126890aSEmmanuel Vadot 47f126890aSEmmanuel Vadot CPU1: cpu@1 { 48f126890aSEmmanuel Vadot compatible = "qcom,krait"; 49f126890aSEmmanuel Vadot enable-method = "qcom,kpss-acc-v2"; 50f126890aSEmmanuel Vadot device_type = "cpu"; 51f126890aSEmmanuel Vadot reg = <1>; 52f126890aSEmmanuel Vadot next-level-cache = <&L2>; 53f126890aSEmmanuel Vadot qcom,acc = <&acc1>; 54f126890aSEmmanuel Vadot qcom,saw = <&saw1>; 55f126890aSEmmanuel Vadot cpu-idle-states = <&CPU_SPC>; 56f126890aSEmmanuel Vadot }; 57f126890aSEmmanuel Vadot 58f126890aSEmmanuel Vadot CPU2: cpu@2 { 59f126890aSEmmanuel Vadot compatible = "qcom,krait"; 60f126890aSEmmanuel Vadot enable-method = "qcom,kpss-acc-v2"; 61f126890aSEmmanuel Vadot device_type = "cpu"; 62f126890aSEmmanuel Vadot reg = <2>; 63f126890aSEmmanuel Vadot next-level-cache = <&L2>; 64f126890aSEmmanuel Vadot qcom,acc = <&acc2>; 65f126890aSEmmanuel Vadot qcom,saw = <&saw2>; 66f126890aSEmmanuel Vadot cpu-idle-states = <&CPU_SPC>; 67f126890aSEmmanuel Vadot }; 68f126890aSEmmanuel Vadot 69f126890aSEmmanuel Vadot CPU3: cpu@3 { 70f126890aSEmmanuel Vadot compatible = "qcom,krait"; 71f126890aSEmmanuel Vadot enable-method = "qcom,kpss-acc-v2"; 72f126890aSEmmanuel Vadot device_type = "cpu"; 73f126890aSEmmanuel Vadot reg = <3>; 74f126890aSEmmanuel Vadot next-level-cache = <&L2>; 75f126890aSEmmanuel Vadot qcom,acc = <&acc3>; 76f126890aSEmmanuel Vadot qcom,saw = <&saw3>; 77f126890aSEmmanuel Vadot cpu-idle-states = <&CPU_SPC>; 78f126890aSEmmanuel Vadot }; 79f126890aSEmmanuel Vadot 80f126890aSEmmanuel Vadot L2: l2-cache { 81f126890aSEmmanuel Vadot compatible = "cache"; 82f126890aSEmmanuel Vadot cache-level = <2>; 83f126890aSEmmanuel Vadot cache-unified; 84f126890aSEmmanuel Vadot qcom,saw = <&saw_l2>; 85f126890aSEmmanuel Vadot }; 86f126890aSEmmanuel Vadot 87f126890aSEmmanuel Vadot idle-states { 88f126890aSEmmanuel Vadot CPU_SPC: spc { 89f126890aSEmmanuel Vadot compatible = "qcom,idle-state-spc", 90f126890aSEmmanuel Vadot "arm,idle-state"; 91f126890aSEmmanuel Vadot entry-latency-us = <150>; 92f126890aSEmmanuel Vadot exit-latency-us = <200>; 93f126890aSEmmanuel Vadot min-residency-us = <2000>; 94f126890aSEmmanuel Vadot }; 95f126890aSEmmanuel Vadot }; 96f126890aSEmmanuel Vadot }; 97f126890aSEmmanuel Vadot 98f126890aSEmmanuel Vadot firmware { 99f126890aSEmmanuel Vadot scm { 100f126890aSEmmanuel Vadot compatible = "qcom,scm-msm8974", "qcom,scm"; 101f126890aSEmmanuel Vadot clocks = <&gcc GCC_CE1_CLK>, <&gcc GCC_CE1_AXI_CLK>, <&gcc GCC_CE1_AHB_CLK>; 102f126890aSEmmanuel Vadot clock-names = "core", "bus", "iface"; 103f126890aSEmmanuel Vadot }; 104f126890aSEmmanuel Vadot }; 105f126890aSEmmanuel Vadot 106f126890aSEmmanuel Vadot memory { 107f126890aSEmmanuel Vadot device_type = "memory"; 108f126890aSEmmanuel Vadot reg = <0x0 0x0>; 109f126890aSEmmanuel Vadot }; 110f126890aSEmmanuel Vadot 111f126890aSEmmanuel Vadot pmu { 112f126890aSEmmanuel Vadot compatible = "qcom,krait-pmu"; 113f126890aSEmmanuel Vadot interrupts = <GIC_PPI 7 0xf04>; 114f126890aSEmmanuel Vadot }; 115f126890aSEmmanuel Vadot 116aa1a8ff2SEmmanuel Vadot rpm: remoteproc { 117aa1a8ff2SEmmanuel Vadot compatible = "qcom,msm8974-rpm-proc", "qcom,rpm-proc"; 118aa1a8ff2SEmmanuel Vadot 119*84943d6fSEmmanuel Vadot master-stats { 120*84943d6fSEmmanuel Vadot compatible = "qcom,rpm-master-stats"; 121*84943d6fSEmmanuel Vadot qcom,rpm-msg-ram = <&apss_master_stats>, 122*84943d6fSEmmanuel Vadot <&mpss_master_stats>, 123*84943d6fSEmmanuel Vadot <&lpss_master_stats>, 124*84943d6fSEmmanuel Vadot <&pronto_master_stats>; 125*84943d6fSEmmanuel Vadot qcom,master-names = "APSS", 126*84943d6fSEmmanuel Vadot "MPSS", 127*84943d6fSEmmanuel Vadot "LPSS", 128*84943d6fSEmmanuel Vadot "PRONTO"; 129*84943d6fSEmmanuel Vadot }; 130*84943d6fSEmmanuel Vadot 131aa1a8ff2SEmmanuel Vadot smd-edge { 132aa1a8ff2SEmmanuel Vadot interrupts = <GIC_SPI 168 IRQ_TYPE_EDGE_RISING>; 133aa1a8ff2SEmmanuel Vadot qcom,ipc = <&apcs 8 0>; 134aa1a8ff2SEmmanuel Vadot qcom,smd-edge = <15>; 135aa1a8ff2SEmmanuel Vadot 136aa1a8ff2SEmmanuel Vadot rpm_requests: rpm-requests { 137aa1a8ff2SEmmanuel Vadot compatible = "qcom,rpm-msm8974"; 138aa1a8ff2SEmmanuel Vadot qcom,smd-channels = "rpm_requests"; 139aa1a8ff2SEmmanuel Vadot 140aa1a8ff2SEmmanuel Vadot rpmcc: clock-controller { 141aa1a8ff2SEmmanuel Vadot compatible = "qcom,rpmcc-msm8974", "qcom,rpmcc"; 142aa1a8ff2SEmmanuel Vadot #clock-cells = <1>; 143aa1a8ff2SEmmanuel Vadot clocks = <&xo_board>; 144aa1a8ff2SEmmanuel Vadot clock-names = "xo"; 145aa1a8ff2SEmmanuel Vadot }; 146aa1a8ff2SEmmanuel Vadot }; 147aa1a8ff2SEmmanuel Vadot }; 148aa1a8ff2SEmmanuel Vadot }; 149aa1a8ff2SEmmanuel Vadot 150f126890aSEmmanuel Vadot reserved-memory { 151f126890aSEmmanuel Vadot #address-cells = <1>; 152f126890aSEmmanuel Vadot #size-cells = <1>; 153f126890aSEmmanuel Vadot ranges; 154f126890aSEmmanuel Vadot 155f126890aSEmmanuel Vadot mpss_region: mpss@8000000 { 156f126890aSEmmanuel Vadot reg = <0x08000000 0x5100000>; 157f126890aSEmmanuel Vadot no-map; 158f126890aSEmmanuel Vadot }; 159f126890aSEmmanuel Vadot 160f126890aSEmmanuel Vadot mba_region: mba@d100000 { 161f126890aSEmmanuel Vadot reg = <0x0d100000 0x100000>; 162f126890aSEmmanuel Vadot no-map; 163f126890aSEmmanuel Vadot }; 164f126890aSEmmanuel Vadot 165f126890aSEmmanuel Vadot wcnss_region: wcnss@d200000 { 166f126890aSEmmanuel Vadot reg = <0x0d200000 0xa00000>; 167f126890aSEmmanuel Vadot no-map; 168f126890aSEmmanuel Vadot }; 169f126890aSEmmanuel Vadot 170f126890aSEmmanuel Vadot adsp_region: adsp@dc00000 { 171f126890aSEmmanuel Vadot reg = <0x0dc00000 0x1900000>; 172f126890aSEmmanuel Vadot no-map; 173f126890aSEmmanuel Vadot }; 174f126890aSEmmanuel Vadot 175f126890aSEmmanuel Vadot venus_region: memory@f500000 { 176f126890aSEmmanuel Vadot reg = <0x0f500000 0x500000>; 177f126890aSEmmanuel Vadot no-map; 178f126890aSEmmanuel Vadot }; 179f126890aSEmmanuel Vadot 180f126890aSEmmanuel Vadot smem_region: smem@fa00000 { 181f126890aSEmmanuel Vadot reg = <0xfa00000 0x200000>; 182f126890aSEmmanuel Vadot no-map; 183f126890aSEmmanuel Vadot }; 184f126890aSEmmanuel Vadot 185f126890aSEmmanuel Vadot tz_region: memory@fc00000 { 186f126890aSEmmanuel Vadot reg = <0x0fc00000 0x160000>; 187f126890aSEmmanuel Vadot no-map; 188f126890aSEmmanuel Vadot }; 189f126890aSEmmanuel Vadot 190f126890aSEmmanuel Vadot rfsa_mem: memory@fd60000 { 191f126890aSEmmanuel Vadot reg = <0x0fd60000 0x20000>; 192f126890aSEmmanuel Vadot no-map; 193f126890aSEmmanuel Vadot }; 194f126890aSEmmanuel Vadot 195f126890aSEmmanuel Vadot rmtfs@fd80000 { 196f126890aSEmmanuel Vadot compatible = "qcom,rmtfs-mem"; 197f126890aSEmmanuel Vadot reg = <0x0fd80000 0x180000>; 198f126890aSEmmanuel Vadot no-map; 199f126890aSEmmanuel Vadot 200f126890aSEmmanuel Vadot qcom,client-id = <1>; 201f126890aSEmmanuel Vadot }; 202f126890aSEmmanuel Vadot }; 203f126890aSEmmanuel Vadot 204f126890aSEmmanuel Vadot smem { 205f126890aSEmmanuel Vadot compatible = "qcom,smem"; 206f126890aSEmmanuel Vadot 207f126890aSEmmanuel Vadot memory-region = <&smem_region>; 208f126890aSEmmanuel Vadot qcom,rpm-msg-ram = <&rpm_msg_ram>; 209f126890aSEmmanuel Vadot 210f126890aSEmmanuel Vadot hwlocks = <&tcsr_mutex 3>; 211f126890aSEmmanuel Vadot }; 212f126890aSEmmanuel Vadot 213f126890aSEmmanuel Vadot smp2p-adsp { 214f126890aSEmmanuel Vadot compatible = "qcom,smp2p"; 215f126890aSEmmanuel Vadot qcom,smem = <443>, <429>; 216f126890aSEmmanuel Vadot 217f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 218f126890aSEmmanuel Vadot interrupts = <GIC_SPI 158 IRQ_TYPE_EDGE_RISING>; 219f126890aSEmmanuel Vadot 220f126890aSEmmanuel Vadot qcom,ipc = <&apcs 8 10>; 221f126890aSEmmanuel Vadot 222f126890aSEmmanuel Vadot qcom,local-pid = <0>; 223f126890aSEmmanuel Vadot qcom,remote-pid = <2>; 224f126890aSEmmanuel Vadot 225f126890aSEmmanuel Vadot adsp_smp2p_out: master-kernel { 226f126890aSEmmanuel Vadot qcom,entry-name = "master-kernel"; 227f126890aSEmmanuel Vadot #qcom,smem-state-cells = <1>; 228f126890aSEmmanuel Vadot }; 229f126890aSEmmanuel Vadot 230f126890aSEmmanuel Vadot adsp_smp2p_in: slave-kernel { 231f126890aSEmmanuel Vadot qcom,entry-name = "slave-kernel"; 232f126890aSEmmanuel Vadot 233f126890aSEmmanuel Vadot interrupt-controller; 234f126890aSEmmanuel Vadot #interrupt-cells = <2>; 235f126890aSEmmanuel Vadot }; 236f126890aSEmmanuel Vadot }; 237f126890aSEmmanuel Vadot 238f126890aSEmmanuel Vadot smp2p-modem { 239f126890aSEmmanuel Vadot compatible = "qcom,smp2p"; 240f126890aSEmmanuel Vadot qcom,smem = <435>, <428>; 241f126890aSEmmanuel Vadot 242f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 243f126890aSEmmanuel Vadot interrupts = <GIC_SPI 27 IRQ_TYPE_EDGE_RISING>; 244f126890aSEmmanuel Vadot 245f126890aSEmmanuel Vadot qcom,ipc = <&apcs 8 14>; 246f126890aSEmmanuel Vadot 247f126890aSEmmanuel Vadot qcom,local-pid = <0>; 248f126890aSEmmanuel Vadot qcom,remote-pid = <1>; 249f126890aSEmmanuel Vadot 250f126890aSEmmanuel Vadot modem_smp2p_out: master-kernel { 251f126890aSEmmanuel Vadot qcom,entry-name = "master-kernel"; 252f126890aSEmmanuel Vadot #qcom,smem-state-cells = <1>; 253f126890aSEmmanuel Vadot }; 254f126890aSEmmanuel Vadot 255f126890aSEmmanuel Vadot modem_smp2p_in: slave-kernel { 256f126890aSEmmanuel Vadot qcom,entry-name = "slave-kernel"; 257f126890aSEmmanuel Vadot 258f126890aSEmmanuel Vadot interrupt-controller; 259f126890aSEmmanuel Vadot #interrupt-cells = <2>; 260f126890aSEmmanuel Vadot }; 261f126890aSEmmanuel Vadot }; 262f126890aSEmmanuel Vadot 263f126890aSEmmanuel Vadot smp2p-wcnss { 264f126890aSEmmanuel Vadot compatible = "qcom,smp2p"; 265f126890aSEmmanuel Vadot qcom,smem = <451>, <431>; 266f126890aSEmmanuel Vadot 267f126890aSEmmanuel Vadot interrupt-parent = <&intc>; 268f126890aSEmmanuel Vadot interrupts = <GIC_SPI 143 IRQ_TYPE_EDGE_RISING>; 269f126890aSEmmanuel Vadot 270f126890aSEmmanuel Vadot qcom,ipc = <&apcs 8 18>; 271f126890aSEmmanuel Vadot 272f126890aSEmmanuel Vadot qcom,local-pid = <0>; 273f126890aSEmmanuel Vadot qcom,remote-pid = <4>; 274f126890aSEmmanuel Vadot 275f126890aSEmmanuel Vadot wcnss_smp2p_out: master-kernel { 276f126890aSEmmanuel Vadot qcom,entry-name = "master-kernel"; 277f126890aSEmmanuel Vadot 278f126890aSEmmanuel Vadot #qcom,smem-state-cells = <1>; 279f126890aSEmmanuel Vadot }; 280f126890aSEmmanuel Vadot 281f126890aSEmmanuel Vadot wcnss_smp2p_in: slave-kernel { 282f126890aSEmmanuel Vadot qcom,entry-name = "slave-kernel"; 283f126890aSEmmanuel Vadot 284f126890aSEmmanuel Vadot interrupt-controller; 285f126890aSEmmanuel Vadot #interrupt-cells = <2>; 286f126890aSEmmanuel Vadot }; 287f126890aSEmmanuel Vadot }; 288f126890aSEmmanuel Vadot 289f126890aSEmmanuel Vadot smsm { 290f126890aSEmmanuel Vadot compatible = "qcom,smsm"; 291f126890aSEmmanuel Vadot 292f126890aSEmmanuel Vadot #address-cells = <1>; 293f126890aSEmmanuel Vadot #size-cells = <0>; 294f126890aSEmmanuel Vadot 295f126890aSEmmanuel Vadot qcom,ipc-1 = <&apcs 8 13>; 296f126890aSEmmanuel Vadot qcom,ipc-2 = <&apcs 8 9>; 297f126890aSEmmanuel Vadot qcom,ipc-3 = <&apcs 8 19>; 298f126890aSEmmanuel Vadot 299f126890aSEmmanuel Vadot apps_smsm: apps@0 { 300f126890aSEmmanuel Vadot reg = <0>; 301f126890aSEmmanuel Vadot 302f126890aSEmmanuel Vadot #qcom,smem-state-cells = <1>; 303f126890aSEmmanuel Vadot }; 304f126890aSEmmanuel Vadot 305f126890aSEmmanuel Vadot modem_smsm: modem@1 { 306f126890aSEmmanuel Vadot reg = <1>; 307f126890aSEmmanuel Vadot interrupts = <GIC_SPI 26 IRQ_TYPE_EDGE_RISING>; 308f126890aSEmmanuel Vadot 309f126890aSEmmanuel Vadot interrupt-controller; 310f126890aSEmmanuel Vadot #interrupt-cells = <2>; 311f126890aSEmmanuel Vadot }; 312f126890aSEmmanuel Vadot 313f126890aSEmmanuel Vadot adsp_smsm: adsp@2 { 314f126890aSEmmanuel Vadot reg = <2>; 315f126890aSEmmanuel Vadot interrupts = <GIC_SPI 157 IRQ_TYPE_EDGE_RISING>; 316f126890aSEmmanuel Vadot 317f126890aSEmmanuel Vadot interrupt-controller; 318f126890aSEmmanuel Vadot #interrupt-cells = <2>; 319f126890aSEmmanuel Vadot }; 320f126890aSEmmanuel Vadot 321f126890aSEmmanuel Vadot wcnss_smsm: wcnss@7 { 322f126890aSEmmanuel Vadot reg = <7>; 323f126890aSEmmanuel Vadot interrupts = <GIC_SPI 144 IRQ_TYPE_EDGE_RISING>; 324f126890aSEmmanuel Vadot 325f126890aSEmmanuel Vadot interrupt-controller; 326f126890aSEmmanuel Vadot #interrupt-cells = <2>; 327f126890aSEmmanuel Vadot }; 328f126890aSEmmanuel Vadot }; 329f126890aSEmmanuel Vadot 330f126890aSEmmanuel Vadot soc: soc { 331f126890aSEmmanuel Vadot #address-cells = <1>; 332f126890aSEmmanuel Vadot #size-cells = <1>; 333f126890aSEmmanuel Vadot ranges; 334f126890aSEmmanuel Vadot compatible = "simple-bus"; 335f126890aSEmmanuel Vadot 336f126890aSEmmanuel Vadot intc: interrupt-controller@f9000000 { 337f126890aSEmmanuel Vadot compatible = "qcom,msm-qgic2"; 338f126890aSEmmanuel Vadot interrupt-controller; 339f126890aSEmmanuel Vadot #interrupt-cells = <3>; 340f126890aSEmmanuel Vadot reg = <0xf9000000 0x1000>, 341f126890aSEmmanuel Vadot <0xf9002000 0x1000>; 342f126890aSEmmanuel Vadot }; 343f126890aSEmmanuel Vadot 344f126890aSEmmanuel Vadot apcs: syscon@f9011000 { 345f126890aSEmmanuel Vadot compatible = "syscon"; 346f126890aSEmmanuel Vadot reg = <0xf9011000 0x1000>; 347f126890aSEmmanuel Vadot }; 348f126890aSEmmanuel Vadot 349f126890aSEmmanuel Vadot timer@f9020000 { 350f126890aSEmmanuel Vadot #address-cells = <1>; 351f126890aSEmmanuel Vadot #size-cells = <1>; 352f126890aSEmmanuel Vadot ranges; 353f126890aSEmmanuel Vadot compatible = "arm,armv7-timer-mem"; 354f126890aSEmmanuel Vadot reg = <0xf9020000 0x1000>; 355f126890aSEmmanuel Vadot clock-frequency = <19200000>; 356f126890aSEmmanuel Vadot 357f126890aSEmmanuel Vadot frame@f9021000 { 358f126890aSEmmanuel Vadot frame-number = <0>; 359f126890aSEmmanuel Vadot interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>, 360f126890aSEmmanuel Vadot <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>; 361f126890aSEmmanuel Vadot reg = <0xf9021000 0x1000>, 362f126890aSEmmanuel Vadot <0xf9022000 0x1000>; 363f126890aSEmmanuel Vadot }; 364f126890aSEmmanuel Vadot 365f126890aSEmmanuel Vadot frame@f9023000 { 366f126890aSEmmanuel Vadot frame-number = <1>; 367f126890aSEmmanuel Vadot interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>; 368f126890aSEmmanuel Vadot reg = <0xf9023000 0x1000>; 369f126890aSEmmanuel Vadot status = "disabled"; 370f126890aSEmmanuel Vadot }; 371f126890aSEmmanuel Vadot 372f126890aSEmmanuel Vadot frame@f9024000 { 373f126890aSEmmanuel Vadot frame-number = <2>; 374f126890aSEmmanuel Vadot interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>; 375f126890aSEmmanuel Vadot reg = <0xf9024000 0x1000>; 376f126890aSEmmanuel Vadot status = "disabled"; 377f126890aSEmmanuel Vadot }; 378f126890aSEmmanuel Vadot 379f126890aSEmmanuel Vadot frame@f9025000 { 380f126890aSEmmanuel Vadot frame-number = <3>; 381f126890aSEmmanuel Vadot interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>; 382f126890aSEmmanuel Vadot reg = <0xf9025000 0x1000>; 383f126890aSEmmanuel Vadot status = "disabled"; 384f126890aSEmmanuel Vadot }; 385f126890aSEmmanuel Vadot 386f126890aSEmmanuel Vadot frame@f9026000 { 387f126890aSEmmanuel Vadot frame-number = <4>; 388f126890aSEmmanuel Vadot interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>; 389f126890aSEmmanuel Vadot reg = <0xf9026000 0x1000>; 390f126890aSEmmanuel Vadot status = "disabled"; 391f126890aSEmmanuel Vadot }; 392f126890aSEmmanuel Vadot 393f126890aSEmmanuel Vadot frame@f9027000 { 394f126890aSEmmanuel Vadot frame-number = <5>; 395f126890aSEmmanuel Vadot interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>; 396f126890aSEmmanuel Vadot reg = <0xf9027000 0x1000>; 397f126890aSEmmanuel Vadot status = "disabled"; 398f126890aSEmmanuel Vadot }; 399f126890aSEmmanuel Vadot 400f126890aSEmmanuel Vadot frame@f9028000 { 401f126890aSEmmanuel Vadot frame-number = <6>; 402f126890aSEmmanuel Vadot interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>; 403f126890aSEmmanuel Vadot reg = <0xf9028000 0x1000>; 404f126890aSEmmanuel Vadot status = "disabled"; 405f126890aSEmmanuel Vadot }; 406f126890aSEmmanuel Vadot }; 407f126890aSEmmanuel Vadot 408f126890aSEmmanuel Vadot saw0: power-controller@f9089000 { 409f126890aSEmmanuel Vadot compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2"; 410f126890aSEmmanuel Vadot reg = <0xf9089000 0x1000>, <0xf9009000 0x1000>; 411f126890aSEmmanuel Vadot }; 412f126890aSEmmanuel Vadot 413f126890aSEmmanuel Vadot saw1: power-controller@f9099000 { 414f126890aSEmmanuel Vadot compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2"; 415f126890aSEmmanuel Vadot reg = <0xf9099000 0x1000>, <0xf9009000 0x1000>; 416f126890aSEmmanuel Vadot }; 417f126890aSEmmanuel Vadot 418f126890aSEmmanuel Vadot saw2: power-controller@f90a9000 { 419f126890aSEmmanuel Vadot compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2"; 420f126890aSEmmanuel Vadot reg = <0xf90a9000 0x1000>, <0xf9009000 0x1000>; 421f126890aSEmmanuel Vadot }; 422f126890aSEmmanuel Vadot 423f126890aSEmmanuel Vadot saw3: power-controller@f90b9000 { 424f126890aSEmmanuel Vadot compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2"; 425f126890aSEmmanuel Vadot reg = <0xf90b9000 0x1000>, <0xf9009000 0x1000>; 426f126890aSEmmanuel Vadot }; 427f126890aSEmmanuel Vadot 428f126890aSEmmanuel Vadot saw_l2: power-controller@f9012000 { 429f126890aSEmmanuel Vadot compatible = "qcom,saw2"; 430f126890aSEmmanuel Vadot reg = <0xf9012000 0x1000>; 431f126890aSEmmanuel Vadot regulator; 432f126890aSEmmanuel Vadot }; 433f126890aSEmmanuel Vadot 434f126890aSEmmanuel Vadot acc0: power-manager@f9088000 { 435f126890aSEmmanuel Vadot compatible = "qcom,kpss-acc-v2"; 436f126890aSEmmanuel Vadot reg = <0xf9088000 0x1000>, <0xf9008000 0x1000>; 437f126890aSEmmanuel Vadot }; 438f126890aSEmmanuel Vadot 439f126890aSEmmanuel Vadot acc1: power-manager@f9098000 { 440f126890aSEmmanuel Vadot compatible = "qcom,kpss-acc-v2"; 441f126890aSEmmanuel Vadot reg = <0xf9098000 0x1000>, <0xf9008000 0x1000>; 442f126890aSEmmanuel Vadot }; 443f126890aSEmmanuel Vadot 444f126890aSEmmanuel Vadot acc2: power-manager@f90a8000 { 445f126890aSEmmanuel Vadot compatible = "qcom,kpss-acc-v2"; 446f126890aSEmmanuel Vadot reg = <0xf90a8000 0x1000>, <0xf9008000 0x1000>; 447f126890aSEmmanuel Vadot }; 448f126890aSEmmanuel Vadot 449f126890aSEmmanuel Vadot acc3: power-manager@f90b8000 { 450f126890aSEmmanuel Vadot compatible = "qcom,kpss-acc-v2"; 451f126890aSEmmanuel Vadot reg = <0xf90b8000 0x1000>, <0xf9008000 0x1000>; 452f126890aSEmmanuel Vadot }; 453f126890aSEmmanuel Vadot 454f126890aSEmmanuel Vadot sdhc_1: mmc@f9824900 { 455f126890aSEmmanuel Vadot compatible = "qcom,msm8974-sdhci", "qcom,sdhci-msm-v4"; 456f126890aSEmmanuel Vadot reg = <0xf9824900 0x11c>, <0xf9824000 0x800>; 457f126890aSEmmanuel Vadot reg-names = "hc", "core"; 458f126890aSEmmanuel Vadot interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, 459f126890aSEmmanuel Vadot <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>; 460f126890aSEmmanuel Vadot interrupt-names = "hc_irq", "pwr_irq"; 461f126890aSEmmanuel Vadot clocks = <&gcc GCC_SDCC1_AHB_CLK>, 462f126890aSEmmanuel Vadot <&gcc GCC_SDCC1_APPS_CLK>, 463f126890aSEmmanuel Vadot <&xo_board>; 464f126890aSEmmanuel Vadot clock-names = "iface", "core", "xo"; 465f126890aSEmmanuel Vadot bus-width = <8>; 466f126890aSEmmanuel Vadot non-removable; 467f126890aSEmmanuel Vadot 468f126890aSEmmanuel Vadot status = "disabled"; 469f126890aSEmmanuel Vadot }; 470f126890aSEmmanuel Vadot 471f126890aSEmmanuel Vadot sdhc_3: mmc@f9864900 { 472f126890aSEmmanuel Vadot compatible = "qcom,msm8974-sdhci", "qcom,sdhci-msm-v4"; 473f126890aSEmmanuel Vadot reg = <0xf9864900 0x11c>, <0xf9864000 0x800>; 474f126890aSEmmanuel Vadot reg-names = "hc", "core"; 475f126890aSEmmanuel Vadot interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>, 476f126890aSEmmanuel Vadot <GIC_SPI 224 IRQ_TYPE_LEVEL_HIGH>; 477f126890aSEmmanuel Vadot interrupt-names = "hc_irq", "pwr_irq"; 478f126890aSEmmanuel Vadot clocks = <&gcc GCC_SDCC3_AHB_CLK>, 479f126890aSEmmanuel Vadot <&gcc GCC_SDCC3_APPS_CLK>, 480f126890aSEmmanuel Vadot <&xo_board>; 481f126890aSEmmanuel Vadot clock-names = "iface", "core", "xo"; 482f126890aSEmmanuel Vadot bus-width = <4>; 483f126890aSEmmanuel Vadot 484f126890aSEmmanuel Vadot #address-cells = <1>; 485f126890aSEmmanuel Vadot #size-cells = <0>; 486f126890aSEmmanuel Vadot 487f126890aSEmmanuel Vadot status = "disabled"; 488f126890aSEmmanuel Vadot }; 489f126890aSEmmanuel Vadot 490f126890aSEmmanuel Vadot sdhc_2: mmc@f98a4900 { 491f126890aSEmmanuel Vadot compatible = "qcom,msm8974-sdhci", "qcom,sdhci-msm-v4"; 492f126890aSEmmanuel Vadot reg = <0xf98a4900 0x11c>, <0xf98a4000 0x800>; 493f126890aSEmmanuel Vadot reg-names = "hc", "core"; 494f126890aSEmmanuel Vadot interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>, 495f126890aSEmmanuel Vadot <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>; 496f126890aSEmmanuel Vadot interrupt-names = "hc_irq", "pwr_irq"; 497f126890aSEmmanuel Vadot clocks = <&gcc GCC_SDCC2_AHB_CLK>, 498f126890aSEmmanuel Vadot <&gcc GCC_SDCC2_APPS_CLK>, 499f126890aSEmmanuel Vadot <&xo_board>; 500f126890aSEmmanuel Vadot clock-names = "iface", "core", "xo"; 501f126890aSEmmanuel Vadot bus-width = <4>; 502f126890aSEmmanuel Vadot 503f126890aSEmmanuel Vadot #address-cells = <1>; 504f126890aSEmmanuel Vadot #size-cells = <0>; 505f126890aSEmmanuel Vadot 506f126890aSEmmanuel Vadot status = "disabled"; 507f126890aSEmmanuel Vadot }; 508f126890aSEmmanuel Vadot 509f126890aSEmmanuel Vadot blsp1_uart1: serial@f991d000 { 510f126890aSEmmanuel Vadot compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm"; 511f126890aSEmmanuel Vadot reg = <0xf991d000 0x1000>; 512f126890aSEmmanuel Vadot interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>; 513f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP1_UART1_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>; 514f126890aSEmmanuel Vadot clock-names = "core", "iface"; 515f126890aSEmmanuel Vadot status = "disabled"; 516f126890aSEmmanuel Vadot }; 517f126890aSEmmanuel Vadot 518f126890aSEmmanuel Vadot blsp1_uart2: serial@f991e000 { 519f126890aSEmmanuel Vadot compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm"; 520f126890aSEmmanuel Vadot reg = <0xf991e000 0x1000>; 521f126890aSEmmanuel Vadot interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>; 522f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP1_UART2_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>; 523f126890aSEmmanuel Vadot clock-names = "core", "iface"; 524f126890aSEmmanuel Vadot pinctrl-names = "default"; 525f126890aSEmmanuel Vadot pinctrl-0 = <&blsp1_uart2_default>; 526f126890aSEmmanuel Vadot status = "disabled"; 527f126890aSEmmanuel Vadot }; 528f126890aSEmmanuel Vadot 529f126890aSEmmanuel Vadot blsp1_i2c1: i2c@f9923000 { 530f126890aSEmmanuel Vadot status = "disabled"; 531f126890aSEmmanuel Vadot compatible = "qcom,i2c-qup-v2.1.1"; 532f126890aSEmmanuel Vadot reg = <0xf9923000 0x1000>; 533f126890aSEmmanuel Vadot interrupts = <0 95 IRQ_TYPE_LEVEL_HIGH>; 534f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP1_QUP1_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>; 535f126890aSEmmanuel Vadot clock-names = "core", "iface"; 536f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 537f126890aSEmmanuel Vadot pinctrl-0 = <&blsp1_i2c1_default>; 538f126890aSEmmanuel Vadot pinctrl-1 = <&blsp1_i2c1_sleep>; 539f126890aSEmmanuel Vadot #address-cells = <1>; 540f126890aSEmmanuel Vadot #size-cells = <0>; 541f126890aSEmmanuel Vadot }; 542f126890aSEmmanuel Vadot 543f126890aSEmmanuel Vadot blsp1_i2c2: i2c@f9924000 { 544f126890aSEmmanuel Vadot status = "disabled"; 545f126890aSEmmanuel Vadot compatible = "qcom,i2c-qup-v2.1.1"; 546f126890aSEmmanuel Vadot reg = <0xf9924000 0x1000>; 547f126890aSEmmanuel Vadot interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>; 548f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP1_QUP2_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>; 549f126890aSEmmanuel Vadot clock-names = "core", "iface"; 550f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 551f126890aSEmmanuel Vadot pinctrl-0 = <&blsp1_i2c2_default>; 552f126890aSEmmanuel Vadot pinctrl-1 = <&blsp1_i2c2_sleep>; 553f126890aSEmmanuel Vadot #address-cells = <1>; 554f126890aSEmmanuel Vadot #size-cells = <0>; 555f126890aSEmmanuel Vadot }; 556f126890aSEmmanuel Vadot 557f126890aSEmmanuel Vadot blsp1_i2c3: i2c@f9925000 { 558f126890aSEmmanuel Vadot status = "disabled"; 559f126890aSEmmanuel Vadot compatible = "qcom,i2c-qup-v2.1.1"; 560f126890aSEmmanuel Vadot reg = <0xf9925000 0x1000>; 561f126890aSEmmanuel Vadot interrupts = <0 97 IRQ_TYPE_LEVEL_HIGH>; 562f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP1_QUP3_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>; 563f126890aSEmmanuel Vadot clock-names = "core", "iface"; 564f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 565f126890aSEmmanuel Vadot pinctrl-0 = <&blsp1_i2c3_default>; 566f126890aSEmmanuel Vadot pinctrl-1 = <&blsp1_i2c3_sleep>; 567f126890aSEmmanuel Vadot #address-cells = <1>; 568f126890aSEmmanuel Vadot #size-cells = <0>; 569f126890aSEmmanuel Vadot }; 570f126890aSEmmanuel Vadot 571f126890aSEmmanuel Vadot blsp1_i2c6: i2c@f9928000 { 572f126890aSEmmanuel Vadot status = "disabled"; 573f126890aSEmmanuel Vadot compatible = "qcom,i2c-qup-v2.1.1"; 574f126890aSEmmanuel Vadot reg = <0xf9928000 0x1000>; 575f126890aSEmmanuel Vadot interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>; 576f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP1_QUP6_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>; 577f126890aSEmmanuel Vadot clock-names = "core", "iface"; 578f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 579f126890aSEmmanuel Vadot pinctrl-0 = <&blsp1_i2c6_default>; 580f126890aSEmmanuel Vadot pinctrl-1 = <&blsp1_i2c6_sleep>; 581f126890aSEmmanuel Vadot #address-cells = <1>; 582f126890aSEmmanuel Vadot #size-cells = <0>; 583f126890aSEmmanuel Vadot }; 584f126890aSEmmanuel Vadot 585f126890aSEmmanuel Vadot blsp2_dma: dma-controller@f9944000 { 586f126890aSEmmanuel Vadot compatible = "qcom,bam-v1.4.0"; 587f126890aSEmmanuel Vadot reg = <0xf9944000 0x19000>; 588f126890aSEmmanuel Vadot interrupts = <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>; 589f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP2_AHB_CLK>; 590f126890aSEmmanuel Vadot clock-names = "bam_clk"; 591f126890aSEmmanuel Vadot #dma-cells = <1>; 592f126890aSEmmanuel Vadot qcom,ee = <0>; 593f126890aSEmmanuel Vadot }; 594f126890aSEmmanuel Vadot 595f126890aSEmmanuel Vadot blsp2_uart1: serial@f995d000 { 596f126890aSEmmanuel Vadot compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm"; 597f126890aSEmmanuel Vadot reg = <0xf995d000 0x1000>; 598f126890aSEmmanuel Vadot interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>; 599f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP2_UART1_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>; 600f126890aSEmmanuel Vadot clock-names = "core", "iface"; 601f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 602f126890aSEmmanuel Vadot pinctrl-0 = <&blsp2_uart1_default>; 603f126890aSEmmanuel Vadot pinctrl-1 = <&blsp2_uart1_sleep>; 604f126890aSEmmanuel Vadot status = "disabled"; 605f126890aSEmmanuel Vadot }; 606f126890aSEmmanuel Vadot 607f126890aSEmmanuel Vadot blsp2_uart2: serial@f995e000 { 608f126890aSEmmanuel Vadot compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm"; 609f126890aSEmmanuel Vadot reg = <0xf995e000 0x1000>; 610f126890aSEmmanuel Vadot interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>; 611f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP2_UART2_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>; 612f126890aSEmmanuel Vadot clock-names = "core", "iface"; 613f126890aSEmmanuel Vadot status = "disabled"; 614f126890aSEmmanuel Vadot }; 615f126890aSEmmanuel Vadot 616f126890aSEmmanuel Vadot blsp2_uart4: serial@f9960000 { 617f126890aSEmmanuel Vadot compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm"; 618f126890aSEmmanuel Vadot reg = <0xf9960000 0x1000>; 619f126890aSEmmanuel Vadot interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>; 620f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP2_UART4_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>; 621f126890aSEmmanuel Vadot clock-names = "core", "iface"; 622f126890aSEmmanuel Vadot pinctrl-names = "default"; 623f126890aSEmmanuel Vadot pinctrl-0 = <&blsp2_uart4_default>; 624f126890aSEmmanuel Vadot status = "disabled"; 625f126890aSEmmanuel Vadot }; 626f126890aSEmmanuel Vadot 627f126890aSEmmanuel Vadot blsp2_i2c2: i2c@f9964000 { 628f126890aSEmmanuel Vadot status = "disabled"; 629f126890aSEmmanuel Vadot compatible = "qcom,i2c-qup-v2.1.1"; 630f126890aSEmmanuel Vadot reg = <0xf9964000 0x1000>; 631f126890aSEmmanuel Vadot interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>; 632f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP2_QUP2_I2C_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>; 633f126890aSEmmanuel Vadot clock-names = "core", "iface"; 634f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 635f126890aSEmmanuel Vadot pinctrl-0 = <&blsp2_i2c2_default>; 636f126890aSEmmanuel Vadot pinctrl-1 = <&blsp2_i2c2_sleep>; 637f126890aSEmmanuel Vadot #address-cells = <1>; 638f126890aSEmmanuel Vadot #size-cells = <0>; 639f126890aSEmmanuel Vadot }; 640f126890aSEmmanuel Vadot 641f126890aSEmmanuel Vadot blsp2_i2c5: i2c@f9967000 { 642f126890aSEmmanuel Vadot status = "disabled"; 643f126890aSEmmanuel Vadot compatible = "qcom,i2c-qup-v2.1.1"; 644f126890aSEmmanuel Vadot reg = <0xf9967000 0x1000>; 645f126890aSEmmanuel Vadot interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>; 646f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP2_QUP5_I2C_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>; 647f126890aSEmmanuel Vadot clock-names = "core", "iface"; 648f126890aSEmmanuel Vadot dmas = <&blsp2_dma 20>, <&blsp2_dma 21>; 649f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 650f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 651f126890aSEmmanuel Vadot pinctrl-0 = <&blsp2_i2c5_default>; 652f126890aSEmmanuel Vadot pinctrl-1 = <&blsp2_i2c5_sleep>; 653f126890aSEmmanuel Vadot #address-cells = <1>; 654f126890aSEmmanuel Vadot #size-cells = <0>; 655f126890aSEmmanuel Vadot }; 656f126890aSEmmanuel Vadot 657f126890aSEmmanuel Vadot blsp2_i2c6: i2c@f9968000 { 658f126890aSEmmanuel Vadot status = "disabled"; 659f126890aSEmmanuel Vadot compatible = "qcom,i2c-qup-v2.1.1"; 660f126890aSEmmanuel Vadot reg = <0xf9968000 0x1000>; 661f126890aSEmmanuel Vadot interrupts = <0 106 IRQ_TYPE_LEVEL_HIGH>; 662f126890aSEmmanuel Vadot clocks = <&gcc GCC_BLSP2_QUP6_I2C_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>; 663f126890aSEmmanuel Vadot clock-names = "core", "iface"; 664f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 665f126890aSEmmanuel Vadot pinctrl-0 = <&blsp2_i2c6_default>; 666f126890aSEmmanuel Vadot pinctrl-1 = <&blsp2_i2c6_sleep>; 667f126890aSEmmanuel Vadot #address-cells = <1>; 668f126890aSEmmanuel Vadot #size-cells = <0>; 669f126890aSEmmanuel Vadot }; 670f126890aSEmmanuel Vadot 671f126890aSEmmanuel Vadot usb: usb@f9a55000 { 672f126890aSEmmanuel Vadot compatible = "qcom,ci-hdrc"; 673f126890aSEmmanuel Vadot reg = <0xf9a55000 0x200>, 674f126890aSEmmanuel Vadot <0xf9a55200 0x200>; 675f126890aSEmmanuel Vadot interrupts = <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>; 676f126890aSEmmanuel Vadot clocks = <&gcc GCC_USB_HS_AHB_CLK>, 677f126890aSEmmanuel Vadot <&gcc GCC_USB_HS_SYSTEM_CLK>; 678f126890aSEmmanuel Vadot clock-names = "iface", "core"; 679f126890aSEmmanuel Vadot assigned-clocks = <&gcc GCC_USB_HS_SYSTEM_CLK>; 680f126890aSEmmanuel Vadot assigned-clock-rates = <75000000>; 681f126890aSEmmanuel Vadot resets = <&gcc GCC_USB_HS_BCR>; 682f126890aSEmmanuel Vadot reset-names = "core"; 683f126890aSEmmanuel Vadot phy_type = "ulpi"; 684f126890aSEmmanuel Vadot dr_mode = "otg"; 685f126890aSEmmanuel Vadot ahb-burst-config = <0>; 686f126890aSEmmanuel Vadot phy-names = "usb-phy"; 687f126890aSEmmanuel Vadot status = "disabled"; 688f126890aSEmmanuel Vadot #reset-cells = <1>; 689f126890aSEmmanuel Vadot 690f126890aSEmmanuel Vadot ulpi { 691f126890aSEmmanuel Vadot usb_hs1_phy: phy-0 { 692f126890aSEmmanuel Vadot compatible = "qcom,usb-hs-phy-msm8974", 693f126890aSEmmanuel Vadot "qcom,usb-hs-phy"; 694f126890aSEmmanuel Vadot #phy-cells = <0>; 695f126890aSEmmanuel Vadot clocks = <&xo_board>, <&gcc GCC_USB2A_PHY_SLEEP_CLK>; 696f126890aSEmmanuel Vadot clock-names = "ref", "sleep"; 697f126890aSEmmanuel Vadot resets = <&gcc GCC_USB2A_PHY_BCR>, <&usb 0>; 698f126890aSEmmanuel Vadot reset-names = "phy", "por"; 699f126890aSEmmanuel Vadot status = "disabled"; 700f126890aSEmmanuel Vadot }; 701f126890aSEmmanuel Vadot 702f126890aSEmmanuel Vadot usb_hs2_phy: phy-1 { 703f126890aSEmmanuel Vadot compatible = "qcom,usb-hs-phy-msm8974", 704f126890aSEmmanuel Vadot "qcom,usb-hs-phy"; 705f126890aSEmmanuel Vadot #phy-cells = <0>; 706f126890aSEmmanuel Vadot clocks = <&xo_board>, <&gcc GCC_USB2B_PHY_SLEEP_CLK>; 707f126890aSEmmanuel Vadot clock-names = "ref", "sleep"; 708f126890aSEmmanuel Vadot resets = <&gcc GCC_USB2B_PHY_BCR>, <&usb 1>; 709f126890aSEmmanuel Vadot reset-names = "phy", "por"; 710f126890aSEmmanuel Vadot status = "disabled"; 711f126890aSEmmanuel Vadot }; 712f126890aSEmmanuel Vadot }; 713f126890aSEmmanuel Vadot }; 714f126890aSEmmanuel Vadot 715f126890aSEmmanuel Vadot rng@f9bff000 { 716f126890aSEmmanuel Vadot compatible = "qcom,prng"; 717f126890aSEmmanuel Vadot reg = <0xf9bff000 0x200>; 718f126890aSEmmanuel Vadot clocks = <&gcc GCC_PRNG_AHB_CLK>; 719f126890aSEmmanuel Vadot clock-names = "core"; 720f126890aSEmmanuel Vadot }; 721f126890aSEmmanuel Vadot 722f126890aSEmmanuel Vadot pronto: remoteproc@fb204000 { 723f126890aSEmmanuel Vadot compatible = "qcom,pronto-v2-pil", "qcom,pronto"; 724f126890aSEmmanuel Vadot reg = <0xfb204000 0x2000>, <0xfb202000 0x1000>, <0xfb21b000 0x3000>; 725f126890aSEmmanuel Vadot reg-names = "ccu", "dxe", "pmu"; 726f126890aSEmmanuel Vadot 727f126890aSEmmanuel Vadot memory-region = <&wcnss_region>; 728f126890aSEmmanuel Vadot 729f126890aSEmmanuel Vadot interrupts-extended = <&intc GIC_SPI 149 IRQ_TYPE_EDGE_RISING>, 730f126890aSEmmanuel Vadot <&wcnss_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 731f126890aSEmmanuel Vadot <&wcnss_smp2p_in 1 IRQ_TYPE_EDGE_RISING>, 732f126890aSEmmanuel Vadot <&wcnss_smp2p_in 2 IRQ_TYPE_EDGE_RISING>, 733f126890aSEmmanuel Vadot <&wcnss_smp2p_in 3 IRQ_TYPE_EDGE_RISING>; 734f126890aSEmmanuel Vadot interrupt-names = "wdog", "fatal", "ready", "handover", "stop-ack"; 735f126890aSEmmanuel Vadot 736f126890aSEmmanuel Vadot qcom,smem-states = <&wcnss_smp2p_out 0>; 737f126890aSEmmanuel Vadot qcom,smem-state-names = "stop"; 738f126890aSEmmanuel Vadot 739f126890aSEmmanuel Vadot status = "disabled"; 740f126890aSEmmanuel Vadot 741f126890aSEmmanuel Vadot iris { 742f126890aSEmmanuel Vadot compatible = "qcom,wcn3680"; 743f126890aSEmmanuel Vadot 744f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_CXO_A2>; 745f126890aSEmmanuel Vadot clock-names = "xo"; 746f126890aSEmmanuel Vadot }; 747f126890aSEmmanuel Vadot 748f126890aSEmmanuel Vadot smd-edge { 749f126890aSEmmanuel Vadot interrupts = <GIC_SPI 142 IRQ_TYPE_EDGE_RISING>; 750f126890aSEmmanuel Vadot 751f126890aSEmmanuel Vadot qcom,ipc = <&apcs 8 17>; 752f126890aSEmmanuel Vadot qcom,smd-edge = <6>; 753f126890aSEmmanuel Vadot 754f126890aSEmmanuel Vadot wcnss { 755f126890aSEmmanuel Vadot compatible = "qcom,wcnss"; 756f126890aSEmmanuel Vadot qcom,smd-channels = "WCNSS_CTRL"; 757f126890aSEmmanuel Vadot status = "disabled"; 758f126890aSEmmanuel Vadot 759f126890aSEmmanuel Vadot qcom,mmio = <&pronto>; 760f126890aSEmmanuel Vadot 761f126890aSEmmanuel Vadot bluetooth { 762f126890aSEmmanuel Vadot compatible = "qcom,wcnss-bt"; 763f126890aSEmmanuel Vadot }; 764f126890aSEmmanuel Vadot 765f126890aSEmmanuel Vadot wifi { 766f126890aSEmmanuel Vadot compatible = "qcom,wcnss-wlan"; 767f126890aSEmmanuel Vadot 768f126890aSEmmanuel Vadot interrupts = <GIC_SPI 145 IRQ_TYPE_EDGE_RISING>, 769f126890aSEmmanuel Vadot <GIC_SPI 146 IRQ_TYPE_EDGE_RISING>; 770f126890aSEmmanuel Vadot interrupt-names = "tx", "rx"; 771f126890aSEmmanuel Vadot 772f126890aSEmmanuel Vadot qcom,smem-states = <&apps_smsm 10>, <&apps_smsm 9>; 773f126890aSEmmanuel Vadot qcom,smem-state-names = "tx-enable", 774f126890aSEmmanuel Vadot "tx-rings-empty"; 775f126890aSEmmanuel Vadot }; 776f126890aSEmmanuel Vadot }; 777f126890aSEmmanuel Vadot }; 778f126890aSEmmanuel Vadot }; 779f126890aSEmmanuel Vadot 780f126890aSEmmanuel Vadot sram@fc190000 { 781f126890aSEmmanuel Vadot compatible = "qcom,msm8974-rpm-stats"; 782f126890aSEmmanuel Vadot reg = <0xfc190000 0x10000>; 783f126890aSEmmanuel Vadot }; 784f126890aSEmmanuel Vadot 785f126890aSEmmanuel Vadot etf@fc307000 { 786f126890aSEmmanuel Vadot compatible = "arm,coresight-tmc", "arm,primecell"; 787f126890aSEmmanuel Vadot reg = <0xfc307000 0x1000>; 788f126890aSEmmanuel Vadot 789f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 790f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 791f126890aSEmmanuel Vadot 792f126890aSEmmanuel Vadot out-ports { 793f126890aSEmmanuel Vadot port { 794f126890aSEmmanuel Vadot etf_out: endpoint { 795f126890aSEmmanuel Vadot remote-endpoint = <&replicator_in>; 796f126890aSEmmanuel Vadot }; 797f126890aSEmmanuel Vadot }; 798f126890aSEmmanuel Vadot }; 799f126890aSEmmanuel Vadot 800f126890aSEmmanuel Vadot in-ports { 801f126890aSEmmanuel Vadot port { 802f126890aSEmmanuel Vadot etf_in: endpoint { 803f126890aSEmmanuel Vadot remote-endpoint = <&merger_out>; 804f126890aSEmmanuel Vadot }; 805f126890aSEmmanuel Vadot }; 806f126890aSEmmanuel Vadot }; 807f126890aSEmmanuel Vadot }; 808f126890aSEmmanuel Vadot 809f126890aSEmmanuel Vadot tpiu@fc318000 { 810f126890aSEmmanuel Vadot compatible = "arm,coresight-tpiu", "arm,primecell"; 811f126890aSEmmanuel Vadot reg = <0xfc318000 0x1000>; 812f126890aSEmmanuel Vadot 813f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 814f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 815f126890aSEmmanuel Vadot 816f126890aSEmmanuel Vadot in-ports { 817f126890aSEmmanuel Vadot port { 818f126890aSEmmanuel Vadot tpiu_in: endpoint { 819f126890aSEmmanuel Vadot remote-endpoint = <&replicator_out1>; 820f126890aSEmmanuel Vadot }; 821f126890aSEmmanuel Vadot }; 822f126890aSEmmanuel Vadot }; 823f126890aSEmmanuel Vadot }; 824f126890aSEmmanuel Vadot 825f126890aSEmmanuel Vadot funnel@fc31a000 { 826f126890aSEmmanuel Vadot compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 827f126890aSEmmanuel Vadot reg = <0xfc31a000 0x1000>; 828f126890aSEmmanuel Vadot 829f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 830f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 831f126890aSEmmanuel Vadot 832f126890aSEmmanuel Vadot in-ports { 833f126890aSEmmanuel Vadot #address-cells = <1>; 834f126890aSEmmanuel Vadot #size-cells = <0>; 835f126890aSEmmanuel Vadot 836f126890aSEmmanuel Vadot /* 837f126890aSEmmanuel Vadot * Not described input ports: 838f126890aSEmmanuel Vadot * 0 - not-connected 839f126890aSEmmanuel Vadot * 1 - connected trought funnel to Multimedia CPU 840f126890aSEmmanuel Vadot * 2 - connected to Wireless CPU 841f126890aSEmmanuel Vadot * 3 - not-connected 842f126890aSEmmanuel Vadot * 4 - not-connected 843f126890aSEmmanuel Vadot * 6 - not-connected 844f126890aSEmmanuel Vadot * 7 - connected to STM 845f126890aSEmmanuel Vadot */ 846f126890aSEmmanuel Vadot port@5 { 847f126890aSEmmanuel Vadot reg = <5>; 848f126890aSEmmanuel Vadot funnel1_in5: endpoint { 849f126890aSEmmanuel Vadot remote-endpoint = <&kpss_out>; 850f126890aSEmmanuel Vadot }; 851f126890aSEmmanuel Vadot }; 852f126890aSEmmanuel Vadot }; 853f126890aSEmmanuel Vadot 854f126890aSEmmanuel Vadot out-ports { 855f126890aSEmmanuel Vadot port { 856f126890aSEmmanuel Vadot funnel1_out: endpoint { 857f126890aSEmmanuel Vadot remote-endpoint = <&merger_in1>; 858f126890aSEmmanuel Vadot }; 859f126890aSEmmanuel Vadot }; 860f126890aSEmmanuel Vadot }; 861f126890aSEmmanuel Vadot }; 862f126890aSEmmanuel Vadot 863f126890aSEmmanuel Vadot funnel@fc31b000 { 864f126890aSEmmanuel Vadot compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 865f126890aSEmmanuel Vadot reg = <0xfc31b000 0x1000>; 866f126890aSEmmanuel Vadot 867f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 868f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 869f126890aSEmmanuel Vadot 870f126890aSEmmanuel Vadot in-ports { 871f126890aSEmmanuel Vadot #address-cells = <1>; 872f126890aSEmmanuel Vadot #size-cells = <0>; 873f126890aSEmmanuel Vadot 874f126890aSEmmanuel Vadot /* 875f126890aSEmmanuel Vadot * Not described input ports: 876f126890aSEmmanuel Vadot * 0 - connected trought funnel to Audio, Modem and 877f126890aSEmmanuel Vadot * Resource and Power Manager CPU's 878f126890aSEmmanuel Vadot * 2...7 - not-connected 879f126890aSEmmanuel Vadot */ 880f126890aSEmmanuel Vadot port@1 { 881f126890aSEmmanuel Vadot reg = <1>; 882f126890aSEmmanuel Vadot merger_in1: endpoint { 883f126890aSEmmanuel Vadot remote-endpoint = <&funnel1_out>; 884f126890aSEmmanuel Vadot }; 885f126890aSEmmanuel Vadot }; 886f126890aSEmmanuel Vadot }; 887f126890aSEmmanuel Vadot 888f126890aSEmmanuel Vadot out-ports { 889f126890aSEmmanuel Vadot port { 890f126890aSEmmanuel Vadot merger_out: endpoint { 891f126890aSEmmanuel Vadot remote-endpoint = <&etf_in>; 892f126890aSEmmanuel Vadot }; 893f126890aSEmmanuel Vadot }; 894f126890aSEmmanuel Vadot }; 895f126890aSEmmanuel Vadot }; 896f126890aSEmmanuel Vadot 897f126890aSEmmanuel Vadot replicator@fc31c000 { 898f126890aSEmmanuel Vadot compatible = "arm,coresight-dynamic-replicator", "arm,primecell"; 899f126890aSEmmanuel Vadot reg = <0xfc31c000 0x1000>; 900f126890aSEmmanuel Vadot 901f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 902f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 903f126890aSEmmanuel Vadot 904f126890aSEmmanuel Vadot out-ports { 905f126890aSEmmanuel Vadot #address-cells = <1>; 906f126890aSEmmanuel Vadot #size-cells = <0>; 907f126890aSEmmanuel Vadot 908f126890aSEmmanuel Vadot port@0 { 909f126890aSEmmanuel Vadot reg = <0>; 910f126890aSEmmanuel Vadot replicator_out0: endpoint { 911f126890aSEmmanuel Vadot remote-endpoint = <&etr_in>; 912f126890aSEmmanuel Vadot }; 913f126890aSEmmanuel Vadot }; 914f126890aSEmmanuel Vadot port@1 { 915f126890aSEmmanuel Vadot reg = <1>; 916f126890aSEmmanuel Vadot replicator_out1: endpoint { 917f126890aSEmmanuel Vadot remote-endpoint = <&tpiu_in>; 918f126890aSEmmanuel Vadot }; 919f126890aSEmmanuel Vadot }; 920f126890aSEmmanuel Vadot }; 921f126890aSEmmanuel Vadot 922f126890aSEmmanuel Vadot in-ports { 923f126890aSEmmanuel Vadot port { 924f126890aSEmmanuel Vadot replicator_in: endpoint { 925f126890aSEmmanuel Vadot remote-endpoint = <&etf_out>; 926f126890aSEmmanuel Vadot }; 927f126890aSEmmanuel Vadot }; 928f126890aSEmmanuel Vadot }; 929f126890aSEmmanuel Vadot }; 930f126890aSEmmanuel Vadot 931f126890aSEmmanuel Vadot etr@fc322000 { 932f126890aSEmmanuel Vadot compatible = "arm,coresight-tmc", "arm,primecell"; 933f126890aSEmmanuel Vadot reg = <0xfc322000 0x1000>; 934f126890aSEmmanuel Vadot 935f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 936f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 937f126890aSEmmanuel Vadot 938f126890aSEmmanuel Vadot in-ports { 939f126890aSEmmanuel Vadot port { 940f126890aSEmmanuel Vadot etr_in: endpoint { 941f126890aSEmmanuel Vadot remote-endpoint = <&replicator_out0>; 942f126890aSEmmanuel Vadot }; 943f126890aSEmmanuel Vadot }; 944f126890aSEmmanuel Vadot }; 945f126890aSEmmanuel Vadot }; 946f126890aSEmmanuel Vadot 947f126890aSEmmanuel Vadot etm@fc33c000 { 948f126890aSEmmanuel Vadot compatible = "arm,coresight-etm4x", "arm,primecell"; 949f126890aSEmmanuel Vadot reg = <0xfc33c000 0x1000>; 950f126890aSEmmanuel Vadot 951f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 952f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 953f126890aSEmmanuel Vadot 954f126890aSEmmanuel Vadot cpu = <&CPU0>; 955f126890aSEmmanuel Vadot 956f126890aSEmmanuel Vadot out-ports { 957f126890aSEmmanuel Vadot port { 958f126890aSEmmanuel Vadot etm0_out: endpoint { 959f126890aSEmmanuel Vadot remote-endpoint = <&kpss_in0>; 960f126890aSEmmanuel Vadot }; 961f126890aSEmmanuel Vadot }; 962f126890aSEmmanuel Vadot }; 963f126890aSEmmanuel Vadot }; 964f126890aSEmmanuel Vadot 965f126890aSEmmanuel Vadot etm@fc33d000 { 966f126890aSEmmanuel Vadot compatible = "arm,coresight-etm4x", "arm,primecell"; 967f126890aSEmmanuel Vadot reg = <0xfc33d000 0x1000>; 968f126890aSEmmanuel Vadot 969f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 970f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 971f126890aSEmmanuel Vadot 972f126890aSEmmanuel Vadot cpu = <&CPU1>; 973f126890aSEmmanuel Vadot 974f126890aSEmmanuel Vadot out-ports { 975f126890aSEmmanuel Vadot port { 976f126890aSEmmanuel Vadot etm1_out: endpoint { 977f126890aSEmmanuel Vadot remote-endpoint = <&kpss_in1>; 978f126890aSEmmanuel Vadot }; 979f126890aSEmmanuel Vadot }; 980f126890aSEmmanuel Vadot }; 981f126890aSEmmanuel Vadot }; 982f126890aSEmmanuel Vadot 983f126890aSEmmanuel Vadot etm@fc33e000 { 984f126890aSEmmanuel Vadot compatible = "arm,coresight-etm4x", "arm,primecell"; 985f126890aSEmmanuel Vadot reg = <0xfc33e000 0x1000>; 986f126890aSEmmanuel Vadot 987f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 988f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 989f126890aSEmmanuel Vadot 990f126890aSEmmanuel Vadot cpu = <&CPU2>; 991f126890aSEmmanuel Vadot 992f126890aSEmmanuel Vadot out-ports { 993f126890aSEmmanuel Vadot port { 994f126890aSEmmanuel Vadot etm2_out: endpoint { 995f126890aSEmmanuel Vadot remote-endpoint = <&kpss_in2>; 996f126890aSEmmanuel Vadot }; 997f126890aSEmmanuel Vadot }; 998f126890aSEmmanuel Vadot }; 999f126890aSEmmanuel Vadot }; 1000f126890aSEmmanuel Vadot 1001f126890aSEmmanuel Vadot etm@fc33f000 { 1002f126890aSEmmanuel Vadot compatible = "arm,coresight-etm4x", "arm,primecell"; 1003f126890aSEmmanuel Vadot reg = <0xfc33f000 0x1000>; 1004f126890aSEmmanuel Vadot 1005f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 1006f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 1007f126890aSEmmanuel Vadot 1008f126890aSEmmanuel Vadot cpu = <&CPU3>; 1009f126890aSEmmanuel Vadot 1010f126890aSEmmanuel Vadot out-ports { 1011f126890aSEmmanuel Vadot port { 1012f126890aSEmmanuel Vadot etm3_out: endpoint { 1013f126890aSEmmanuel Vadot remote-endpoint = <&kpss_in3>; 1014f126890aSEmmanuel Vadot }; 1015f126890aSEmmanuel Vadot }; 1016f126890aSEmmanuel Vadot }; 1017f126890aSEmmanuel Vadot }; 1018f126890aSEmmanuel Vadot 1019f126890aSEmmanuel Vadot /* KPSS funnel, only 4 inputs are used */ 1020f126890aSEmmanuel Vadot funnel@fc345000 { 1021f126890aSEmmanuel Vadot compatible = "arm,coresight-dynamic-funnel", "arm,primecell"; 1022f126890aSEmmanuel Vadot reg = <0xfc345000 0x1000>; 1023f126890aSEmmanuel Vadot 1024f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>; 1025f126890aSEmmanuel Vadot clock-names = "apb_pclk", "atclk"; 1026f126890aSEmmanuel Vadot 1027f126890aSEmmanuel Vadot in-ports { 1028f126890aSEmmanuel Vadot #address-cells = <1>; 1029f126890aSEmmanuel Vadot #size-cells = <0>; 1030f126890aSEmmanuel Vadot 1031f126890aSEmmanuel Vadot port@0 { 1032f126890aSEmmanuel Vadot reg = <0>; 1033f126890aSEmmanuel Vadot kpss_in0: endpoint { 1034f126890aSEmmanuel Vadot remote-endpoint = <&etm0_out>; 1035f126890aSEmmanuel Vadot }; 1036f126890aSEmmanuel Vadot }; 1037f126890aSEmmanuel Vadot port@1 { 1038f126890aSEmmanuel Vadot reg = <1>; 1039f126890aSEmmanuel Vadot kpss_in1: endpoint { 1040f126890aSEmmanuel Vadot remote-endpoint = <&etm1_out>; 1041f126890aSEmmanuel Vadot }; 1042f126890aSEmmanuel Vadot }; 1043f126890aSEmmanuel Vadot port@2 { 1044f126890aSEmmanuel Vadot reg = <2>; 1045f126890aSEmmanuel Vadot kpss_in2: endpoint { 1046f126890aSEmmanuel Vadot remote-endpoint = <&etm2_out>; 1047f126890aSEmmanuel Vadot }; 1048f126890aSEmmanuel Vadot }; 1049f126890aSEmmanuel Vadot port@3 { 1050f126890aSEmmanuel Vadot reg = <3>; 1051f126890aSEmmanuel Vadot kpss_in3: endpoint { 1052f126890aSEmmanuel Vadot remote-endpoint = <&etm3_out>; 1053f126890aSEmmanuel Vadot }; 1054f126890aSEmmanuel Vadot }; 1055f126890aSEmmanuel Vadot }; 1056f126890aSEmmanuel Vadot 1057f126890aSEmmanuel Vadot out-ports { 1058f126890aSEmmanuel Vadot port { 1059f126890aSEmmanuel Vadot kpss_out: endpoint { 1060f126890aSEmmanuel Vadot remote-endpoint = <&funnel1_in5>; 1061f126890aSEmmanuel Vadot }; 1062f126890aSEmmanuel Vadot }; 1063f126890aSEmmanuel Vadot }; 1064f126890aSEmmanuel Vadot }; 1065f126890aSEmmanuel Vadot 1066f126890aSEmmanuel Vadot gcc: clock-controller@fc400000 { 1067f126890aSEmmanuel Vadot compatible = "qcom,gcc-msm8974"; 1068f126890aSEmmanuel Vadot #clock-cells = <1>; 1069f126890aSEmmanuel Vadot #reset-cells = <1>; 1070f126890aSEmmanuel Vadot #power-domain-cells = <1>; 1071f126890aSEmmanuel Vadot reg = <0xfc400000 0x4000>; 1072f126890aSEmmanuel Vadot 1073f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>, 1074f126890aSEmmanuel Vadot <&sleep_clk>; 1075f126890aSEmmanuel Vadot clock-names = "xo", 1076f126890aSEmmanuel Vadot "sleep_clk"; 1077f126890aSEmmanuel Vadot }; 1078f126890aSEmmanuel Vadot 1079f126890aSEmmanuel Vadot rpm_msg_ram: sram@fc428000 { 1080f126890aSEmmanuel Vadot compatible = "qcom,rpm-msg-ram"; 1081f126890aSEmmanuel Vadot reg = <0xfc428000 0x4000>; 1082*84943d6fSEmmanuel Vadot 1083*84943d6fSEmmanuel Vadot #address-cells = <1>; 1084*84943d6fSEmmanuel Vadot #size-cells = <1>; 1085*84943d6fSEmmanuel Vadot ranges = <0 0xfc428000 0x4000>; 1086*84943d6fSEmmanuel Vadot 1087*84943d6fSEmmanuel Vadot apss_master_stats: sram@150 { 1088*84943d6fSEmmanuel Vadot reg = <0x150 0x14>; 1089*84943d6fSEmmanuel Vadot }; 1090*84943d6fSEmmanuel Vadot 1091*84943d6fSEmmanuel Vadot mpss_master_stats: sram@b50 { 1092*84943d6fSEmmanuel Vadot reg = <0xb50 0x14>; 1093*84943d6fSEmmanuel Vadot }; 1094*84943d6fSEmmanuel Vadot 1095*84943d6fSEmmanuel Vadot lpss_master_stats: sram@1550 { 1096*84943d6fSEmmanuel Vadot reg = <0x1550 0x14>; 1097*84943d6fSEmmanuel Vadot }; 1098*84943d6fSEmmanuel Vadot 1099*84943d6fSEmmanuel Vadot pronto_master_stats: sram@1f50 { 1100*84943d6fSEmmanuel Vadot reg = <0x1f50 0x14>; 1101*84943d6fSEmmanuel Vadot }; 1102f126890aSEmmanuel Vadot }; 1103f126890aSEmmanuel Vadot 1104f126890aSEmmanuel Vadot bimc: interconnect@fc380000 { 1105f126890aSEmmanuel Vadot reg = <0xfc380000 0x6a000>; 1106f126890aSEmmanuel Vadot compatible = "qcom,msm8974-bimc"; 1107f126890aSEmmanuel Vadot #interconnect-cells = <1>; 1108f126890aSEmmanuel Vadot clock-names = "bus", "bus_a"; 1109f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_BIMC_CLK>, 1110f126890aSEmmanuel Vadot <&rpmcc RPM_SMD_BIMC_A_CLK>; 1111f126890aSEmmanuel Vadot }; 1112f126890aSEmmanuel Vadot 1113f126890aSEmmanuel Vadot snoc: interconnect@fc460000 { 1114f126890aSEmmanuel Vadot reg = <0xfc460000 0x4000>; 1115f126890aSEmmanuel Vadot compatible = "qcom,msm8974-snoc"; 1116f126890aSEmmanuel Vadot #interconnect-cells = <1>; 1117f126890aSEmmanuel Vadot clock-names = "bus", "bus_a"; 1118f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_SNOC_CLK>, 1119f126890aSEmmanuel Vadot <&rpmcc RPM_SMD_SNOC_A_CLK>; 1120f126890aSEmmanuel Vadot }; 1121f126890aSEmmanuel Vadot 1122f126890aSEmmanuel Vadot pnoc: interconnect@fc468000 { 1123f126890aSEmmanuel Vadot reg = <0xfc468000 0x4000>; 1124f126890aSEmmanuel Vadot compatible = "qcom,msm8974-pnoc"; 1125f126890aSEmmanuel Vadot #interconnect-cells = <1>; 1126f126890aSEmmanuel Vadot clock-names = "bus", "bus_a"; 1127f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_PNOC_CLK>, 1128f126890aSEmmanuel Vadot <&rpmcc RPM_SMD_PNOC_A_CLK>; 1129f126890aSEmmanuel Vadot }; 1130f126890aSEmmanuel Vadot 1131f126890aSEmmanuel Vadot ocmemnoc: interconnect@fc470000 { 1132f126890aSEmmanuel Vadot reg = <0xfc470000 0x4000>; 1133f126890aSEmmanuel Vadot compatible = "qcom,msm8974-ocmemnoc"; 1134f126890aSEmmanuel Vadot #interconnect-cells = <1>; 1135f126890aSEmmanuel Vadot clock-names = "bus", "bus_a"; 1136f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_OCMEMGX_CLK>, 1137f126890aSEmmanuel Vadot <&rpmcc RPM_SMD_OCMEMGX_A_CLK>; 1138f126890aSEmmanuel Vadot }; 1139f126890aSEmmanuel Vadot 1140f126890aSEmmanuel Vadot mmssnoc: interconnect@fc478000 { 1141f126890aSEmmanuel Vadot reg = <0xfc478000 0x4000>; 1142f126890aSEmmanuel Vadot compatible = "qcom,msm8974-mmssnoc"; 1143f126890aSEmmanuel Vadot #interconnect-cells = <1>; 1144f126890aSEmmanuel Vadot clock-names = "bus", "bus_a"; 1145f126890aSEmmanuel Vadot clocks = <&mmcc MMSS_S0_AXI_CLK>, 1146f126890aSEmmanuel Vadot <&mmcc MMSS_S0_AXI_CLK>; 1147f126890aSEmmanuel Vadot }; 1148f126890aSEmmanuel Vadot 1149f126890aSEmmanuel Vadot cnoc: interconnect@fc480000 { 1150f126890aSEmmanuel Vadot reg = <0xfc480000 0x4000>; 1151f126890aSEmmanuel Vadot compatible = "qcom,msm8974-cnoc"; 1152f126890aSEmmanuel Vadot #interconnect-cells = <1>; 1153f126890aSEmmanuel Vadot clock-names = "bus", "bus_a"; 1154f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_CNOC_CLK>, 1155f126890aSEmmanuel Vadot <&rpmcc RPM_SMD_CNOC_A_CLK>; 1156f126890aSEmmanuel Vadot }; 1157f126890aSEmmanuel Vadot 1158f126890aSEmmanuel Vadot tsens: thermal-sensor@fc4a9000 { 1159f126890aSEmmanuel Vadot compatible = "qcom,msm8974-tsens", "qcom,tsens-v0_1"; 1160f126890aSEmmanuel Vadot reg = <0xfc4a9000 0x1000>, /* TM */ 1161f126890aSEmmanuel Vadot <0xfc4a8000 0x1000>; /* SROT */ 1162f126890aSEmmanuel Vadot nvmem-cells = <&tsens_mode>, 1163f126890aSEmmanuel Vadot <&tsens_base1>, <&tsens_base2>, 1164f126890aSEmmanuel Vadot <&tsens_use_backup>, 1165f126890aSEmmanuel Vadot <&tsens_mode_backup>, 1166f126890aSEmmanuel Vadot <&tsens_base1_backup>, <&tsens_base2_backup>, 1167f126890aSEmmanuel Vadot <&tsens_s0_p1>, <&tsens_s0_p2>, 1168f126890aSEmmanuel Vadot <&tsens_s1_p1>, <&tsens_s1_p2>, 1169f126890aSEmmanuel Vadot <&tsens_s2_p1>, <&tsens_s2_p2>, 1170f126890aSEmmanuel Vadot <&tsens_s3_p1>, <&tsens_s3_p2>, 1171f126890aSEmmanuel Vadot <&tsens_s4_p1>, <&tsens_s4_p2>, 1172f126890aSEmmanuel Vadot <&tsens_s5_p1>, <&tsens_s5_p2>, 1173f126890aSEmmanuel Vadot <&tsens_s6_p1>, <&tsens_s6_p2>, 1174f126890aSEmmanuel Vadot <&tsens_s7_p1>, <&tsens_s7_p2>, 1175f126890aSEmmanuel Vadot <&tsens_s8_p1>, <&tsens_s8_p2>, 1176f126890aSEmmanuel Vadot <&tsens_s9_p1>, <&tsens_s9_p2>, 1177f126890aSEmmanuel Vadot <&tsens_s10_p1>, <&tsens_s10_p2>, 1178f126890aSEmmanuel Vadot <&tsens_s0_p1_backup>, <&tsens_s0_p2_backup>, 1179f126890aSEmmanuel Vadot <&tsens_s1_p1_backup>, <&tsens_s1_p2_backup>, 1180f126890aSEmmanuel Vadot <&tsens_s2_p1_backup>, <&tsens_s2_p2_backup>, 1181f126890aSEmmanuel Vadot <&tsens_s3_p1_backup>, <&tsens_s3_p2_backup>, 1182f126890aSEmmanuel Vadot <&tsens_s4_p1_backup>, <&tsens_s4_p2_backup>, 1183f126890aSEmmanuel Vadot <&tsens_s5_p1_backup>, <&tsens_s5_p2_backup>, 1184f126890aSEmmanuel Vadot <&tsens_s6_p1_backup>, <&tsens_s6_p2_backup>, 1185f126890aSEmmanuel Vadot <&tsens_s7_p1_backup>, <&tsens_s7_p2_backup>, 1186f126890aSEmmanuel Vadot <&tsens_s8_p1_backup>, <&tsens_s8_p2_backup>, 1187f126890aSEmmanuel Vadot <&tsens_s9_p1_backup>, <&tsens_s9_p2_backup>, 1188f126890aSEmmanuel Vadot <&tsens_s10_p1_backup>, <&tsens_s10_p2_backup>; 1189f126890aSEmmanuel Vadot nvmem-cell-names = "mode", 1190f126890aSEmmanuel Vadot "base1", "base2", 1191f126890aSEmmanuel Vadot "use_backup", 1192f126890aSEmmanuel Vadot "mode_backup", 1193f126890aSEmmanuel Vadot "base1_backup", "base2_backup", 1194f126890aSEmmanuel Vadot "s0_p1", "s0_p2", 1195f126890aSEmmanuel Vadot "s1_p1", "s1_p2", 1196f126890aSEmmanuel Vadot "s2_p1", "s2_p2", 1197f126890aSEmmanuel Vadot "s3_p1", "s3_p2", 1198f126890aSEmmanuel Vadot "s4_p1", "s4_p2", 1199f126890aSEmmanuel Vadot "s5_p1", "s5_p2", 1200f126890aSEmmanuel Vadot "s6_p1", "s6_p2", 1201f126890aSEmmanuel Vadot "s7_p1", "s7_p2", 1202f126890aSEmmanuel Vadot "s8_p1", "s8_p2", 1203f126890aSEmmanuel Vadot "s9_p1", "s9_p2", 1204f126890aSEmmanuel Vadot "s10_p1", "s10_p2", 1205f126890aSEmmanuel Vadot "s0_p1_backup", "s0_p2_backup", 1206f126890aSEmmanuel Vadot "s1_p1_backup", "s1_p2_backup", 1207f126890aSEmmanuel Vadot "s2_p1_backup", "s2_p2_backup", 1208f126890aSEmmanuel Vadot "s3_p1_backup", "s3_p2_backup", 1209f126890aSEmmanuel Vadot "s4_p1_backup", "s4_p2_backup", 1210f126890aSEmmanuel Vadot "s5_p1_backup", "s5_p2_backup", 1211f126890aSEmmanuel Vadot "s6_p1_backup", "s6_p2_backup", 1212f126890aSEmmanuel Vadot "s7_p1_backup", "s7_p2_backup", 1213f126890aSEmmanuel Vadot "s8_p1_backup", "s8_p2_backup", 1214f126890aSEmmanuel Vadot "s9_p1_backup", "s9_p2_backup", 1215f126890aSEmmanuel Vadot "s10_p1_backup", "s10_p2_backup"; 1216f126890aSEmmanuel Vadot #qcom,sensors = <11>; 1217f126890aSEmmanuel Vadot interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>; 1218f126890aSEmmanuel Vadot interrupt-names = "uplow"; 1219f126890aSEmmanuel Vadot #thermal-sensor-cells = <1>; 1220f126890aSEmmanuel Vadot }; 1221f126890aSEmmanuel Vadot 1222f126890aSEmmanuel Vadot restart@fc4ab000 { 1223f126890aSEmmanuel Vadot compatible = "qcom,pshold"; 1224f126890aSEmmanuel Vadot reg = <0xfc4ab000 0x4>; 1225f126890aSEmmanuel Vadot }; 1226f126890aSEmmanuel Vadot 1227f126890aSEmmanuel Vadot qfprom: qfprom@fc4bc000 { 1228f126890aSEmmanuel Vadot compatible = "qcom,msm8974-qfprom", "qcom,qfprom"; 1229f126890aSEmmanuel Vadot reg = <0xfc4bc000 0x1000>; 1230f126890aSEmmanuel Vadot #address-cells = <1>; 1231f126890aSEmmanuel Vadot #size-cells = <1>; 1232f126890aSEmmanuel Vadot 1233f126890aSEmmanuel Vadot tsens_base1: base1@d0 { 1234f126890aSEmmanuel Vadot reg = <0xd0 0x1>; 1235f126890aSEmmanuel Vadot bits = <0 8>; 1236f126890aSEmmanuel Vadot }; 1237f126890aSEmmanuel Vadot 1238f126890aSEmmanuel Vadot tsens_s0_p1: s0-p1@d1 { 1239f126890aSEmmanuel Vadot reg = <0xd1 0x1>; 1240f126890aSEmmanuel Vadot bits = <0 6>; 1241f126890aSEmmanuel Vadot }; 1242f126890aSEmmanuel Vadot 1243f126890aSEmmanuel Vadot tsens_s1_p1: s1-p1@d2 { 1244f126890aSEmmanuel Vadot reg = <0xd1 0x2>; 1245f126890aSEmmanuel Vadot bits = <6 6>; 1246f126890aSEmmanuel Vadot }; 1247f126890aSEmmanuel Vadot 1248f126890aSEmmanuel Vadot tsens_s2_p1: s2-p1@d2 { 1249f126890aSEmmanuel Vadot reg = <0xd2 0x2>; 1250f126890aSEmmanuel Vadot bits = <4 6>; 1251f126890aSEmmanuel Vadot }; 1252f126890aSEmmanuel Vadot 1253f126890aSEmmanuel Vadot tsens_s3_p1: s3-p1@d3 { 1254f126890aSEmmanuel Vadot reg = <0xd3 0x1>; 1255f126890aSEmmanuel Vadot bits = <2 6>; 1256f126890aSEmmanuel Vadot }; 1257f126890aSEmmanuel Vadot 1258f126890aSEmmanuel Vadot tsens_s4_p1: s4-p1@d4 { 1259f126890aSEmmanuel Vadot reg = <0xd4 0x1>; 1260f126890aSEmmanuel Vadot bits = <0 6>; 1261f126890aSEmmanuel Vadot }; 1262f126890aSEmmanuel Vadot 1263f126890aSEmmanuel Vadot tsens_s5_p1: s5-p1@d4 { 1264f126890aSEmmanuel Vadot reg = <0xd4 0x2>; 1265f126890aSEmmanuel Vadot bits = <6 6>; 1266f126890aSEmmanuel Vadot }; 1267f126890aSEmmanuel Vadot 1268f126890aSEmmanuel Vadot tsens_s6_p1: s6-p1@d5 { 1269f126890aSEmmanuel Vadot reg = <0xd5 0x2>; 1270f126890aSEmmanuel Vadot bits = <4 6>; 1271f126890aSEmmanuel Vadot }; 1272f126890aSEmmanuel Vadot 1273f126890aSEmmanuel Vadot tsens_s7_p1: s7-p1@d6 { 1274f126890aSEmmanuel Vadot reg = <0xd6 0x1>; 1275f126890aSEmmanuel Vadot bits = <2 6>; 1276f126890aSEmmanuel Vadot }; 1277f126890aSEmmanuel Vadot 1278f126890aSEmmanuel Vadot tsens_s8_p1: s8-p1@d7 { 1279f126890aSEmmanuel Vadot reg = <0xd7 0x1>; 1280f126890aSEmmanuel Vadot bits = <0 6>; 1281f126890aSEmmanuel Vadot }; 1282f126890aSEmmanuel Vadot 1283f126890aSEmmanuel Vadot tsens_mode: mode@d7 { 1284f126890aSEmmanuel Vadot reg = <0xd7 0x1>; 1285f126890aSEmmanuel Vadot bits = <6 2>; 1286f126890aSEmmanuel Vadot }; 1287f126890aSEmmanuel Vadot 1288f126890aSEmmanuel Vadot tsens_s9_p1: s9-p1@d8 { 1289f126890aSEmmanuel Vadot reg = <0xd8 0x1>; 1290f126890aSEmmanuel Vadot bits = <0 6>; 1291f126890aSEmmanuel Vadot }; 1292f126890aSEmmanuel Vadot 1293f126890aSEmmanuel Vadot tsens_s10_p1: s10_p1@d8 { 1294f126890aSEmmanuel Vadot reg = <0xd8 0x2>; 1295f126890aSEmmanuel Vadot bits = <6 6>; 1296f126890aSEmmanuel Vadot }; 1297f126890aSEmmanuel Vadot 1298f126890aSEmmanuel Vadot tsens_base2: base2@d9 { 1299f126890aSEmmanuel Vadot reg = <0xd9 0x2>; 1300f126890aSEmmanuel Vadot bits = <4 8>; 1301f126890aSEmmanuel Vadot }; 1302f126890aSEmmanuel Vadot 1303f126890aSEmmanuel Vadot tsens_s0_p2: s0-p2@da { 1304f126890aSEmmanuel Vadot reg = <0xda 0x2>; 1305f126890aSEmmanuel Vadot bits = <4 6>; 1306f126890aSEmmanuel Vadot }; 1307f126890aSEmmanuel Vadot 1308f126890aSEmmanuel Vadot tsens_s1_p2: s1-p2@db { 1309f126890aSEmmanuel Vadot reg = <0xdb 0x1>; 1310f126890aSEmmanuel Vadot bits = <2 6>; 1311f126890aSEmmanuel Vadot }; 1312f126890aSEmmanuel Vadot 1313f126890aSEmmanuel Vadot tsens_s2_p2: s2-p2@dc { 1314f126890aSEmmanuel Vadot reg = <0xdc 0x1>; 1315f126890aSEmmanuel Vadot bits = <0 6>; 1316f126890aSEmmanuel Vadot }; 1317f126890aSEmmanuel Vadot 1318f126890aSEmmanuel Vadot tsens_s3_p2: s3-p2@dc { 1319f126890aSEmmanuel Vadot reg = <0xdc 0x2>; 1320f126890aSEmmanuel Vadot bits = <6 6>; 1321f126890aSEmmanuel Vadot }; 1322f126890aSEmmanuel Vadot 1323f126890aSEmmanuel Vadot tsens_s4_p2: s4-p2@dd { 1324f126890aSEmmanuel Vadot reg = <0xdd 0x2>; 1325f126890aSEmmanuel Vadot bits = <4 6>; 1326f126890aSEmmanuel Vadot }; 1327f126890aSEmmanuel Vadot 1328f126890aSEmmanuel Vadot tsens_s5_p2: s5-p2@de { 1329f126890aSEmmanuel Vadot reg = <0xde 0x2>; 1330f126890aSEmmanuel Vadot bits = <2 6>; 1331f126890aSEmmanuel Vadot }; 1332f126890aSEmmanuel Vadot 1333f126890aSEmmanuel Vadot tsens_s6_p2: s6-p2@df { 1334f126890aSEmmanuel Vadot reg = <0xdf 0x1>; 1335f126890aSEmmanuel Vadot bits = <0 6>; 1336f126890aSEmmanuel Vadot }; 1337f126890aSEmmanuel Vadot 1338f126890aSEmmanuel Vadot tsens_s7_p2: s7-p2@e0 { 1339f126890aSEmmanuel Vadot reg = <0xe0 0x1>; 1340f126890aSEmmanuel Vadot bits = <0 6>; 1341f126890aSEmmanuel Vadot }; 1342f126890aSEmmanuel Vadot 1343f126890aSEmmanuel Vadot tsens_s8_p2: s8-p2@e0 { 1344f126890aSEmmanuel Vadot reg = <0xe0 0x2>; 1345f126890aSEmmanuel Vadot bits = <6 6>; 1346f126890aSEmmanuel Vadot }; 1347f126890aSEmmanuel Vadot 1348f126890aSEmmanuel Vadot tsens_s9_p2: s9-p2@e1 { 1349f126890aSEmmanuel Vadot reg = <0xe1 0x2>; 1350f126890aSEmmanuel Vadot bits = <4 6>; 1351f126890aSEmmanuel Vadot }; 1352f126890aSEmmanuel Vadot 1353f126890aSEmmanuel Vadot tsens_s10_p2: s10_p2@e2 { 1354f126890aSEmmanuel Vadot reg = <0xe2 0x2>; 1355f126890aSEmmanuel Vadot bits = <2 6>; 1356f126890aSEmmanuel Vadot }; 1357f126890aSEmmanuel Vadot 1358f126890aSEmmanuel Vadot tsens_s5_p2_backup: s5-p2_backup@e3 { 1359f126890aSEmmanuel Vadot reg = <0xe3 0x2>; 1360f126890aSEmmanuel Vadot bits = <0 6>; 1361f126890aSEmmanuel Vadot }; 1362f126890aSEmmanuel Vadot 1363f126890aSEmmanuel Vadot tsens_mode_backup: mode_backup@e3 { 1364f126890aSEmmanuel Vadot reg = <0xe3 0x1>; 1365f126890aSEmmanuel Vadot bits = <6 2>; 1366f126890aSEmmanuel Vadot }; 1367f126890aSEmmanuel Vadot 1368f126890aSEmmanuel Vadot tsens_s6_p2_backup: s6-p2_backup@e4 { 1369f126890aSEmmanuel Vadot reg = <0xe4 0x1>; 1370f126890aSEmmanuel Vadot bits = <0 6>; 1371f126890aSEmmanuel Vadot }; 1372f126890aSEmmanuel Vadot 1373f126890aSEmmanuel Vadot tsens_s7_p2_backup: s7-p2_backup@e4 { 1374f126890aSEmmanuel Vadot reg = <0xe4 0x2>; 1375f126890aSEmmanuel Vadot bits = <6 6>; 1376f126890aSEmmanuel Vadot }; 1377f126890aSEmmanuel Vadot 1378f126890aSEmmanuel Vadot tsens_s8_p2_backup: s8-p2_backup@e5 { 1379f126890aSEmmanuel Vadot reg = <0xe5 0x2>; 1380f126890aSEmmanuel Vadot bits = <4 6>; 1381f126890aSEmmanuel Vadot }; 1382f126890aSEmmanuel Vadot 1383f126890aSEmmanuel Vadot tsens_s9_p2_backup: s9-p2_backup@e6 { 1384f126890aSEmmanuel Vadot reg = <0xe6 0x2>; 1385f126890aSEmmanuel Vadot bits = <2 6>; 1386f126890aSEmmanuel Vadot }; 1387f126890aSEmmanuel Vadot 1388f126890aSEmmanuel Vadot tsens_s10_p2_backup: s10_p2_backup@e7 { 1389f126890aSEmmanuel Vadot reg = <0xe7 0x1>; 1390f126890aSEmmanuel Vadot bits = <0 6>; 1391f126890aSEmmanuel Vadot }; 1392f126890aSEmmanuel Vadot 1393f126890aSEmmanuel Vadot tsens_base1_backup: base1_backup@440 { 1394f126890aSEmmanuel Vadot reg = <0x440 0x1>; 1395f126890aSEmmanuel Vadot bits = <0 8>; 1396f126890aSEmmanuel Vadot }; 1397f126890aSEmmanuel Vadot 1398f126890aSEmmanuel Vadot tsens_s0_p1_backup: s0-p1_backup@441 { 1399f126890aSEmmanuel Vadot reg = <0x441 0x1>; 1400f126890aSEmmanuel Vadot bits = <0 6>; 1401f126890aSEmmanuel Vadot }; 1402f126890aSEmmanuel Vadot 1403f126890aSEmmanuel Vadot tsens_s1_p1_backup: s1-p1_backup@442 { 1404f126890aSEmmanuel Vadot reg = <0x441 0x2>; 1405f126890aSEmmanuel Vadot bits = <6 6>; 1406f126890aSEmmanuel Vadot }; 1407f126890aSEmmanuel Vadot 1408f126890aSEmmanuel Vadot tsens_s2_p1_backup: s2-p1_backup@442 { 1409f126890aSEmmanuel Vadot reg = <0x442 0x2>; 1410f126890aSEmmanuel Vadot bits = <4 6>; 1411f126890aSEmmanuel Vadot }; 1412f126890aSEmmanuel Vadot 1413f126890aSEmmanuel Vadot tsens_s3_p1_backup: s3-p1_backup@443 { 1414f126890aSEmmanuel Vadot reg = <0x443 0x1>; 1415f126890aSEmmanuel Vadot bits = <2 6>; 1416f126890aSEmmanuel Vadot }; 1417f126890aSEmmanuel Vadot 1418f126890aSEmmanuel Vadot tsens_s4_p1_backup: s4-p1_backup@444 { 1419f126890aSEmmanuel Vadot reg = <0x444 0x1>; 1420f126890aSEmmanuel Vadot bits = <0 6>; 1421f126890aSEmmanuel Vadot }; 1422f126890aSEmmanuel Vadot 1423f126890aSEmmanuel Vadot tsens_s5_p1_backup: s5-p1_backup@444 { 1424f126890aSEmmanuel Vadot reg = <0x444 0x2>; 1425f126890aSEmmanuel Vadot bits = <6 6>; 1426f126890aSEmmanuel Vadot }; 1427f126890aSEmmanuel Vadot 1428f126890aSEmmanuel Vadot tsens_s6_p1_backup: s6-p1_backup@445 { 1429f126890aSEmmanuel Vadot reg = <0x445 0x2>; 1430f126890aSEmmanuel Vadot bits = <4 6>; 1431f126890aSEmmanuel Vadot }; 1432f126890aSEmmanuel Vadot 1433f126890aSEmmanuel Vadot tsens_s7_p1_backup: s7-p1_backup@446 { 1434f126890aSEmmanuel Vadot reg = <0x446 0x1>; 1435f126890aSEmmanuel Vadot bits = <2 6>; 1436f126890aSEmmanuel Vadot }; 1437f126890aSEmmanuel Vadot 1438f126890aSEmmanuel Vadot tsens_use_backup: use_backup@447 { 1439f126890aSEmmanuel Vadot reg = <0x447 0x1>; 1440f126890aSEmmanuel Vadot bits = <5 3>; 1441f126890aSEmmanuel Vadot }; 1442f126890aSEmmanuel Vadot 1443f126890aSEmmanuel Vadot tsens_s8_p1_backup: s8-p1_backup@448 { 1444f126890aSEmmanuel Vadot reg = <0x448 0x1>; 1445f126890aSEmmanuel Vadot bits = <0 6>; 1446f126890aSEmmanuel Vadot }; 1447f126890aSEmmanuel Vadot 1448f126890aSEmmanuel Vadot tsens_s9_p1_backup: s9-p1_backup@448 { 1449f126890aSEmmanuel Vadot reg = <0x448 0x2>; 1450f126890aSEmmanuel Vadot bits = <6 6>; 1451f126890aSEmmanuel Vadot }; 1452f126890aSEmmanuel Vadot 1453f126890aSEmmanuel Vadot tsens_s10_p1_backup: s10_p1_backup@449 { 1454f126890aSEmmanuel Vadot reg = <0x449 0x2>; 1455f126890aSEmmanuel Vadot bits = <4 6>; 1456f126890aSEmmanuel Vadot }; 1457f126890aSEmmanuel Vadot 1458f126890aSEmmanuel Vadot tsens_base2_backup: base2_backup@44a { 1459f126890aSEmmanuel Vadot reg = <0x44a 0x2>; 1460f126890aSEmmanuel Vadot bits = <2 8>; 1461f126890aSEmmanuel Vadot }; 1462f126890aSEmmanuel Vadot 1463f126890aSEmmanuel Vadot tsens_s0_p2_backup: s0-p2_backup@44b { 1464f126890aSEmmanuel Vadot reg = <0x44b 0x3>; 1465f126890aSEmmanuel Vadot bits = <2 6>; 1466f126890aSEmmanuel Vadot }; 1467f126890aSEmmanuel Vadot 1468f126890aSEmmanuel Vadot tsens_s1_p2_backup: s1-p2_backup@44c { 1469f126890aSEmmanuel Vadot reg = <0x44c 0x1>; 1470f126890aSEmmanuel Vadot bits = <0 6>; 1471f126890aSEmmanuel Vadot }; 1472f126890aSEmmanuel Vadot 1473f126890aSEmmanuel Vadot tsens_s2_p2_backup: s2-p2_backup@44c { 1474f126890aSEmmanuel Vadot reg = <0x44c 0x2>; 1475f126890aSEmmanuel Vadot bits = <6 6>; 1476f126890aSEmmanuel Vadot }; 1477f126890aSEmmanuel Vadot 1478f126890aSEmmanuel Vadot tsens_s3_p2_backup: s3-p2_backup@44d { 1479f126890aSEmmanuel Vadot reg = <0x44d 0x2>; 1480f126890aSEmmanuel Vadot bits = <4 6>; 1481f126890aSEmmanuel Vadot }; 1482f126890aSEmmanuel Vadot 1483f126890aSEmmanuel Vadot tsens_s4_p2_backup: s4-p2_backup@44e { 1484f126890aSEmmanuel Vadot reg = <0x44e 0x1>; 1485f126890aSEmmanuel Vadot bits = <2 6>; 1486f126890aSEmmanuel Vadot }; 1487f126890aSEmmanuel Vadot }; 1488f126890aSEmmanuel Vadot 1489f126890aSEmmanuel Vadot spmi_bus: spmi@fc4cf000 { 1490f126890aSEmmanuel Vadot compatible = "qcom,spmi-pmic-arb"; 1491f126890aSEmmanuel Vadot reg-names = "core", "intr", "cnfg"; 1492f126890aSEmmanuel Vadot reg = <0xfc4cf000 0x1000>, 1493f126890aSEmmanuel Vadot <0xfc4cb000 0x1000>, 1494f126890aSEmmanuel Vadot <0xfc4ca000 0x1000>; 1495f126890aSEmmanuel Vadot interrupt-names = "periph_irq"; 1496f126890aSEmmanuel Vadot interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>; 1497f126890aSEmmanuel Vadot qcom,ee = <0>; 1498f126890aSEmmanuel Vadot qcom,channel = <0>; 1499f126890aSEmmanuel Vadot #address-cells = <2>; 1500f126890aSEmmanuel Vadot #size-cells = <0>; 1501f126890aSEmmanuel Vadot interrupt-controller; 1502f126890aSEmmanuel Vadot #interrupt-cells = <4>; 1503f126890aSEmmanuel Vadot }; 1504f126890aSEmmanuel Vadot 1505f126890aSEmmanuel Vadot bam_dmux_dma: dma-controller@fc834000 { 1506f126890aSEmmanuel Vadot compatible = "qcom,bam-v1.4.0"; 1507f126890aSEmmanuel Vadot reg = <0xfc834000 0x7000>; 1508f126890aSEmmanuel Vadot interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>; 1509f126890aSEmmanuel Vadot #dma-cells = <1>; 1510f126890aSEmmanuel Vadot qcom,ee = <0>; 1511f126890aSEmmanuel Vadot 1512f126890aSEmmanuel Vadot num-channels = <6>; 1513f126890aSEmmanuel Vadot qcom,num-ees = <1>; 1514f126890aSEmmanuel Vadot qcom,powered-remotely; 1515f126890aSEmmanuel Vadot }; 1516f126890aSEmmanuel Vadot 1517f126890aSEmmanuel Vadot remoteproc_mss: remoteproc@fc880000 { 1518f126890aSEmmanuel Vadot compatible = "qcom,msm8974-mss-pil"; 1519f126890aSEmmanuel Vadot reg = <0xfc880000 0x100>, <0xfc820000 0x020>; 1520f126890aSEmmanuel Vadot reg-names = "qdsp6", "rmb"; 1521f126890aSEmmanuel Vadot 1522f126890aSEmmanuel Vadot interrupts-extended = <&intc GIC_SPI 24 IRQ_TYPE_EDGE_RISING>, 1523f126890aSEmmanuel Vadot <&modem_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 1524f126890aSEmmanuel Vadot <&modem_smp2p_in 1 IRQ_TYPE_EDGE_RISING>, 1525f126890aSEmmanuel Vadot <&modem_smp2p_in 2 IRQ_TYPE_EDGE_RISING>, 1526f126890aSEmmanuel Vadot <&modem_smp2p_in 3 IRQ_TYPE_EDGE_RISING>; 1527f126890aSEmmanuel Vadot interrupt-names = "wdog", "fatal", "ready", "handover", "stop-ack"; 1528f126890aSEmmanuel Vadot 1529f126890aSEmmanuel Vadot clocks = <&gcc GCC_MSS_Q6_BIMC_AXI_CLK>, 1530f126890aSEmmanuel Vadot <&gcc GCC_MSS_CFG_AHB_CLK>, 1531f126890aSEmmanuel Vadot <&gcc GCC_BOOT_ROM_AHB_CLK>, 1532f126890aSEmmanuel Vadot <&xo_board>; 1533f126890aSEmmanuel Vadot clock-names = "iface", "bus", "mem", "xo"; 1534f126890aSEmmanuel Vadot 1535f126890aSEmmanuel Vadot resets = <&gcc GCC_MSS_RESTART>; 1536f126890aSEmmanuel Vadot reset-names = "mss_restart"; 1537f126890aSEmmanuel Vadot 1538f126890aSEmmanuel Vadot qcom,halt-regs = <&tcsr_mutex 0x1180 0x1200 0x1280>; 1539f126890aSEmmanuel Vadot 1540f126890aSEmmanuel Vadot qcom,smem-states = <&modem_smp2p_out 0>; 1541f126890aSEmmanuel Vadot qcom,smem-state-names = "stop"; 1542f126890aSEmmanuel Vadot 1543f126890aSEmmanuel Vadot status = "disabled"; 1544f126890aSEmmanuel Vadot 1545f126890aSEmmanuel Vadot mba { 1546f126890aSEmmanuel Vadot memory-region = <&mba_region>; 1547f126890aSEmmanuel Vadot }; 1548f126890aSEmmanuel Vadot 1549f126890aSEmmanuel Vadot mpss { 1550f126890aSEmmanuel Vadot memory-region = <&mpss_region>; 1551f126890aSEmmanuel Vadot }; 1552f126890aSEmmanuel Vadot 1553f126890aSEmmanuel Vadot bam_dmux: bam-dmux { 1554f126890aSEmmanuel Vadot compatible = "qcom,bam-dmux"; 1555f126890aSEmmanuel Vadot 1556f126890aSEmmanuel Vadot interrupt-parent = <&modem_smsm>; 1557f126890aSEmmanuel Vadot interrupts = <1 IRQ_TYPE_EDGE_BOTH>, <11 IRQ_TYPE_EDGE_BOTH>; 1558f126890aSEmmanuel Vadot interrupt-names = "pc", "pc-ack"; 1559f126890aSEmmanuel Vadot 1560f126890aSEmmanuel Vadot qcom,smem-states = <&apps_smsm 1>, <&apps_smsm 11>; 1561f126890aSEmmanuel Vadot qcom,smem-state-names = "pc", "pc-ack"; 1562f126890aSEmmanuel Vadot 1563f126890aSEmmanuel Vadot dmas = <&bam_dmux_dma 4>, <&bam_dmux_dma 5>; 1564f126890aSEmmanuel Vadot dma-names = "tx", "rx"; 1565f126890aSEmmanuel Vadot }; 1566f126890aSEmmanuel Vadot 1567f126890aSEmmanuel Vadot smd-edge { 1568f126890aSEmmanuel Vadot interrupts = <GIC_SPI 25 IRQ_TYPE_EDGE_RISING>; 1569f126890aSEmmanuel Vadot 1570f126890aSEmmanuel Vadot qcom,ipc = <&apcs 8 12>; 1571f126890aSEmmanuel Vadot qcom,smd-edge = <0>; 1572f126890aSEmmanuel Vadot 1573f126890aSEmmanuel Vadot label = "modem"; 1574f126890aSEmmanuel Vadot }; 1575f126890aSEmmanuel Vadot }; 1576f126890aSEmmanuel Vadot 1577f126890aSEmmanuel Vadot tcsr_mutex: hwlock@fd484000 { 1578f126890aSEmmanuel Vadot compatible = "qcom,msm8974-tcsr-mutex", "qcom,tcsr-mutex", "syscon"; 1579f126890aSEmmanuel Vadot reg = <0xfd484000 0x2000>; 1580f126890aSEmmanuel Vadot #hwlock-cells = <1>; 1581f126890aSEmmanuel Vadot }; 1582f126890aSEmmanuel Vadot 1583f126890aSEmmanuel Vadot tcsr: syscon@fd4a0000 { 1584f126890aSEmmanuel Vadot compatible = "qcom,tcsr-msm8974", "syscon"; 1585f126890aSEmmanuel Vadot reg = <0xfd4a0000 0x10000>; 1586f126890aSEmmanuel Vadot }; 1587f126890aSEmmanuel Vadot 1588f126890aSEmmanuel Vadot tlmm: pinctrl@fd510000 { 1589f126890aSEmmanuel Vadot compatible = "qcom,msm8974-pinctrl"; 1590f126890aSEmmanuel Vadot reg = <0xfd510000 0x4000>; 1591f126890aSEmmanuel Vadot gpio-controller; 1592f126890aSEmmanuel Vadot gpio-ranges = <&tlmm 0 0 146>; 1593f126890aSEmmanuel Vadot #gpio-cells = <2>; 1594f126890aSEmmanuel Vadot interrupt-controller; 1595f126890aSEmmanuel Vadot #interrupt-cells = <2>; 1596f126890aSEmmanuel Vadot interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>; 1597f126890aSEmmanuel Vadot 1598f126890aSEmmanuel Vadot sdc1_off: sdc1-off-state { 1599f126890aSEmmanuel Vadot clk-pins { 1600f126890aSEmmanuel Vadot pins = "sdc1_clk"; 1601f126890aSEmmanuel Vadot bias-disable; 1602f126890aSEmmanuel Vadot drive-strength = <2>; 1603f126890aSEmmanuel Vadot }; 1604f126890aSEmmanuel Vadot 1605f126890aSEmmanuel Vadot cmd-pins { 1606f126890aSEmmanuel Vadot pins = "sdc1_cmd"; 1607f126890aSEmmanuel Vadot bias-pull-up; 1608f126890aSEmmanuel Vadot drive-strength = <2>; 1609f126890aSEmmanuel Vadot }; 1610f126890aSEmmanuel Vadot 1611f126890aSEmmanuel Vadot data-pins { 1612f126890aSEmmanuel Vadot pins = "sdc1_data"; 1613f126890aSEmmanuel Vadot bias-pull-up; 1614f126890aSEmmanuel Vadot drive-strength = <2>; 1615f126890aSEmmanuel Vadot }; 1616f126890aSEmmanuel Vadot }; 1617f126890aSEmmanuel Vadot 1618f126890aSEmmanuel Vadot sdc2_off: sdc2-off-state { 1619f126890aSEmmanuel Vadot clk-pins { 1620f126890aSEmmanuel Vadot pins = "sdc2_clk"; 1621f126890aSEmmanuel Vadot bias-disable; 1622f126890aSEmmanuel Vadot drive-strength = <2>; 1623f126890aSEmmanuel Vadot }; 1624f126890aSEmmanuel Vadot 1625f126890aSEmmanuel Vadot cmd-pins { 1626f126890aSEmmanuel Vadot pins = "sdc2_cmd"; 1627f126890aSEmmanuel Vadot bias-pull-up; 1628f126890aSEmmanuel Vadot drive-strength = <2>; 1629f126890aSEmmanuel Vadot }; 1630f126890aSEmmanuel Vadot 1631f126890aSEmmanuel Vadot data-pins { 1632f126890aSEmmanuel Vadot pins = "sdc2_data"; 1633f126890aSEmmanuel Vadot bias-pull-up; 1634f126890aSEmmanuel Vadot drive-strength = <2>; 1635f126890aSEmmanuel Vadot }; 1636f126890aSEmmanuel Vadot 1637f126890aSEmmanuel Vadot cd-pins { 1638f126890aSEmmanuel Vadot pins = "gpio54"; 1639f126890aSEmmanuel Vadot function = "gpio"; 1640f126890aSEmmanuel Vadot bias-disable; 1641f126890aSEmmanuel Vadot drive-strength = <2>; 1642f126890aSEmmanuel Vadot }; 1643f126890aSEmmanuel Vadot }; 1644f126890aSEmmanuel Vadot 1645f126890aSEmmanuel Vadot blsp1_uart2_default: blsp1-uart2-default-state { 1646f126890aSEmmanuel Vadot rx-pins { 1647f126890aSEmmanuel Vadot pins = "gpio5"; 1648f126890aSEmmanuel Vadot function = "blsp_uart2"; 1649f126890aSEmmanuel Vadot drive-strength = <2>; 1650f126890aSEmmanuel Vadot bias-pull-up; 1651f126890aSEmmanuel Vadot }; 1652f126890aSEmmanuel Vadot 1653f126890aSEmmanuel Vadot tx-pins { 1654f126890aSEmmanuel Vadot pins = "gpio4"; 1655f126890aSEmmanuel Vadot function = "blsp_uart2"; 1656f126890aSEmmanuel Vadot drive-strength = <4>; 1657f126890aSEmmanuel Vadot bias-disable; 1658f126890aSEmmanuel Vadot }; 1659f126890aSEmmanuel Vadot }; 1660f126890aSEmmanuel Vadot 1661f126890aSEmmanuel Vadot blsp2_uart1_default: blsp2-uart1-default-state { 1662f126890aSEmmanuel Vadot tx-rts-pins { 1663f126890aSEmmanuel Vadot pins = "gpio41", "gpio44"; 1664f126890aSEmmanuel Vadot function = "blsp_uart7"; 1665f126890aSEmmanuel Vadot drive-strength = <2>; 1666f126890aSEmmanuel Vadot bias-disable; 1667f126890aSEmmanuel Vadot }; 1668f126890aSEmmanuel Vadot 1669f126890aSEmmanuel Vadot rx-cts-pins { 1670f126890aSEmmanuel Vadot pins = "gpio42", "gpio43"; 1671f126890aSEmmanuel Vadot function = "blsp_uart7"; 1672f126890aSEmmanuel Vadot drive-strength = <2>; 1673f126890aSEmmanuel Vadot bias-pull-up; 1674f126890aSEmmanuel Vadot }; 1675f126890aSEmmanuel Vadot }; 1676f126890aSEmmanuel Vadot 1677f126890aSEmmanuel Vadot blsp2_uart1_sleep: blsp2-uart1-sleep-state { 1678f126890aSEmmanuel Vadot pins = "gpio41", "gpio42", "gpio43", "gpio44"; 1679f126890aSEmmanuel Vadot function = "gpio"; 1680f126890aSEmmanuel Vadot drive-strength = <2>; 1681f126890aSEmmanuel Vadot bias-pull-down; 1682f126890aSEmmanuel Vadot }; 1683f126890aSEmmanuel Vadot 1684f126890aSEmmanuel Vadot blsp2_uart4_default: blsp2-uart4-default-state { 1685f126890aSEmmanuel Vadot tx-rts-pins { 1686f126890aSEmmanuel Vadot pins = "gpio53", "gpio56"; 1687f126890aSEmmanuel Vadot function = "blsp_uart10"; 1688f126890aSEmmanuel Vadot drive-strength = <2>; 1689f126890aSEmmanuel Vadot bias-disable; 1690f126890aSEmmanuel Vadot }; 1691f126890aSEmmanuel Vadot 1692f126890aSEmmanuel Vadot rx-cts-pins { 1693f126890aSEmmanuel Vadot pins = "gpio54", "gpio55"; 1694f126890aSEmmanuel Vadot function = "blsp_uart10"; 1695f126890aSEmmanuel Vadot drive-strength = <2>; 1696f126890aSEmmanuel Vadot bias-pull-up; 1697f126890aSEmmanuel Vadot }; 1698f126890aSEmmanuel Vadot }; 1699f126890aSEmmanuel Vadot 1700f126890aSEmmanuel Vadot blsp1_i2c1_default: blsp1-i2c1-default-state { 1701f126890aSEmmanuel Vadot pins = "gpio2", "gpio3"; 1702f126890aSEmmanuel Vadot function = "blsp_i2c1"; 1703f126890aSEmmanuel Vadot drive-strength = <2>; 1704f126890aSEmmanuel Vadot bias-disable; 1705f126890aSEmmanuel Vadot }; 1706f126890aSEmmanuel Vadot 1707f126890aSEmmanuel Vadot blsp1_i2c1_sleep: blsp1-i2c1-sleep-state { 1708f126890aSEmmanuel Vadot pins = "gpio2", "gpio3"; 1709f126890aSEmmanuel Vadot function = "blsp_i2c1"; 1710f126890aSEmmanuel Vadot drive-strength = <2>; 1711f126890aSEmmanuel Vadot bias-pull-up; 1712f126890aSEmmanuel Vadot }; 1713f126890aSEmmanuel Vadot 1714f126890aSEmmanuel Vadot blsp1_i2c2_default: blsp1-i2c2-default-state { 1715f126890aSEmmanuel Vadot pins = "gpio6", "gpio7"; 1716f126890aSEmmanuel Vadot function = "blsp_i2c2"; 1717f126890aSEmmanuel Vadot drive-strength = <2>; 1718f126890aSEmmanuel Vadot bias-disable; 1719f126890aSEmmanuel Vadot }; 1720f126890aSEmmanuel Vadot 1721f126890aSEmmanuel Vadot blsp1_i2c2_sleep: blsp1-i2c2-sleep-state { 1722f126890aSEmmanuel Vadot pins = "gpio6", "gpio7"; 1723f126890aSEmmanuel Vadot function = "blsp_i2c2"; 1724f126890aSEmmanuel Vadot drive-strength = <2>; 1725f126890aSEmmanuel Vadot bias-pull-up; 1726f126890aSEmmanuel Vadot }; 1727f126890aSEmmanuel Vadot 1728f126890aSEmmanuel Vadot blsp1_i2c3_default: blsp1-i2c3-default-state { 1729f126890aSEmmanuel Vadot pins = "gpio10", "gpio11"; 1730f126890aSEmmanuel Vadot function = "blsp_i2c3"; 1731f126890aSEmmanuel Vadot drive-strength = <2>; 1732f126890aSEmmanuel Vadot bias-disable; 1733f126890aSEmmanuel Vadot }; 1734f126890aSEmmanuel Vadot 1735f126890aSEmmanuel Vadot blsp1_i2c3_sleep: blsp1-i2c3-sleep-state { 1736f126890aSEmmanuel Vadot pins = "gpio10", "gpio11"; 1737f126890aSEmmanuel Vadot function = "blsp_i2c3"; 1738f126890aSEmmanuel Vadot drive-strength = <2>; 1739f126890aSEmmanuel Vadot bias-pull-up; 1740f126890aSEmmanuel Vadot }; 1741f126890aSEmmanuel Vadot 1742f126890aSEmmanuel Vadot /* BLSP1_I2C4 info is missing */ 1743f126890aSEmmanuel Vadot 1744f126890aSEmmanuel Vadot /* BLSP1_I2C5 info is missing */ 1745f126890aSEmmanuel Vadot 1746f126890aSEmmanuel Vadot blsp1_i2c6_default: blsp1-i2c6-default-state { 1747f126890aSEmmanuel Vadot pins = "gpio29", "gpio30"; 1748f126890aSEmmanuel Vadot function = "blsp_i2c6"; 1749f126890aSEmmanuel Vadot drive-strength = <2>; 1750f126890aSEmmanuel Vadot bias-disable; 1751f126890aSEmmanuel Vadot }; 1752f126890aSEmmanuel Vadot 1753f126890aSEmmanuel Vadot blsp1_i2c6_sleep: blsp1-i2c6-sleep-state { 1754f126890aSEmmanuel Vadot pins = "gpio29", "gpio30"; 1755f126890aSEmmanuel Vadot function = "blsp_i2c6"; 1756f126890aSEmmanuel Vadot drive-strength = <2>; 1757f126890aSEmmanuel Vadot bias-pull-up; 1758f126890aSEmmanuel Vadot }; 1759f126890aSEmmanuel Vadot /* 6 interfaces per QUP, BLSP2 indexes are numbered (n)+6 */ 1760f126890aSEmmanuel Vadot 1761f126890aSEmmanuel Vadot /* BLSP2_I2C1 info is missing */ 1762f126890aSEmmanuel Vadot 1763f126890aSEmmanuel Vadot blsp2_i2c2_default: blsp2-i2c2-default-state { 1764f126890aSEmmanuel Vadot pins = "gpio47", "gpio48"; 1765f126890aSEmmanuel Vadot function = "blsp_i2c8"; 1766f126890aSEmmanuel Vadot drive-strength = <2>; 1767f126890aSEmmanuel Vadot bias-disable; 1768f126890aSEmmanuel Vadot }; 1769f126890aSEmmanuel Vadot 1770f126890aSEmmanuel Vadot blsp2_i2c2_sleep: blsp2-i2c2-sleep-state { 1771f126890aSEmmanuel Vadot pins = "gpio47", "gpio48"; 1772f126890aSEmmanuel Vadot function = "blsp_i2c8"; 1773f126890aSEmmanuel Vadot drive-strength = <2>; 1774f126890aSEmmanuel Vadot bias-pull-up; 1775f126890aSEmmanuel Vadot }; 1776f126890aSEmmanuel Vadot 1777f126890aSEmmanuel Vadot /* BLSP2_I2C3 info is missing */ 1778f126890aSEmmanuel Vadot 1779f126890aSEmmanuel Vadot /* BLSP2_I2C4 info is missing */ 1780f126890aSEmmanuel Vadot 1781f126890aSEmmanuel Vadot blsp2_i2c5_default: blsp2-i2c5-default-state { 1782f126890aSEmmanuel Vadot pins = "gpio83", "gpio84"; 1783f126890aSEmmanuel Vadot function = "blsp_i2c11"; 1784f126890aSEmmanuel Vadot drive-strength = <2>; 1785f126890aSEmmanuel Vadot bias-disable; 1786f126890aSEmmanuel Vadot }; 1787f126890aSEmmanuel Vadot 1788f126890aSEmmanuel Vadot blsp2_i2c5_sleep: blsp2-i2c5-sleep-state { 1789f126890aSEmmanuel Vadot pins = "gpio83", "gpio84"; 1790f126890aSEmmanuel Vadot function = "blsp_i2c11"; 1791f126890aSEmmanuel Vadot drive-strength = <2>; 1792f126890aSEmmanuel Vadot bias-pull-up; 1793f126890aSEmmanuel Vadot }; 1794f126890aSEmmanuel Vadot 1795f126890aSEmmanuel Vadot blsp2_i2c6_default: blsp2-i2c6-default-state { 1796f126890aSEmmanuel Vadot pins = "gpio87", "gpio88"; 1797f126890aSEmmanuel Vadot function = "blsp_i2c12"; 1798f126890aSEmmanuel Vadot drive-strength = <2>; 1799f126890aSEmmanuel Vadot bias-disable; 1800f126890aSEmmanuel Vadot }; 1801f126890aSEmmanuel Vadot 1802f126890aSEmmanuel Vadot blsp2_i2c6_sleep: blsp2-i2c6-sleep-state { 1803f126890aSEmmanuel Vadot pins = "gpio87", "gpio88"; 1804f126890aSEmmanuel Vadot function = "blsp_i2c12"; 1805f126890aSEmmanuel Vadot drive-strength = <2>; 1806f126890aSEmmanuel Vadot bias-pull-up; 1807f126890aSEmmanuel Vadot }; 1808f126890aSEmmanuel Vadot 1809f126890aSEmmanuel Vadot cci_default: cci-default-state { 1810f126890aSEmmanuel Vadot cci_i2c0_default: cci-i2c0-default-pins { 1811f126890aSEmmanuel Vadot pins = "gpio19", "gpio20"; 1812f126890aSEmmanuel Vadot function = "cci_i2c0"; 1813f126890aSEmmanuel Vadot drive-strength = <2>; 1814f126890aSEmmanuel Vadot bias-disable; 1815f126890aSEmmanuel Vadot }; 1816f126890aSEmmanuel Vadot 1817f126890aSEmmanuel Vadot cci_i2c1_default: cci-i2c1-default-pins { 1818f126890aSEmmanuel Vadot pins = "gpio21", "gpio22"; 1819f126890aSEmmanuel Vadot function = "cci_i2c1"; 1820f126890aSEmmanuel Vadot drive-strength = <2>; 1821f126890aSEmmanuel Vadot bias-disable; 1822f126890aSEmmanuel Vadot }; 1823f126890aSEmmanuel Vadot }; 1824f126890aSEmmanuel Vadot 1825f126890aSEmmanuel Vadot cci_sleep: cci-sleep-state { 1826f126890aSEmmanuel Vadot cci_i2c0_sleep: cci-i2c0-sleep-pins { 1827f126890aSEmmanuel Vadot pins = "gpio19", "gpio20"; 1828f126890aSEmmanuel Vadot function = "gpio"; 1829f126890aSEmmanuel Vadot drive-strength = <2>; 1830f126890aSEmmanuel Vadot bias-disable; 1831f126890aSEmmanuel Vadot }; 1832f126890aSEmmanuel Vadot 1833f126890aSEmmanuel Vadot cci_i2c1_sleep: cci-i2c1-sleep-pins { 1834f126890aSEmmanuel Vadot pins = "gpio21", "gpio22"; 1835f126890aSEmmanuel Vadot function = "gpio"; 1836f126890aSEmmanuel Vadot drive-strength = <2>; 1837f126890aSEmmanuel Vadot bias-disable; 1838f126890aSEmmanuel Vadot }; 1839f126890aSEmmanuel Vadot }; 1840f126890aSEmmanuel Vadot 1841f126890aSEmmanuel Vadot spi8_default: spi8_default-state { 1842f126890aSEmmanuel Vadot mosi-pins { 1843f126890aSEmmanuel Vadot pins = "gpio45"; 1844f126890aSEmmanuel Vadot function = "blsp_spi8"; 1845f126890aSEmmanuel Vadot }; 1846f126890aSEmmanuel Vadot miso-pins { 1847f126890aSEmmanuel Vadot pins = "gpio46"; 1848f126890aSEmmanuel Vadot function = "blsp_spi8"; 1849f126890aSEmmanuel Vadot }; 1850f126890aSEmmanuel Vadot cs-pins { 1851f126890aSEmmanuel Vadot pins = "gpio47"; 1852f126890aSEmmanuel Vadot function = "blsp_spi8"; 1853f126890aSEmmanuel Vadot }; 1854f126890aSEmmanuel Vadot clk-pins { 1855f126890aSEmmanuel Vadot pins = "gpio48"; 1856f126890aSEmmanuel Vadot function = "blsp_spi8"; 1857f126890aSEmmanuel Vadot }; 1858f126890aSEmmanuel Vadot }; 1859f126890aSEmmanuel Vadot }; 1860f126890aSEmmanuel Vadot 1861f126890aSEmmanuel Vadot mmcc: clock-controller@fd8c0000 { 1862f126890aSEmmanuel Vadot compatible = "qcom,mmcc-msm8974"; 1863f126890aSEmmanuel Vadot #clock-cells = <1>; 1864f126890aSEmmanuel Vadot #reset-cells = <1>; 1865f126890aSEmmanuel Vadot #power-domain-cells = <1>; 1866f126890aSEmmanuel Vadot reg = <0xfd8c0000 0x6000>; 1867f126890aSEmmanuel Vadot clocks = <&xo_board>, 1868f126890aSEmmanuel Vadot <&gcc GCC_MMSS_GPLL0_CLK_SRC>, 1869f126890aSEmmanuel Vadot <&gcc GPLL0_VOTE>, 1870f126890aSEmmanuel Vadot <&gcc GPLL1_VOTE>, 1871f126890aSEmmanuel Vadot <&rpmcc RPM_SMD_GFX3D_CLK_SRC>, 1872f126890aSEmmanuel Vadot <&mdss_dsi0_phy 1>, 1873f126890aSEmmanuel Vadot <&mdss_dsi0_phy 0>, 1874f126890aSEmmanuel Vadot <&mdss_dsi1_phy 1>, 1875f126890aSEmmanuel Vadot <&mdss_dsi1_phy 0>, 1876f126890aSEmmanuel Vadot <0>, 1877f126890aSEmmanuel Vadot <0>, 1878f126890aSEmmanuel Vadot <0>; 1879f126890aSEmmanuel Vadot clock-names = "xo", 1880f126890aSEmmanuel Vadot "mmss_gpll0_vote", 1881f126890aSEmmanuel Vadot "gpll0_vote", 1882f126890aSEmmanuel Vadot "gpll1_vote", 1883f126890aSEmmanuel Vadot "gfx3d_clk_src", 1884f126890aSEmmanuel Vadot "dsi0pll", 1885f126890aSEmmanuel Vadot "dsi0pllbyte", 1886f126890aSEmmanuel Vadot "dsi1pll", 1887f126890aSEmmanuel Vadot "dsi1pllbyte", 1888f126890aSEmmanuel Vadot "hdmipll", 1889f126890aSEmmanuel Vadot "edp_link_clk", 1890f126890aSEmmanuel Vadot "edp_vco_div"; 1891f126890aSEmmanuel Vadot }; 1892f126890aSEmmanuel Vadot 1893f126890aSEmmanuel Vadot mdss: display-subsystem@fd900000 { 1894f126890aSEmmanuel Vadot compatible = "qcom,mdss"; 1895f126890aSEmmanuel Vadot reg = <0xfd900000 0x100>, <0xfd924000 0x1000>; 1896f126890aSEmmanuel Vadot reg-names = "mdss_phys", "vbif_phys"; 1897f126890aSEmmanuel Vadot 1898f126890aSEmmanuel Vadot power-domains = <&mmcc MDSS_GDSC>; 1899f126890aSEmmanuel Vadot 1900f126890aSEmmanuel Vadot clocks = <&mmcc MDSS_AHB_CLK>, 1901f126890aSEmmanuel Vadot <&mmcc MDSS_AXI_CLK>, 1902f126890aSEmmanuel Vadot <&mmcc MDSS_VSYNC_CLK>; 1903f126890aSEmmanuel Vadot clock-names = "iface", "bus", "vsync"; 1904f126890aSEmmanuel Vadot 1905f126890aSEmmanuel Vadot interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>; 1906f126890aSEmmanuel Vadot 1907f126890aSEmmanuel Vadot interrupt-controller; 1908f126890aSEmmanuel Vadot #interrupt-cells = <1>; 1909f126890aSEmmanuel Vadot 1910f126890aSEmmanuel Vadot status = "disabled"; 1911f126890aSEmmanuel Vadot 1912f126890aSEmmanuel Vadot #address-cells = <1>; 1913f126890aSEmmanuel Vadot #size-cells = <1>; 1914f126890aSEmmanuel Vadot ranges; 1915f126890aSEmmanuel Vadot 1916f126890aSEmmanuel Vadot mdp: display-controller@fd900000 { 1917f126890aSEmmanuel Vadot compatible = "qcom,msm8974-mdp5", "qcom,mdp5"; 1918f126890aSEmmanuel Vadot reg = <0xfd900100 0x22000>; 1919f126890aSEmmanuel Vadot reg-names = "mdp_phys"; 1920f126890aSEmmanuel Vadot 1921f126890aSEmmanuel Vadot interrupt-parent = <&mdss>; 1922f126890aSEmmanuel Vadot interrupts = <0>; 1923f126890aSEmmanuel Vadot 1924f126890aSEmmanuel Vadot clocks = <&mmcc MDSS_AHB_CLK>, 1925f126890aSEmmanuel Vadot <&mmcc MDSS_AXI_CLK>, 1926f126890aSEmmanuel Vadot <&mmcc MDSS_MDP_CLK>, 1927f126890aSEmmanuel Vadot <&mmcc MDSS_VSYNC_CLK>; 1928f126890aSEmmanuel Vadot clock-names = "iface", "bus", "core", "vsync"; 1929f126890aSEmmanuel Vadot 1930f126890aSEmmanuel Vadot interconnects = <&mmssnoc MNOC_MAS_MDP_PORT0 &bimc BIMC_SLV_EBI_CH0>; 1931f126890aSEmmanuel Vadot interconnect-names = "mdp0-mem"; 1932f126890aSEmmanuel Vadot 1933f126890aSEmmanuel Vadot ports { 1934f126890aSEmmanuel Vadot #address-cells = <1>; 1935f126890aSEmmanuel Vadot #size-cells = <0>; 1936f126890aSEmmanuel Vadot 1937f126890aSEmmanuel Vadot port@0 { 1938f126890aSEmmanuel Vadot reg = <0>; 1939f126890aSEmmanuel Vadot mdp5_intf1_out: endpoint { 1940f126890aSEmmanuel Vadot remote-endpoint = <&mdss_dsi0_in>; 1941f126890aSEmmanuel Vadot }; 1942f126890aSEmmanuel Vadot }; 1943f126890aSEmmanuel Vadot 1944f126890aSEmmanuel Vadot port@1 { 1945f126890aSEmmanuel Vadot reg = <1>; 1946f126890aSEmmanuel Vadot mdp5_intf2_out: endpoint { 1947f126890aSEmmanuel Vadot remote-endpoint = <&mdss_dsi1_in>; 1948f126890aSEmmanuel Vadot }; 1949f126890aSEmmanuel Vadot }; 1950f126890aSEmmanuel Vadot }; 1951f126890aSEmmanuel Vadot }; 1952f126890aSEmmanuel Vadot 1953f126890aSEmmanuel Vadot mdss_dsi0: dsi@fd922800 { 1954f126890aSEmmanuel Vadot compatible = "qcom,msm8974-dsi-ctrl", 1955f126890aSEmmanuel Vadot "qcom,mdss-dsi-ctrl"; 1956f126890aSEmmanuel Vadot reg = <0xfd922800 0x1f8>; 1957f126890aSEmmanuel Vadot reg-names = "dsi_ctrl"; 1958f126890aSEmmanuel Vadot 1959f126890aSEmmanuel Vadot interrupt-parent = <&mdss>; 1960f126890aSEmmanuel Vadot interrupts = <4>; 1961f126890aSEmmanuel Vadot 1962f126890aSEmmanuel Vadot assigned-clocks = <&mmcc BYTE0_CLK_SRC>, <&mmcc PCLK0_CLK_SRC>; 1963f126890aSEmmanuel Vadot assigned-clock-parents = <&mdss_dsi0_phy 0>, <&mdss_dsi0_phy 1>; 1964f126890aSEmmanuel Vadot 1965f126890aSEmmanuel Vadot clocks = <&mmcc MDSS_MDP_CLK>, 1966f126890aSEmmanuel Vadot <&mmcc MDSS_AHB_CLK>, 1967f126890aSEmmanuel Vadot <&mmcc MDSS_AXI_CLK>, 1968f126890aSEmmanuel Vadot <&mmcc MDSS_BYTE0_CLK>, 1969f126890aSEmmanuel Vadot <&mmcc MDSS_PCLK0_CLK>, 1970f126890aSEmmanuel Vadot <&mmcc MDSS_ESC0_CLK>, 1971f126890aSEmmanuel Vadot <&mmcc MMSS_MISC_AHB_CLK>; 1972f126890aSEmmanuel Vadot clock-names = "mdp_core", 1973f126890aSEmmanuel Vadot "iface", 1974f126890aSEmmanuel Vadot "bus", 1975f126890aSEmmanuel Vadot "byte", 1976f126890aSEmmanuel Vadot "pixel", 1977f126890aSEmmanuel Vadot "core", 1978f126890aSEmmanuel Vadot "core_mmss"; 1979f126890aSEmmanuel Vadot 1980f126890aSEmmanuel Vadot phys = <&mdss_dsi0_phy>; 1981f126890aSEmmanuel Vadot 1982f126890aSEmmanuel Vadot status = "disabled"; 1983f126890aSEmmanuel Vadot 1984f126890aSEmmanuel Vadot #address-cells = <1>; 1985f126890aSEmmanuel Vadot #size-cells = <0>; 1986f126890aSEmmanuel Vadot 1987f126890aSEmmanuel Vadot ports { 1988f126890aSEmmanuel Vadot #address-cells = <1>; 1989f126890aSEmmanuel Vadot #size-cells = <0>; 1990f126890aSEmmanuel Vadot 1991f126890aSEmmanuel Vadot port@0 { 1992f126890aSEmmanuel Vadot reg = <0>; 1993f126890aSEmmanuel Vadot mdss_dsi0_in: endpoint { 1994f126890aSEmmanuel Vadot remote-endpoint = <&mdp5_intf1_out>; 1995f126890aSEmmanuel Vadot }; 1996f126890aSEmmanuel Vadot }; 1997f126890aSEmmanuel Vadot 1998f126890aSEmmanuel Vadot port@1 { 1999f126890aSEmmanuel Vadot reg = <1>; 2000f126890aSEmmanuel Vadot mdss_dsi0_out: endpoint { 2001f126890aSEmmanuel Vadot }; 2002f126890aSEmmanuel Vadot }; 2003f126890aSEmmanuel Vadot }; 2004f126890aSEmmanuel Vadot }; 2005f126890aSEmmanuel Vadot 2006f126890aSEmmanuel Vadot mdss_dsi0_phy: phy@fd922a00 { 2007f126890aSEmmanuel Vadot compatible = "qcom,dsi-phy-28nm-hpm"; 2008f126890aSEmmanuel Vadot reg = <0xfd922a00 0xd4>, 2009f126890aSEmmanuel Vadot <0xfd922b00 0x280>, 2010f126890aSEmmanuel Vadot <0xfd922d80 0x30>; 2011f126890aSEmmanuel Vadot reg-names = "dsi_pll", 2012f126890aSEmmanuel Vadot "dsi_phy", 2013f126890aSEmmanuel Vadot "dsi_phy_regulator"; 2014f126890aSEmmanuel Vadot 2015f126890aSEmmanuel Vadot #clock-cells = <1>; 2016f126890aSEmmanuel Vadot #phy-cells = <0>; 2017f126890aSEmmanuel Vadot 2018f126890aSEmmanuel Vadot clocks = <&mmcc MDSS_AHB_CLK>, <&xo_board>; 2019f126890aSEmmanuel Vadot clock-names = "iface", "ref"; 2020f126890aSEmmanuel Vadot 2021f126890aSEmmanuel Vadot status = "disabled"; 2022f126890aSEmmanuel Vadot }; 2023f126890aSEmmanuel Vadot 2024f126890aSEmmanuel Vadot mdss_dsi1: dsi@fd922e00 { 2025f126890aSEmmanuel Vadot compatible = "qcom,msm8974-dsi-ctrl", 2026f126890aSEmmanuel Vadot "qcom,mdss-dsi-ctrl"; 2027f126890aSEmmanuel Vadot reg = <0xfd922e00 0x1f8>; 2028f126890aSEmmanuel Vadot reg-names = "dsi_ctrl"; 2029f126890aSEmmanuel Vadot 2030f126890aSEmmanuel Vadot interrupt-parent = <&mdss>; 2031f126890aSEmmanuel Vadot interrupts = <4>; 2032f126890aSEmmanuel Vadot 2033f126890aSEmmanuel Vadot assigned-clocks = <&mmcc BYTE1_CLK_SRC>, <&mmcc PCLK1_CLK_SRC>; 2034f126890aSEmmanuel Vadot assigned-clock-parents = <&mdss_dsi1_phy 0>, <&mdss_dsi1_phy 1>; 2035f126890aSEmmanuel Vadot 2036f126890aSEmmanuel Vadot clocks = <&mmcc MDSS_MDP_CLK>, 2037f126890aSEmmanuel Vadot <&mmcc MDSS_AHB_CLK>, 2038f126890aSEmmanuel Vadot <&mmcc MDSS_AXI_CLK>, 2039f126890aSEmmanuel Vadot <&mmcc MDSS_BYTE1_CLK>, 2040f126890aSEmmanuel Vadot <&mmcc MDSS_PCLK1_CLK>, 2041f126890aSEmmanuel Vadot <&mmcc MDSS_ESC1_CLK>, 2042f126890aSEmmanuel Vadot <&mmcc MMSS_MISC_AHB_CLK>; 2043f126890aSEmmanuel Vadot clock-names = "mdp_core", 2044f126890aSEmmanuel Vadot "iface", 2045f126890aSEmmanuel Vadot "bus", 2046f126890aSEmmanuel Vadot "byte", 2047f126890aSEmmanuel Vadot "pixel", 2048f126890aSEmmanuel Vadot "core", 2049f126890aSEmmanuel Vadot "core_mmss"; 2050f126890aSEmmanuel Vadot 2051f126890aSEmmanuel Vadot phys = <&mdss_dsi1_phy>; 2052f126890aSEmmanuel Vadot 2053f126890aSEmmanuel Vadot status = "disabled"; 2054f126890aSEmmanuel Vadot 2055f126890aSEmmanuel Vadot #address-cells = <1>; 2056f126890aSEmmanuel Vadot #size-cells = <0>; 2057f126890aSEmmanuel Vadot 2058f126890aSEmmanuel Vadot ports { 2059f126890aSEmmanuel Vadot #address-cells = <1>; 2060f126890aSEmmanuel Vadot #size-cells = <0>; 2061f126890aSEmmanuel Vadot 2062f126890aSEmmanuel Vadot port@0 { 2063f126890aSEmmanuel Vadot reg = <0>; 2064f126890aSEmmanuel Vadot mdss_dsi1_in: endpoint { 2065f126890aSEmmanuel Vadot remote-endpoint = <&mdp5_intf2_out>; 2066f126890aSEmmanuel Vadot }; 2067f126890aSEmmanuel Vadot }; 2068f126890aSEmmanuel Vadot 2069f126890aSEmmanuel Vadot port@1 { 2070f126890aSEmmanuel Vadot reg = <1>; 2071f126890aSEmmanuel Vadot mdss_dsi1_out: endpoint { 2072f126890aSEmmanuel Vadot }; 2073f126890aSEmmanuel Vadot }; 2074f126890aSEmmanuel Vadot }; 2075f126890aSEmmanuel Vadot }; 2076f126890aSEmmanuel Vadot 2077f126890aSEmmanuel Vadot mdss_dsi1_phy: phy@fd923000 { 2078f126890aSEmmanuel Vadot compatible = "qcom,dsi-phy-28nm-hpm"; 2079f126890aSEmmanuel Vadot reg = <0xfd923000 0xd4>, 2080f126890aSEmmanuel Vadot <0xfd923100 0x280>, 2081f126890aSEmmanuel Vadot <0xfd923380 0x30>; 2082f126890aSEmmanuel Vadot reg-names = "dsi_pll", 2083f126890aSEmmanuel Vadot "dsi_phy", 2084f126890aSEmmanuel Vadot "dsi_phy_regulator"; 2085f126890aSEmmanuel Vadot 2086f126890aSEmmanuel Vadot #clock-cells = <1>; 2087f126890aSEmmanuel Vadot #phy-cells = <0>; 2088f126890aSEmmanuel Vadot 2089f126890aSEmmanuel Vadot clocks = <&mmcc MDSS_AHB_CLK>, <&xo_board>; 2090f126890aSEmmanuel Vadot clock-names = "iface", "ref"; 2091f126890aSEmmanuel Vadot 2092f126890aSEmmanuel Vadot status = "disabled"; 2093f126890aSEmmanuel Vadot }; 2094f126890aSEmmanuel Vadot }; 2095f126890aSEmmanuel Vadot 2096f126890aSEmmanuel Vadot cci: cci@fda0c000 { 2097f126890aSEmmanuel Vadot compatible = "qcom,msm8974-cci"; 2098f126890aSEmmanuel Vadot #address-cells = <1>; 2099f126890aSEmmanuel Vadot #size-cells = <0>; 2100f126890aSEmmanuel Vadot reg = <0xfda0c000 0x1000>; 2101f126890aSEmmanuel Vadot interrupts = <GIC_SPI 50 IRQ_TYPE_EDGE_RISING>; 2102f126890aSEmmanuel Vadot clocks = <&mmcc CAMSS_TOP_AHB_CLK>, 2103f126890aSEmmanuel Vadot <&mmcc CAMSS_CCI_CCI_AHB_CLK>, 2104f126890aSEmmanuel Vadot <&mmcc CAMSS_CCI_CCI_CLK>; 2105f126890aSEmmanuel Vadot clock-names = "camss_top_ahb", 2106f126890aSEmmanuel Vadot "cci_ahb", 2107f126890aSEmmanuel Vadot "cci"; 2108f126890aSEmmanuel Vadot 2109f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 2110f126890aSEmmanuel Vadot pinctrl-0 = <&cci_default>; 2111f126890aSEmmanuel Vadot pinctrl-1 = <&cci_sleep>; 2112f126890aSEmmanuel Vadot 2113f126890aSEmmanuel Vadot status = "disabled"; 2114f126890aSEmmanuel Vadot 2115f126890aSEmmanuel Vadot cci_i2c0: i2c-bus@0 { 2116f126890aSEmmanuel Vadot reg = <0>; 2117f126890aSEmmanuel Vadot clock-frequency = <100000>; 2118f126890aSEmmanuel Vadot #address-cells = <1>; 2119f126890aSEmmanuel Vadot #size-cells = <0>; 2120f126890aSEmmanuel Vadot }; 2121f126890aSEmmanuel Vadot 2122f126890aSEmmanuel Vadot cci_i2c1: i2c-bus@1 { 2123f126890aSEmmanuel Vadot reg = <1>; 2124f126890aSEmmanuel Vadot clock-frequency = <100000>; 2125f126890aSEmmanuel Vadot #address-cells = <1>; 2126f126890aSEmmanuel Vadot #size-cells = <0>; 2127f126890aSEmmanuel Vadot }; 2128f126890aSEmmanuel Vadot }; 2129f126890aSEmmanuel Vadot 2130f126890aSEmmanuel Vadot gpu: adreno@fdb00000 { 2131f126890aSEmmanuel Vadot compatible = "qcom,adreno-330.1", "qcom,adreno"; 2132f126890aSEmmanuel Vadot reg = <0xfdb00000 0x10000>; 2133f126890aSEmmanuel Vadot reg-names = "kgsl_3d0_reg_memory"; 2134f126890aSEmmanuel Vadot 2135f126890aSEmmanuel Vadot interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>; 2136f126890aSEmmanuel Vadot interrupt-names = "kgsl_3d0_irq"; 2137f126890aSEmmanuel Vadot 2138f126890aSEmmanuel Vadot clocks = <&mmcc OXILI_GFX3D_CLK>, 2139f126890aSEmmanuel Vadot <&mmcc OXILICX_AHB_CLK>, 2140f126890aSEmmanuel Vadot <&mmcc OXILICX_AXI_CLK>; 2141f126890aSEmmanuel Vadot clock-names = "core", "iface", "mem_iface"; 2142f126890aSEmmanuel Vadot 2143f126890aSEmmanuel Vadot sram = <&gmu_sram>; 2144f126890aSEmmanuel Vadot power-domains = <&mmcc OXILICX_GDSC>; 2145f126890aSEmmanuel Vadot operating-points-v2 = <&gpu_opp_table>; 2146f126890aSEmmanuel Vadot 2147f126890aSEmmanuel Vadot interconnects = <&mmssnoc MNOC_MAS_GRAPHICS_3D &bimc BIMC_SLV_EBI_CH0>, 2148f126890aSEmmanuel Vadot <&ocmemnoc OCMEM_VNOC_MAS_GFX3D &ocmemnoc OCMEM_SLV_OCMEM>; 2149f126890aSEmmanuel Vadot interconnect-names = "gfx-mem", "ocmem"; 2150f126890aSEmmanuel Vadot 2151f126890aSEmmanuel Vadot // iommus = <&gpu_iommu 0>; 2152f126890aSEmmanuel Vadot 2153f126890aSEmmanuel Vadot status = "disabled"; 2154f126890aSEmmanuel Vadot 2155f126890aSEmmanuel Vadot gpu_opp_table: opp-table { 2156f126890aSEmmanuel Vadot compatible = "operating-points-v2"; 2157f126890aSEmmanuel Vadot 2158f126890aSEmmanuel Vadot opp-320000000 { 2159f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <320000000>; 2160f126890aSEmmanuel Vadot }; 2161f126890aSEmmanuel Vadot 2162f126890aSEmmanuel Vadot opp-200000000 { 2163f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <200000000>; 2164f126890aSEmmanuel Vadot }; 2165f126890aSEmmanuel Vadot 2166f126890aSEmmanuel Vadot opp-27000000 { 2167f126890aSEmmanuel Vadot opp-hz = /bits/ 64 <27000000>; 2168f126890aSEmmanuel Vadot }; 2169f126890aSEmmanuel Vadot }; 2170f126890aSEmmanuel Vadot }; 2171f126890aSEmmanuel Vadot 2172f126890aSEmmanuel Vadot sram@fdd00000 { 2173f126890aSEmmanuel Vadot compatible = "qcom,msm8974-ocmem"; 2174f126890aSEmmanuel Vadot reg = <0xfdd00000 0x2000>, 2175f126890aSEmmanuel Vadot <0xfec00000 0x180000>; 2176f126890aSEmmanuel Vadot reg-names = "ctrl", "mem"; 2177f126890aSEmmanuel Vadot ranges = <0 0xfec00000 0x180000>; 2178f126890aSEmmanuel Vadot clocks = <&rpmcc RPM_SMD_OCMEMGX_CLK>, 2179f126890aSEmmanuel Vadot <&mmcc OCMEMCX_OCMEMNOC_CLK>; 2180f126890aSEmmanuel Vadot clock-names = "core", "iface"; 2181f126890aSEmmanuel Vadot 2182f126890aSEmmanuel Vadot #address-cells = <1>; 2183f126890aSEmmanuel Vadot #size-cells = <1>; 2184f126890aSEmmanuel Vadot 2185f126890aSEmmanuel Vadot gmu_sram: gmu-sram@0 { 2186f126890aSEmmanuel Vadot reg = <0x0 0x100000>; 2187f126890aSEmmanuel Vadot }; 2188f126890aSEmmanuel Vadot }; 2189f126890aSEmmanuel Vadot 2190f126890aSEmmanuel Vadot remoteproc_adsp: remoteproc@fe200000 { 2191f126890aSEmmanuel Vadot compatible = "qcom,msm8974-adsp-pil"; 2192f126890aSEmmanuel Vadot reg = <0xfe200000 0x100>; 2193f126890aSEmmanuel Vadot 2194f126890aSEmmanuel Vadot interrupts-extended = <&intc GIC_SPI 162 IRQ_TYPE_EDGE_RISING>, 2195f126890aSEmmanuel Vadot <&adsp_smp2p_in 0 IRQ_TYPE_EDGE_RISING>, 2196f126890aSEmmanuel Vadot <&adsp_smp2p_in 1 IRQ_TYPE_EDGE_RISING>, 2197f126890aSEmmanuel Vadot <&adsp_smp2p_in 2 IRQ_TYPE_EDGE_RISING>, 2198f126890aSEmmanuel Vadot <&adsp_smp2p_in 3 IRQ_TYPE_EDGE_RISING>; 2199f126890aSEmmanuel Vadot interrupt-names = "wdog", "fatal", "ready", "handover", "stop-ack"; 2200f126890aSEmmanuel Vadot 2201f126890aSEmmanuel Vadot clocks = <&xo_board>; 2202f126890aSEmmanuel Vadot clock-names = "xo"; 2203f126890aSEmmanuel Vadot 2204f126890aSEmmanuel Vadot memory-region = <&adsp_region>; 2205f126890aSEmmanuel Vadot 2206f126890aSEmmanuel Vadot qcom,smem-states = <&adsp_smp2p_out 0>; 2207f126890aSEmmanuel Vadot qcom,smem-state-names = "stop"; 2208f126890aSEmmanuel Vadot 2209f126890aSEmmanuel Vadot status = "disabled"; 2210f126890aSEmmanuel Vadot 2211f126890aSEmmanuel Vadot smd-edge { 2212f126890aSEmmanuel Vadot interrupts = <GIC_SPI 156 IRQ_TYPE_EDGE_RISING>; 2213f126890aSEmmanuel Vadot 2214f126890aSEmmanuel Vadot qcom,ipc = <&apcs 8 8>; 2215f126890aSEmmanuel Vadot qcom,smd-edge = <1>; 2216f126890aSEmmanuel Vadot label = "lpass"; 2217f126890aSEmmanuel Vadot }; 2218f126890aSEmmanuel Vadot }; 2219f126890aSEmmanuel Vadot 2220f126890aSEmmanuel Vadot imem: sram@fe805000 { 2221f126890aSEmmanuel Vadot compatible = "qcom,msm8974-imem", "syscon", "simple-mfd"; 2222f126890aSEmmanuel Vadot reg = <0xfe805000 0x1000>; 2223f126890aSEmmanuel Vadot 2224f126890aSEmmanuel Vadot reboot-mode { 2225f126890aSEmmanuel Vadot compatible = "syscon-reboot-mode"; 2226f126890aSEmmanuel Vadot offset = <0x65c>; 2227f126890aSEmmanuel Vadot }; 2228f126890aSEmmanuel Vadot }; 2229f126890aSEmmanuel Vadot }; 2230f126890aSEmmanuel Vadot 2231f126890aSEmmanuel Vadot thermal-zones { 2232f126890aSEmmanuel Vadot cpu0-thermal { 2233f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2234f126890aSEmmanuel Vadot polling-delay = <1000>; 2235f126890aSEmmanuel Vadot 2236f126890aSEmmanuel Vadot thermal-sensors = <&tsens 5>; 2237f126890aSEmmanuel Vadot 2238f126890aSEmmanuel Vadot trips { 2239f126890aSEmmanuel Vadot cpu_alert0: trip0 { 2240f126890aSEmmanuel Vadot temperature = <75000>; 2241f126890aSEmmanuel Vadot hysteresis = <2000>; 2242f126890aSEmmanuel Vadot type = "passive"; 2243f126890aSEmmanuel Vadot }; 2244f126890aSEmmanuel Vadot cpu_crit0: trip1 { 2245f126890aSEmmanuel Vadot temperature = <110000>; 2246f126890aSEmmanuel Vadot hysteresis = <2000>; 2247f126890aSEmmanuel Vadot type = "critical"; 2248f126890aSEmmanuel Vadot }; 2249f126890aSEmmanuel Vadot }; 2250f126890aSEmmanuel Vadot }; 2251f126890aSEmmanuel Vadot 2252f126890aSEmmanuel Vadot cpu1-thermal { 2253f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2254f126890aSEmmanuel Vadot polling-delay = <1000>; 2255f126890aSEmmanuel Vadot 2256f126890aSEmmanuel Vadot thermal-sensors = <&tsens 6>; 2257f126890aSEmmanuel Vadot 2258f126890aSEmmanuel Vadot trips { 2259f126890aSEmmanuel Vadot cpu_alert1: trip0 { 2260f126890aSEmmanuel Vadot temperature = <75000>; 2261f126890aSEmmanuel Vadot hysteresis = <2000>; 2262f126890aSEmmanuel Vadot type = "passive"; 2263f126890aSEmmanuel Vadot }; 2264f126890aSEmmanuel Vadot cpu_crit1: trip1 { 2265f126890aSEmmanuel Vadot temperature = <110000>; 2266f126890aSEmmanuel Vadot hysteresis = <2000>; 2267f126890aSEmmanuel Vadot type = "critical"; 2268f126890aSEmmanuel Vadot }; 2269f126890aSEmmanuel Vadot }; 2270f126890aSEmmanuel Vadot }; 2271f126890aSEmmanuel Vadot 2272f126890aSEmmanuel Vadot cpu2-thermal { 2273f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2274f126890aSEmmanuel Vadot polling-delay = <1000>; 2275f126890aSEmmanuel Vadot 2276f126890aSEmmanuel Vadot thermal-sensors = <&tsens 7>; 2277f126890aSEmmanuel Vadot 2278f126890aSEmmanuel Vadot trips { 2279f126890aSEmmanuel Vadot cpu_alert2: trip0 { 2280f126890aSEmmanuel Vadot temperature = <75000>; 2281f126890aSEmmanuel Vadot hysteresis = <2000>; 2282f126890aSEmmanuel Vadot type = "passive"; 2283f126890aSEmmanuel Vadot }; 2284f126890aSEmmanuel Vadot cpu_crit2: trip1 { 2285f126890aSEmmanuel Vadot temperature = <110000>; 2286f126890aSEmmanuel Vadot hysteresis = <2000>; 2287f126890aSEmmanuel Vadot type = "critical"; 2288f126890aSEmmanuel Vadot }; 2289f126890aSEmmanuel Vadot }; 2290f126890aSEmmanuel Vadot }; 2291f126890aSEmmanuel Vadot 2292f126890aSEmmanuel Vadot cpu3-thermal { 2293f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2294f126890aSEmmanuel Vadot polling-delay = <1000>; 2295f126890aSEmmanuel Vadot 2296f126890aSEmmanuel Vadot thermal-sensors = <&tsens 8>; 2297f126890aSEmmanuel Vadot 2298f126890aSEmmanuel Vadot trips { 2299f126890aSEmmanuel Vadot cpu_alert3: trip0 { 2300f126890aSEmmanuel Vadot temperature = <75000>; 2301f126890aSEmmanuel Vadot hysteresis = <2000>; 2302f126890aSEmmanuel Vadot type = "passive"; 2303f126890aSEmmanuel Vadot }; 2304f126890aSEmmanuel Vadot cpu_crit3: trip1 { 2305f126890aSEmmanuel Vadot temperature = <110000>; 2306f126890aSEmmanuel Vadot hysteresis = <2000>; 2307f126890aSEmmanuel Vadot type = "critical"; 2308f126890aSEmmanuel Vadot }; 2309f126890aSEmmanuel Vadot }; 2310f126890aSEmmanuel Vadot }; 2311f126890aSEmmanuel Vadot 2312f126890aSEmmanuel Vadot q6-dsp-thermal { 2313f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2314f126890aSEmmanuel Vadot polling-delay = <1000>; 2315f126890aSEmmanuel Vadot 2316f126890aSEmmanuel Vadot thermal-sensors = <&tsens 1>; 2317f126890aSEmmanuel Vadot 2318f126890aSEmmanuel Vadot trips { 2319f126890aSEmmanuel Vadot q6_dsp_alert0: trip-point0 { 2320f126890aSEmmanuel Vadot temperature = <90000>; 2321f126890aSEmmanuel Vadot hysteresis = <2000>; 2322f126890aSEmmanuel Vadot type = "hot"; 2323f126890aSEmmanuel Vadot }; 2324f126890aSEmmanuel Vadot }; 2325f126890aSEmmanuel Vadot }; 2326f126890aSEmmanuel Vadot 2327f126890aSEmmanuel Vadot modemtx-thermal { 2328f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2329f126890aSEmmanuel Vadot polling-delay = <1000>; 2330f126890aSEmmanuel Vadot 2331f126890aSEmmanuel Vadot thermal-sensors = <&tsens 2>; 2332f126890aSEmmanuel Vadot 2333f126890aSEmmanuel Vadot trips { 2334f126890aSEmmanuel Vadot modemtx_alert0: trip-point0 { 2335f126890aSEmmanuel Vadot temperature = <90000>; 2336f126890aSEmmanuel Vadot hysteresis = <2000>; 2337f126890aSEmmanuel Vadot type = "hot"; 2338f126890aSEmmanuel Vadot }; 2339f126890aSEmmanuel Vadot }; 2340f126890aSEmmanuel Vadot }; 2341f126890aSEmmanuel Vadot 2342f126890aSEmmanuel Vadot video-thermal { 2343f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2344f126890aSEmmanuel Vadot polling-delay = <1000>; 2345f126890aSEmmanuel Vadot 2346f126890aSEmmanuel Vadot thermal-sensors = <&tsens 3>; 2347f126890aSEmmanuel Vadot 2348f126890aSEmmanuel Vadot trips { 2349f126890aSEmmanuel Vadot video_alert0: trip-point0 { 2350f126890aSEmmanuel Vadot temperature = <95000>; 2351f126890aSEmmanuel Vadot hysteresis = <2000>; 2352f126890aSEmmanuel Vadot type = "hot"; 2353f126890aSEmmanuel Vadot }; 2354f126890aSEmmanuel Vadot }; 2355f126890aSEmmanuel Vadot }; 2356f126890aSEmmanuel Vadot 2357f126890aSEmmanuel Vadot wlan-thermal { 2358f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2359f126890aSEmmanuel Vadot polling-delay = <1000>; 2360f126890aSEmmanuel Vadot 2361f126890aSEmmanuel Vadot thermal-sensors = <&tsens 4>; 2362f126890aSEmmanuel Vadot 2363f126890aSEmmanuel Vadot trips { 2364f126890aSEmmanuel Vadot wlan_alert0: trip-point0 { 2365f126890aSEmmanuel Vadot temperature = <105000>; 2366f126890aSEmmanuel Vadot hysteresis = <2000>; 2367f126890aSEmmanuel Vadot type = "hot"; 2368f126890aSEmmanuel Vadot }; 2369f126890aSEmmanuel Vadot }; 2370f126890aSEmmanuel Vadot }; 2371f126890aSEmmanuel Vadot 2372f126890aSEmmanuel Vadot gpu-top-thermal { 2373f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2374f126890aSEmmanuel Vadot polling-delay = <1000>; 2375f126890aSEmmanuel Vadot 2376f126890aSEmmanuel Vadot thermal-sensors = <&tsens 9>; 2377f126890aSEmmanuel Vadot 2378f126890aSEmmanuel Vadot trips { 2379f126890aSEmmanuel Vadot gpu1_alert0: trip-point0 { 2380f126890aSEmmanuel Vadot temperature = <90000>; 2381f126890aSEmmanuel Vadot hysteresis = <2000>; 2382f126890aSEmmanuel Vadot type = "hot"; 2383f126890aSEmmanuel Vadot }; 2384f126890aSEmmanuel Vadot }; 2385f126890aSEmmanuel Vadot }; 2386f126890aSEmmanuel Vadot 2387f126890aSEmmanuel Vadot gpu-bottom-thermal { 2388f126890aSEmmanuel Vadot polling-delay-passive = <250>; 2389f126890aSEmmanuel Vadot polling-delay = <1000>; 2390f126890aSEmmanuel Vadot 2391f126890aSEmmanuel Vadot thermal-sensors = <&tsens 10>; 2392f126890aSEmmanuel Vadot 2393f126890aSEmmanuel Vadot trips { 2394f126890aSEmmanuel Vadot gpu2_alert0: trip-point0 { 2395f126890aSEmmanuel Vadot temperature = <90000>; 2396f126890aSEmmanuel Vadot hysteresis = <2000>; 2397f126890aSEmmanuel Vadot type = "hot"; 2398f126890aSEmmanuel Vadot }; 2399f126890aSEmmanuel Vadot }; 2400f126890aSEmmanuel Vadot }; 2401f126890aSEmmanuel Vadot }; 2402f126890aSEmmanuel Vadot 2403f126890aSEmmanuel Vadot timer { 2404f126890aSEmmanuel Vadot compatible = "arm,armv7-timer"; 2405f126890aSEmmanuel Vadot interrupts = <GIC_PPI 2 0xf08>, 2406f126890aSEmmanuel Vadot <GIC_PPI 3 0xf08>, 2407f126890aSEmmanuel Vadot <GIC_PPI 4 0xf08>, 2408f126890aSEmmanuel Vadot <GIC_PPI 1 0xf08>; 2409f126890aSEmmanuel Vadot clock-frequency = <19200000>; 2410f126890aSEmmanuel Vadot }; 2411f126890aSEmmanuel Vadot 2412f126890aSEmmanuel Vadot vreg_boost: vreg-boost { 2413f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 2414f126890aSEmmanuel Vadot 2415f126890aSEmmanuel Vadot regulator-name = "vreg-boost"; 2416f126890aSEmmanuel Vadot regulator-min-microvolt = <3150000>; 2417f126890aSEmmanuel Vadot regulator-max-microvolt = <3150000>; 2418f126890aSEmmanuel Vadot 2419f126890aSEmmanuel Vadot regulator-always-on; 2420f126890aSEmmanuel Vadot regulator-boot-on; 2421f126890aSEmmanuel Vadot 2422f126890aSEmmanuel Vadot gpio = <&pm8941_gpios 21 GPIO_ACTIVE_HIGH>; 2423f126890aSEmmanuel Vadot enable-active-high; 2424f126890aSEmmanuel Vadot 2425f126890aSEmmanuel Vadot pinctrl-names = "default"; 2426f126890aSEmmanuel Vadot pinctrl-0 = <&boost_bypass_n_pin>; 2427f126890aSEmmanuel Vadot }; 2428f126890aSEmmanuel Vadot 2429f126890aSEmmanuel Vadot vreg_vph_pwr: vreg-vph-pwr { 2430f126890aSEmmanuel Vadot compatible = "regulator-fixed"; 2431f126890aSEmmanuel Vadot regulator-name = "vph-pwr"; 2432f126890aSEmmanuel Vadot 2433f126890aSEmmanuel Vadot regulator-min-microvolt = <3600000>; 2434f126890aSEmmanuel Vadot regulator-max-microvolt = <3600000>; 2435f126890aSEmmanuel Vadot 2436f126890aSEmmanuel Vadot regulator-always-on; 2437f126890aSEmmanuel Vadot }; 2438f126890aSEmmanuel Vadot}; 2439