spdif_transmitter.c 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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_192000
  25. #define STUB_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | \
  26. SNDRV_PCM_FMTBIT_S20_3LE | \
  27. SNDRV_PCM_FMTBIT_S24_LE | \
  28. SNDRV_PCM_FMTBIT_S32_LE)
  29. static const struct snd_soc_dapm_widget dit_widgets[] = {
  30. SND_SOC_DAPM_OUTPUT("spdif-out"),
  31. };
  32. static const struct snd_soc_dapm_route dit_routes[] = {
  33. { "spdif-out", NULL, "Playback" },
  34. };
  35. static struct snd_soc_component_driver soc_codec_spdif_dit = {
  36. .dapm_widgets = dit_widgets,
  37. .num_dapm_widgets = ARRAY_SIZE(dit_widgets),
  38. .dapm_routes = dit_routes,
  39. .num_dapm_routes = ARRAY_SIZE(dit_routes),
  40. .idle_bias_on = 1,
  41. .use_pmdown_time = 1,
  42. .endianness = 1,
  43. .non_legacy_dai_naming = 1,
  44. };
  45. static struct snd_soc_dai_driver dit_stub_dai = {
  46. .name = "dit-hifi",
  47. .playback = {
  48. .stream_name = "Playback",
  49. .channels_min = 1,
  50. .channels_max = 384,
  51. .rates = STUB_RATES,
  52. .formats = STUB_FORMATS,
  53. },
  54. };
  55. static int spdif_dit_probe(struct platform_device *pdev)
  56. {
  57. return devm_snd_soc_register_component(&pdev->dev,
  58. &soc_codec_spdif_dit,
  59. &dit_stub_dai, 1);
  60. }
  61. #ifdef CONFIG_OF
  62. static const struct of_device_id spdif_dit_dt_ids[] = {
  63. { .compatible = "linux,spdif-dit", },
  64. { }
  65. };
  66. MODULE_DEVICE_TABLE(of, spdif_dit_dt_ids);
  67. #endif
  68. static struct platform_driver spdif_dit_driver = {
  69. .probe = spdif_dit_probe,
  70. .driver = {
  71. .name = DRV_NAME,
  72. .of_match_table = of_match_ptr(spdif_dit_dt_ids),
  73. },
  74. };
  75. module_platform_driver(spdif_dit_driver);
  76. MODULE_AUTHOR("Steve Chen <schen@mvista.com>");
  77. MODULE_DESCRIPTION("SPDIF dummy codec driver");
  78. MODULE_LICENSE("GPL");
  79. MODULE_ALIAS("platform:" DRV_NAME);