virtuoso.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * C-Media CMI8788 driver for Asus Xonar cards
  3. *
  4. * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
  5. *
  6. *
  7. * This driver is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License, version 2.
  9. *
  10. * This driver is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this driver; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <linux/pci.h>
  20. #include <linux/delay.h>
  21. #include <linux/module.h>
  22. #include <sound/core.h>
  23. #include <sound/initval.h>
  24. #include <sound/pcm.h>
  25. #include "xonar.h"
  26. MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>");
  27. MODULE_DESCRIPTION("Asus Virtuoso driver");
  28. MODULE_LICENSE("GPL v2");
  29. MODULE_SUPPORTED_DEVICE("{{Asus,AV66},{Asus,AV100},{Asus,AV200}}");
  30. static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
  31. static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
  32. static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
  33. module_param_array(index, int, NULL, 0444);
  34. MODULE_PARM_DESC(index, "card index");
  35. module_param_array(id, charp, NULL, 0444);
  36. MODULE_PARM_DESC(id, "ID string");
  37. module_param_array(enable, bool, NULL, 0444);
  38. MODULE_PARM_DESC(enable, "enable card");
  39. static DEFINE_PCI_DEVICE_TABLE(xonar_ids) = {
  40. { OXYGEN_PCI_SUBID(0x1043, 0x8269) },
  41. { OXYGEN_PCI_SUBID(0x1043, 0x8275) },
  42. { OXYGEN_PCI_SUBID(0x1043, 0x82b7) },
  43. { OXYGEN_PCI_SUBID(0x1043, 0x8314) },
  44. { OXYGEN_PCI_SUBID(0x1043, 0x8327) },
  45. { OXYGEN_PCI_SUBID(0x1043, 0x834f) },
  46. { OXYGEN_PCI_SUBID(0x1043, 0x835c) },
  47. { OXYGEN_PCI_SUBID(0x1043, 0x835d) },
  48. { OXYGEN_PCI_SUBID(0x1043, 0x835e) },
  49. { OXYGEN_PCI_SUBID(0x1043, 0x838e) },
  50. { OXYGEN_PCI_SUBID_BROKEN_EEPROM },
  51. { }
  52. };
  53. MODULE_DEVICE_TABLE(pci, xonar_ids);
  54. static int __devinit get_xonar_model(struct oxygen *chip,
  55. const struct pci_device_id *id)
  56. {
  57. if (get_xonar_pcm179x_model(chip, id) >= 0)
  58. return 0;
  59. if (get_xonar_cs43xx_model(chip, id) >= 0)
  60. return 0;
  61. if (get_xonar_wm87x6_model(chip, id) >= 0)
  62. return 0;
  63. return -EINVAL;
  64. }
  65. static int __devinit xonar_probe(struct pci_dev *pci,
  66. const struct pci_device_id *pci_id)
  67. {
  68. static int dev;
  69. int err;
  70. if (dev >= SNDRV_CARDS)
  71. return -ENODEV;
  72. if (!enable[dev]) {
  73. ++dev;
  74. return -ENOENT;
  75. }
  76. err = oxygen_pci_probe(pci, index[dev], id[dev], THIS_MODULE,
  77. xonar_ids, get_xonar_model);
  78. if (err >= 0)
  79. ++dev;
  80. return err;
  81. }
  82. static struct pci_driver xonar_driver = {
  83. .name = KBUILD_MODNAME,
  84. .id_table = xonar_ids,
  85. .probe = xonar_probe,
  86. .remove = __devexit_p(oxygen_pci_remove),
  87. #ifdef CONFIG_PM
  88. .suspend = oxygen_pci_suspend,
  89. .resume = oxygen_pci_resume,
  90. #endif
  91. .shutdown = oxygen_pci_shutdown,
  92. };
  93. static int __init alsa_card_xonar_init(void)
  94. {
  95. return pci_register_driver(&xonar_driver);
  96. }
  97. static void __exit alsa_card_xonar_exit(void)
  98. {
  99. pci_unregister_driver(&xonar_driver);
  100. }
  101. module_init(alsa_card_xonar_init)
  102. module_exit(alsa_card_xonar_exit)