Commit 25ce4f2b authored by Cheng-Yi Chiang's avatar Cheng-Yi Chiang Committed by Mark Brown

ASoC: hdmi-codec: Get ELD in before reporting plugged event

In plugged callback, ELD should be updated from display driver so that
user space can query information from ELD immediately after receiving jack
plugged event.

When jack is unplugged, clear ELD buffer so that user space does not get
obsolete information of unplugged HDMI.
Signed-off-by: default avatarCheng-Yi Chiang <cychiang@chromium.org>
Link: https://lore.kernel.org/r/20201118043852.1338877-1-cychiang@chromium.orgSigned-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3371c6f9
...@@ -692,10 +692,16 @@ static void plugged_cb(struct device *dev, bool plugged) ...@@ -692,10 +692,16 @@ static void plugged_cb(struct device *dev, bool plugged)
{ {
struct hdmi_codec_priv *hcp = dev_get_drvdata(dev); struct hdmi_codec_priv *hcp = dev_get_drvdata(dev);
if (plugged) if (plugged) {
if (hcp->hcd.ops->get_eld) {
hcp->hcd.ops->get_eld(dev->parent, hcp->hcd.data,
hcp->eld, sizeof(hcp->eld));
}
hdmi_codec_jack_report(hcp, SND_JACK_LINEOUT); hdmi_codec_jack_report(hcp, SND_JACK_LINEOUT);
else } else {
hdmi_codec_jack_report(hcp, 0); hdmi_codec_jack_report(hcp, 0);
memset(hcp->eld, 0, sizeof(hcp->eld));
}
} }
static int hdmi_codec_set_jack(struct snd_soc_component *component, static int hdmi_codec_set_jack(struct snd_soc_component *component,
......
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