summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
-rw-r--r--Makefile.am7
-rw-r--r--asoc/Kbuild12
-rw-r--r--asoc/codecs/Kbuild5
-rw-r--r--asoc/codecs/wcd9335-regmap.c2
-rw-r--r--asoc/codecs/wcd934x/Kbuild6
-rw-r--r--asoc/codecs/wcd934x/wcd934x.c27
-rw-r--r--asoc/codecs/wcd934x/wcd934x.h2
-rw-r--r--asoc/codecs/wcd9xxx-core.c5
-rw-r--r--asoc/msm_dailink.h10
-rw-r--r--asoc/sdx-port-config.h68
-rw-r--r--asoc/sdx-target.c1204
-rw-r--r--config/sdxlemurauto.conf31
-rw-r--r--config/sdxlemurautoconf.h35
-rw-r--r--dsp/Kbuild5
-rw-r--r--include/asoc/wcd9xxx-resmgr-v2.h2
-rw-r--r--include/ipc/gpr-lite.h1
l---------include/soc/internal.h2
-rw-r--r--ipc/Kbuild5
-rw-r--r--ipc/gpr-lite.c1
-rw-r--r--soc/Kbuild5
l---------soc/core.h2
l---------soc/pinctrl-utils.h2
23 files changed, 1428 insertions, 21 deletions
diff --git a/Makefile b/Makefile
index f700f9f3..0e8ab595 100644
--- a/Makefile
+++ b/Makefile
@@ -25,8 +25,13 @@ endif
ifeq ($(CONFIG_ARCH_HOLI), y)
include $(srctree)/techpack/audio/config/holiauto.conf
endif
+ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+include $(srctree)/techpack/audio/config/sdxlemurauto.conf
+export
+endif
endif
+
# Use USERINCLUDE when you must reference the UAPI directories only.
USERINCLUDE += \
-I$(srctree)/techpack/audio/include/uapi/audio
@@ -36,6 +41,7 @@ USERINCLUDE += \
LINUXINCLUDE += \
-I$(srctree)/techpack/audio/include/uapi \
-I$(srctree)/techpack/audio/include/uapi/audio \
+ -I$(srctree)/techpack/audio/include/asoc \
-I$(srctree)/techpack/audio/include
ifeq ($(CONFIG_QTI_QUIN_GVM), y)
@@ -66,6 +72,10 @@ ifeq ($(CONFIG_ARCH_HOLI), y)
LINUXINCLUDE += \
-include $(srctree)/techpack/audio/config/holiautoconf.h
endif
+ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+LINUXINCLUDE += \
+ -include $(srctree)/techpack/audio/config/sdxlemurautoconf.h
+endif
obj-y += soc/
obj-y += dsp/
diff --git a/Makefile.am b/Makefile.am
index bfb69d01..62f3b6f5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -17,6 +17,11 @@ endif
ifeq ($(TARGET_SUPPORT), sdmsteppe)
KBUILD_OPTIONS += CONFIG_ARCH_SM6150=y
endif
+ifeq ($(TARGET_SUPPORT), sdxlemur))
+KBUILD_OPTIONS += CONFIG_ARCH_SDXLEMUR=y
+endif
+
+subdir-ccflags-y += -I$(AUDIO_ROOT)/include/uapi/
subdir-ccflags-y += -I$(AUDIO_ROOT)/include/uapi/
@@ -25,7 +30,7 @@ obj-m += dsp/
obj-m += soc/
obj-m += asoc/
obj-m += asoc/codecs/
-ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), sdmsteppe))
+ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), sdmsteppe sdxlemur))
obj-m += asoc/codecs/wcd934x/
endif
ifeq ($(TARGET_SUPPORT), $(filter $(TARGET_SUPPORT), qcs40x))
diff --git a/asoc/Kbuild b/asoc/Kbuild
index d8304047..bbeac349 100644
--- a/asoc/Kbuild
+++ b/asoc/Kbuild
@@ -88,6 +88,11 @@ ifeq ($(KERNEL_BUILD), 0)
export
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
endif
+ ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+ include $(AUDIO_ROOT)/config/sdxlemurauto.conf
+ export
+ INCS += -include $(AUDIO_ROOT)/config/sdxlemurautoconf.h
+ endif
endif
endif
@@ -174,6 +179,10 @@ ifdef CONFIG_SND_SOC_QDSP6V2
PLATFORM_OBJS += platform_init.o
endif
+ifdef CONFIG_SND_SOC_SDX
+ MACHINE_OBJS += sdx-target.o
+endif
+
LINUX_INC += -Iinclude/linux
INCS += $(COMMON_INC) \
@@ -249,5 +258,8 @@ machine_dlkm-y := $(MACHINE_OBJS)
obj-$(CONFIG_SND_SOC_SA8155) += machine_dlkm.o
machine_dlkm-y := $(MACHINE_OBJS)
+obj-$(CONFIG_SND_SOC_SDX) += machine_dlkm.o
+machine_dlkm-y := $(MACHINE_OBJS)
+
# inject some build related information
DEFINES += -DBUILD_TIMESTAMP=\"$(shell date -u +'%Y-%m-%dT%H:%M:%SZ')\"
diff --git a/asoc/codecs/Kbuild b/asoc/codecs/Kbuild
index 3d302bd7..efd91953 100644
--- a/asoc/codecs/Kbuild
+++ b/asoc/codecs/Kbuild
@@ -82,6 +82,11 @@ ifeq ($(KERNEL_BUILD), 0)
export
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
endif
+ ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+ include $(AUDIO_ROOT)/config/sdxlemurauto.conf
+ export
+ INCS += -include $(AUDIO_ROOT)/config/sdxlemurautoconf.h
+ endif
endif
endif
diff --git a/asoc/codecs/wcd9335-regmap.c b/asoc/codecs/wcd9335-regmap.c
index 7b3363f0..14e0561d 100644
--- a/asoc/codecs/wcd9335-regmap.c
+++ b/asoc/codecs/wcd9335-regmap.c
@@ -7,7 +7,7 @@
#include <linux/device.h>
#include <asoc/core.h>
#include <asoc/wcd9xxx-regmap.h>
-#include <asoc/wcd9335_registers.h>
+#include "wcd9335_registers.h"
static const struct reg_sequence wcd9335_1_x_defaults[] = {
{ WCD9335_CODEC_RPM_CLK_GATE, 0x03, 0x00 },
diff --git a/asoc/codecs/wcd934x/Kbuild b/asoc/codecs/wcd934x/Kbuild
index 989e905d..4c796519 100644
--- a/asoc/codecs/wcd934x/Kbuild
+++ b/asoc/codecs/wcd934x/Kbuild
@@ -36,6 +36,11 @@ ifeq ($(KERNEL_BUILD), 0)
export
INCS += -include $(AUDIO_ROOT)/config/sm8150autoconf.h
endif
+ ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+ include $(AUDIO_ROOT)/config/sdxlemurauto.conf
+ export
+ INCS += -include $(AUDIO_ROOT)/config/sdxlemurautoconf.h
+ endif
endif
# As per target team, build is done as follows:
@@ -72,6 +77,7 @@ ifdef CONFIG_SND_SOC_WCD934X
WCD934X_OBJS += wcd934x-dsd.o
endif
+
LINUX_INC += -Iinclude/linux
INCS += $(COMMON_INC) \
diff --git a/asoc/codecs/wcd934x/wcd934x.c b/asoc/codecs/wcd934x/wcd934x.c
index 3d7d39bb..088784ab 100644
--- a/asoc/codecs/wcd934x/wcd934x.c
+++ b/asoc/codecs/wcd934x/wcd934x.c
@@ -41,10 +41,9 @@
#include <asoc/wcd9xxx-common-v2.h>
#include <asoc/wcd9xxx-resmgr-v2.h>
#include <asoc/wcdcal-hwdep.h>
+#include <ipc/gpr-lite.h>
#include "wcd934x-dsd.h"
-#define DRV_NAME "tavil_codec"
-
#define WCD934X_RATES_MASK (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |\
SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 |\
SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000 |\
@@ -8116,16 +8115,16 @@ static const struct snd_soc_dapm_widget tavil_dapm_widgets[] = {
SND_SOC_DAPM_INPUT("AMIC4"),
SND_SOC_DAPM_INPUT("AMIC5"),
- SND_SOC_DAPM_MICBIAS_E("MIC BIAS1", SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY("MIC BIAS1", SND_SOC_NOPM, 0, 0,
tavil_codec_enable_micbias, SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
- SND_SOC_DAPM_MICBIAS_E("MIC BIAS2", SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY("MIC BIAS2", SND_SOC_NOPM, 0, 0,
tavil_codec_enable_micbias, SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
- SND_SOC_DAPM_MICBIAS_E("MIC BIAS3", SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY("MIC BIAS3", SND_SOC_NOPM, 0, 0,
tavil_codec_enable_micbias, SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
- SND_SOC_DAPM_MICBIAS_E("MIC BIAS4", SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY("MIC BIAS4", SND_SOC_NOPM, 0, 0,
tavil_codec_enable_micbias, SND_SOC_DAPM_PRE_PMU |
SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_POST_PMD),
@@ -8137,16 +8136,16 @@ static const struct snd_soc_dapm_widget tavil_dapm_widgets[] = {
0, 0, tavil_codec_reset_hph_registers,
SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
- SND_SOC_DAPM_MICBIAS_E(DAPM_MICBIAS1_STANDALONE, SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY(DAPM_MICBIAS1_STANDALONE, SND_SOC_NOPM, 0, 0,
tavil_codec_force_enable_micbias,
SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
- SND_SOC_DAPM_MICBIAS_E(DAPM_MICBIAS2_STANDALONE, SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY(DAPM_MICBIAS2_STANDALONE, SND_SOC_NOPM, 0, 0,
tavil_codec_force_enable_micbias,
SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
- SND_SOC_DAPM_MICBIAS_E(DAPM_MICBIAS3_STANDALONE, SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY(DAPM_MICBIAS3_STANDALONE, SND_SOC_NOPM, 0, 0,
tavil_codec_force_enable_micbias,
SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
- SND_SOC_DAPM_MICBIAS_E(DAPM_MICBIAS4_STANDALONE, SND_SOC_NOPM, 0, 0,
+ SND_SOC_DAPM_SUPPLY(DAPM_MICBIAS4_STANDALONE, SND_SOC_NOPM, 0, 0,
tavil_codec_force_enable_micbias,
SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
@@ -9485,7 +9484,7 @@ int tavil_codec_info_create_codec_entry(struct snd_info_entry *codec_root,
tavil = snd_soc_component_get_drvdata(component);
card = component->card;
- tavil->entry = snd_info_create_subdir(codec_root->module,
+ tavil->entry = snd_info_create_module_entry(codec_root->module,
"tavil", codec_root);
if (!tavil->entry) {
dev_dbg(component->dev, "%s: failed to create wcd934x entry\n",
@@ -10356,7 +10355,7 @@ static int tavil_post_reset_cb(struct wcd9xxx *wcd9xxx)
component = (struct snd_soc_component *)(wcd9xxx->ssr_priv);
if (!component->card) {
- dev_err(codec->dev, "%s: sound card is not enumerated.\n",
+ dev_err(component->dev, "%s: sound card is not enumerated.\n",
__func__);
return -EINVAL;
}
@@ -10665,7 +10664,7 @@ static void tavil_soc_codec_remove(struct snd_soc_component *component)
}
static const struct snd_soc_component_driver soc_codec_dev_tavil = {
- .name = DRV_NAME,
+ .name = WCD934X_DRV_NAME,
.probe = tavil_soc_codec_probe,
.remove = tavil_soc_codec_remove,
.controls = tavil_snd_controls,
@@ -11286,7 +11285,7 @@ static int tavil_probe(struct platform_device *pdev)
}
if (tavil->intf_type == WCD9XXX_INTERFACE_TYPE_I2C) {
- if (apr_get_subsys_state() == APR_SUBSYS_DOWN) {
+ if (gpr_get_modem_state() == GPR_SUBSYS_DOWN) {
dev_dbg(&pdev->dev, "%s: dsp down\n", __func__);
devm_kfree(&pdev->dev, tavil);
return -EPROBE_DEFER;
diff --git a/asoc/codecs/wcd934x/wcd934x.h b/asoc/codecs/wcd934x/wcd934x.h
index 7cc0ec17..f2924cd1 100644
--- a/asoc/codecs/wcd934x/wcd934x.h
+++ b/asoc/codecs/wcd934x/wcd934x.h
@@ -11,6 +11,8 @@
#include <asoc/wcd9xxx-common-v2.h>
#include <asoc/wcd-mbhc-v2.h>
+#define WCD934X_DRV_NAME "tavil_codec"
+
#define WCD934X_REGISTER_START_OFFSET 0x800
#define WCD934X_SB_PGD_PORT_RX_BASE 0x40
#define WCD934X_SB_PGD_PORT_TX_BASE 0x50
diff --git a/asoc/codecs/wcd9xxx-core.c b/asoc/codecs/wcd9xxx-core.c
index 40d9c8e5..37099e5d 100644
--- a/asoc/codecs/wcd9xxx-core.c
+++ b/asoc/codecs/wcd9xxx-core.c
@@ -63,13 +63,16 @@ static struct regmap_config wcd9xxx_base_regmap_config = {
.reg_bits = 16,
.val_bits = 8,
.can_multi_write = true,
+ .use_single_read = true,
+ .use_single_write = true,
};
static struct regmap_config wcd9xxx_i2c_base_regmap_config = {
.reg_bits = 16,
.val_bits = 8,
.can_multi_write = false,
- .use_single_rw = true,
+ .use_single_read = true,
+ .use_single_write = true,
};
static u8 wcd9xxx_pgd_la;
diff --git a/asoc/msm_dailink.h b/asoc/msm_dailink.h
index 925daf33..a6bde216 100644
--- a/asoc/msm_dailink.h
+++ b/asoc/msm_dailink.h
@@ -172,3 +172,13 @@ SND_SOC_DAILINK_DEFS(vi_feedback,
DAILINK_COMP_ARRAY(COMP_CPU("snd-soc-dummy-dai")),
DAILINK_COMP_ARRAY(COMP_CODEC("bolero_codec", "wsa_macro_vifeedback")),
DAILINK_COMP_ARRAY(COMP_PLATFORM("snd-soc-dummy")));
+
+SND_SOC_DAILINK_DEFS(tavil_i2s_rx1,
+ DAILINK_COMP_ARRAY(COMP_CPU("snd-soc-dummy-dai")),
+ DAILINK_COMP_ARRAY(COMP_CODEC("tavil_codec", "tavil_i2s_rx1")),
+ DAILINK_COMP_ARRAY(COMP_PLATFORM("snd-soc-dummy")));
+
+SND_SOC_DAILINK_DEFS(tavil_i2s_tx1,
+ DAILINK_COMP_ARRAY(COMP_CPU("snd-soc-dummy-dai")),
+ DAILINK_COMP_ARRAY(COMP_CODEC("tavil_codec", "tavil_i2s_tx1")),
+ DAILINK_COMP_ARRAY(COMP_PLATFORM("snd-soc-dummy")));
diff --git a/asoc/sdx-port-config.h b/asoc/sdx-port-config.h
new file mode 100644
index 00000000..83921154
--- /dev/null
+++ b/asoc/sdx-port-config.h
@@ -0,0 +1,68 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/*
+ * Copyright (c) 2018-2020, The Linux Foundation. All rights reserved.
+ */
+
+#ifndef _LAHAINA_PORT_CONFIG
+#define _LAHAINA_PORT_CONFIG
+
+#include <soc/swr-common.h>
+
+#define WSA_MSTR_PORT_MASK 0xFF
+/*
+ * Add port configuration in the format
+ *{ si, off1, off2, hstart, hstop, wd_len, bp_mode, bgp_ctrl, lane_ctrl, dir,
+ * stream_type}
+ */
+
+static struct port_params wsa_frame_params_default[SWR_MSTR_PORT_LEN] = {
+ {7, 1, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00},
+ {31, 2, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00},
+ {63, 12, 31, 0xFF, 0xFF, 0xFF, 0x1, 0xFF, 0xFF, 0x00, 0x00},
+ {7, 6, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00},
+ {31, 18, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00},
+ {63, 13, 31, 0xFF, 0xFF, 0xFF, 0x1, 0xFF, 0xFF, 0x00, 0x00},
+ {15, 7, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00},
+ {15, 10, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x00},
+};
+
+static struct port_params rx_frame_params_dsd[SWR_MSTR_PORT_LEN] = {
+ {3, 0, 0, 0xFF, 0xFF, 1, 0xFF, 0xFF, 1, 0x00, 0x00},
+ {31, 0, 0, 3, 6, 7, 0, 0xFF, 0, 0x00, 0x00},
+ {31, 11, 11, 0xFF, 0xFF, 4, 1, 0xFF, 0, 0x00, 0x00},
+ {7, 9, 0, 0xFF, 0xFF, 0xFF, 0xFF, 1, 0, 0x00, 0x00},
+ {3, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 3, 0, 0x00, 0x00},
+};
+
+/* Headset + PCM Haptics */
+static struct port_params rx_frame_params_default[SWR_MSTR_PORT_LEN] = {
+ {3, 0, 0, 0xFF, 0xFF, 1, 0xFF, 0xFF, 1, 0x00, 0x00}, /* HPH/EAR */
+ {31, 0, 0, 3, 6, 7, 0, 0xFF, 0, 0x00, 0x00}, /* HPH_CLH */
+ {31, 11, 11, 0xFF, 0xFF, 4, 1, 0xFF, 0, 0x00, 0x00}, /* HPH_CMP */
+ {7, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0x00, 0x00}, /* LO/AUX */
+ {0, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0, 0x00, 0x00}, /* DSD */
+ {0x18F, 0, 0, 0x8, 0x8, 0x0F, 0x00, 0, 0, 0x00, 0x01}, /* PCM_OUT */
+};
+
+/* TX UC1: TX1: 1ch, TX2: 2chs, TX3: 1ch(MBHC) */
+static struct port_params tx_frame_params_default[SWR_MSTR_PORT_LEN] = {
+ {7, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0x00, 0x00}, /* TX1 */
+ {3, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 1, 0x00, 0x00}, /* TX2 */
+ {7, 5, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0x00, 0x00}, /* TX3 */
+};
+
+/* TX UC1: TX1: 1ch, TX2: 2chs, TX3: 1ch(MBHC) */
+static struct port_params tx_frame_params_shima[SWR_MSTR_PORT_LEN] = {
+ {3, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0x00, 0x00}, /* TX1 */
+ {3, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 1, 0x00, 0x00}, /* TX2 */
+ {7, 2, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0x00, 0x00}, /* TX3 */
+};
+
+/* 4.8 MHz clock */
+static struct port_params tx_frame_params_4p8MHz[SWR_MSTR_PORT_LEN] = {
+ {3, 1, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0x00, 0x00}, /* TX1 */
+ {3, 0, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 1, 0x00, 0x00}, /* TX2 */
+ {3, 2, 0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0, 0x00, 0x00}, /* TX3 */
+};
+
+#endif /* _LAHAINA_PORT_CONFIG */
diff --git a/asoc/sdx-target.c b/asoc/sdx-target.c
new file mode 100644
index 00000000..bcd71c3a
--- /dev/null
+++ b/asoc/sdx-target.c
@@ -0,0 +1,1204 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
+ */
+
+#include <linux/clk.h>
+#include <linux/delay.h>
+#include <linux/gpio.h>
+#include <linux/of_gpio.h>
+#include <linux/platform_device.h>
+#include <linux/slab.h>
+#include <linux/io.h>
+#include <linux/module.h>
+#include <linux/input.h>
+#include <linux/of_device.h>
+#include <linux/soc/qcom/fsa4480-i2c.h>
+#include <sound/control.h>
+#include <sound/core.h>
+#include <sound/soc.h>
+#include <sound/soc-dapm.h>
+#include <sound/pcm.h>
+#include <sound/pcm_params.h>
+#include <sound/info.h>
+#include <soc/snd_event.h>
+#include <dsp/audio_prm.h>
+#include <soc/swr-common.h>
+#include <soc/soundwire.h>
+#include "device_event.h"
+#include "asoc/msm-cdc-pinctrl.h"
+#include "asoc/wcd-mbhc-v2.h"
+#include "codecs/wcd934x/wcd934x-mbhc.h"
+#include "codecs/wsa881x.h"
+#include "codecs/wcd934x/wcd934x.h"
+#include <dt-bindings/sound/audio-codec-port-types.h>
+#include "sdx-port-config.h"
+#include "msm-audio-defs.h"
+#include "msm_common.h"
+#include "msm_dailink.h"
+
+#define DRV_NAME "sdx-asoc-snd"
+#define __CHIPSET__ "LAHAINA "
+#define MSM_DAILINK_NAME(name) (__CHIPSET__#name)
+
+#define WCD9XXX_MBHC_DEF_RLOADS 5
+#define WCD9XXX_MBHC_DEF_BUTTONS 8
+#define CODEC_EXT_CLK_RATE 9600000
+#define DEV_NAME_STR_LEN 32
+#define WCD_MBHC_HS_V_MAX 1600
+
+#define MSM_LL_QOS_VALUE 300 /* time in us to ensure LPM doesn't go in C3/C4 */
+
+
+#define WCN_CDC_SLIM_RX_CH_MAX 2
+#define WCN_CDC_SLIM_TX_CH_MAX 2
+#define WCN_CDC_SLIM_TX_CH_MAX_LITO 3
+
+struct msm_asoc_mach_data {
+ struct snd_info_entry *codec_root;
+ struct msm_common_pdata *common_pdata;
+ int usbc_en2_gpio; /* used by gpio driver API */
+ struct device_node *dmic01_gpio_p; /* used by pinctrl API */
+ struct device_node *dmic23_gpio_p; /* used by pinctrl API */
+ struct device_node *dmic45_gpio_p; /* used by pinctrl API */
+ struct device_node *us_euro_gpio_p; /* used by pinctrl API */
+ struct pinctrl *usbc_en2_gpio_p; /* used by pinctrl API */
+ struct device_node *hph_en1_gpio_p; /* used by pinctrl API */
+ struct device_node *hph_en0_gpio_p; /* used by pinctrl API */
+ bool is_afe_config_done;
+ struct device_node *fsa_handle;
+ struct clk *lpass_audio_hw_vote;
+ int core_audio_vote_count;
+ u32 wsa_max_devs;
+};
+
+static bool is_initial_boot;
+static bool codec_reg_done;
+static struct snd_soc_card snd_soc_card_sdx_msm;
+static int dmic_0_1_gpio_cnt;
+static int dmic_2_3_gpio_cnt;
+static int dmic_4_5_gpio_cnt;
+
+static void *def_wcd_mbhc_cal(void);
+
+static int msm_aux_codec_init(struct snd_soc_pcm_runtime*);
+static int msm_int_audrx_init(struct snd_soc_pcm_runtime*);
+
+/*
+ * Need to report LINEIN
+ * if R/L channel impedance is larger than 5K ohm
+ */
+static struct wcd_mbhc_config wcd_mbhc_cfg = {
+ .read_fw_bin = false,
+ .calibration = NULL,
+ .detect_extn_cable = true,
+ .mono_stero_detection = false,
+ .swap_gnd_mic = NULL,
+ .hs_ext_micbias = true,
+ .key_code[0] = KEY_MEDIA,
+ .key_code[1] = KEY_VOICECOMMAND,
+ .key_code[2] = KEY_VOLUMEUP,
+ .key_code[3] = KEY_VOLUMEDOWN,
+ .key_code[4] = 0,
+ .key_code[5] = 0,
+ .key_code[6] = 0,
+ .key_code[7] = 0,
+ .linein_th = 5000,
+ .moisture_en = false,
+ .mbhc_micbias = MIC_BIAS_2,
+ .anc_micbias = MIC_BIAS_2,
+ .enable_anc_mic_detect = false,
+ .moisture_duty_cycle_en = true,
+};
+
+/* set audio task affinity to core 1 & 2 */
+static const unsigned int audio_core_list[] = {1, 2};
+static cpumask_t audio_cpu_map = CPU_MASK_NONE;
+static struct dev_pm_qos_request *msm_audio_req = NULL;
+
+static void msm_audio_add_qos_request()
+{
+ int i;
+ int cpu = 0;
+
+ msm_audio_req = kzalloc(sizeof(struct dev_pm_qos_request) * NR_CPUS,
+ GFP_KERNEL);
+ if (!msm_audio_req) {
+ pr_err("%s failed to alloc mem for qos req.\n", __func__);
+ return;
+ }
+
+ for (i = 0; i < ARRAY_SIZE(audio_core_list); i++) {
+ if (audio_core_list[i] >= NR_CPUS)
+ pr_err("%s incorrect cpu id: %d specified.\n", __func__, audio_core_list[i]);
+ else
+ cpumask_set_cpu(audio_core_list[i], &audio_cpu_map);
+ }
+
+ for_each_cpu(cpu, &audio_cpu_map) {
+ dev_pm_qos_add_request(get_cpu_device(cpu),
+ &msm_audio_req[cpu],
+ DEV_PM_QOS_RESUME_LATENCY,
+ PM_QOS_CPU_DMA_LAT_DEFAULT_VALUE);
+ pr_debug("%s set cpu affinity to core %d.\n", __func__, cpu);
+ }
+}
+
+static void msm_audio_remove_qos_request()
+{
+ int cpu = 0;
+
+ if (msm_audio_req) {
+ for_each_cpu(cpu, &audio_cpu_map) {
+ dev_pm_qos_remove_request(
+ &msm_audio_req[cpu]);
+ pr_debug("%s remove cpu affinity of core %d.\n", __func__, cpu);
+ }
+ kfree(msm_audio_req);
+ }
+}
+
+static bool msm_usbc_swap_gnd_mic(struct snd_soc_component *component, bool active)
+{
+ struct snd_soc_card *card = component->card;
+ struct msm_asoc_mach_data *pdata =
+ snd_soc_card_get_drvdata(card);
+
+ if (!pdata->fsa_handle)
+ return false;
+
+ return fsa4480_switch_event(pdata->fsa_handle, FSA_MIC_GND_SWAP);
+}
+
+static bool msm_swap_gnd_mic(struct snd_soc_component *component, bool active)
+{
+ int value = 0;
+ bool ret = false;
+ struct snd_soc_card *card;
+ struct msm_asoc_mach_data *pdata;
+
+ if (!component) {
+ pr_err("%s component is NULL\n", __func__);
+ return false;
+ }
+ card = component->card;
+ pdata = snd_soc_card_get_drvdata(card);
+
+ if (!pdata)
+ return false;
+
+ if (wcd_mbhc_cfg.enable_usbc_analog)
+ return msm_usbc_swap_gnd_mic(component, active);
+
+ /* if usbc is not defined, swap using us_euro_gpio_p */
+ if (pdata->us_euro_gpio_p) {
+ value = msm_cdc_pinctrl_get_state(
+ pdata->us_euro_gpio_p);
+ if (value)
+ msm_cdc_pinctrl_select_sleep_state(
+ pdata->us_euro_gpio_p);
+ else
+ msm_cdc_pinctrl_select_active_state(
+ pdata->us_euro_gpio_p);
+ dev_dbg(component->dev, "%s: swap select switch %d to %d\n",
+ __func__, value, !value);
+ ret = true;
+ }
+
+ return ret;
+}
+
+static struct snd_soc_ops msm_common_be_ops = {
+ .startup = msm_common_snd_startup,
+ .shutdown = msm_common_snd_shutdown,
+};
+
+static int msm_dmic_event(struct snd_soc_dapm_widget *w,
+ struct snd_kcontrol *kcontrol, int event)
+{
+ struct msm_asoc_mach_data *pdata = NULL;
+ struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
+ int ret = 0;
+ u32 dmic_idx;
+ int *dmic_gpio_cnt;
+ struct device_node *dmic_gpio;
+ char *wname;
+
+ wname = strpbrk(w->name, "012345");
+ if (!wname) {
+ dev_err(component->dev, "%s: widget not found\n", __func__);
+ return -EINVAL;
+ }
+
+ ret = kstrtouint(wname, 10, &dmic_idx);
+ if (ret < 0) {
+ dev_err(component->dev, "%s: Invalid DMIC line on the codec\n",
+ __func__);
+ return -EINVAL;
+ }
+
+ pdata = snd_soc_card_get_drvdata(component->card);
+
+ switch (dmic_idx) {
+ case 0:
+ case 1:
+ dmic_gpio_cnt = &dmic_0_1_gpio_cnt;
+ dmic_gpio = pdata->dmic01_gpio_p;
+ break;
+ case 2:
+ case 3:
+ dmic_gpio_cnt = &dmic_2_3_gpio_cnt;
+ dmic_gpio = pdata->dmic23_gpio_p;
+ break;
+ case 4:
+ case 5:
+ dmic_gpio_cnt = &dmic_4_5_gpio_cnt;
+ dmic_gpio = pdata->dmic45_gpio_p;
+ break;
+ default:
+ dev_err(component->dev, "%s: Invalid DMIC Selection\n",
+ __func__);
+ return -EINVAL;
+ }
+
+ dev_dbg(component->dev, "%s: event %d DMIC%d dmic_gpio_cnt %d\n",
+ __func__, event, dmic_idx, *dmic_gpio_cnt);
+
+ switch (event) {
+ case SND_SOC_DAPM_PRE_PMU:
+ (*dmic_gpio_cnt)++;
+ if (*dmic_gpio_cnt == 1) {
+ ret = msm_cdc_pinctrl_select_active_state(
+ dmic_gpio);
+ if (ret < 0) {
+ pr_err("%s: gpio set cannot be activated %sd",
+ __func__, "dmic_gpio");
+ return ret;
+ }
+ }
+
+ break;
+ case SND_SOC_DAPM_POST_PMD:
+ (*dmic_gpio_cnt)--;
+ if (*dmic_gpio_cnt == 0) {
+ ret = msm_cdc_pinctrl_select_sleep_state(
+ dmic_gpio);
+ if (ret < 0) {
+ pr_err("%s: gpio set cannot be de-activated %sd",
+ __func__, "dmic_gpio");
+ return ret;
+ }
+ }
+ break;
+ default:
+ pr_err("%s: invalid DAPM event %d\n", __func__, event);
+ return -EINVAL;
+ }
+ return 0;
+}
+
+static const struct snd_soc_dapm_widget msm_int_dapm_widgets[] = {
+ SND_SOC_DAPM_MIC("Analog Mic1", NULL),
+ SND_SOC_DAPM_MIC("Analog Mic2", NULL),
+ SND_SOC_DAPM_MIC("Analog Mic3", NULL),
+ SND_SOC_DAPM_MIC("Analog Mic4", NULL),
+ SND_SOC_DAPM_MIC("Analog Mic5", NULL),
+ SND_SOC_DAPM_MIC("Digital Mic0", msm_dmic_event),
+ SND_SOC_DAPM_MIC("Digital Mic1", msm_dmic_event),
+ SND_SOC_DAPM_MIC("Digital Mic2", msm_dmic_event),
+ SND_SOC_DAPM_MIC("Digital Mic3", msm_dmic_event),
+ SND_SOC_DAPM_MIC("Digital Mic4", msm_dmic_event),
+ SND_SOC_DAPM_MIC("Digital Mic5", msm_dmic_event),
+ SND_SOC_DAPM_MIC("Digital Mic6", NULL),
+ SND_SOC_DAPM_MIC("Digital Mic7", NULL),
+};
+
+static struct snd_info_entry *msm_snd_info_create_subdir(struct module *mod,
+ const char *name,
+ struct snd_info_entry *parent)
+{
+ struct snd_info_entry *entry;
+
+ entry = snd_info_create_module_entry(mod, name, parent);
+ if (!entry)
+ return NULL;
+ entry->mode = S_IFDIR | 0555;
+ if (snd_info_register(entry) < 0) {
+ snd_info_free_entry(entry);
+ return NULL;
+ }
+ return entry;
+}
+
+static void *def_wcd_mbhc_cal(void)
+{
+ void *wcd_mbhc_cal;
+ struct wcd_mbhc_btn_detect_cfg *btn_cfg;
+ u16 *btn_high;
+
+ wcd_mbhc_cal = kzalloc(WCD_MBHC_CAL_SIZE(WCD_MBHC_DEF_BUTTONS,
+ WCD9XXX_MBHC_DEF_RLOADS), GFP_KERNEL);
+ if (!wcd_mbhc_cal)
+ return NULL;
+
+ WCD_MBHC_CAL_PLUG_TYPE_PTR(wcd_mbhc_cal)->v_hs_max = WCD_MBHC_HS_V_MAX;
+ WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal)->num_btn = WCD_MBHC_DEF_BUTTONS;
+ btn_cfg = WCD_MBHC_CAL_BTN_DET_PTR(wcd_mbhc_cal);
+ btn_high = ((void *)&btn_cfg->_v_btn_low) +
+ (sizeof(btn_cfg->_v_btn_low[0]) * btn_cfg->num_btn);
+
+ btn_high[0] = 75;
+ btn_high[1] = 150;
+ btn_high[2] = 237;
+ btn_high[3] = 500;
+ btn_high[4] = 500;
+ btn_high[5] = 500;
+ btn_high[6] = 500;
+ btn_high[7] = 500;
+
+ return wcd_mbhc_cal;
+}
+
+/* Digital audio interface glue - connects codec <---> CPU */
+static struct snd_soc_dai_link msm_common_be_dai_links[] = {
+ /* Proxy Tx BACK END DAI Link */
+ {
+ .name = LPASS_BE_RT_PROXY_PCM_TX,
+ .stream_name = LPASS_BE_RT_PROXY_PCM_TX,
+ .capture_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ignore_suspend = 1,
+ .ops = &msm_common_be_ops,
+ SND_SOC_DAILINK_REG(proxy_tx),
+ },
+ /* Proxy Rx BACK END DAI Link */
+ {
+ .name = LPASS_BE_RT_PROXY_PCM_RX,
+ .stream_name = LPASS_BE_RT_PROXY_PCM_RX,
+ .playback_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ignore_pmdown_time = 1,
+ .ignore_suspend = 1,
+ .ops = &msm_common_be_ops,
+ SND_SOC_DAILINK_REG(proxy_rx),
+ },
+ {
+ .name = LPASS_BE_USB_AUDIO_RX,
+ .stream_name = LPASS_BE_USB_AUDIO_RX,
+ .playback_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ignore_pmdown_time = 1,
+ .ignore_suspend = 1,
+ .ops = &msm_common_be_ops,
+ SND_SOC_DAILINK_REG(usb_audio_rx),
+ },
+ {
+ .name = LPASS_BE_USB_AUDIO_TX,
+ .stream_name = LPASS_BE_USB_AUDIO_TX,
+ .capture_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ignore_suspend = 1,
+ .ops = &msm_common_be_ops,
+ SND_SOC_DAILINK_REG(usb_audio_tx),
+ },
+};
+
+static struct snd_soc_dai_link msm_rx_tx_cdc_dma_be_dai_links[] = {
+ /* WSA CDC DMA Backend DAI Links */
+ {
+ .name = LPASS_BE_PRI_MI2S_RX,
+ .stream_name = LPASS_BE_PRI_MI2S_RX,
+ .playback_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ignore_pmdown_time = 1,
+ .ignore_suspend = 1,
+ .ops = &msm_common_be_ops,
+ SND_SOC_DAILINK_REG(tavil_i2s_rx1),
+ .init = &msm_aux_codec_init,
+ },
+ {
+ .name = LPASS_BE_PRI_MI2S_TX,
+ .stream_name = LPASS_BE_PRI_MI2S_TX,
+ .playback_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ignore_pmdown_time = 1,
+ .ignore_suspend = 1,
+ .ops = &msm_common_be_ops,
+ SND_SOC_DAILINK_REG(tavil_i2s_tx1),
+ },
+};
+
+static struct snd_soc_dai_link msm_tdm_dai_links[] = {
+ {
+ .name = LPASS_BE_PRI_TDM_RX_0,
+ .stream_name = LPASS_BE_PRI_TDM_RX_0,
+ .playback_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ops = &msm_common_be_ops,
+ .ignore_suspend = 1,
+ .ignore_pmdown_time = 1,
+ SND_SOC_DAILINK_REG(pri_tdm_rx_0),
+ },
+ {
+ .name = LPASS_BE_PRI_TDM_TX_0,
+ .stream_name = LPASS_BE_PRI_TDM_TX_0,
+ .capture_only = 1,
+ .trigger = {SND_SOC_DPCM_TRIGGER_POST,
+ SND_SOC_DPCM_TRIGGER_POST},
+ .ops = &msm_common_be_ops,
+ .ignore_suspend = 1,
+ SND_SOC_DAILINK_REG(pri_tdm_tx_0),
+ },
+};
+
+static struct snd_soc_dai_link msm_sdx_dai_links[
+ ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links) +
+ ARRAY_SIZE(msm_common_be_dai_links) +
+ ARRAY_SIZE(msm_tdm_dai_links)];
+
+
+static int msm_populate_dai_link_component_of_node(
+ struct snd_soc_card *card)
+{
+ int i, j, index, ret = 0;
+ struct device *cdev = card->dev;
+ struct snd_soc_dai_link *dai_link = card->dai_link;
+ struct device_node *np = NULL;
+ int codecs_enabled = 0;
+ struct snd_soc_dai_link_component *codecs_comp = NULL;
+
+ if (!cdev) {
+ dev_err(cdev, "%s: Sound card device memory NULL\n", __func__);
+ return -ENODEV;
+ }
+
+ for (i = 0; i < card->num_links; i++) {
+ if (dai_link[i].init == NULL)
+ dai_link[i].init = &msm_common_dai_link_init;
+
+ /* populate codec_of_node for snd card dai links */
+ if (dai_link[i].num_codecs > 0) {
+ for (j = 0; j < dai_link[i].num_codecs; j++) {
+ if (dai_link[i].codecs[j].of_node ||
+ !dai_link[i].codecs[j].name)
+ continue;
+
+ index = of_property_match_string(cdev->of_node,
+ "asoc-codec-names",
+ dai_link[i].codecs[j].name);
+ if (index < 0)
+ continue;
+ np = of_parse_phandle(cdev->of_node,
+ "asoc-codec",
+ index);
+ if (!np) {
+ dev_err(cdev, "%s: retrieving phandle for codec %s failed\n",
+ __func__,
+ dai_link[i].codecs[j].name);
+ ret = -ENODEV;
+ goto err;
+ }
+ dai_link[i].codecs[j].of_node = np;
+ dai_link[i].codecs[j].name = NULL;
+ }
+ }
+ }
+
+ /* In multi-codec scenario, check if codecs are enabled for this platform */
+ for (i = 0; i < card->num_links; i++) {
+ codecs_enabled = 0;
+ if (dai_link[i].num_codecs > 1) {
+ for (j = 0; j < dai_link[i].num_codecs; j++) {
+ if (!dai_link[i].codecs[j].of_node)
+ continue;
+
+ np = dai_link[i].codecs[j].of_node;
+ if (!of_device_is_available(np)) {
+ dev_err(cdev, "%s: codec is disabled: %s\n",
+ __func__,
+ np->full_name);
+ dai_link[i].codecs[j].of_node = NULL;
+ continue;
+ }
+
+ codecs_enabled++;
+ }
+ if (codecs_enabled > 0 &&
+ codecs_enabled < dai_link[i].num_codecs) {
+ codecs_comp = devm_kzalloc(cdev,
+ sizeof(struct snd_soc_dai_link_component)
+ * codecs_enabled, GFP_KERNEL);
+ if (!codecs_comp) {
+ dev_err(cdev, "%s: %s dailink codec component alloc failed\n",
+ __func__, dai_link[i].name);
+ ret = -ENOMEM;
+ goto err;
+ }
+ index = 0;
+ for (j = 0; j < dai_link[i].num_codecs; j++) {
+ if(dai_link[i].codecs[j].of_node) {
+ codecs_comp[index].of_node =
+ dai_link[i].codecs[j].of_node;
+ codecs_comp[index].dai_name =
+ dai_link[i].codecs[j].dai_name;
+ codecs_comp[index].name = NULL;
+ index++;
+ }
+ }
+ dai_link[i].codecs = codecs_comp;
+ dai_link[i].num_codecs = codecs_enabled;
+ }
+ }
+ }
+
+err:
+ return ret;
+}
+
+static int msm_audrx_stub_init(struct snd_soc_pcm_runtime *rtd)
+{
+ return 0;
+}
+
+static int msm_snd_stub_hw_params(struct snd_pcm_substream *substream,
+ struct snd_pcm_hw_params *params)
+{
+ return 0;
+}
+
+static struct snd_soc_ops msm_stub_be_ops = {
+ .hw_params = msm_snd_stub_hw_params,
+};
+
+struct snd_soc_card snd_soc_card_stub_msm = {
+ .name = "sdx-stub-snd-card",
+};
+
+static struct snd_soc_dai_link msm_stub_be_dai_links[] = {
+ /* Backend DAI Links */
+ {
+ .name = LPASS_BE_PRI_AUXPCM_RX,
+ .stream_name = LPASS_BE_PRI_AUXPCM_RX,
+ .playback_only = 1,
+ .init = &msm_audrx_stub_init,
+ .ignore_pmdown_time = 1,
+ .ignore_suspend = 1,
+ .ops = &msm_stub_be_ops,
+ SND_SOC_DAILINK_REG(auxpcm_rx),
+ },
+ {
+ .name = LPASS_BE_PRI_AUXPCM_TX,
+ .stream_name = LPASS_BE_PRI_AUXPCM_TX,
+ .capture_only = 1,
+ .ignore_suspend = 1,
+ .ops = &msm_stub_be_ops,
+ SND_SOC_DAILINK_REG(auxpcm_tx),
+ },
+};
+
+static struct snd_soc_dai_link msm_stub_dai_links[
+ ARRAY_SIZE(msm_stub_be_dai_links)];
+
+static const struct of_device_id sdx_asoc_machine_of_match[] = {
+ { .compatible = "qcom,sdx-asoc-snd-tavil",
+ .data = "codec"},
+ {},
+};
+
+static int msm_snd_card_late_probe(struct snd_soc_card *card)
+{
+ struct snd_soc_component *component = NULL;
+ const char *be_dl_name = LPASS_BE_RX_CDC_DMA_RX_0;
+ struct snd_soc_pcm_runtime *rtd;
+ int ret = 0;
+ void *mbhc_calibration;
+
+ rtd = snd_soc_get_pcm_runtime(card, be_dl_name);
+ if (!rtd) {
+ dev_err(card->dev,
+ "%s: snd_soc_get_pcm_runtime for %s failed!\n",
+ __func__, be_dl_name);
+ return -EINVAL;
+ }
+
+ component = snd_soc_rtdcom_lookup(rtd, WCD934X_DRV_NAME);
+ if (!component) {
+ pr_err("%s component is NULL\n", __func__);
+ return -EINVAL;
+ }
+
+ mbhc_calibration = def_wcd_mbhc_cal();
+ if (!mbhc_calibration)
+ return -ENOMEM;
+ wcd_mbhc_cfg.calibration = mbhc_calibration;
+ ret = tavil_mbhc_hs_detect(component, &wcd_mbhc_cfg);
+ if (ret) {
+ dev_err(component->dev, "%s: mbhc hs detect failed, err:%d\n",
+ __func__, ret);
+ goto err_hs_detect;
+ }
+ return 0;
+
+err_hs_detect:
+ kfree(mbhc_calibration);
+ return ret;
+}
+
+static struct snd_soc_card *populate_snd_card_dailinks(struct device *dev)
+{
+ struct snd_soc_card *card = NULL;
+ struct snd_soc_dai_link *dailink = NULL;
+ int total_links = 0;
+ int rc = 0;
+ u32 val = 0;
+ const struct of_device_id *match;
+
+ match = of_match_node(sdx_asoc_machine_of_match, dev->of_node);
+ if (!match) {
+ dev_err(dev, "%s: No DT match found for sound card\n",
+ __func__);
+ return NULL;
+ }
+
+ if (!strcmp(match->data, "codec")) {
+ card = &snd_soc_card_sdx_msm;
+
+ memcpy(msm_sdx_dai_links + total_links,
+ msm_rx_tx_cdc_dma_be_dai_links,
+ sizeof(msm_rx_tx_cdc_dma_be_dai_links));
+ total_links +=
+ ARRAY_SIZE(msm_rx_tx_cdc_dma_be_dai_links);
+
+ memcpy(msm_sdx_dai_links + total_links,
+ msm_common_be_dai_links,
+ sizeof(msm_common_be_dai_links));
+ total_links +=
+ ARRAY_SIZE(msm_common_be_dai_links);
+
+ rc = of_property_read_u32(dev->of_node,
+ "qcom,tdm-audio-intf", &val);
+ if (!rc && val) {
+ memcpy(msm_sdx_dai_links + total_links,
+ msm_tdm_dai_links,
+ sizeof(msm_tdm_dai_links));
+ total_links += ARRAY_SIZE(msm_tdm_dai_links);
+ }
+
+ dailink = msm_sdx_dai_links;
+ } else if(!strcmp(match->data, "stub_codec")) {
+ card = &snd_soc_card_stub_msm;
+
+ memcpy(msm_stub_dai_links,
+ msm_stub_be_dai_links,
+ sizeof(msm_stub_be_dai_links));
+
+ dailink = msm_stub_dai_links;
+ total_links = ARRAY_SIZE(msm_stub_be_dai_links);
+ }
+
+ if (card) {
+ card->dai_link = dailink;
+ card->num_links = total_links;
+ card->late_probe = msm_snd_card_late_probe;
+ }
+
+ return card;
+}
+
+static int msm_int_audrx_init(struct snd_soc_pcm_runtime *rtd)
+{
+ u8 spkleft_ports[WSA881X_MAX_SWR_PORTS] = {0, 1, 2, 3};
+ u8 spkright_ports[WSA881X_MAX_SWR_PORTS] = {0, 1, 2, 3};
+ u8 spkleft_port_types[WSA881X_MAX_SWR_PORTS] = {SPKR_L, SPKR_L_COMP,
+ SPKR_L_BOOST, SPKR_L_VI};
+ u8 spkright_port_types[WSA881X_MAX_SWR_PORTS] = {SPKR_R, SPKR_R_COMP,
+ SPKR_R_BOOST, SPKR_R_VI};
+ unsigned int ch_rate[WSA881X_MAX_SWR_PORTS] = {SWR_CLK_RATE_2P4MHZ, SWR_CLK_RATE_0P6MHZ,
+ SWR_CLK_RATE_0P3MHZ, SWR_CLK_RATE_1P2MHZ};
+ unsigned int ch_mask[WSA881X_MAX_SWR_PORTS] = {0x1, 0xF, 0x3, 0x3};
+ struct snd_soc_component *component = NULL;
+ struct snd_soc_dapm_context *dapm = NULL;
+ struct snd_card *card = NULL;
+ struct snd_info_entry *entry = NULL;
+ struct msm_asoc_mach_data *pdata =
+ snd_soc_card_get_drvdata(rtd->card);
+ int ret = 0;
+
+ if (codec_reg_done) {
+ return 0;
+ }
+
+ if (pdata->wsa_max_devs > 0) {
+ component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.1");
+ if (!component) {
+ pr_err("%s: wsa-codec.1 component is NULL\n", __func__);
+ return -EINVAL;
+ }
+
+ dapm = snd_soc_component_get_dapm(component);
+
+ wsa881x_set_channel_map(component, &spkleft_ports[0],
+ WSA881X_MAX_SWR_PORTS, &ch_mask[0],
+ &ch_rate[0], &spkleft_port_types[0]);
+
+ if (dapm->component) {
+ snd_soc_dapm_ignore_suspend(dapm, "spkrLeft IN");
+ snd_soc_dapm_ignore_suspend(dapm, "spkrLeft SPKR");
+ }
+
+ wsa881x_codec_info_create_codec_entry(pdata->codec_root,
+ component);
+ }
+
+ /* If current platform has more than one WSA */
+ if (pdata->wsa_max_devs > 1) {
+ component = snd_soc_rtdcom_lookup(rtd, "wsa-codec.2");
+ if (!component) {
+ pr_err("%s: wsa-codec.2 component is NULL\n", __func__);
+ return -EINVAL;
+ }
+
+ dapm = snd_soc_component_get_dapm(component);
+
+ wsa881x_set_channel_map(component, &spkright_ports[0],
+ WSA881X_MAX_SWR_PORTS, &ch_mask[0],
+ &ch_rate[0], &spkright_port_types[0]);
+
+ if (dapm->component) {
+ snd_soc_dapm_ignore_suspend(dapm, "spkrRight IN");
+ snd_soc_dapm_ignore_suspend(dapm, "spkrRight SPKR");
+ }
+
+ wsa881x_codec_info_create_codec_entry(pdata->codec_root,
+ component);
+ }
+
+
+ card = rtd->card->snd_card;
+ if (!pdata->codec_root) {
+ entry = msm_snd_info_create_subdir(card->module, "codecs",
+ card->proc_root);
+ if (!entry) {
+ pr_debug("%s: Cannot create codecs module entry\n",
+ __func__);
+ ret = 0;
+ goto err;
+ }
+ pdata->codec_root = entry;
+ }
+ msm_common_dai_link_init(rtd);
+
+err:
+ return ret;
+}
+
+static int msm_aux_codec_init(struct snd_soc_pcm_runtime *rtd)
+{
+ struct snd_soc_component *component = NULL;
+ struct snd_soc_dapm_context *dapm = NULL;
+ struct snd_info_entry *entry;
+ struct snd_card *card = NULL;
+ struct msm_asoc_mach_data *pdata;
+
+ component = snd_soc_rtdcom_lookup(rtd, WCD934X_DRV_NAME);
+ if (!component) {
+ pr_err("%s component is NULL\n", __func__);
+ return -EINVAL;
+ }
+ dapm = snd_soc_component_get_dapm(component);
+ card = component->card->snd_card;
+
+ snd_soc_dapm_ignore_suspend(dapm, "EAR");
+ snd_soc_dapm_ignore_suspend(dapm, "AUX");
+ snd_soc_dapm_ignore_suspend(dapm, "HPHL");
+ snd_soc_dapm_ignore_suspend(dapm, "HPHR");
+ snd_soc_dapm_ignore_suspend(dapm, "AMIC1");
+ snd_soc_dapm_ignore_suspend(dapm, "AMIC2");
+ snd_soc_dapm_ignore_suspend(dapm, "AMIC3");
+ snd_soc_dapm_ignore_suspend(dapm, "AMIC4");
+ snd_soc_dapm_sync(dapm);
+
+ pdata = snd_soc_card_get_drvdata(component->card);
+ if (!pdata->codec_root) {
+ entry = msm_snd_info_create_subdir(card->module, "codecs",
+ card->proc_root);
+ if (!entry) {
+ dev_dbg(component->dev, "%s: Cannot create codecs module entry\n",
+ __func__);
+ return 0;
+ }
+ pdata->codec_root = entry;
+ }
+ tavil_codec_info_create_codec_entry(pdata->codec_root, component);
+
+#if 0
+ codec_variant = wcd934x_get_codec_variant(component);
+ dev_dbg(component->dev, "%s: variant %d\n", __func__, codec_variant);
+ if (codec_variant == WCD9380)
+ ret = snd_soc_add_component_controls(component,
+ msm_int_wcd9380_snd_controls,
+ ARRAY_SIZE(msm_int_wcd9380_snd_controls));
+ else if (codec_variant == WCD9385)
+ ret = snd_soc_add_component_controls(component,
+ msm_int_wcd9385_snd_controls,
+ ARRAY_SIZE(msm_int_wcd9385_snd_controls));
+
+ if (ret < 0) {
+ dev_err(component->dev, "%s: add codec specific snd controls failed: %d\n",
+ __func__, ret);
+ return ret;
+ }
+#endif
+
+ msm_common_dai_link_init(rtd);
+ msm_int_audrx_init(rtd);
+ return 0;
+}
+
+static int sdx_ssr_enable(struct device *dev, void *data)
+{
+ struct platform_device *pdev = to_platform_device(dev);
+ struct snd_soc_card *card = platform_get_drvdata(pdev);
+ int ret = 0;
+
+ if (!card) {
+ dev_err(dev, "%s: card is NULL\n", __func__);
+ ret = -EINVAL;
+ goto err;
+ }
+
+ if (!strcmp(card->name, "sdx-stub-snd-card")) {
+ /* TODO */
+ dev_dbg(dev, "%s: TODO \n", __func__);
+ }
+
+#if IS_ENABLED(CONFIG_AUDIO_QGKI)
+ snd_soc_card_change_online_state(card, 1);
+#endif /* CONFIG_AUDIO_QGKI */
+ dev_dbg(dev, "%s: setting snd_card to ONLINE\n", __func__);
+
+err:
+ return ret;
+}
+
+static void sdx_ssr_disable(struct device *dev, void *data)
+{
+ struct platform_device *pdev = to_platform_device(dev);
+ struct snd_soc_card *card = platform_get_drvdata(pdev);
+
+ if (!card) {
+ dev_err(dev, "%s: card is NULL\n", __func__);
+ return;
+ }
+
+ dev_dbg(dev, "%s: setting snd_card to OFFLINE\n", __func__);
+#if IS_ENABLED(CONFIG_AUDIO_QGKI)
+ snd_soc_card_change_online_state(card, 0);
+#endif /* CONFIG_AUDIO_QGKI */
+
+ if (!strcmp(card->name, "sdx-stub-snd-card")) {
+ /* TODO */
+ dev_dbg(dev, "%s: TODO \n", __func__);
+ }
+}
+
+static const struct snd_event_ops sdx_ssr_ops = {
+ .enable = sdx_ssr_enable,
+ .disable = sdx_ssr_disable,
+};
+
+static int msm_audio_ssr_compare(struct device *dev, void *data)
+{
+ struct device_node *node = data;
+
+ dev_dbg(dev, "%s: dev->of_node = 0x%p, node = 0x%p\n",
+ __func__, dev->of_node, node);
+ return (dev->of_node && dev->of_node == node);
+}
+
+static int msm_audio_ssr_register(struct device *dev)
+{
+ struct device_node *np = dev->of_node;
+ struct snd_event_clients *ssr_clients = NULL;
+ struct device_node *node = NULL;
+ int ret = 0;
+ int i = 0;
+
+ for (i = 0; ; i++) {
+ node = of_parse_phandle(np, "qcom,msm_audio_ssr_devs", i);
+ if (!node)
+ break;
+ snd_event_mstr_add_client(&ssr_clients,
+ msm_audio_ssr_compare, node);
+ }
+
+ ret = snd_event_master_register(dev, &sdx_ssr_ops,
+ ssr_clients, NULL);
+ if (!ret)
+ snd_event_notify(dev, SND_EVENT_UP);
+
+ return ret;
+}
+
+struct msm_common_pdata *msm_common_get_pdata(struct snd_soc_card *card)
+{
+ struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
+
+ if (!pdata)
+ return NULL;
+
+ return pdata->common_pdata;
+}
+
+void msm_common_set_pdata(struct snd_soc_card *card,
+ struct msm_common_pdata *common_pdata)
+{
+ struct msm_asoc_mach_data *pdata = snd_soc_card_get_drvdata(card);
+
+ if (!pdata)
+ return;
+
+ pdata->common_pdata = common_pdata;
+}
+
+static int msm_asoc_machine_probe(struct platform_device *pdev)
+{
+ struct snd_soc_card *card = NULL;
+ struct msm_asoc_mach_data *pdata = NULL;
+ const char *mbhc_audio_jack_type = NULL;
+ int ret = 0;
+ struct clk *lpass_audio_hw_vote = NULL;
+
+ if (!pdev->dev.of_node) {
+ dev_err(&pdev->dev, "%s: No platform supplied from device tree\n", __func__);
+ return -EINVAL;
+ }
+ pdata = devm_kzalloc(&pdev->dev,
+ sizeof(struct msm_asoc_mach_data), GFP_KERNEL);
+ if (!pdata)
+ return -ENOMEM;
+
+ card = populate_snd_card_dailinks(&pdev->dev);
+ if (!card) {
+ dev_err(&pdev->dev, "%s: Card uninitialized\n", __func__);
+ ret = -EINVAL;
+ goto err;
+ }
+
+ card->dev = &pdev->dev;
+ platform_set_drvdata(pdev, card);
+ snd_soc_card_set_drvdata(card, pdata);
+
+ ret = snd_soc_of_parse_card_name(card, "qcom,model");
+ if (ret) {
+ dev_err(&pdev->dev, "%s: parse card name failed, err:%d\n",
+ __func__, ret);
+ goto err;
+ }
+
+ ret = snd_soc_of_parse_audio_routing(card, "qcom,audio-routing");
+ if (ret) {
+ dev_err(&pdev->dev, "%s: parse audio routing failed, err:%d\n",
+ __func__, ret);
+ goto err;
+ }
+
+ ret = msm_populate_dai_link_component_of_node(card);
+ if (ret) {
+ ret = -EPROBE_DEFER;
+ goto err;
+ }
+
+ /* Get maximum WSA device count for this platform */
+ ret = of_property_read_u32(pdev->dev.of_node,
+ "qcom,wsa-max-devs", &pdata->wsa_max_devs);
+ if (ret) {
+ dev_info(&pdev->dev,
+ "%s: wsa-max-devs property missing in DT %s, ret = %d\n",
+ __func__, pdev->dev.of_node->full_name, ret);
+ pdata->wsa_max_devs = 0;
+ }
+
+ ret = devm_snd_soc_register_card(&pdev->dev, card);
+ if (ret == -EPROBE_DEFER) {
+ if (codec_reg_done)
+ ret = -EINVAL;
+ goto err;
+ } else if (ret) {
+ dev_err(&pdev->dev, "%s: snd_soc_register_card failed (%d)\n",
+ __func__, ret);
+ goto err;
+ }
+ dev_info(&pdev->dev, "%s: Sound card %s registered\n",
+ __func__, card->name);
+
+ pdata->hph_en1_gpio_p = of_parse_phandle(pdev->dev.of_node,
+ "qcom,hph-en1-gpio", 0);
+ if (!pdata->hph_en1_gpio_p) {
+ dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
+ __func__, "qcom,hph-en1-gpio",
+ pdev->dev.of_node->full_name);
+ }
+
+ pdata->hph_en0_gpio_p = of_parse_phandle(pdev->dev.of_node,
+ "qcom,hph-en0-gpio", 0);
+ if (!pdata->hph_en0_gpio_p) {
+ dev_dbg(&pdev->dev, "%s: property %s not detected in node %s\n",
+ __func__, "qcom,hph-en0-gpio",
+ pdev->dev.of_node->full_name);
+ }
+
+ ret = of_property_read_string(pdev->dev.of_node,
+ "qcom,mbhc-audio-jack-type", &mbhc_audio_jack_type);
+ if (ret) {
+ dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
+ __func__, "qcom,mbhc-audio-jack-type",
+ pdev->dev.of_node->full_name);
+ dev_dbg(&pdev->dev, "Jack type properties set to default\n");
+ } else {
+ if (!strcmp(mbhc_audio_jack_type, "4-pole-jack")) {
+ wcd_mbhc_cfg.enable_anc_mic_detect = false;
+ dev_dbg(&pdev->dev, "This hardware has 4 pole jack");
+ } else if (!strcmp(mbhc_audio_jack_type, "5-pole-jack")) {
+ wcd_mbhc_cfg.enable_anc_mic_detect = true;
+ dev_dbg(&pdev->dev, "This hardware has 5 pole jack");
+ } else if (!strcmp(mbhc_audio_jack_type, "6-pole-jack")) {
+ wcd_mbhc_cfg.enable_anc_mic_detect = true;
+ dev_dbg(&pdev->dev, "This hardware has 6 pole jack");
+ } else {
+ wcd_mbhc_cfg.enable_anc_mic_detect = false;
+ dev_dbg(&pdev->dev, "Unknown value, set to default\n");
+ }
+ }
+ /*
+ * Parse US-Euro gpio info from DT. Report no error if us-euro
+ * entry is not found in DT file as some targets do not support
+ * US-Euro detection
+ */
+ pdata->us_euro_gpio_p = of_parse_phandle(pdev->dev.of_node,
+ "qcom,us-euro-gpios", 0);
+ if (!pdata->us_euro_gpio_p) {
+ dev_dbg(&pdev->dev, "property %s not detected in node %s",
+ "qcom,us-euro-gpios", pdev->dev.of_node->full_name);
+ } else {
+ dev_dbg(&pdev->dev, "%s detected\n",
+ "qcom,us-euro-gpios");
+ wcd_mbhc_cfg.swap_gnd_mic = msm_swap_gnd_mic;
+ }
+
+ if (wcd_mbhc_cfg.enable_usbc_analog)
+ wcd_mbhc_cfg.swap_gnd_mic = msm_usbc_swap_gnd_mic;
+
+ pdata->fsa_handle = of_parse_phandle(pdev->dev.of_node,
+ "fsa4480-i2c-handle", 0);
+ if (!pdata->fsa_handle)
+ dev_dbg(&pdev->dev, "property %s not detected in node %s\n",
+ "fsa4480-i2c-handle", pdev->dev.of_node->full_name);
+
+ pdata->dmic01_gpio_p = of_parse_phandle(pdev->dev.of_node,
+ "qcom,cdc-dmic01-gpios",
+ 0);
+ pdata->dmic23_gpio_p = of_parse_phandle(pdev->dev.of_node,
+ "qcom,cdc-dmic23-gpios",
+ 0);
+ pdata->dmic45_gpio_p = of_parse_phandle(pdev->dev.of_node,
+ "qcom,cdc-dmic45-gpios",
+ 0);
+ if (pdata->dmic01_gpio_p)
+ msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic01_gpio_p, false);
+ if (pdata->dmic23_gpio_p)
+ msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic23_gpio_p, false);
+ if (pdata->dmic45_gpio_p)
+ msm_cdc_pinctrl_set_wakeup_capable(pdata->dmic45_gpio_p, false);
+
+ msm_common_snd_init(pdev, card);
+#if 0
+ pdata->mi2s_gpio_p[PRIM_MI2S] = of_parse_phandle(pdev->dev.of_node,
+ "qcom,pri-mi2s-gpios", 0);
+ pdata->mi2s_gpio_p[SEC_MI2S] = of_parse_phandle(pdev->dev.of_node,
+ "qcom,sec-mi2s-gpios", 0);
+ pdata->mi2s_gpio_p[TERT_MI2S] = of_parse_phandle(pdev->dev.of_node,
+ "qcom,tert-mi2s-gpios", 0);
+ pdata->mi2s_gpio_p[QUAT_MI2S] = of_parse_phandle(pdev->dev.of_node,
+ "qcom,quat-mi2s-gpios", 0);
+ pdata->mi2s_gpio_p[QUIN_MI2S] = of_parse_phandle(pdev->dev.of_node,
+ "qcom,quin-mi2s-gpios", 0);
+ pdata->mi2s_gpio_p[SEN_MI2S] = of_parse_phandle(pdev->dev.of_node,
+ "qcom,sen-mi2s-gpios", 0);
+ for (index = PRIM_MI2S; index < MI2S_MAX; index++)
+ atomic_set(&(pdata->mi2s_gpio_ref_count[index]), 0);
+#endif
+
+ /* Register LPASS audio hw vote */
+ lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
+ if (IS_ERR(lpass_audio_hw_vote)) {
+ ret = PTR_ERR(lpass_audio_hw_vote);
+ dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
+ __func__, "lpass_audio_hw_vote", ret);
+ lpass_audio_hw_vote = NULL;
+ ret = 0;
+ }
+ pdata->lpass_audio_hw_vote = lpass_audio_hw_vote;
+ pdata->core_audio_vote_count = 0;
+
+ ret = msm_audio_ssr_register(&pdev->dev);
+ if (ret)
+ pr_err("%s: Registration with SND event FWK failed ret = %d\n",
+ __func__, ret);
+
+ is_initial_boot = true;
+
+ /* Add QoS request for audio tasks */
+ msm_audio_add_qos_request();
+
+ return 0;
+err:
+ devm_kfree(&pdev->dev, pdata);
+ return ret;
+}
+
+static int msm_asoc_machine_remove(struct platform_device *pdev)
+{
+ struct snd_soc_card *card = platform_get_drvdata(pdev);
+ struct msm_asoc_mach_data *pdata = NULL;
+ struct msm_common_pdata *common_pdata = NULL;
+
+ if (card)
+ pdata = snd_soc_card_get_drvdata(card);
+
+ if (pdata)
+ common_pdata = pdata->common_pdata;
+
+ msm_common_snd_deinit(common_pdata);
+ snd_event_master_deregister(&pdev->dev);
+ snd_soc_unregister_card(card);
+ msm_audio_remove_qos_request();
+
+ return 0;
+}
+
+static struct platform_driver sdx_asoc_machine_driver = {
+ .driver = {
+ .name = DRV_NAME,
+ .owner = THIS_MODULE,
+ .pm = &snd_soc_pm_ops,
+ .of_match_table = sdx_asoc_machine_of_match,
+ .suppress_bind_attrs = true,
+ },
+ .probe = msm_asoc_machine_probe,
+ .remove = msm_asoc_machine_remove,
+};
+module_platform_driver(sdx_asoc_machine_driver);
+
+MODULE_SOFTDEP("pre: bt_fm_slim");
+MODULE_DESCRIPTION("ALSA SoC msm");
+MODULE_LICENSE("GPL v2");
+MODULE_ALIAS("platform:" DRV_NAME);
+MODULE_DEVICE_TABLE(of, sdx_asoc_machine_of_match);
diff --git a/config/sdxlemurauto.conf b/config/sdxlemurauto.conf
new file mode 100644
index 00000000..2d7cf06c
--- /dev/null
+++ b/config/sdxlemurauto.conf
@@ -0,0 +1,31 @@
+export CONFIG_PINCTRL_WCD=m
+export CONFIG_AUDIO_EXT_CLK=m
+export CONFIG_SND_SOC_WCD9XXX_V2=m
+export CONFIG_SND_SOC_WCD_MBHC=m
+export CONFIG_SND_SOC_WSA881X=m
+export CONFIG_SND_SOC_WCD934X=m
+export CONFIG_SND_SOC_WCD934X_MBHC=m
+export CONFIG_SND_SOC_WCD934X_DSD=m
+export CONFIG_SOUNDWIRE_WCD_CTRL=m
+export CONFIG_WCD9XXX_CODEC_CORE=m
+export CONFIG_MSM_CDC_PINCTRL=m
+export CONFIG_MSM_QDSP6_GPR_RPMSG=m
+export CONFIG_AUDIO_PKT=m
+export CONFIG_AUDIO_PKT_ION=m
+export CONFIG_SPF_CORE=m
+export CONFIG_AUDIO_PRM=m
+export CONFIG_MSM_ADSP_LOADER=m
+export CONFIG_REGMAP_SWR=m
+export CONFIG_MSM_QDSP6_SSR=m
+export CONFIG_MSM_QDSP6_PDR=m
+export CONFIG_MSM_QDSP6_NOTIFIER=m
+export CONFIG_SND_SOC_MSM_HOSTLESS_PCM=m
+export CONFIG_SND_SOC_MSM_QDSP6V2_INTF=m
+export CONFIG_SND_SOC_SDX=m
+export CONFIG_MSM_GLINK_SPI_XPRT=m
+export CONFIG_WCD_DSP_GLINK=m
+export CONFIG_SOUNDWIRE=m
+export CONFIG_SND_SOC_QDSP6V2=m
+export CONFIG_SND_SOC_WCD_MBHC_ADC=m
+export CONFIG_SND_SOC_MSM_STUB=m
+export CONFIG_SND_EVENT=m
diff --git a/config/sdxlemurautoconf.h b/config/sdxlemurautoconf.h
new file mode 100644
index 00000000..3f65906f
--- /dev/null
+++ b/config/sdxlemurautoconf.h
@@ -0,0 +1,35 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+/* Copyright (c) 2020, The Linux Foundation. All rights reserved.
+ */
+
+#define CONFIG_PINCTRL_WCD 1
+#define CONFIG_AUDIO_EXT_CLK 1
+#define CONFIG_SND_SOC_WCD9XXX_V2 1
+#define CONFIG_SND_SOC_WCD_MBHC 1
+#define CONFIG_SND_SOC_WSA881X 1
+#define CONFIG_SND_SOC_WCD934X 1
+#define CONFIG_SND_SOC_WCD934X_MBHC 1
+#define CONFIG_SND_SOC_WCD934X_DSD 1
+#define CONFIG_WCD9XXX_CODEC_CORE 1
+#define CONFIG_MSM_CDC_PINCTRL 1
+#define CONFIG_MSM_QDSP6_GPR_RPMSG 1
+#define CONFIG_AUDIO_PKT 1
+#define CONFIG_AUDIO_PKT_ION 1
+#define CONFIG_SPF_CORE 1
+#define CONFIG_AUDIO_PRM 1
+#define CONFIG_SND_SOC_MSM_QDSP6V2_INTF 1
+#define CONFIG_MSM_ADSP_LOADER 1
+#define CONFIG_REGMAP_SWR 1
+#define CONFIG_MSM_QDSP6_SSR 1
+#define CONFIG_MSM_QDSP6_PDR 1
+#define CONFIG_MSM_QDSP6_NOTIFIER 1
+#define CONFIG_SND_SOC_MSM_HOSTLESS_PCM 1
+#define CONFIG_SND_SOC_SDX 1
+#define CONFIG_MSM_GLINK_SPI_XPRT 1
+#define CONFIG_WCD_DSP_GLINK 1
+#define CONFIG_SOUNDWIRE 1
+#define CONFIG_SOUNDWIRE_WCD_CTRL 1
+#define CONFIG_SND_SOC_WCD_MBHC_ADC 1
+#define CONFIG_SND_SOC_QDSP6V2 1
+#define CONFIG_SND_SOC_MSM_STUB 1
+#define CONFIG_SND_EVENT 1
diff --git a/dsp/Kbuild b/dsp/Kbuild
index 82d15879..cf0a87e5 100644
--- a/dsp/Kbuild
+++ b/dsp/Kbuild
@@ -88,6 +88,11 @@ ifeq ($(KERNEL_BUILD), 0)
export
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
endif
+ ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+ include $(AUDIO_ROOT)/config/sdxlemurauto.conf
+ export
+ INCS += -include $(AUDIO_ROOT)/config/sdxlemurautoconf.h
+ endif
endif
endif
diff --git a/include/asoc/wcd9xxx-resmgr-v2.h b/include/asoc/wcd9xxx-resmgr-v2.h
index dcdf7cda..84de1a75 100644
--- a/include/asoc/wcd9xxx-resmgr-v2.h
+++ b/include/asoc/wcd9xxx-resmgr-v2.h
@@ -5,7 +5,7 @@
#ifndef __WCD9XXX_COMMON_V2_H__
#define __WCD9XXX_COMMON_V2_H__
-#include <audio/audio/linux/mfd/wcd9xxx/wcd9xxx_registers.h>
+#include <audio/linux/mfd/wcd9xxx/wcd9xxx_registers.h>
#include "core.h"
enum wcd_clock_type {
diff --git a/include/ipc/gpr-lite.h b/include/ipc/gpr-lite.h
index 591ed816..16f9f5cb 100644
--- a/include/ipc/gpr-lite.h
+++ b/include/ipc/gpr-lite.h
@@ -283,4 +283,5 @@ void gpr_driver_unregister(struct gpr_driver *drv);
int gpr_send_pkt(struct gpr_device *adev, struct gpr_pkt *pkt);
+enum gpr_subsys_state gpr_get_modem_state(void);
#endif /* __QCOM_GPR_H_ */
diff --git a/include/soc/internal.h b/include/soc/internal.h
index 4b7332cb..2bc06552 120000
--- a/include/soc/internal.h
+++ b/include/soc/internal.h
@@ -1 +1 @@
-../../../../../../kernel/msm-5.4/drivers/base/regmap/internal.h \ No newline at end of file
+../../../../drivers/base/regmap/internal.h \ No newline at end of file
diff --git a/ipc/Kbuild b/ipc/Kbuild
index b6fdb52d..74140843 100644
--- a/ipc/Kbuild
+++ b/ipc/Kbuild
@@ -89,6 +89,11 @@ ifeq ($(KERNEL_BUILD), 0)
export
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
endif
+ ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+ include $(AUDIO_ROOT)/config/sdxlemurauto.conf
+ export
+ INCS += -include $(AUDIO_ROOT)/config/sdxlemurautoconf.h
+ endif
endif
endif
diff --git a/ipc/gpr-lite.c b/ipc/gpr-lite.c
index 2df32ebe..7c61c462 100644
--- a/ipc/gpr-lite.c
+++ b/ipc/gpr-lite.c
@@ -108,6 +108,7 @@ int gpr_send_pkt(struct gpr_device *adev, struct gpr_pkt *pkt)
spin_lock_irqsave(&adev->lock, flags);
hdr = &pkt->hdr;
+ hdr->dst_domain_id = adev->domain_id;
pkt_size = GPR_PKT_GET_PACKET_BYTE_SIZE(hdr->header);
dev_dbg(gpr->dev, "SVC_ID %d %s packet size %d\n",
diff --git a/soc/Kbuild b/soc/Kbuild
index b8f2d936..a04022f4 100644
--- a/soc/Kbuild
+++ b/soc/Kbuild
@@ -88,6 +88,11 @@ ifeq ($(KERNEL_BUILD), 0)
export
INCS += -include $(AUDIO_ROOT)/config/gvmautoconf.h
endif
+ ifeq ($(CONFIG_ARCH_SDXLEMUR), y)
+ include $(AUDIO_ROOT)/config/sdxlemurauto.conf
+ export
+ INCS += -include $(AUDIO_ROOT)/config/sdxlemurautoconf.h
+ endif
endif
endif
diff --git a/soc/core.h b/soc/core.h
index fcefe83a..8a2fa90d 120000
--- a/soc/core.h
+++ b/soc/core.h
@@ -1 +1 @@
-../../../../../kernel/msm-5.4/drivers/pinctrl/core.h \ No newline at end of file
+../../../drivers/pinctrl/core.h \ No newline at end of file
diff --git a/soc/pinctrl-utils.h b/soc/pinctrl-utils.h
index 6135de47..9aab5f24 120000
--- a/soc/pinctrl-utils.h
+++ b/soc/pinctrl-utils.h
@@ -1 +1 @@
-../../../../../kernel/msm-5.4/drivers/pinctrl/pinctrl-utils.h \ No newline at end of file
+../../../drivers/pinctrl/pinctrl-utils.h \ No newline at end of file