bf5xx-ssm2602.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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_dai_init(struct snd_soc_pcm_runtime *rtd)
  43. {
  44. /*
  45. * If you are using a crystal source which frequency is not 12MHz
  46. * then modify the below case statement with frequency of the crystal.
  47. *
  48. * If you are using the SPORT to generate clocking then this is
  49. * where to do it.
  50. */
  51. return snd_soc_dai_set_sysclk(rtd->codec_dai, SSM2602_SYSCLK, 12000000,
  52. SND_SOC_CLOCK_IN);
  53. }
  54. /* CODEC is master for BCLK and LRC in this configuration. */
  55. #define BF5XX_SSM2602_DAIFMT (SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF | \
  56. SND_SOC_DAIFMT_CBM_CFM)
  57. static struct snd_soc_dai_link bf5xx_ssm2602_dai[] = {
  58. {
  59. .name = "ssm2602",
  60. .stream_name = "SSM2602",
  61. .cpu_dai_name = "bfin-i2s.0",
  62. .codec_dai_name = "ssm2602-hifi",
  63. .platform_name = "bfin-i2s-pcm-audio",
  64. .codec_name = "ssm2602.0-001b",
  65. .init = bf5xx_ssm2602_dai_init,
  66. .dai_fmt = BF5XX_SSM2602_DAIFMT,
  67. },
  68. {
  69. .name = "ssm2602",
  70. .stream_name = "SSM2602",
  71. .cpu_dai_name = "bfin-i2s.1",
  72. .codec_dai_name = "ssm2602-hifi",
  73. .platform_name = "bfin-i2s-pcm-audio",
  74. .codec_name = "ssm2602.0-001b",
  75. .init = bf5xx_ssm2602_dai_init,
  76. .dai_fmt = BF5XX_SSM2602_DAIFMT,
  77. },
  78. };
  79. static struct snd_soc_card bf5xx_ssm2602 = {
  80. .name = "bfin-ssm2602",
  81. .owner = THIS_MODULE,
  82. .dai_link = &bf5xx_ssm2602_dai[CONFIG_SND_BF5XX_SPORT_NUM],
  83. .num_links = 1,
  84. };
  85. static struct platform_device *bf5xx_ssm2602_snd_device;
  86. static int __init bf5xx_ssm2602_init(void)
  87. {
  88. int ret;
  89. pr_debug("%s enter\n", __func__);
  90. bf5xx_ssm2602_snd_device = platform_device_alloc("soc-audio", -1);
  91. if (!bf5xx_ssm2602_snd_device)
  92. return -ENOMEM;
  93. platform_set_drvdata(bf5xx_ssm2602_snd_device, &bf5xx_ssm2602);
  94. ret = platform_device_add(bf5xx_ssm2602_snd_device);
  95. if (ret)
  96. platform_device_put(bf5xx_ssm2602_snd_device);
  97. return ret;
  98. }
  99. static void __exit bf5xx_ssm2602_exit(void)
  100. {
  101. pr_debug("%s enter\n", __func__);
  102. platform_device_unregister(bf5xx_ssm2602_snd_device);
  103. }
  104. module_init(bf5xx_ssm2602_init);
  105. module_exit(bf5xx_ssm2602_exit);
  106. /* Module information */
  107. MODULE_AUTHOR("Cliff Cai");
  108. MODULE_DESCRIPTION("ALSA SoC SSM2602 BF527-EZKIT");
  109. MODULE_LICENSE("GPL");