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

Commit 81461d32 authored by Jeevan Shriram's avatar Jeevan Shriram
Browse files

ARM: dts: msm: Add initial device tree support for SDMSHRIKE SoC



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

Change-Id: Ifd5321444f1e2824e8dbe1b4cf98f630ea13913d
Signed-off-by: default avatarJeevan Shriram <jshriram@codeaurora.org>
parent abc9c19d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -25,6 +25,10 @@ dtb-$(CONFIG_ARCH_SDM855) += sdm855-rumi.dtb \
	sdm855-qrd.dtb
endif

dtb-$(CONFIG_ARCH_SDMSHRIKE)	+= sdmshrike-rumi.dtb \
	sdmshrike-mtp.dtb \
	sdmshrike-cdp.dtb

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 "sdmshrike.dtsi"
#include "sdmshrike-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDMSHRIKE CDP";
	compatible = "qcom,sdmshrike-cdp", "qcom,sdmshrike", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+11 −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.
 */
+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 "sdmshrike.dtsi"
#include "sdmshrike-mtp.dtsi"

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