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

Commit 8e6cb2cb authored by Neeraj Upadhyay's avatar Neeraj Upadhyay Committed by zhaochen
Browse files

ARM: dts: msm: Add SDM845 VM dts



Add SDM845 Vm device tree file, with minimal configuration
for interrupt controller.

Change-Id: Ib13a6cb9f6ed99ecb8b0ebc1d89ef46669d0a3aa
Signed-off-by: default avatarNeeraj Upadhyay <neeraju@codeaurora.org>
Signed-off-by: default avatarMinming Qi <mqi@codeaurora.org>
Signed-off-by: default avatarzhaochen <zhaochen@codeaurora.org>
parent 5b6026c7
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -329,6 +329,7 @@ compatible = "qcom,sdm845-mtp"
compatible = "qcom,sdm845-mtp"
compatible = "qcom,sdm845-qrd"
compatible = "qcom,sdm845-qvr"
compatible = "qcom,sdm845-vm"
compatible = "qcom,sda845-cdp"
compatible = "qcom,sda845-mtp"
compatible = "qcom,sda845-qrd"
+2 −0
Original line number Diff line number Diff line
@@ -621,6 +621,8 @@ dtb-$(CONFIG_ARCH_SDM429) += sdm429-mtp.dtb \

endif

dtb-$(CONFIG_ARCH_SDM845_VM) += sdm845-vm.dtb

always		:= $(dtb-y)
subdir-y	:= $(dts-dirs)
clean-files	:= *.dtb
+29 −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/;

/ {
	#address-cells = <2>;
	#size-cells = <2>;
	model = "SDM845 Virtual Platform";
	compatible = "qcom,sdm845-vm";

	interrupt-parent = <&intc>;

	intc: interrupt-controller {
		interrupt-controller;
		compatible = "arm,cortex-a9-gic";
		#interrupt-cells = <3>;
		interrupt-parent = <&intc>;
	};
};