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

Commit d8afec66 authored by Jingbiao Lu's avatar Jingbiao Lu
Browse files

ARM: dts: msm: add device tree overlay support for sdm439/sdm429



Add device tree overlay support for sdm439/sdm429. Also add device
tree overlay support for sdm439/sdm429 Interposer on msm8937.

Change-Id: Ib7907de2506e7131a4ae54deb445dfa6787baafd
Signed-off-by: default avatarJingbiao Lu <jingbiao@codeaurora.org>
parent 8ebf6cba
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
@@ -294,6 +294,14 @@ dtbo-$(CONFIG_ARCH_SDM632) += sdm632-rumi-overlay.dtbo \
	sdm450-mtp-s3-overlay.dtbo \
	sdm450-qrd-sku4-overlay.dtbo

dtbo-$(CONFIG_ARCH_SDM439) += sdm439-mtp-overlay.dtbo \
	sdm439-cdp-overlay.dtbo \
	sdm439-qrd-overlay.dtbo

dtbo-$(CONFIG_ARCH_SDM429) += sdm429-mtp-overlay.dtbo \
	sdm429-cdp-overlay.dtbo \
	sdm429-qrd-overlay.dtbo

msm8953-mtp-overlay.dtbo-base := sdm450.dtb \
	msm8953.dtb \
	apq8053.dtb \
@@ -332,6 +340,18 @@ sdm450-qrd-sku4-overlay.dtbo-base := sdm450-pmi632.dtb \
	sdm632.dtb
sdm632-rumi-overlay.dtbo-base := sdm632.dtb

sdm439-mtp-overlay.dtbo-base := sdm439.dtb \
	msm8937-interposer-sdm439.dtb
sdm439-cdp-overlay.dtbo-base := sdm439.dtb \
	msm8937-interposer-sdm439.dtb
sdm439-qrd-overlay.dtbo-base := sdm439.dtb \
	msm8937-interposer-sdm439.dtb
sdm429-mtp-overlay.dtbo-base := sdm429.dtb \
	msm8937-interposer-sdm429.dtb
sdm429-cdp-overlay.dtbo-base := sdm429.dtb \
	msm8937-interposer-sdm429.dtb
sdm429-qrd-overlay.dtbo-base := sdm429.dtb \
	msm8937-interposer-sdm429.dtb
else
dtb-$(CONFIG_ARCH_MSM8953) += msm8953-cdp.dtb \
	msm8953-mtp.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/;

#include "msm8937-interposer-sdm429.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM8953 + PMI632 SOC";
	compatible = "qcom,msm8953";
	qcom,pmic-id = <0x010016 0x25 0x0 0x0>;
	qcom.pmic-name = "PMI632";
};
+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/;

#include "msm8937-interposer-sdm439.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM8953 + PMI632 SOC";
	compatible = "qcom,msm8953";
	qcom,pmic-id = <0x010016 0x25 0x0 0x0>;
	qcom.pmic-name = "PMI632";
};
+26 −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/gpio/gpio.h>
#include <dt-bindings/clock/msm-clocks-8953.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
#include "sdm429-cdp.dtsi"

/ {
	model = "CDP";
	qcom,board-id = <1 3>;
	qcom,msm-id = <354 0x0>;
};
+26 −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/gpio/gpio.h>
#include <dt-bindings/clock/msm-clocks-8953.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
#include "sdm429-mtp.dtsi"

/ {
	model = "MTP";
	qcom,board-id = <8 2>;
	qcom,msm-id = <354 0x0>;
};
Loading