diff options
author | Cheng-Yi Chiang <cychiang@chromium.org> | 2020-11-18 05:38:52 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-11-23 19:37:35 +0100 |
commit | 25ce4f2b3593fa6bba70ddabbd2ee297b262784f (patch) | |
tree | 656ea2588bd1cdd0e10b4d6ca76a62d84c059117 /sound/soc/codecs/hdmi-codec.c | |
parent | ASoC: codecs: Fix fall-through warnings for Clang (diff) | |
download | linux-25ce4f2b3593fa6bba70ddabbd2ee297b262784f.tar.xz linux-25ce4f2b3593fa6bba70ddabbd2ee297b262784f.zip |
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: Cheng-Yi Chiang <cychiang@chromium.org>
Link: https://lore.kernel.org/r/20201118043852.1338877-1-cychiang@chromium.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/hdmi-codec.c')
-rw-r--r-- | sound/soc/codecs/hdmi-codec.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sound/soc/codecs/hdmi-codec.c b/sound/soc/codecs/hdmi-codec.c index 403d4c6a49a8..e8410b2433de 100644 --- a/sound/soc/codecs/hdmi-codec.c +++ b/sound/soc/codecs/hdmi-codec.c @@ -692,10 +692,16 @@ static void plugged_cb(struct device *dev, bool plugged) { 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); - else + } else { hdmi_codec_jack_report(hcp, 0); + memset(hcp->eld, 0, sizeof(hcp->eld)); + } } static int hdmi_codec_set_jack(struct snd_soc_component *component, |