[PATCH] iSeries build with newer assemblers and compilers
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / sound / oss / msnd.c
blob4f1ff1bccdcee0a6106ffbd16b206071564c22d6
1 /*********************************************************************
3 * msnd.c - Driver Base
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/version.h>
28 #include <linux/module.h>
29 #include <linux/kernel.h>
30 #include <linux/slab.h>
31 #include <linux/vmalloc.h>
32 #include <linux/types.h>
33 #include <linux/delay.h>
34 #include <linux/mm.h>
35 #include <linux/init.h>
36 #include <linux/interrupt.h>
38 #include <asm/io.h>
39 #include <asm/uaccess.h>
40 #include <linux/spinlock.h>
41 #include <asm/irq.h>
42 #include "msnd.h"
44 #define LOGNAME "msnd"
46 #define MSND_MAX_DEVS 4
48 static multisound_dev_t *devs[MSND_MAX_DEVS];
49 static int num_devs;
51 int __init msnd_register(multisound_dev_t *dev)
53 int i;
55 for (i = 0; i < MSND_MAX_DEVS; ++i)
56 if (devs[i] == NULL)
57 break;
59 if (i == MSND_MAX_DEVS)
60 return -ENOMEM;
62 devs[i] = dev;
63 ++num_devs;
64 return 0;
67 void msnd_unregister(multisound_dev_t *dev)
69 int i;
71 for (i = 0; i < MSND_MAX_DEVS; ++i)
72 if (devs[i] == dev)
73 break;
75 if (i == MSND_MAX_DEVS) {
76 printk(KERN_WARNING LOGNAME ": Unregistering unknown device\n");
77 return;
80 devs[i] = NULL;
81 --num_devs;
84 void msnd_init_queue(void __iomem *base, int start, int size)
86 writew(PCTODSP_BASED(start), base + JQS_wStart);
87 writew(PCTODSP_OFFSET(size) - 1, base + JQS_wSize);
88 writew(0, base + JQS_wHead);
89 writew(0, base + JQS_wTail);
92 void msnd_fifo_init(msnd_fifo *f)
94 f->data = NULL;
97 void msnd_fifo_free(msnd_fifo *f)
99 if (f->data) {
100 vfree(f->data);
101 f->data = NULL;
105 int msnd_fifo_alloc(msnd_fifo *f, size_t n)
107 msnd_fifo_free(f);
108 f->data = (char *)vmalloc(n);
109 f->n = n;
110 f->tail = 0;
111 f->head = 0;
112 f->len = 0;
114 if (!f->data)
115 return -ENOMEM;
117 return 0;
120 void msnd_fifo_make_empty(msnd_fifo *f)
122 f->len = f->tail = f->head = 0;
125 int msnd_fifo_write_io(msnd_fifo *f, char __iomem *buf, size_t len)
127 int count = 0;
129 while ((count < len) && (f->len != f->n)) {
131 int nwritten;
133 if (f->head <= f->tail) {
134 nwritten = len - count;
135 if (nwritten > f->n - f->tail)
136 nwritten = f->n - f->tail;
138 else {
139 nwritten = f->head - f->tail;
140 if (nwritten > len - count)
141 nwritten = len - count;
144 memcpy_fromio(f->data + f->tail, buf, nwritten);
146 count += nwritten;
147 buf += nwritten;
148 f->len += nwritten;
149 f->tail += nwritten;
150 f->tail %= f->n;
153 return count;
156 int msnd_fifo_write(msnd_fifo *f, const char *buf, size_t len)
158 int count = 0;
160 while ((count < len) && (f->len != f->n)) {
162 int nwritten;
164 if (f->head <= f->tail) {
165 nwritten = len - count;
166 if (nwritten > f->n - f->tail)
167 nwritten = f->n - f->tail;
169 else {
170 nwritten = f->head - f->tail;
171 if (nwritten > len - count)
172 nwritten = len - count;
175 memcpy(f->data + f->tail, buf, nwritten);
177 count += nwritten;
178 buf += nwritten;
179 f->len += nwritten;
180 f->tail += nwritten;
181 f->tail %= f->n;
184 return count;
187 int msnd_fifo_read_io(msnd_fifo *f, char __iomem *buf, size_t len)
189 int count = 0;
191 while ((count < len) && (f->len > 0)) {
193 int nread;
195 if (f->tail <= f->head) {
196 nread = len - count;
197 if (nread > f->n - f->head)
198 nread = f->n - f->head;
200 else {
201 nread = f->tail - f->head;
202 if (nread > len - count)
203 nread = len - count;
206 memcpy_toio(buf, f->data + f->head, nread);
208 count += nread;
209 buf += nread;
210 f->len -= nread;
211 f->head += nread;
212 f->head %= f->n;
215 return count;
218 int msnd_fifo_read(msnd_fifo *f, char *buf, size_t len)
220 int count = 0;
222 while ((count < len) && (f->len > 0)) {
224 int nread;
226 if (f->tail <= f->head) {
227 nread = len - count;
228 if (nread > f->n - f->head)
229 nread = f->n - f->head;
231 else {
232 nread = f->tail - f->head;
233 if (nread > len - count)
234 nread = len - count;
237 memcpy(buf, f->data + f->head, nread);
239 count += nread;
240 buf += nread;
241 f->len -= nread;
242 f->head += nread;
243 f->head %= f->n;
246 return count;
249 static int msnd_wait_TXDE(multisound_dev_t *dev)
251 register unsigned int io = dev->io;
252 register int timeout = 1000;
254 while(timeout-- > 0)
255 if (msnd_inb(io + HP_ISR) & HPISR_TXDE)
256 return 0;
258 return -EIO;
261 static int msnd_wait_HC0(multisound_dev_t *dev)
263 register unsigned int io = dev->io;
264 register int timeout = 1000;
266 while(timeout-- > 0)
267 if (!(msnd_inb(io + HP_CVR) & HPCVR_HC))
268 return 0;
270 return -EIO;
273 int msnd_send_dsp_cmd(multisound_dev_t *dev, BYTE cmd)
275 unsigned long flags;
277 spin_lock_irqsave(&dev->lock, flags);
278 if (msnd_wait_HC0(dev) == 0) {
279 msnd_outb(cmd, dev->io + HP_CVR);
280 spin_unlock_irqrestore(&dev->lock, flags);
281 return 0;
283 spin_unlock_irqrestore(&dev->lock, flags);
285 printk(KERN_DEBUG LOGNAME ": Send DSP command timeout\n");
287 return -EIO;
290 int msnd_send_word(multisound_dev_t *dev, unsigned char high,
291 unsigned char mid, unsigned char low)
293 register unsigned int io = dev->io;
295 if (msnd_wait_TXDE(dev) == 0) {
296 msnd_outb(high, io + HP_TXH);
297 msnd_outb(mid, io + HP_TXM);
298 msnd_outb(low, io + HP_TXL);
299 return 0;
302 printk(KERN_DEBUG LOGNAME ": Send host word timeout\n");
304 return -EIO;
307 int msnd_upload_host(multisound_dev_t *dev, char *bin, int len)
309 int i;
311 if (len % 3 != 0) {
312 printk(KERN_WARNING LOGNAME ": Upload host data not multiple of 3!\n");
313 return -EINVAL;
316 for (i = 0; i < len; i += 3)
317 if (msnd_send_word(dev, bin[i], bin[i + 1], bin[i + 2]) != 0)
318 return -EIO;
320 msnd_inb(dev->io + HP_RXL);
321 msnd_inb(dev->io + HP_CVR);
323 return 0;
326 int msnd_enable_irq(multisound_dev_t *dev)
328 unsigned long flags;
330 if (dev->irq_ref++)
331 return 0;
333 printk(KERN_DEBUG LOGNAME ": Enabling IRQ\n");
335 spin_lock_irqsave(&dev->lock, flags);
336 if (msnd_wait_TXDE(dev) == 0) {
337 msnd_outb(msnd_inb(dev->io + HP_ICR) | HPICR_TREQ, dev->io + HP_ICR);
338 if (dev->type == msndClassic)
339 msnd_outb(dev->irqid, dev->io + HP_IRQM);
340 msnd_outb(msnd_inb(dev->io + HP_ICR) & ~HPICR_TREQ, dev->io + HP_ICR);
341 msnd_outb(msnd_inb(dev->io + HP_ICR) | HPICR_RREQ, dev->io + HP_ICR);
342 enable_irq(dev->irq);
343 msnd_init_queue(dev->DSPQ, dev->dspq_data_buff, dev->dspq_buff_size);
344 spin_unlock_irqrestore(&dev->lock, flags);
345 return 0;
347 spin_unlock_irqrestore(&dev->lock, flags);
349 printk(KERN_DEBUG LOGNAME ": Enable IRQ failed\n");
351 return -EIO;
354 int msnd_disable_irq(multisound_dev_t *dev)
356 unsigned long flags;
358 if (--dev->irq_ref > 0)
359 return 0;
361 if (dev->irq_ref < 0)
362 printk(KERN_DEBUG LOGNAME ": IRQ ref count is %d\n", dev->irq_ref);
364 printk(KERN_DEBUG LOGNAME ": Disabling IRQ\n");
366 spin_lock_irqsave(&dev->lock, flags);
367 if (msnd_wait_TXDE(dev) == 0) {
368 msnd_outb(msnd_inb(dev->io + HP_ICR) & ~HPICR_RREQ, dev->io + HP_ICR);
369 if (dev->type == msndClassic)
370 msnd_outb(HPIRQ_NONE, dev->io + HP_IRQM);
371 disable_irq(dev->irq);
372 spin_unlock_irqrestore(&dev->lock, flags);
373 return 0;
375 spin_unlock_irqrestore(&dev->lock, flags);
377 printk(KERN_DEBUG LOGNAME ": Disable IRQ failed\n");
379 return -EIO;
382 #ifndef LINUX20
383 EXPORT_SYMBOL(msnd_register);
384 EXPORT_SYMBOL(msnd_unregister);
386 EXPORT_SYMBOL(msnd_init_queue);
388 EXPORT_SYMBOL(msnd_fifo_init);
389 EXPORT_SYMBOL(msnd_fifo_free);
390 EXPORT_SYMBOL(msnd_fifo_alloc);
391 EXPORT_SYMBOL(msnd_fifo_make_empty);
392 EXPORT_SYMBOL(msnd_fifo_write_io);
393 EXPORT_SYMBOL(msnd_fifo_read_io);
394 EXPORT_SYMBOL(msnd_fifo_write);
395 EXPORT_SYMBOL(msnd_fifo_read);
397 EXPORT_SYMBOL(msnd_send_dsp_cmd);
398 EXPORT_SYMBOL(msnd_send_word);
399 EXPORT_SYMBOL(msnd_upload_host);
401 EXPORT_SYMBOL(msnd_enable_irq);
402 EXPORT_SYMBOL(msnd_disable_irq);
403 #endif
405 #ifdef MODULE
406 MODULE_AUTHOR ("Andrew Veliath <andrewtv@usa.net>");
407 MODULE_DESCRIPTION ("Turtle Beach MultiSound Driver Base");
408 MODULE_LICENSE("GPL");
411 int init_module(void)
413 return 0;
416 void cleanup_module(void)
419 #endif