You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
829 lines
23 KiB
829 lines
23 KiB
/* Copyright (c) 2013-2020, 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.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/err.h>
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/dma-mapping.h>
|
|
#include <sound/core.h>
|
|
#include <sound/soc.h>
|
|
#include <sound/pcm.h>
|
|
#include <sound/initval.h>
|
|
#include <sound/control.h>
|
|
#include <sound/tlv.h>
|
|
#include <asm/dma.h>
|
|
#include <dsp/apr_audio-v2.h>
|
|
#include <dsp/q6audio-v2.h>
|
|
#include <dsp/q6asm-v2.h>
|
|
|
|
#include "msm-pcm-routing-v2.h"
|
|
|
|
#define LOOPBACK_VOL_MAX_STEPS 0x2000
|
|
#define LOOPBACK_SESSION_MAX 4
|
|
|
|
static DEFINE_MUTEX(loopback_session_lock);
|
|
static const DECLARE_TLV_DB_LINEAR(loopback_rx_vol_gain, 0,
|
|
LOOPBACK_VOL_MAX_STEPS);
|
|
|
|
struct msm_pcm_loopback {
|
|
struct snd_pcm_substream *playback_substream;
|
|
struct snd_pcm_substream *capture_substream;
|
|
|
|
int instance;
|
|
|
|
struct mutex lock;
|
|
|
|
uint32_t samp_rate;
|
|
uint32_t channel_mode;
|
|
|
|
int playback_start;
|
|
int capture_start;
|
|
int session_id;
|
|
struct audio_client *audio_client;
|
|
uint32_t volume;
|
|
};
|
|
|
|
struct fe_dai_session_map {
|
|
char stream_name[32];
|
|
struct msm_pcm_loopback *loopback_priv;
|
|
};
|
|
|
|
static struct fe_dai_session_map session_map[LOOPBACK_SESSION_MAX] = {
|
|
{ {}, NULL},
|
|
{ {}, NULL},
|
|
{ {}, NULL},
|
|
{ {}, NULL},
|
|
};
|
|
|
|
static u32 hfp_tx_mute;
|
|
|
|
struct msm_pcm_pdata {
|
|
int perf_mode;
|
|
};
|
|
|
|
static void stop_pcm(struct msm_pcm_loopback *pcm);
|
|
static int msm_pcm_loopback_get_session(struct snd_soc_pcm_runtime *rtd,
|
|
struct msm_pcm_loopback **pcm);
|
|
|
|
static void msm_pcm_route_event_handler(enum msm_pcm_routing_event event,
|
|
void *priv_data)
|
|
{
|
|
struct msm_pcm_loopback *pcm = priv_data;
|
|
|
|
WARN_ON(!pcm);
|
|
|
|
pr_debug("%s: event 0x%x\n", __func__, event);
|
|
|
|
switch (event) {
|
|
case MSM_PCM_RT_EVT_DEVSWITCH:
|
|
q6asm_cmd(pcm->audio_client, CMD_PAUSE);
|
|
q6asm_cmd(pcm->audio_client, CMD_FLUSH);
|
|
q6asm_run(pcm->audio_client, 0, 0, 0);
|
|
/* fallthrough */
|
|
default:
|
|
pr_err("%s: default event 0x%x\n", __func__, event);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void msm_pcm_loopback_event_handler(uint32_t opcode, uint32_t token,
|
|
uint32_t *payload, void *priv)
|
|
{
|
|
pr_debug("%s:\n", __func__);
|
|
switch (opcode) {
|
|
case APR_BASIC_RSP_RESULT: {
|
|
switch (payload[0]) {
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
pr_err("%s: Not Supported Event opcode[0x%x]\n",
|
|
__func__, opcode);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static int msm_loopback_session_mute_get(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
ucontrol->value.integer.value[0] = hfp_tx_mute;
|
|
return 0;
|
|
}
|
|
|
|
static int msm_loopback_session_mute_put(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
int ret = 0, n = 0;
|
|
int mute = ucontrol->value.integer.value[0];
|
|
struct msm_pcm_loopback *pcm = NULL;
|
|
|
|
if ((mute < 0) || (mute > 1)) {
|
|
pr_err(" %s Invalid arguments", __func__);
|
|
ret = -EINVAL;
|
|
goto done;
|
|
}
|
|
mutex_lock(&loopback_session_lock);
|
|
pr_debug("%s: mute=%d\n", __func__, mute);
|
|
hfp_tx_mute = mute;
|
|
for (n = 0; n < LOOPBACK_SESSION_MAX; n++) {
|
|
if (!strcmp(session_map[n].stream_name, "MultiMedia6"))
|
|
pcm = session_map[n].loopback_priv;
|
|
}
|
|
if (pcm && pcm->audio_client) {
|
|
ret = q6asm_set_mute(pcm->audio_client, mute);
|
|
if (ret < 0)
|
|
pr_err("%s: Send mute command failed rc=%d\n",
|
|
__func__, ret);
|
|
}
|
|
mutex_unlock(&loopback_session_lock);
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static struct snd_kcontrol_new msm_loopback_controls[] = {
|
|
SOC_SINGLE_EXT("HFP TX Mute", SND_SOC_NOPM, 0, 1, 0,
|
|
msm_loopback_session_mute_get,
|
|
msm_loopback_session_mute_put),
|
|
};
|
|
|
|
static int msm_pcm_loopback_probe(struct snd_soc_platform *platform)
|
|
{
|
|
snd_soc_add_platform_controls(platform, msm_loopback_controls,
|
|
ARRAY_SIZE(msm_loopback_controls));
|
|
|
|
return 0;
|
|
}
|
|
static int pcm_loopback_set_volume(struct msm_pcm_loopback *prtd,
|
|
uint32_t volume)
|
|
{
|
|
int rc = -EINVAL;
|
|
|
|
pr_debug("%s: Setting volume 0x%x\n", __func__, volume);
|
|
|
|
if (prtd && prtd->audio_client) {
|
|
rc = q6asm_set_volume(prtd->audio_client, volume);
|
|
if (rc < 0) {
|
|
pr_err("%s: Send Volume command failed rc = %d\n",
|
|
__func__, rc);
|
|
return rc;
|
|
}
|
|
prtd->volume = volume;
|
|
}
|
|
return rc;
|
|
}
|
|
|
|
static int msm_pcm_loopback_get_session(struct snd_soc_pcm_runtime *rtd,
|
|
struct msm_pcm_loopback **pcm)
|
|
{
|
|
int ret = 0;
|
|
int n, index = -1;
|
|
|
|
dev_dbg(rtd->platform->dev, "%s: stream %s\n", __func__,
|
|
rtd->dai_link->stream_name);
|
|
|
|
mutex_lock(&loopback_session_lock);
|
|
for (n = 0; n < LOOPBACK_SESSION_MAX; n++) {
|
|
if (!strcmp(rtd->dai_link->stream_name,
|
|
session_map[n].stream_name)) {
|
|
*pcm = session_map[n].loopback_priv;
|
|
goto exit;
|
|
}
|
|
/*
|
|
* Store the min index value for allocating a new session.
|
|
* Here, if session stream name is not found in the
|
|
* existing entries after the loop iteration, then this
|
|
* index will be used to allocate the new session.
|
|
* This index variable is expected to point to the topmost
|
|
* available free session.
|
|
*/
|
|
if (!(session_map[n].stream_name[0]) && (index < 0))
|
|
index = n;
|
|
}
|
|
|
|
if (index < 0) {
|
|
dev_err(rtd->platform->dev, "%s: Max Sessions allocated\n",
|
|
__func__);
|
|
ret = -EAGAIN;
|
|
goto exit;
|
|
}
|
|
|
|
session_map[index].loopback_priv = kzalloc(
|
|
sizeof(struct msm_pcm_loopback), GFP_KERNEL);
|
|
if (!session_map[index].loopback_priv) {
|
|
ret = -ENOMEM;
|
|
goto exit;
|
|
}
|
|
|
|
strlcpy(session_map[index].stream_name,
|
|
rtd->dai_link->stream_name,
|
|
sizeof(session_map[index].stream_name));
|
|
dev_dbg(rtd->platform->dev, "%s: stream %s index %d\n",
|
|
__func__, session_map[index].stream_name, index);
|
|
|
|
mutex_init(&session_map[index].loopback_priv->lock);
|
|
*pcm = session_map[index].loopback_priv;
|
|
exit:
|
|
mutex_unlock(&loopback_session_lock);
|
|
return ret;
|
|
}
|
|
|
|
static int msm_pcm_open(struct snd_pcm_substream *substream)
|
|
{
|
|
struct snd_pcm_runtime *runtime = substream->runtime;
|
|
struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
|
|
struct msm_pcm_loopback *pcm = NULL;
|
|
int ret = 0;
|
|
uint16_t bits_per_sample = 16;
|
|
struct msm_pcm_routing_evt event;
|
|
struct asm_session_mtmx_strtr_param_window_v2_t asm_mtmx_strtr_window;
|
|
uint32_t param_id;
|
|
struct msm_pcm_pdata *pdata;
|
|
|
|
ret = msm_pcm_loopback_get_session(rtd, &pcm);
|
|
if (ret)
|
|
return ret;
|
|
|
|
mutex_lock(&pcm->lock);
|
|
|
|
pcm->volume = 0x2000;
|
|
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
|
pcm->playback_substream = substream;
|
|
else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
|
|
pcm->capture_substream = substream;
|
|
|
|
pcm->instance++;
|
|
dev_dbg(rtd->platform->dev, "%s: pcm out open: %d,%d\n", __func__,
|
|
pcm->instance, substream->stream);
|
|
if (pcm->instance == 2) {
|
|
struct snd_soc_pcm_runtime *soc_pcm_rx =
|
|
pcm->playback_substream->private_data;
|
|
struct snd_soc_pcm_runtime *soc_pcm_tx =
|
|
pcm->capture_substream->private_data;
|
|
if (pcm->audio_client != NULL)
|
|
stop_pcm(pcm);
|
|
|
|
pdata = (struct msm_pcm_pdata *)
|
|
dev_get_drvdata(rtd->platform->dev);
|
|
if (!pdata) {
|
|
dev_err(rtd->platform->dev,
|
|
"%s: platform data not populated\n", __func__);
|
|
mutex_unlock(&pcm->lock);
|
|
return -EINVAL;
|
|
}
|
|
|
|
pcm->audio_client = q6asm_audio_client_alloc(
|
|
(app_cb)msm_pcm_loopback_event_handler, pcm);
|
|
if (!pcm->audio_client) {
|
|
dev_err(rtd->platform->dev,
|
|
"%s: Could not allocate memory\n", __func__);
|
|
mutex_unlock(&pcm->lock);
|
|
return -ENOMEM;
|
|
}
|
|
pcm->session_id = pcm->audio_client->session;
|
|
pcm->audio_client->perf_mode = pdata->perf_mode;
|
|
ret = q6asm_open_loopback_v2(pcm->audio_client,
|
|
bits_per_sample);
|
|
if (ret < 0) {
|
|
dev_err(rtd->platform->dev,
|
|
"%s: pcm out open failed\n", __func__);
|
|
q6asm_audio_client_free(pcm->audio_client);
|
|
mutex_unlock(&pcm->lock);
|
|
return -ENOMEM;
|
|
}
|
|
event.event_func = msm_pcm_route_event_handler;
|
|
event.priv_data = (void *) pcm;
|
|
msm_pcm_routing_reg_phy_stream(soc_pcm_tx->dai_link->id,
|
|
pcm->audio_client->perf_mode,
|
|
pcm->session_id, pcm->capture_substream->stream);
|
|
msm_pcm_routing_reg_phy_stream_v2(soc_pcm_rx->dai_link->id,
|
|
pcm->audio_client->perf_mode,
|
|
pcm->session_id, pcm->playback_substream->stream,
|
|
event);
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
pcm->playback_substream = substream;
|
|
ret = pcm_loopback_set_volume(pcm, pcm->volume);
|
|
if (ret < 0)
|
|
dev_err(rtd->platform->dev,
|
|
"Error %d setting volume", ret);
|
|
}
|
|
/* Set to largest negative value */
|
|
asm_mtmx_strtr_window.window_lsw = 0x00000000;
|
|
asm_mtmx_strtr_window.window_msw = 0x80000000;
|
|
param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_WINDOW_START_V2;
|
|
q6asm_send_mtmx_strtr_window(pcm->audio_client,
|
|
&asm_mtmx_strtr_window,
|
|
param_id);
|
|
/* Set to largest positive value */
|
|
asm_mtmx_strtr_window.window_lsw = 0xffffffff;
|
|
asm_mtmx_strtr_window.window_msw = 0x7fffffff;
|
|
param_id = ASM_SESSION_MTMX_STRTR_PARAM_RENDER_WINDOW_END_V2;
|
|
q6asm_send_mtmx_strtr_window(pcm->audio_client,
|
|
&asm_mtmx_strtr_window,
|
|
param_id);
|
|
}
|
|
dev_info(rtd->platform->dev, "%s: Instance = %d, Stream ID = %s\n",
|
|
__func__, pcm->instance, substream->pcm->id);
|
|
runtime->private_data = pcm;
|
|
|
|
mutex_unlock(&pcm->lock);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void stop_pcm(struct msm_pcm_loopback *pcm)
|
|
{
|
|
struct snd_soc_pcm_runtime *soc_pcm_rx;
|
|
struct snd_soc_pcm_runtime *soc_pcm_tx;
|
|
|
|
if (pcm->audio_client == NULL)
|
|
return;
|
|
|
|
mutex_lock(&loopback_session_lock);
|
|
q6asm_cmd(pcm->audio_client, CMD_CLOSE);
|
|
|
|
if (pcm->playback_substream != NULL) {
|
|
soc_pcm_rx = pcm->playback_substream->private_data;
|
|
msm_pcm_routing_dereg_phy_stream(soc_pcm_rx->dai_link->id,
|
|
SNDRV_PCM_STREAM_PLAYBACK);
|
|
}
|
|
if (pcm->capture_substream != NULL) {
|
|
soc_pcm_tx = pcm->capture_substream->private_data;
|
|
msm_pcm_routing_dereg_phy_stream(soc_pcm_tx->dai_link->id,
|
|
SNDRV_PCM_STREAM_CAPTURE);
|
|
}
|
|
q6asm_audio_client_free(pcm->audio_client);
|
|
pcm->audio_client = NULL;
|
|
mutex_unlock(&loopback_session_lock);
|
|
}
|
|
|
|
static int msm_pcm_close(struct snd_pcm_substream *substream)
|
|
{
|
|
struct snd_pcm_runtime *runtime = substream->runtime;
|
|
struct msm_pcm_loopback *pcm = runtime->private_data;
|
|
struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
|
|
int ret = 0, n;
|
|
bool found = false;
|
|
|
|
mutex_lock(&pcm->lock);
|
|
|
|
dev_dbg(rtd->platform->dev, "%s: end pcm call:%d\n",
|
|
__func__, substream->stream);
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
|
|
pcm->playback_start = 0;
|
|
else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
|
|
pcm->capture_start = 0;
|
|
|
|
pcm->instance--;
|
|
if (!pcm->playback_start || !pcm->capture_start) {
|
|
dev_dbg(rtd->platform->dev, "%s: end pcm call\n", __func__);
|
|
stop_pcm(pcm);
|
|
}
|
|
|
|
if (!pcm->instance) {
|
|
mutex_lock(&loopback_session_lock);
|
|
for (n = 0; n < LOOPBACK_SESSION_MAX; n++) {
|
|
if (!strcmp(rtd->dai_link->stream_name,
|
|
session_map[n].stream_name)) {
|
|
found = true;
|
|
break;
|
|
}
|
|
}
|
|
if (found) {
|
|
memset(session_map[n].stream_name, 0,
|
|
sizeof(session_map[n].stream_name));
|
|
mutex_unlock(&pcm->lock);
|
|
mutex_destroy(&session_map[n].loopback_priv->lock);
|
|
session_map[n].loopback_priv = NULL;
|
|
kfree(pcm);
|
|
dev_dbg(rtd->platform->dev, "%s: stream freed %s\n",
|
|
__func__, rtd->dai_link->stream_name);
|
|
mutex_unlock(&loopback_session_lock);
|
|
return 0;
|
|
}
|
|
mutex_unlock(&loopback_session_lock);
|
|
}
|
|
mutex_unlock(&pcm->lock);
|
|
return ret;
|
|
}
|
|
|
|
static int msm_pcm_prepare(struct snd_pcm_substream *substream)
|
|
{
|
|
int ret = 0;
|
|
struct snd_pcm_runtime *runtime = substream->runtime;
|
|
struct msm_pcm_loopback *pcm = runtime->private_data;
|
|
struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
|
|
|
|
mutex_lock(&pcm->lock);
|
|
|
|
dev_dbg(rtd->platform->dev, "%s: ASM loopback stream:%d\n",
|
|
__func__, substream->stream);
|
|
if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
|
|
if (!pcm->playback_start)
|
|
pcm->playback_start = 1;
|
|
} else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
|
|
if (!pcm->capture_start)
|
|
pcm->capture_start = 1;
|
|
}
|
|
mutex_unlock(&pcm->lock);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
|
|
{
|
|
struct snd_pcm_runtime *runtime = substream->runtime;
|
|
struct msm_pcm_loopback *pcm = runtime->private_data;
|
|
struct snd_soc_pcm_runtime *rtd = snd_pcm_substream_chip(substream);
|
|
|
|
switch (cmd) {
|
|
case SNDRV_PCM_TRIGGER_START:
|
|
case SNDRV_PCM_TRIGGER_RESUME:
|
|
case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
|
|
dev_dbg(rtd->platform->dev,
|
|
"%s: playback_start:%d,capture_start:%d\n", __func__,
|
|
pcm->playback_start, pcm->capture_start);
|
|
if (pcm->playback_start && pcm->capture_start)
|
|
q6asm_run_nowait(pcm->audio_client, 0, 0, 0);
|
|
break;
|
|
case SNDRV_PCM_TRIGGER_SUSPEND:
|
|
case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
|
|
case SNDRV_PCM_TRIGGER_STOP:
|
|
dev_dbg(rtd->platform->dev,
|
|
"%s:Pause/Stop - playback_start:%d,capture_start:%d\n",
|
|
__func__, pcm->playback_start, pcm->capture_start);
|
|
if (pcm->playback_start && pcm->capture_start)
|
|
q6asm_cmd_nowait(pcm->audio_client, CMD_PAUSE);
|
|
break;
|
|
default:
|
|
pr_err("%s: default cmd %d\n", __func__, cmd);
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct snd_pcm_ops msm_pcm_ops = {
|
|
.open = msm_pcm_open,
|
|
.close = msm_pcm_close,
|
|
.prepare = msm_pcm_prepare,
|
|
.trigger = msm_pcm_trigger,
|
|
};
|
|
|
|
static int msm_pcm_volume_ctl_put(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
int rc = 0;
|
|
struct snd_pcm_volume *vol = kcontrol->private_data;
|
|
struct snd_pcm_substream *substream = NULL;
|
|
struct msm_pcm_loopback *prtd;
|
|
int volume = ucontrol->value.integer.value[0];
|
|
|
|
if (!vol) {
|
|
pr_err("%s: vol is NULL\n", __func__);
|
|
return -ENODEV;
|
|
}
|
|
|
|
if (!vol->pcm) {
|
|
pr_err("%s: vol->pcm is NULL\n", __func__);
|
|
return -ENODEV;
|
|
}
|
|
|
|
substream = vol->pcm->streams[0].substream;
|
|
pr_debug("%s: volume : 0x%x\n", __func__, volume);
|
|
if ((!substream) || (!substream->runtime)) {
|
|
pr_err("%s substream or runtime not found\n", __func__);
|
|
rc = -ENODEV;
|
|
goto exit;
|
|
}
|
|
mutex_lock(&loopback_session_lock);
|
|
prtd = substream->runtime->private_data;
|
|
if (!prtd) {
|
|
rc = -ENODEV;
|
|
mutex_unlock(&loopback_session_lock);
|
|
goto exit;
|
|
}
|
|
rc = pcm_loopback_set_volume(prtd, volume);
|
|
mutex_unlock(&loopback_session_lock);
|
|
|
|
exit:
|
|
return rc;
|
|
}
|
|
|
|
static int msm_pcm_volume_ctl_get(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
int rc = 0;
|
|
struct snd_pcm_volume *vol = snd_kcontrol_chip(kcontrol);
|
|
struct snd_pcm_substream *substream = NULL;
|
|
struct msm_pcm_loopback *prtd;
|
|
|
|
pr_debug("%s\n", __func__);
|
|
if (!vol) {
|
|
pr_err("%s: vol is NULL\n", __func__);
|
|
return -ENODEV;
|
|
}
|
|
|
|
if (!vol->pcm) {
|
|
pr_err("%s: vol->pcm is NULL\n", __func__);
|
|
return -ENODEV;
|
|
}
|
|
|
|
substream = vol->pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream;
|
|
if ((!substream) || (!substream->runtime)) {
|
|
pr_debug("%s substream or runtime not found\n", __func__);
|
|
rc = -ENODEV;
|
|
goto exit;
|
|
}
|
|
mutex_lock(&loopback_session_lock);
|
|
prtd = substream->runtime->private_data;
|
|
if (!prtd) {
|
|
rc = -ENODEV;
|
|
mutex_unlock(&loopback_session_lock);
|
|
goto exit;
|
|
}
|
|
ucontrol->value.integer.value[0] = prtd->volume;
|
|
mutex_unlock(&loopback_session_lock);
|
|
exit:
|
|
return rc;
|
|
}
|
|
|
|
static int msm_pcm_add_volume_controls(struct snd_soc_pcm_runtime *rtd)
|
|
{
|
|
struct snd_pcm *pcm = rtd->pcm->streams[0].pcm;
|
|
struct snd_pcm_volume *volume_info;
|
|
struct snd_kcontrol *kctl;
|
|
int ret = 0;
|
|
|
|
dev_dbg(rtd->dev, "%s, Volume cntrl add\n", __func__);
|
|
ret = snd_pcm_add_volume_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
|
|
NULL, 1,
|
|
rtd->dai_link->id,
|
|
&volume_info);
|
|
if (ret < 0)
|
|
return ret;
|
|
kctl = volume_info->kctl;
|
|
kctl->put = msm_pcm_volume_ctl_put;
|
|
kctl->get = msm_pcm_volume_ctl_get;
|
|
kctl->tlv.p = loopback_rx_vol_gain;
|
|
return 0;
|
|
}
|
|
|
|
static int msm_pcm_playback_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
u64 fe_id = kcontrol->private_value;
|
|
int session_type = SESSION_TYPE_RX;
|
|
int be_id = ucontrol->value.integer.value[3];
|
|
struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
|
|
int ret = 0;
|
|
|
|
cfg_data.app_type = ucontrol->value.integer.value[0];
|
|
cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
|
|
if (ucontrol->value.integer.value[2] != 0)
|
|
cfg_data.sample_rate = ucontrol->value.integer.value[2];
|
|
pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
|
|
__func__, fe_id, session_type, be_id,
|
|
cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
|
|
ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
|
|
be_id, &cfg_data);
|
|
if (ret < 0)
|
|
pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
|
|
__func__, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int msm_pcm_playback_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
u64 fe_id = kcontrol->private_value;
|
|
int session_type = SESSION_TYPE_RX;
|
|
int be_id = 0;
|
|
struct msm_pcm_stream_app_type_cfg cfg_data = {0};
|
|
int ret = 0;
|
|
|
|
ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
|
|
&be_id, &cfg_data);
|
|
if (ret < 0) {
|
|
pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
|
|
__func__, ret);
|
|
goto done;
|
|
}
|
|
|
|
ucontrol->value.integer.value[0] = cfg_data.app_type;
|
|
ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
|
|
ucontrol->value.integer.value[2] = cfg_data.sample_rate;
|
|
ucontrol->value.integer.value[3] = be_id;
|
|
pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
|
|
__func__, fe_id, session_type, be_id,
|
|
cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static int msm_pcm_capture_app_type_cfg_ctl_put(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
u64 fe_id = kcontrol->private_value;
|
|
int session_type = SESSION_TYPE_TX;
|
|
int be_id = ucontrol->value.integer.value[3];
|
|
struct msm_pcm_stream_app_type_cfg cfg_data = {0, 0, 48000};
|
|
int ret = 0;
|
|
|
|
cfg_data.app_type = ucontrol->value.integer.value[0];
|
|
cfg_data.acdb_dev_id = ucontrol->value.integer.value[1];
|
|
if (ucontrol->value.integer.value[2] != 0)
|
|
cfg_data.sample_rate = ucontrol->value.integer.value[2];
|
|
pr_debug("%s: fe_id- %llu session_type- %d be_id- %d app_type- %d acdb_dev_id- %d sample_rate- %d\n",
|
|
__func__, fe_id, session_type, be_id,
|
|
cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
|
|
ret = msm_pcm_routing_reg_stream_app_type_cfg(fe_id, session_type,
|
|
be_id, &cfg_data);
|
|
if (ret < 0)
|
|
pr_err("%s: msm_pcm_routing_reg_stream_app_type_cfg failed returned %d\n",
|
|
__func__, ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int msm_pcm_capture_app_type_cfg_ctl_get(struct snd_kcontrol *kcontrol,
|
|
struct snd_ctl_elem_value *ucontrol)
|
|
{
|
|
u64 fe_id = kcontrol->private_value;
|
|
int session_type = SESSION_TYPE_TX;
|
|
int be_id = 0;
|
|
struct msm_pcm_stream_app_type_cfg cfg_data = {0};
|
|
int ret = 0;
|
|
|
|
ret = msm_pcm_routing_get_stream_app_type_cfg(fe_id, session_type,
|
|
&be_id, &cfg_data);
|
|
if (ret < 0) {
|
|
pr_err("%s: msm_pcm_routing_get_stream_app_type_cfg failed returned %d\n",
|
|
__func__, ret);
|
|
goto done;
|
|
}
|
|
|
|
ucontrol->value.integer.value[0] = cfg_data.app_type;
|
|
ucontrol->value.integer.value[1] = cfg_data.acdb_dev_id;
|
|
ucontrol->value.integer.value[2] = cfg_data.sample_rate;
|
|
ucontrol->value.integer.value[3] = be_id;
|
|
pr_debug("%s: fedai_id %llu, session_type %d, be_id %d, app_type %d, acdb_dev_id %d, sample_rate %d\n",
|
|
__func__, fe_id, session_type, be_id,
|
|
cfg_data.app_type, cfg_data.acdb_dev_id, cfg_data.sample_rate);
|
|
done:
|
|
return ret;
|
|
}
|
|
|
|
static int msm_pcm_add_app_type_controls(struct snd_soc_pcm_runtime *rtd)
|
|
{
|
|
struct snd_pcm *pcm = rtd->pcm->streams[0].pcm;
|
|
struct snd_pcm_usr *app_type_info;
|
|
struct snd_kcontrol *kctl;
|
|
const char *playback_mixer_ctl_name = "Audio Stream";
|
|
const char *capture_mixer_ctl_name = "Audio Stream Capture";
|
|
const char *deviceNo = "NN";
|
|
const char *suffix = "App Type Cfg";
|
|
int ctl_len, ret = 0;
|
|
|
|
if (pcm->streams[SNDRV_PCM_STREAM_PLAYBACK].substream) {
|
|
ctl_len = strlen(playback_mixer_ctl_name) + 1 +
|
|
strlen(deviceNo) + 1 + strlen(suffix) + 1;
|
|
pr_debug("%s: Playback app type cntrl add\n", __func__);
|
|
ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
|
|
NULL, 1, ctl_len, rtd->dai_link->id,
|
|
&app_type_info);
|
|
if (ret < 0)
|
|
return ret;
|
|
kctl = app_type_info->kctl;
|
|
snprintf(kctl->id.name, ctl_len, "%s %d %s",
|
|
playback_mixer_ctl_name, rtd->pcm->device, suffix);
|
|
kctl->put = msm_pcm_playback_app_type_cfg_ctl_put;
|
|
kctl->get = msm_pcm_playback_app_type_cfg_ctl_get;
|
|
}
|
|
|
|
if (pcm->streams[SNDRV_PCM_STREAM_CAPTURE].substream) {
|
|
ctl_len = strlen(capture_mixer_ctl_name) + 1 +
|
|
strlen(deviceNo) + 1 + strlen(suffix) + 1;
|
|
pr_debug("%s: Capture app type cntrl add\n", __func__);
|
|
ret = snd_pcm_add_usr_ctls(pcm, SNDRV_PCM_STREAM_CAPTURE,
|
|
NULL, 1, ctl_len, rtd->dai_link->id,
|
|
&app_type_info);
|
|
if (ret < 0)
|
|
return ret;
|
|
kctl = app_type_info->kctl;
|
|
snprintf(kctl->id.name, ctl_len, "%s %d %s",
|
|
capture_mixer_ctl_name, rtd->pcm->device, suffix);
|
|
kctl->put = msm_pcm_capture_app_type_cfg_ctl_put;
|
|
kctl->get = msm_pcm_capture_app_type_cfg_ctl_get;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int msm_pcm_add_controls(struct snd_soc_pcm_runtime *rtd)
|
|
{
|
|
int ret = 0;
|
|
|
|
pr_debug("%s\n", __func__);
|
|
ret = msm_pcm_add_volume_controls(rtd);
|
|
if (ret)
|
|
pr_err("%s: pcm add volume controls failed:%d\n",
|
|
__func__, ret);
|
|
ret = msm_pcm_add_app_type_controls(rtd);
|
|
if (ret)
|
|
pr_err("%s: pcm add app type controls failed:%d\n",
|
|
__func__, ret);
|
|
return ret;
|
|
}
|
|
|
|
static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
|
|
{
|
|
struct snd_card *card = rtd->card->snd_card;
|
|
int ret = 0;
|
|
|
|
if (!card->dev->coherent_dma_mask)
|
|
card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
|
|
|
|
ret = msm_pcm_add_controls(rtd);
|
|
if (ret)
|
|
dev_err(rtd->dev, "%s, kctl add failed\n", __func__);
|
|
return ret;
|
|
}
|
|
|
|
static struct snd_soc_platform_driver msm_soc_platform = {
|
|
.ops = &msm_pcm_ops,
|
|
.pcm_new = msm_asoc_pcm_new,
|
|
.probe = msm_pcm_loopback_probe,
|
|
};
|
|
|
|
static int msm_pcm_probe(struct platform_device *pdev)
|
|
{
|
|
struct msm_pcm_pdata *pdata;
|
|
|
|
dev_dbg(&pdev->dev, "%s: dev name %s\n",
|
|
__func__, dev_name(&pdev->dev));
|
|
|
|
pdata = kzalloc(sizeof(struct msm_pcm_pdata), GFP_KERNEL);
|
|
if (!pdata)
|
|
return -ENOMEM;
|
|
|
|
if (of_property_read_bool(pdev->dev.of_node,
|
|
"qcom,msm-pcm-loopback-low-latency"))
|
|
pdata->perf_mode = LOW_LATENCY_PCM_MODE;
|
|
else
|
|
pdata->perf_mode = LEGACY_PCM_MODE;
|
|
|
|
dev_set_drvdata(&pdev->dev, pdata);
|
|
|
|
return snd_soc_register_platform(&pdev->dev,
|
|
&msm_soc_platform);
|
|
}
|
|
|
|
static int msm_pcm_remove(struct platform_device *pdev)
|
|
{
|
|
snd_soc_unregister_platform(&pdev->dev);
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id msm_pcm_loopback_dt_match[] = {
|
|
{.compatible = "qcom,msm-pcm-loopback"},
|
|
{}
|
|
};
|
|
|
|
static struct platform_driver msm_pcm_driver = {
|
|
.driver = {
|
|
.name = "msm-pcm-loopback",
|
|
.owner = THIS_MODULE,
|
|
.of_match_table = msm_pcm_loopback_dt_match,
|
|
},
|
|
.probe = msm_pcm_probe,
|
|
.remove = msm_pcm_remove,
|
|
};
|
|
|
|
int __init msm_pcm_loopback_init(void)
|
|
{
|
|
return platform_driver_register(&msm_pcm_driver);
|
|
}
|
|
|
|
void msm_pcm_loopback_exit(void)
|
|
{
|
|
platform_driver_unregister(&msm_pcm_driver);
|
|
}
|
|
|
|
MODULE_DESCRIPTION("PCM loopback platform driver");
|
|
MODULE_LICENSE("GPL v2");
|
|
|