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

Commit d2e9ac50 authored by Vijaykumar Badiger's avatar Vijaykumar Badiger Committed by Gerrit - the friendly Code Review server
Browse files

ARM: dts: msm: Add device tree for sm8150-auto



Add initial device tree support for SM8150 based automotive
platforms.

Change-Id: I2fd0864b7b9371f750599da9ab54932ab91874bb
Signed-off-by: default avatarVijaykumar Badiger <vbadig@codeaurora.org>
parent 9b818cd7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -145,3 +145,5 @@ compatible = "qcom,sdm640-qrd"
compatible = "qcom,qcs405-rumi"
compatible = "qcom,qcs405-mtp"
compatible = "qcom,qcs405-cdp"
compatible = "qcom,sm8150-auto-adp-star"
compatible = "qcom,auto-adp-star"
+3 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@ ifeq ($(CONFIG_BUILD_ARM64_DT_OVERLAY),y)
		sm8150-mtp-overlay.dtbo \
		sm8150-rumi-overlay.dtbo \
		sm8150-qrd-overlay.dtbo \
		sm8150-auto-adp-star-overlay.dtbo \
		sm8150p-cdp-overlay.dtbo \
		sm8150p-mtp-overlay.dtbo \
		sm8150p-qrd-overlay.dtbo \
@@ -26,6 +27,7 @@ sm8150-cdp-overlay.dtbo-base := sm8150.dtb sm8150-v2.dtb
sm8150-mtp-overlay.dtbo-base := sm8150.dtb sm8150-v2.dtb
sm8150-rumi-overlay.dtbo-base := sm8150.dtb sm8150-v2.dtb
sm8150-qrd-overlay.dtbo-base := sm8150.dtb sm8150-v2.dtb
sm8150-auto-adp-star-overlay.dtbo-base := sm8150-auto.dtb
sm8150-sdx50m-cdp-overlay.dtbo-base := sm8150.dtb sm8150-v2.dtb
sm8150-sdx50m-mtp-overlay.dtbo-base := sm8150.dtb sm8150-v2.dtb
sm8150p-mtp-overlay.dtbo-base := sm8150p.dtb sm8150p-v2.dtb
@@ -35,6 +37,7 @@ dtb-$(CONFIG_ARCH_SM8150) += sm8150-rumi.dtb \
	sm8150-mtp.dtb \
	sm8150-cdp.dtb \
	sm8150-qrd.dtb \
	sm8150-auto-adp-star.dtb \
	sm8150-v2-rumi.dtb \
	sm8150-v2-mtp.dtb \
	sm8150-v2-cdp.dtb \
+23 −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/;
/plugin/;

#include "sm8150-auto-adp-star.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SM8150 AUTO-ADP-STAR";
	compatible = "qcom,sm8150-auto-adp-star", "qcom,sm8150",
		"qcom,auto-adp-star";
	qcom,board-id = <25 0>;
};
+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 "sm8150-auto.dtsi"
#include "sm8150-auto-adp-star.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SM8150 AUTO-ADP-STAR";
	compatible = "qcom,sm8150-auto-adp-star", "qcom,sm8150",
		"qcom,auto-adp-star";
	qcom,board-id = <25 0>;
};
+27 −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 {
	qcom,lpass@17300000 {
		status = "disabled";
	};

	qcom,ssc@5c00000 {
		status = "disabled";
	};

	qcom,glink {
		modem {
			status = "disabled";
		};
	};
};
Loading