aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorRongjun Ying <Rongjun.Ying@csr.com>2013-07-17 14:12:16 +0800
committerJon Medhurst <tixy@linaro.org>2015-03-27 15:55:17 +0000
commite69a0e0554972916ad116f82adc884f41d4d73e8 (patch)
tree48469cbc42763b538195d5938b9b0436191bdb87 /sound
parent13d43e84463dec46f9979164d43099cdeff98789 (diff)
ASoC: hdmi-codec: let the driver support HDMI sink
Devices like mobilephones, computers are typically used as HDMI sources, but devices like TV, navigators will be HDMI sinks. for auto scenerios, In-Vehicle Infotainment(IVI) can be HDMI sink to display movies from mobilephones. Signed-off-by: Rongjun Ying <Rongjun.Ying@csr.com> Signed-off-by: Barry Song <Baohua.Song@csr.com> Signed-off-by: Mark Brown <broonie@linaro.org> (cherry picked from commit c6c0925ea32d37696da7d71631a4a0c999f2094f) Signed-off-by: Jon Medhurst <tixy@linaro.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/codecs/hdmi.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/sound/soc/codecs/hdmi.c b/sound/soc/codecs/hdmi.c
index 2bcae2b40c92..f0986b9f1939 100644
--- a/sound/soc/codecs/hdmi.c
+++ b/sound/soc/codecs/hdmi.c
@@ -37,6 +37,17 @@ static struct snd_soc_dai_driver hdmi_codec_dai = {
.formats = SNDRV_PCM_FMTBIT_S16_LE |
SNDRV_PCM_FMTBIT_S24_LE,
},
+ .capture = {
+ .channels_min = 2,
+ .channels_max = 2,
+ .rates = SNDRV_PCM_RATE_32000 |
+ SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |
+ SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 |
+ SNDRV_PCM_RATE_176400 | SNDRV_PCM_RATE_192000,
+ .formats = SNDRV_PCM_FMTBIT_S16_LE |
+ SNDRV_PCM_FMTBIT_S24_LE,
+ },
+
};
static int hdmi_codec_probe(struct platform_device *pdev)