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

Commit ed198ed6 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 MSM8208"

parents 72de2d6c b62f4d8d
Loading
Loading
Loading
Loading
+12 −1
Original line number Diff line number Diff line
@@ -42,7 +42,18 @@ dtb-$(CONFIG_ARCH_MSM8909) += msm8909-sim.dtb \
	msm8909-1gb-qrd-skue.dtb \
	msm8909-1gb-cdp.dtb \
	msm8909-1gb-mtp.dtb \
	msm8909-rcm.dtb
	msm8909-rcm.dtb \
	msm8208-cdp.dtb \
	msm8208-mtp.dtb \
	msm8208-1gb-cdp.dtb \
	msm8208-1gb-mtp.dtb \
	msm8208-qrd-skua.dtb \
	msm8208-qrd-skuc.dtb \
	msm8208-qrd-skue.dtb \
	msm8208-1gb-qrd-skua.dtb \
	msm8208-1gb-qrd-skuc.dtb \
	msm8208-1gb-qrd-skue.dtb \
	msm8208-rcm.dtb
dtb-$(CONFIG_ARCH_MSM8916) += msm8916-sim.dtb \
	msm8916-rumi.dtb \
	msm8916-cdp.dtb \
+25 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014, 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.dtsi"
#include "msm8909-cdp.dtsi"
#include "msm8208.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM8208 1GB CDP";
	compatible = "qcom,msm8909-cdp", "qcom,msm8909", "qcom,cdp";
	qcom,board-id= <1 0>;
};
+24 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014, 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.dtsi"
#include "msm8909-mtp.dtsi"
#include "msm8208.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM8208 1GB MTP";
	compatible = "qcom,msm8909-mtp", "qcom,msm8909", "qcom,mtp";
	qcom,board-id= <8 0>;
};
+24 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014, 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-qrd-skua.dtsi"
#include "msm8208.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM8208 1GB QRD SKUA";
	compatible = "qcom,msm8909-qrd", "qcom,msm8909", "qcom,qrd";
	qcom,board-id= <0x1000b 0>;
};
+24 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2014, 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-qrd-skuc.dtsi"
#include "msm8208.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSM8208 1GB QRD SKUC";
	compatible = "qcom,msm8909-qrd", "qcom,msm8909", "qcom,qrd";
	qcom,board-id= <0x1000b 0x8>, <0x11000b 0x8>, <0x21000b 0x8>;
};
Loading