eukrea-tlv320.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /*
  2. * eukrea-tlv320.c -- SoC audio for eukrea_cpuimxXX in I2S mode
  3. *
  4. * Copyright 2010 Eric Bénard, Eukréa Electromatique <eric@eukrea.com>
  5. *
  6. * based on sound/soc/s3c24xx/s3c24xx_simtec_tlv320aic23.c
  7. * which is Copyright 2009 Simtec Electronics
  8. * and on sound/soc/imx/phycore-ac97.c which is
  9. * Copyright 2009 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
  10. *
  11. * This program is free software; you can redistribute it and/or modify it
  12. * under the terms of the GNU General Public License as published by the
  13. * Free Software Foundation; either version 2 of the License, or (at your
  14. * option) any later version.
  15. *
  16. */
  17. #include <linux/module.h>
  18. #include <linux/moduleparam.h>
  19. #include <linux/device.h>
  20. #include <linux/i2c.h>
  21. #include <sound/core.h>
  22. #include <sound/pcm.h>
  23. #include <sound/soc.h>
  24. #include <asm/mach-types.h>
  25. #include "../codecs/tlv320aic23.h"
  26. #include "imx-ssi.h"
  27. #define CODEC_CLOCK 12000000
  28. static int eukrea_tlv320_hw_params(struct snd_pcm_substream *substream,
  29. struct snd_pcm_hw_params *params)
  30. {
  31. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  32. struct snd_soc_dai *codec_dai = rtd->codec_dai;
  33. struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
  34. int ret;
  35. ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
  36. SND_SOC_DAIFMT_NB_NF |
  37. SND_SOC_DAIFMT_CBM_CFM);
  38. if (ret) {
  39. pr_err("%s: failed set cpu dai format\n", __func__);
  40. return ret;
  41. }
  42. ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
  43. SND_SOC_DAIFMT_NB_NF |
  44. SND_SOC_DAIFMT_CBM_CFM);
  45. if (ret) {
  46. pr_err("%s: failed set codec dai format\n", __func__);
  47. return ret;
  48. }
  49. ret = snd_soc_dai_set_sysclk(codec_dai, 0,
  50. CODEC_CLOCK, SND_SOC_CLOCK_OUT);
  51. if (ret) {
  52. pr_err("%s: failed setting codec sysclk\n", __func__);
  53. return ret;
  54. }
  55. snd_soc_dai_set_tdm_slot(cpu_dai, 0xffffffc, 0xffffffc, 2, 0);
  56. ret = snd_soc_dai_set_sysclk(cpu_dai, IMX_SSP_SYS_CLK, 0,
  57. SND_SOC_CLOCK_IN);
  58. if (ret) {
  59. pr_err("can't set CPU system clock IMX_SSP_SYS_CLK\n");
  60. return ret;
  61. }
  62. return 0;
  63. }
  64. static struct snd_soc_ops eukrea_tlv320_snd_ops = {
  65. .hw_params = eukrea_tlv320_hw_params,
  66. };
  67. static struct snd_soc_dai_link eukrea_tlv320_dai = {
  68. .name = "tlv320aic23",
  69. .stream_name = "TLV320AIC23",
  70. .codec_dai_name = "tlv320aic23-hifi",
  71. .platform_name = "imx-fiq-pcm-audio.0",
  72. .codec_name = "tlv320aic23-codec.0-001a",
  73. .cpu_dai_name = "imx-ssi.0",
  74. .ops = &eukrea_tlv320_snd_ops,
  75. };
  76. static struct snd_soc_card eukrea_tlv320 = {
  77. .name = "cpuimx-audio",
  78. .dai_link = &eukrea_tlv320_dai,
  79. .num_links = 1,
  80. };
  81. static struct platform_device *eukrea_tlv320_snd_device;
  82. static int __init eukrea_tlv320_init(void)
  83. {
  84. int ret;
  85. if (!machine_is_eukrea_cpuimx27() && !machine_is_eukrea_cpuimx25sd()
  86. && !machine_is_eukrea_cpuimx35sd()
  87. && !machine_is_eukrea_cpuimx51sd())
  88. /* return happy. We might run on a totally different machine */
  89. return 0;
  90. eukrea_tlv320_snd_device = platform_device_alloc("soc-audio", -1);
  91. if (!eukrea_tlv320_snd_device)
  92. return -ENOMEM;
  93. platform_set_drvdata(eukrea_tlv320_snd_device, &eukrea_tlv320);
  94. ret = platform_device_add(eukrea_tlv320_snd_device);
  95. if (ret) {
  96. printk(KERN_ERR "ASoC: Platform device allocation failed\n");
  97. platform_device_put(eukrea_tlv320_snd_device);
  98. }
  99. return ret;
  100. }
  101. static void __exit eukrea_tlv320_exit(void)
  102. {
  103. platform_device_unregister(eukrea_tlv320_snd_device);
  104. }
  105. module_init(eukrea_tlv320_init);
  106. module_exit(eukrea_tlv320_exit);
  107. MODULE_AUTHOR("Eric Bénard <eric@eukrea.com>");
  108. MODULE_DESCRIPTION("CPUIMX ALSA SoC driver");
  109. MODULE_LICENSE("GPL");