blob: 70559223e8f331855f7361a9078a5b52195ed000 [file] [log] [blame]
Krzysztof Heltf6c63832009-01-24 13:35:28 +01001/*********************************************************************
2 *
3 * Linux multisound pinnacle/fiji driver for ALSA.
4 *
5 * 2002/06/30 Karsten Wiese:
6 * for now this is only used to build a pinnacle / fiji driver.
7 * the OSS parent of this code is designed to also support
8 * the multisound classic via the file msnd_classic.c.
9 * to make it easier for some brave heart to implemt classic
10 * support in alsa, i left all the MSND_CLASSIC tokens in this file.
11 * but for now this untested & undone.
12 *
13 *
14 * ripped from linux kernel 2.4.18 by Karsten Wiese.
15 *
16 * the following is a copy of the 2.4.18 OSS FREE file-heading comment:
17 *
18 * Turtle Beach MultiSound Sound Card Driver for Linux
19 * msnd_pinnacle.c / msnd_classic.c
20 *
21 * -- If MSND_CLASSIC is defined:
22 *
23 * -> driver for Turtle Beach Classic/Monterey/Tahiti
24 *
25 * -- Else
26 *
27 * -> driver for Turtle Beach Pinnacle/Fiji
28 *
29 * 12-3-2000 Modified IO port validation Steve Sycamore
30 *
31 * Copyright (C) 1998 Andrew Veliath
32 *
33 * This program is free software; you can redistribute it and/or modify
34 * it under the terms of the GNU General Public License as published by
35 * the Free Software Foundation; either version 2 of the License, or
36 * (at your option) any later version.
37 *
38 * This program is distributed in the hope that it will be useful,
39 * but WITHOUT ANY WARRANTY; without even the implied warranty of
40 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 * GNU General Public License for more details.
42 *
43 * You should have received a copy of the GNU General Public License
44 * along with this program; if not, write to the Free Software
45 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
46 *
47 ********************************************************************/
48
49#include <linux/kernel.h>
50#include <linux/module.h>
51#include <linux/interrupt.h>
52#include <linux/types.h>
53#include <linux/delay.h>
54#include <linux/ioport.h>
55#include <linux/firmware.h>
56#include <linux/isa.h>
57#include <linux/isapnp.h>
58#include <linux/irq.h>
59#include <linux/io.h>
60
61#include <sound/core.h>
62#include <sound/initval.h>
63#include <sound/asound.h>
64#include <sound/pcm.h>
65#include <sound/mpu401.h>
66
67#ifdef MSND_CLASSIC
68# ifndef __alpha__
69# define SLOWIO
70# endif
71#endif
72#include "msnd.h"
73#ifdef MSND_CLASSIC
74# include "msnd_classic.h"
75# define LOGNAME "msnd_classic"
76#else
77# include "msnd_pinnacle.h"
78# define LOGNAME "snd_msnd_pinnacle"
79#endif
80
81static void __devinit set_default_audio_parameters(struct snd_msnd *chip)
82{
83 chip->play_sample_size = DEFSAMPLESIZE;
84 chip->play_sample_rate = DEFSAMPLERATE;
85 chip->play_channels = DEFCHANNELS;
86 chip->capture_sample_size = DEFSAMPLESIZE;
87 chip->capture_sample_rate = DEFSAMPLERATE;
88 chip->capture_channels = DEFCHANNELS;
89}
90
91static void snd_msnd_eval_dsp_msg(struct snd_msnd *chip, u16 wMessage)
92{
93 switch (HIBYTE(wMessage)) {
94 case HIMT_PLAY_DONE: {
95 if (chip->banksPlayed < 3)
96 snd_printdd("%08X: HIMT_PLAY_DONE: %i\n",
97 (unsigned)jiffies, LOBYTE(wMessage));
98
99 if (chip->last_playbank == LOBYTE(wMessage)) {
100 snd_printdd("chip.last_playbank == LOBYTE(wMessage)\n");
101 break;
102 }
103 chip->banksPlayed++;
104
105 if (test_bit(F_WRITING, &chip->flags))
106 snd_msnd_DAPQ(chip, 0);
107
108 chip->last_playbank = LOBYTE(wMessage);
109 chip->playDMAPos += chip->play_period_bytes;
110 if (chip->playDMAPos > chip->playLimit)
111 chip->playDMAPos = 0;
112 snd_pcm_period_elapsed(chip->playback_substream);
113
114 break;
115 }
116 case HIMT_RECORD_DONE:
117 if (chip->last_recbank == LOBYTE(wMessage))
118 break;
119 chip->last_recbank = LOBYTE(wMessage);
120 chip->captureDMAPos += chip->capturePeriodBytes;
121 if (chip->captureDMAPos > (chip->captureLimit))
122 chip->captureDMAPos = 0;
123
124 if (test_bit(F_READING, &chip->flags))
125 snd_msnd_DARQ(chip, chip->last_recbank);
126
127 snd_pcm_period_elapsed(chip->capture_substream);
128 break;
129
130 case HIMT_DSP:
131 switch (LOBYTE(wMessage)) {
132#ifndef MSND_CLASSIC
133 case HIDSP_PLAY_UNDER:
134#endif
135 case HIDSP_INT_PLAY_UNDER:
136 snd_printd(KERN_WARNING LOGNAME ": Play underflow %i\n",
137 chip->banksPlayed);
138 if (chip->banksPlayed > 2)
139 clear_bit(F_WRITING, &chip->flags);
140 break;
141
142 case HIDSP_INT_RECORD_OVER:
143 snd_printd(KERN_WARNING LOGNAME ": Record overflow\n");
144 clear_bit(F_READING, &chip->flags);
145 break;
146
147 default:
148 snd_printd(KERN_WARNING LOGNAME
149 ": DSP message %d 0x%02x\n",
150 LOBYTE(wMessage), LOBYTE(wMessage));
151 break;
152 }
153 break;
154
155 case HIMT_MIDI_IN_UCHAR:
156 if (chip->msndmidi_mpu)
157 snd_msndmidi_input_read(chip->msndmidi_mpu);
158 break;
159
160 default:
161 snd_printd(KERN_WARNING LOGNAME ": HIMT message %d 0x%02x\n",
162 HIBYTE(wMessage), HIBYTE(wMessage));
163 break;
164 }
165}
166
167static irqreturn_t snd_msnd_interrupt(int irq, void *dev_id)
168{
169 struct snd_msnd *chip = dev_id;
170 void *pwDSPQData = chip->mappedbase + DSPQ_DATA_BUFF;
171
172 /* Send ack to DSP */
173 /* inb(chip->io + HP_RXL); */
174
175 /* Evaluate queued DSP messages */
176 while (readw(chip->DSPQ + JQS_wTail) != readw(chip->DSPQ + JQS_wHead)) {
177 u16 wTmp;
178
179 snd_msnd_eval_dsp_msg(chip,
180 readw(pwDSPQData + 2 * readw(chip->DSPQ + JQS_wHead)));
181
182 wTmp = readw(chip->DSPQ + JQS_wHead) + 1;
183 if (wTmp > readw(chip->DSPQ + JQS_wSize))
184 writew(0, chip->DSPQ + JQS_wHead);
185 else
186 writew(wTmp, chip->DSPQ + JQS_wHead);
187 }
188 /* Send ack to DSP */
189 inb(chip->io + HP_RXL);
190 return IRQ_HANDLED;
191}
192
193
194static int snd_msnd_reset_dsp(long io, unsigned char *info)
195{
196 int timeout = 100;
197
198 outb(HPDSPRESET_ON, io + HP_DSPR);
199 msleep(1);
200#ifndef MSND_CLASSIC
201 if (info)
202 *info = inb(io + HP_INFO);
203#endif
204 outb(HPDSPRESET_OFF, io + HP_DSPR);
205 msleep(1);
206 while (timeout-- > 0) {
207 if (inb(io + HP_CVR) == HP_CVR_DEF)
208 return 0;
209 msleep(1);
210 }
211 snd_printk(KERN_ERR LOGNAME ": Cannot reset DSP\n");
212
213 return -EIO;
214}
215
216static int __devinit snd_msnd_probe(struct snd_card *card)
217{
218 struct snd_msnd *chip = card->private_data;
219 unsigned char info;
220#ifndef MSND_CLASSIC
221 char *xv, *rev = NULL;
222 char *pin = "TB Pinnacle", *fiji = "TB Fiji";
223 char *pinfiji = "TB Pinnacle/Fiji";
224#endif
225
226 if (!request_region(chip->io, DSP_NUMIO, "probing")) {
227 snd_printk(KERN_ERR LOGNAME ": I/O port conflict\n");
228 return -ENODEV;
229 }
230
231 if (snd_msnd_reset_dsp(chip->io, &info) < 0) {
232 release_region(chip->io, DSP_NUMIO);
233 return -ENODEV;
234 }
235
236#ifdef MSND_CLASSIC
237 strcpy(card->shortname, "Classic/Tahiti/Monterey");
238 strcpy(card->longname, "Turtle Beach Multisound");
239 printk(KERN_INFO LOGNAME ": %s, "
240 "I/O 0x%lx-0x%lx, IRQ %d, memory mapped to 0x%lX-0x%lX\n",
241 card->shortname,
242 chip->io, chip->io + DSP_NUMIO - 1,
243 chip->irq,
244 chip->base, chip->base + 0x7fff);
245#else
246 switch (info >> 4) {
247 case 0xf:
248 xv = "<= 1.15";
249 break;
250 case 0x1:
251 xv = "1.18/1.2";
252 break;
253 case 0x2:
254 xv = "1.3";
255 break;
256 case 0x3:
257 xv = "1.4";
258 break;
259 default:
260 xv = "unknown";
261 break;
262 }
263
264 switch (info & 0x7) {
265 case 0x0:
266 rev = "I";
267 strcpy(card->shortname, pin);
268 break;
269 case 0x1:
270 rev = "F";
271 strcpy(card->shortname, pin);
272 break;
273 case 0x2:
274 rev = "G";
275 strcpy(card->shortname, pin);
276 break;
277 case 0x3:
278 rev = "H";
279 strcpy(card->shortname, pin);
280 break;
281 case 0x4:
282 rev = "E";
283 strcpy(card->shortname, fiji);
284 break;
285 case 0x5:
286 rev = "C";
287 strcpy(card->shortname, fiji);
288 break;
289 case 0x6:
290 rev = "D";
291 strcpy(card->shortname, fiji);
292 break;
293 case 0x7:
294 rev = "A-B (Fiji) or A-E (Pinnacle)";
295 strcpy(card->shortname, pinfiji);
296 break;
297 }
298 strcpy(card->longname, "Turtle Beach Multisound Pinnacle");
299 printk(KERN_INFO LOGNAME ": %s revision %s, Xilinx version %s, "
300 "I/O 0x%lx-0x%lx, IRQ %d, memory mapped to 0x%lX-0x%lX\n",
301 card->shortname,
302 rev, xv,
303 chip->io, chip->io + DSP_NUMIO - 1,
304 chip->irq,
305 chip->base, chip->base + 0x7fff);
306#endif
307
308 release_region(chip->io, DSP_NUMIO);
309 return 0;
310}
311
312static int snd_msnd_init_sma(struct snd_msnd *chip)
313{
314 static int initted;
315 u16 mastVolLeft, mastVolRight;
316 unsigned long flags;
317
318#ifdef MSND_CLASSIC
319 outb(chip->memid, chip->io + HP_MEMM);
320#endif
321 outb(HPBLKSEL_0, chip->io + HP_BLKS);
322 /* Motorola 56k shared memory base */
323 chip->SMA = chip->mappedbase + SMA_STRUCT_START;
324
325 if (initted) {
326 mastVolLeft = readw(chip->SMA + SMA_wCurrMastVolLeft);
327 mastVolRight = readw(chip->SMA + SMA_wCurrMastVolRight);
328 } else
329 mastVolLeft = mastVolRight = 0;
330 memset_io(chip->mappedbase, 0, 0x8000);
331
332 /* Critical section: bank 1 access */
333 spin_lock_irqsave(&chip->lock, flags);
334 outb(HPBLKSEL_1, chip->io + HP_BLKS);
335 memset_io(chip->mappedbase, 0, 0x8000);
336 outb(HPBLKSEL_0, chip->io + HP_BLKS);
337 spin_unlock_irqrestore(&chip->lock, flags);
338
339 /* Digital audio play queue */
340 chip->DAPQ = chip->mappedbase + DAPQ_OFFSET;
341 snd_msnd_init_queue(chip->DAPQ, DAPQ_DATA_BUFF, DAPQ_BUFF_SIZE);
342
343 /* Digital audio record queue */
344 chip->DARQ = chip->mappedbase + DARQ_OFFSET;
345 snd_msnd_init_queue(chip->DARQ, DARQ_DATA_BUFF, DARQ_BUFF_SIZE);
346
347 /* MIDI out queue */
348 chip->MODQ = chip->mappedbase + MODQ_OFFSET;
349 snd_msnd_init_queue(chip->MODQ, MODQ_DATA_BUFF, MODQ_BUFF_SIZE);
350
351 /* MIDI in queue */
352 chip->MIDQ = chip->mappedbase + MIDQ_OFFSET;
353 snd_msnd_init_queue(chip->MIDQ, MIDQ_DATA_BUFF, MIDQ_BUFF_SIZE);
354
355 /* DSP -> host message queue */
356 chip->DSPQ = chip->mappedbase + DSPQ_OFFSET;
357 snd_msnd_init_queue(chip->DSPQ, DSPQ_DATA_BUFF, DSPQ_BUFF_SIZE);
358
359 /* Setup some DSP values */
360#ifndef MSND_CLASSIC
361 writew(1, chip->SMA + SMA_wCurrPlayFormat);
362 writew(chip->play_sample_size, chip->SMA + SMA_wCurrPlaySampleSize);
363 writew(chip->play_channels, chip->SMA + SMA_wCurrPlayChannels);
364 writew(chip->play_sample_rate, chip->SMA + SMA_wCurrPlaySampleRate);
365#endif
366 writew(chip->play_sample_rate, chip->SMA + SMA_wCalFreqAtoD);
367 writew(mastVolLeft, chip->SMA + SMA_wCurrMastVolLeft);
368 writew(mastVolRight, chip->SMA + SMA_wCurrMastVolRight);
369#ifndef MSND_CLASSIC
370 writel(0x00010000, chip->SMA + SMA_dwCurrPlayPitch);
371 writel(0x00000001, chip->SMA + SMA_dwCurrPlayRate);
372#endif
373 writew(0x303, chip->SMA + SMA_wCurrInputTagBits);
374
375 initted = 1;
376
377 return 0;
378}
379
380
381static int upload_dsp_code(struct snd_card *card)
382{
383 struct snd_msnd *chip = card->private_data;
384 const struct firmware *init_fw = NULL, *perm_fw = NULL;
385 int err;
386
387 outb(HPBLKSEL_0, chip->io + HP_BLKS);
388
389 err = request_firmware(&init_fw, INITCODEFILE, card->dev);
390 if (err < 0) {
391 printk(KERN_ERR LOGNAME ": Error loading " INITCODEFILE);
392 goto cleanup1;
393 }
394 err = request_firmware(&perm_fw, PERMCODEFILE, card->dev);
395 if (err < 0) {
396 printk(KERN_ERR LOGNAME ": Error loading " PERMCODEFILE);
397 goto cleanup;
398 }
399
400 memcpy_toio(chip->mappedbase, perm_fw->data, perm_fw->size);
401 if (snd_msnd_upload_host(chip, init_fw->data, init_fw->size) < 0) {
402 printk(KERN_WARNING LOGNAME ": Error uploading to DSP\n");
403 err = -ENODEV;
404 goto cleanup;
405 }
406 printk(KERN_INFO LOGNAME ": DSP firmware uploaded\n");
407 err = 0;
408
409cleanup:
410 release_firmware(perm_fw);
411cleanup1:
412 release_firmware(init_fw);
413 return err;
414}
415
416#ifdef MSND_CLASSIC
417static void reset_proteus(struct snd_msnd *chip)
418{
419 outb(HPPRORESET_ON, chip->io + HP_PROR);
420 msleep(TIME_PRO_RESET);
421 outb(HPPRORESET_OFF, chip->io + HP_PROR);
422 msleep(TIME_PRO_RESET_DONE);
423}
424#endif
425
426static int snd_msnd_initialize(struct snd_card *card)
427{
428 struct snd_msnd *chip = card->private_data;
429 int err, timeout;
430
431#ifdef MSND_CLASSIC
432 outb(HPWAITSTATE_0, chip->io + HP_WAIT);
433 outb(HPBITMODE_16, chip->io + HP_BITM);
434
435 reset_proteus(chip);
436#endif
437 err = snd_msnd_init_sma(chip);
438 if (err < 0) {
439 printk(KERN_WARNING LOGNAME ": Cannot initialize SMA\n");
440 return err;
441 }
442
443 err = snd_msnd_reset_dsp(chip->io, NULL);
444 if (err < 0)
445 return err;
446
447 err = upload_dsp_code(card);
448 if (err < 0) {
449 printk(KERN_WARNING LOGNAME ": Cannot upload DSP code\n");
450 return err;
451 }
452
453 timeout = 200;
454
455 while (readw(chip->mappedbase)) {
456 msleep(1);
457 if (!timeout--) {
458 snd_printd(KERN_ERR LOGNAME ": DSP reset timeout\n");
459 return -EIO;
460 }
461 }
462
463 snd_msndmix_setup(chip);
464 return 0;
465}
466
467static int snd_msnd_dsp_full_reset(struct snd_card *card)
468{
469 struct snd_msnd *chip = card->private_data;
470 int rv;
471
472 if (test_bit(F_RESETTING, &chip->flags) || ++chip->nresets > 10)
473 return 0;
474
475 set_bit(F_RESETTING, &chip->flags);
476 snd_msnd_dsp_halt(chip, NULL); /* Unconditionally halt */
477
478 rv = snd_msnd_initialize(card);
479 if (rv)
480 printk(KERN_WARNING LOGNAME ": DSP reset failed\n");
481 snd_msndmix_force_recsrc(chip, 0);
482 clear_bit(F_RESETTING, &chip->flags);
483 return rv;
484}
485
486static int snd_msnd_dev_free(struct snd_device *device)
487{
488 snd_printdd("snd_msnd_chip_free()\n");
489 return 0;
490}
491
492static int snd_msnd_send_dsp_cmd_chk(struct snd_msnd *chip, u8 cmd)
493{
494 if (snd_msnd_send_dsp_cmd(chip, cmd) == 0)
495 return 0;
496 snd_msnd_dsp_full_reset(chip->card);
497 return snd_msnd_send_dsp_cmd(chip, cmd);
498}
499
500static int __devinit snd_msnd_calibrate_adc(struct snd_msnd *chip, u16 srate)
501{
502 snd_printdd("snd_msnd_calibrate_adc(%i)\n", srate);
503 writew(srate, chip->SMA + SMA_wCalFreqAtoD);
504 if (chip->calibrate_signal == 0)
505 writew(readw(chip->SMA + SMA_wCurrHostStatusFlags)
506 | 0x0001, chip->SMA + SMA_wCurrHostStatusFlags);
507 else
508 writew(readw(chip->SMA + SMA_wCurrHostStatusFlags)
509 & ~0x0001, chip->SMA + SMA_wCurrHostStatusFlags);
510 if (snd_msnd_send_word(chip, 0, 0, HDEXAR_CAL_A_TO_D) == 0 &&
511 snd_msnd_send_dsp_cmd_chk(chip, HDEX_AUX_REQ) == 0) {
512 schedule_timeout_interruptible(msecs_to_jiffies(333));
513 return 0;
514 }
515 printk(KERN_WARNING LOGNAME ": ADC calibration failed\n");
516 return -EIO;
517}
518
519/*
520 * ALSA callback function, called when attempting to open the MIDI device.
521 */
522static int snd_msnd_mpu401_open(struct snd_mpu401 *mpu)
523{
524 snd_msnd_enable_irq(mpu->private_data);
525 snd_msnd_send_dsp_cmd(mpu->private_data, HDEX_MIDI_IN_START);
526 return 0;
527}
528
529static void snd_msnd_mpu401_close(struct snd_mpu401 *mpu)
530{
531 snd_msnd_send_dsp_cmd(mpu->private_data, HDEX_MIDI_IN_STOP);
532 snd_msnd_disable_irq(mpu->private_data);
533}
534
535static long mpu_io[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
536static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
537
538static int __devinit snd_msnd_attach(struct snd_card *card)
539{
540 struct snd_msnd *chip = card->private_data;
541 int err;
542 static struct snd_device_ops ops = {
543 .dev_free = snd_msnd_dev_free,
544 };
545
546 err = request_irq(chip->irq, snd_msnd_interrupt, 0, card->shortname,
547 chip);
548 if (err < 0) {
549 printk(KERN_ERR LOGNAME ": Couldn't grab IRQ %d\n", chip->irq);
550 return err;
551 }
552 request_region(chip->io, DSP_NUMIO, card->shortname);
553
554 if (!request_mem_region(chip->base, BUFFSIZE, card->shortname)) {
555 printk(KERN_ERR LOGNAME
556 ": unable to grab memory region 0x%lx-0x%lx\n",
557 chip->base, chip->base + BUFFSIZE - 1);
558 release_region(chip->io, DSP_NUMIO);
559 free_irq(chip->irq, chip);
560 return -EBUSY;
561 }
562 chip->mappedbase = ioremap_nocache(chip->base, 0x8000);
563 if (!chip->mappedbase) {
564 printk(KERN_ERR LOGNAME
565 ": unable to map memory region 0x%lx-0x%lx\n",
566 chip->base, chip->base + BUFFSIZE - 1);
567 err = -EIO;
568 goto err_release_region;
569 }
570
571 err = snd_msnd_dsp_full_reset(card);
572 if (err < 0)
573 goto err_release_region;
574
575 /* Register device */
576 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
577 if (err < 0)
578 goto err_release_region;
579
580 err = snd_msnd_pcm(card, 0, NULL);
581 if (err < 0) {
582 printk(KERN_ERR LOGNAME ": error creating new PCM device\n");
583 goto err_release_region;
584 }
585
586 err = snd_msndmix_new(card);
587 if (err < 0) {
588 printk(KERN_ERR LOGNAME ": error creating new Mixer device\n");
589 goto err_release_region;
590 }
591
592
593 if (mpu_io[0] != SNDRV_AUTO_PORT) {
594 struct snd_mpu401 *mpu;
595
596 err = snd_mpu401_uart_new(card, 0, MPU401_HW_MPU401,
597 mpu_io[0],
598 MPU401_MODE_INPUT |
599 MPU401_MODE_OUTPUT,
600 mpu_irq[0], IRQF_DISABLED,
601 &chip->rmidi);
602 if (err < 0) {
603 printk(KERN_ERR LOGNAME
604 ": error creating new Midi device\n");
605 goto err_release_region;
606 }
607 mpu = chip->rmidi->private_data;
608
609 mpu->open_input = snd_msnd_mpu401_open;
610 mpu->close_input = snd_msnd_mpu401_close;
611 mpu->private_data = chip;
612 }
613
614 disable_irq(chip->irq);
615 snd_msnd_calibrate_adc(chip, chip->play_sample_rate);
616 snd_msndmix_force_recsrc(chip, 0);
617
618 err = snd_card_register(card);
619 if (err < 0)
620 goto err_release_region;
621
622 return 0;
623
624err_release_region:
625 if (chip->mappedbase)
626 iounmap(chip->mappedbase);
627 release_mem_region(chip->base, BUFFSIZE);
628 release_region(chip->io, DSP_NUMIO);
629 free_irq(chip->irq, chip);
630 return err;
631}
632
633
634static void __devexit snd_msnd_unload(struct snd_card *card)
635{
636 struct snd_msnd *chip = card->private_data;
637
638 iounmap(chip->mappedbase);
639 release_mem_region(chip->base, BUFFSIZE);
640 release_region(chip->io, DSP_NUMIO);
641 free_irq(chip->irq, chip);
642 snd_card_free(card);
643}
644
645#ifndef MSND_CLASSIC
646
647/* Pinnacle/Fiji Logical Device Configuration */
648
649static int __devinit snd_msnd_write_cfg(int cfg, int reg, int value)
650{
651 outb(reg, cfg);
652 outb(value, cfg + 1);
653 if (value != inb(cfg + 1)) {
654 printk(KERN_ERR LOGNAME ": snd_msnd_write_cfg: I/O error\n");
655 return -EIO;
656 }
657 return 0;
658}
659
660static int __devinit snd_msnd_write_cfg_io0(int cfg, int num, u16 io)
661{
662 if (snd_msnd_write_cfg(cfg, IREG_LOGDEVICE, num))
663 return -EIO;
664 if (snd_msnd_write_cfg(cfg, IREG_IO0_BASEHI, HIBYTE(io)))
665 return -EIO;
666 if (snd_msnd_write_cfg(cfg, IREG_IO0_BASELO, LOBYTE(io)))
667 return -EIO;
668 return 0;
669}
670
671static int __devinit snd_msnd_write_cfg_io1(int cfg, int num, u16 io)
672{
673 if (snd_msnd_write_cfg(cfg, IREG_LOGDEVICE, num))
674 return -EIO;
675 if (snd_msnd_write_cfg(cfg, IREG_IO1_BASEHI, HIBYTE(io)))
676 return -EIO;
677 if (snd_msnd_write_cfg(cfg, IREG_IO1_BASELO, LOBYTE(io)))
678 return -EIO;
679 return 0;
680}
681
682static int __devinit snd_msnd_write_cfg_irq(int cfg, int num, u16 irq)
683{
684 if (snd_msnd_write_cfg(cfg, IREG_LOGDEVICE, num))
685 return -EIO;
686 if (snd_msnd_write_cfg(cfg, IREG_IRQ_NUMBER, LOBYTE(irq)))
687 return -EIO;
688 if (snd_msnd_write_cfg(cfg, IREG_IRQ_TYPE, IRQTYPE_EDGE))
689 return -EIO;
690 return 0;
691}
692
693static int __devinit snd_msnd_write_cfg_mem(int cfg, int num, int mem)
694{
695 u16 wmem;
696
697 mem >>= 8;
698 wmem = (u16)(mem & 0xfff);
699 if (snd_msnd_write_cfg(cfg, IREG_LOGDEVICE, num))
700 return -EIO;
701 if (snd_msnd_write_cfg(cfg, IREG_MEMBASEHI, HIBYTE(wmem)))
702 return -EIO;
703 if (snd_msnd_write_cfg(cfg, IREG_MEMBASELO, LOBYTE(wmem)))
704 return -EIO;
705 if (wmem && snd_msnd_write_cfg(cfg, IREG_MEMCONTROL,
706 MEMTYPE_HIADDR | MEMTYPE_16BIT))
707 return -EIO;
708 return 0;
709}
710
711static int __devinit snd_msnd_activate_logical(int cfg, int num)
712{
713 if (snd_msnd_write_cfg(cfg, IREG_LOGDEVICE, num))
714 return -EIO;
715 if (snd_msnd_write_cfg(cfg, IREG_ACTIVATE, LD_ACTIVATE))
716 return -EIO;
717 return 0;
718}
719
720static int __devinit snd_msnd_write_cfg_logical(int cfg, int num, u16 io0,
721 u16 io1, u16 irq, int mem)
722{
723 if (snd_msnd_write_cfg(cfg, IREG_LOGDEVICE, num))
724 return -EIO;
725 if (snd_msnd_write_cfg_io0(cfg, num, io0))
726 return -EIO;
727 if (snd_msnd_write_cfg_io1(cfg, num, io1))
728 return -EIO;
729 if (snd_msnd_write_cfg_irq(cfg, num, irq))
730 return -EIO;
731 if (snd_msnd_write_cfg_mem(cfg, num, mem))
732 return -EIO;
733 if (snd_msnd_activate_logical(cfg, num))
734 return -EIO;
735 return 0;
736}
737
738static int __devinit snd_msnd_pinnacle_cfg_reset(int cfg)
739{
740 int i;
741
742 /* Reset devices if told to */
743 printk(KERN_INFO LOGNAME ": Resetting all devices\n");
744 for (i = 0; i < 4; ++i)
745 if (snd_msnd_write_cfg_logical(cfg, i, 0, 0, 0, 0))
746 return -EIO;
747
748 return 0;
749}
750#endif
751
752static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
753static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
754
755module_param_array(index, int, NULL, S_IRUGO);
756MODULE_PARM_DESC(index, "Index value for msnd_pinnacle soundcard.");
757module_param_array(id, charp, NULL, S_IRUGO);
758MODULE_PARM_DESC(id, "ID string for msnd_pinnacle soundcard.");
759
760static long io[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
761static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
762static long mem[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
763
764static long cfg[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
765
766#ifndef MSND_CLASSIC
767/* Extra Peripheral Configuration (Default: Disable) */
768static long ide_io0[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
769static long ide_io1[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
770static int ide_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ;
771
772static long joystick_io[SNDRV_CARDS] = SNDRV_DEFAULT_PORT;
773/* If we have the digital daugherboard... */
774static int digital[SNDRV_CARDS];
775
776/* Extra Peripheral Configuration */
777static int reset[SNDRV_CARDS];
778#endif
779
780static int write_ndelay[SNDRV_CARDS] = { [0 ... (SNDRV_CARDS-1)] = 1 };
781
782static int calibrate_signal;
783
784#ifdef CONFIG_PNP
785static int isapnp[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
786module_param_array(isapnp, bool, NULL, 0444);
787MODULE_PARM_DESC(isapnp, "ISA PnP detection for specified soundcard.");
788#endif
789
790MODULE_AUTHOR("Karsten Wiese <annabellesgarden@yahoo.de>");
791MODULE_DESCRIPTION("Turtle Beach " LONGNAME " Linux Driver");
792MODULE_LICENSE("GPL");
793MODULE_FIRMWARE(INITCODEFILE);
794MODULE_FIRMWARE(PERMCODEFILE);
795
796module_param_array(io, long, NULL, S_IRUGO);
797MODULE_PARM_DESC(io, "IO port #");
798module_param_array(irq, int, NULL, S_IRUGO);
799module_param_array(mem, long, NULL, S_IRUGO);
800module_param_array(write_ndelay, int, NULL, S_IRUGO);
801module_param(calibrate_signal, int, S_IRUGO);
802#ifndef MSND_CLASSIC
803module_param_array(digital, int, NULL, S_IRUGO);
804module_param_array(cfg, long, NULL, S_IRUGO);
805module_param_array(reset, int, 0, S_IRUGO);
806module_param_array(mpu_io, long, NULL, S_IRUGO);
807module_param_array(mpu_irq, int, NULL, S_IRUGO);
808module_param_array(ide_io0, long, NULL, S_IRUGO);
809module_param_array(ide_io1, long, NULL, S_IRUGO);
810module_param_array(ide_irq, int, NULL, S_IRUGO);
811module_param_array(joystick_io, long, NULL, S_IRUGO);
812#endif
813
814
815static int __devinit snd_msnd_isa_match(struct device *pdev, unsigned int i)
816{
817 if (io[i] == SNDRV_AUTO_PORT)
818 return 0;
819
820 if (irq[i] == SNDRV_AUTO_PORT || mem[i] == SNDRV_AUTO_PORT) {
821 printk(KERN_WARNING LOGNAME ": io, irq and mem must be set\n");
822 return 0;
823 }
824
825#ifdef MSND_CLASSIC
826 if (!(io[i] == 0x290 ||
827 io[i] == 0x260 ||
828 io[i] == 0x250 ||
829 io[i] == 0x240 ||
830 io[i] == 0x230 ||
831 io[i] == 0x220 ||
832 io[i] == 0x210 ||
833 io[i] == 0x3e0)) {
834 printk(KERN_ERR LOGNAME ": \"io\" - DSP I/O base must be set "
835 " to 0x210, 0x220, 0x230, 0x240, 0x250, 0x260, 0x290, "
836 "or 0x3E0\n");
837 return 0;
838 }
839#else
840 if (io[i] < 0x100 || io[i] > 0x3e0 || (io[i] % 0x10) != 0) {
841 printk(KERN_ERR LOGNAME
842 ": \"io\" - DSP I/O base must within the range 0x100 "
843 "to 0x3E0 and must be evenly divisible by 0x10\n");
844 return 0;
845 }
846#endif /* MSND_CLASSIC */
847
848 if (!(irq[i] == 5 ||
849 irq[i] == 7 ||
850 irq[i] == 9 ||
851 irq[i] == 10 ||
852 irq[i] == 11 ||
853 irq[i] == 12)) {
854 printk(KERN_ERR LOGNAME
855 ": \"irq\" - must be set to 5, 7, 9, 10, 11 or 12\n");
856 return 0;
857 }
858
859 if (!(mem[i] == 0xb0000 ||
860 mem[i] == 0xc8000 ||
861 mem[i] == 0xd0000 ||
862 mem[i] == 0xd8000 ||
863 mem[i] == 0xe0000 ||
864 mem[i] == 0xe8000)) {
865 printk(KERN_ERR LOGNAME ": \"mem\" - must be set to "
866 "0xb0000, 0xc8000, 0xd0000, 0xd8000, 0xe0000 or "
867 "0xe8000\n");
868 return 0;
869 }
870
871#ifndef MSND_CLASSIC
872 if (cfg[i] == SNDRV_AUTO_PORT) {
873 printk(KERN_INFO LOGNAME ": Assuming PnP mode\n");
874 } else if (cfg[i] != 0x250 && cfg[i] != 0x260 && cfg[i] != 0x270) {
875 printk(KERN_INFO LOGNAME
876 ": Config port must be 0x250, 0x260 or 0x270 "
877 "(or unspecified for PnP mode)\n");
878 return 0;
879 }
880#endif /* MSND_CLASSIC */
881
882 return 1;
883}
884
885static int __devinit snd_msnd_isa_probe(struct device *pdev, unsigned int idx)
886{
887 int err;
888 struct snd_card *card;
889 struct snd_msnd *chip;
890
891 if (isapnp[idx] || cfg[idx] == SNDRV_AUTO_PORT) {
892 printk(KERN_INFO LOGNAME ": Assuming PnP mode\n");
893 return -ENODEV;
894 }
895
896 err = snd_card_create(index[idx], id[idx], THIS_MODULE,
897 sizeof(struct snd_msnd), &card);
898 if (err < 0)
899 return err;
900
901 snd_card_set_dev(card, pdev);
902 chip = card->private_data;
903 chip->card = card;
904
905#ifdef MSND_CLASSIC
906 switch (irq[idx]) {
907 case 5:
908 chip->irqid = HPIRQ_5; break;
909 case 7:
910 chip->irqid = HPIRQ_7; break;
911 case 9:
912 chip->irqid = HPIRQ_9; break;
913 case 10:
914 chip->irqid = HPIRQ_10; break;
915 case 11:
916 chip->irqid = HPIRQ_11; break;
917 case 12:
918 chip->irqid = HPIRQ_12; break;
919 }
920
921 switch (mem[idx]) {
922 case 0xb0000:
923 chip->memid = HPMEM_B000; break;
924 case 0xc8000:
925 chip->memid = HPMEM_C800; break;
926 case 0xd0000:
927 chip->memid = HPMEM_D000; break;
928 case 0xd8000:
929 chip->memid = HPMEM_D800; break;
930 case 0xe0000:
931 chip->memid = HPMEM_E000; break;
932 case 0xe8000:
933 chip->memid = HPMEM_E800; break;
934 }
935#else
936 printk(KERN_INFO LOGNAME ": Non-PnP mode: configuring at port 0x%lx\n",
937 cfg[idx]);
938
939 if (!request_region(cfg[idx], 2, "Pinnacle/Fiji Config")) {
940 printk(KERN_ERR LOGNAME ": Config port 0x%lx conflict\n",
941 cfg[idx]);
942 snd_card_free(card);
943 return -EIO;
944 }
945 if (reset[idx])
946 if (snd_msnd_pinnacle_cfg_reset(cfg[idx])) {
947 err = -EIO;
948 goto cfg_error;
949 }
950
951 /* DSP */
952 err = snd_msnd_write_cfg_logical(cfg[idx], 0,
953 io[idx], 0,
954 irq[idx], mem[idx]);
955
956 if (err)
957 goto cfg_error;
958
959 /* The following are Pinnacle specific */
960
961 /* MPU */
962 if (mpu_io[idx] != SNDRV_AUTO_PORT
963 && mpu_irq[idx] != SNDRV_AUTO_IRQ) {
964 printk(KERN_INFO LOGNAME
965 ": Configuring MPU to I/O 0x%lx IRQ %d\n",
966 mpu_io[idx], mpu_irq[idx]);
967 err = snd_msnd_write_cfg_logical(cfg[idx], 1,
968 mpu_io[idx], 0,
969 mpu_irq[idx], 0);
970
971 if (err)
972 goto cfg_error;
973 }
974
975 /* IDE */
976 if (ide_io0[idx] != SNDRV_AUTO_PORT
977 && ide_io1[idx] != SNDRV_AUTO_PORT
978 && ide_irq[idx] != SNDRV_AUTO_IRQ) {
979 printk(KERN_INFO LOGNAME
980 ": Configuring IDE to I/O 0x%lx, 0x%lx IRQ %d\n",
981 ide_io0[idx], ide_io1[idx], ide_irq[idx]);
982 err = snd_msnd_write_cfg_logical(cfg[idx], 2,
983 ide_io0[idx], ide_io1[idx],
984 ide_irq[idx], 0);
985
986 if (err)
987 goto cfg_error;
988 }
989
990 /* Joystick */
991 if (joystick_io[idx] != SNDRV_AUTO_PORT) {
992 printk(KERN_INFO LOGNAME
993 ": Configuring joystick to I/O 0x%lx\n",
994 joystick_io[idx]);
995 err = snd_msnd_write_cfg_logical(cfg[idx], 3,
996 joystick_io[idx], 0,
997 0, 0);
998
999 if (err)
1000 goto cfg_error;
1001 }
1002 release_region(cfg[idx], 2);
1003
1004#endif /* MSND_CLASSIC */
1005
1006 set_default_audio_parameters(chip);
1007#ifdef MSND_CLASSIC
1008 chip->type = msndClassic;
1009#else
1010 chip->type = msndPinnacle;
1011#endif
1012 chip->io = io[idx];
1013 chip->irq = irq[idx];
1014 chip->base = mem[idx];
1015
1016 chip->calibrate_signal = calibrate_signal ? 1 : 0;
1017 chip->recsrc = 0;
1018 chip->dspq_data_buff = DSPQ_DATA_BUFF;
1019 chip->dspq_buff_size = DSPQ_BUFF_SIZE;
1020 if (write_ndelay[idx])
1021 clear_bit(F_DISABLE_WRITE_NDELAY, &chip->flags);
1022 else
1023 set_bit(F_DISABLE_WRITE_NDELAY, &chip->flags);
1024#ifndef MSND_CLASSIC
1025 if (digital[idx])
1026 set_bit(F_HAVEDIGITAL, &chip->flags);
1027#endif
1028 spin_lock_init(&chip->lock);
1029 err = snd_msnd_probe(card);
1030 if (err < 0) {
1031 printk(KERN_ERR LOGNAME ": Probe failed\n");
1032 snd_card_free(card);
1033 return err;
1034 }
1035
1036 err = snd_msnd_attach(card);
1037 if (err < 0) {
1038 printk(KERN_ERR LOGNAME ": Attach failed\n");
1039 snd_card_free(card);
1040 return err;
1041 }
1042 dev_set_drvdata(pdev, card);
1043
1044 return 0;
1045
1046#ifndef MSND_CLASSIC
1047cfg_error:
1048 release_region(cfg[idx], 2);
1049 snd_card_free(card);
1050 return err;
1051#endif
1052}
1053
1054static int __devexit snd_msnd_isa_remove(struct device *pdev, unsigned int dev)
1055{
1056 snd_msnd_unload(dev_get_drvdata(pdev));
1057 dev_set_drvdata(pdev, NULL);
1058 return 0;
1059}
1060
1061#define DEV_NAME "msnd-pinnacle"
1062
1063static struct isa_driver snd_msnd_driver = {
1064 .match = snd_msnd_isa_match,
1065 .probe = snd_msnd_isa_probe,
1066 .remove = __devexit_p(snd_msnd_isa_remove),
1067 /* FIXME: suspend, resume */
1068 .driver = {
1069 .name = DEV_NAME
1070 },
1071};
1072
1073#ifdef CONFIG_PNP
1074static int __devinit snd_msnd_pnp_detect(struct pnp_card_link *pcard,
1075 const struct pnp_card_device_id *pid)
1076{
1077 static int idx;
1078 struct pnp_dev *pnp_dev;
1079 struct pnp_dev *mpu_dev;
1080 struct snd_card *card;
1081 struct snd_msnd *chip;
1082 int ret;
1083
1084 for ( ; idx < SNDRV_CARDS; idx++) {
1085 if (isapnp[idx])
1086 break;
1087 }
1088 if (idx >= SNDRV_CARDS)
1089 return -ENODEV;
1090
1091 /*
1092 * Check that we still have room for another sound card ...
1093 */
1094 pnp_dev = pnp_request_card_device(pcard, pid->devs[0].id, NULL);
1095 if (!pnp_dev)
1096 return -ENODEV;
1097
1098 mpu_dev = pnp_request_card_device(pcard, pid->devs[1].id, NULL);
1099 if (!mpu_dev)
1100 return -ENODEV;
1101
1102 if (!pnp_is_active(pnp_dev) && pnp_activate_dev(pnp_dev) < 0) {
1103 printk(KERN_INFO "msnd_pinnacle: device is inactive\n");
1104 return -EBUSY;
1105 }
1106
1107 if (!pnp_is_active(mpu_dev) && pnp_activate_dev(mpu_dev) < 0) {
1108 printk(KERN_INFO "msnd_pinnacle: MPU device is inactive\n");
1109 return -EBUSY;
1110 }
1111
1112 /*
1113 * Create a new ALSA sound card entry, in anticipation
1114 * of detecting our hardware ...
1115 */
1116 ret = snd_card_create(index[idx], id[idx], THIS_MODULE,
1117 sizeof(struct snd_msnd), &card);
1118 if (ret < 0)
1119 return ret;
1120
1121 chip = card->private_data;
1122 chip->card = card;
1123 snd_card_set_dev(card, &pcard->card->dev);
1124
1125 /*
1126 * Read the correct parameters off the ISA PnP bus ...
1127 */
1128 io[idx] = pnp_port_start(pnp_dev, 0);
1129 irq[idx] = pnp_irq(pnp_dev, 0);
1130 mem[idx] = pnp_mem_start(pnp_dev, 0);
1131 mpu_io[idx] = pnp_port_start(mpu_dev, 0);
1132 mpu_irq[idx] = pnp_irq(mpu_dev, 0);
1133
1134 set_default_audio_parameters(chip);
1135#ifdef MSND_CLASSIC
1136 chip->type = msndClassic;
1137#else
1138 chip->type = msndPinnacle;
1139#endif
1140 chip->io = io[idx];
1141 chip->irq = irq[idx];
1142 chip->base = mem[idx];
1143
1144 chip->calibrate_signal = calibrate_signal ? 1 : 0;
1145 chip->recsrc = 0;
1146 chip->dspq_data_buff = DSPQ_DATA_BUFF;
1147 chip->dspq_buff_size = DSPQ_BUFF_SIZE;
1148 if (write_ndelay[idx])
1149 clear_bit(F_DISABLE_WRITE_NDELAY, &chip->flags);
1150 else
1151 set_bit(F_DISABLE_WRITE_NDELAY, &chip->flags);
1152#ifndef MSND_CLASSIC
1153 if (digital[idx])
1154 set_bit(F_HAVEDIGITAL, &chip->flags);
1155#endif
1156 spin_lock_init(&chip->lock);
1157 ret = snd_msnd_probe(card);
1158 if (ret < 0) {
1159 printk(KERN_ERR LOGNAME ": Probe failed\n");
1160 goto _release_card;
1161 }
1162
1163 ret = snd_msnd_attach(card);
1164 if (ret < 0) {
1165 printk(KERN_ERR LOGNAME ": Attach failed\n");
1166 goto _release_card;
1167 }
1168
1169 pnp_set_card_drvdata(pcard, card);
1170 ++idx;
1171 return 0;
1172
1173_release_card:
1174 snd_card_free(card);
1175 return ret;
1176}
1177
1178static void __devexit snd_msnd_pnp_remove(struct pnp_card_link *pcard)
1179{
1180 snd_msnd_unload(pnp_get_card_drvdata(pcard));
1181 pnp_set_card_drvdata(pcard, NULL);
1182}
1183
1184static int isa_registered;
1185static int pnp_registered;
1186
1187static struct pnp_card_device_id msnd_pnpids[] = {
1188 /* Pinnacle PnP */
1189 { .id = "BVJ0440", .devs = { { "TBS0000" }, { "TBS0001" } } },
1190 { .id = "" } /* end */
1191};
1192
1193MODULE_DEVICE_TABLE(pnp_card, msnd_pnpids);
1194
1195static struct pnp_card_driver msnd_pnpc_driver = {
1196 .flags = PNP_DRIVER_RES_DO_NOT_CHANGE,
1197 .name = "msnd_pinnacle",
1198 .id_table = msnd_pnpids,
1199 .probe = snd_msnd_pnp_detect,
1200 .remove = __devexit_p(snd_msnd_pnp_remove),
1201};
1202#endif /* CONFIG_PNP */
1203
1204static int __init snd_msnd_init(void)
1205{
1206 int err;
1207
1208 err = isa_register_driver(&snd_msnd_driver, SNDRV_CARDS);
1209#ifdef CONFIG_PNP
1210 if (!err)
1211 isa_registered = 1;
1212
1213 err = pnp_register_card_driver(&msnd_pnpc_driver);
1214 if (!err)
1215 pnp_registered = 1;
1216
1217 if (isa_registered)
1218 err = 0;
1219#endif
1220 return err;
1221}
1222
1223static void __exit snd_msnd_exit(void)
1224{
1225#ifdef CONFIG_PNP
1226 if (pnp_registered)
1227 pnp_unregister_card_driver(&msnd_pnpc_driver);
1228 if (isa_registered)
1229#endif
1230 isa_unregister_driver(&snd_msnd_driver);
1231}
1232
1233module_init(snd_msnd_init);
1234module_exit(snd_msnd_exit);
1235