blob: 45833bc2a7e76716bcb67754e3188847063cdbd5 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * The driver for the EMU10K1 (SB Live!) based soundcards
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright (c) by James Courtier-Dutton <James@superbug.demon.co.uk>
7 * Added support for Audigy 2 Value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/init.h>
11#include <linux/pci.h>
12#include <linux/time.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040013#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <sound/core.h>
15#include <sound/emu10k1.h>
16#include <sound/initval.h>
17
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020018MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070019MODULE_DESCRIPTION("EMU10K1");
20MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Takashi Iwai111b0cd2017-06-09 15:11:58 +020022#if IS_ENABLED(CONFIG_SND_SEQUENCER)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#define ENABLE_SYNTH
24#include <sound/emu10k1_synth.h>
25#endif
26
27static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
28static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103029static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
Takashi Iwai6581f4e2006-05-17 17:14:51 +020030static int extin[SNDRV_CARDS];
31static int extout[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static int seq_ports[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4};
33static int max_synth_voices[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 64};
34static int max_buffer_size[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 128};
Rusty Russella67ff6a2011-12-15 13:49:36 +103035static bool enable_ir[SNDRV_CARDS];
Takashi Iwai6581f4e2006-05-17 17:14:51 +020036static uint subsystem[SNDRV_CARDS]; /* Force card subsystem model */
Jaroslav Kysela56385a12010-08-18 14:08:17 +020037static uint delay_pcm_irq[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 2};
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39module_param_array(index, int, NULL, 0444);
40MODULE_PARM_DESC(index, "Index value for the EMU10K1 soundcard.");
41module_param_array(id, charp, NULL, 0444);
42MODULE_PARM_DESC(id, "ID string for the EMU10K1 soundcard.");
43module_param_array(enable, bool, NULL, 0444);
44MODULE_PARM_DESC(enable, "Enable the EMU10K1 soundcard.");
45module_param_array(extin, int, NULL, 0444);
46MODULE_PARM_DESC(extin, "Available external inputs for FX8010. Zero=default.");
47module_param_array(extout, int, NULL, 0444);
48MODULE_PARM_DESC(extout, "Available external outputs for FX8010. Zero=default.");
49module_param_array(seq_ports, int, NULL, 0444);
50MODULE_PARM_DESC(seq_ports, "Allocated sequencer ports for internal synthesizer.");
51module_param_array(max_synth_voices, int, NULL, 0444);
52MODULE_PARM_DESC(max_synth_voices, "Maximum number of voices for WaveTable.");
53module_param_array(max_buffer_size, int, NULL, 0444);
54MODULE_PARM_DESC(max_buffer_size, "Maximum sample buffer size in MB.");
55module_param_array(enable_ir, bool, NULL, 0444);
56MODULE_PARM_DESC(enable_ir, "Enable IR.");
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +020057module_param_array(subsystem, uint, NULL, 0444);
58MODULE_PARM_DESC(subsystem, "Force card subsystem model.");
Jaroslav Kysela56385a12010-08-18 14:08:17 +020059module_param_array(delay_pcm_irq, uint, NULL, 0444);
60MODULE_PARM_DESC(delay_pcm_irq, "Delay PCM interrupt by specified number of samples (default 0).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070061/*
62 * Class 0401: 1102:0008 (rev 00) Subsystem: 1102:1001 -> Audigy2 Value Model:SB0400
63 */
Benoit Taine9baa3c32014-08-08 15:56:03 +020064static const struct pci_device_id snd_emu10k1_ids[] = {
Joe Perches0d7392e2009-06-24 23:18:02 -070065 { PCI_VDEVICE(CREATIVE, 0x0002), 0 }, /* EMU10K1 */
66 { PCI_VDEVICE(CREATIVE, 0x0004), 1 }, /* Audigy */
67 { PCI_VDEVICE(CREATIVE, 0x0008), 1 }, /* Audigy 2 Value SB0400 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 { 0, }
69};
70
71/*
72 * Audigy 2 Value notes:
73 * A_IOCFG Input (GPIO)
74 * 0x400 = Front analog jack plugged in. (Green socket)
75 * 0x1000 = Read analog jack plugged in. (Black socket)
76 * 0x2000 = Center/LFE analog jack plugged in. (Orange socket)
77 * A_IOCFG Output (GPIO)
78 * 0x60 = Sound out of front Left.
79 * Win sets it to 0xXX61
80 */
81
82MODULE_DEVICE_TABLE(pci, snd_emu10k1_ids);
83
Bill Pembertone23e7a12012-12-06 12:35:10 -050084static int snd_card_emu10k1_probe(struct pci_dev *pci,
85 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
87 static int dev;
Takashi Iwaieb4698f2005-11-17 14:50:13 +010088 struct snd_card *card;
89 struct snd_emu10k1 *emu;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#ifdef ENABLE_SYNTH
Takashi Iwaieb4698f2005-11-17 14:50:13 +010091 struct snd_seq_device *wave = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#endif
93 int err;
94
95 if (dev >= SNDRV_CARDS)
96 return -ENODEV;
97 if (!enable[dev]) {
98 dev++;
99 return -ENOENT;
100 }
101
Takashi Iwai60c57722014-01-29 14:20:19 +0100102 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
103 0, &card);
Takashi Iwaie58de7b2008-12-28 16:44:30 +0100104 if (err < 0)
105 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (max_buffer_size[dev] < 32)
107 max_buffer_size[dev] = 32;
108 else if (max_buffer_size[dev] > 1024)
109 max_buffer_size[dev] = 1024;
110 if ((err = snd_emu10k1_create(card, pci, extin[dev], extout[dev],
111 (long)max_buffer_size[dev] * 1024 * 1024,
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +0200112 enable_ir[dev], subsystem[dev],
Takashi Iwai09668b42005-11-17 16:14:10 +0100113 &emu)) < 0)
114 goto error;
115 card->private_data = emu;
Jaroslav Kysela56385a12010-08-18 14:08:17 +0200116 emu->delay_pcm_irq = delay_pcm_irq[dev] & 0x1f;
Lars-Peter Clausenbb814c32015-01-02 12:24:49 +0100117 if ((err = snd_emu10k1_pcm(emu, 0)) < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +0100118 goto error;
Lars-Peter Clausenbb814c32015-01-02 12:24:49 +0100119 if ((err = snd_emu10k1_pcm_mic(emu, 1)) < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +0100120 goto error;
Lars-Peter Clausenbb814c32015-01-02 12:24:49 +0100121 if ((err = snd_emu10k1_pcm_efx(emu, 2)) < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +0100122 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /* This stores the periods table. */
James Courtier-Duttone0474e52005-07-02 16:33:34 +0200124 if (emu->card_capabilities->ca0151_chip) { /* P16V */
Takashi Iwai6974f8a2019-11-05 16:18:55 +0100125 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, &pci->dev,
126 1024, &emu->p16v_buffer);
127 if (err < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +0100128 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 }
130
Takashi Iwai09668b42005-11-17 16:14:10 +0100131 if ((err = snd_emu10k1_mixer(emu, 0, 3)) < 0)
132 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Takashi Iwai09668b42005-11-17 16:14:10 +0100134 if ((err = snd_emu10k1_timer(emu, 0)) < 0)
135 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Lars-Peter Clausenbb814c32015-01-02 12:24:49 +0100137 if ((err = snd_emu10k1_pcm_multi(emu, 3)) < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +0100138 goto error;
139 if (emu->card_capabilities->ca0151_chip) { /* P16V */
Lars-Peter Clausenbb814c32015-01-02 12:24:49 +0100140 if ((err = snd_p16v_pcm(emu, 4)) < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +0100141 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143 if (emu->audigy) {
Takashi Iwai09668b42005-11-17 16:14:10 +0100144 if ((err = snd_emu10k1_audigy_midi(emu)) < 0)
145 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 } else {
Takashi Iwai09668b42005-11-17 16:14:10 +0100147 if ((err = snd_emu10k1_midi(emu)) < 0)
148 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
Lars-Peter Clausenbb814c32015-01-02 12:24:49 +0100150 if ((err = snd_emu10k1_fx8010_new(emu, 0)) < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +0100151 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152#ifdef ENABLE_SYNTH
153 if (snd_seq_device_new(card, 1, SNDRV_SEQ_DEV_ID_EMU10K1_SYNTH,
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100154 sizeof(struct snd_emu10k1_synth_arg), &wave) < 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 wave == NULL) {
Takashi Iwai6f002b02014-02-25 17:02:09 +0100156 dev_warn(emu->card->dev,
157 "can't initialize Emu10k1 wavetable synth\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 } else {
Takashi Iwaieb4698f2005-11-17 14:50:13 +0100159 struct snd_emu10k1_synth_arg *arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 arg = SNDRV_SEQ_DEVICE_ARGPTR(wave);
161 strcpy(wave->name, "Emu-10k1 Synth");
162 arg->hwptr = emu;
163 arg->index = 1;
164 arg->seq_ports = seq_ports[dev];
165 arg->max_voices = max_synth_voices[dev];
166 }
167#endif
168
Joe Perches75b1a8f2021-01-04 09:17:34 -0800169 strscpy(card->driver, emu->card_capabilities->driver,
Takashi Iwaid0226082015-04-27 13:00:09 +0200170 sizeof(card->driver));
Joe Perches75b1a8f2021-01-04 09:17:34 -0800171 strscpy(card->shortname, emu->card_capabilities->name,
Takashi Iwaid0226082015-04-27 13:00:09 +0200172 sizeof(card->shortname));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 snprintf(card->longname, sizeof(card->longname),
174 "%s (rev.%d, serial:0x%x) at 0x%lx, irq %i",
175 card->shortname, emu->revision, emu->serial, emu->port, emu->irq);
176
Takashi Iwai09668b42005-11-17 16:14:10 +0100177 if ((err = snd_card_register(card)) < 0)
178 goto error;
179
Takashi Iwaiaeaa6202016-11-02 18:38:39 +0100180 if (emu->card_capabilities->emu_model)
181 schedule_delayed_work(&emu->emu1010.firmware_work, 0);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 pci_set_drvdata(pci, card);
184 dev++;
185 return 0;
Takashi Iwai09668b42005-11-17 16:14:10 +0100186
187 error:
188 snd_card_free(card);
189 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
Bill Pembertone23e7a12012-12-06 12:35:10 -0500192static void snd_card_emu10k1_remove(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193{
194 snd_card_free(pci_get_drvdata(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Takashi Iwai09668b42005-11-17 16:14:10 +0100197
Takashi Iwaic7561cd2012-08-14 18:12:04 +0200198#ifdef CONFIG_PM_SLEEP
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200199static int snd_emu10k1_suspend(struct device *dev)
Takashi Iwai09668b42005-11-17 16:14:10 +0100200{
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200201 struct snd_card *card = dev_get_drvdata(dev);
Takashi Iwai09668b42005-11-17 16:14:10 +0100202 struct snd_emu10k1 *emu = card->private_data;
203
204 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
205
Takashi Iwai4f86f122012-11-22 17:18:49 +0100206 emu->suspend = 1;
207
Takashi Iwaiaeaa6202016-11-02 18:38:39 +0100208 cancel_delayed_work_sync(&emu->emu1010.firmware_work);
209
Takashi Iwai09668b42005-11-17 16:14:10 +0100210 snd_ac97_suspend(emu->ac97);
211
212 snd_emu10k1_efx_suspend(emu);
213 snd_emu10k1_suspend_regs(emu);
214 if (emu->card_capabilities->ca0151_chip)
215 snd_p16v_suspend(emu);
216
217 snd_emu10k1_done(emu);
Takashi Iwai09668b42005-11-17 16:14:10 +0100218 return 0;
219}
220
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200221static int snd_emu10k1_resume(struct device *dev)
Takashi Iwai09668b42005-11-17 16:14:10 +0100222{
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200223 struct snd_card *card = dev_get_drvdata(dev);
Takashi Iwai09668b42005-11-17 16:14:10 +0100224 struct snd_emu10k1 *emu = card->private_data;
225
Takashi Iwai09668b42005-11-17 16:14:10 +0100226 snd_emu10k1_resume_init(emu);
227 snd_emu10k1_efx_resume(emu);
228 snd_ac97_resume(emu->ac97);
229 snd_emu10k1_resume_regs(emu);
230
231 if (emu->card_capabilities->ca0151_chip)
232 snd_p16v_resume(emu);
233
Takashi Iwai4f86f122012-11-22 17:18:49 +0100234 emu->suspend = 0;
235
Takashi Iwai09668b42005-11-17 16:14:10 +0100236 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Takashi Iwaiaeaa6202016-11-02 18:38:39 +0100237
238 if (emu->card_capabilities->emu_model)
239 schedule_delayed_work(&emu->emu1010.firmware_work, 0);
240
Takashi Iwai09668b42005-11-17 16:14:10 +0100241 return 0;
242}
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200243
244static SIMPLE_DEV_PM_OPS(snd_emu10k1_pm, snd_emu10k1_suspend, snd_emu10k1_resume);
245#define SND_EMU10K1_PM_OPS &snd_emu10k1_pm
246#else
247#define SND_EMU10K1_PM_OPS NULL
Takashi Iwaic7561cd2012-08-14 18:12:04 +0200248#endif /* CONFIG_PM_SLEEP */
Takashi Iwai09668b42005-11-17 16:14:10 +0100249
Takashi Iwaie9f66d92012-04-24 12:25:00 +0200250static struct pci_driver emu10k1_driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +0200251 .name = KBUILD_MODNAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 .id_table = snd_emu10k1_ids,
253 .probe = snd_card_emu10k1_probe,
Bill Pembertone23e7a12012-12-06 12:35:10 -0500254 .remove = snd_card_emu10k1_remove,
Takashi Iwai68cb2b52012-07-02 15:20:37 +0200255 .driver = {
256 .pm = SND_EMU10K1_PM_OPS,
257 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Takashi Iwaie9f66d92012-04-24 12:25:00 +0200260module_pci_driver(emu10k1_driver);