Commit 96203fb4 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: hdmi-codec: add .get_dai_id support

ALSA SoC needs to know connected DAI ID for probing.
It is not a big problem if device/driver was only for sound,
but getting DAI ID will be difficult if device includes both
Video/Sound, like HDMI.
To solve this issue, this patch adds new .get_dai_id callback
on hdmi_codec_ops
Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 24069b58
...@@ -18,9 +18,11 @@ ...@@ -18,9 +18,11 @@
#ifndef __HDMI_CODEC_H__ #ifndef __HDMI_CODEC_H__
#define __HDMI_CODEC_H__ #define __HDMI_CODEC_H__
#include <linux/of_graph.h>
#include <linux/hdmi.h> #include <linux/hdmi.h>
#include <drm/drm_edid.h> #include <drm/drm_edid.h>
#include <sound/asoundef.h> #include <sound/asoundef.h>
#include <sound/soc.h>
#include <uapi/sound/asound.h> #include <uapi/sound/asound.h>
/* /*
...@@ -87,6 +89,13 @@ struct hdmi_codec_ops { ...@@ -87,6 +89,13 @@ struct hdmi_codec_ops {
*/ */
int (*get_eld)(struct device *dev, void *data, int (*get_eld)(struct device *dev, void *data,
uint8_t *buf, size_t len); uint8_t *buf, size_t len);
/*
* Getting DAI ID
* Optional
*/
int (*get_dai_id)(struct snd_soc_component *comment,
struct device_node *endpoint);
}; };
/* HDMI codec initalization data */ /* HDMI codec initalization data */
......
...@@ -719,6 +719,18 @@ static const struct snd_soc_dai_driver hdmi_spdif_dai = { ...@@ -719,6 +719,18 @@ static const struct snd_soc_dai_driver hdmi_spdif_dai = {
.pcm_new = hdmi_codec_pcm_new, .pcm_new = hdmi_codec_pcm_new,
}; };
static int hdmi_of_xlate_dai_id(struct snd_soc_component *component,
struct device_node *endpoint)
{
struct hdmi_codec_priv *hcp = snd_soc_component_get_drvdata(component);
int ret = -ENOTSUPP; /* see snd_soc_get_dai_id() */
if (hcp->hcd.ops->get_dai_id)
ret = hcp->hcd.ops->get_dai_id(component, endpoint);
return ret;
}
static struct snd_soc_codec_driver hdmi_codec = { static struct snd_soc_codec_driver hdmi_codec = {
.component_driver = { .component_driver = {
.controls = hdmi_controls, .controls = hdmi_controls,
...@@ -727,6 +739,7 @@ static struct snd_soc_codec_driver hdmi_codec = { ...@@ -727,6 +739,7 @@ static struct snd_soc_codec_driver hdmi_codec = {
.num_dapm_widgets = ARRAY_SIZE(hdmi_widgets), .num_dapm_widgets = ARRAY_SIZE(hdmi_widgets),
.dapm_routes = hdmi_routes, .dapm_routes = hdmi_routes,
.num_dapm_routes = ARRAY_SIZE(hdmi_routes), .num_dapm_routes = ARRAY_SIZE(hdmi_routes),
.of_xlate_dai_id = hdmi_of_xlate_dai_id,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment