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

Commit bbd7ba58 authored by Stepan Moskovchenko's avatar Stepan Moskovchenko Committed by Matt Wagantall
Browse files

arm: dts: msm: Add device tree files for 8996v2.0 devices



Create dedicated DTS files for describing the hardware
devices found on the MSM8996v2.0 platform, and allow the
existing msm8996-v2-*.dts files to implicitly apply to
MSM8996v2.1 hardware.

Change-Id: I200f8b4b5333ebb08c81ad2be4e3c94b49556de8
Signed-off-by: default avatarStepan Moskovchenko <stepanm@codeaurora.org>
parent 476e65bd
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -19,7 +19,11 @@ dtb-$(CONFIG_ARCH_MSM8996) += msm8996-v2-sim.dtb \
	msm8996-v2-fluid.dtb \
	msm8996-v3-fluid.dtb \
	msm8996-v2-liquid.dtb \
	msm8996-v3-liquid.dtb
	msm8996-v3-liquid.dtb \
	msm8996-v2.0-pmi8994-cdp.dtb \
	msm8996-v2.0-pmi8994-mtp.dtb \
	msm8996-v2.0-pmi8994-pm8004-cdp.dtb \
	msm8996-v2.0-pmi8994-pm8004-mtp.dtb

targets += dtbs
targets += $(addprefix ../, $(dtb-y))
+32 −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 "msm8996-v2.dtsi"
#include "msm8996-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM 8996 v2.0 + PMI8994 CDP";
	compatible = "qcom,msm8996-cdp", "qcom,msm8996", "qcom,cdp";
	qcom,msm-id = <246 0x20000>;
	qcom,board-id = <1 0>;
};

&l2ccc_0 {
	qcom,clamped-reset-seq;
};

&l2ccc_1 {
	qcom,clamped-reset-seq;
};
+32 −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 "msm8996-v2.dtsi"
#include "msm8996-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM 8996 v2.0 + PMI8994 MTP";
	compatible = "qcom,msm8996-mtp", "qcom,msm8996", "qcom,mtp";
	qcom,msm-id = <246 0x20000>;
	qcom,board-id = <8 0>;
};

&l2ccc_0 {
	qcom,clamped-reset-seq;
};

&l2ccc_1 {
	qcom,clamped-reset-seq;
};
+32 −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 "msm8996-v2.dtsi"
#include "msm8996-pm8994-pmi8994-pm8004.dtsi"
#include "msm8996-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM 8996 v2.0 + PMI8994 + PM8004 CDP";
	compatible = "qcom,msm8996-cdp", "qcom,msm8996", "qcom,cdp";
	qcom,msm-id = <246 0x20000>;
	qcom,board-id = <1 0>;
};

&l2ccc_0 {
	qcom,clamped-reset-seq;
};

&l2ccc_1 {
	qcom,clamped-reset-seq;
};
+32 −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 "msm8996-v2.dtsi"
#include "msm8996-pm8994-pmi8994-pm8004.dtsi"
#include "msm8996-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM 8996 v2.0 + PMI8994 + PM8004 MTP";
	compatible = "qcom,msm8996-mtp", "qcom,msm8996", "qcom,mtp";
	qcom,msm-id = <246 0x20000>;
	qcom,board-id = <8 0>;
};

&l2ccc_0 {
	qcom,clamped-reset-seq;
};

&l2ccc_1 {
	qcom,clamped-reset-seq;
};
Loading