| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * C-Media CMI8788 driver for Asus Xonar cards | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) Clemens Ladisch <clemens@ladisch.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This driver is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  *  it under the terms of the GNU General Public License, version 2. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  This driver is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  *  but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  *  GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  *  along with this driver; if not, write to the Free Software | 
					
						
							|  |  |  |  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <linux/pci.h>
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							| 
									
										
										
										
											2011-07-15 12:38:28 -04:00
										 |  |  | #include <linux/module.h>
 | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | #include <sound/core.h>
 | 
					
						
							|  |  |  | #include <sound/initval.h>
 | 
					
						
							|  |  |  | #include <sound/pcm.h>
 | 
					
						
							| 
									
										
										
										
											2009-09-28 11:11:27 +02:00
										 |  |  | #include "xonar.h"
 | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>"); | 
					
						
							| 
									
										
										
										
											2010-10-04 13:17:26 +02:00
										 |  |  | MODULE_DESCRIPTION("Asus Virtuoso driver"); | 
					
						
							| 
									
										
										
										
											2008-05-13 09:18:27 +02:00
										 |  |  | MODULE_LICENSE("GPL v2"); | 
					
						
							| 
									
										
										
										
											2010-10-04 13:17:26 +02:00
										 |  |  | MODULE_SUPPORTED_DEVICE("{{Asus,AV66},{Asus,AV100},{Asus,AV200}}"); | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; | 
					
						
							|  |  |  | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; | 
					
						
							| 
									
										
										
										
											2011-12-15 13:49:36 +10:30
										 |  |  | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | module_param_array(index, int, NULL, 0444); | 
					
						
							|  |  |  | MODULE_PARM_DESC(index, "card index"); | 
					
						
							|  |  |  | module_param_array(id, charp, NULL, 0444); | 
					
						
							|  |  |  | MODULE_PARM_DESC(id, "ID string"); | 
					
						
							|  |  |  | module_param_array(enable, bool, NULL, 0444); | 
					
						
							|  |  |  | MODULE_PARM_DESC(enable, "enable card"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-08 15:56:03 +02:00
										 |  |  | static const struct pci_device_id xonar_ids[] = { | 
					
						
							| 
									
										
										
										
											2009-09-28 11:11:27 +02:00
										 |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x8269) }, | 
					
						
							|  |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x8275) }, | 
					
						
							|  |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x82b7) }, | 
					
						
							|  |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x8314) }, | 
					
						
							|  |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x8327) }, | 
					
						
							|  |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x834f) }, | 
					
						
							|  |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x835c) }, | 
					
						
							|  |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x835d) }, | 
					
						
							| 
									
										
										
										
											2010-10-04 13:22:51 +02:00
										 |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x835e) }, | 
					
						
							| 
									
										
										
										
											2010-01-18 15:44:04 +01:00
										 |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x838e) }, | 
					
						
							| 
									
										
										
										
											2014-09-10 19:58:25 +01:00
										 |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x8428) }, | 
					
						
							| 
									
										
										
										
											2012-09-09 05:14:15 -04:00
										 |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x8522) }, | 
					
						
							| 
									
										
										
										
											2014-08-04 15:17:55 +02:00
										 |  |  | 	{ OXYGEN_PCI_SUBID(0x1043, 0x85f4) }, | 
					
						
							| 
									
										
										
										
											2009-02-19 08:42:44 +01:00
										 |  |  | 	{ OXYGEN_PCI_SUBID_BROKEN_EEPROM }, | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | 	{ } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | MODULE_DEVICE_TABLE(pci, xonar_ids); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:20 -05:00
										 |  |  | static int get_xonar_model(struct oxygen *chip, | 
					
						
							|  |  |  | 			   const struct pci_device_id *id) | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2009-09-28 11:11:27 +02:00
										 |  |  | 	if (get_xonar_pcm179x_model(chip, id) >= 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	if (get_xonar_cs43xx_model(chip, id) >= 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2010-01-18 15:44:04 +01:00
										 |  |  | 	if (get_xonar_wm87x6_model(chip, id) >= 0) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2009-09-28 11:11:27 +02:00
										 |  |  | 	return -EINVAL; | 
					
						
							| 
									
										
										
										
											2009-02-19 08:42:44 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:20 -05:00
										 |  |  | static int xonar_probe(struct pci_dev *pci, | 
					
						
							|  |  |  | 		       const struct pci_device_id *pci_id) | 
					
						
							| 
									
										
										
										
											2009-02-19 08:42:44 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | 	static int dev; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (dev >= SNDRV_CARDS) | 
					
						
							|  |  |  | 		return -ENODEV; | 
					
						
							|  |  |  | 	if (!enable[dev]) { | 
					
						
							|  |  |  | 		++dev; | 
					
						
							|  |  |  | 		return -ENOENT; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2009-02-19 08:37:13 +01:00
										 |  |  | 	err = oxygen_pci_probe(pci, index[dev], id[dev], THIS_MODULE, | 
					
						
							| 
									
										
										
										
											2009-02-19 08:42:44 +01:00
										 |  |  | 			       xonar_ids, get_xonar_model); | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | 	if (err >= 0) | 
					
						
							|  |  |  | 		++dev; | 
					
						
							|  |  |  | 	return err; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static struct pci_driver xonar_driver = { | 
					
						
							| 
									
										
										
										
											2011-06-10 16:20:20 +02:00
										 |  |  | 	.name = KBUILD_MODNAME, | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | 	.id_table = xonar_ids, | 
					
						
							|  |  |  | 	.probe = xonar_probe, | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:20 -05:00
										 |  |  | 	.remove = oxygen_pci_remove, | 
					
						
							| 
									
										
										
										
											2012-08-14 18:12:04 +02:00
										 |  |  | #ifdef CONFIG_PM_SLEEP
 | 
					
						
							| 
									
										
										
										
											2012-07-02 15:20:37 +02:00
										 |  |  | 	.driver = { | 
					
						
							|  |  |  | 		.pm = &oxygen_pci_pm, | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2008-05-13 09:24:39 +02:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-09-07 13:37:10 +02:00
										 |  |  | 	.shutdown = oxygen_pci_shutdown, | 
					
						
							| 
									
										
										
										
											2007-12-23 19:52:08 +01:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-24 12:25:00 +02:00
										 |  |  | module_pci_driver(xonar_driver); |