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