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

Commit 5b9314a4 authored by Prateek Sood's avatar Prateek Sood
Browse files

ARM: dts: msm: Add initial device tree support for SDMMAGPIEP



Introduce DTS files to support APQ version of SDMMAGPIE chipset.

Change-Id: Ifce5da936df2399bbcd6b17b20cc6f1298667fbc
Signed-off-by: default avatarPrateek Sood <prsood@codeaurora.org>
parent bb84735e
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -178,3 +178,6 @@ compatible = "qcom,sdxprairie-cdp"
compatible = "qcom,sdmmagpie-rumi"
compatible = "qcom,sdmmagpie-idp"
compatible = "qcom,sdmmagpie-qrd"
compatible = "qcom,sdmmagpiep-idp"
compatible = "qcom,sdmmagpiep"
compatible = "qcom,sdmmagpiep-qrd"
+7 −1
Original line number Diff line number Diff line
@@ -123,14 +123,20 @@ ifeq ($(CONFIG_BUILD_ARM64_DT_OVERLAY),y)
		sdmmagpie-idp-overlay.dtbo \
		sdmmagpie-rumi-overlay.dtbo \
		sdmmagpie-qrd-overlay.dtbo \
		sdmmagpiep-idp-overlay.dtbo \
		sdmmagpiep-qrd-overlay.dtbo

sdmmagpie-idp-overlay.dtbo-base := sdmmagpie.dtb
sdmmagpie-rumi-overlay.dtbo-base := sdmmagpie.dtb
sdmmagpie-qrd-overlay.dtbo-base := sdmmagpie.dtb
sdmmagpiep-idp-overlay.dtbo-base := sdmmagpiep.dtb
sdmmagpiep-qrd-overlay.dtbo-base := sdmmagpiep.dtb
else
dtb-$(CONFIG_ARCH_SDMMAGPIE)	+= sdmmagpie-rumi.dtb \
	sdmmagpie-idp.dtb \
	sdmmagpie-qrd.dtb
	sdmmagpie-qrd.dtb \
	sdmmagpiep-idp.dtb \
	sdmmagpiep-qrd.dtb
endif

dtb-$(CONFIG_ARCH_SDXPRAIRIE) += sdxprairie-rumi.dtb \
+25 −0
Original line number Diff line number Diff line
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/interrupt-controller/arm-gic.h>

#include "sdmmagpie-idp.dtsi"

/ {
	model = "IDP";
	compatible = "qcom,sdmmagpiep-idp", "qcom,sdmmagpiep", "qcom,idp";
	qcom,msm-id = <366 0x0>;
	qcom,board-id = <34 0>;
};
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;

#include "sdmmagpiep.dtsi"
#include "sdmmagpie-idp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDMMAGPIEP PM6150 IDP";
	compatible = "qcom,sdmmagpiep-idp", "qcom,sdmmagpiep", "qcom,idp";
	qcom,board-id = <34 0>;
};
+25 −0
Original line number Diff line number Diff line
/* Copyright (c) 2018, The Linux Foundation. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

/dts-v1/;
/plugin/;

#include <dt-bindings/interrupt-controller/arm-gic.h>

#include "sdmmagpie-qrd.dtsi"

/ {
	model = "QRD";
	compatible = "qcom,sdmmagpiep-qrd", "qcom,sdmmagpiep", "qcom,qrd";
	qcom,msm-id = <366 0>;
	qcom,board-id = <11 0>;
};
Loading