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

Commit 17ebeb76 authored by Runmin Wang's avatar Runmin Wang
Browse files

ARM: dts: msm: Add support for apqcobalt v2



Add support for apqcobalt v2 on mtp, cdp and qrd platforms.

CRs-Fixed: 1051130
Change-Id: I78d5fbe263ceeb592c47709d6189ce2c728b74c8
Signed-off-by: default avatarRunmin Wang <runminw@codeaurora.org>
parent 28352998
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -182,6 +182,7 @@ compatible = "qcom,apqtitanium-cdp"
compatible = "qcom,apqtitanium-mtp"
compatible = "qcom,apqcobalt-cdp"
compatible = "qcom,apqcobalt-mtp"
compatible = "qcom,apqcobalt-qrd"
compatible = "qcom,mdm9630-cdp"
compatible = "qcom,mdm9630-mtp"
compatible = "qcom,mdm9630-sim"
+4 −1
Original line number Diff line number Diff line
@@ -112,7 +112,10 @@ dtb-$(CONFIG_ARCH_MSMCOBALT) += msmcobalt-sim.dtb \
	msmcobalt-v2-mtp.dtb \
	msmcobalt-v2-cdp.dtb \
	apqcobalt-mtp.dtb \
	apqcobalt-cdp.dtb
	apqcobalt-cdp.dtb \
	apqcobalt-v2-mtp.dtb \
	apqcobalt-v2-cdp.dtb \
	apqcobalt-v2-qrd.dtb

dtb-$(CONFIG_ARCH_MSMHAMSTER) += msmhamster-rumi.dtb

+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2016, 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 "apqcobalt-v2.dtsi"
#include "msmcobalt-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ COBALT V2 CDP";
	compatible = "qcom,apqcobalt-cdp", "qcom,apqcobalt", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2016, 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 "apqcobalt-v2.dtsi"
#include "msmcobalt-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ COBALT V2 MTP";
	compatible = "qcom,apqcobalt-mtp", "qcom,apqcobalt", "qcom,mtp";
	qcom,board-id = <8 0>;
};
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2016, 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 "apqcobalt-v2.dtsi"
#include "msmcobalt-qrd.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ COBALT V2 QRD";
	compatible = "qcom,apqcobalt-qrd", "qcom,apqcobalt", "qcom,qrd";
	qcom,board-id = <11 0>;
};
Loading