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

Commit 6d4bb83f authored by Channagoud Kadabi's avatar Channagoud Kadabi Committed by Trilok Soni
Browse files

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



Add support for device tree needed to support msmskunk soc and msmskunk
simulator platform

CRs-Fixed: 1040842
Change-Id: Ie379c605ec7a173061ca64dac972e224616d9c82
Signed-off-by: default avatarChannagoud Kadabi <ckadabi@codeaurora.org>
parent 321da66f
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -105,6 +105,13 @@ config ARCH_QCOM
	help
	  This enables support for the ARMv8 based Qualcomm chipsets.

config ARCH_MSMSKUNK
	bool "Enable Support for Qualcomm MSMSKUNK"
	depends on ARCH_QCOM
	help
	  This enables support for the MSMSKUNK chipset. If you do not
	  wish to build a kernel that runs on this chipset, say 'N' here.

config ARCH_ROCKCHIP
	bool "Rockchip Platforms"
	select ARCH_HAS_RESET_CONTROLLER
+3 −0
Original line number Diff line number Diff line
dtb-$(CONFIG_ARCH_QCOM)	+= apq8016-sbc.dtb msm8916-mtp.dtb
dtb-$(CONFIG_ARCH_QCOM)	+= msm8996-mtp.dtb

dtb-$(CONFIG_ARCH_QCOM) += msmskunk-sim.dtb
dtb-$(CONFIG_ARCH_QCOM) += msmskunk-rumi.dtb

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

/ {
	model = "Qualcomm Technologies, Inc. MSM SKUNK RUMI";
	compatible = "qcom,msmskunk-rumi", "qcom,msmskunk", "qcom,rumi";
	qcom,board-id = <15 0>;
};
+11 −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.
 */
+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 "msmskunk.dtsi"
#include "msmskunk-sim.dtsi"

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