dfbmcs320.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * Driver for the DFBM-CS320 bluetooth module
  3. * Copyright 2011 Lars-Peter Clausen <lars@metafoo.de>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version.
  9. *
  10. */
  11. #include <linux/init.h>
  12. #include <linux/module.h>
  13. #include <linux/platform_device.h>
  14. #include <sound/soc.h>
  15. static struct snd_soc_dai_driver dfbmcs320_dai = {
  16. .name = "dfbmcs320-pcm",
  17. .playback = {
  18. .channels_min = 1,
  19. .channels_max = 1,
  20. .rates = SNDRV_PCM_RATE_8000,
  21. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  22. },
  23. .capture = {
  24. .channels_min = 1,
  25. .channels_max = 1,
  26. .rates = SNDRV_PCM_RATE_8000,
  27. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  28. },
  29. };
  30. static struct snd_soc_codec_driver soc_codec_dev_dfbmcs320;
  31. static int __devinit dfbmcs320_probe(struct platform_device *pdev)
  32. {
  33. return snd_soc_register_codec(&pdev->dev, &soc_codec_dev_dfbmcs320,
  34. &dfbmcs320_dai, 1);
  35. }
  36. static int __devexit dfbmcs320_remove(struct platform_device *pdev)
  37. {
  38. snd_soc_unregister_codec(&pdev->dev);
  39. return 0;
  40. }
  41. static struct platform_driver dfmcs320_driver = {
  42. .driver = {
  43. .name = "dfbmcs320",
  44. .owner = THIS_MODULE,
  45. },
  46. .probe = dfbmcs320_probe,
  47. .remove = __devexit_p(dfbmcs320_remove),
  48. };
  49. static int __init dfbmcs320_init(void)
  50. {
  51. return platform_driver_register(&dfmcs320_driver);
  52. }
  53. module_init(dfbmcs320_init);
  54. static void __exit dfbmcs320_exit(void)
  55. {
  56. platform_driver_unregister(&dfmcs320_driver);
  57. }
  58. module_exit(dfbmcs320_exit);
  59. MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
  60. MODULE_DESCRIPTION("ASoC DFBM-CS320 bluethooth module driver");
  61. MODULE_LICENSE("GPL");