diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2016-05-09 13:42:29 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-05-09 16:55:16 +0100 |
commit | 20d4b10730183a02851580f072bd9b0122873dc5 (patch) | |
tree | 8c1cc21bea1c6a9cfb7cac95d6603d4e8a4084ab /sound/soc/davinci/davinci-mcasp.h | |
parent | 19357366633cfc53532b587180af3655f0e453f3 (diff) | |
download | op-kernel-dev-20d4b10730183a02851580f072bd9b0122873dc5.zip op-kernel-dev-20d4b10730183a02851580f072bd9b0122873dc5.tar.gz |
ASoC: davinci-mcasp: Use defines for clkdiv IDs
Instead of hardwired IDs add defines for the available dividers.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/davinci/davinci-mcasp.h')
-rw-r--r-- | sound/soc/davinci/davinci-mcasp.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sound/soc/davinci/davinci-mcasp.h b/sound/soc/davinci/davinci-mcasp.h index a3be108..1e8787f 100644 --- a/sound/soc/davinci/davinci-mcasp.h +++ b/sound/soc/davinci/davinci-mcasp.h @@ -306,4 +306,9 @@ #define NUMEVT(x) (((x) & 0xFF) << 8) #define NUMDMA_MASK (0xFF) +/* clock divider IDs */ +#define MCASP_CLKDIV_AUXCLK 0 /* HCLK divider from AUXCLK */ +#define MCASP_CLKDIV_BCLK 1 /* BCLK divider from HCLK */ +#define MCASP_CLKDIV_BCLK_FS_RATIO 2 /* to set BCLK FS ration */ + #endif /* DAVINCI_MCASP_H */ |