ARM: dts: msm: Support for APQ variant on Sun SoC

Add v1 and v2 DT support for APQ variant on MTP, CDP
and QRD platforms.

Change-Id: Ifb447f14db06038d537951bd9b37f279c4757c0b
Signed-off-by: Unnathi Chalicheemala <quic_uchalich@quicinc.com>
This commit is contained in:
Unnathi Chalicheemala
2023-10-30 09:55:32 -07:00
parent ccfdbe9ae8
commit 3afa08eaed
11 changed files with 71 additions and 12 deletions

View File

@@ -16,6 +16,7 @@ add-overlays = $(foreach o,$1,$(foreach b,$2,$(eval $(basename $b)-$(basename $o
ifneq ($(CONFIG_ARCH_QTI_VM), y) ifneq ($(CONFIG_ARCH_QTI_VM), y)
SUN_BASE_DTB += sun.dtb sun-v2.dtb SUN_BASE_DTB += sun.dtb sun-v2.dtb
SUN_APQ_BASE_DTB += sunp.dtb sunp-v2.dtb
SUN_BOARDS += \ SUN_BOARDS += \
sun-mtp-overlay.dtbo \ sun-mtp-overlay.dtbo \

View File

@@ -10,7 +10,8 @@
/ { / {
model = "Qualcomm Technologies, Inc. Sun CDP Kiwi WLAN"; model = "Qualcomm Technologies, Inc. Sun CDP Kiwi WLAN";
compatible = "qcom,sun-cdp", "qcom,sun", "qcom,cdp"; compatible = "qcom,sun-cdp", "qcom,sun", "qcom,sunp-cdp", "qcom,sunp",
qcom,msm-id = <618 0x10000>, <618 0x20000>; "qcom,cdp";
qcom,msm-id = <618 0x10000>, <618 0x20000>, <639 0x10000>, <639 0x20000>;
qcom,board-id = <0x20001 0>; qcom,board-id = <0x20001 0>;
}; };

View File

@@ -10,7 +10,8 @@
/ { / {
model = "Qualcomm Technologies, Inc. Sun CDP"; model = "Qualcomm Technologies, Inc. Sun CDP";
compatible = "qcom,sun-cdp", "qcom,sun", "qcom,cdp"; compatible = "qcom,sun-cdp", "qcom,sun", "qcom,sunp-cdp", "qcom,sunp",
qcom,msm-id = <618 0x10000>, <618 0x20000>; "qcom,cdp";
qcom,msm-id = <618 0x10000>, <618 0x20000>, <639 0x10000>, <639 0x20000>;
qcom,board-id = <1 0>; qcom,board-id = <1 0>;
}; };

View File

@@ -10,7 +10,8 @@
/ { / {
model = "Qualcomm Technologies, Inc. Sun MTP Kiwi WLAN"; model = "Qualcomm Technologies, Inc. Sun MTP Kiwi WLAN";
compatible = "qcom,sun-mtp", "qcom,sun", "qcom,mtp"; compatible = "qcom,sun-mtp", "qcom,sun", "qcom,sunp-mtp", "qcom,sunp",
qcom,msm-id = <618 0x10000>, <618 0x20000>; "qcom,mtp";
qcom,msm-id = <618 0x10000>, <618 0x20000>, <639 0x10000>, <639 0x20000>;
qcom,board-id = <0x20008 0>; qcom,board-id = <0x20008 0>;
}; };

View File

@@ -10,7 +10,8 @@
/ { / {
model = "Qualcomm Technologies, Inc. Sun MTP"; model = "Qualcomm Technologies, Inc. Sun MTP";
compatible = "qcom,sun-mtp", "qcom,sun", "qcom,mtp"; compatible = "qcom,sun-mtp", "qcom,sun", "qcom,sunp-mtp", "qcom,sunp",
qcom,msm-id = <618 0x10000>, <618 0x20000>; "qcom,mtp";
qcom,msm-id = <618 0x10000>, <618 0x20000>, <639 0x10000>, <639 0x20000>;
qcom,board-id = <8 0>; qcom,board-id = <8 0>;
}; };

View File

@@ -10,7 +10,8 @@
/ { / {
model = "Qualcomm Technologies, Inc. Sun QRD SKU1"; model = "Qualcomm Technologies, Inc. Sun QRD SKU1";
compatible = "qcom,sun-qrd", "qcom,sun", "qcom,qrd"; compatible = "qcom,sun-qrd", "qcom,sun", "qcom,sunp-qrd", "qcom,sunp",
qcom,msm-id = <618 0x10000>, <618 0x20000>; "qcom,qrd";
qcom,msm-id = <618 0x10000>, <618 0x20000>, <639 0x10000>, <639 0x20000>;
qcom,board-id = <0x1000B 0>; qcom,board-id = <0x1000B 0>;
}; };

View File

@@ -10,7 +10,8 @@
/ { / {
model = "Qualcomm Technologies, Inc. Sun QRD SKU2"; model = "Qualcomm Technologies, Inc. Sun QRD SKU2";
compatible = "qcom,sun-qrd", "qcom,sun", "qcom,qrd"; compatible = "qcom,sun-qrd", "qcom,sun", "qcom,sunp-qrd", "qcom,sunp",
qcom,msm-id = <618 0x10000>, <618 0x20000>; "qcom,qrd";
qcom,msm-id = <618 0x10000>, <618 0x20000>, <639 0x10000>, <639 0x20000>;
qcom,board-id = <0x2000B 0>; qcom,board-id = <0x2000B 0>;
}; };

14
qcom/sunp-v2.dts Normal file
View File

@@ -0,0 +1,14 @@
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
*/
/dts-v1/;
#include "sunp-v2.dtsi"
/ {
model = "Qualcomm Technologies, Inc. SunP v2 SoC";
compatible = "qcom,sunp";
qcom,board-id = <0 0>;
};

12
qcom/sunp-v2.dtsi Normal file
View File

@@ -0,0 +1,12 @@
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#include "sun-v2.dtsi"
/ {
model = "Qualcomm Technologies, Inc. SunP v2 SoC";
compatible = "qcom,sunp";
qcom,msm-id = <639 0x20000>;
};

14
qcom/sunp.dts Normal file
View File

@@ -0,0 +1,14 @@
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
*/
/dts-v1/;
#include "sunp.dtsi"
/ {
model = "Qualcomm Technologies, Inc. SunP SoC";
compatible = "qcom,sunp";
qcom,board-id = <0 0>;
};

12
qcom/sunp.dtsi Normal file
View File

@@ -0,0 +1,12 @@
// SPDX-License-Identifier: BSD-3-Clause
/*
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
*/
#include "sun.dtsi"
/ {
model = "Qualcomm Technologies, Inc. SunP SoC";
compatible = "qcom,sunp";
qcom,msm-id = <639 0x10000>;
};