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

Commit 206ecb9c authored by Osvaldo Banuelos's avatar Osvaldo Banuelos
Browse files

ARM: dts: msm: Add support for new samarium variants



Add device tree files for new samarium MSM and APQ variants.
Update the Makefile to include the new device tree blob. Also,
update the SoC ID mapping table and board file to support
these added variants.

Change-Id: I99741ca7c4b121d4d7666b326f4dd2e989ff5eb9
Signed-off-by: default avatarOsvaldo Banuelos <osvaldob@codeaurora.org>
parent 1ce07d93
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -159,7 +159,9 @@ dtb-$(CONFIG_ARCH_MSMKRYPTON) += msmkrypton-sim.dtb
dtb-$(CONFIG_ARCH_MSMSAMARIUM) += msmsamarium-sim.dtb \
	msmsamarium-rumi.dtb \
	msmsamarium-cdp-interposer.dtb \
	msmsamarium-cdp.dtb
	msmsamarium-cdp.dtb \
	msmsamarium-mtp.dtb \
	apqsamarium-mtp.dtb
dtb-$(CONFIG_ARCH_MPQ8092) += mpq8092-sim.dtb \
	mpq8092-rumi.dtb
dtb-$(CONFIG_ARCH_APQ8084) += apq8084-sim.dtb \
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2013, 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/ "apqsamarium.dtsi"
/include/ "msmsamarium-mtp.dtsi"

/ {
	model = "Qualcomm APQ SAMARIUM MTP";
	compatible = "qcom,apqsamarium-mtp", "qcom,apqsamarium", "qcom,mtp";
	qcom,board-id = <8 0>;
};
+24 −0
Original line number Diff line number Diff line
/* Copyright (c) 2013, 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.
 */

/*
 * Only samarium APQ-specific property overrides should be placed inside this
 * file. Device definitions should be placed inside the msmsamarium.dtsi file.
 */

/include/ "msmsamarium.dtsi"

/ {
	model = "Qualcomm APQ SAMARIUM";
	compatible = "qcom,apqsamarium";
	qcom,msm-id = <197 0>;
};
+22 −0
Original line number Diff line number Diff line
/* Copyright (c) 2013, 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/ "msmsamarium.dtsi"
/include/ "msmsamarium-mtp.dtsi"

/ {
	model = "Qualcomm MSM SAMARIUM MTP";
	compatible = "qcom,msmsamarium-mtp", "qcom,msmsamarium", "qcom,mtp";
	qcom,board-id = <8 0>;
};
+24 −0
Original line number Diff line number Diff line
/* Copyright (c) 2013, 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.
*/

/ {
	aliases {
		serial0 = &blsp1_uart1;
	};
};

&soc {
};

&blsp1_uart1 {
	status = "ok";
};
Loading