1 /*********************************************************************
5 * Turtle Beach MultiSound Sound Card Driver for Linux
7 * Copyright (C) 1998 Andrew Veliath
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 ********************************************************************/
25 #include <linux/module.h>
26 #include <linux/kernel.h>
27 #include <linux/slab.h>
28 #include <linux/vmalloc.h>
29 #include <linux/types.h>
30 #include <linux/delay.h>
32 #include <linux/init.h>
33 #include <linux/interrupt.h>
36 #include <asm/uaccess.h>
37 #include <linux/spinlock.h>
41 #define LOGNAME "msnd"
43 #define MSND_MAX_DEVS 4
45 static multisound_dev_t *devs[MSND_MAX_DEVS];
48 int msnd_register(multisound_dev_t *dev)
52 for (i = 0; i < MSND_MAX_DEVS; ++i)
56 if (i == MSND_MAX_DEVS)
64 void msnd_unregister(multisound_dev_t *dev)
68 for (i = 0; i < MSND_MAX_DEVS; ++i)
72 if (i == MSND_MAX_DEVS) {
73 printk(KERN_WARNING LOGNAME ": Unregistering unknown device\n");
81 void msnd_init_queue(void __iomem *base, int start, int size)
83 writew(PCTODSP_BASED(start), base + JQS_wStart);
84 writew(PCTODSP_OFFSET(size) - 1, base + JQS_wSize);
85 writew(0, base + JQS_wHead);
86 writew(0, base + JQS_wTail);
89 void msnd_fifo_init(msnd_fifo *f)
94 void msnd_fifo_free(msnd_fifo *f)
100 int msnd_fifo_alloc(msnd_fifo *f, size_t n)
103 f->data = (char *)vmalloc(n);
115 void msnd_fifo_make_empty(msnd_fifo *f)
117 f->len = f->tail = f->head = 0;
120 int msnd_fifo_write_io(msnd_fifo *f, char __iomem *buf, size_t len)
124 while ((count < len) && (f->len != f->n)) {
128 if (f->head <= f->tail) {
129 nwritten = len - count;
130 if (nwritten > f->n - f->tail)
131 nwritten = f->n - f->tail;
134 nwritten = f->head - f->tail;
135 if (nwritten > len - count)
136 nwritten = len - count;
139 memcpy_fromio(f->data + f->tail, buf, nwritten);
151 int msnd_fifo_write(msnd_fifo *f, const char *buf, size_t len)
155 while ((count < len) && (f->len != f->n)) {
159 if (f->head <= f->tail) {
160 nwritten = len - count;
161 if (nwritten > f->n - f->tail)
162 nwritten = f->n - f->tail;
165 nwritten = f->head - f->tail;
166 if (nwritten > len - count)
167 nwritten = len - count;
170 memcpy(f->data + f->tail, buf, nwritten);
182 int msnd_fifo_read_io(msnd_fifo *f, char __iomem *buf, size_t len)
186 while ((count < len) && (f->len > 0)) {
190 if (f->tail <= f->head) {
192 if (nread > f->n - f->head)
193 nread = f->n - f->head;
196 nread = f->tail - f->head;
197 if (nread > len - count)
201 memcpy_toio(buf, f->data + f->head, nread);
213 int msnd_fifo_read(msnd_fifo *f, char *buf, size_t len)
217 while ((count < len) && (f->len > 0)) {
221 if (f->tail <= f->head) {
223 if (nread > f->n - f->head)
224 nread = f->n - f->head;
227 nread = f->tail - f->head;
228 if (nread > len - count)
232 memcpy(buf, f->data + f->head, nread);
244 static int msnd_wait_TXDE(multisound_dev_t *dev)
246 register unsigned int io = dev->io;
247 register int timeout = 1000;
250 if (msnd_inb(io + HP_ISR) & HPISR_TXDE)
256 static int msnd_wait_HC0(multisound_dev_t *dev)
258 register unsigned int io = dev->io;
259 register int timeout = 1000;
262 if (!(msnd_inb(io + HP_CVR) & HPCVR_HC))
268 int msnd_send_dsp_cmd(multisound_dev_t *dev, BYTE cmd)
272 spin_lock_irqsave(&dev->lock, flags);
273 if (msnd_wait_HC0(dev) == 0) {
274 msnd_outb(cmd, dev->io + HP_CVR);
275 spin_unlock_irqrestore(&dev->lock, flags);
278 spin_unlock_irqrestore(&dev->lock, flags);
280 printk(KERN_DEBUG LOGNAME ": Send DSP command timeout\n");
285 int msnd_send_word(multisound_dev_t *dev, unsigned char high,
286 unsigned char mid, unsigned char low)
288 register unsigned int io = dev->io;
290 if (msnd_wait_TXDE(dev) == 0) {
291 msnd_outb(high, io + HP_TXH);
292 msnd_outb(mid, io + HP_TXM);
293 msnd_outb(low, io + HP_TXL);
297 printk(KERN_DEBUG LOGNAME ": Send host word timeout\n");
302 int msnd_upload_host(multisound_dev_t *dev, char *bin, int len)
307 printk(KERN_WARNING LOGNAME ": Upload host data not multiple of 3!\n");
311 for (i = 0; i < len; i += 3)
312 if (msnd_send_word(dev, bin[i], bin[i + 1], bin[i + 2]) != 0)
315 msnd_inb(dev->io + HP_RXL);
316 msnd_inb(dev->io + HP_CVR);
321 int msnd_enable_irq(multisound_dev_t *dev)
328 printk(KERN_DEBUG LOGNAME ": Enabling IRQ\n");
330 spin_lock_irqsave(&dev->lock, flags);
331 if (msnd_wait_TXDE(dev) == 0) {
332 msnd_outb(msnd_inb(dev->io + HP_ICR) | HPICR_TREQ, dev->io + HP_ICR);
333 if (dev->type == msndClassic)
334 msnd_outb(dev->irqid, dev->io + HP_IRQM);
335 msnd_outb(msnd_inb(dev->io + HP_ICR) & ~HPICR_TREQ, dev->io + HP_ICR);
336 msnd_outb(msnd_inb(dev->io + HP_ICR) | HPICR_RREQ, dev->io + HP_ICR);
337 enable_irq(dev->irq);
338 msnd_init_queue(dev->DSPQ, dev->dspq_data_buff, dev->dspq_buff_size);
339 spin_unlock_irqrestore(&dev->lock, flags);
342 spin_unlock_irqrestore(&dev->lock, flags);
344 printk(KERN_DEBUG LOGNAME ": Enable IRQ failed\n");
349 int msnd_disable_irq(multisound_dev_t *dev)
353 if (--dev->irq_ref > 0)
356 if (dev->irq_ref < 0)
357 printk(KERN_DEBUG LOGNAME ": IRQ ref count is %d\n", dev->irq_ref);
359 printk(KERN_DEBUG LOGNAME ": Disabling IRQ\n");
361 spin_lock_irqsave(&dev->lock, flags);
362 if (msnd_wait_TXDE(dev) == 0) {
363 msnd_outb(msnd_inb(dev->io + HP_ICR) & ~HPICR_RREQ, dev->io + HP_ICR);
364 if (dev->type == msndClassic)
365 msnd_outb(HPIRQ_NONE, dev->io + HP_IRQM);
366 disable_irq(dev->irq);
367 spin_unlock_irqrestore(&dev->lock, flags);
370 spin_unlock_irqrestore(&dev->lock, flags);
372 printk(KERN_DEBUG LOGNAME ": Disable IRQ failed\n");
378 EXPORT_SYMBOL(msnd_register);
379 EXPORT_SYMBOL(msnd_unregister);
381 EXPORT_SYMBOL(msnd_init_queue);
383 EXPORT_SYMBOL(msnd_fifo_init);
384 EXPORT_SYMBOL(msnd_fifo_free);
385 EXPORT_SYMBOL(msnd_fifo_alloc);
386 EXPORT_SYMBOL(msnd_fifo_make_empty);
387 EXPORT_SYMBOL(msnd_fifo_write_io);
388 EXPORT_SYMBOL(msnd_fifo_read_io);
389 EXPORT_SYMBOL(msnd_fifo_write);
390 EXPORT_SYMBOL(msnd_fifo_read);
392 EXPORT_SYMBOL(msnd_send_dsp_cmd);
393 EXPORT_SYMBOL(msnd_send_word);
394 EXPORT_SYMBOL(msnd_upload_host);
396 EXPORT_SYMBOL(msnd_enable_irq);
397 EXPORT_SYMBOL(msnd_disable_irq);
401 MODULE_AUTHOR ("Andrew Veliath <andrewtv@usa.net>");
402 MODULE_DESCRIPTION ("Turtle Beach MultiSound Driver Base");
403 MODULE_LICENSE("GPL");
406 int init_module(void)
411 void cleanup_module(void)