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

Commit 00db5ee7 authored by Laxminath Kasam's avatar Laxminath Kasam Committed by Gerrit - the friendly Code Review server
Browse files

ARM: dts: msm: enable external codec on msmtitanium



Enable external codec for MTP and RCM on msmtitanium

Change-Id: Idcdd23849a5af7caf7e7be95ed46f91b97135b0f
Signed-off-by: default avatarLaxminath Kasam <lkasam@codeaurora.org>
parent 5a866c18
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -125,7 +125,9 @@ dtb-$(CONFIG_ARCH_MSMTITANIUM) += msmtitanium-sim.dtb \
	msmtitanium-rumi.dtb \
	msmtitanium-cdp.dtb \
	msmtitanium-mtp.dtb \
	msmtitanium-ext-codec-mtp.dtb \
	msmtitanium-rcm.dtb \
	msmtitanium-ext-codec-rcm.dtb \
	apqtitanium-cdp.dtb \
	apqtitanium-mtp.dtb

+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@

#include "msmtitanium.dtsi"
#include "msmtitanium-cdp.dtsi"
#include "msmtitanium-audio-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSMTITANIUM CDP";
+0 −1
Original line number Diff line number Diff line
@@ -13,7 +13,6 @@

#include "msmtitanium-pinctrl.dtsi"
#include "msmtitanium-camera-sensor-cdp.dtsi"
#include "msmtitanium-audio-cdp.dtsi"

&spi_3 { /* BLSP1 QUP3 */
	spi-max-frequency = <8000000>;
+48 −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 "msmtitanium.dtsi"
#include "msmtitanium-mtp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSMTITANIUM External Codec MTP";
	compatible = "qcom,msmtitanium-mtp", "qcom,msmtitanium", "qcom,mtp";
	qcom,board-id= <1 1>;
};

&slim_msm {
	status = "okay";
};

&dai_slim {
	status = "okay";
};

&wcd9xxx_intc {
	status = "okay";
};

&clock_audio {
	status = "okay";
};

&wcd9335 {
	status = "okay";
};

&ext_codec {
	qcom,model = "msm8953-tasha-mtp-snd-card";
	status = "okay";
};
+48 −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 "msmtitanium.dtsi"
#include "msmtitanium-cdp.dtsi"

/ {
	model = "Qualcomm Technologies, Inc. MSMTITANIUM External Codec RCM";
	compatible = "qcom,msmtitanium-cdp", "qcom,msmtitanium", "qcom,cdp";
	qcom,board-id= <1 1>;
};

&slim_msm {
	status = "okay";
};

&dai_slim {
	status = "okay";
};

&wcd9xxx_intc {
	status = "okay";
};

&clock_audio {
	status = "okay";
};

&wcd9335 {
	status = "okay";
};

&ext_codec {
	qcom,model = "msm8953-tasha-mtp-snd-card";
	status = "okay";
};
Loading