[ALSA] es968 - Add PM support
[linux-2.6] / sound / isa / sb / sb16.c
1 /*
2  *  Driver for SoundBlaster 16/AWE32/AWE64 soundcards
3  *  Copyright (c) by Jaroslav Kysela <perex@suse.cz>
4  *
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19  *
20  */
21
22 #include <sound/driver.h>
23 #include <asm/dma.h>
24 #include <linux/init.h>
25 #include <linux/slab.h>
26 #include <linux/pnp.h>
27 #include <linux/err.h>
28 #include <linux/platform_device.h>
29 #include <linux/moduleparam.h>
30 #include <sound/core.h>
31 #include <sound/sb.h>
32 #include <sound/sb16_csp.h>
33 #include <sound/mpu401.h>
34 #include <sound/opl3.h>
35 #include <sound/emu8000.h>
36 #include <sound/seq_device.h>
37 #define SNDRV_LEGACY_FIND_FREE_IRQ
38 #define SNDRV_LEGACY_FIND_FREE_DMA
39 #include <sound/initval.h>
40
41 #ifdef SNDRV_SBAWE
42 #define PFX "sbawe: "
43 #else
44 #define PFX "sb16: "
45 #endif
46
47 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
48 MODULE_LICENSE("GPL");
49 #ifndef SNDRV_SBAWE
50 MODULE_DESCRIPTION("Sound Blaster 16");
51 MODULE_SUPPORTED_DEVICE("{{Creative Labs,SB 16},"
52                 "{Creative Labs,SB Vibra16S},"
53                 "{Creative Labs,SB Vibra16C},"
54                 "{Creative Labs,SB Vibra16CL},"
55                 "{Creative Labs,SB Vibra16X}}");
56 #else
57 MODULE_DESCRIPTION("Sound Blaster AWE");
58 MODULE_SUPPORTED_DEVICE("{{Creative Labs,SB AWE 32},"
59                 "{Creative Labs,SB AWE 64},"
60                 "{Creative Labs,SB AWE 64 Gold}}");
61 #endif
62
63 #if 0
64 #define SNDRV_DEBUG_IRQ
65 #endif
66
67 #if defined(SNDRV_SBAWE) && (defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE)))
68 #define SNDRV_SBAWE_EMU8000
69 #endif
70
71 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
72 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
73 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_ISAPNP; /* Enable this card */
74 #ifdef CONFIG_PNP
75 static int isapnp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
76 #endif
77 static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;     /* 0x220,0x240,0x260,0x280 */
78 static long mpu_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; /* 0x330,0x300 */
79 static long fm_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
80 #ifdef SNDRV_SBAWE_EMU8000
81 static long awe_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
82 #endif
83 static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;        /* 5,7,9,10 */
84 static int dma8[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;       /* 0,1,3 */
85 static int dma16[SNDRV_CARDS] = SNDRV_DEFAULT_DMA;      /* 5,6,7 */
86 static int mic_agc[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 1};
87 #ifdef CONFIG_SND_SB16_CSP
88 static int csp[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};
89 #endif
90 #ifdef SNDRV_SBAWE_EMU8000
91 static int seq_ports[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 4};
92 #endif
93
94 module_param_array(index, int, NULL, 0444);
95 MODULE_PARM_DESC(index, "Index value for SoundBlaster 16 soundcard.");
96 module_param_array(id, charp, NULL, 0444);
97 MODULE_PARM_DESC(id, "ID string for SoundBlaster 16 soundcard.");
98 module_param_array(enable, bool, NULL, 0444);
99 MODULE_PARM_DESC(enable, "Enable SoundBlaster 16 soundcard.");
100 #ifdef CONFIG_PNP
101 module_param_array(isapnp, bool, NULL, 0444);
102 MODULE_PARM_DESC(isapnp, "PnP detection for specified soundcard.");
103 #endif
104 module_param_array(port, long, NULL, 0444);
105 MODULE_PARM_DESC(port, "Port # for SB16 driver.");
106 module_param_array(mpu_port, long, NULL, 0444);
107 MODULE_PARM_DESC(mpu_port, "MPU-401 port # for SB16 driver.");
108 module_param_array(fm_port, long, NULL, 0444);
109 MODULE_PARM_DESC(fm_port, "FM port # for SB16 PnP driver.");
110 #ifdef SNDRV_SBAWE_EMU8000
111 module_param_array(awe_port, long, NULL, 0444);
112 MODULE_PARM_DESC(awe_port, "AWE port # for SB16 PnP driver.");
113 #endif
114 module_param_array(irq, int, NULL, 0444);
115 MODULE_PARM_DESC(irq, "IRQ # for SB16 driver.");
116 module_param_array(dma8, int, NULL, 0444);
117 MODULE_PARM_DESC(dma8, "8-bit DMA # for SB16 driver.");
118 module_param_array(dma16, int, NULL, 0444);
119 MODULE_PARM_DESC(dma16, "16-bit DMA # for SB16 driver.");
120 module_param_array(mic_agc, int, NULL, 0444);
121 MODULE_PARM_DESC(mic_agc, "Mic Auto-Gain-Control switch.");
122 #ifdef CONFIG_SND_SB16_CSP
123 module_param_array(csp, int, NULL, 0444);
124 MODULE_PARM_DESC(csp, "ASP/CSP chip support.");
125 #endif
126 #ifdef SNDRV_SBAWE_EMU8000
127 module_param_array(seq_ports, int, NULL, 0444);
128 MODULE_PARM_DESC(seq_ports, "Number of sequencer ports for WaveTable synth.");
129 #endif
130
131 struct snd_card_sb16 {
132         struct resource *fm_res;        /* used to block FM i/o region for legacy cards */
133         struct snd_sb *chip;
134 #ifdef CONFIG_PNP
135         int dev_no;
136         struct pnp_dev *dev;
137 #ifdef SNDRV_SBAWE_EMU8000
138         struct pnp_dev *devwt;
139 #endif
140 #endif
141 };
142
143 #ifdef CONFIG_PNP
144
145 static struct pnp_card_device_id snd_sb16_pnpids[] = {
146 #ifndef SNDRV_SBAWE
147         /* Sound Blaster 16 PnP */
148         { .id = "CTL0024", .devs = { { "CTL0031" } } },
149         /* Sound Blaster 16 PnP */
150         { .id = "CTL0025", .devs = { { "CTL0031" } } },
151         /* Sound Blaster 16 PnP */
152         { .id = "CTL0026", .devs = { { "CTL0031" } } },
153         /* Sound Blaster 16 PnP */
154         { .id = "CTL0027", .devs = { { "CTL0031" } } },
155         /* Sound Blaster 16 PnP */
156         { .id = "CTL0028", .devs = { { "CTL0031" } } },
157         /* Sound Blaster 16 PnP */
158         { .id = "CTL0029", .devs = { { "CTL0031" } } },
159         /* Sound Blaster 16 PnP */
160         { .id = "CTL002a", .devs = { { "CTL0031" } } },
161         /* Sound Blaster 16 PnP */
162         /* Note: This card has also a CTL0051:StereoEnhance device!!! */
163         { .id = "CTL002b", .devs = { { "CTL0031" } } },
164         /* Sound Blaster 16 PnP */
165         { .id = "CTL002c", .devs = { { "CTL0031" } } },
166         /* Sound Blaster Vibra16S */
167         { .id = "CTL0051", .devs = { { "CTL0001" } } },
168         /* Sound Blaster Vibra16C */
169         { .id = "CTL0070", .devs = { { "CTL0001" } } },
170         /* Sound Blaster Vibra16CL - added by ctm@ardi.com */
171         { .id = "CTL0080", .devs = { { "CTL0041" } } },
172         /* Sound Blaster 16 'value' PnP. It says model ct4130 on the pcb, */
173         /* but ct4131 on a sticker on the board.. */
174         { .id = "CTL0086", .devs = { { "CTL0041" } } },
175         /* Sound Blaster Vibra16X */
176         { .id = "CTL00f0", .devs = { { "CTL0043" } } },
177 #else  /* SNDRV_SBAWE defined */
178         /* Sound Blaster AWE 32 PnP */
179         { .id = "CTL0035", .devs = { { "CTL0031" }, { "CTL0021" } } },
180         /* Sound Blaster AWE 32 PnP */
181         { .id = "CTL0039", .devs = { { "CTL0031" }, { "CTL0021" } } },
182         /* Sound Blaster AWE 32 PnP */
183         { .id = "CTL0042", .devs = { { "CTL0031" }, { "CTL0021" } } },
184         /* Sound Blaster AWE 32 PnP */
185         { .id = "CTL0043", .devs = { { "CTL0031" }, { "CTL0021" } } },
186         /* Sound Blaster AWE 32 PnP */
187         /* Note: This card has also a CTL0051:StereoEnhance device!!! */
188         { .id = "CTL0044", .devs = { { "CTL0031" }, { "CTL0021" } } },
189         /* Sound Blaster AWE 32 PnP */
190         /* Note: This card has also a CTL0051:StereoEnhance device!!! */
191         { .id = "CTL0045", .devs = { { "CTL0031" }, { "CTL0021" } } },
192         /* Sound Blaster AWE 32 PnP */
193         { .id = "CTL0046", .devs = { { "CTL0031" }, { "CTL0021" } } },
194         /* Sound Blaster AWE 32 PnP */
195         { .id = "CTL0047", .devs = { { "CTL0031" }, { "CTL0021" } } },
196         /* Sound Blaster AWE 32 PnP */
197         { .id = "CTL0048", .devs = { { "CTL0031" }, { "CTL0021" } } },
198         /* Sound Blaster AWE 32 PnP */
199         { .id = "CTL0054", .devs = { { "CTL0031" }, { "CTL0021" } } },
200         /* Sound Blaster AWE 32 PnP */
201         { .id = "CTL009a", .devs = { { "CTL0041" }, { "CTL0021" } } },
202         /* Sound Blaster AWE 32 PnP */
203         { .id = "CTL009c", .devs = { { "CTL0041" }, { "CTL0021" } } },
204         /* Sound Blaster 32 PnP */
205         { .id = "CTL009f", .devs = { { "CTL0041" }, { "CTL0021" } } },
206         /* Sound Blaster AWE 64 PnP */
207         { .id = "CTL009d", .devs = { { "CTL0042" }, { "CTL0022" } } },
208         /* Sound Blaster AWE 64 PnP Gold */
209         { .id = "CTL009e", .devs = { { "CTL0044" }, { "CTL0023" } } },
210         /* Sound Blaster AWE 64 PnP Gold */
211         { .id = "CTL00b2", .devs = { { "CTL0044" }, { "CTL0023" } } },
212         /* Sound Blaster AWE 64 PnP */
213         { .id = "CTL00c1", .devs = { { "CTL0042" }, { "CTL0022" } } },
214         /* Sound Blaster AWE 64 PnP */
215         { .id = "CTL00c3", .devs = { { "CTL0045" }, { "CTL0022" } } },
216         /* Sound Blaster AWE 64 PnP */
217         { .id = "CTL00c5", .devs = { { "CTL0045" }, { "CTL0022" } } },
218         /* Sound Blaster AWE 64 PnP */
219         { .id = "CTL00c7", .devs = { { "CTL0045" }, { "CTL0022" } } },
220         /* Sound Blaster AWE 64 PnP */
221         { .id = "CTL00e4", .devs = { { "CTL0045" }, { "CTL0022" } } },
222         /* Sound Blaster AWE 64 PnP */
223         { .id = "CTL00e9", .devs = { { "CTL0045" }, { "CTL0022" } } },
224         /* Sound Blaster 16 PnP (AWE) */
225         { .id = "CTL00ed", .devs = { { "CTL0041" }, { "CTL0070" } } },
226         /* Generic entries */
227         { .id = "CTLXXXX" , .devs = { { "CTL0031" }, { "CTL0021" } } },
228         { .id = "CTLXXXX" , .devs = { { "CTL0041" }, { "CTL0021" } } },
229         { .id = "CTLXXXX" , .devs = { { "CTL0042" }, { "CTL0022" } } },
230         { .id = "CTLXXXX" , .devs = { { "CTL0044" }, { "CTL0023" } } },
231         { .id = "CTLXXXX" , .devs = { { "CTL0045" }, { "CTL0022" } } },
232 #endif /* SNDRV_SBAWE */
233         /* Sound Blaster 16 PnP (Virtual PC 2004)*/
234         { .id = "tBA03b0", .devs = { { "PNPb003" } } },
235         { .id = "", }
236 };
237
238 MODULE_DEVICE_TABLE(pnp_card, snd_sb16_pnpids);
239
240 #endif /* CONFIG_PNP */
241
242 #ifdef SNDRV_SBAWE_EMU8000
243 #define DRIVER_NAME     "snd-card-sbawe"
244 #else
245 #define DRIVER_NAME     "snd-card-sb16"
246 #endif
247
248 #ifdef CONFIG_PNP
249
250 static int __devinit snd_card_sb16_pnp(int dev, struct snd_card_sb16 *acard,
251                                        struct pnp_card_link *card,
252                                        const struct pnp_card_device_id *id)
253 {
254         struct pnp_dev *pdev;
255         struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
256         int err;
257
258         if (!cfg) 
259                 return -ENOMEM; 
260         acard->dev = pnp_request_card_device(card, id->devs[0].id, NULL);
261         if (acard->dev == NULL) { 
262                 kfree(cfg); 
263                 return -ENODEV; 
264         } 
265 #ifdef SNDRV_SBAWE_EMU8000
266         acard->devwt = pnp_request_card_device(card, id->devs[1].id, acard->dev);
267 #endif
268         /* Audio initialization */
269         pdev = acard->dev;
270
271         pnp_init_resource_table(cfg); 
272          
273         /* override resources */ 
274
275         if (port[dev] != SNDRV_AUTO_PORT)
276                 pnp_resource_change(&cfg->port_resource[0], port[dev], 16);
277         if (mpu_port[dev] != SNDRV_AUTO_PORT)
278                 pnp_resource_change(&cfg->port_resource[1], mpu_port[dev], 2);
279         if (fm_port[dev] != SNDRV_AUTO_PORT)
280                 pnp_resource_change(&cfg->port_resource[2], fm_port[dev], 4);
281         if (dma8[dev] != SNDRV_AUTO_DMA)
282                 pnp_resource_change(&cfg->dma_resource[0], dma8[dev], 1);
283         if (dma16[dev] != SNDRV_AUTO_DMA)
284                 pnp_resource_change(&cfg->dma_resource[1], dma16[dev], 1);
285         if (irq[dev] != SNDRV_AUTO_IRQ)
286                 pnp_resource_change(&cfg->irq_resource[0], irq[dev], 1);
287         if (pnp_manual_config_dev(pdev, cfg, 0) < 0) 
288                 snd_printk(KERN_ERR PFX "AUDIO the requested resources are invalid, using auto config\n"); 
289         err = pnp_activate_dev(pdev); 
290         if (err < 0) { 
291                 snd_printk(KERN_ERR PFX "AUDIO pnp configure failure\n"); 
292                 kfree(cfg);
293                 return err; 
294         } 
295         port[dev] = pnp_port_start(pdev, 0);
296         mpu_port[dev] = pnp_port_start(pdev, 1);
297         fm_port[dev] = pnp_port_start(pdev, 2);
298         dma8[dev] = pnp_dma(pdev, 0);
299         dma16[dev] = pnp_dma(pdev, 1);
300         irq[dev] = pnp_irq(pdev, 0);
301         snd_printdd("pnp SB16: port=0x%lx, mpu port=0x%lx, fm port=0x%lx\n",
302                         port[dev], mpu_port[dev], fm_port[dev]);
303         snd_printdd("pnp SB16: dma1=%i, dma2=%i, irq=%i\n",
304                         dma8[dev], dma16[dev], irq[dev]);
305 #ifdef SNDRV_SBAWE_EMU8000
306         /* WaveTable initialization */
307         pdev = acard->devwt;
308         if (pdev != NULL) {
309                 pnp_init_resource_table(cfg); 
310          
311                 /* override resources */ 
312
313                 if (awe_port[dev] != SNDRV_AUTO_PORT) {
314                         pnp_resource_change(&cfg->port_resource[0], awe_port[dev], 4);
315                         pnp_resource_change(&cfg->port_resource[1], awe_port[dev] + 0x400, 4);
316                         pnp_resource_change(&cfg->port_resource[2], awe_port[dev] + 0x800, 4);
317                 }
318                 if ((pnp_manual_config_dev(pdev, cfg, 0)) < 0) 
319                         snd_printk(KERN_ERR PFX "WaveTable the requested resources are invalid, using auto config\n"); 
320                 err = pnp_activate_dev(pdev); 
321                 if (err < 0) { 
322                         goto __wt_error; 
323                 } 
324                 awe_port[dev] = pnp_port_start(pdev, 0);
325                 snd_printdd("pnp SB16: wavetable port=0x%lx\n", pnp_port_start(pdev, 0));
326         } else {
327 __wt_error:
328                 if (pdev) {
329                         pnp_release_card_device(pdev);
330                         snd_printk(KERN_ERR PFX "WaveTable pnp configure failure\n");
331                 }
332                 acard->devwt = NULL;
333                 awe_port[dev] = -1;
334         }
335 #endif
336         kfree(cfg);
337         return 0;
338 }
339
340 #endif /* CONFIG_PNP */
341
342 static void snd_sb16_free(struct snd_card *card)
343 {
344         struct snd_card_sb16 *acard = card->private_data;
345         
346         if (acard == NULL)
347                 return;
348         release_and_free_resource(acard->fm_res);
349 }
350
351 #ifdef CONFIG_PNP
352 #define is_isapnp_selected(dev)         isapnp[dev]
353 #else
354 #define is_isapnp_selected(dev)         0
355 #endif
356
357 static struct snd_card *snd_sb16_card_new(int dev)
358 {
359         struct snd_card *card = snd_card_new(index[dev], id[dev], THIS_MODULE,
360                                         sizeof(struct snd_card_sb16));
361         if (card == NULL)
362                 return NULL;
363         card->private_free = snd_sb16_free;
364         return card;
365 }
366
367 static int __init snd_sb16_probe(struct snd_card *card, int dev)
368 {
369         int xirq, xdma8, xdma16;
370         struct snd_sb *chip;
371         struct snd_card_sb16 *acard = card->private_data;
372         struct snd_opl3 *opl3;
373         struct snd_hwdep *synth = NULL;
374 #ifdef CONFIG_SND_SB16_CSP
375         struct snd_hwdep *xcsp = NULL;
376 #endif
377         unsigned long flags;
378         int err;
379
380         xirq = irq[dev];
381         xdma8 = dma8[dev];
382         xdma16 = dma16[dev];
383
384         if ((err = snd_sbdsp_create(card,
385                                     port[dev],
386                                     xirq,
387                                     snd_sb16dsp_interrupt,
388                                     xdma8,
389                                     xdma16,
390                                     SB_HW_AUTO,
391                                     &chip)) < 0)
392                 return err;
393
394         acard->chip = chip;
395         if (chip->hardware != SB_HW_16) {
396                 snd_printk(KERN_ERR PFX "SB 16 chip was not detected at 0x%lx\n", port[dev]);
397                 return -ENODEV;
398         }
399         chip->mpu_port = mpu_port[dev];
400         if (! is_isapnp_selected(dev) && (err = snd_sb16dsp_configure(chip)) < 0)
401                 return err;
402
403         if ((err = snd_sb16dsp_pcm(chip, 0, &chip->pcm)) < 0)
404                 return err;
405
406         strcpy(card->driver,
407 #ifdef SNDRV_SBAWE_EMU8000
408                         awe_port[dev] > 0 ? "SB AWE" :
409 #endif
410                         "SB16");
411         strcpy(card->shortname, chip->name);
412         sprintf(card->longname, "%s at 0x%lx, irq %i, dma ",
413                 chip->name,
414                 chip->port,
415                 xirq);
416         if (xdma8 >= 0)
417                 sprintf(card->longname + strlen(card->longname), "%d", xdma8);
418         if (xdma16 >= 0)
419                 sprintf(card->longname + strlen(card->longname), "%s%d",
420                         xdma8 >= 0 ? "&" : "", xdma16);
421
422         if (chip->mpu_port > 0 && chip->mpu_port != SNDRV_AUTO_PORT) {
423                 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_SB,
424                                                chip->mpu_port, 0,
425                                                xirq, 0, &chip->rmidi)) < 0)
426                         return err;
427                 chip->rmidi_callback = snd_mpu401_uart_interrupt;
428         }
429
430 #ifdef SNDRV_SBAWE_EMU8000
431         if (awe_port[dev] == SNDRV_AUTO_PORT)
432                 awe_port[dev] = 0; /* disable */
433 #endif
434
435         if (fm_port[dev] > 0 && fm_port[dev] != SNDRV_AUTO_PORT) {
436                 if (snd_opl3_create(card, fm_port[dev], fm_port[dev] + 2,
437                                     OPL3_HW_OPL3,
438                                     acard->fm_res != NULL || fm_port[dev] == port[dev],
439                                     &opl3) < 0) {
440                         snd_printk(KERN_ERR PFX "no OPL device at 0x%lx-0x%lx\n",
441                                    fm_port[dev], fm_port[dev] + 2);
442                 } else {
443 #ifdef SNDRV_SBAWE_EMU8000
444                         int seqdev = awe_port[dev] > 0 ? 2 : 1;
445 #else
446                         int seqdev = 1;
447 #endif
448                         if ((err = snd_opl3_hwdep_new(opl3, 0, seqdev, &synth)) < 0)
449                                 return err;
450                 }
451         }
452
453         if ((err = snd_sbmixer_new(chip)) < 0)
454                 return err;
455
456 #ifdef CONFIG_SND_SB16_CSP
457         /* CSP chip on SB16ASP/AWE32 */
458         if ((chip->hardware == SB_HW_16) && csp[dev]) {
459                 snd_sb_csp_new(chip, synth != NULL ? 1 : 0, &xcsp);
460                 if (xcsp) {
461                         chip->csp = xcsp->private_data;
462                         chip->hardware = SB_HW_16CSP;
463                 } else {
464                         snd_printk(KERN_INFO PFX "warning - CSP chip not detected on soundcard #%i\n", dev + 1);
465                 }
466         }
467 #endif
468 #ifdef SNDRV_SBAWE_EMU8000
469         if (awe_port[dev] > 0) {
470                 if ((err = snd_emu8000_new(card, 1, awe_port[dev],
471                                            seq_ports[dev], NULL)) < 0) {
472                         snd_printk(KERN_ERR PFX "fatal error - EMU-8000 synthesizer not detected at 0x%lx\n", awe_port[dev]);
473
474                         return err;
475                 }
476         }
477 #endif
478
479         /* setup Mic AGC */
480         spin_lock_irqsave(&chip->mixer_lock, flags);
481         snd_sbmixer_write(chip, SB_DSP4_MIC_AGC,
482                 (snd_sbmixer_read(chip, SB_DSP4_MIC_AGC) & 0x01) |
483                 (mic_agc[dev] ? 0x00 : 0x01));
484         spin_unlock_irqrestore(&chip->mixer_lock, flags);
485
486         if ((err = snd_card_register(card)) < 0)
487                 return err;
488
489         return 0;
490 }
491
492 #ifdef CONFIG_PM
493 static int snd_sb16_suspend(struct snd_card *card, pm_message_t state)
494 {
495         struct snd_card_sb16 *acard = card->private_data;
496         struct snd_sb *chip = acard->chip;
497
498         snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
499         snd_pcm_suspend_all(chip->pcm);
500         snd_sbmixer_suspend(chip);
501         return 0;
502 }
503
504 static int snd_sb16_resume(struct snd_card *card)
505 {
506         struct snd_card_sb16 *acard = card->private_data;
507         struct snd_sb *chip = acard->chip;
508
509         snd_sbdsp_reset(chip);
510         snd_sbmixer_resume(chip);
511         snd_power_change_state(card, SNDRV_CTL_POWER_D0);
512         return 0;
513 }
514 #endif
515
516 static int __init snd_sb16_nonpnp_probe1(int dev, struct platform_device *devptr)
517 {
518         struct snd_card_sb16 *acard;
519         struct snd_card *card;
520         int err;
521
522         card = snd_sb16_card_new(dev);
523         if (! card)
524                 return -ENOMEM;
525
526         acard = card->private_data;
527         /* non-PnP FM port address is hardwired with base port address */
528         fm_port[dev] = port[dev];
529         /* block the 0x388 port to avoid PnP conflicts */
530         acard->fm_res = request_region(0x388, 4, "SoundBlaster FM");
531 #ifdef SNDRV_SBAWE_EMU8000
532         /* non-PnP AWE port address is hardwired with base port address */
533         awe_port[dev] = port[dev] + 0x400;
534 #endif
535
536         snd_card_set_dev(card, &devptr->dev);
537         if ((err = snd_sb16_probe(card, dev)) < 0) {
538                 snd_card_free(card);
539                 return err;
540         }
541         platform_set_drvdata(devptr, card);
542         return 0;
543 }
544
545
546 static int __init snd_sb16_nonpnp_probe(struct platform_device *pdev)
547 {
548         int dev = pdev->id;
549         int err;
550         static int possible_irqs[] = {5, 9, 10, 7, -1};
551         static int possible_dmas8[] = {1, 3, 0, -1};
552         static int possible_dmas16[] = {5, 6, 7, -1};
553
554         if (irq[dev] == SNDRV_AUTO_IRQ) {
555                 if ((irq[dev] = snd_legacy_find_free_irq(possible_irqs)) < 0) {
556                         snd_printk(KERN_ERR PFX "unable to find a free IRQ\n");
557                         return -EBUSY;
558                 }
559         }
560         if (dma8[dev] == SNDRV_AUTO_DMA) {
561                 if ((dma8[dev] = snd_legacy_find_free_dma(possible_dmas8)) < 0) {
562                         snd_printk(KERN_ERR PFX "unable to find a free 8-bit DMA\n");
563                         return -EBUSY;
564                 }
565         }
566         if (dma16[dev] == SNDRV_AUTO_DMA) {
567                 if ((dma16[dev] = snd_legacy_find_free_dma(possible_dmas16)) < 0) {
568                         snd_printk(KERN_ERR PFX "unable to find a free 16-bit DMA\n");
569                         return -EBUSY;
570                 }
571         }
572
573         if (port[dev] != SNDRV_AUTO_PORT)
574                 return snd_sb16_nonpnp_probe1(dev, pdev);
575         else {
576                 static int possible_ports[] = {0x220, 0x240, 0x260, 0x280};
577                 int i;
578                 for (i = 0; i < ARRAY_SIZE(possible_ports); i++) {
579                         port[dev] = possible_ports[i];
580                         err = snd_sb16_nonpnp_probe1(dev, pdev);
581                         if (! err)
582                                 return 0;
583                 }
584                 return err;
585         }
586 }
587
588 static int __devexit snd_sb16_nonpnp_remove(struct platform_device *devptr)
589 {
590         snd_card_free(platform_get_drvdata(devptr));
591         platform_set_drvdata(devptr, NULL);
592         return 0;
593 }
594
595 #ifdef CONFIG_PM
596 static int snd_sb16_nonpnp_suspend(struct platform_device *dev, pm_message_t state)
597 {
598         return snd_sb16_suspend(platform_get_drvdata(dev), state);
599 }
600
601 static int snd_sb16_nonpnp_resume(struct platform_device *dev)
602 {
603         return snd_sb16_resume(platform_get_drvdata(dev));
604 }
605 #endif
606
607 #ifdef SNDRV_SBAWE
608 #define SND_SB16_DRIVER "snd_sbawe"
609 #else
610 #define SND_SB16_DRIVER "snd_sb16"
611 #endif
612
613 static struct platform_driver snd_sb16_nonpnp_driver = {
614         .probe          = snd_sb16_nonpnp_probe,
615         .remove         = __devexit_p(snd_sb16_nonpnp_remove),
616 #ifdef CONFIG_PM
617         .suspend        = snd_sb16_nonpnp_suspend,
618         .resume         = snd_sb16_nonpnp_resume,
619 #endif
620         .driver         = {
621                 .name   = SND_SB16_DRIVER
622         },
623 };
624
625
626 #ifdef CONFIG_PNP
627
628 static int __devinit snd_sb16_pnp_detect(struct pnp_card_link *pcard,
629                                          const struct pnp_card_device_id *pid)
630 {
631         static int dev;
632         struct snd_card *card;
633         int res;
634
635         for ( ; dev < SNDRV_CARDS; dev++) {
636                 if (!enable[dev] || !isapnp[dev])
637                         continue;
638                 card = snd_sb16_card_new(dev);
639                 if (! card)
640                         return -ENOMEM;
641                 snd_card_set_dev(card, &pcard->card->dev);
642                 if ((res = snd_card_sb16_pnp(dev, card->private_data, pcard, pid)) < 0 ||
643                     (res = snd_sb16_probe(card, dev)) < 0) {
644                         snd_card_free(card);
645                         return res;
646                 }
647                 pnp_set_card_drvdata(pcard, card);
648                 dev++;
649                 return 0;
650         }
651
652         return -ENODEV;
653 }
654
655 static void __devexit snd_sb16_pnp_remove(struct pnp_card_link * pcard)
656 {
657         snd_card_free(pnp_get_card_drvdata(pcard));
658         pnp_set_card_drvdata(pcard, NULL);
659 }
660
661 #ifdef CONFIG_PM
662 static int snd_sb16_pnp_suspend(struct pnp_card_link *pcard, pm_message_t state)
663 {
664         return snd_sb16_suspend(pnp_get_card_drvdata(pcard), state);
665 }
666 static int snd_sb16_pnp_resume(struct pnp_card_link *pcard)
667 {
668         return snd_sb16_resume(pnp_get_card_drvdata(pcard));
669 }
670 #endif
671
672 static struct pnp_card_driver sb16_pnpc_driver = {
673         .flags = PNP_DRIVER_RES_DISABLE,
674 #ifdef SNDRV_SBAWE
675         .name = "sbawe",
676 #else
677         .name = "sb16",
678 #endif
679         .id_table = snd_sb16_pnpids,
680         .probe = snd_sb16_pnp_detect,
681         .remove = __devexit_p(snd_sb16_pnp_remove),
682 #ifdef CONFIG_PM
683         .suspend = snd_sb16_pnp_suspend,
684         .resume = snd_sb16_pnp_resume,
685 #endif
686 };
687
688 #endif /* CONFIG_PNP */
689
690 static int __init alsa_card_sb16_init(void)
691 {
692         int i, err, cards = 0;
693
694         if ((err = platform_driver_register(&snd_sb16_nonpnp_driver)) < 0)
695                 return err;
696
697         for (i = 0; i < SNDRV_CARDS && enable[i]; i++) {
698                 struct platform_device *device;
699                 if (is_isapnp_selected(i))
700                         continue;
701                 device = platform_device_register_simple(SND_SB16_DRIVER,
702                                                          i, NULL, 0);
703                 if (IS_ERR(device)) {
704                         err = PTR_ERR(device);
705                         platform_driver_unregister(&snd_sb16_nonpnp_driver);
706                         return err;
707                 }
708                 cards++;
709         }
710 #ifdef CONFIG_PNP
711         /* PnP cards at last */
712         i = pnp_register_card_driver(&sb16_pnpc_driver);
713         if (i > 0)
714                 cards += i;
715 #endif
716
717         if (!cards) {
718 #ifdef CONFIG_PNP
719                 pnp_unregister_card_driver(&sb16_pnpc_driver);
720 #endif
721                 platform_driver_unregister(&snd_sb16_nonpnp_driver);
722 #ifdef MODULE
723                 snd_printk(KERN_ERR "Sound Blaster 16 soundcard not found or device busy\n");
724 #ifdef SNDRV_SBAWE_EMU8000
725                 snd_printk(KERN_ERR "In case, if you have non-AWE card, try snd-sb16 module\n");
726 #else
727                 snd_printk(KERN_ERR "In case, if you have AWE card, try snd-sbawe module\n");
728 #endif
729 #endif
730                 return -ENODEV;
731         }
732         return 0;
733 }
734
735 static void __exit alsa_card_sb16_exit(void)
736 {
737 #ifdef CONFIG_PNP
738         pnp_unregister_card_driver(&sb16_pnpc_driver);
739 #endif
740         platform_driver_unregister(&snd_sb16_nonpnp_driver);
741 }
742
743 module_init(alsa_card_sb16_init)
744 module_exit(alsa_card_sb16_exit)