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

Commit a4862e02 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ARM: dts: msm: Add initial device tree support for SDM855 V2"

parents e303f1be 90f33e5d
Loading
Loading
Loading
Loading
+13 −1
Original line number Diff line number Diff line
@@ -13,16 +13,28 @@ ifeq ($(CONFIG_BUILD_ARM64_DT_OVERLAY),y)
		sdm855-mtp-overlay.dtbo \
		sdm855-rumi-overlay.dtbo \
		sdm855-qrd-overlay.dtbo \
		sdm855-v2-cdp-overlay.dtbo \
		sdm855-v2-mtp-overlay.dtbo \
		sdm855-v2-rumi-overlay.dtbo \
		sdm855-v2-qrd-overlay.dtbo

sdm855-cdp-overlay.dtbo-base := sdm855.dtb
sdm855-mtp-overlay.dtbo-base := sdm855.dtb
sdm855-rumi-overlay.dtbo-base := sdm855.dtb
sdm855-qrd-overlay.dtbo-base := sdm855.dtb
sdm855-v2-cdp-overlay.dtbo-base := sdm855-v2.dtb
sdm855-v2-mtp-overlay.dtbo-base := sdm855-v2.dtb
sdm855-v2-rumi-overlay.dtbo-base := sdm855-v2.dtb
sdm855-v2-qrd-overlay.dtbo-base := sdm855-v2.dtb
else
dtb-$(CONFIG_ARCH_SDM855)	+= sdm855-rumi.dtb \
	sdm855-mtp.dtb \
	sdm855-cdp.dtb \
	sdm855-qrd.dtb
	sdm855-qrd.dtb \
	sdm855-v2-rumi.dtb \
	sdm855-v2-mtp.dtb \
	sdm855-v2-cdp.dtb \
	sdm855-v2-qrd.dtb
endif

dtb-$(CONFIG_ARCH_SDMSHRIKE)	+= sdmshrike-rumi.dtb \
+28 −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 <dt-bindings/clock/qcom,gcc-sdm855.h>
#include <dt-bindings/clock/qcom,camcc-sdm855.h>
#include <dt-bindings/clock/qcom,rpmh.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>

#include "sdm855-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDM855 v2 CDP";
	compatible = "qcom,sdm855-cdp", "qcom,sdm855", "qcom,cdp";
	qcom,msm-id = <339 0x20000>;
	qcom,board-id = <1 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 "sdm855-v2.dtsi"
#include "sdm855-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDM855 V2 CDP";
	compatible = "qcom,sdm855-cdp", "qcom,sdm855", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+28 −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 <dt-bindings/clock/qcom,gcc-sdm855.h>
#include <dt-bindings/clock/qcom,camcc-sdm855.h>
#include <dt-bindings/clock/qcom,rpmh.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>

#include "sdm855-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDM855 v2 MTP";
	compatible = "qcom,sdm855-mtp", "qcom,sdm855", "qcom,mtp";
	qcom,msm-id = <339 0x20000>;
	qcom,board-id = <8 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 "sdm855-v2.dtsi"
#include "sdm855-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. SDM855 V2 MTP";
	compatible = "qcom,sdm855-mtp", "qcom,sdm855", "qcom,mtp";
	qcom,board-id = <8 0>;
};
Loading