spdif_transmitter.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * ALSA SoC SPDIF DIT driver
  3. *
  4. * This driver is used by controllers which can operate in DIT (SPDI/F) where
  5. * no codec is needed. This file provides stub codec that can be used
  6. * in these configurations. TI DaVinci Audio controller uses this driver.
  7. *
  8. * Author: Steve Chen, <schen@mvista.com>
  9. * Copyright: (C) 2009 MontaVista Software, Inc., <source@mvista.com>
  10. * Copyright: (C) 2009 Texas Instruments, India
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. */
  16. #include <linux/module.h>
  17. #include <linux/moduleparam.h>
  18. #include <linux/slab.h>
  19. #include <sound/soc.h>
  20. #include <sound/pcm.h>
  21. #include <sound/initval.h>
  22. #include <linux/of.h>
  23. #define DRV_NAME "spdif-dit"
  24. #define STUB_RATES SNDRV_PCM_RATE_8000_96000
  25. #define STUB_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \
  26. SNDRV_PCM_FMTBIT_S20_3LE | \
  27. SNDRV_PCM_FMTBIT_S24_LE)
  28. static const struct snd_soc_dapm_widget dit_widgets[] = {
  29. SND_SOC_DAPM_OUTPUT("spdif-out"),
  30. };
  31. static const struct snd_soc_dapm_route dit_routes[] = {
  32. { "spdif-out", NULL, "Playback" },
  33. };
  34. static struct snd_soc_codec_driver soc_codec_spdif_dit = {
  35. .dapm_widgets = dit_widgets,
  36. .num_dapm_widgets = ARRAY_SIZE(dit_widgets),
  37. .dapm_routes = dit_routes,
  38. .num_dapm_routes = ARRAY_SIZE(dit_routes),
  39. };
  40. static struct snd_soc_dai_driver dit_stub_dai = {
  41. .name = "dit-hifi",
  42. .playback = {
  43. .stream_name = "Playback",
  44. .channels_min = 1,
  45. .channels_max = 384,
  46. .rates = STUB_RATES,
  47. .formats = STUB_FORMATS,
  48. },
  49. };
  50. static int spdif_dit_probe(struct platform_device *pdev)
  51. {
  52. return snd_soc_register_codec(&pdev->dev, &soc_codec_spdif_dit,
  53. &dit_stub_dai, 1);
  54. }
  55. static int spdif_dit_remove(struct platform_device *pdev)
  56. {
  57. snd_soc_unregister_codec(&pdev->dev);
  58. return 0;
  59. }
  60. #ifdef CONFIG_OF
  61. static const struct of_device_id spdif_dit_dt_ids[] = {
  62. { .compatible = "linux,spdif-dit", },
  63. { }
  64. };
  65. MODULE_DEVICE_TABLE(of, spdif_dit_dt_ids);
  66. #endif
  67. static struct platform_driver spdif_dit_driver = {
  68. .probe = spdif_dit_probe,
  69. .remove = spdif_dit_remove,
  70. .driver = {
  71. .name = DRV_NAME,
  72. .owner = THIS_MODULE,
  73. .of_match_table = of_match_ptr(spdif_dit_dt_ids),
  74. },
  75. };
  76. module_platform_driver(spdif_dit_driver);
  77. MODULE_AUTHOR("Steve Chen <schen@mvista.com>");
  78. MODULE_DESCRIPTION("SPDIF dummy codec driver");
  79. MODULE_LICENSE("GPL");
  80. MODULE_ALIAS("platform:" DRV_NAME);