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

Commit 27e62318 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 initial device tree for APQ FALCON"

parents 451146c2 b12be00f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -92,6 +92,9 @@ SoCs:
- MSMFALCON
  compatible = "qcom,msmfalcon"

- APQFALCON
  compatible = "qcom,apqfalcon"

- MSMTRITON
  compatible = "qcom,msmtriton"

@@ -265,6 +268,8 @@ compatible = "qcom,msmfalcon-rumi"
compatible = "qcom,msmfalcon-cdp"
compatible = "qcom,msmfalcon-mtp"
compatible = "qcom,msmfalcon-qrd"
compatible = "qcom,apqfalcon-mtp"
compatible = "qcom,apqfalcon-cdp"
compatible = "qcom,msmtriton-rumi"
compatible = "qcom,msm8952-rumi"
compatible = "qcom,msm8952-sim"
+4 −1
Original line number Diff line number Diff line
@@ -142,7 +142,10 @@ dtb-$(CONFIG_ARCH_MSMFALCON) += msmfalcon-sim.dtb \
	msmfalcon-internal-codec-mtp.dtb \
	msmfalcon-rcm.dtb \
	msmfalcon-internal-codec-rcm.dtb \
	msmfalcon-qrd.dtb
	msmfalcon-qrd.dtb \
	apqfalcon-cdp.dtb \
	apqfalcon-mtp.dtb \
	apqfalcon-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 "apqfalcon.dtsi"
#include "msmfalcon-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ FALCON CDP";
	compatible = "qcom,apqfalcon-cdp", "qcom,apqfalcon", "qcom,cdp";
	qcom,board-id = <1 0>;
};
+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 "apqfalcon.dtsi"
#include "msmfalcon-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ FALCON MTP";
	compatible = "qcom,apqfalcon-mtp", "qcom,apqfalcon", "qcom,mtp";
	qcom,board-id = <8 0>;
};
+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 "apqfalcon.dtsi"
#include "msmfalcon-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ FALCON RCM";
	compatible = "qcom,apqfalcon-cdp", "qcom,apqfalcon", "qcom,cdp";
	qcom,board-id = <21 0>;
};
Loading