mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-23 04:54:01 +08:00
ASoC: soc-component: add snd_soc_component_compr_get_codec_caps()
component related function should be implemented at soc-component.c. This patch adds snd_soc_component_compr_get_codec_caps(). Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Reviewed-by: Ranjani Sridharan <ranjani.sridharan@linux.intel.com> Link: https://lore.kernel.org/r/877dqp7v6i.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
d67fcb2d8f
commit
0f6fe09720
@ -455,6 +455,8 @@ int snd_soc_component_compr_get_params(struct snd_compr_stream *cstream,
|
|||||||
struct snd_codec *params);
|
struct snd_codec *params);
|
||||||
int snd_soc_component_compr_get_caps(struct snd_compr_stream *cstream,
|
int snd_soc_component_compr_get_caps(struct snd_compr_stream *cstream,
|
||||||
struct snd_compr_caps *caps);
|
struct snd_compr_caps *caps);
|
||||||
|
int snd_soc_component_compr_get_codec_caps(struct snd_compr_stream *cstream,
|
||||||
|
struct snd_compr_codec_caps *codec);
|
||||||
|
|
||||||
int snd_soc_pcm_component_pointer(struct snd_pcm_substream *substream);
|
int snd_soc_pcm_component_pointer(struct snd_pcm_substream *substream);
|
||||||
int snd_soc_pcm_component_ioctl(struct snd_pcm_substream *substream,
|
int snd_soc_pcm_component_ioctl(struct snd_pcm_substream *substream,
|
||||||
|
@ -547,6 +547,30 @@ int snd_soc_component_compr_get_caps(struct snd_compr_stream *cstream,
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(snd_soc_component_compr_get_caps);
|
EXPORT_SYMBOL_GPL(snd_soc_component_compr_get_caps);
|
||||||
|
|
||||||
|
int snd_soc_component_compr_get_codec_caps(struct snd_compr_stream *cstream,
|
||||||
|
struct snd_compr_codec_caps *codec)
|
||||||
|
{
|
||||||
|
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||||
|
struct snd_soc_component *component;
|
||||||
|
int i, ret = 0;
|
||||||
|
|
||||||
|
mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
|
||||||
|
|
||||||
|
for_each_rtd_components(rtd, i, component) {
|
||||||
|
if (component->driver->compress_ops &&
|
||||||
|
component->driver->compress_ops->get_codec_caps) {
|
||||||
|
ret = component->driver->compress_ops->get_codec_caps(
|
||||||
|
component, cstream, codec);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
mutex_unlock(&rtd->card->pcm_mutex);
|
||||||
|
|
||||||
|
return soc_component_ret(component, ret);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(snd_soc_component_compr_get_codec_caps);
|
||||||
|
|
||||||
static unsigned int soc_component_read_no_lock(
|
static unsigned int soc_component_read_no_lock(
|
||||||
struct snd_soc_component *component,
|
struct snd_soc_component *component,
|
||||||
unsigned int reg)
|
unsigned int reg)
|
||||||
|
@ -409,29 +409,6 @@ err:
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int soc_compr_get_codec_caps(struct snd_compr_stream *cstream,
|
|
||||||
struct snd_compr_codec_caps *codec)
|
|
||||||
{
|
|
||||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
|
||||||
struct snd_soc_component *component;
|
|
||||||
int i, ret = 0;
|
|
||||||
|
|
||||||
mutex_lock_nested(&rtd->card->pcm_mutex, rtd->card->pcm_subclass);
|
|
||||||
|
|
||||||
for_each_rtd_components(rtd, i, component) {
|
|
||||||
if (!component->driver->compress_ops ||
|
|
||||||
!component->driver->compress_ops->get_codec_caps)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
ret = component->driver->compress_ops->get_codec_caps(
|
|
||||||
component, cstream, codec);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
mutex_unlock(&rtd->card->pcm_mutex);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int soc_compr_ack(struct snd_compr_stream *cstream, size_t bytes)
|
static int soc_compr_ack(struct snd_compr_stream *cstream, size_t bytes)
|
||||||
{
|
{
|
||||||
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
struct snd_soc_pcm_runtime *rtd = cstream->private_data;
|
||||||
@ -574,7 +551,7 @@ static struct snd_compr_ops soc_compr_ops = {
|
|||||||
.pointer = soc_compr_pointer,
|
.pointer = soc_compr_pointer,
|
||||||
.ack = soc_compr_ack,
|
.ack = soc_compr_ack,
|
||||||
.get_caps = snd_soc_component_compr_get_caps,
|
.get_caps = snd_soc_component_compr_get_caps,
|
||||||
.get_codec_caps = soc_compr_get_codec_caps
|
.get_codec_caps = snd_soc_component_compr_get_codec_caps,
|
||||||
};
|
};
|
||||||
|
|
||||||
/* ASoC Dynamic Compress operations */
|
/* ASoC Dynamic Compress operations */
|
||||||
@ -589,7 +566,7 @@ static struct snd_compr_ops soc_compr_dyn_ops = {
|
|||||||
.pointer = soc_compr_pointer,
|
.pointer = soc_compr_pointer,
|
||||||
.ack = soc_compr_ack,
|
.ack = soc_compr_ack,
|
||||||
.get_caps = snd_soc_component_compr_get_caps,
|
.get_caps = snd_soc_component_compr_get_caps,
|
||||||
.get_codec_caps = soc_compr_get_codec_caps
|
.get_codec_caps = snd_soc_component_compr_get_codec_caps,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user