add conditional compilation for swr dmics in wcd939x and wcd938x. Change-Id: I09867f9886de9b5b6736ee12c722a1b283bc3797 Signed-off-by: Prasad Kumpatla <quic_pkumpatl@quicinc.com>
938 righe
24 KiB
C
938 righe
24 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2019-2021, The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/device.h>
|
|
#include <linux/printk.h>
|
|
#include <linux/bitops.h>
|
|
#include <linux/regulator/consumer.h>
|
|
#include <linux/pm_runtime.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/gpio.h>
|
|
#include <linux/of_gpio.h>
|
|
#include <linux/of_platform.h>
|
|
#include <linux/debugfs.h>
|
|
#include <soc/soundwire.h>
|
|
#include <sound/pcm.h>
|
|
#include <sound/pcm_params.h>
|
|
#include <sound/soc.h>
|
|
#include <sound/soc-dapm.h>
|
|
#include <sound/tlv.h>
|
|
#include <asoc/msm-cdc-pinctrl.h>
|
|
#include <asoc/msm-cdc-supply.h>
|
|
#include <bindings/audio-codec-port-types.h>
|
|
#ifdef CONFIG_SND_SOC_WCD939X
|
|
#include "wcd939x/wcd939x.h"
|
|
#else
|
|
#include "wcd938x/wcd938x.h"
|
|
#endif
|
|
#include "swr-dmic.h"
|
|
|
|
#define NUM_ATTEMPTS 5
|
|
#define SWRS_SCP_CONTROL 0x44
|
|
|
|
#define MAX_NAME_LEN 40
|
|
|
|
static int swr_master_channel_map[] = {
|
|
ZERO,
|
|
SWRM_TX_PCM_OUT,
|
|
SWRM_TX1_CH1,
|
|
SWRM_TX1_CH2,
|
|
SWRM_TX1_CH3,
|
|
SWRM_TX1_CH4,
|
|
SWRM_TX2_CH1,
|
|
SWRM_TX2_CH2,
|
|
SWRM_TX2_CH3,
|
|
SWRM_TX2_CH4,
|
|
SWRM_TX3_CH1,
|
|
SWRM_TX3_CH2,
|
|
SWRM_TX3_CH3,
|
|
SWRM_TX3_CH4,
|
|
SWRM_TX_PCM_IN,
|
|
};
|
|
|
|
/*
|
|
* Private data Structure for swr-dmic. All parameters related to
|
|
* external mic codec needs to be defined here.
|
|
*/
|
|
struct swr_dmic_priv {
|
|
struct device *dev;
|
|
struct swr_device *swr_slave;
|
|
struct snd_soc_component *component;
|
|
struct snd_soc_component_driver *driver;
|
|
struct snd_soc_dai_driver *dai_driver;
|
|
struct snd_soc_component *supply_component;
|
|
u32 micb_num;
|
|
struct device_node *wcd_handle;
|
|
bool is_wcd_supply;
|
|
int is_en_supply;
|
|
u8 tx_master_port_map[SWR_DMIC_MAX_PORTS];
|
|
struct swr_port_params tx_port_params[SWR_UC_MAX][SWR_DMIC_MAX_PORTS];
|
|
struct swr_dev_frame_config swr_tx_port_params[SWR_UC_MAX];
|
|
struct notifier_block nblock;
|
|
};
|
|
|
|
const char *codec_name_list[] = {
|
|
"swr-dmic.01",
|
|
"swr-dmic.02",
|
|
"swr-dmic.03",
|
|
"swr-dmic.04",
|
|
};
|
|
|
|
const char *dai_name_list[] = {
|
|
"swr_dmic_tx0",
|
|
"swr_dmic_tx1",
|
|
"swr_dmic_tx2",
|
|
"swr_dmic_tx3",
|
|
};
|
|
|
|
const char *aif_name_list[] = {
|
|
"SWR_DMIC_AIF0 Capture",
|
|
"SWR_DMIC_AIF1 Capture",
|
|
"SWR_DMIC_AIF2 Capture",
|
|
"SWR_DMIC_AIF3 Capture",
|
|
};
|
|
|
|
static int swr_dmic_reset(struct swr_device *pdev);
|
|
static int swr_dmic_up(struct swr_device *pdev);
|
|
static int swr_dmic_down(struct swr_device *pdev);
|
|
static int swr_dmic_event_notify(struct notifier_block *block,
|
|
unsigned long val,
|
|
void *data);
|
|
|
|
static inline int swr_dmic_tx_get_slave_port_type_idx(const char *wname,
|
|
unsigned int *port_idx)
|
|
{
|
|
u8 port_type;
|
|
|
|
if (strnstr(wname, "HIFI", strlen(wname)))
|
|
port_type = SWR_DMIC_HIFI_PORT;
|
|
else if (strnstr(wname, "LP", strlen(wname)))
|
|
port_type = SWR_DMIC_LP_PORT;
|
|
else
|
|
return -EINVAL;
|
|
|
|
*port_idx = port_type;
|
|
return 0;
|
|
}
|
|
|
|
static inline int swr_dmic_get_master_port_val(int port)
|
|
{
|
|
int i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(swr_master_channel_map); i++)
|
|
if (port == swr_master_channel_map[i])
|
|
return i;
|
|
return 0;
|
|
}
|
|
|
|
static int swr_dmic_tx_master_port_get(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component =
|
|
snd_soc_kcontrol_component(kcontrol);
|
|
struct swr_dmic_priv *swr_dmic = NULL;
|
|
int ret = 0;
|
|
unsigned int slave_port_idx = SWR_DMIC_MAX_PORTS;
|
|
|
|
if (NULL == component) {
|
|
pr_err_ratelimited("%s: swr dmic component is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
swr_dmic = snd_soc_component_get_drvdata(component);
|
|
if (NULL == swr_dmic) {
|
|
pr_err_ratelimited("%s: swr_dmic_priv is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
ret = swr_dmic_tx_get_slave_port_type_idx(kcontrol->id.name,
|
|
&slave_port_idx);
|
|
if (ret) {
|
|
dev_dbg(component->dev, "%s: invalid port string\n", __func__);
|
|
return ret;
|
|
}
|
|
|
|
if (slave_port_idx >= SWR_DMIC_MAX_PORTS) {
|
|
pr_err_ratelimited("%s: invalid slave port id\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
ucontrol->value.integer.value[0] =
|
|
swr_dmic_get_master_port_val(
|
|
swr_dmic->tx_master_port_map[slave_port_idx]);
|
|
|
|
dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
|
|
__func__, ucontrol->value.integer.value[0]);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int swr_dmic_tx_master_port_put(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
struct snd_soc_component *component =
|
|
snd_soc_kcontrol_component(kcontrol);
|
|
struct swr_dmic_priv *swr_dmic = NULL;
|
|
int ret = 0;
|
|
unsigned int slave_port_idx = SWR_DMIC_MAX_PORTS;
|
|
unsigned int idx = 0;
|
|
|
|
if (NULL == component) {
|
|
pr_err_ratelimited("%s: swr dmic component is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
swr_dmic = snd_soc_component_get_drvdata(component);
|
|
if (NULL == swr_dmic) {
|
|
pr_err_ratelimited("%s: swr_dmic_priv is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
ret = swr_dmic_tx_get_slave_port_type_idx(kcontrol->id.name,
|
|
&slave_port_idx);
|
|
if (ret) {
|
|
dev_dbg(component->dev, "%s: invalid port string\n", __func__);
|
|
return ret;
|
|
}
|
|
|
|
if (slave_port_idx >= SWR_DMIC_MAX_PORTS) {
|
|
pr_err_ratelimited("%s: invalid slave port id\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
idx = ucontrol->value.enumerated.item[0];
|
|
if (idx < 0 || idx >= ARRAY_SIZE(swr_master_channel_map))
|
|
return -EINVAL;
|
|
|
|
swr_dmic->tx_master_port_map[slave_port_idx] =
|
|
swr_master_channel_map[idx];
|
|
dev_dbg(component->dev, "%s: slv port id: %d, master_port_type: %d\n",
|
|
__func__, slave_port_idx,
|
|
swr_dmic->tx_master_port_map[slave_port_idx]);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int swr_dmic_port_enable(struct snd_soc_dapm_widget *w,
|
|
struct snd_kcontrol *kcontrol, int event)
|
|
{
|
|
int ret = 0;
|
|
struct snd_soc_component *component =
|
|
snd_soc_dapm_to_component(w->dapm);
|
|
struct swr_dmic_priv *swr_dmic =
|
|
snd_soc_component_get_drvdata(component);
|
|
|
|
u8 ch_mask = 0x01; /* only DpnChannelEN1 register is available */
|
|
u8 num_port = 1;
|
|
u8 port_id = w->shift;
|
|
u8 port_type = swr_dmic->tx_master_port_map[port_id];
|
|
|
|
switch (event) {
|
|
case SND_SOC_DAPM_POST_PMU:
|
|
ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
|
|
swr_dmic->swr_slave->dev_num, true);
|
|
break;
|
|
case SND_SOC_DAPM_PRE_PMD:
|
|
ret = swr_disconnect_port(swr_dmic->swr_slave,
|
|
&port_id, num_port, &ch_mask, &port_type);
|
|
break;
|
|
};
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int dmic_swr_ctrl(struct snd_soc_dapm_widget *w,
|
|
struct snd_kcontrol *kcontrol, int event)
|
|
{
|
|
int ret = 0;
|
|
struct snd_soc_component *component =
|
|
snd_soc_dapm_to_component(w->dapm);
|
|
struct swr_dmic_priv *swr_dmic =
|
|
snd_soc_component_get_drvdata(component);
|
|
|
|
u8 num_ch = 1;
|
|
u8 ch_mask = 0x01; /* only DpnChannelEN1 register is available */
|
|
u32 ch_rate = SWR_CLK_RATE_4P8MHZ;
|
|
u8 num_port = 1;
|
|
u8 port_type = 0;
|
|
u8 port_id = w->shift;
|
|
|
|
if (port_id >= SWR_DMIC_MAX_PORTS)
|
|
{
|
|
dev_err_ratelimited(component->dev, "%s: invalid port id: %d\n",
|
|
__func__, port_id);
|
|
return -EINVAL;
|
|
}
|
|
|
|
/*
|
|
* Port 1 is high quality / 2.4 or 3.072 Mbps
|
|
* Port 2 is listen low power / 0.6 or 0.768 Mbps
|
|
*/
|
|
if (port_id == SWR_DMIC_HIFI_PORT)
|
|
ch_rate = SWR_CLK_RATE_2P4MHZ;
|
|
else
|
|
ch_rate = SWR_CLK_RATE_0P6MHZ;
|
|
|
|
port_type = swr_dmic->tx_master_port_map[port_id];
|
|
|
|
dev_dbg(component->dev, "%s port_type: %d event: %d\n", __func__,
|
|
port_type, event);
|
|
|
|
switch (event) {
|
|
case SND_SOC_DAPM_PRE_PMU:
|
|
ret = swr_connect_port(swr_dmic->swr_slave, &port_id,
|
|
num_port, &ch_mask, &ch_rate,
|
|
&num_ch, &port_type);
|
|
break;
|
|
case SND_SOC_DAPM_POST_PMD:
|
|
ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
|
|
swr_dmic->swr_slave->dev_num, false);
|
|
break;
|
|
};
|
|
|
|
return ret;
|
|
}
|
|
|
|
/* qcom,swr-tx-port-params = <OFFSET1_VAL0 LANE1>, <OFFSET1_VAL5 LANE0>, *UC0*
|
|
<OFFSET1_VAL0 LANE1>, <OFFSET1_VAL2 LANE0>, *UC1*
|
|
<OFFSET1_VAL1 LANE0>, <OFFSET1_VAL1 LANE0>, *UC2*
|
|
<OFFSET1_VAL1 LANE0>, <OFFSET1_VAL1 LANE0>, *UC3 */
|
|
static int swr_dmic_parse_port_params(struct device *dev,
|
|
char *prop)
|
|
{
|
|
int i, j;
|
|
u32 *dt_array, map_size, max_uc;
|
|
int ret = 0;
|
|
u32 cnt = 0;
|
|
struct swr_port_params (*map)[SWR_UC_MAX][SWR_DMIC_MAX_PORTS];
|
|
struct swr_dev_frame_config (*map_uc)[SWR_UC_MAX];
|
|
struct swr_dmic_priv *swr_dmic = dev_get_drvdata(dev);
|
|
|
|
map = &swr_dmic->tx_port_params;
|
|
map_uc = &swr_dmic->swr_tx_port_params;
|
|
|
|
if (!of_find_property(dev->of_node, prop,
|
|
&map_size)) {
|
|
dev_err(dev, "missing port mapping prop %s\n", prop);
|
|
ret = -EINVAL;
|
|
goto err_port_map;
|
|
}
|
|
|
|
max_uc = map_size / (SWR_DMIC_MAX_PORTS * SWR_PORT_PARAMS * sizeof(u32));
|
|
|
|
if (max_uc != SWR_UC_MAX) {
|
|
dev_err(dev,
|
|
"%s:port params not provided for all usecases\n",
|
|
__func__);
|
|
ret = -EINVAL;
|
|
goto err_port_map;
|
|
}
|
|
dt_array = kzalloc(map_size, GFP_KERNEL);
|
|
|
|
if (!dt_array) {
|
|
ret = -ENOMEM;
|
|
goto err_alloc;
|
|
}
|
|
ret = of_property_read_u32_array(dev->of_node, prop, dt_array,
|
|
SWR_DMIC_MAX_PORTS * SWR_PORT_PARAMS * max_uc);
|
|
if (ret) {
|
|
dev_err(dev, "%s: Failed to read port mapping from prop %s\n",
|
|
__func__, prop);
|
|
goto err_pdata_fail;
|
|
}
|
|
|
|
for (i = 0; i < max_uc; i++) {
|
|
for (j = 0; j < SWR_DMIC_MAX_PORTS; j++) {
|
|
cnt = (i * SWR_DMIC_MAX_PORTS + j) * SWR_PORT_PARAMS;
|
|
(*map)[i][j].offset1 = dt_array[cnt];
|
|
(*map)[i][j].lane_ctrl = dt_array[cnt + 1];
|
|
dev_err(dev, "%s: port %d, uc: %d, offset1:%d, lane: %d\n",
|
|
__func__, j, i, dt_array[cnt], dt_array[cnt + 1]);
|
|
}
|
|
(*map_uc)[i].pp = &(*map)[i][0];
|
|
}
|
|
kfree(dt_array);
|
|
return 0;
|
|
|
|
err_pdata_fail:
|
|
kfree(dt_array);
|
|
err_alloc:
|
|
err_port_map:
|
|
return ret;
|
|
}
|
|
|
|
static const char * const tx_master_port_text[] = {
|
|
"ZERO", "SWRM_PCM_OUT", "SWRM_TX1_CH1", "SWRM_TX1_CH2", "SWRM_TX1_CH3",
|
|
"SWRM_TX1_CH4", "SWRM_TX2_CH1", "SWRM_TX2_CH2", "SWRM_TX2_CH3",
|
|
"SWRM_TX2_CH4", "SWRM_TX3_CH1", "SWRM_TX3_CH2", "SWRM_TX3_CH3",
|
|
"SWRM_TX3_CH4", "SWRM_PCM_IN",
|
|
};
|
|
|
|
static const struct soc_enum tx_master_port_enum =
|
|
SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(tx_master_port_text),
|
|
tx_master_port_text);
|
|
|
|
static const struct snd_kcontrol_new swr_dmic_snd_controls[] = {
|
|
SOC_ENUM_EXT("HIFI PortMap", tx_master_port_enum,
|
|
swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
|
|
SOC_ENUM_EXT("LP PortMap", tx_master_port_enum,
|
|
swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
|
|
};
|
|
|
|
static const struct snd_kcontrol_new dmic_switch[] = {
|
|
SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
|
|
};
|
|
|
|
static const struct snd_kcontrol_new va_dmic_switch[] = {
|
|
SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
|
|
};
|
|
|
|
static const struct snd_soc_dapm_widget swr_dmic_dapm_widgets[] = {
|
|
SND_SOC_DAPM_MIXER_E("SWR_DMIC_MIXER", SND_SOC_NOPM,
|
|
SWR_DMIC_HIFI_PORT, 0,
|
|
dmic_switch, ARRAY_SIZE(dmic_switch), dmic_swr_ctrl,
|
|
SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
|
|
|
|
SND_SOC_DAPM_MIXER_E("SWR_DMIC_VA_MIXER", SND_SOC_NOPM,
|
|
SWR_DMIC_LP_PORT, 0,
|
|
va_dmic_switch, ARRAY_SIZE(va_dmic_switch), dmic_swr_ctrl,
|
|
SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
|
|
|
|
SND_SOC_DAPM_INPUT("SWR_DMIC"),
|
|
SND_SOC_DAPM_INPUT("VA_SWR_DMIC"),
|
|
|
|
SND_SOC_DAPM_OUT_DRV_E("SMIC_PORT_EN", SND_SOC_NOPM,
|
|
SWR_DMIC_HIFI_PORT, 0, NULL, 0,
|
|
swr_dmic_port_enable,
|
|
SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
|
|
|
|
SND_SOC_DAPM_OUT_DRV_E("SMIC_VA_PORT_EN", SND_SOC_NOPM,
|
|
SWR_DMIC_LP_PORT, 0, NULL, 0,
|
|
swr_dmic_port_enable,
|
|
SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
|
|
|
|
SND_SOC_DAPM_OUTPUT("SWR_DMIC_OUTPUT"),
|
|
SND_SOC_DAPM_OUTPUT("SWR_DMIC_VA_OUTPUT"),
|
|
};
|
|
|
|
static const struct snd_soc_dapm_route swr_dmic_audio_map[] = {
|
|
{"SWR_DMIC_MIXER", "Switch", "SWR_DMIC"},
|
|
{"SMIC_PORT_EN", NULL, "SWR_DMIC_MIXER"},
|
|
{"SWR_DMIC_OUTPUT", NULL, "SMIC_PORT_EN"},
|
|
{"SWR_DMIC_VA_MIXER", "Switch", "VA_SWR_DMIC"},
|
|
{"SMIC_VA_PORT_EN", NULL, "SWR_DMIC_VA_MIXER"},
|
|
{"SWR_DMIC_VA_OUTPUT", NULL, "SMIC_VA_PORT_EN"},
|
|
};
|
|
|
|
static int swr_dmic_codec_probe(struct snd_soc_component *component)
|
|
{
|
|
struct swr_dmic_priv *swr_dmic =
|
|
snd_soc_component_get_drvdata(component);
|
|
struct snd_soc_dapm_context *dapm =
|
|
snd_soc_component_get_dapm(component);
|
|
char w_name[MAX_NAME_LEN];
|
|
|
|
if (!swr_dmic)
|
|
return -EINVAL;
|
|
|
|
swr_dmic->component = component;
|
|
if (!component->name_prefix) {
|
|
dev_err(component->dev, "%s: component prefix is NULL\n", __func__);
|
|
return -EPROBE_DEFER;
|
|
}
|
|
|
|
memset(w_name, 0, sizeof(w_name));
|
|
strlcpy(w_name, component->name_prefix, sizeof(w_name));
|
|
strlcat(w_name, " ", sizeof(w_name));
|
|
strlcat(w_name, swr_dmic->dai_driver->capture.stream_name,
|
|
sizeof(w_name));
|
|
snd_soc_dapm_ignore_suspend(dapm, w_name);
|
|
|
|
memset(w_name, 0, sizeof(w_name));
|
|
strlcpy(w_name, component->name_prefix, sizeof(w_name));
|
|
strlcat(w_name, " SWR_DMIC", sizeof(w_name));
|
|
snd_soc_dapm_ignore_suspend(dapm, w_name);
|
|
|
|
memset(w_name, 0, sizeof(w_name));
|
|
strlcpy(w_name, component->name_prefix, sizeof(w_name));
|
|
strlcat(w_name, " SMIC_PORT_EN", sizeof(w_name));
|
|
snd_soc_dapm_ignore_suspend(dapm, w_name);
|
|
|
|
memset(w_name, 0, sizeof(w_name));
|
|
strlcpy(w_name, component->name_prefix, sizeof(w_name));
|
|
strlcat(w_name, " SWR_DMIC_OUTPUT", sizeof(w_name));
|
|
snd_soc_dapm_ignore_suspend(dapm, w_name);
|
|
|
|
memset(w_name, 0, sizeof(w_name));
|
|
strlcpy(w_name, component->name_prefix, sizeof(w_name));
|
|
strlcat(w_name, " VA_SWR_DMIC", sizeof(w_name));
|
|
snd_soc_dapm_ignore_suspend(dapm, w_name);
|
|
|
|
memset(w_name, 0, sizeof(w_name));
|
|
strlcpy(w_name, component->name_prefix, sizeof(w_name));
|
|
strlcat(w_name, " SMIC_VA_PORT_EN", sizeof(w_name));
|
|
snd_soc_dapm_ignore_suspend(dapm, w_name);
|
|
|
|
memset(w_name, 0, sizeof(w_name));
|
|
strlcpy(w_name, component->name_prefix, sizeof(w_name));
|
|
strlcat(w_name, " SWR_DMIC_VA_OUTPUT", sizeof(w_name));
|
|
snd_soc_dapm_ignore_suspend(dapm, w_name);
|
|
|
|
snd_soc_dapm_sync(dapm);
|
|
|
|
swr_dmic->nblock.notifier_call = swr_dmic_event_notify;
|
|
#ifdef CONFIG_SND_SOC_WCD939X
|
|
wcd939x_swr_dmic_register_notifier(swr_dmic->supply_component,
|
|
&swr_dmic->nblock, true);
|
|
#else
|
|
wcd938x_swr_dmic_register_notifier(swr_dmic->supply_component,
|
|
&swr_dmic->nblock, true);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void swr_dmic_codec_remove(struct snd_soc_component *component)
|
|
{
|
|
struct swr_dmic_priv *swr_dmic =
|
|
snd_soc_component_get_drvdata(component);
|
|
|
|
swr_dmic->component = NULL;
|
|
return;
|
|
}
|
|
|
|
static const struct snd_soc_component_driver soc_codec_dev_swr_dmic = {
|
|
.name = NULL,
|
|
.probe = swr_dmic_codec_probe,
|
|
.remove = swr_dmic_codec_remove,
|
|
.controls = swr_dmic_snd_controls,
|
|
.num_controls = ARRAY_SIZE(swr_dmic_snd_controls),
|
|
.dapm_widgets = swr_dmic_dapm_widgets,
|
|
.num_dapm_widgets = ARRAY_SIZE(swr_dmic_dapm_widgets),
|
|
.dapm_routes = swr_dmic_audio_map,
|
|
.num_dapm_routes = ARRAY_SIZE(swr_dmic_audio_map),
|
|
};
|
|
|
|
static int enable_wcd_codec_supply(struct swr_dmic_priv *swr_dmic, bool enable)
|
|
{
|
|
int rc = 0;
|
|
int micb_num = swr_dmic->micb_num;
|
|
struct snd_soc_component *component = swr_dmic->supply_component;
|
|
|
|
if (!component) {
|
|
pr_err_ratelimited("%s: component is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
dev_dbg(component->dev, "%s: supply %d micbias: %d enable: %d\n",
|
|
__func__, swr_dmic->is_en_supply, micb_num, enable);
|
|
|
|
if (enable)
|
|
#ifdef CONFIG_SND_SOC_WCD939X
|
|
rc = wcd939x_codec_force_enable_micbias_v2(component,
|
|
SND_SOC_DAPM_PRE_PMU, micb_num);
|
|
#else
|
|
rc = wcd938x_codec_force_enable_micbias_v2(component,
|
|
SND_SOC_DAPM_PRE_PMU, micb_num);
|
|
#endif
|
|
else
|
|
#ifdef CONFIG_SND_SOC_WCD939X
|
|
rc = wcd939x_codec_force_enable_micbias_v2(component,
|
|
SND_SOC_DAPM_POST_PMD, micb_num);
|
|
#else
|
|
rc = wcd938x_codec_force_enable_micbias_v2(component,
|
|
SND_SOC_DAPM_POST_PMD, micb_num);
|
|
#endif
|
|
return rc;
|
|
}
|
|
|
|
static int swr_dmic_parse_supply(struct device_node *np,
|
|
struct swr_dmic_priv *swr_dmic)
|
|
{
|
|
struct platform_device *pdev = NULL;
|
|
|
|
if (!np || !swr_dmic)
|
|
return -EINVAL;
|
|
|
|
pdev = of_find_device_by_node(np);
|
|
if (!pdev)
|
|
return -EINVAL;
|
|
|
|
swr_dmic->supply_component = snd_soc_lookup_component(&pdev->dev, NULL);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct snd_soc_dai_driver swr_dmic_dai[] = {
|
|
{
|
|
.name = "",
|
|
.id = 0,
|
|
.capture = {
|
|
.stream_name = "",
|
|
.rates = (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |
|
|
SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 |
|
|
SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000),
|
|
.formats = (SNDRV_PCM_FMTBIT_S16_LE |
|
|
SNDRV_PCM_FMTBIT_S24_LE |
|
|
SNDRV_PCM_FMTBIT_S32_LE),
|
|
.rate_max = 192000,
|
|
.rate_min = 8000,
|
|
.channels_min = 1,
|
|
.channels_max = 2,
|
|
},
|
|
},
|
|
};
|
|
|
|
static int swr_dmic_event_notify(struct notifier_block *block,
|
|
unsigned long val,
|
|
void *data)
|
|
{
|
|
u16 event = (val & 0xffff);
|
|
int ret = 0;
|
|
struct swr_dmic_priv *swr_dmic = container_of(block,
|
|
struct swr_dmic_priv,
|
|
nblock);
|
|
switch (event) {
|
|
#ifdef CONFIG_SND_SOC_WCD939X
|
|
case WCD939X_EVT_SSR_DOWN:
|
|
#else
|
|
case WCD938X_EVT_SSR_DOWN:
|
|
#endif
|
|
ret = swr_dmic_down(swr_dmic->swr_slave);
|
|
break;
|
|
#ifdef CONFIG_SND_SOC_WCD939X
|
|
case WCD939X_EVT_SSR_UP:
|
|
#else
|
|
case WCD938X_EVT_SSR_UP:
|
|
#endif
|
|
ret = swr_dmic_up(swr_dmic->swr_slave);
|
|
if (!ret)
|
|
ret = swr_dmic_reset(swr_dmic->swr_slave);
|
|
break;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int swr_dmic_probe(struct swr_device *pdev)
|
|
{
|
|
int ret = 0;
|
|
int i = 0;
|
|
u8 swr_devnum = 0;
|
|
int dev_index = -1;
|
|
struct swr_dmic_priv *swr_dmic = NULL;
|
|
const char *swr_dmic_codec_name_of = NULL;
|
|
struct snd_soc_component *component = NULL;
|
|
int num_retry = NUM_ATTEMPTS;
|
|
|
|
swr_dmic = devm_kzalloc(&pdev->dev, sizeof(struct swr_dmic_priv),
|
|
GFP_KERNEL);
|
|
if (!swr_dmic)
|
|
return -ENOMEM;
|
|
|
|
ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr-dmic-supply",
|
|
&swr_dmic->micb_num);
|
|
if (ret) {
|
|
dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
|
|
__func__, "qcom,swr-dmic-supply",
|
|
pdev->dev.of_node->full_name);
|
|
goto err;
|
|
}
|
|
swr_dmic->wcd_handle = of_parse_phandle(pdev->dev.of_node,
|
|
"qcom,wcd-handle", 0);
|
|
if (!swr_dmic->wcd_handle) {
|
|
dev_dbg(&pdev->dev, "%s: no wcd handle listed\n",
|
|
__func__);
|
|
swr_dmic->is_wcd_supply = false;
|
|
} else {
|
|
swr_dmic_parse_supply(swr_dmic->wcd_handle, swr_dmic);
|
|
swr_dmic->is_wcd_supply = true;
|
|
}
|
|
|
|
if (swr_dmic->is_wcd_supply) {
|
|
ret = enable_wcd_codec_supply(swr_dmic, true);
|
|
if (ret) {
|
|
ret = -EPROBE_DEFER;
|
|
swr_dmic->is_wcd_supply = false;
|
|
swr_dmic->wcd_handle = NULL;
|
|
goto err;
|
|
}
|
|
++swr_dmic->is_en_supply;
|
|
}
|
|
|
|
swr_set_dev_data(pdev, swr_dmic);
|
|
|
|
swr_dmic->swr_slave = pdev;
|
|
|
|
ret = of_property_read_string(pdev->dev.of_node, "qcom,codec-name",
|
|
&swr_dmic_codec_name_of);
|
|
if (ret) {
|
|
dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
|
|
__func__, "qcom,codec-name",
|
|
pdev->dev.of_node->full_name);
|
|
goto dev_err;
|
|
}
|
|
|
|
ret = swr_dmic_parse_port_params(&pdev->dev, "qcom,swr-tx-port-params");
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "%s: Parsing %s failed in node %s\n",
|
|
__func__, "qcom,swr-tx-port-params",
|
|
pdev->dev.of_node->full_name);
|
|
goto dev_err;
|
|
}
|
|
|
|
/*
|
|
* Add 5msec delay to provide sufficient time for
|
|
* soundwire auto enumeration of slave devices as
|
|
* as per HW requirement.
|
|
*/
|
|
usleep_range(5000, 5010);
|
|
do {
|
|
/* Add delay for soundwire enumeration */
|
|
usleep_range(100, 110);
|
|
ret = swr_get_logical_dev_num(pdev, pdev->addr, &swr_devnum);
|
|
} while (ret && --num_retry);
|
|
|
|
if (ret) {
|
|
dev_info(&pdev->dev,
|
|
"%s get devnum %d for dev addr %llx failed\n",
|
|
__func__, swr_devnum, pdev->addr);
|
|
ret = -EPROBE_DEFER;
|
|
|
|
if (swr_dmic->is_en_supply == 1) {
|
|
enable_wcd_codec_supply(swr_dmic, false);
|
|
--swr_dmic->is_en_supply;
|
|
}
|
|
swr_dmic->is_wcd_supply = false;
|
|
swr_dmic->wcd_handle = NULL;
|
|
goto err;
|
|
}
|
|
pdev->dev_num = swr_devnum;
|
|
swr_init_port_params(pdev, SWR_DMIC_MAX_PORTS,
|
|
swr_dmic->swr_tx_port_params);
|
|
|
|
swr_dmic->driver = devm_kzalloc(&pdev->dev,
|
|
sizeof(struct snd_soc_component_driver), GFP_KERNEL);
|
|
if (!swr_dmic->driver) {
|
|
ret = -ENOMEM;
|
|
goto dev_err;
|
|
}
|
|
|
|
memcpy(swr_dmic->driver, &soc_codec_dev_swr_dmic,
|
|
sizeof(struct snd_soc_component_driver));
|
|
|
|
for (i = 0; i < ARRAY_SIZE(codec_name_list); i++) {
|
|
if (!strcmp(swr_dmic_codec_name_of, codec_name_list[i])) {
|
|
dev_index = i;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (dev_index < 0) {
|
|
ret = -EINVAL;
|
|
goto dev_err;
|
|
}
|
|
|
|
swr_dmic->driver->name = codec_name_list[dev_index];
|
|
|
|
swr_dmic->dai_driver = devm_kzalloc(&pdev->dev,
|
|
sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
|
|
if (!swr_dmic->dai_driver) {
|
|
ret = -ENOMEM;
|
|
goto dev_err;
|
|
}
|
|
|
|
memcpy(swr_dmic->dai_driver, swr_dmic_dai,
|
|
sizeof(struct snd_soc_dai_driver));
|
|
swr_dmic->dai_driver->id = dev_index;
|
|
swr_dmic->dai_driver->name = dai_name_list[dev_index];
|
|
swr_dmic->dai_driver->capture.stream_name = aif_name_list[dev_index];
|
|
|
|
/* Number of DAI's used is 1 */
|
|
ret = snd_soc_register_component(&pdev->dev, swr_dmic->driver,
|
|
swr_dmic->dai_driver, 1);
|
|
if (ret) {
|
|
dev_err(&pdev->dev, "%s: Codec registration failed\n",
|
|
__func__);
|
|
goto dev_err;
|
|
}
|
|
|
|
component = snd_soc_lookup_component(&pdev->dev,
|
|
swr_dmic->driver->name);
|
|
if (!component) {
|
|
dev_err(&pdev->dev, "%s: could not find swr_dmic component\n",
|
|
__func__);
|
|
goto dev_err;
|
|
}
|
|
swr_dmic->component = component;
|
|
|
|
return 0;
|
|
|
|
dev_err:
|
|
if (swr_dmic->is_en_supply == 1) {
|
|
enable_wcd_codec_supply(swr_dmic, false);
|
|
--swr_dmic->is_en_supply;
|
|
}
|
|
swr_dmic->is_wcd_supply = false;
|
|
swr_dmic->wcd_handle = NULL;
|
|
swr_remove_device(pdev);
|
|
err:
|
|
return ret;
|
|
}
|
|
|
|
static int swr_dmic_remove(struct swr_device *pdev)
|
|
{
|
|
struct swr_dmic_priv *swr_dmic;
|
|
|
|
swr_dmic = swr_get_dev_data(pdev);
|
|
if (!swr_dmic) {
|
|
dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
if (swr_dmic->is_en_supply == 1) {
|
|
enable_wcd_codec_supply(swr_dmic, false);
|
|
--swr_dmic->is_en_supply;
|
|
}
|
|
snd_soc_unregister_component(&pdev->dev);
|
|
swr_set_dev_data(pdev, NULL);
|
|
return 0;
|
|
}
|
|
|
|
static int swr_dmic_up(struct swr_device *pdev)
|
|
{
|
|
int ret = 0;
|
|
struct swr_dmic_priv *swr_dmic;
|
|
|
|
swr_dmic = swr_get_dev_data(pdev);
|
|
if (!swr_dmic) {
|
|
dev_err_ratelimited(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
++swr_dmic->is_en_supply;
|
|
if (swr_dmic->is_en_supply == 1)
|
|
ret = enable_wcd_codec_supply(swr_dmic, true);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int swr_dmic_down(struct swr_device *pdev)
|
|
{
|
|
struct swr_dmic_priv *swr_dmic;
|
|
int ret = 0;
|
|
|
|
swr_dmic = swr_get_dev_data(pdev);
|
|
if (!swr_dmic) {
|
|
dev_err_ratelimited(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
dev_dbg(&pdev->dev, "%s: is_en_supply: %d\n",
|
|
__func__, swr_dmic->is_en_supply);
|
|
--swr_dmic->is_en_supply;
|
|
if (swr_dmic->is_en_supply < 0) {
|
|
dev_warn(&pdev->dev, "%s: mismatch in supply count %d\n",
|
|
__func__, swr_dmic->is_en_supply);
|
|
swr_dmic->is_en_supply = 0;
|
|
goto done;
|
|
}
|
|
if (!swr_dmic->is_en_supply)
|
|
enable_wcd_codec_supply(swr_dmic, false);
|
|
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static int swr_dmic_reset(struct swr_device *pdev)
|
|
{
|
|
struct swr_dmic_priv *swr_dmic;
|
|
u8 retry = NUM_ATTEMPTS;
|
|
u8 devnum = 0;
|
|
|
|
swr_dmic = swr_get_dev_data(pdev);
|
|
if (!swr_dmic) {
|
|
dev_err_ratelimited(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
|
|
while (swr_get_logical_dev_num(pdev, pdev->addr, &devnum) && retry--) {
|
|
/* Retry after 1 msec delay */
|
|
usleep_range(1000, 1100);
|
|
}
|
|
pdev->dev_num = devnum;
|
|
dev_dbg(&pdev->dev, "%s: devnum: %d\n", __func__, devnum);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
static int swr_dmic_suspend(struct device *dev)
|
|
{
|
|
dev_dbg(dev, "%s: system suspend\n", __func__);
|
|
return 0;
|
|
}
|
|
|
|
static int swr_dmic_resume(struct device *dev)
|
|
{
|
|
struct swr_dmic_priv *swr_dmic = swr_get_dev_data(to_swr_device(dev));
|
|
|
|
if (!swr_dmic) {
|
|
dev_err_ratelimited(dev, "%s: swr_dmic private data is NULL\n", __func__);
|
|
return -EINVAL;
|
|
}
|
|
dev_dbg(dev, "%s: system resume\n", __func__);
|
|
return 0;
|
|
}
|
|
#endif /* CONFIG_PM_SLEEP */
|
|
|
|
static const struct dev_pm_ops swr_dmic_pm_ops = {
|
|
SET_SYSTEM_SLEEP_PM_OPS(swr_dmic_suspend, swr_dmic_resume)
|
|
};
|
|
|
|
static const struct swr_device_id swr_dmic_id[] = {
|
|
{"swr-dmic", 0},
|
|
{}
|
|
};
|
|
|
|
static const struct of_device_id swr_dmic_dt_match[] = {
|
|
{
|
|
.compatible = "qcom,swr-dmic",
|
|
},
|
|
{}
|
|
};
|
|
|
|
static struct swr_driver swr_dmic_driver = {
|
|
.driver = {
|
|
.name = "swr-dmic",
|
|
.owner = THIS_MODULE,
|
|
.pm = &swr_dmic_pm_ops,
|
|
.of_match_table = swr_dmic_dt_match,
|
|
},
|
|
.probe = swr_dmic_probe,
|
|
.remove = swr_dmic_remove,
|
|
.id_table = swr_dmic_id,
|
|
};
|
|
|
|
static int __init swr_dmic_init(void)
|
|
{
|
|
return swr_driver_register(&swr_dmic_driver);
|
|
}
|
|
|
|
static void __exit swr_dmic_exit(void)
|
|
{
|
|
swr_driver_unregister(&swr_dmic_driver);
|
|
}
|
|
|
|
module_init(swr_dmic_init);
|
|
module_exit(swr_dmic_exit);
|
|
|
|
MODULE_DESCRIPTION("SWR DMIC driver");
|
|
MODULE_LICENSE("GPL v2");
|