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

Commit b5a0ef41 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 support for APQGOLD"

parents 1086ce1a f45a8d02
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -44,6 +44,9 @@ SoCs:
- APQ8937
  compatible = "qcom,apq8037"

- APQGOLD
  compatible = "qcom,apqgold"

- APQTITANIUM
  compatible = "qcom,apqtitanium"

@@ -169,6 +172,8 @@ compatible = "qcom,apq8096-sbc"
compatible = "qcom,apq8096-liquid"
compatible = "qcom,apq8037-cdp"
compatible = "qcom,apq8037-mtp"
compatible = "qcom,apqgold-cdp"
compatible = "qcom,apqgold-mtp"
compatible = "qcom,apqtitanium-cdp"
compatible = "qcom,apqtitanium-mtp"
compatible = "qcom,mdm9630-cdp"
+3 −1
Original line number Diff line number Diff line
@@ -108,7 +108,9 @@ dtb-$(CONFIG_ARCH_MSM8937) += msm8937-rumi.dtb \
dtb-$(CONFIG_ARCH_MSMGOLD) += msmgold-rumi.dtb \
	msmgold-cdp.dtb \
	msmgold-mtp.dtb \
	msmgold-rcm.dtb
	msmgold-rcm.dtb \
	apqgold-cdp.dtb \
	apqgold-mtp.dtb

dtb-$(CONFIG_ARCH_MSMTITANIUM) += msmtitanium-sim.dtb \
	msmtitanium-rumi.dtb \
+23 −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 "apqgold.dtsi"
#include "msmgold-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQGOLD CDP";
	compatible = "qcom,apqgold-cdp", "qcom,apqgold", "qcom,cdp";
	qcom,board-id= <1 0>;
};
+23 −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 "apqgold.dtsi"
#include "msmgold-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQGOLD MTP";
	compatible = "qcom,apqgold-mtp", "qcom,apqgold", "qcom,mtp";
	qcom,board-id= <8 0>;
};
+19 −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 "msmgold.dtsi"
/ {
	model = "Qualcomm Technologies, Inc. APQGOLD";
	compatible = "qcom,apqgold";
	qcom,msm-id = <307 0x0>;
};
Loading