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

Commit 8b750804 authored by Srinivas Ramana's avatar Srinivas Ramana
Browse files

ARM: dts: msm: Add initial device tree for sdm640



Add initial device tree to support sdm640 on rumi, mtp, cdp and
qrd platforms.

Change-Id: Ie9d89013d91ecbd47c88e53a14846d4fb5b60715
Signed-off-by: default avatarSrinivas Ramana <sramana@codeaurora.org>
parent 0ea8769e
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -45,6 +45,24 @@ dtb-$(CONFIG_ARCH_SDMSHRIKE) += sdmshrike-rumi.dtb \
	sdmshrike-mtp.dtb \
	sdmshrike-cdp.dtb

ifeq ($(CONFIG_BUILD_ARM64_DT_OVERLAY),y)
	dtbo-$(CONFIG_ARCH_SDM640) += \
		sdm640-cdp-overlay.dtbo \
		sdm640-mtp-overlay.dtbo \
		sdm640-rumi-overlay.dtbo \
		sdm640-qrd-overlay.dtbo \

sdm640-cdp-overlay.dtbo-base := sdm640.dtb
sdm640-mtp-overlay.dtbo-base := sdm640.dtb
sdm640-rumi-overlay.dtbo-base := sdm640.dtb
sdm640-qrd-overlay.dtbo-base := sdm640.dtb
else
dtb-$(CONFIG_ARCH_SDM640)	+= sdm640-rumi.dtb \
	sdm640-mtp.dtb \
	sdm640-cdp.dtb \
	sdm640-qrd.dtb
endif

always		:= $(dtb-y)
subdir-y	:= $(dts-dirs)
clean-files	:= *.dtb *.dtbo
+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 "sdm640.dtsi"
#include "sdm640-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDM640 CDP";
	compatible = "qcom,sdm640-cdp", "qcom,sdm640", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+14 −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.
 */

&soc {
};
+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 "sdm640.dtsi"
#include "sdm640-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDM640 MTP";
	compatible = "qcom,sdm640-mtp", "qcom,sdm640", "qcom,mtp";
	qcom,board-id = <8 0>;
};
+14 −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.
 */

&soc {
};
Loading