spdif_transmitter.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. 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. .component_driver = {
  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. },
  41. };
  42. static struct snd_soc_dai_driver dit_stub_dai = {
  43. .name = "dit-hifi",
  44. .playback = {
  45. .stream_name = "Playback",
  46. .channels_min = 1,
  47. .channels_max = 384,
  48. .rates = STUB_RATES,
  49. .formats = STUB_FORMATS,
  50. },
  51. };
  52. static int spdif_dit_probe(struct platform_device *pdev)
  53. {
  54. return snd_soc_register_codec(&pdev->dev, &soc_codec_spdif_dit,
  55. &dit_stub_dai, 1);
  56. }
  57. static int spdif_dit_remove(struct platform_device *pdev)
  58. {
  59. snd_soc_unregister_codec(&pdev->dev);
  60. return 0;
  61. }
  62. #ifdef CONFIG_OF
  63. static const struct of_device_id spdif_dit_dt_ids[] = {
  64. { .compatible = "linux,spdif-dit", },
  65. { }
  66. };
  67. MODULE_DEVICE_TABLE(of, spdif_dit_dt_ids);
  68. #endif
  69. static struct platform_driver spdif_dit_driver = {
  70. .probe = spdif_dit_probe,
  71. .remove = spdif_dit_remove,
  72. .driver = {
  73. .name = DRV_NAME,
  74. .of_match_table = of_match_ptr(spdif_dit_dt_ids),
  75. },
  76. };
  77. module_platform_driver(spdif_dit_driver);
  78. MODULE_AUTHOR("Steve Chen <schen@mvista.com>");
  79. MODULE_DESCRIPTION("SPDIF dummy codec driver");
  80. MODULE_LICENSE("GPL");
  81. MODULE_ALIAS("platform:" DRV_NAME);