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

Commit c5594597 authored by Venkatesh Yadav Abbarapu's avatar Venkatesh Yadav Abbarapu
Browse files

ARM: dts: msm: Add MTP and CDP support for mdmfermium



Add initial device tree files for CDP and MTP support
for mdmfermium.

Change-Id: I157a153b362f29d3cd71f99273cb4b83a336804a
Signed-off-by: default avatarVenkatesh Yadav Abbarapu <vabbar@codeaurora.org>
parent 0dab3364
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -231,5 +231,7 @@ compatible = "qcom,msmzirc-rumi"
compatible = "qcom,msmzirc-sim"
compatible = "qcom,msmvpipa-sim"
compatible = "qcom,mdmfermium-rumi"
compatible = "qcom,mdmfermium-cdp"
compatible = "qcom,mdmfermium-mtp"
compatible = "qcom,mdmcalifornium-rumi"
compatible = "qcom,mdmcalifornium-sim"
+3 −1
Original line number Diff line number Diff line
@@ -53,7 +53,9 @@ dtb-$(CONFIG_ARCH_MSMTHORIUM) += msmthorium-rumi.dtb
dtb-$(CONFIG_ARCH_MSMTITANIUM) += msmtitanium-sim.dtb \
	msmtitanium-rumi.dtb

dtb-$(CONFIG_ARCH_MDMFERMIUM) += mdmfermium-rumi.dtb
dtb-$(CONFIG_ARCH_MDMFERMIUM) += mdmfermium-rumi.dtb \
	mdmfermium-cdp.dtb \
	mdmfermium-mtp.dtb

dtb-$(CONFIG_ARCH_MSM8916) += msm8952-qrd-skum.dtb \
       msm8952-cdp.dtb \
+22 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015, 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 "mdmfermium-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MDM FERMIUM CDP";
	compatible = "qcom,mdmfermium-cdp", "qcom,mdmfermium", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+24 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015, 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.
 */

#include "mdmfermium.dtsi"
#include "mdmfermium-pinctrl.dtsi"

&soc {
};

&blsp1_uart2 {
	status = "ok";
	pinctrl-names = "default";
	pinctrl-0 = <&uart_console_sleep>;
};
+22 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2015, 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 "mdmfermium-mtp.dtsi"

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