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

Commit 693e2cde authored by Srinivas Ramana's avatar Srinivas Ramana
Browse files

ARM: dts: msm: Add device tree for msmfalcon CDP, MTP & RCM



Add initial device tree support for CDP, MTP and RCM
platforms of msmfalcon.

Change-Id: I2e4591c50fe3db61ed3a4364647579bf254d0edd
Signed-off-by: default avatarSrinivas Ramana <sramana@codeaurora.org>
parent 5142c18b
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -262,6 +262,8 @@ compatible = "qcom,msmhamster-cdp"
compatible = "qcom,msmhamster-mtp"
compatible = "qcom,msmfalcon-sim"
compatible = "qcom,msmfalcon-rumi"
compatible = "qcom,msmfalcon-cdp"
compatible = "qcom,msmfalcon-mtp"
compatible = "qcom,msmtriton-rumi"
compatible = "qcom,msm8952-rumi"
compatible = "qcom,msm8952-sim"
+4 −1
Original line number Diff line number Diff line
@@ -135,7 +135,10 @@ dtb-$(CONFIG_ARCH_MSM8998) += msm8998-sim.dtb \
dtb-$(CONFIG_ARCH_MSMHAMSTER) += msmhamster-rumi.dtb

dtb-$(CONFIG_ARCH_MSMFALCON) += msmfalcon-sim.dtb \
	msmfalcon-rumi.dtb
	msmfalcon-rumi.dtb \
	msmfalcon-cdp.dtb \
	msmfalcon-mtp.dtb \
	msmfalcon-rcm.dtb

dtb-$(CONFIG_ARCH_MSMTRITON) += msmtriton-rumi.dtb

+23 −0
Original line number Diff line number Diff line
/* Copyright (c) 2016, 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 "msmfalcon.dtsi"
#include "msmfalcon-cdp.dtsi"

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

&uartblsp1dm1 {
	status = "ok";
	pinctrl-names = "default";
	pinctrl-0 = <&uart_console_active>;
};

&soc {
};
+23 −0
Original line number Diff line number Diff line
/* Copyright (c) 2016, 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 "msmfalcon.dtsi"
#include "msmfalcon-mtp.dtsi"

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