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

Commit 5e1ddb44 authored by Abhimanyu Kapur's avatar Abhimanyu Kapur
Browse files

ARM: dts: msm: add support for msmcobalt v2



Add support for msmcobalt v2 and the required mtp, cdp,
rumi and sim files and update the makefle to build them.

Change-Id: Id93179bba6df488058e896633829c48cb1633373
Signed-off-by: default avatarAbhimanyu Kapur <abhimany@codeaurora.org>
parent 1de21d8e
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -91,7 +91,11 @@ dtb-$(CONFIG_ARCH_MSM8996) += msm8996-v2-pmi8994-cdp.dtb \
dtb-$(CONFIG_ARCH_MSMCOBALT) += msmcobalt-sim.dtb \
	msmcobalt-rumi.dtb \
	msmcobalt-cdp.dtb \
	msmcobalt-mtp.dtb
	msmcobalt-mtp.dtb \
	msmcobalt-v2-sim.dtb \
	msmcobalt-v2-rumi.dtb \
	msmcobalt-v2-mtp.dtb \
	msmcobalt-v2-cdp.dtb

dtb-$(CONFIG_ARCH_MDM9640) += mdm9640-sim.dtb \
	mdm9640-rumi.dtb \
+23 −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 "msmcobalt-v2.dtsi"
#include "msmcobalt-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM cobalt v2";
	compatible = "qcom,msmcobalt-cdp", "qcom,msmcobalt", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+23 −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 "msmcobalt-v2.dtsi"
#include "msmcobalt-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM cobalt v2";
	compatible = "qcom,msmcobalt-mtp", "qcom,msmcobalt", "qcom,mtp";
	qcom,board-id = <8 0>;
};
+24 −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/;
/memreserve/ 0x90000000 0x00000100;

#include "msmcobalt-v2.dtsi"
#include "msmcobalt-rumi.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM COBALT V2 RUMI";
	compatible = "qcom,msmcobalt-rumi", "qcom,msmcobalt", "qcom,rumi";
	qcom,board-id = <15 0>;
};
+24 −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/;
/memreserve/ 0x90000000 0x00000100;

#include "msmcobalt-v2.dtsi"
#include "msmcobalt-sim.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM COBALT V2 SIM";
	compatible = "qcom,msmcobalt-sim", "qcom,msmcobalt", "qcom,sim";
	qcom,board-id = <16 0>;
};
Loading