summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorZidan Wang <zidan.wang@freescale.com>2015-04-22 13:01:34 +0800
committerNitin Garg <nitin.garg@freescale.com>2015-09-17 09:22:39 -0500
commitfa94b89ab94ce78800d112d0a013d0c0901d9b78 (patch)
tree1e47a87196ec61a0fe595300d75aa4588eedcd25 /sound
parenteb19a5be3417071f6400297a75ba2620ad239630 (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);