summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorZidan Wang <zidan.wang@freescale.com>2015-04-22 13:01:34 +0800
committerJason Liu <r64343@freescale.com>2015-05-08 17:25:04 +0800
commit96cb4add7c165d19430116873eaac59b1ba9b1a2 (patch)
treee2db85fcf39d61b3ce9056cae7ef351b6717b175 /sound
parent4395170ef0576ac5abb4e45a16be28f128cf481d (diff)
MLK-10713-2 ASoC: imx-sii902x: Add 96k and 192k sample rate support
Add 96k and 192k sample rate support for hdmi audio. Signed-off-by: Zidan Wang <zidan.wang@freescale.com>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/fsl/imx-sii902x.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/fsl/imx-sii902x.c b/sound/soc/fsl/imx-sii902x.c
index 5f283385bfd1..b4f7061897e8 100644
--- a/sound/soc/fsl/imx-sii902x.c
+++ b/sound/soc/fsl/imx-sii902x.c
@@ -55,8 +55,10 @@ static int imx_sii902x_startup(struct snd_pcm_substream *substream)
support_rates[0] = 32000;
support_rates[1] = 48000;
+ support_rates[2] = 96000;
+ support_rates[3] = 192000;
constraint_rates.list = support_rates;
- constraint_rates.count = 2;
+ constraint_rates.count = 4;
ret = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
&constraint_rates);