bf5xx-ssm2602.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /*
  2. * File: sound/soc/blackfin/bf5xx-ssm2602.c
  3. * Author: Cliff Cai <Cliff.Cai@analog.com>
  4. *
  5. * Created: Tue June 06 2008
  6. * Description: board driver for SSM2602 sound chip
  7. *
  8. * Modified:
  9. * Copyright 2008 Analog Devices Inc.
  10. *
  11. * Bugs: Enter bugs at http://blackfin.uclinux.org/
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License
  24. * along with this program; if not, see the file COPYING, or write
  25. * to the Free Software Foundation, Inc.,
  26. * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  27. */
  28. #include <linux/module.h>
  29. #include <linux/moduleparam.h>
  30. #include <linux/device.h>
  31. #include <sound/core.h>
  32. #include <sound/pcm.h>
  33. #include <sound/soc.h>
  34. #include <sound/pcm_params.h>
  35. #include <asm/dma.h>
  36. #include <asm/portmux.h>
  37. #include <linux/gpio.h>
  38. #include "../codecs/ssm2602.h"
  39. #include "bf5xx-sport.h"
  40. #include "bf5xx-i2s-pcm.h"
  41. static struct snd_soc_card bf5xx_ssm2602;
  42. static int bf5xx_ssm2602_startup(struct snd_pcm_substream *substream)
  43. {
  44. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  45. struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
  46. pr_debug("%s enter\n", __func__);
  47. snd_soc_dai_set_drvdata(cpu_dai, sport_handle);
  48. return 0;
  49. }
  50. static int bf5xx_ssm2602_hw_params(struct snd_pcm_substream *substream,
  51. struct snd_pcm_hw_params *params)
  52. {
  53. struct snd_soc_pcm_runtime *rtd = substream->private_data;
  54. struct snd_soc_dai *codec_dai = rtd->codec_dai;
  55. struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
  56. unsigned int clk = 0;
  57. int ret = 0;
  58. pr_debug("%s rate %d format %x\n", __func__, params_rate(params),
  59. params_format(params));
  60. /*
  61. * If you are using a crystal source which frequency is not 12MHz
  62. * then modify the below case statement with frequency of the crystal.
  63. *
  64. * If you are using the SPORT to generate clocking then this is
  65. * where to do it.
  66. */
  67. switch (params_rate(params)) {
  68. case 8000:
  69. case 16000:
  70. case 48000:
  71. case 96000:
  72. case 11025:
  73. case 22050:
  74. case 44100:
  75. clk = 12000000;
  76. break;
  77. }
  78. /*
  79. * CODEC is master for BCLK and LRC in this configuration.
  80. */
  81. /* set codec DAI configuration */
  82. ret = snd_soc_dai_set_fmt(codec_dai, SND_SOC_DAIFMT_I2S |
  83. SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM);
  84. if (ret < 0)
  85. return ret;
  86. /* set cpu DAI configuration */
  87. ret = snd_soc_dai_set_fmt(cpu_dai, SND_SOC_DAIFMT_I2S |
  88. SND_SOC_DAIFMT_NB_NF | SND_SOC_DAIFMT_CBM_CFM);
  89. if (ret < 0)
  90. return ret;
  91. ret = snd_soc_dai_set_sysclk(codec_dai, SSM2602_SYSCLK, clk,
  92. SND_SOC_CLOCK_IN);
  93. if (ret < 0)
  94. return ret;
  95. return 0;
  96. }
  97. static struct snd_soc_ops bf5xx_ssm2602_ops = {
  98. .startup = bf5xx_ssm2602_startup,
  99. .hw_params = bf5xx_ssm2602_hw_params,
  100. };
  101. static struct snd_soc_dai_link bf5xx_ssm2602_dai = {
  102. .name = "ssm2602",
  103. .stream_name = "SSM2602",
  104. .cpu_dai_name = "bf5xx-i2s",
  105. .codec_dai_name = "ssm2602-hifi",
  106. .platform_name = "bf5xx-pcm-audio",
  107. .codec_name = "ssm2602-codec.0-001b",
  108. .ops = &bf5xx_ssm2602_ops,
  109. };
  110. static struct snd_soc_card bf5xx_ssm2602 = {
  111. .name = "bf5xx_ssm2602",
  112. .dai_link = &bf5xx_ssm2602_dai,
  113. .num_links = 1,
  114. };
  115. static struct platform_device *bf5xx_ssm2602_snd_device;
  116. static int __init bf5xx_ssm2602_init(void)
  117. {
  118. int ret;
  119. pr_debug("%s enter\n", __func__);
  120. bf5xx_ssm2602_snd_device = platform_device_alloc("soc-audio", -1);
  121. if (!bf5xx_ssm2602_snd_device)
  122. return -ENOMEM;
  123. platform_set_drvdata(bf5xx_ssm2602_snd_device, &bf5xx_ssm2602);
  124. ret = platform_device_add(bf5xx_ssm2602_snd_device);
  125. if (ret)
  126. platform_device_put(bf5xx_ssm2602_snd_device);
  127. return ret;
  128. }
  129. static void __exit bf5xx_ssm2602_exit(void)
  130. {
  131. pr_debug("%s enter\n", __func__);
  132. platform_device_unregister(bf5xx_ssm2602_snd_device);
  133. }
  134. module_init(bf5xx_ssm2602_init);
  135. module_exit(bf5xx_ssm2602_exit);
  136. /* Module information */
  137. MODULE_AUTHOR("Cliff Cai");
  138. MODULE_DESCRIPTION("ALSA SoC SSM2602 BF527-EZKIT");
  139. MODULE_LICENSE("GPL");