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

Commit 6fe43690 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 APQ8009 and MSM8909 refboard variants"

parents da837cf4 b7cf2410
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -278,8 +278,16 @@ dtb-$(CONFIG_ARCH_MSM8909) += msm8909-pm8916-mtp.dtb \
	msm8909-mtp-wcd9326.dtb \
	msm8909-mtp-wcd9326-refboard.dtb \
	msm8909-512mb-mtp-wcd9326-refboard.dtb \
	msm8909-512mb-cdp-wcd9326-refboard.dtb \
	msm8909-512mb-rcm-wcd9326-refboard.dtb \
	msm8909-cdp-wcd9326-refboard.dtb \
	msm8909-rcm-wcd9326-refboard.dtb \
	apq8009-mtp-wcd9326-refboard.dtb \
	apq8009-512mb-mtp-wcd9326-refboard.dtb \
	apq8009-512mb-cdp-wcd9326-refboard.dtb \
	apq8009-512mb-rcm-wcd9326-refboard.dtb \
	apq8009-cdp-wcd9326-refboard.dtb \
	apq8009-rcm-wcd9326-refboard.dtb \
	apq8009-mtp-drone.dtb \
	msm8909-mtp.dtb \
	msm8909-1gb-mtp.dtb
+26 −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 "msm8909-cdp.dtsi"
#include "msm8909-pm8916.dtsi"
#include "msm8909-pm8916-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ8009 WCD9326 512MB \
						CDP Ref Board";
	compatible = "qcom,apq8009-cdp", "qcom,apq8009", "qcom,cdp";
	qcom,msm-id = <265 2>;
	qcom,board-id= <1 0x103>;
};
+26 −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 "msm8909-cdp.dtsi"
#include "msm8909-pm8916.dtsi"
#include "msm8909-pm8916-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ8009 WCD9326 512MB \
						RCM Ref Board";
	compatible = "qcom,apq8009-cdp", "qcom,apq8009", "qcom,cdp";
	qcom,msm-id = <265 2>;
	qcom,board-id= <21 0x103>;
};
+25 −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 "msm8909-cdp.dtsi"
#include "msm8909-pm8916.dtsi"
#include "msm8909-pm8916-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ8009 WCD9326 1GB CDP Ref Board";
	compatible = "qcom,apq8009-cdp", "qcom,apq8009", "qcom,cdp";
	qcom,msm-id = <265 2>;
	qcom,board-id= <1 0x3>;
};
+25 −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 "msm8909-cdp.dtsi"
#include "msm8909-pm8916.dtsi"
#include "msm8909-pm8916-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. APQ8009 WCD9326 1GB RCM Ref Board";
	compatible = "qcom,apq8009-cdp", "qcom,apq8009", "qcom,cdp";
	qcom,msm-id = <265 2>;
	qcom,board-id= <21 0x3>;
};
Loading