Commit 60ea4cec authored by Olaya, Margarita's avatar Olaya, Margarita Committed by Liam Girdwood

ASoC: twl6040: Support other sample rates.

The twl6040 can support more sample rates other than 88.2 and 96k.
Signed-off-by: default avatarMargarita Olaya Cabrera <magi.olaya@ti.com>
Acked-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: default avatarLiam Girdwood <lrg@slimlogic.co.uk>
parent 4e624d06
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#include "twl6040.h" #include "twl6040.h"
#define TWL6040_RATES (SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000) #define TWL6040_RATES SNDRV_PCM_RATE_8000_96000
#define TWL6040_FORMATS (SNDRV_PCM_FMTBIT_S32_LE) #define TWL6040_FORMATS (SNDRV_PCM_FMTBIT_S32_LE)
struct twl6040_jack_data { struct twl6040_jack_data {
...@@ -890,10 +890,17 @@ static int twl6040_hw_params(struct snd_pcm_substream *substream, ...@@ -890,10 +890,17 @@ static int twl6040_hw_params(struct snd_pcm_substream *substream,
rate = params_rate(params); rate = params_rate(params);
switch (rate) { switch (rate) {
case 11250:
case 22500:
case 44100:
case 88200: case 88200:
lppllctl |= TWL6040_LPLLFIN; lppllctl |= TWL6040_LPLLFIN;
priv->sysclk = 17640000; priv->sysclk = 17640000;
break; break;
case 8000:
case 16000:
case 32000:
case 48000:
case 96000: case 96000:
lppllctl &= ~TWL6040_LPLLFIN; lppllctl &= ~TWL6040_LPLLFIN;
priv->sysclk = 19200000; priv->sysclk = 19200000;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment