Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * The driver for the EMU10K1 (SB Live!) based soundcards |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 4 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Copyright (c) by James Courtier-Dutton <James@superbug.demon.co.uk> |
| 7 | * Added support for Audigy 2 Value. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/init.h> |
| 11 | #include <linux/pci.h> |
| 12 | #include <linux/time.h> |
Paul Gortmaker | 65a7721 | 2011-07-15 13:13:37 -0400 | [diff] [blame] | 13 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <sound/core.h> |
| 15 | #include <sound/emu10k1.h> |
| 16 | #include <sound/initval.h> |
| 17 | |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 18 | MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | MODULE_DESCRIPTION("EMU10K1"); |
| 20 | MODULE_LICENSE("GPL"); |
| 21 | MODULE_SUPPORTED_DEVICE("{{Creative Labs,SB Live!/PCI512/E-mu APS}," |
| 22 | "{Creative Labs,SB Audigy}}"); |
| 23 | |
Takashi Iwai | 111b0cd | 2017-06-09 15:11:58 +0200 | [diff] [blame] | 24 | #if IS_ENABLED(CONFIG_SND_SEQUENCER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #define ENABLE_SYNTH |
| 26 | #include <sound/emu10k1_synth.h> |
| 27 | #endif |
| 28 | |
| 29 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 30 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 31 | static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */ |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 32 | static int extin[SNDRV_CARDS]; |
| 33 | static int extout[SNDRV_CARDS]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | static int seq_ports[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4}; |
| 35 | static int max_synth_voices[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 64}; |
| 36 | static int max_buffer_size[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 128}; |
Rusty Russell | a67ff6a | 2011-12-15 13:49:36 +1030 | [diff] [blame] | 37 | static bool enable_ir[SNDRV_CARDS]; |
Takashi Iwai | 6581f4e | 2006-05-17 17:14:51 +0200 | [diff] [blame] | 38 | static uint subsystem[SNDRV_CARDS]; /* Force card subsystem model */ |
Jaroslav Kysela | 56385a1 | 2010-08-18 14:08:17 +0200 | [diff] [blame] | 39 | static uint delay_pcm_irq[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | |
| 41 | module_param_array(index, int, NULL, 0444); |
| 42 | MODULE_PARM_DESC(index, "Index value for the EMU10K1 soundcard."); |
| 43 | module_param_array(id, charp, NULL, 0444); |
| 44 | MODULE_PARM_DESC(id, "ID string for the EMU10K1 soundcard."); |
| 45 | module_param_array(enable, bool, NULL, 0444); |
| 46 | MODULE_PARM_DESC(enable, "Enable the EMU10K1 soundcard."); |
| 47 | module_param_array(extin, int, NULL, 0444); |
| 48 | MODULE_PARM_DESC(extin, "Available external inputs for FX8010. Zero=default."); |
| 49 | module_param_array(extout, int, NULL, 0444); |
| 50 | MODULE_PARM_DESC(extout, "Available external outputs for FX8010. Zero=default."); |
| 51 | module_param_array(seq_ports, int, NULL, 0444); |
| 52 | MODULE_PARM_DESC(seq_ports, "Allocated sequencer ports for internal synthesizer."); |
| 53 | module_param_array(max_synth_voices, int, NULL, 0444); |
| 54 | MODULE_PARM_DESC(max_synth_voices, "Maximum number of voices for WaveTable."); |
| 55 | module_param_array(max_buffer_size, int, NULL, 0444); |
| 56 | MODULE_PARM_DESC(max_buffer_size, "Maximum sample buffer size in MB."); |
| 57 | module_param_array(enable_ir, bool, NULL, 0444); |
| 58 | MODULE_PARM_DESC(enable_ir, "Enable IR."); |
James Courtier-Dutton | e66bc8b | 2005-07-06 22:21:51 +0200 | [diff] [blame] | 59 | module_param_array(subsystem, uint, NULL, 0444); |
| 60 | MODULE_PARM_DESC(subsystem, "Force card subsystem model."); |
Jaroslav Kysela | 56385a1 | 2010-08-18 14:08:17 +0200 | [diff] [blame] | 61 | module_param_array(delay_pcm_irq, uint, NULL, 0444); |
| 62 | MODULE_PARM_DESC(delay_pcm_irq, "Delay PCM interrupt by specified number of samples (default 0)."); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | /* |
| 64 | * Class 0401: 1102:0008 (rev 00) Subsystem: 1102:1001 -> Audigy2 Value Model:SB0400 |
| 65 | */ |
Benoit Taine | 9baa3c3 | 2014-08-08 15:56:03 +0200 | [diff] [blame] | 66 | static const struct pci_device_id snd_emu10k1_ids[] = { |
Joe Perches | 0d7392e | 2009-06-24 23:18:02 -0700 | [diff] [blame] | 67 | { PCI_VDEVICE(CREATIVE, 0x0002), 0 }, /* EMU10K1 */ |
| 68 | { PCI_VDEVICE(CREATIVE, 0x0004), 1 }, /* Audigy */ |
| 69 | { PCI_VDEVICE(CREATIVE, 0x0008), 1 }, /* Audigy 2 Value SB0400 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { 0, } |
| 71 | }; |
| 72 | |
| 73 | /* |
| 74 | * Audigy 2 Value notes: |
| 75 | * A_IOCFG Input (GPIO) |
| 76 | * 0x400 = Front analog jack plugged in. (Green socket) |
| 77 | * 0x1000 = Read analog jack plugged in. (Black socket) |
| 78 | * 0x2000 = Center/LFE analog jack plugged in. (Orange socket) |
| 79 | * A_IOCFG Output (GPIO) |
| 80 | * 0x60 = Sound out of front Left. |
| 81 | * Win sets it to 0xXX61 |
| 82 | */ |
| 83 | |
| 84 | MODULE_DEVICE_TABLE(pci, snd_emu10k1_ids); |
| 85 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 86 | static int snd_card_emu10k1_probe(struct pci_dev *pci, |
| 87 | const struct pci_device_id *pci_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | { |
| 89 | static int dev; |
Takashi Iwai | eb4698f | 2005-11-17 14:50:13 +0100 | [diff] [blame] | 90 | struct snd_card *card; |
| 91 | struct snd_emu10k1 *emu; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #ifdef ENABLE_SYNTH |
Takashi Iwai | eb4698f | 2005-11-17 14:50:13 +0100 | [diff] [blame] | 93 | struct snd_seq_device *wave = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | #endif |
| 95 | int err; |
| 96 | |
| 97 | if (dev >= SNDRV_CARDS) |
| 98 | return -ENODEV; |
| 99 | if (!enable[dev]) { |
| 100 | dev++; |
| 101 | return -ENOENT; |
| 102 | } |
| 103 | |
Takashi Iwai | 60c5772 | 2014-01-29 14:20:19 +0100 | [diff] [blame] | 104 | err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE, |
| 105 | 0, &card); |
Takashi Iwai | e58de7b | 2008-12-28 16:44:30 +0100 | [diff] [blame] | 106 | if (err < 0) |
| 107 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | if (max_buffer_size[dev] < 32) |
| 109 | max_buffer_size[dev] = 32; |
| 110 | else if (max_buffer_size[dev] > 1024) |
| 111 | max_buffer_size[dev] = 1024; |
| 112 | if ((err = snd_emu10k1_create(card, pci, extin[dev], extout[dev], |
| 113 | (long)max_buffer_size[dev] * 1024 * 1024, |
James Courtier-Dutton | e66bc8b | 2005-07-06 22:21:51 +0200 | [diff] [blame] | 114 | enable_ir[dev], subsystem[dev], |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 115 | &emu)) < 0) |
| 116 | goto error; |
| 117 | card->private_data = emu; |
Jaroslav Kysela | 56385a1 | 2010-08-18 14:08:17 +0200 | [diff] [blame] | 118 | emu->delay_pcm_irq = delay_pcm_irq[dev] & 0x1f; |
Lars-Peter Clausen | bb814c3 | 2015-01-02 12:24:49 +0100 | [diff] [blame] | 119 | if ((err = snd_emu10k1_pcm(emu, 0)) < 0) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 120 | goto error; |
Lars-Peter Clausen | bb814c3 | 2015-01-02 12:24:49 +0100 | [diff] [blame] | 121 | if ((err = snd_emu10k1_pcm_mic(emu, 1)) < 0) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 122 | goto error; |
Lars-Peter Clausen | bb814c3 | 2015-01-02 12:24:49 +0100 | [diff] [blame] | 123 | if ((err = snd_emu10k1_pcm_efx(emu, 2)) < 0) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 124 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | /* This stores the periods table. */ |
James Courtier-Dutton | e0474e5 | 2005-07-02 16:33:34 +0200 | [diff] [blame] | 126 | if (emu->card_capabilities->ca0151_chip) { /* P16V */ |
Takashi Iwai | 6974f8a | 2019-11-05 16:18:55 +0100 | [diff] [blame] | 127 | err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, &pci->dev, |
| 128 | 1024, &emu->p16v_buffer); |
| 129 | if (err < 0) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 130 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | } |
| 132 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 133 | if ((err = snd_emu10k1_mixer(emu, 0, 3)) < 0) |
| 134 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 136 | if ((err = snd_emu10k1_timer(emu, 0)) < 0) |
| 137 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
Lars-Peter Clausen | bb814c3 | 2015-01-02 12:24:49 +0100 | [diff] [blame] | 139 | if ((err = snd_emu10k1_pcm_multi(emu, 3)) < 0) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 140 | goto error; |
| 141 | if (emu->card_capabilities->ca0151_chip) { /* P16V */ |
Lars-Peter Clausen | bb814c3 | 2015-01-02 12:24:49 +0100 | [diff] [blame] | 142 | if ((err = snd_p16v_pcm(emu, 4)) < 0) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 143 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | } |
| 145 | if (emu->audigy) { |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 146 | if ((err = snd_emu10k1_audigy_midi(emu)) < 0) |
| 147 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } else { |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 149 | if ((err = snd_emu10k1_midi(emu)) < 0) |
| 150 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | } |
Lars-Peter Clausen | bb814c3 | 2015-01-02 12:24:49 +0100 | [diff] [blame] | 152 | if ((err = snd_emu10k1_fx8010_new(emu, 0)) < 0) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 153 | goto error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | #ifdef ENABLE_SYNTH |
| 155 | if (snd_seq_device_new(card, 1, SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH, |
Takashi Iwai | eb4698f | 2005-11-17 14:50:13 +0100 | [diff] [blame] | 156 | sizeof(struct snd_emu10k1_synth_arg), &wave) < 0 || |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | wave == NULL) { |
Takashi Iwai | 6f002b0 | 2014-02-25 17:02:09 +0100 | [diff] [blame] | 158 | dev_warn(emu->card->dev, |
| 159 | "can't initialize Emu10k1 wavetable synth\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } else { |
Takashi Iwai | eb4698f | 2005-11-17 14:50:13 +0100 | [diff] [blame] | 161 | struct snd_emu10k1_synth_arg *arg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | arg = SNDRV_SEQ_DEVICE_ARGPTR(wave); |
| 163 | strcpy(wave->name, "Emu-10k1 Synth"); |
| 164 | arg->hwptr = emu; |
| 165 | arg->index = 1; |
| 166 | arg->seq_ports = seq_ports[dev]; |
| 167 | arg->max_voices = max_synth_voices[dev]; |
| 168 | } |
| 169 | #endif |
| 170 | |
Joe Perches | 75b1a8f | 2021-01-04 09:17:34 -0800 | [diff] [blame] | 171 | strscpy(card->driver, emu->card_capabilities->driver, |
Takashi Iwai | d022608 | 2015-04-27 13:00:09 +0200 | [diff] [blame] | 172 | sizeof(card->driver)); |
Joe Perches | 75b1a8f | 2021-01-04 09:17:34 -0800 | [diff] [blame] | 173 | strscpy(card->shortname, emu->card_capabilities->name, |
Takashi Iwai | d022608 | 2015-04-27 13:00:09 +0200 | [diff] [blame] | 174 | sizeof(card->shortname)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | snprintf(card->longname, sizeof(card->longname), |
| 176 | "%s (rev.%d, serial:0x%x) at 0x%lx, irq %i", |
| 177 | card->shortname, emu->revision, emu->serial, emu->port, emu->irq); |
| 178 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 179 | if ((err = snd_card_register(card)) < 0) |
| 180 | goto error; |
| 181 | |
Takashi Iwai | aeaa620 | 2016-11-02 18:38:39 +0100 | [diff] [blame] | 182 | if (emu->card_capabilities->emu_model) |
| 183 | schedule_delayed_work(&emu->emu1010.firmware_work, 0); |
| 184 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | pci_set_drvdata(pci, card); |
| 186 | dev++; |
| 187 | return 0; |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 188 | |
| 189 | error: |
| 190 | snd_card_free(card); |
| 191 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 194 | static void snd_card_emu10k1_remove(struct pci_dev *pci) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
| 196 | snd_card_free(pci_get_drvdata(pci)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 199 | |
Takashi Iwai | c7561cd | 2012-08-14 18:12:04 +0200 | [diff] [blame] | 200 | #ifdef CONFIG_PM_SLEEP |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 201 | static int snd_emu10k1_suspend(struct device *dev) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 202 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 203 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 204 | struct snd_emu10k1 *emu = card->private_data; |
| 205 | |
| 206 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
| 207 | |
Takashi Iwai | 4f86f12 | 2012-11-22 17:18:49 +0100 | [diff] [blame] | 208 | emu->suspend = 1; |
| 209 | |
Takashi Iwai | aeaa620 | 2016-11-02 18:38:39 +0100 | [diff] [blame] | 210 | cancel_delayed_work_sync(&emu->emu1010.firmware_work); |
| 211 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 212 | snd_ac97_suspend(emu->ac97); |
| 213 | |
| 214 | snd_emu10k1_efx_suspend(emu); |
| 215 | snd_emu10k1_suspend_regs(emu); |
| 216 | if (emu->card_capabilities->ca0151_chip) |
| 217 | snd_p16v_suspend(emu); |
| 218 | |
| 219 | snd_emu10k1_done(emu); |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 220 | return 0; |
| 221 | } |
| 222 | |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 223 | static int snd_emu10k1_resume(struct device *dev) |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 224 | { |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 225 | struct snd_card *card = dev_get_drvdata(dev); |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 226 | struct snd_emu10k1 *emu = card->private_data; |
| 227 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 228 | snd_emu10k1_resume_init(emu); |
| 229 | snd_emu10k1_efx_resume(emu); |
| 230 | snd_ac97_resume(emu->ac97); |
| 231 | snd_emu10k1_resume_regs(emu); |
| 232 | |
| 233 | if (emu->card_capabilities->ca0151_chip) |
| 234 | snd_p16v_resume(emu); |
| 235 | |
Takashi Iwai | 4f86f12 | 2012-11-22 17:18:49 +0100 | [diff] [blame] | 236 | emu->suspend = 0; |
| 237 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 238 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
Takashi Iwai | aeaa620 | 2016-11-02 18:38:39 +0100 | [diff] [blame] | 239 | |
| 240 | if (emu->card_capabilities->emu_model) |
| 241 | schedule_delayed_work(&emu->emu1010.firmware_work, 0); |
| 242 | |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 243 | return 0; |
| 244 | } |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 245 | |
| 246 | static SIMPLE_DEV_PM_OPS(snd_emu10k1_pm, snd_emu10k1_suspend, snd_emu10k1_resume); |
| 247 | #define SND_EMU10K1_PM_OPS &snd_emu10k1_pm |
| 248 | #else |
| 249 | #define SND_EMU10K1_PM_OPS NULL |
Takashi Iwai | c7561cd | 2012-08-14 18:12:04 +0200 | [diff] [blame] | 250 | #endif /* CONFIG_PM_SLEEP */ |
Takashi Iwai | 09668b4 | 2005-11-17 16:14:10 +0100 | [diff] [blame] | 251 | |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 252 | static struct pci_driver emu10k1_driver = { |
Takashi Iwai | 3733e42 | 2011-06-10 16:20:20 +0200 | [diff] [blame] | 253 | .name = KBUILD_MODNAME, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | .id_table = snd_emu10k1_ids, |
| 255 | .probe = snd_card_emu10k1_probe, |
Bill Pemberton | e23e7a1 | 2012-12-06 12:35:10 -0500 | [diff] [blame] | 256 | .remove = snd_card_emu10k1_remove, |
Takashi Iwai | 68cb2b5 | 2012-07-02 15:20:37 +0200 | [diff] [blame] | 257 | .driver = { |
| 258 | .pm = SND_EMU10K1_PM_OPS, |
| 259 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | }; |
| 261 | |
Takashi Iwai | e9f66d9 | 2012-04-24 12:25:00 +0200 | [diff] [blame] | 262 | module_pci_driver(emu10k1_driver); |