[ALSA] Remove vmalloc wrapper, kfree_nocheck()
[pandora-kernel.git] / sound / isa / gus / gus_main.c
1 /*
2  *  Routines for Gravis UltraSound 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 <linux/init.h>
24 #include <linux/interrupt.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include <linux/ioport.h>
28 #include <sound/core.h>
29 #include <sound/gus.h>
30 #include <sound/control.h>
31
32 #include <asm/dma.h>
33
34 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
35 MODULE_DESCRIPTION("Routines for Gravis UltraSound soundcards");
36 MODULE_LICENSE("GPL");
37
38 static int snd_gus_init_dma_irq(snd_gus_card_t * gus, int latches);
39
40 int snd_gus_use_inc(snd_gus_card_t * gus)
41 {
42         if (!try_module_get(gus->card->module))
43                 return 0;
44         return 1;
45 }
46
47 void snd_gus_use_dec(snd_gus_card_t * gus)
48 {
49         module_put(gus->card->module);
50 }
51
52 static int snd_gus_joystick_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
53 {
54         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
55         uinfo->count = 1;
56         uinfo->value.integer.min = 0;
57         uinfo->value.integer.max = 31;
58         return 0;
59 }
60
61 static int snd_gus_joystick_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
62 {
63         snd_gus_card_t *gus = snd_kcontrol_chip(kcontrol);
64         
65         ucontrol->value.integer.value[0] = gus->joystick_dac & 31;
66         return 0;
67 }
68
69 static int snd_gus_joystick_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
70 {
71         snd_gus_card_t *gus = snd_kcontrol_chip(kcontrol);
72         unsigned long flags;
73         int change;
74         unsigned char nval;
75         
76         nval = ucontrol->value.integer.value[0] & 31;
77         spin_lock_irqsave(&gus->reg_lock, flags);
78         change = gus->joystick_dac != nval;
79         gus->joystick_dac = nval;
80         snd_gf1_write8(gus, SNDRV_GF1_GB_JOYSTICK_DAC_LEVEL, gus->joystick_dac);
81         spin_unlock_irqrestore(&gus->reg_lock, flags);
82         return change;
83 }
84
85 static snd_kcontrol_new_t snd_gus_joystick_control = {
86         .iface = SNDRV_CTL_ELEM_IFACE_CARD,
87         .name = "Joystick Speed",
88         .info = snd_gus_joystick_info,
89         .get = snd_gus_joystick_get,
90         .put = snd_gus_joystick_put
91 };
92
93 static void snd_gus_init_control(snd_gus_card_t *gus)
94 {
95         if (!gus->ace_flag)
96                 snd_ctl_add(gus->card, snd_ctl_new1(&snd_gus_joystick_control, gus));
97 }
98
99 /*
100  *
101  */
102
103 static int snd_gus_free(snd_gus_card_t *gus)
104 {
105         if (gus->gf1.res_port2 == NULL)
106                 goto __hw_end;
107 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
108         if (gus->seq_dev) {
109                 snd_device_free(gus->card, gus->seq_dev);
110                 gus->seq_dev = NULL;
111         }
112 #endif
113         snd_gf1_stop(gus);
114         snd_gus_init_dma_irq(gus, 0);
115       __hw_end:
116         release_and_free_resource(gus->gf1.res_port1);
117         release_and_free_resource(gus->gf1.res_port2);
118         if (gus->gf1.irq >= 0)
119                 free_irq(gus->gf1.irq, (void *) gus);
120         if (gus->gf1.dma1 >= 0) {
121                 disable_dma(gus->gf1.dma1);
122                 free_dma(gus->gf1.dma1);
123         }
124         if (!gus->equal_dma && gus->gf1.dma2 >= 0) {
125                 disable_dma(gus->gf1.dma2);
126                 free_dma(gus->gf1.dma2);
127         }
128         kfree(gus);
129         return 0;
130 }
131
132 static int snd_gus_dev_free(snd_device_t *device)
133 {
134         snd_gus_card_t *gus = device->device_data;
135         return snd_gus_free(gus);
136 }
137
138 int snd_gus_create(snd_card_t * card,
139                    unsigned long port,
140                    int irq, int dma1, int dma2,
141                    int timer_dev,
142                    int voices,
143                    int pcm_channels,
144                    int effect,
145                    snd_gus_card_t **rgus)
146 {
147         snd_gus_card_t *gus;
148         int err;
149         static snd_device_ops_t ops = {
150                 .dev_free =     snd_gus_dev_free,
151         };
152
153         *rgus = NULL;
154         gus = kzalloc(sizeof(*gus), GFP_KERNEL);
155         if (gus == NULL)
156                 return -ENOMEM;
157         gus->gf1.irq = -1;
158         gus->gf1.dma1 = -1;
159         gus->gf1.dma2 = -1;
160         gus->card = card;
161         gus->gf1.port = port;
162         /* fill register variables for speedup */
163         gus->gf1.reg_page = GUSP(gus, GF1PAGE);
164         gus->gf1.reg_regsel = GUSP(gus, GF1REGSEL);
165         gus->gf1.reg_data8 = GUSP(gus, GF1DATAHIGH);
166         gus->gf1.reg_data16 = GUSP(gus, GF1DATALOW);
167         gus->gf1.reg_irqstat = GUSP(gus, IRQSTAT);
168         gus->gf1.reg_dram = GUSP(gus, DRAM);
169         gus->gf1.reg_timerctrl = GUSP(gus, TIMERCNTRL);
170         gus->gf1.reg_timerdata = GUSP(gus, TIMERDATA);
171         /* allocate resources */
172         if ((gus->gf1.res_port1 = request_region(port, 16, "GUS GF1 (Adlib/SB)")) == NULL) {
173                 snd_printk(KERN_ERR "gus: can't grab SB port 0x%lx\n", port);
174                 snd_gus_free(gus);
175                 return -EBUSY;
176         }
177         if ((gus->gf1.res_port2 = request_region(port + 0x100, 12, "GUS GF1 (Synth)")) == NULL) {
178                 snd_printk(KERN_ERR "gus: can't grab synth port 0x%lx\n", port + 0x100);
179                 snd_gus_free(gus);
180                 return -EBUSY;
181         }
182         if (irq >= 0 && request_irq(irq, snd_gus_interrupt, SA_INTERRUPT, "GUS GF1", (void *) gus)) {
183                 snd_printk(KERN_ERR "gus: can't grab irq %d\n", irq);
184                 snd_gus_free(gus);
185                 return -EBUSY;
186         }
187         gus->gf1.irq = irq;
188         if (request_dma(dma1, "GUS - 1")) {
189                 snd_printk(KERN_ERR "gus: can't grab DMA1 %d\n", dma1);
190                 snd_gus_free(gus);
191                 return -EBUSY;
192         }
193         gus->gf1.dma1 = dma1;
194         if (dma2 >= 0 && dma1 != dma2) {
195                 if (request_dma(dma2, "GUS - 2")) {
196                         snd_printk(KERN_ERR "gus: can't grab DMA2 %d\n", dma2);
197                         snd_gus_free(gus);
198                         return -EBUSY;
199                 }
200                 gus->gf1.dma2 = dma2;
201         } else {
202                 gus->gf1.dma2 = gus->gf1.dma1;
203                 gus->equal_dma = 1;
204         }
205         gus->timer_dev = timer_dev;
206         if (voices < 14)
207                 voices = 14;
208         if (voices > 32)
209                 voices = 32;
210         if (pcm_channels < 0)
211                 pcm_channels = 0;
212         if (pcm_channels > 8)
213                 pcm_channels = 8;
214         pcm_channels++;
215         pcm_channels &= ~1;
216         gus->gf1.effect = effect ? 1 : 0;
217         gus->gf1.active_voices = voices;
218         gus->gf1.pcm_channels = pcm_channels;
219         gus->gf1.volume_ramp = 25;
220         gus->gf1.smooth_pan = 1;
221         spin_lock_init(&gus->reg_lock);
222         spin_lock_init(&gus->voice_alloc);
223         spin_lock_init(&gus->active_voice_lock);
224         spin_lock_init(&gus->event_lock);
225         spin_lock_init(&gus->dma_lock);
226         spin_lock_init(&gus->pcm_volume_level_lock);
227         spin_lock_init(&gus->uart_cmd_lock);
228         init_MUTEX(&gus->dma_mutex);
229         if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, gus, &ops)) < 0) {
230                 snd_gus_free(gus);
231                 return err;
232         }
233         *rgus = gus;
234         return 0;
235 }
236
237 /*
238  *  Memory detection routine for plain GF1 soundcards
239  */
240
241 static int snd_gus_detect_memory(snd_gus_card_t * gus)
242 {
243         int l, idx, local;
244         unsigned char d;
245
246         snd_gf1_poke(gus, 0L, 0xaa);
247         snd_gf1_poke(gus, 1L, 0x55);
248         if (snd_gf1_peek(gus, 0L) != 0xaa || snd_gf1_peek(gus, 1L) != 0x55) {
249                 snd_printk("plain GF1 card at 0x%lx without onboard DRAM?\n", gus->gf1.port);
250                 return -ENOMEM;
251         }
252         for (idx = 1, d = 0xab; idx < 4; idx++, d++) {
253                 local = idx << 18;
254                 snd_gf1_poke(gus, local, d);
255                 snd_gf1_poke(gus, local + 1, d + 1);
256                 if (snd_gf1_peek(gus, local) != d ||
257                     snd_gf1_peek(gus, local + 1) != d + 1 ||
258                     snd_gf1_peek(gus, 0L) != 0xaa)
259                         break;
260         }
261 #if 1
262         gus->gf1.memory = idx << 18;
263 #else
264         gus->gf1.memory = 256 * 1024;
265 #endif
266         for (l = 0, local = gus->gf1.memory; l < 4; l++, local -= 256 * 1024) {
267                 gus->gf1.mem_alloc.banks_8[l].address =
268                     gus->gf1.mem_alloc.banks_8[l].size = 0;
269                 gus->gf1.mem_alloc.banks_16[l].address = l << 18;
270                 gus->gf1.mem_alloc.banks_16[l].size = local > 0 ? 256 * 1024 : 0;
271         }
272         gus->gf1.mem_alloc.banks_8[0].size = gus->gf1.memory;
273         return 0;               /* some memory were detected */
274 }
275
276 static int snd_gus_init_dma_irq(snd_gus_card_t * gus, int latches)
277 {
278         snd_card_t *card;
279         unsigned long flags;
280         int irq, dma1, dma2;
281         static unsigned char irqs[16] =
282                 {0, 0, 1, 3, 0, 2, 0, 4, 0, 1, 0, 5, 6, 0, 0, 7};
283         static unsigned char dmas[8] =
284                 {6, 1, 0, 2, 0, 3, 4, 5};
285
286         snd_assert(gus != NULL, return -EINVAL);
287         card = gus->card;
288         snd_assert(card != NULL, return -EINVAL);
289
290         gus->mix_cntrl_reg &= 0xf8;
291         gus->mix_cntrl_reg |= 0x01;     /* disable MIC, LINE IN, enable LINE OUT */
292         if (gus->codec_flag || gus->ess_flag) {
293                 gus->mix_cntrl_reg &= ~1;       /* enable LINE IN */
294                 gus->mix_cntrl_reg |= 4;        /* enable MIC */
295         }
296         dma1 = gus->gf1.dma1;
297         dma1 = dma1 < 0 ? -dma1 : dma1;
298         dma1 = dmas[dma1 & 7];
299         dma2 = gus->gf1.dma2;
300         dma2 = dma2 < 0 ? -dma2 : dma2;
301         dma2 = dmas[dma2 & 7];
302 #if 0
303         printk("dma1 = %i, dma2 = %i\n", gus->gf1.dma1, gus->gf1.dma2);
304 #endif
305         dma1 |= gus->equal_dma ? 0x40 : (dma2 << 3);
306
307         if ((dma1 & 7) == 0 || (dma2 & 7) == 0) {
308                 snd_printk("Error! DMA isn't defined.\n");
309                 return -EINVAL;
310         }
311         irq = gus->gf1.irq;
312         irq = irq < 0 ? -irq : irq;
313         irq = irqs[irq & 0x0f];
314         if (irq == 0) {
315                 snd_printk("Error! IRQ isn't defined.\n");
316                 return -EINVAL;
317         }
318         irq |= 0x40;
319 #if 0
320         card->mixer.mix_ctrl_reg |= 0x10;
321 #endif
322
323         spin_lock_irqsave(&gus->reg_lock, flags);
324         outb(5, GUSP(gus, REGCNTRLS));
325         outb(gus->mix_cntrl_reg, GUSP(gus, MIXCNTRLREG));
326         outb(0x00, GUSP(gus, IRQDMACNTRLREG));
327         outb(0, GUSP(gus, REGCNTRLS));
328         spin_unlock_irqrestore(&gus->reg_lock, flags);
329
330         udelay(100);
331
332         spin_lock_irqsave(&gus->reg_lock, flags);
333         outb(0x00 | gus->mix_cntrl_reg, GUSP(gus, MIXCNTRLREG));
334         outb(dma1, GUSP(gus, IRQDMACNTRLREG));
335         if (latches) {
336                 outb(0x40 | gus->mix_cntrl_reg, GUSP(gus, MIXCNTRLREG));
337                 outb(irq, GUSP(gus, IRQDMACNTRLREG));
338         }
339         spin_unlock_irqrestore(&gus->reg_lock, flags);
340
341         udelay(100);
342
343         spin_lock_irqsave(&gus->reg_lock, flags);
344         outb(0x00 | gus->mix_cntrl_reg, GUSP(gus, MIXCNTRLREG));
345         outb(dma1, GUSP(gus, IRQDMACNTRLREG));
346         if (latches) {
347                 outb(0x40 | gus->mix_cntrl_reg, GUSP(gus, MIXCNTRLREG));
348                 outb(irq, GUSP(gus, IRQDMACNTRLREG));
349         }
350         spin_unlock_irqrestore(&gus->reg_lock, flags);
351
352         snd_gf1_delay(gus);
353
354         if (latches)
355                 gus->mix_cntrl_reg |= 0x08;     /* enable latches */
356         else
357                 gus->mix_cntrl_reg &= ~0x08;    /* disable latches */
358         spin_lock_irqsave(&gus->reg_lock, flags);
359         outb(gus->mix_cntrl_reg, GUSP(gus, MIXCNTRLREG));
360         outb(0, GUSP(gus, GF1PAGE));
361         spin_unlock_irqrestore(&gus->reg_lock, flags);
362
363         return 0;
364 }
365
366 static int snd_gus_check_version(snd_gus_card_t * gus)
367 {
368         unsigned long flags;
369         unsigned char val, rev;
370         snd_card_t *card;
371
372         card = gus->card;
373         spin_lock_irqsave(&gus->reg_lock, flags);
374         outb(0x20, GUSP(gus, REGCNTRLS));
375         val = inb(GUSP(gus, REGCNTRLS));
376         rev = inb(GUSP(gus, BOARDVERSION));
377         spin_unlock_irqrestore(&gus->reg_lock, flags);
378         snd_printdd("GF1 [0x%lx] init - val = 0x%x, rev = 0x%x\n", gus->gf1.port, val, rev);
379         strcpy(card->driver, "GUS");
380         strcpy(card->longname, "Gravis UltraSound Classic (2.4)");
381         if ((val != 255 && (val & 0x06)) || (rev >= 5 && rev != 255)) {
382                 if (rev >= 5 && rev <= 9) {
383                         gus->ics_flag = 1;
384                         if (rev == 5)
385                                 gus->ics_flipped = 1;
386                         card->longname[27] = '3';
387                         card->longname[29] = rev == 5 ? '5' : '7';
388                 }
389                 if (rev >= 10 && rev != 255) {
390                         if (rev >= 10 && rev <= 11) {
391                                 strcpy(card->driver, "GUS MAX");
392                                 strcpy(card->longname, "Gravis UltraSound MAX");
393                                 gus->max_flag = 1;
394                         } else if (rev == 0x30) {
395                                 strcpy(card->driver, "GUS ACE");
396                                 strcpy(card->longname, "Gravis UltraSound Ace");
397                                 gus->ace_flag = 1;
398                         } else if (rev == 0x50) {
399                                 strcpy(card->driver, "GUS Extreme");
400                                 strcpy(card->longname, "Gravis UltraSound Extreme");
401                                 gus->ess_flag = 1;
402                         } else {
403                                 snd_printk("unknown GF1 revision number at 0x%lx - 0x%x (0x%x)\n", gus->gf1.port, rev, val);
404                                 snd_printk("  please - report to <perex@suse.cz>\n");
405                         }
406                 }
407         }
408         strcpy(card->shortname, card->longname);
409         gus->uart_enable = 1;   /* standard GUSes doesn't have midi uart trouble */
410         snd_gus_init_control(gus);
411         return 0;
412 }
413
414 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
415 static void snd_gus_seq_dev_free(snd_seq_device_t *seq_dev)
416 {
417         snd_gus_card_t *gus = seq_dev->private_data;
418         gus->seq_dev = NULL;
419 }
420 #endif
421
422 int snd_gus_initialize(snd_gus_card_t *gus)
423 {
424         int err;
425
426         if (!gus->interwave) {
427                 if ((err = snd_gus_check_version(gus)) < 0) {
428                         snd_printk("version check failed\n");
429                         return err;
430                 }
431                 if ((err = snd_gus_detect_memory(gus)) < 0)
432                         return err;
433         }
434         if ((err = snd_gus_init_dma_irq(gus, 1)) < 0)
435                 return err;
436 #if defined(CONFIG_SND_SEQUENCER) || (defined(MODULE) && defined(CONFIG_SND_SEQUENCER_MODULE))
437         if (snd_seq_device_new(gus->card, 1, SNDRV_SEQ_DEV_ID_GUS,
438                                sizeof(snd_gus_card_t*), &gus->seq_dev) >= 0) {
439                 strcpy(gus->seq_dev->name, "GUS");
440                 *(snd_gus_card_t**)SNDRV_SEQ_DEVICE_ARGPTR(gus->seq_dev) = gus;
441                 gus->seq_dev->private_data = gus;
442                 gus->seq_dev->private_free = snd_gus_seq_dev_free;
443         }
444 #endif
445         snd_gf1_start(gus);
446         gus->initialized = 1;
447         return 0;
448 }
449
450   /* gus_io.c */
451 EXPORT_SYMBOL(snd_gf1_delay);
452 EXPORT_SYMBOL(snd_gf1_write8);
453 EXPORT_SYMBOL(snd_gf1_look8);
454 EXPORT_SYMBOL(snd_gf1_write16);
455 EXPORT_SYMBOL(snd_gf1_look16);
456 EXPORT_SYMBOL(snd_gf1_i_write8);
457 EXPORT_SYMBOL(snd_gf1_i_look8);
458 EXPORT_SYMBOL(snd_gf1_i_look16);
459 EXPORT_SYMBOL(snd_gf1_dram_addr);
460 EXPORT_SYMBOL(snd_gf1_write_addr);
461 EXPORT_SYMBOL(snd_gf1_poke);
462 EXPORT_SYMBOL(snd_gf1_peek);
463   /* gus_reset.c */
464 EXPORT_SYMBOL(snd_gf1_alloc_voice);
465 EXPORT_SYMBOL(snd_gf1_free_voice);
466 EXPORT_SYMBOL(snd_gf1_ctrl_stop);
467 EXPORT_SYMBOL(snd_gf1_stop_voice);
468   /* gus_mixer.c */
469 EXPORT_SYMBOL(snd_gf1_new_mixer);
470   /* gus_pcm.c */
471 EXPORT_SYMBOL(snd_gf1_pcm_new);
472   /* gus.c */
473 EXPORT_SYMBOL(snd_gus_use_inc);
474 EXPORT_SYMBOL(snd_gus_use_dec);
475 EXPORT_SYMBOL(snd_gus_create);
476 EXPORT_SYMBOL(snd_gus_initialize);
477   /* gus_irq.c */
478 EXPORT_SYMBOL(snd_gus_interrupt);
479   /* gus_uart.c */
480 EXPORT_SYMBOL(snd_gf1_rawmidi_new);
481   /* gus_dram.c */
482 EXPORT_SYMBOL(snd_gus_dram_write);
483 EXPORT_SYMBOL(snd_gus_dram_read);
484   /* gus_volume.c */
485 EXPORT_SYMBOL(snd_gf1_lvol_to_gvol_raw);
486 EXPORT_SYMBOL(snd_gf1_translate_freq);
487   /* gus_mem.c */
488 EXPORT_SYMBOL(snd_gf1_mem_alloc);
489 EXPORT_SYMBOL(snd_gf1_mem_xfree);
490 EXPORT_SYMBOL(snd_gf1_mem_free);
491 EXPORT_SYMBOL(snd_gf1_mem_lock);
492
493 /*
494  *  INIT part
495  */
496
497 static int __init alsa_gus_init(void)
498 {
499         return 0;
500 }
501
502 static void __exit alsa_gus_exit(void)
503 {
504 }
505
506 module_init(alsa_gus_init)
507 module_exit(alsa_gus_exit)