9796fc57b4f1108d99706183948e22af03166281
[15.05/openwrt.git] / target / linux / brcm2708 / patches-3.18 / 0037-ASoC-wm8804-Implement-MCLK-configuration-options-add.patch
1 From f33231bfe57c745235a346d5529a4bac717d925e Mon Sep 17 00:00:00 2001
2 From: Daniel Matuschek <info@crazy-audio.com>
3 Date: Wed, 15 Jan 2014 21:41:23 +0100
4 Subject: [PATCH 037/114] ASoC: wm8804: Implement MCLK configuration options,
5  add 32bit support WM8804 can run with PLL frequencies of 256xfs and 128xfs
6  for most sample rates. At 192kHz only 128xfs is supported. The existing
7  driver selects 128xfs automatically for some lower samples rates. By using an
8  additional mclk_div divider, it is now possible to control the behaviour.
9  This allows using 256xfs PLL frequency on all sample rates up to 96kHz. It
10  should allow lower jitter and better signal quality. The behavior has to be
11  controlled by the sound card driver, because some sample frequency share the
12  same setting. e.g. 192kHz and 96kHz use 24.576MHz master clock. The only
13  difference is the MCLK divider.
14
15 This also added support for 32bit data.
16
17 Signed-off-by: Daniel Matuschek <daniel@matuschek.net>
18 ---
19  sound/soc/codecs/wm8804.c | 3 ++-
20  1 file changed, 2 insertions(+), 1 deletion(-)
21
22 diff --git a/sound/soc/codecs/wm8804.c b/sound/soc/codecs/wm8804.c
23 index 3addc5f..d060b23 100644
24 --- a/sound/soc/codecs/wm8804.c
25 +++ b/sound/soc/codecs/wm8804.c
26 @@ -278,6 +278,7 @@ static int wm8804_hw_params(struct snd_pcm_substream *substream,
27                 blen = 0x1;
28                 break;
29         case 24:
30 +       case 32:
31                 blen = 0x2;
32                 break;
33         default:
34 @@ -624,7 +625,7 @@ static const struct snd_soc_dai_ops wm8804_dai_ops = {
35  };
36  
37  #define WM8804_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE | \
38 -                       SNDRV_PCM_FMTBIT_S24_LE)
39 +                       SNDRV_PCM_FMTBIT_S24_3LE | SNDRV_PCM_FMTBIT_S32_LE)
40  
41  #define WM8804_RATES (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 | \
42                       SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_64000 | \
43 -- 
44 1.8.3.2
45