Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 54abb408 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: dts: msm: Add platform device files for Lito"

parents 2b75821c f11e9fcb
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -79,8 +79,8 @@ Generic board variants:
- MTP device:
  compatible = "qcom,mtp"

- IDP device:
  compatible = "qcom,idp"
- ATP device:
  compatible = "qcom,atp"

- FLUID device:
  compatible = "qcom,fluid"
@@ -163,6 +163,9 @@ compatible = "qcom,kona-mtp"
compatible = "qcom,kona-cdp"
compatible = "qcom,kona-qrd"
compatible = "qcom,lito-rumi"
compatible = "qcom,lito-mtp"
compatible = "qcom,lito-cdp"
compatible = "qcom,lito-atp"
compatible = "qcom,sdmshrike-rumi"
compatible = "qcom,sdmshrike-mtp"
compatible = "qcom,sdmshrike-cdp"
+11 −2
Original line number Diff line number Diff line
@@ -30,11 +30,20 @@ dtb-$(CONFIG_ARCH_KONA) += kona-rumi.dtb \
endif

ifeq ($(CONFIG_BUILD_ARM64_DT_OVERLAY),y)
dtbo-$(CONFIG_ARCH_LITO) += lito-rumi-overlay.dtbo
dtbo-$(CONFIG_ARCH_LITO) += lito-rumi-overlay.dtbo \
		lito-mtp-overlay.dtbo \
		lito-cdp-overlay.dtbo \
		lito-atp-overlay.dtbo

lito-rumi-overlay.dtbo-base := lito.dtb
lito-mtp-overlay.dtbo-base := lito.dtb
lito-cdp-overlay.dtbo-base := lito.dtb
lito-atp-overlay.dtbo-base := lito.dtb
else
dtb-$(CONFIG_ARCH_LITO) += lito-rumi.dtb
dtb-$(CONFIG_ARCH_LITO) += lito-rumi.dtb \
		lito-mtp.dtb \
		lito-cdp.dtb \
		lito-atp.dtb
endif

always		:= $(dtb-y)
+17 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2019, The Linux Foundation. All rights reserved.
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/interrupt-controller/arm-gic.h>
#include "lito-atp.dtsi"

/ {
	model = "ATP";
	compatible = "qcom,lito-atp", "qcom,lito", "qcom,atp";
	qcom,msm-id = <400 0x10000>;
	qcom,board-id = <33 0>;
};
+15 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2019, The Linux Foundation. All rights reserved.
 */

/dts-v1/;

#include "lito.dtsi"
#include "lito-atp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. Lito ATP";
	compatible = "qcom,lito-atp", "qcom,lito", "qcom,atp";
	qcom,board-id = <33 0>;
};
+8 −0
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright  (c) 2019 , The Linux Foundation. All rights reserved.
 */

&soc {

};
Loading