1f2180be1SDong Aisheng// SPDX-License-Identifier: GPL-2.0+ 2f2180be1SDong Aisheng/* 3f2180be1SDong Aisheng * Copyright 2018-2019 NXP 4f2180be1SDong Aisheng * Dong Aisheng <aisheng.dong@nxp.com> 5f2180be1SDong Aisheng */ 6f2180be1SDong Aisheng 7f2180be1SDong Aisheng#include <dt-bindings/clock/imx8-lpcg.h> 8f2180be1SDong Aisheng#include <dt-bindings/firmware/imx/rsrc.h> 9f2180be1SDong Aisheng#include <dt-bindings/gpio/gpio.h> 10f2180be1SDong Aisheng#include <dt-bindings/interrupt-controller/arm-gic.h> 11f2180be1SDong Aisheng#include <dt-bindings/pinctrl/pads-imx8qm.h> 1236e81d6aSFrank Li#include <dt-bindings/thermal/thermal.h> 13f2180be1SDong Aisheng 14f2180be1SDong Aisheng/ { 15f2180be1SDong Aisheng interrupt-parent = <&gic>; 16f2180be1SDong Aisheng #address-cells = <2>; 17f2180be1SDong Aisheng #size-cells = <2>; 18f2180be1SDong Aisheng 19f2180be1SDong Aisheng aliases { 20f2180be1SDong Aisheng mmc0 = &usdhc1; 21f2180be1SDong Aisheng mmc1 = &usdhc2; 22f2180be1SDong Aisheng mmc2 = &usdhc3; 23f2180be1SDong Aisheng serial0 = &lpuart0; 24df6182e6SOliver Graute serial1 = &lpuart1; 25df6182e6SOliver Graute serial2 = &lpuart2; 26df6182e6SOliver Graute serial3 = &lpuart3; 27*f6038de2SAlexander Stein vpu-core0 = &vpu_core0; 28*f6038de2SAlexander Stein vpu-core1 = &vpu_core1; 29*f6038de2SAlexander Stein vpu-core2 = &vpu_core2; 30f2180be1SDong Aisheng }; 31f2180be1SDong Aisheng 32f2180be1SDong Aisheng cpus { 33f2180be1SDong Aisheng #address-cells = <2>; 34f2180be1SDong Aisheng #size-cells = <0>; 35f2180be1SDong Aisheng 36f2180be1SDong Aisheng cpu-map { 37f2180be1SDong Aisheng cluster0 { 38f2180be1SDong Aisheng core0 { 39f2180be1SDong Aisheng cpu = <&A53_0>; 40f2180be1SDong Aisheng }; 41f2180be1SDong Aisheng core1 { 42f2180be1SDong Aisheng cpu = <&A53_1>; 43f2180be1SDong Aisheng }; 44f2180be1SDong Aisheng core2 { 45f2180be1SDong Aisheng cpu = <&A53_2>; 46f2180be1SDong Aisheng }; 47f2180be1SDong Aisheng core3 { 48f2180be1SDong Aisheng cpu = <&A53_3>; 49f2180be1SDong Aisheng }; 50f2180be1SDong Aisheng }; 51f2180be1SDong Aisheng 52f2180be1SDong Aisheng cluster1 { 53f2180be1SDong Aisheng core0 { 54f2180be1SDong Aisheng cpu = <&A72_0>; 55f2180be1SDong Aisheng }; 56f2180be1SDong Aisheng core1 { 57f2180be1SDong Aisheng cpu = <&A72_1>; 58f2180be1SDong Aisheng }; 59f2180be1SDong Aisheng }; 60f2180be1SDong Aisheng }; 61f2180be1SDong Aisheng 62f2180be1SDong Aisheng A53_0: cpu@0 { 63f2180be1SDong Aisheng device_type = "cpu"; 6484a7f5a9SRob Herring compatible = "arm,cortex-a53"; 65f2180be1SDong Aisheng reg = <0x0 0x0>; 6688114e10SFrank Li clocks = <&clk IMX_SC_R_A53 IMX_SC_PM_CLK_CPU>; 67f2180be1SDong Aisheng enable-method = "psci"; 68b0b46118SPeng Fan i-cache-size = <0x8000>; 69b0b46118SPeng Fan i-cache-line-size = <64>; 70b0b46118SPeng Fan i-cache-sets = <256>; 71b0b46118SPeng Fan d-cache-size = <0x8000>; 72b0b46118SPeng Fan d-cache-line-size = <64>; 73b0b46118SPeng Fan d-cache-sets = <128>; 74f2180be1SDong Aisheng next-level-cache = <&A53_L2>; 7588114e10SFrank Li operating-points-v2 = <&a53_opp_table>; 7636e81d6aSFrank Li #cooling-cells = <2>; 77f2180be1SDong Aisheng }; 78f2180be1SDong Aisheng 79f2180be1SDong Aisheng A53_1: cpu@1 { 80f2180be1SDong Aisheng device_type = "cpu"; 8184a7f5a9SRob Herring compatible = "arm,cortex-a53"; 82f2180be1SDong Aisheng reg = <0x0 0x1>; 8388114e10SFrank Li clocks = <&clk IMX_SC_R_A53 IMX_SC_PM_CLK_CPU>; 84f2180be1SDong Aisheng enable-method = "psci"; 85b0b46118SPeng Fan i-cache-size = <0x8000>; 86b0b46118SPeng Fan i-cache-line-size = <64>; 87b0b46118SPeng Fan i-cache-sets = <256>; 88b0b46118SPeng Fan d-cache-size = <0x8000>; 89b0b46118SPeng Fan d-cache-line-size = <64>; 90b0b46118SPeng Fan d-cache-sets = <128>; 91f2180be1SDong Aisheng next-level-cache = <&A53_L2>; 9288114e10SFrank Li operating-points-v2 = <&a53_opp_table>; 9336e81d6aSFrank Li #cooling-cells = <2>; 94f2180be1SDong Aisheng }; 95f2180be1SDong Aisheng 96f2180be1SDong Aisheng A53_2: cpu@2 { 97f2180be1SDong Aisheng device_type = "cpu"; 9884a7f5a9SRob Herring compatible = "arm,cortex-a53"; 99f2180be1SDong Aisheng reg = <0x0 0x2>; 10088114e10SFrank Li clocks = <&clk IMX_SC_R_A53 IMX_SC_PM_CLK_CPU>; 101f2180be1SDong Aisheng enable-method = "psci"; 102b0b46118SPeng Fan i-cache-size = <0x8000>; 103b0b46118SPeng Fan i-cache-line-size = <64>; 104b0b46118SPeng Fan i-cache-sets = <256>; 105b0b46118SPeng Fan d-cache-size = <0x8000>; 106b0b46118SPeng Fan d-cache-line-size = <64>; 107b0b46118SPeng Fan d-cache-sets = <128>; 108f2180be1SDong Aisheng next-level-cache = <&A53_L2>; 10988114e10SFrank Li operating-points-v2 = <&a53_opp_table>; 11036e81d6aSFrank Li #cooling-cells = <2>; 111f2180be1SDong Aisheng }; 112f2180be1SDong Aisheng 113f2180be1SDong Aisheng A53_3: cpu@3 { 114f2180be1SDong Aisheng device_type = "cpu"; 11584a7f5a9SRob Herring compatible = "arm,cortex-a53"; 116f2180be1SDong Aisheng reg = <0x0 0x3>; 11788114e10SFrank Li clocks = <&clk IMX_SC_R_A53 IMX_SC_PM_CLK_CPU>; 118f2180be1SDong Aisheng enable-method = "psci"; 119b0b46118SPeng Fan i-cache-size = <0x8000>; 120b0b46118SPeng Fan i-cache-line-size = <64>; 121b0b46118SPeng Fan i-cache-sets = <256>; 122b0b46118SPeng Fan d-cache-size = <0x8000>; 123b0b46118SPeng Fan d-cache-line-size = <64>; 124b0b46118SPeng Fan d-cache-sets = <128>; 125f2180be1SDong Aisheng next-level-cache = <&A53_L2>; 12688114e10SFrank Li operating-points-v2 = <&a53_opp_table>; 12736e81d6aSFrank Li #cooling-cells = <2>; 128f2180be1SDong Aisheng }; 129f2180be1SDong Aisheng 130f2180be1SDong Aisheng A72_0: cpu@100 { 131f2180be1SDong Aisheng device_type = "cpu"; 13284a7f5a9SRob Herring compatible = "arm,cortex-a72"; 133f2180be1SDong Aisheng reg = <0x0 0x100>; 13488114e10SFrank Li clocks = <&clk IMX_SC_R_A72 IMX_SC_PM_CLK_CPU>; 135f2180be1SDong Aisheng enable-method = "psci"; 136b0b46118SPeng Fan i-cache-size = <0xC000>; 137b0b46118SPeng Fan i-cache-line-size = <64>; 138b0b46118SPeng Fan i-cache-sets = <256>; 139b0b46118SPeng Fan d-cache-size = <0x8000>; 140b0b46118SPeng Fan d-cache-line-size = <64>; 141b0b46118SPeng Fan d-cache-sets = <256>; 142f2180be1SDong Aisheng next-level-cache = <&A72_L2>; 14388114e10SFrank Li operating-points-v2 = <&a72_opp_table>; 14436e81d6aSFrank Li #cooling-cells = <2>; 145f2180be1SDong Aisheng }; 146f2180be1SDong Aisheng 147f2180be1SDong Aisheng A72_1: cpu@101 { 148f2180be1SDong Aisheng device_type = "cpu"; 14984a7f5a9SRob Herring compatible = "arm,cortex-a72"; 150f2180be1SDong Aisheng reg = <0x0 0x101>; 15188114e10SFrank Li clocks = <&clk IMX_SC_R_A72 IMX_SC_PM_CLK_CPU>; 152f2180be1SDong Aisheng enable-method = "psci"; 153f2180be1SDong Aisheng next-level-cache = <&A72_L2>; 15488114e10SFrank Li operating-points-v2 = <&a72_opp_table>; 15536e81d6aSFrank Li #cooling-cells = <2>; 156f2180be1SDong Aisheng }; 157f2180be1SDong Aisheng 158f2180be1SDong Aisheng A53_L2: l2-cache0 { 159f2180be1SDong Aisheng compatible = "cache"; 160b0b46118SPeng Fan cache-level = <2>; 1613b450831SPierre Gondois cache-unified; 162b0b46118SPeng Fan cache-size = <0x100000>; 163b0b46118SPeng Fan cache-line-size = <64>; 164b0b46118SPeng Fan cache-sets = <1024>; 165f2180be1SDong Aisheng }; 166f2180be1SDong Aisheng 167f2180be1SDong Aisheng A72_L2: l2-cache1 { 168f2180be1SDong Aisheng compatible = "cache"; 169b0b46118SPeng Fan cache-level = <2>; 1703b450831SPierre Gondois cache-unified; 171b0b46118SPeng Fan cache-size = <0x100000>; 172b0b46118SPeng Fan cache-line-size = <64>; 173b0b46118SPeng Fan cache-sets = <1024>; 174f2180be1SDong Aisheng }; 175f2180be1SDong Aisheng }; 176f2180be1SDong Aisheng 17788114e10SFrank Li a53_opp_table: opp-table-0 { 17888114e10SFrank Li compatible = "operating-points-v2"; 17988114e10SFrank Li opp-shared; 18088114e10SFrank Li 18188114e10SFrank Li opp-600000000 { 18288114e10SFrank Li opp-hz = /bits/ 64 <600000000>; 18388114e10SFrank Li opp-microvolt = <900000>; 18488114e10SFrank Li clock-latency-ns = <150000>; 18588114e10SFrank Li }; 18688114e10SFrank Li 18788114e10SFrank Li opp-896000000 { 18888114e10SFrank Li opp-hz = /bits/ 64 <896000000>; 18988114e10SFrank Li opp-microvolt = <1000000>; 19088114e10SFrank Li clock-latency-ns = <150000>; 19188114e10SFrank Li }; 19288114e10SFrank Li 19388114e10SFrank Li opp-1104000000 { 19488114e10SFrank Li opp-hz = /bits/ 64 <1104000000>; 19588114e10SFrank Li opp-microvolt = <1100000>; 19688114e10SFrank Li clock-latency-ns = <150000>; 19788114e10SFrank Li }; 19888114e10SFrank Li 19988114e10SFrank Li opp-1200000000 { 20088114e10SFrank Li opp-hz = /bits/ 64 <1200000000>; 20188114e10SFrank Li opp-microvolt = <1100000>; 20288114e10SFrank Li clock-latency-ns = <150000>; 20388114e10SFrank Li opp-suspend; 20488114e10SFrank Li }; 20588114e10SFrank Li }; 20688114e10SFrank Li 20788114e10SFrank Li a72_opp_table: opp-table-1 { 20888114e10SFrank Li compatible = "operating-points-v2"; 20988114e10SFrank Li opp-shared; 21088114e10SFrank Li 21188114e10SFrank Li opp-600000000 { 21288114e10SFrank Li opp-hz = /bits/ 64 <600000000>; 21388114e10SFrank Li opp-microvolt = <1000000>; 21488114e10SFrank Li clock-latency-ns = <150000>; 21588114e10SFrank Li }; 21688114e10SFrank Li 21788114e10SFrank Li opp-1056000000 { 21888114e10SFrank Li opp-hz = /bits/ 64 <1056000000>; 21988114e10SFrank Li opp-microvolt = <1000000>; 22088114e10SFrank Li clock-latency-ns = <150000>; 22188114e10SFrank Li }; 22288114e10SFrank Li 22388114e10SFrank Li opp-1296000000 { 22488114e10SFrank Li opp-hz = /bits/ 64 <1296000000>; 22588114e10SFrank Li opp-microvolt = <1100000>; 22688114e10SFrank Li clock-latency-ns = <150000>; 22788114e10SFrank Li }; 22888114e10SFrank Li 22988114e10SFrank Li opp-1596000000 { 23088114e10SFrank Li opp-hz = /bits/ 64 <1596000000>; 23188114e10SFrank Li opp-microvolt = <1100000>; 23288114e10SFrank Li clock-latency-ns = <150000>; 23388114e10SFrank Li opp-suspend; 23488114e10SFrank Li }; 23588114e10SFrank Li }; 23688114e10SFrank Li 237f2180be1SDong Aisheng gic: interrupt-controller@51a00000 { 238f2180be1SDong Aisheng compatible = "arm,gic-v3"; 239f2180be1SDong Aisheng reg = <0x0 0x51a00000 0 0x10000>, /* GIC Dist */ 240f2180be1SDong Aisheng <0x0 0x51b00000 0 0xC0000>, /* GICR */ 241f2180be1SDong Aisheng <0x0 0x52000000 0 0x2000>, /* GICC */ 242f2180be1SDong Aisheng <0x0 0x52010000 0 0x1000>, /* GICH */ 243f2180be1SDong Aisheng <0x0 0x52020000 0 0x20000>; /* GICV */ 244f2180be1SDong Aisheng #interrupt-cells = <3>; 245f2180be1SDong Aisheng interrupt-controller; 246f2180be1SDong Aisheng interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>; 247f2180be1SDong Aisheng interrupt-parent = <&gic>; 248f2180be1SDong Aisheng }; 249f2180be1SDong Aisheng 250f2180be1SDong Aisheng pmu { 251f2180be1SDong Aisheng compatible = "arm,armv8-pmuv3"; 252f2180be1SDong Aisheng interrupts = <GIC_PPI 7 IRQ_TYPE_LEVEL_HIGH>; 253f2180be1SDong Aisheng }; 254f2180be1SDong Aisheng 255f2180be1SDong Aisheng psci { 256f2180be1SDong Aisheng compatible = "arm,psci-1.0"; 257f2180be1SDong Aisheng method = "smc"; 258f2180be1SDong Aisheng }; 259f2180be1SDong Aisheng 260f2180be1SDong Aisheng timer { 261f2180be1SDong Aisheng compatible = "arm,armv8-timer"; 262f2180be1SDong Aisheng interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>, /* Physical Secure */ 263f2180be1SDong Aisheng <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>, /* Physical Non-Secure */ 264f2180be1SDong Aisheng <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>, /* Virtual */ 265f2180be1SDong Aisheng <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>; /* Hypervisor */ 266f2180be1SDong Aisheng }; 267f2180be1SDong Aisheng 268c7b3c053SViorel Suman system-controller { 269f2180be1SDong Aisheng compatible = "fsl,imx-scu"; 270f2180be1SDong Aisheng mbox-names = "tx0", 271f2180be1SDong Aisheng "rx0", 272f2180be1SDong Aisheng "gip3"; 273f2180be1SDong Aisheng mboxes = <&lsio_mu1 0 0 274f2180be1SDong Aisheng &lsio_mu1 1 0 275f2180be1SDong Aisheng &lsio_mu1 3 3>; 276f2180be1SDong Aisheng 277b3993c7aSAbel Vesa pd: power-controller { 278f2180be1SDong Aisheng compatible = "fsl,imx8qm-scu-pd", "fsl,scu-pd"; 279f2180be1SDong Aisheng #power-domain-cells = <1>; 280f2180be1SDong Aisheng }; 281f2180be1SDong Aisheng 282f2180be1SDong Aisheng clk: clock-controller { 283dd2737faSLiu Ying compatible = "fsl,imx8qm-clk", "fsl,scu-clk"; 284f2180be1SDong Aisheng #clock-cells = <2>; 285f2180be1SDong Aisheng }; 286f2180be1SDong Aisheng 287f2180be1SDong Aisheng iomuxc: pinctrl { 288f2180be1SDong Aisheng compatible = "fsl,imx8qm-iomuxc"; 289f2180be1SDong Aisheng }; 290f2180be1SDong Aisheng 29175e4493eSAbel Vesa rtc: rtc { 29275e4493eSAbel Vesa compatible = "fsl,imx8qxp-sc-rtc"; 29375e4493eSAbel Vesa }; 29436e81d6aSFrank Li 29536e81d6aSFrank Li tsens: thermal-sensor { 29636e81d6aSFrank Li compatible = "fsl,imx8qxp-sc-thermal", "fsl,imx-sc-thermal"; 29736e81d6aSFrank Li #thermal-sensor-cells = <1>; 29836e81d6aSFrank Li }; 29936e81d6aSFrank Li }; 30036e81d6aSFrank Li 30136e81d6aSFrank Li thermal-zones { 30236e81d6aSFrank Li cpu0-thermal { 30336e81d6aSFrank Li polling-delay-passive = <250>; 30436e81d6aSFrank Li polling-delay = <2000>; 30536e81d6aSFrank Li thermal-sensors = <&tsens IMX_SC_R_A53>; 30636e81d6aSFrank Li 30736e81d6aSFrank Li trips { 30836e81d6aSFrank Li cpu_alert0: trip0 { 30936e81d6aSFrank Li temperature = <107000>; 31036e81d6aSFrank Li hysteresis = <2000>; 31136e81d6aSFrank Li type = "passive"; 31236e81d6aSFrank Li }; 31336e81d6aSFrank Li 31436e81d6aSFrank Li cpu_crit0: trip1 { 31536e81d6aSFrank Li temperature = <127000>; 31636e81d6aSFrank Li hysteresis = <2000>; 31736e81d6aSFrank Li type = "critical"; 31836e81d6aSFrank Li }; 31936e81d6aSFrank Li }; 32036e81d6aSFrank Li 32136e81d6aSFrank Li cooling-maps { 32236e81d6aSFrank Li map0 { 32336e81d6aSFrank Li trip = <&cpu_alert0>; 32436e81d6aSFrank Li cooling-device = 32536e81d6aSFrank Li <&A53_0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 32636e81d6aSFrank Li <&A53_1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 32736e81d6aSFrank Li <&A53_2 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 32836e81d6aSFrank Li <&A53_3 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; 32936e81d6aSFrank Li }; 33036e81d6aSFrank Li }; 33136e81d6aSFrank Li }; 33236e81d6aSFrank Li 33336e81d6aSFrank Li cpu1-thermal { 33436e81d6aSFrank Li polling-delay-passive = <250>; 33536e81d6aSFrank Li polling-delay = <2000>; 33636e81d6aSFrank Li thermal-sensors = <&tsens IMX_SC_R_A72>; 33736e81d6aSFrank Li 33836e81d6aSFrank Li trips { 33936e81d6aSFrank Li cpu_alert1: trip0 { 34036e81d6aSFrank Li temperature = <107000>; 34136e81d6aSFrank Li hysteresis = <2000>; 34236e81d6aSFrank Li type = "passive"; 34336e81d6aSFrank Li }; 34436e81d6aSFrank Li 34536e81d6aSFrank Li cpu_crit1: trip1 { 34636e81d6aSFrank Li temperature = <127000>; 34736e81d6aSFrank Li hysteresis = <2000>; 34836e81d6aSFrank Li type = "critical"; 34936e81d6aSFrank Li }; 35036e81d6aSFrank Li }; 35136e81d6aSFrank Li 35236e81d6aSFrank Li cooling-maps { 35336e81d6aSFrank Li map0 { 35436e81d6aSFrank Li trip = <&cpu_alert1>; 35536e81d6aSFrank Li cooling-device = 35636e81d6aSFrank Li <&A72_0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>, 35736e81d6aSFrank Li <&A72_1 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>; 35836e81d6aSFrank Li }; 35936e81d6aSFrank Li }; 36036e81d6aSFrank Li }; 36136e81d6aSFrank Li 36236e81d6aSFrank Li gpu0-thermal { 36336e81d6aSFrank Li polling-delay-passive = <250>; 36436e81d6aSFrank Li polling-delay = <2000>; 36536e81d6aSFrank Li thermal-sensors = <&tsens IMX_SC_R_GPU_0_PID0>; 36636e81d6aSFrank Li 36736e81d6aSFrank Li trips { 36836e81d6aSFrank Li gpu_alert0: trip0 { 36936e81d6aSFrank Li temperature = <107000>; 37036e81d6aSFrank Li hysteresis = <2000>; 37136e81d6aSFrank Li type = "passive"; 37236e81d6aSFrank Li }; 37336e81d6aSFrank Li 37436e81d6aSFrank Li gpu_crit0: trip1 { 37536e81d6aSFrank Li temperature = <127000>; 37636e81d6aSFrank Li hysteresis = <2000>; 37736e81d6aSFrank Li type = "critical"; 37836e81d6aSFrank Li }; 37936e81d6aSFrank Li }; 38036e81d6aSFrank Li }; 38136e81d6aSFrank Li 38236e81d6aSFrank Li gpu1-thermal { 38336e81d6aSFrank Li polling-delay-passive = <250>; 38436e81d6aSFrank Li polling-delay = <2000>; 38536e81d6aSFrank Li thermal-sensors = <&tsens IMX_SC_R_GPU_1_PID0>; 38636e81d6aSFrank Li 38736e81d6aSFrank Li trips { 38836e81d6aSFrank Li gpu_alert1: trip0 { 38936e81d6aSFrank Li temperature = <107000>; 39036e81d6aSFrank Li hysteresis = <2000>; 39136e81d6aSFrank Li type = "passive"; 39236e81d6aSFrank Li }; 39336e81d6aSFrank Li 39436e81d6aSFrank Li gpu_crit1: trip1 { 39536e81d6aSFrank Li temperature = <127000>; 39636e81d6aSFrank Li hysteresis = <2000>; 39736e81d6aSFrank Li type = "critical"; 39836e81d6aSFrank Li }; 39936e81d6aSFrank Li }; 40036e81d6aSFrank Li }; 40136e81d6aSFrank Li 40236e81d6aSFrank Li drc0-thermal { 40336e81d6aSFrank Li polling-delay-passive = <250>; 40436e81d6aSFrank Li polling-delay = <2000>; 40536e81d6aSFrank Li thermal-sensors = <&tsens IMX_SC_R_DRC_0>; 40636e81d6aSFrank Li 40736e81d6aSFrank Li trips { 40836e81d6aSFrank Li drc_alert0: trip0 { 40936e81d6aSFrank Li temperature = <107000>; 41036e81d6aSFrank Li hysteresis = <2000>; 41136e81d6aSFrank Li type = "passive"; 41236e81d6aSFrank Li }; 41336e81d6aSFrank Li 41436e81d6aSFrank Li drc_crit0: trip1 { 41536e81d6aSFrank Li temperature = <127000>; 41636e81d6aSFrank Li hysteresis = <2000>; 41736e81d6aSFrank Li type = "critical"; 41836e81d6aSFrank Li }; 41936e81d6aSFrank Li }; 42036e81d6aSFrank Li }; 421f2180be1SDong Aisheng }; 422f2180be1SDong Aisheng 423f2180be1SDong Aisheng /* sorted in register address */ 424b4efce45SZhou Peng #include "imx8-ss-vpu.dtsi" 4255bb27917SMirela Rabulea #include "imx8-ss-img.dtsi" 426f2180be1SDong Aisheng #include "imx8-ss-dma.dtsi" 427f2180be1SDong Aisheng #include "imx8-ss-conn.dtsi" 428f2180be1SDong Aisheng #include "imx8-ss-lsio.dtsi" 429f2180be1SDong Aisheng}; 430f2180be1SDong Aisheng 4315bb27917SMirela Rabulea#include "imx8qm-ss-img.dtsi" 432f2180be1SDong Aisheng#include "imx8qm-ss-dma.dtsi" 433f2180be1SDong Aisheng#include "imx8qm-ss-conn.dtsi" 434f2180be1SDong Aisheng#include "imx8qm-ss-lsio.dtsi" 435