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 * $Id: msnd.c,v 1.17 1999/03/21 16:50:09 andrewtv Exp $
25 ********************************************************************/
27 #include <linux/module.h>
28 #include <linux/kernel.h>
29 #include <linux/slab.h>
30 #include <linux/vmalloc.h>
31 #include <linux/types.h>
32 #include <linux/delay.h>
34 #include <linux/init.h>
35 #include <linux/interrupt.h>
38 #include <asm/uaccess.h>
39 #include <linux/spinlock.h>
43 #define LOGNAME "msnd"
45 #define MSND_MAX_DEVS 4
47 static multisound_dev_t *devs[MSND_MAX_DEVS];
50 int msnd_register(multisound_dev_t *dev)
54 for (i = 0; i < MSND_MAX_DEVS; ++i)
58 if (i == MSND_MAX_DEVS)
66 void msnd_unregister(multisound_dev_t *dev)
70 for (i = 0; i < MSND_MAX_DEVS; ++i)
74 if (i == MSND_MAX_DEVS) {
75 printk(KERN_WARNING LOGNAME ": Unregistering unknown device\n");
83 void msnd_init_queue(void __iomem *base, int start, int size)
85 writew(PCTODSP_BASED(start), base + JQS_wStart);
86 writew(PCTODSP_OFFSET(size) - 1, base + JQS_wSize);
87 writew(0, base + JQS_wHead);
88 writew(0, base + JQS_wTail);
91 void msnd_fifo_init(msnd_fifo *f)
96 void msnd_fifo_free(msnd_fifo *f)
102 int msnd_fifo_alloc(msnd_fifo *f, size_t n)
105 f->data = (char *)vmalloc(n);
117 void msnd_fifo_make_empty(msnd_fifo *f)
119 f->len = f->tail = f->head = 0;
122 int msnd_fifo_write_io(msnd_fifo *f, char __iomem *buf, size_t len)
126 while ((count < len) && (f->len != f->n)) {
130 if (f->head <= f->tail) {
131 nwritten = len - count;
132 if (nwritten > f->n - f->tail)
133 nwritten = f->n - f->tail;
136 nwritten = f->head - f->tail;
137 if (nwritten > len - count)
138 nwritten = len - count;
141 memcpy_fromio(f->data + f->tail, buf, nwritten);
153 int msnd_fifo_write(msnd_fifo *f, const char *buf, size_t len)
157 while ((count < len) && (f->len != f->n)) {
161 if (f->head <= f->tail) {
162 nwritten = len - count;
163 if (nwritten > f->n - f->tail)
164 nwritten = f->n - f->tail;
167 nwritten = f->head - f->tail;
168 if (nwritten > len - count)
169 nwritten = len - count;
172 memcpy(f->data + f->tail, buf, nwritten);
184 int msnd_fifo_read_io(msnd_fifo *f, char __iomem *buf, size_t len)
188 while ((count < len) && (f->len > 0)) {
192 if (f->tail <= f->head) {
194 if (nread > f->n - f->head)
195 nread = f->n - f->head;
198 nread = f->tail - f->head;
199 if (nread > len - count)
203 memcpy_toio(buf, f->data + f->head, nread);
215 int msnd_fifo_read(msnd_fifo *f, char *buf, size_t len)
219 while ((count < len) && (f->len > 0)) {
223 if (f->tail <= f->head) {
225 if (nread > f->n - f->head)
226 nread = f->n - f->head;
229 nread = f->tail - f->head;
230 if (nread > len - count)
234 memcpy(buf, f->data + f->head, nread);
246 static int msnd_wait_TXDE(multisound_dev_t *dev)
248 register unsigned int io = dev->io;
249 register int timeout = 1000;
252 if (msnd_inb(io + HP_ISR) & HPISR_TXDE)
258 static int msnd_wait_HC0(multisound_dev_t *dev)
260 register unsigned int io = dev->io;
261 register int timeout = 1000;
264 if (!(msnd_inb(io + HP_CVR) & HPCVR_HC))
270 int msnd_send_dsp_cmd(multisound_dev_t *dev, BYTE cmd)
274 spin_lock_irqsave(&dev->lock, flags);
275 if (msnd_wait_HC0(dev) == 0) {
276 msnd_outb(cmd, dev->io + HP_CVR);
277 spin_unlock_irqrestore(&dev->lock, flags);
280 spin_unlock_irqrestore(&dev->lock, flags);
282 printk(KERN_DEBUG LOGNAME ": Send DSP command timeout\n");
287 int msnd_send_word(multisound_dev_t *dev, unsigned char high,
288 unsigned char mid, unsigned char low)
290 register unsigned int io = dev->io;
292 if (msnd_wait_TXDE(dev) == 0) {
293 msnd_outb(high, io + HP_TXH);
294 msnd_outb(mid, io + HP_TXM);
295 msnd_outb(low, io + HP_TXL);
299 printk(KERN_DEBUG LOGNAME ": Send host word timeout\n");
304 int msnd_upload_host(multisound_dev_t *dev, char *bin, int len)
309 printk(KERN_WARNING LOGNAME ": Upload host data not multiple of 3!\n");
313 for (i = 0; i < len; i += 3)
314 if (msnd_send_word(dev, bin[i], bin[i + 1], bin[i + 2]) != 0)
317 msnd_inb(dev->io + HP_RXL);
318 msnd_inb(dev->io + HP_CVR);
323 int msnd_enable_irq(multisound_dev_t *dev)
330 printk(KERN_DEBUG LOGNAME ": Enabling IRQ\n");
332 spin_lock_irqsave(&dev->lock, flags);
333 if (msnd_wait_TXDE(dev) == 0) {
334 msnd_outb(msnd_inb(dev->io + HP_ICR) | HPICR_TREQ, dev->io + HP_ICR);
335 if (dev->type == msndClassic)
336 msnd_outb(dev->irqid, dev->io + HP_IRQM);
337 msnd_outb(msnd_inb(dev->io + HP_ICR) & ~HPICR_TREQ, dev->io + HP_ICR);
338 msnd_outb(msnd_inb(dev->io + HP_ICR) | HPICR_RREQ, dev->io + HP_ICR);
339 enable_irq(dev->irq);
340 msnd_init_queue(dev->DSPQ, dev->dspq_data_buff, dev->dspq_buff_size);
341 spin_unlock_irqrestore(&dev->lock, flags);
344 spin_unlock_irqrestore(&dev->lock, flags);
346 printk(KERN_DEBUG LOGNAME ": Enable IRQ failed\n");
351 int msnd_disable_irq(multisound_dev_t *dev)
355 if (--dev->irq_ref > 0)
358 if (dev->irq_ref < 0)
359 printk(KERN_DEBUG LOGNAME ": IRQ ref count is %d\n", dev->irq_ref);
361 printk(KERN_DEBUG LOGNAME ": Disabling IRQ\n");
363 spin_lock_irqsave(&dev->lock, flags);
364 if (msnd_wait_TXDE(dev) == 0) {
365 msnd_outb(msnd_inb(dev->io + HP_ICR) & ~HPICR_RREQ, dev->io + HP_ICR);
366 if (dev->type == msndClassic)
367 msnd_outb(HPIRQ_NONE, dev->io + HP_IRQM);
368 disable_irq(dev->irq);
369 spin_unlock_irqrestore(&dev->lock, flags);
372 spin_unlock_irqrestore(&dev->lock, flags);
374 printk(KERN_DEBUG LOGNAME ": Disable IRQ failed\n");
380 EXPORT_SYMBOL(msnd_register);
381 EXPORT_SYMBOL(msnd_unregister);
383 EXPORT_SYMBOL(msnd_init_queue);
385 EXPORT_SYMBOL(msnd_fifo_init);
386 EXPORT_SYMBOL(msnd_fifo_free);
387 EXPORT_SYMBOL(msnd_fifo_alloc);
388 EXPORT_SYMBOL(msnd_fifo_make_empty);
389 EXPORT_SYMBOL(msnd_fifo_write_io);
390 EXPORT_SYMBOL(msnd_fifo_read_io);
391 EXPORT_SYMBOL(msnd_fifo_write);
392 EXPORT_SYMBOL(msnd_fifo_read);
394 EXPORT_SYMBOL(msnd_send_dsp_cmd);
395 EXPORT_SYMBOL(msnd_send_word);
396 EXPORT_SYMBOL(msnd_upload_host);
398 EXPORT_SYMBOL(msnd_enable_irq);
399 EXPORT_SYMBOL(msnd_disable_irq);
403 MODULE_AUTHOR ("Andrew Veliath <andrewtv@usa.net>");
404 MODULE_DESCRIPTION ("Turtle Beach MultiSound Driver Base");
405 MODULE_LICENSE("GPL");
408 int init_module(void)
413 void cleanup_module(void)