e800_wm9712.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /*
  2. * e800-wm9712.c -- SoC audio for e800
  3. *
  4. * Based on tosa.c
  5. *
  6. * Copyright 2007 (c) Ian Molton <spyro@f2s.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify it
  9. * under the terms of the GNU General Public License as published by the
  10. * Free Software Foundation; version 2 ONLY.
  11. *
  12. */
  13. #include <linux/module.h>
  14. #include <linux/moduleparam.h>
  15. #include <linux/device.h>
  16. #include <sound/core.h>
  17. #include <sound/pcm.h>
  18. #include <sound/soc.h>
  19. #include <sound/soc-dapm.h>
  20. #include <asm/mach-types.h>
  21. #include <mach/pxa-regs.h>
  22. #include <mach/hardware.h>
  23. #include <mach/audio.h>
  24. #include "../codecs/wm9712.h"
  25. #include "pxa2xx-pcm.h"
  26. #include "pxa2xx-ac97.h"
  27. static struct snd_soc_card e800;
  28. static struct snd_soc_dai_link e800_dai[] = {
  29. {
  30. .name = "AC97 Aux",
  31. .stream_name = "AC97 Aux",
  32. .cpu_dai = &pxa_ac97_dai[PXA2XX_DAI_AC97_AUX],
  33. .codec_dai = &wm9712_dai[WM9712_DAI_AC97_AUX],
  34. },
  35. };
  36. static struct snd_soc_card e800 = {
  37. .name = "Toshiba e800",
  38. .platform = &pxa2xx_soc_platform,
  39. .dai_link = e800_dai,
  40. .num_links = ARRAY_SIZE(e800_dai),
  41. };
  42. static struct snd_soc_device e800_snd_devdata = {
  43. .card = &e800,
  44. .codec_dev = &soc_codec_dev_wm9712,
  45. };
  46. static struct platform_device *e800_snd_device;
  47. static int __init e800_init(void)
  48. {
  49. int ret;
  50. if (!machine_is_e800())
  51. return -ENODEV;
  52. e800_snd_device = platform_device_alloc("soc-audio", -1);
  53. if (!e800_snd_device)
  54. return -ENOMEM;
  55. platform_set_drvdata(e800_snd_device, &e800_snd_devdata);
  56. e800_snd_devdata.dev = &e800_snd_device->dev;
  57. ret = platform_device_add(e800_snd_device);
  58. if (ret)
  59. platform_device_put(e800_snd_device);
  60. return ret;
  61. }
  62. static void __exit e800_exit(void)
  63. {
  64. platform_device_unregister(e800_snd_device);
  65. }
  66. module_init(e800_init);
  67. module_exit(e800_exit);
  68. /* Module information */
  69. MODULE_AUTHOR("Ian Molton <spyro@f2s.com>");
  70. MODULE_DESCRIPTION("ALSA SoC driver for e800");
  71. MODULE_LICENSE("GPL");