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