bf5xx-ad1980.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * File: sound/soc/blackfin/bf5xx-ad1980.c
  3. * Author: Cliff Cai <Cliff.Cai@analog.com>
  4. *
  5. * Created: Tue June 06 2008
  6. * Description: Board driver for AD1980/1 audio codec
  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 <asm/dma.h>
  32. #include <sound/core.h>
  33. #include <sound/pcm.h>
  34. #include <sound/soc.h>
  35. #include <linux/gpio.h>
  36. #include <asm/portmux.h>
  37. #include "../codecs/ad1980.h"
  38. #include "bf5xx-sport.h"
  39. #include "bf5xx-ac97-pcm.h"
  40. #include "bf5xx-ac97.h"
  41. static struct snd_soc_card bf5xx_board;
  42. static int bf5xx_board_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 struct snd_soc_ops bf5xx_board_ops = {
  51. .startup = bf5xx_board_startup,
  52. };
  53. static struct snd_soc_dai_link bf5xx_board_dai = {
  54. .name = "AC97",
  55. .stream_name = "AC97 HiFi",
  56. .cpu_dai_name = "bfin-ac97",
  57. .codec_dai_name = "ad1980-hifi",
  58. .platform_name = "bfin-pcm-audio",
  59. .codec_name = "ad1980-codec",
  60. .ops = &bf5xx_board_ops,
  61. };
  62. static struct snd_soc_card bf5xx_board = {
  63. .name = "bf5xx-board",
  64. .dai_link = &bf5xx_board_dai,
  65. .num_links = 1,
  66. };
  67. static struct platform_device *bf5xx_board_snd_device;
  68. static int __init bf5xx_board_init(void)
  69. {
  70. int ret;
  71. bf5xx_board_snd_device = platform_device_alloc("soc-audio", -1);
  72. if (!bf5xx_board_snd_device)
  73. return -ENOMEM;
  74. platform_set_drvdata(bf5xx_board_snd_device, &bf5xx_board);
  75. ret = platform_device_add(bf5xx_board_snd_device);
  76. if (ret)
  77. platform_device_put(bf5xx_board_snd_device);
  78. return ret;
  79. }
  80. static void __exit bf5xx_board_exit(void)
  81. {
  82. platform_device_unregister(bf5xx_board_snd_device);
  83. }
  84. module_init(bf5xx_board_init);
  85. module_exit(bf5xx_board_exit);
  86. /* Module information */
  87. MODULE_AUTHOR("Cliff Cai");
  88. MODULE_DESCRIPTION("ALSA SoC AD1980/1 BF5xx board");
  89. MODULE_LICENSE("GPL");