Merge master.kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb
[pandora-kernel.git] / sound / oss / via82cxxx_audio.c
1 /*
2  * Support for VIA 82Cxxx Audio Codecs
3  * Copyright 1999,2000 Jeff Garzik
4  *
5  * Updated to support the VIA 8233/8235 audio subsystem
6  * Alan Cox <alan@redhat.com> (C) Copyright 2002, 2003 Red Hat Inc
7  *
8  * Distributed under the GNU GENERAL PUBLIC LICENSE (GPL) Version 2.
9  * See the "COPYING" file distributed with this software for more info.
10  * NO WARRANTY
11  *
12  * For a list of known bugs (errata) and documentation,
13  * see via-audio.pdf in Documentation/DocBook.
14  * If this documentation does not exist, run "make pdfdocs".
15  */
16
17
18 #define VIA_VERSION     "1.9.1-ac4-2.5"
19
20
21 #include <linux/config.h>
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/fs.h>
25 #include <linux/mm.h>
26 #include <linux/pci.h>
27 #include <linux/init.h>
28 #include <linux/interrupt.h>
29 #include <linux/proc_fs.h>
30 #include <linux/spinlock.h>
31 #include <linux/sound.h>
32 #include <linux/poll.h>
33 #include <linux/soundcard.h>
34 #include <linux/ac97_codec.h>
35 #include <linux/smp_lock.h>
36 #include <linux/ioport.h>
37 #include <linux/delay.h>
38 #include <linux/dma-mapping.h>
39 #include <asm/io.h>
40 #include <asm/uaccess.h>
41 #include <linux/mutex.h>
42
43 #include "sound_config.h"
44 #include "dev_table.h"
45 #include "mpu401.h"
46
47
48 #undef VIA_DEBUG        /* define to enable debugging output and checks */
49 #ifdef VIA_DEBUG
50 /* note: prints function name for you */
51 #define DPRINTK(fmt, args...) printk(KERN_DEBUG "%s: " fmt, __FUNCTION__ , ## args)
52 #else
53 #define DPRINTK(fmt, args...)
54 #endif
55
56 #undef VIA_NDEBUG       /* define to disable lightweight runtime checks */
57 #ifdef VIA_NDEBUG
58 #define assert(expr)
59 #else
60 #define assert(expr) \
61         if(!(expr)) {                                   \
62         printk( "Assertion failed! %s,%s,%s,line=%d\n", \
63         #expr,__FILE__,__FUNCTION__,__LINE__);          \
64         }
65 #endif
66
67 #define VIA_SUPPORT_MMAP 1 /* buggy, for now... */
68
69 #define MAX_CARDS       1
70
71 #define VIA_CARD_NAME   "VIA 82Cxxx Audio driver " VIA_VERSION
72 #define VIA_MODULE_NAME "via82cxxx"
73 #define PFX             VIA_MODULE_NAME ": "
74
75 #define VIA_COUNTER_LIMIT       100000
76
77 /* size of DMA buffers */
78 #define VIA_MAX_BUFFER_DMA_PAGES        32
79
80 /* buffering default values in ms */
81 #define VIA_DEFAULT_FRAG_TIME           20
82 #define VIA_DEFAULT_BUFFER_TIME         500
83
84 /* the hardware has a 256 fragment limit */
85 #define VIA_MIN_FRAG_NUMBER             2
86 #define VIA_MAX_FRAG_NUMBER             128
87
88 #define VIA_MAX_FRAG_SIZE               PAGE_SIZE
89 #define VIA_MIN_FRAG_SIZE               (VIA_MAX_BUFFER_DMA_PAGES * PAGE_SIZE / VIA_MAX_FRAG_NUMBER)
90
91
92 /* 82C686 function 5 (audio codec) PCI configuration registers */
93 #define VIA_ACLINK_STATUS       0x40
94 #define VIA_ACLINK_CTRL         0x41
95 #define VIA_FUNC_ENABLE         0x42
96 #define VIA_PNP_CONTROL         0x43
97 #define VIA_FM_NMI_CTRL         0x48
98
99 /*
100  * controller base 0 (scatter-gather) registers
101  *
102  * NOTE: Via datasheet lists first channel as "read"
103  * channel and second channel as "write" channel.
104  * I changed the naming of the constants to be more
105  * clear than I felt the datasheet to be.
106  */
107
108 #define VIA_BASE0_PCM_OUT_CHAN  0x00 /* output PCM to user */
109 #define VIA_BASE0_PCM_OUT_CHAN_STATUS 0x00
110 #define VIA_BASE0_PCM_OUT_CHAN_CTRL     0x01
111 #define VIA_BASE0_PCM_OUT_CHAN_TYPE     0x02
112
113 #define VIA_BASE0_PCM_IN_CHAN           0x10 /* input PCM from user */
114 #define VIA_BASE0_PCM_IN_CHAN_STATUS    0x10
115 #define VIA_BASE0_PCM_IN_CHAN_CTRL      0x11
116 #define VIA_BASE0_PCM_IN_CHAN_TYPE      0x12
117
118 /* offsets from base */
119 #define VIA_PCM_STATUS                  0x00
120 #define VIA_PCM_CONTROL                 0x01
121 #define VIA_PCM_TYPE                    0x02
122 #define VIA_PCM_LEFTVOL                 0x02
123 #define VIA_PCM_RIGHTVOL                0x03
124 #define VIA_PCM_TABLE_ADDR              0x04
125 #define VIA_PCM_STOPRATE                0x08    /* 8233+ */
126 #define VIA_PCM_BLOCK_COUNT             0x0C
127
128 /* XXX unused DMA channel for FM PCM data */
129 #define VIA_BASE0_FM_OUT_CHAN           0x20
130 #define VIA_BASE0_FM_OUT_CHAN_STATUS    0x20
131 #define VIA_BASE0_FM_OUT_CHAN_CTRL      0x21
132 #define VIA_BASE0_FM_OUT_CHAN_TYPE      0x22
133
134 /* Six channel audio output on 8233 */
135 #define VIA_BASE0_MULTI_OUT_CHAN                0x40
136 #define VIA_BASE0_MULTI_OUT_CHAN_STATUS         0x40
137 #define VIA_BASE0_MULTI_OUT_CHAN_CTRL           0x41
138 #define VIA_BASE0_MULTI_OUT_CHAN_TYPE           0x42
139
140 #define VIA_BASE0_AC97_CTRL             0x80
141 #define VIA_BASE0_SGD_STATUS_SHADOW     0x84
142 #define VIA_BASE0_GPI_INT_ENABLE        0x8C
143 #define VIA_INTR_OUT                    ((1<<0) |  (1<<4) |  (1<<8))
144 #define VIA_INTR_IN                     ((1<<1) |  (1<<5) |  (1<<9))
145 #define VIA_INTR_FM                     ((1<<2) |  (1<<6) | (1<<10))
146 #define VIA_INTR_MASK           (VIA_INTR_OUT | VIA_INTR_IN | VIA_INTR_FM)
147
148 /* Newer VIA we need to monitor the low 3 bits of each channel. This
149    mask covers the channels we don't yet use as well 
150  */
151  
152 #define VIA_NEW_INTR_MASK               0x77077777UL
153
154 /* VIA_BASE0_AUDIO_xxx_CHAN_TYPE bits */
155 #define VIA_IRQ_ON_FLAG                 (1<<0)  /* int on each flagged scatter block */
156 #define VIA_IRQ_ON_EOL                  (1<<1)  /* int at end of scatter list */
157 #define VIA_INT_SEL_PCI_LAST_LINE_READ  (0)     /* int at PCI read of last line */
158 #define VIA_INT_SEL_LAST_SAMPLE_SENT    (1<<2)  /* int at last sample sent */
159 #define VIA_INT_SEL_ONE_LINE_LEFT       (1<<3)  /* int at less than one line to send */
160 #define VIA_PCM_FMT_STEREO              (1<<4)  /* PCM stereo format (bit clear == mono) */
161 #define VIA_PCM_FMT_16BIT               (1<<5)  /* PCM 16-bit format (bit clear == 8-bit) */
162 #define VIA_PCM_REC_FIFO                (1<<6)  /* PCM Recording FIFO */
163 #define VIA_RESTART_SGD_ON_EOL          (1<<7)  /* restart scatter-gather at EOL */
164 #define VIA_PCM_FMT_MASK                (VIA_PCM_FMT_STEREO|VIA_PCM_FMT_16BIT)
165 #define VIA_CHAN_TYPE_MASK              (VIA_RESTART_SGD_ON_EOL | \
166                                          VIA_IRQ_ON_FLAG | \
167                                          VIA_IRQ_ON_EOL)
168 #define VIA_CHAN_TYPE_INT_SELECT        (VIA_INT_SEL_LAST_SAMPLE_SENT)
169
170 /* PCI configuration register bits and masks */
171 #define VIA_CR40_AC97_READY     0x01
172 #define VIA_CR40_AC97_LOW_POWER 0x02
173 #define VIA_CR40_SECONDARY_READY 0x04
174
175 #define VIA_CR41_AC97_ENABLE    0x80 /* enable AC97 codec */
176 #define VIA_CR41_AC97_RESET     0x40 /* clear bit to reset AC97 */
177 #define VIA_CR41_AC97_WAKEUP    0x20 /* wake up from power-down mode */
178 #define VIA_CR41_AC97_SDO       0x10 /* force Serial Data Out (SDO) high */
179 #define VIA_CR41_VRA            0x08 /* enable variable sample rate */
180 #define VIA_CR41_PCM_ENABLE     0x04 /* AC Link SGD Read Channel PCM Data Output */
181 #define VIA_CR41_FM_PCM_ENABLE  0x02 /* AC Link FM Channel PCM Data Out */
182 #define VIA_CR41_SB_PCM_ENABLE  0x01 /* AC Link SB PCM Data Output */
183 #define VIA_CR41_BOOT_MASK      (VIA_CR41_AC97_ENABLE | \
184                                  VIA_CR41_AC97_WAKEUP | \
185                                  VIA_CR41_AC97_SDO)
186 #define VIA_CR41_RUN_MASK       (VIA_CR41_AC97_ENABLE | \
187                                  VIA_CR41_AC97_RESET | \
188                                  VIA_CR41_VRA | \
189                                  VIA_CR41_PCM_ENABLE)
190
191 #define VIA_CR42_SB_ENABLE      0x01
192 #define VIA_CR42_MIDI_ENABLE    0x02
193 #define VIA_CR42_FM_ENABLE      0x04
194 #define VIA_CR42_GAME_ENABLE    0x08
195 #define VIA_CR42_MIDI_IRQMASK   0x40
196 #define VIA_CR42_MIDI_PNP       0x80
197
198 #define VIA_CR44_SECOND_CODEC_SUPPORT   (1 << 6)
199 #define VIA_CR44_AC_LINK_ACCESS         (1 << 7)
200
201 #define VIA_CR48_FM_TRAP_TO_NMI         (1 << 2)
202
203 /* controller base 0 register bitmasks */
204 #define VIA_INT_DISABLE_MASK            (~(0x01|0x02))
205 #define VIA_SGD_STOPPED                 (1 << 2)
206 #define VIA_SGD_PAUSED                  (1 << 6)
207 #define VIA_SGD_ACTIVE                  (1 << 7)
208 #define VIA_SGD_TERMINATE               (1 << 6)
209 #define VIA_SGD_FLAG                    (1 << 0)
210 #define VIA_SGD_EOL                     (1 << 1)
211 #define VIA_SGD_START                   (1 << 7)
212
213 #define VIA_CR80_FIRST_CODEC            0
214 #define VIA_CR80_SECOND_CODEC           (1 << 30)
215 #define VIA_CR80_FIRST_CODEC_VALID      (1 << 25)
216 #define VIA_CR80_VALID                  (1 << 25)
217 #define VIA_CR80_SECOND_CODEC_VALID     (1 << 27)
218 #define VIA_CR80_BUSY                   (1 << 24)
219 #define VIA_CR83_BUSY                   (1)
220 #define VIA_CR83_FIRST_CODEC_VALID      (1 << 1)
221 #define VIA_CR80_READ                   (1 << 23)
222 #define VIA_CR80_WRITE_MODE             0
223 #define VIA_CR80_REG_IDX(idx)           ((((idx) & 0xFF) >> 1) << 16)
224
225 /* capabilities we announce */
226 #ifdef VIA_SUPPORT_MMAP
227 #define VIA_DSP_CAP (DSP_CAP_REVISION | DSP_CAP_DUPLEX | DSP_CAP_MMAP | \
228                      DSP_CAP_TRIGGER | DSP_CAP_REALTIME)
229 #else
230 #define VIA_DSP_CAP (DSP_CAP_REVISION | DSP_CAP_DUPLEX | \
231                      DSP_CAP_TRIGGER | DSP_CAP_REALTIME)
232 #endif
233
234 /* scatter-gather DMA table entry, exactly as passed to hardware */
235 struct via_sgd_table {
236         u32 addr;
237         u32 count;      /* includes additional VIA_xxx bits also */
238 };
239
240 #define VIA_EOL (1 << 31)
241 #define VIA_FLAG (1 << 30)
242 #define VIA_STOP (1 << 29)
243
244
245 enum via_channel_states {
246         sgd_stopped = 0,
247         sgd_in_progress = 1,
248 };
249
250
251 struct via_buffer_pgtbl {
252         dma_addr_t handle;
253         void *cpuaddr;
254 };
255
256
257 struct via_channel {
258         atomic_t n_frags;
259         atomic_t hw_ptr;
260         wait_queue_head_t wait;
261
262         unsigned int sw_ptr;
263         unsigned int slop_len;
264         unsigned int n_irqs;
265         int bytes;
266
267         unsigned is_active : 1;
268         unsigned is_record : 1;
269         unsigned is_mapped : 1;
270         unsigned is_enabled : 1;
271         unsigned is_multi: 1;   /* 8233 6 channel */
272         u8 pcm_fmt;             /* VIA_PCM_FMT_xxx */
273         u8 channels;            /* Channel count */
274
275         unsigned rate;          /* sample rate */
276         unsigned int frag_size;
277         unsigned int frag_number;
278         
279         unsigned char intmask;
280
281         volatile struct via_sgd_table *sgtable;
282         dma_addr_t sgt_handle;
283
284         unsigned int page_number;
285         struct via_buffer_pgtbl pgtbl[VIA_MAX_BUFFER_DMA_PAGES];
286
287         long iobase;
288
289         const char *name;
290 };
291
292
293 /* data stored for each chip */
294 struct via_info {
295         struct pci_dev *pdev;
296         long baseaddr;
297
298         struct ac97_codec *ac97;
299         spinlock_t ac97_lock;
300         spinlock_t lock;
301         int card_num;           /* unique card number, from 0 */
302
303         int dev_dsp;            /* /dev/dsp index from register_sound_dsp() */
304
305         unsigned rev_h : 1;
306         unsigned legacy: 1;     /* Has legacy ports */
307         unsigned intmask: 1;    /* Needs int bits */
308         unsigned sixchannel: 1; /* 8233/35 with 6 channel support */
309         unsigned volume: 1;
310
311         int locked_rate : 1;
312         
313         int mixer_vol;          /* 8233/35 volume  - not yet implemented */
314
315         struct mutex syscall_mutex;
316         struct mutex open_mutex;
317
318         /* The 8233/8235 have 4 DX audio channels, two record and
319            one six channel out. We bind ch_in to DX 1, ch_out to multichannel
320            and ch_fm to DX 2. DX 3 and REC0/REC1 are unused at the
321            moment */
322            
323         struct via_channel ch_in;
324         struct via_channel ch_out;
325         struct via_channel ch_fm;
326
327 #ifdef CONFIG_MIDI_VIA82CXXX
328         void *midi_devc;
329         struct address_info midi_info;
330 #endif
331 };
332
333
334 /* number of cards, used for assigning unique numbers to cards */
335 static unsigned via_num_cards;
336
337
338
339 /****************************************************************
340  *
341  * prototypes
342  *
343  *
344  */
345
346 static int via_init_one (struct pci_dev *dev, const struct pci_device_id *id);
347 static void __devexit via_remove_one (struct pci_dev *pdev);
348
349 static ssize_t via_dsp_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos);
350 static ssize_t via_dsp_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos);
351 static unsigned int via_dsp_poll(struct file *file, struct poll_table_struct *wait);
352 static int via_dsp_ioctl (struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg);
353 static int via_dsp_open (struct inode *inode, struct file *file);
354 static int via_dsp_release(struct inode *inode, struct file *file);
355 static int via_dsp_mmap(struct file *file, struct vm_area_struct *vma);
356
357 static u16 via_ac97_read_reg (struct ac97_codec *codec, u8 reg);
358 static void via_ac97_write_reg (struct ac97_codec *codec, u8 reg, u16 value);
359 static u8 via_ac97_wait_idle (struct via_info *card);
360
361 static void via_chan_free (struct via_info *card, struct via_channel *chan);
362 static void via_chan_clear (struct via_info *card, struct via_channel *chan);
363 static void via_chan_pcm_fmt (struct via_channel *chan, int reset);
364 static void via_chan_buffer_free (struct via_info *card, struct via_channel *chan);
365
366
367 /****************************************************************
368  *
369  * Various data the driver needs
370  *
371  *
372  */
373
374
375 static struct pci_device_id via_pci_tbl[] = {
376         { PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C686_5,
377           PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0},
378         { PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8233_5,
379           PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1},
380         { 0, }
381 };
382 MODULE_DEVICE_TABLE(pci,via_pci_tbl);
383
384
385 static struct pci_driver via_driver = {
386         .name           = VIA_MODULE_NAME,
387         .id_table       = via_pci_tbl,
388         .probe          = via_init_one,
389         .remove         = __devexit_p(via_remove_one),
390 };
391
392
393 /****************************************************************
394  *
395  * Low-level base 0 register read/write helpers
396  *
397  *
398  */
399
400 /**
401  *      via_chan_stop - Terminate DMA on specified PCM channel
402  *      @iobase: PCI base address for SGD channel registers
403  *
404  *      Terminate scatter-gather DMA operation for given
405  *      channel (derived from @iobase), if DMA is active.
406  *
407  *      Note that @iobase is not the PCI base address,
408  *      but the PCI base address plus an offset to
409  *      one of three PCM channels supported by the chip.
410  *
411  */
412
413 static inline void via_chan_stop (long iobase)
414 {
415         if (inb (iobase + VIA_PCM_STATUS) & VIA_SGD_ACTIVE)
416                 outb (VIA_SGD_TERMINATE, iobase + VIA_PCM_CONTROL);
417 }
418
419
420 /**
421  *      via_chan_status_clear - Clear status flags on specified DMA channel
422  *      @iobase: PCI base address for SGD channel registers
423  *
424  *      Clear any pending status flags for the given
425  *      DMA channel (derived from @iobase), if any
426  *      flags are asserted.
427  *
428  *      Note that @iobase is not the PCI base address,
429  *      but the PCI base address plus an offset to
430  *      one of three PCM channels supported by the chip.
431  *
432  */
433
434 static inline void via_chan_status_clear (long iobase)
435 {
436         u8 tmp = inb (iobase + VIA_PCM_STATUS);
437
438         if (tmp != 0)
439                 outb (tmp, iobase + VIA_PCM_STATUS);
440 }
441
442
443 /**
444  *      sg_begin - Begin recording or playback on a PCM channel
445  *      @chan: Channel for which DMA operation shall begin
446  *
447  *      Start scatter-gather DMA for the given channel.
448  *
449  */
450
451 static inline void sg_begin (struct via_channel *chan)
452 {
453         DPRINTK("Start with intmask %d\n", chan->intmask);
454         DPRINTK("About to start from %d to %d\n", 
455                 inl(chan->iobase + VIA_PCM_BLOCK_COUNT),
456                 inb(chan->iobase + VIA_PCM_STOPRATE + 3));
457         outb (VIA_SGD_START|chan->intmask, chan->iobase + VIA_PCM_CONTROL);
458         DPRINTK("Status is now %02X\n", inb(chan->iobase + VIA_PCM_STATUS));
459         DPRINTK("Control is now %02X\n", inb(chan->iobase + VIA_PCM_CONTROL));
460 }
461
462
463 static int sg_active (long iobase)
464 {
465         u8 tmp = inb (iobase + VIA_PCM_STATUS);
466         if ((tmp & VIA_SGD_STOPPED) || (tmp & VIA_SGD_PAUSED)) {
467                 printk(KERN_WARNING "via82cxxx warning: SG stopped or paused\n");
468                 return 0;
469         }
470         if (tmp & VIA_SGD_ACTIVE)
471                 return 1;
472         return 0;
473 }
474
475 static int via_sg_offset(struct via_channel *chan)
476 {
477         return inl (chan->iobase + VIA_PCM_BLOCK_COUNT) & 0x00FFFFFF;
478 }
479
480 /****************************************************************
481  *
482  * Miscellaneous debris
483  *
484  *
485  */
486
487
488 /**
489  *      via_syscall_down - down the card-specific syscell semaphore
490  *      @card: Private info for specified board
491  *      @nonblock: boolean, non-zero if O_NONBLOCK is set
492  *
493  *      Encapsulates standard method of acquiring the syscall sem.
494  *
495  *      Returns negative errno on error, or zero for success.
496  */
497
498 static inline int via_syscall_down (struct via_info *card, int nonblock)
499 {
500         /* Thomas Sailer:
501          * EAGAIN is supposed to be used if IO is pending,
502          * not if there is contention on some internal
503          * synchronization primitive which should be
504          * held only for a short time anyway
505          */
506         nonblock = 0;
507
508         if (nonblock) {
509                 if (!mutex_trylock(&card->syscall_mutex))
510                         return -EAGAIN;
511         } else {
512                 if (mutex_lock_interruptible(&card->syscall_mutex))
513                         return -ERESTARTSYS;
514         }
515
516         return 0;
517 }
518
519
520 /**
521  *      via_stop_everything - Stop all audio operations
522  *      @card: Private info for specified board
523  *
524  *      Stops all DMA operations and interrupts, and clear
525  *      any pending status bits resulting from those operations.
526  */
527
528 static void via_stop_everything (struct via_info *card)
529 {
530         u8 tmp, new_tmp;
531
532         DPRINTK ("ENTER\n");
533
534         assert (card != NULL);
535
536         /*
537          * terminate any existing operations on audio read/write channels
538          */
539         via_chan_stop (card->baseaddr + VIA_BASE0_PCM_OUT_CHAN);
540         via_chan_stop (card->baseaddr + VIA_BASE0_PCM_IN_CHAN);
541         via_chan_stop (card->baseaddr + VIA_BASE0_FM_OUT_CHAN);
542         if(card->sixchannel)
543                 via_chan_stop (card->baseaddr + VIA_BASE0_MULTI_OUT_CHAN);
544
545         /*
546          * clear any existing stops / flags (sanity check mainly)
547          */
548         via_chan_status_clear (card->baseaddr + VIA_BASE0_PCM_OUT_CHAN);
549         via_chan_status_clear (card->baseaddr + VIA_BASE0_PCM_IN_CHAN);
550         via_chan_status_clear (card->baseaddr + VIA_BASE0_FM_OUT_CHAN);
551         if(card->sixchannel)
552                 via_chan_status_clear (card->baseaddr + VIA_BASE0_MULTI_OUT_CHAN);
553
554         /*
555          * clear any enabled interrupt bits
556          */
557         tmp = inb (card->baseaddr + VIA_BASE0_PCM_OUT_CHAN_TYPE);
558         new_tmp = tmp & ~(VIA_IRQ_ON_FLAG|VIA_IRQ_ON_EOL|VIA_RESTART_SGD_ON_EOL);
559         if (tmp != new_tmp)
560                 outb (0, card->baseaddr + VIA_BASE0_PCM_OUT_CHAN_TYPE);
561
562         tmp = inb (card->baseaddr + VIA_BASE0_PCM_IN_CHAN_TYPE);
563         new_tmp = tmp & ~(VIA_IRQ_ON_FLAG|VIA_IRQ_ON_EOL|VIA_RESTART_SGD_ON_EOL);
564         if (tmp != new_tmp)
565                 outb (0, card->baseaddr + VIA_BASE0_PCM_IN_CHAN_TYPE);
566
567         tmp = inb (card->baseaddr + VIA_BASE0_FM_OUT_CHAN_TYPE);
568         new_tmp = tmp & ~(VIA_IRQ_ON_FLAG|VIA_IRQ_ON_EOL|VIA_RESTART_SGD_ON_EOL);
569         if (tmp != new_tmp)
570                 outb (0, card->baseaddr + VIA_BASE0_FM_OUT_CHAN_TYPE);
571
572         if(card->sixchannel)
573         {
574                 tmp = inb (card->baseaddr + VIA_BASE0_MULTI_OUT_CHAN_TYPE);
575                 new_tmp = tmp & ~(VIA_IRQ_ON_FLAG|VIA_IRQ_ON_EOL|VIA_RESTART_SGD_ON_EOL);
576                 if (tmp != new_tmp)
577                         outb (0, card->baseaddr + VIA_BASE0_MULTI_OUT_CHAN_TYPE);
578         }
579
580         udelay(10);
581
582         /*
583          * clear any existing flags
584          */
585         via_chan_status_clear (card->baseaddr + VIA_BASE0_PCM_OUT_CHAN);
586         via_chan_status_clear (card->baseaddr + VIA_BASE0_PCM_IN_CHAN);
587         via_chan_status_clear (card->baseaddr + VIA_BASE0_FM_OUT_CHAN);
588
589         DPRINTK ("EXIT\n");
590 }
591
592
593 /**
594  *      via_set_rate - Set PCM rate for given channel
595  *      @ac97: Pointer to generic codec info struct
596  *      @chan: Private info for specified channel
597  *      @rate: Desired PCM sample rate, in Khz
598  *
599  *      Sets the PCM sample rate for a channel.
600  *
601  *      Values for @rate are clamped to a range of 4000 Khz through 48000 Khz,
602  *      due to hardware constraints.
603  */
604
605 static int via_set_rate (struct ac97_codec *ac97,
606                          struct via_channel *chan, unsigned rate)
607 {
608         struct via_info *card = ac97->private_data;
609         int rate_reg;
610         u32 dacp;
611         u32 mast_vol, phone_vol, mono_vol, pcm_vol;
612         u32 mute_vol = 0x8000;  /* The mute volume? -- Seems to work! */
613
614         DPRINTK ("ENTER, rate = %d\n", rate);
615
616         if (chan->rate == rate)
617                 goto out;
618         if (card->locked_rate) {
619                 chan->rate = 48000;
620                 goto out;
621         }
622
623         if (rate > 48000)               rate = 48000;
624         if (rate < 4000)                rate = 4000;
625
626         rate_reg = chan->is_record ? AC97_PCM_LR_ADC_RATE :
627                             AC97_PCM_FRONT_DAC_RATE;
628
629         /* Save current state */
630         dacp=via_ac97_read_reg(ac97, AC97_POWER_CONTROL);
631         mast_vol = via_ac97_read_reg(ac97, AC97_MASTER_VOL_STEREO);
632         mono_vol = via_ac97_read_reg(ac97, AC97_MASTER_VOL_MONO);
633         phone_vol = via_ac97_read_reg(ac97, AC97_HEADPHONE_VOL);
634         pcm_vol = via_ac97_read_reg(ac97, AC97_PCMOUT_VOL);
635         /* Mute - largely reduces popping */
636         via_ac97_write_reg(ac97, AC97_MASTER_VOL_STEREO, mute_vol);
637         via_ac97_write_reg(ac97, AC97_MASTER_VOL_MONO, mute_vol);
638         via_ac97_write_reg(ac97, AC97_HEADPHONE_VOL, mute_vol);
639         via_ac97_write_reg(ac97, AC97_PCMOUT_VOL, mute_vol);
640         /* Power down the DAC */
641         via_ac97_write_reg(ac97, AC97_POWER_CONTROL, dacp|0x0200);
642
643         /* Set new rate */
644         via_ac97_write_reg (ac97, rate_reg, rate);
645
646         /* Power DAC back up */
647         via_ac97_write_reg(ac97, AC97_POWER_CONTROL, dacp);
648         udelay (200); /* reduces popping */
649
650         /* Restore volumes */
651         via_ac97_write_reg(ac97, AC97_MASTER_VOL_STEREO, mast_vol);
652         via_ac97_write_reg(ac97, AC97_MASTER_VOL_MONO, mono_vol);
653         via_ac97_write_reg(ac97, AC97_HEADPHONE_VOL, phone_vol);
654         via_ac97_write_reg(ac97, AC97_PCMOUT_VOL, pcm_vol);
655
656         /* the hardware might return a value different than what we
657          * passed to it, so read the rate value back from hardware
658          * to see what we came up with
659          */
660         chan->rate = via_ac97_read_reg (ac97, rate_reg);
661
662         if (chan->rate == 0) {
663                 card->locked_rate = 1;
664                 chan->rate = 48000;
665                 printk (KERN_WARNING PFX "Codec rate locked at 48Khz\n");
666         }
667
668 out:
669         DPRINTK ("EXIT, returning rate %d Hz\n", chan->rate);
670         return chan->rate;
671 }
672
673
674 /****************************************************************
675  *
676  * Channel-specific operations
677  *
678  *
679  */
680
681
682 /**
683  *      via_chan_init_defaults - Initialize a struct via_channel
684  *      @card: Private audio chip info
685  *      @chan: Channel to be initialized
686  *
687  *      Zero @chan, and then set all static defaults for the structure.
688  */
689
690 static void via_chan_init_defaults (struct via_info *card, struct via_channel *chan)
691 {
692         memset (chan, 0, sizeof (*chan));
693
694         if(card->intmask)
695                 chan->intmask = 0x23;   /* Turn on the IRQ bits */
696                 
697         if (chan == &card->ch_out) {
698                 chan->name = "PCM-OUT";
699                 if(card->sixchannel)
700                 {
701                         chan->iobase = card->baseaddr + VIA_BASE0_MULTI_OUT_CHAN;
702                         chan->is_multi = 1;
703                         DPRINTK("Using multichannel for pcm out\n");
704                 }
705                 else
706                         chan->iobase = card->baseaddr + VIA_BASE0_PCM_OUT_CHAN;
707         } else if (chan == &card->ch_in) {
708                 chan->name = "PCM-IN";
709                 chan->iobase = card->baseaddr + VIA_BASE0_PCM_IN_CHAN;
710                 chan->is_record = 1;
711         } else if (chan == &card->ch_fm) {
712                 chan->name = "PCM-OUT-FM";
713                 chan->iobase = card->baseaddr + VIA_BASE0_FM_OUT_CHAN;
714         } else {
715                 BUG();
716         }
717
718         init_waitqueue_head (&chan->wait);
719
720         chan->pcm_fmt = VIA_PCM_FMT_MASK;
721         chan->is_enabled = 1;
722
723         chan->frag_number = 0;
724         chan->frag_size = 0;
725         atomic_set(&chan->n_frags, 0);
726         atomic_set (&chan->hw_ptr, 0);
727 }
728
729 /**
730  *      via_chan_init - Initialize PCM channel
731  *      @card: Private audio chip info
732  *      @chan: Channel to be initialized
733  *
734  *      Performs some of the preparations necessary to begin
735  *      using a PCM channel.
736  *
737  *      Currently the preparations consist of
738  *      setting the PCM channel to a known state.
739  */
740
741
742 static void via_chan_init (struct via_info *card, struct via_channel *chan)
743 {
744
745         DPRINTK ("ENTER\n");
746
747         /* bzero channel structure, and init members to defaults */
748         via_chan_init_defaults (card, chan);
749
750         /* stop any existing channel output */
751         via_chan_clear (card, chan);
752         via_chan_status_clear (chan->iobase);
753         via_chan_pcm_fmt (chan, 1);
754
755         DPRINTK ("EXIT\n");
756 }
757
758 /**
759  *      via_chan_buffer_init - Initialize PCM channel buffer
760  *      @card: Private audio chip info
761  *      @chan: Channel to be initialized
762  *
763  *      Performs some of the preparations necessary to begin
764  *      using a PCM channel.
765  *
766  *      Currently the preparations include allocating the
767  *      scatter-gather DMA table and buffers,
768  *      and passing the
769  *      address of the DMA table to the hardware.
770  *
771  *      Note that special care is taken when passing the
772  *      DMA table address to hardware, because it was found
773  *      during driver development that the hardware did not
774  *      always "take" the address.
775  */
776
777 static int via_chan_buffer_init (struct via_info *card, struct via_channel *chan)
778 {
779         int page, offset;
780         int i;
781
782         DPRINTK ("ENTER\n");
783
784
785         chan->intmask = 0;
786         if(card->intmask)
787                 chan->intmask = 0x23;   /* Turn on the IRQ bits */
788                 
789         if (chan->sgtable != NULL) {
790                 DPRINTK ("EXIT\n");
791                 return 0;
792         }
793
794         /* alloc DMA-able memory for scatter-gather table */
795         chan->sgtable = pci_alloc_consistent (card->pdev,
796                 (sizeof (struct via_sgd_table) * chan->frag_number),
797                 &chan->sgt_handle);
798         if (!chan->sgtable) {
799                 printk (KERN_ERR PFX "DMA table alloc fail, aborting\n");
800                 DPRINTK ("EXIT\n");
801                 return -ENOMEM;
802         }
803
804         memset ((void*)chan->sgtable, 0,
805                 (sizeof (struct via_sgd_table) * chan->frag_number));
806
807         /* alloc DMA-able memory for scatter-gather buffers */
808
809         chan->page_number = (chan->frag_number * chan->frag_size) / PAGE_SIZE +
810                             (((chan->frag_number * chan->frag_size) % PAGE_SIZE) ? 1 : 0);
811
812         for (i = 0; i < chan->page_number; i++) {
813                 chan->pgtbl[i].cpuaddr = pci_alloc_consistent (card->pdev, PAGE_SIZE,
814                                               &chan->pgtbl[i].handle);
815
816                 if (!chan->pgtbl[i].cpuaddr) {
817                         chan->page_number = i;
818                         goto err_out_nomem;
819                 }
820
821 #ifndef VIA_NDEBUG
822                 memset (chan->pgtbl[i].cpuaddr, 0xBC, chan->frag_size);
823 #endif
824
825 #if 1
826                 DPRINTK ("dmabuf_pg #%d (h=%lx, v2p=%lx, a=%p)\n",
827                         i, (long)chan->pgtbl[i].handle,
828                         virt_to_phys(chan->pgtbl[i].cpuaddr),
829                         chan->pgtbl[i].cpuaddr);
830 #endif
831         }
832
833         for (i = 0; i < chan->frag_number; i++) {
834
835                 page = i / (PAGE_SIZE / chan->frag_size);
836                 offset = (i % (PAGE_SIZE / chan->frag_size)) * chan->frag_size;
837
838                 chan->sgtable[i].count = cpu_to_le32 (chan->frag_size | VIA_FLAG);
839                 chan->sgtable[i].addr = cpu_to_le32 (chan->pgtbl[page].handle + offset);
840
841 #if 1
842                 DPRINTK ("dmabuf #%d (32(h)=%lx)\n",
843                          i,
844                          (long)chan->sgtable[i].addr);
845 #endif
846         }
847
848         /* overwrite the last buffer information */
849         chan->sgtable[chan->frag_number - 1].count = cpu_to_le32 (chan->frag_size | VIA_EOL);
850
851         /* set location of DMA-able scatter-gather info table */
852         DPRINTK ("outl (0x%X, 0x%04lX)\n",
853                 chan->sgt_handle, chan->iobase + VIA_PCM_TABLE_ADDR);
854
855         via_ac97_wait_idle (card);
856         outl (chan->sgt_handle, chan->iobase + VIA_PCM_TABLE_ADDR);
857         udelay (20);
858         via_ac97_wait_idle (card);
859         /* load no rate adaption, stereo 16bit, set up ring slots */
860         if(card->sixchannel)
861         {
862                 if(!chan->is_multi)
863                 {
864                         outl (0xFFFFF | (0x3 << 20) | (chan->frag_number << 24), chan->iobase + VIA_PCM_STOPRATE);
865                         udelay (20);
866                         via_ac97_wait_idle (card);
867                 }
868         }
869
870         DPRINTK ("inl (0x%lX) = %x\n",
871                 chan->iobase + VIA_PCM_TABLE_ADDR,
872                 inl(chan->iobase + VIA_PCM_TABLE_ADDR));
873
874         DPRINTK ("EXIT\n");
875         return 0;
876
877 err_out_nomem:
878         printk (KERN_ERR PFX "DMA buffer alloc fail, aborting\n");
879         via_chan_buffer_free (card, chan);
880         DPRINTK ("EXIT\n");
881         return -ENOMEM;
882 }
883
884
885 /**
886  *      via_chan_free - Release a PCM channel
887  *      @card: Private audio chip info
888  *      @chan: Channel to be released
889  *
890  *      Performs all the functions necessary to clean up
891  *      an initialized channel.
892  *
893  *      Currently these functions include disabled any
894  *      active DMA operations, setting the PCM channel
895  *      back to a known state, and releasing any allocated
896  *      sound buffers.
897  */
898
899 static void via_chan_free (struct via_info *card, struct via_channel *chan)
900 {
901         DPRINTK ("ENTER\n");
902
903         spin_lock_irq (&card->lock);
904
905         /* stop any existing channel output */
906         via_chan_status_clear (chan->iobase);
907         via_chan_stop (chan->iobase);
908         via_chan_status_clear (chan->iobase);
909
910         spin_unlock_irq (&card->lock);
911
912         synchronize_irq(card->pdev->irq);
913
914         DPRINTK ("EXIT\n");
915 }
916
917 static void via_chan_buffer_free (struct via_info *card, struct via_channel *chan)
918 {
919         int i;
920
921         DPRINTK ("ENTER\n");
922
923         /* zero location of DMA-able scatter-gather info table */
924         via_ac97_wait_idle(card);
925         outl (0, chan->iobase + VIA_PCM_TABLE_ADDR);
926
927         for (i = 0; i < chan->page_number; i++)
928                 if (chan->pgtbl[i].cpuaddr) {
929                         pci_free_consistent (card->pdev, PAGE_SIZE,
930                                              chan->pgtbl[i].cpuaddr,
931                                              chan->pgtbl[i].handle);
932                         chan->pgtbl[i].cpuaddr = NULL;
933                         chan->pgtbl[i].handle = 0;
934                 }
935
936         chan->page_number = 0;
937
938         if (chan->sgtable) {
939                 pci_free_consistent (card->pdev,
940                         (sizeof (struct via_sgd_table) * chan->frag_number),
941                         (void*)chan->sgtable, chan->sgt_handle);
942                 chan->sgtable = NULL;
943         }
944
945         DPRINTK ("EXIT\n");
946 }
947
948
949 /**
950  *      via_chan_pcm_fmt - Update PCM channel settings
951  *      @chan: Channel to be updated
952  *      @reset: Boolean.  If non-zero, channel will be reset
953  *              to 8-bit mono mode.
954  *
955  *      Stores the settings of the current PCM format,
956  *      8-bit or 16-bit, and mono/stereo, into the
957  *      hardware settings for the specified channel.
958  *      If @reset is non-zero, the channel is reset
959  *      to 8-bit mono mode.  Otherwise, the channel
960  *      is set to the values stored in the channel
961  *      information struct @chan.
962  */
963
964 static void via_chan_pcm_fmt (struct via_channel *chan, int reset)
965 {
966         DPRINTK ("ENTER, pcm_fmt=0x%02X, reset=%s\n",
967                  chan->pcm_fmt, reset ? "yes" : "no");
968
969         assert (chan != NULL);
970
971         if (reset)
972         {
973                 /* reset to 8-bit mono mode */
974                 chan->pcm_fmt = 0;
975                 chan->channels = 1;
976         }
977
978         /* enable interrupts on FLAG and EOL */
979         chan->pcm_fmt |= VIA_CHAN_TYPE_MASK;
980
981         /* if we are recording, enable recording fifo bit */
982         if (chan->is_record)
983                 chan->pcm_fmt |= VIA_PCM_REC_FIFO;
984         /* set interrupt select bits where applicable (PCM in & out channels) */
985         if (!chan->is_record)
986                 chan->pcm_fmt |= VIA_CHAN_TYPE_INT_SELECT;
987         
988         DPRINTK("SET FMT - %02x %02x\n", chan->intmask , chan->is_multi);
989         
990         if(chan->intmask)
991         {
992                 u32 m;
993
994                 /*
995                  *      Channel 0x4 is up to 6 x 16bit and has to be
996                  *      programmed differently 
997                  */
998                                 
999                 if(chan->is_multi)
1000                 {
1001                         u8 c = 0;
1002                         
1003                         /*
1004                          *      Load the type bit for num channels
1005                          *      and 8/16bit
1006                          */
1007                          
1008                         if(chan->pcm_fmt & VIA_PCM_FMT_16BIT)
1009                                 c = 1 << 7;
1010                         if(chan->pcm_fmt & VIA_PCM_FMT_STEREO)
1011                                 c |= (2<<4);
1012                         else
1013                                 c |= (1<<4);
1014                                 
1015                         outb(c, chan->iobase + VIA_PCM_TYPE);
1016                         
1017                         /*
1018                          *      Set the channel steering
1019                          *      Mono
1020                          *              Channel 0 to slot 3
1021                          *              Channel 0 to slot 4
1022                          *      Stereo
1023                          *              Channel 0 to slot 3
1024                          *              Channel 1 to slot 4
1025                          */
1026                          
1027                         switch(chan->channels)
1028                         {
1029                                 case 1:
1030                                         outl(0xFF000000 | (1<<0) | (1<<4) , chan->iobase + VIA_PCM_STOPRATE);
1031                                         break;
1032                                 case 2:
1033                                         outl(0xFF000000 | (1<<0) | (2<<4) , chan->iobase + VIA_PCM_STOPRATE);
1034                                         break;
1035                                 case 4:
1036                                         outl(0xFF000000 | (1<<0) | (2<<4) | (3<<8) | (4<<12), chan->iobase + VIA_PCM_STOPRATE);
1037                                         break;
1038                                 case 6:
1039                                         outl(0xFF000000 | (1<<0) | (2<<4) | (5<<8) | (6<<12) | (3<<16) | (4<<20), chan->iobase + VIA_PCM_STOPRATE);
1040                                         break;
1041                         }                               
1042                 }
1043                 else
1044                 {
1045                         /*
1046                          *      New style, turn off channel volume
1047                          *      control, set bits in the right register
1048                          */     
1049                         outb(0x0, chan->iobase + VIA_PCM_LEFTVOL);
1050                         outb(0x0, chan->iobase + VIA_PCM_RIGHTVOL);
1051
1052                         m = inl(chan->iobase + VIA_PCM_STOPRATE);
1053                         m &= ~(3<<20);
1054                         if(chan->pcm_fmt & VIA_PCM_FMT_STEREO)
1055                                 m |= (1 << 20);
1056                         if(chan->pcm_fmt & VIA_PCM_FMT_16BIT)
1057                                 m |= (1 << 21);
1058                         outl(m, chan->iobase + VIA_PCM_STOPRATE);
1059                 }               
1060         }
1061         else
1062                 outb (chan->pcm_fmt, chan->iobase + VIA_PCM_TYPE);
1063
1064
1065         DPRINTK ("EXIT, pcm_fmt = 0x%02X, reg = 0x%02X\n",
1066                  chan->pcm_fmt,
1067                  inb (chan->iobase + VIA_PCM_TYPE));
1068 }
1069
1070
1071 /**
1072  *      via_chan_clear - Stop DMA channel operation, and reset pointers
1073  *      @card: the chip to accessed
1074  *      @chan: Channel to be cleared
1075  *
1076  *      Call via_chan_stop to halt DMA operations, and then resets
1077  *      all software pointers which track DMA operation.
1078  */
1079
1080 static void via_chan_clear (struct via_info *card, struct via_channel *chan)
1081 {
1082         DPRINTK ("ENTER\n");
1083         via_chan_stop (chan->iobase);
1084         via_chan_buffer_free(card, chan);
1085         chan->is_active = 0;
1086         chan->is_mapped = 0;
1087         chan->is_enabled = 1;
1088         chan->slop_len = 0;
1089         chan->sw_ptr = 0;
1090         chan->n_irqs = 0;
1091         atomic_set (&chan->hw_ptr, 0);
1092         DPRINTK ("EXIT\n");
1093 }
1094
1095
1096 /**
1097  *      via_chan_set_speed - Set PCM sample rate for given channel
1098  *      @card: Private info for specified board
1099  *      @chan: Channel whose sample rate will be adjusted
1100  *      @val: New sample rate, in Khz
1101  *
1102  *      Helper function for the %SNDCTL_DSP_SPEED ioctl.  OSS semantics
1103  *      demand that all audio operations halt (if they are not already
1104  *      halted) when the %SNDCTL_DSP_SPEED is given.
1105  *
1106  *      This function halts all audio operations for the given channel
1107  *      @chan, and then calls via_set_rate to set the audio hardware
1108  *      to the new rate.
1109  */
1110
1111 static int via_chan_set_speed (struct via_info *card,
1112                                struct via_channel *chan, int val)
1113 {
1114         DPRINTK ("ENTER, requested rate = %d\n", val);
1115
1116         via_chan_clear (card, chan);
1117
1118         val = via_set_rate (card->ac97, chan, val);
1119
1120         DPRINTK ("EXIT, returning %d\n", val);
1121         return val;
1122 }
1123
1124
1125 /**
1126  *      via_chan_set_fmt - Set PCM sample size for given channel
1127  *      @card: Private info for specified board
1128  *      @chan: Channel whose sample size will be adjusted
1129  *      @val: New sample size, use the %AFMT_xxx constants
1130  *
1131  *      Helper function for the %SNDCTL_DSP_SETFMT ioctl.  OSS semantics
1132  *      demand that all audio operations halt (if they are not already
1133  *      halted) when the %SNDCTL_DSP_SETFMT is given.
1134  *
1135  *      This function halts all audio operations for the given channel
1136  *      @chan, and then calls via_chan_pcm_fmt to set the audio hardware
1137  *      to the new sample size, either 8-bit or 16-bit.
1138  */
1139
1140 static int via_chan_set_fmt (struct via_info *card,
1141                              struct via_channel *chan, int val)
1142 {
1143         DPRINTK ("ENTER, val=%s\n",
1144                  val == AFMT_U8 ? "AFMT_U8" :
1145                  val == AFMT_S16_LE ? "AFMT_S16_LE" :
1146                  "unknown");
1147
1148         via_chan_clear (card, chan);
1149
1150         assert (val != AFMT_QUERY); /* this case is handled elsewhere */
1151
1152         switch (val) {
1153         case AFMT_S16_LE:
1154                 if ((chan->pcm_fmt & VIA_PCM_FMT_16BIT) == 0) {
1155                         chan->pcm_fmt |= VIA_PCM_FMT_16BIT;
1156                         via_chan_pcm_fmt (chan, 0);
1157                 }
1158                 break;
1159
1160         case AFMT_U8:
1161                 if (chan->pcm_fmt & VIA_PCM_FMT_16BIT) {
1162                         chan->pcm_fmt &= ~VIA_PCM_FMT_16BIT;
1163                         via_chan_pcm_fmt (chan, 0);
1164                 }
1165                 break;
1166
1167         default:
1168                 DPRINTK ("unknown AFMT: 0x%X\n", val);
1169                 val = AFMT_S16_LE;
1170         }
1171
1172         DPRINTK ("EXIT\n");
1173         return val;
1174 }
1175
1176
1177 /**
1178  *      via_chan_set_stereo - Enable or disable stereo for a DMA channel
1179  *      @card: Private info for specified board
1180  *      @chan: Channel whose stereo setting will be adjusted
1181  *      @val: New sample size, use the %AFMT_xxx constants
1182  *
1183  *      Helper function for the %SNDCTL_DSP_CHANNELS and %SNDCTL_DSP_STEREO ioctls.  OSS semantics
1184  *      demand that all audio operations halt (if they are not already
1185  *      halted) when %SNDCTL_DSP_CHANNELS or SNDCTL_DSP_STEREO is given.
1186  *
1187  *      This function halts all audio operations for the given channel
1188  *      @chan, and then calls via_chan_pcm_fmt to set the audio hardware
1189  *      to enable or disable stereo.
1190  */
1191
1192 static int via_chan_set_stereo (struct via_info *card,
1193                                 struct via_channel *chan, int val)
1194 {
1195         DPRINTK ("ENTER, channels = %d\n", val);
1196
1197         via_chan_clear (card, chan);
1198
1199         switch (val) {
1200
1201         /* mono */
1202         case 1:
1203                 chan->pcm_fmt &= ~VIA_PCM_FMT_STEREO;
1204                 chan->channels = 1;
1205                 via_chan_pcm_fmt (chan, 0);
1206                 break;
1207
1208         /* stereo */
1209         case 2:
1210                 chan->pcm_fmt |= VIA_PCM_FMT_STEREO;
1211                 chan->channels = 2;
1212                 via_chan_pcm_fmt (chan, 0);
1213                 break;
1214
1215         case 4:
1216         case 6:
1217                 if(chan->is_multi)
1218                 {
1219                         chan->pcm_fmt |= VIA_PCM_FMT_STEREO;
1220                         chan->channels = val;
1221                         break;
1222                 }
1223         /* unknown */
1224         default:
1225                 val = -EINVAL;
1226                 break;
1227         }
1228
1229         DPRINTK ("EXIT, returning %d\n", val);
1230         return val;
1231 }
1232
1233 static int via_chan_set_buffering (struct via_info *card,
1234                                 struct via_channel *chan, int val)
1235 {
1236         int shift;
1237
1238         DPRINTK ("ENTER\n");
1239
1240         /* in both cases the buffer cannot be changed */
1241         if (chan->is_active || chan->is_mapped) {
1242                 DPRINTK ("EXIT\n");
1243                 return -EINVAL;
1244         }
1245
1246         /* called outside SETFRAGMENT */
1247         /* set defaults or do nothing */
1248         if (val < 0) {
1249
1250                 if (chan->frag_size && chan->frag_number)
1251                         goto out;
1252
1253                 DPRINTK ("\n");
1254
1255                 chan->frag_size = (VIA_DEFAULT_FRAG_TIME * chan->rate * chan->channels
1256                                    * ((chan->pcm_fmt & VIA_PCM_FMT_16BIT) ? 2 : 1)) / 1000 - 1;
1257
1258                 shift = 0;
1259                 while (chan->frag_size) {
1260                         chan->frag_size >>= 1;
1261                         shift++;
1262                 }
1263                 chan->frag_size = 1 << shift;
1264
1265                 chan->frag_number = (VIA_DEFAULT_BUFFER_TIME / VIA_DEFAULT_FRAG_TIME);
1266
1267                 DPRINTK ("setting default values %d %d\n", chan->frag_size, chan->frag_number);
1268         } else {
1269                 chan->frag_size = 1 << (val & 0xFFFF);
1270                 chan->frag_number = (val >> 16) & 0xFFFF;
1271
1272                 DPRINTK ("using user values %d %d\n", chan->frag_size, chan->frag_number);
1273         }
1274
1275         /* quake3 wants frag_number to be a power of two */
1276         shift = 0;
1277         while (chan->frag_number) {
1278                 chan->frag_number >>= 1;
1279                 shift++;
1280         }
1281         chan->frag_number = 1 << shift;
1282
1283         if (chan->frag_size > VIA_MAX_FRAG_SIZE)
1284                 chan->frag_size = VIA_MAX_FRAG_SIZE;
1285         else if (chan->frag_size < VIA_MIN_FRAG_SIZE)
1286                 chan->frag_size = VIA_MIN_FRAG_SIZE;
1287
1288         if (chan->frag_number < VIA_MIN_FRAG_NUMBER)
1289                 chan->frag_number = VIA_MIN_FRAG_NUMBER;
1290         if (chan->frag_number > VIA_MAX_FRAG_NUMBER)
1291                 chan->frag_number = VIA_MAX_FRAG_NUMBER;
1292
1293         if ((chan->frag_number * chan->frag_size) / PAGE_SIZE > VIA_MAX_BUFFER_DMA_PAGES)
1294                 chan->frag_number = (VIA_MAX_BUFFER_DMA_PAGES * PAGE_SIZE) / chan->frag_size;
1295
1296 out:
1297         if (chan->is_record)
1298                 atomic_set (&chan->n_frags, 0);
1299         else
1300                 atomic_set (&chan->n_frags, chan->frag_number);
1301
1302         DPRINTK ("EXIT\n");
1303
1304         return 0;
1305 }
1306
1307 #ifdef VIA_CHAN_DUMP_BUFS
1308 /**
1309  *      via_chan_dump_bufs - Display DMA table contents
1310  *      @chan: Channel whose DMA table will be displayed
1311  *
1312  *      Debugging function which displays the contents of the
1313  *      scatter-gather DMA table for the given channel @chan.
1314  */
1315
1316 static void via_chan_dump_bufs (struct via_channel *chan)
1317 {
1318         int i;
1319
1320         for (i = 0; i < chan->frag_number; i++) {
1321                 DPRINTK ("#%02d: addr=%x, count=%u, flag=%d, eol=%d\n",
1322                          i, chan->sgtable[i].addr,
1323                          chan->sgtable[i].count & 0x00FFFFFF,
1324                          chan->sgtable[i].count & VIA_FLAG ? 1 : 0,
1325                          chan->sgtable[i].count & VIA_EOL ? 1 : 0);
1326         }
1327         DPRINTK ("buf_in_use = %d, nextbuf = %d\n",
1328                  atomic_read (&chan->buf_in_use),
1329                  atomic_read (&chan->sw_ptr));
1330 }
1331 #endif /* VIA_CHAN_DUMP_BUFS */
1332
1333
1334 /**
1335  *      via_chan_flush_frag - Flush partially-full playback buffer to hardware
1336  *      @chan: Channel whose DMA table will be flushed
1337  *
1338  *      Flushes partially-full playback buffer to hardware.
1339  */
1340
1341 static void via_chan_flush_frag (struct via_channel *chan)
1342 {
1343         DPRINTK ("ENTER\n");
1344
1345         assert (chan->slop_len > 0);
1346
1347         if (chan->sw_ptr == (chan->frag_number - 1))
1348                 chan->sw_ptr = 0;
1349         else
1350                 chan->sw_ptr++;
1351
1352         chan->slop_len = 0;
1353
1354         assert (atomic_read (&chan->n_frags) > 0);
1355         atomic_dec (&chan->n_frags);
1356
1357         DPRINTK ("EXIT\n");
1358 }
1359
1360
1361
1362 /**
1363  *      via_chan_maybe_start - Initiate audio hardware DMA operation
1364  *      @chan: Channel whose DMA is to be started
1365  *
1366  *      Initiate DMA operation, if the DMA engine for the given
1367  *      channel @chan is not already active.
1368  */
1369
1370 static inline void via_chan_maybe_start (struct via_channel *chan)
1371 {
1372         assert (chan->is_active == sg_active(chan->iobase));
1373
1374         DPRINTK ("MAYBE START %s\n", chan->name);
1375         if (!chan->is_active && chan->is_enabled) {
1376                 chan->is_active = 1;
1377                 sg_begin (chan);
1378                 DPRINTK ("starting channel %s\n", chan->name);
1379         }
1380 }
1381
1382
1383 /****************************************************************
1384  *
1385  * Interface to ac97-codec module
1386  *
1387  *
1388  */
1389
1390 /**
1391  *      via_ac97_wait_idle - Wait until AC97 codec is not busy
1392  *      @card: Private info for specified board
1393  *
1394  *      Sleep until the AC97 codec is no longer busy.
1395  *      Returns the final value read from the SGD
1396  *      register being polled.
1397  */
1398
1399 static u8 via_ac97_wait_idle (struct via_info *card)
1400 {
1401         u8 tmp8;
1402         int counter = VIA_COUNTER_LIMIT;
1403
1404         DPRINTK ("ENTER/EXIT\n");
1405
1406         assert (card != NULL);
1407         assert (card->pdev != NULL);
1408
1409         do {
1410                 udelay (15);
1411
1412                 tmp8 = inb (card->baseaddr + 0x83);
1413         } while ((tmp8 & VIA_CR83_BUSY) && (counter-- > 0));
1414
1415         if (tmp8 & VIA_CR83_BUSY)
1416                 printk (KERN_WARNING PFX "timeout waiting on AC97 codec\n");
1417         return tmp8;
1418 }
1419
1420
1421 /**
1422  *      via_ac97_read_reg - Read AC97 standard register
1423  *      @codec: Pointer to generic AC97 codec info
1424  *      @reg: Index of AC97 register to be read
1425  *
1426  *      Read the value of a single AC97 codec register,
1427  *      as defined by the Intel AC97 specification.
1428  *
1429  *      Defines the standard AC97 read-register operation
1430  *      required by the kernel's ac97_codec interface.
1431  *
1432  *      Returns the 16-bit value stored in the specified
1433  *      register.
1434  */
1435
1436 static u16 via_ac97_read_reg (struct ac97_codec *codec, u8 reg)
1437 {
1438         unsigned long data;
1439         struct via_info *card;
1440         int counter;
1441
1442         DPRINTK ("ENTER\n");
1443
1444         assert (codec != NULL);
1445         assert (codec->private_data != NULL);
1446
1447         card = codec->private_data;
1448         
1449         spin_lock(&card->ac97_lock);
1450
1451         /* Every time we write to register 80 we cause a transaction.
1452            The only safe way to clear the valid bit is to write it at
1453            the same time as the command */
1454         data = (reg << 16) | VIA_CR80_READ | VIA_CR80_VALID;
1455
1456         outl (data, card->baseaddr + VIA_BASE0_AC97_CTRL);
1457         udelay (20);
1458
1459         for (counter = VIA_COUNTER_LIMIT; counter > 0; counter--) {
1460                 udelay (1);
1461                 if ((((data = inl(card->baseaddr + VIA_BASE0_AC97_CTRL)) &
1462                       (VIA_CR80_VALID|VIA_CR80_BUSY)) == VIA_CR80_VALID))
1463                         goto out;
1464         }
1465
1466         printk (KERN_WARNING PFX "timeout while reading AC97 codec (0x%lX)\n", data);
1467         goto err_out;
1468
1469 out:
1470         /* Once the valid bit has become set, we must wait a complete AC97
1471            frame before the data has settled. */
1472         udelay(25);
1473         data = (unsigned long) inl (card->baseaddr + VIA_BASE0_AC97_CTRL);
1474
1475         outb (0x02, card->baseaddr + 0x83);
1476
1477         if (((data & 0x007F0000) >> 16) == reg) {
1478                 DPRINTK ("EXIT, success, data=0x%lx, retval=0x%lx\n",
1479                          data, data & 0x0000FFFF);
1480                 spin_unlock(&card->ac97_lock);
1481                 return data & 0x0000FFFF;
1482         }
1483
1484         printk (KERN_WARNING "via82cxxx_audio: not our index: reg=0x%x, newreg=0x%lx\n",
1485                 reg, ((data & 0x007F0000) >> 16));
1486
1487 err_out:
1488         spin_unlock(&card->ac97_lock);
1489         DPRINTK ("EXIT, returning 0\n");
1490         return 0;
1491 }
1492
1493
1494 /**
1495  *      via_ac97_write_reg - Write AC97 standard register
1496  *      @codec: Pointer to generic AC97 codec info
1497  *      @reg: Index of AC97 register to be written
1498  *      @value: Value to be written to AC97 register
1499  *
1500  *      Write the value of a single AC97 codec register,
1501  *      as defined by the Intel AC97 specification.
1502  *
1503  *      Defines the standard AC97 write-register operation
1504  *      required by the kernel's ac97_codec interface.
1505  */
1506
1507 static void via_ac97_write_reg (struct ac97_codec *codec, u8 reg, u16 value)
1508 {
1509         u32 data;
1510         struct via_info *card;
1511         int counter;
1512
1513         DPRINTK ("ENTER\n");
1514
1515         assert (codec != NULL);
1516         assert (codec->private_data != NULL);
1517
1518         card = codec->private_data;
1519
1520         spin_lock(&card->ac97_lock);
1521         
1522         data = (reg << 16) + value;
1523         outl (data, card->baseaddr + VIA_BASE0_AC97_CTRL);
1524         udelay (10);
1525
1526         for (counter = VIA_COUNTER_LIMIT; counter > 0; counter--) {
1527                 if ((inb (card->baseaddr + 0x83) & VIA_CR83_BUSY) == 0)
1528                         goto out;
1529
1530                 udelay (15);
1531         }
1532
1533         printk (KERN_WARNING PFX "timeout after AC97 codec write (0x%X, 0x%X)\n", reg, value);
1534
1535 out:
1536         spin_unlock(&card->ac97_lock);
1537         DPRINTK ("EXIT\n");
1538 }
1539
1540
1541 static int via_mixer_open (struct inode *inode, struct file *file)
1542 {
1543         int minor = iminor(inode);
1544         struct via_info *card;
1545         struct pci_dev *pdev = NULL;
1546         struct pci_driver *drvr;
1547
1548         DPRINTK ("ENTER\n");
1549
1550         while ((pdev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pdev)) != NULL) {
1551                 drvr = pci_dev_driver (pdev);
1552                 if (drvr == &via_driver) {
1553                         assert (pci_get_drvdata (pdev) != NULL);
1554
1555                         card = pci_get_drvdata (pdev);
1556                         if (card->ac97->dev_mixer == minor)
1557                                 goto match;
1558                 }
1559         }
1560
1561         DPRINTK ("EXIT, returning -ENODEV\n");
1562         return -ENODEV;
1563
1564 match:
1565         file->private_data = card->ac97;
1566
1567         DPRINTK ("EXIT, returning 0\n");
1568         return nonseekable_open(inode, file);
1569 }
1570
1571 static int via_mixer_ioctl (struct inode *inode, struct file *file, unsigned int cmd,
1572                             unsigned long arg)
1573 {
1574         struct ac97_codec *codec = file->private_data;
1575         struct via_info *card;
1576         int nonblock = (file->f_flags & O_NONBLOCK);
1577         int rc;
1578
1579         DPRINTK ("ENTER\n");
1580
1581         assert (codec != NULL);
1582         card = codec->private_data;
1583         assert (card != NULL);
1584
1585         rc = via_syscall_down (card, nonblock);
1586         if (rc) goto out;
1587         
1588 #if 0
1589         /*
1590          *      Intercept volume control on 8233 and 8235
1591          */
1592         if(card->volume)
1593         {
1594                 switch(cmd)
1595                 {
1596                         case SOUND_MIXER_READ_VOLUME:
1597                                 return card->mixer_vol;
1598                         case SOUND_MIXER_WRITE_VOLUME:
1599                         {
1600                                 int v;
1601                                 if(get_user(v, (int *)arg))
1602                                 {
1603                                         rc = -EFAULT;
1604                                         goto out;
1605                                 }
1606                                 card->mixer_vol = v;
1607                         }
1608                 }
1609         }               
1610 #endif
1611         rc = codec->mixer_ioctl(codec, cmd, arg);
1612
1613         mutex_unlock(&card->syscall_mutex);
1614
1615 out:
1616         DPRINTK ("EXIT, returning %d\n", rc);
1617         return rc;
1618 }
1619
1620
1621 static struct file_operations via_mixer_fops = {
1622         .owner          = THIS_MODULE,
1623         .open           = via_mixer_open,
1624         .llseek         = no_llseek,
1625         .ioctl          = via_mixer_ioctl,
1626 };
1627
1628
1629 static int __devinit via_ac97_reset (struct via_info *card)
1630 {
1631         struct pci_dev *pdev = card->pdev;
1632         u8 tmp8;
1633         u16 tmp16;
1634
1635         DPRINTK ("ENTER\n");
1636
1637         assert (pdev != NULL);
1638
1639 #ifndef NDEBUG
1640         {
1641                 u8 r40,r41,r42,r43,r44,r48;
1642                 pci_read_config_byte (card->pdev, 0x40, &r40);
1643                 pci_read_config_byte (card->pdev, 0x41, &r41);
1644                 pci_read_config_byte (card->pdev, 0x42, &r42);
1645                 pci_read_config_byte (card->pdev, 0x43, &r43);
1646                 pci_read_config_byte (card->pdev, 0x44, &r44);
1647                 pci_read_config_byte (card->pdev, 0x48, &r48);
1648                 DPRINTK ("PCI config: %02X %02X %02X %02X %02X %02X\n",
1649                         r40,r41,r42,r43,r44,r48);
1650
1651                 spin_lock_irq (&card->lock);
1652                 DPRINTK ("regs==%02X %02X %02X %08X %08X %08X %08X\n",
1653                          inb (card->baseaddr + 0x00),
1654                          inb (card->baseaddr + 0x01),
1655                          inb (card->baseaddr + 0x02),
1656                          inl (card->baseaddr + 0x04),
1657                          inl (card->baseaddr + 0x0C),
1658                          inl (card->baseaddr + 0x80),
1659                          inl (card->baseaddr + 0x84));
1660                 spin_unlock_irq (&card->lock);
1661
1662         }
1663 #endif
1664
1665         /*
1666          * Reset AC97 controller: enable, disable, enable,
1667          * pausing after each command for good luck.  Only
1668          * do this if the codec is not ready, because it causes
1669          * loud pops and such due to such a hard codec reset.
1670          */
1671         pci_read_config_byte (pdev, VIA_ACLINK_STATUS, &tmp8);
1672         if ((tmp8 & VIA_CR40_AC97_READY) == 0) {
1673                 pci_write_config_byte (pdev, VIA_ACLINK_CTRL,
1674                                        VIA_CR41_AC97_ENABLE |
1675                                        VIA_CR41_AC97_RESET |
1676                                        VIA_CR41_AC97_WAKEUP);
1677                 udelay (100);
1678
1679                 pci_write_config_byte (pdev, VIA_ACLINK_CTRL, 0);
1680                 udelay (100);
1681
1682                 pci_write_config_byte (pdev, VIA_ACLINK_CTRL,
1683                                        VIA_CR41_AC97_ENABLE |
1684                                        VIA_CR41_PCM_ENABLE |
1685                                        VIA_CR41_VRA | VIA_CR41_AC97_RESET);
1686                 udelay (100);
1687         }
1688
1689         /* Make sure VRA is enabled, in case we didn't do a
1690          * complete codec reset, above
1691          */
1692         pci_read_config_byte (pdev, VIA_ACLINK_CTRL, &tmp8);
1693         if (((tmp8 & VIA_CR41_VRA) == 0) ||
1694             ((tmp8 & VIA_CR41_AC97_ENABLE) == 0) ||
1695             ((tmp8 & VIA_CR41_PCM_ENABLE) == 0) ||
1696             ((tmp8 & VIA_CR41_AC97_RESET) == 0)) {
1697                 pci_write_config_byte (pdev, VIA_ACLINK_CTRL,
1698                                        VIA_CR41_AC97_ENABLE |
1699                                        VIA_CR41_PCM_ENABLE |
1700                                        VIA_CR41_VRA | VIA_CR41_AC97_RESET);
1701                 udelay (100);
1702         }
1703
1704         if(card->legacy)
1705         {
1706 #if 0 /* this breaks on K7M */
1707                 /* disable legacy stuff */
1708                 pci_write_config_byte (pdev, 0x42, 0x00);
1709                 udelay(10);
1710 #endif
1711
1712                 /* route FM trap to IRQ, disable FM trap */
1713                 pci_write_config_byte (pdev, 0x48, 0x05);
1714                 udelay(10);
1715         }
1716         
1717         /* disable all codec GPI interrupts */
1718         outl (0, pci_resource_start (pdev, 0) + 0x8C);
1719
1720         /* WARNING: this line is magic.  Remove this
1721          * and things break. */
1722         /* enable variable rate */
1723         tmp16 = via_ac97_read_reg (card->ac97, AC97_EXTENDED_STATUS);
1724         if ((tmp16 & 1) == 0)
1725                 via_ac97_write_reg (card->ac97, AC97_EXTENDED_STATUS, tmp16 | 1);
1726
1727         DPRINTK ("EXIT, returning 0\n");
1728         return 0;
1729 }
1730
1731
1732 static void via_ac97_codec_wait (struct ac97_codec *codec)
1733 {
1734         assert (codec->private_data != NULL);
1735         via_ac97_wait_idle (codec->private_data);
1736 }
1737
1738
1739 static int __devinit via_ac97_init (struct via_info *card)
1740 {
1741         int rc;
1742         u16 tmp16;
1743
1744         DPRINTK ("ENTER\n");
1745
1746         assert (card != NULL);
1747
1748         card->ac97 = ac97_alloc_codec();
1749         if(card->ac97 == NULL)
1750                 return -ENOMEM;
1751                 
1752         card->ac97->private_data = card;
1753         card->ac97->codec_read = via_ac97_read_reg;
1754         card->ac97->codec_write = via_ac97_write_reg;
1755         card->ac97->codec_wait = via_ac97_codec_wait;
1756
1757         card->ac97->dev_mixer = register_sound_mixer (&via_mixer_fops, -1);
1758         if (card->ac97->dev_mixer < 0) {
1759                 printk (KERN_ERR PFX "unable to register AC97 mixer, aborting\n");
1760                 DPRINTK ("EXIT, returning -EIO\n");
1761                 ac97_release_codec(card->ac97);
1762                 return -EIO;
1763         }
1764
1765         rc = via_ac97_reset (card);
1766         if (rc) {
1767                 printk (KERN_ERR PFX "unable to reset AC97 codec, aborting\n");
1768                 goto err_out;
1769         }
1770         
1771         mdelay(10);
1772         
1773         if (ac97_probe_codec (card->ac97) == 0) {
1774                 printk (KERN_ERR PFX "unable to probe AC97 codec, aborting\n");
1775                 rc = -EIO;
1776                 goto err_out;
1777         }
1778
1779         /* enable variable rate */
1780         tmp16 = via_ac97_read_reg (card->ac97, AC97_EXTENDED_STATUS);
1781         via_ac97_write_reg (card->ac97, AC97_EXTENDED_STATUS, tmp16 | 1);
1782
1783         /*
1784          * If we cannot enable VRA, we have a locked-rate codec.
1785          * We try again to enable VRA before assuming so, however.
1786          */
1787         tmp16 = via_ac97_read_reg (card->ac97, AC97_EXTENDED_STATUS);
1788         if ((tmp16 & 1) == 0) {
1789                 via_ac97_write_reg (card->ac97, AC97_EXTENDED_STATUS, tmp16 | 1);
1790                 tmp16 = via_ac97_read_reg (card->ac97, AC97_EXTENDED_STATUS);
1791                 if ((tmp16 & 1) == 0) {
1792                         card->locked_rate = 1;
1793                         printk (KERN_WARNING PFX "Codec rate locked at 48Khz\n");
1794                 }
1795         }
1796
1797         DPRINTK ("EXIT, returning 0\n");
1798         return 0;
1799
1800 err_out:
1801         unregister_sound_mixer (card->ac97->dev_mixer);
1802         DPRINTK ("EXIT, returning %d\n", rc);
1803         ac97_release_codec(card->ac97);
1804         return rc;
1805 }
1806
1807
1808 static void via_ac97_cleanup (struct via_info *card)
1809 {
1810         DPRINTK ("ENTER\n");
1811
1812         assert (card != NULL);
1813         assert (card->ac97->dev_mixer >= 0);
1814
1815         unregister_sound_mixer (card->ac97->dev_mixer);
1816         ac97_release_codec(card->ac97);
1817
1818         DPRINTK ("EXIT\n");
1819 }
1820
1821
1822
1823 /****************************************************************
1824  *
1825  * Interrupt-related code
1826  *
1827  */
1828
1829 /**
1830  *      via_intr_channel - handle an interrupt for a single channel
1831  *      @card: unused
1832  *      @chan: handle interrupt for this channel
1833  *
1834  *      This is the "meat" of the interrupt handler,
1835  *      containing the actions taken each time an interrupt
1836  *      occurs.  All communication and coordination with
1837  *      userspace takes place here.
1838  *
1839  *      Locking: inside card->lock
1840  */
1841
1842 static void via_intr_channel (struct via_info *card, struct via_channel *chan)
1843 {
1844         u8 status;
1845         int n;
1846         
1847         /* check pertinent bits of status register for action bits */
1848         status = inb (chan->iobase) & (VIA_SGD_FLAG | VIA_SGD_EOL | VIA_SGD_STOPPED);
1849         if (!status)
1850                 return;
1851
1852         /* acknowledge any flagged bits ASAP */
1853         outb (status, chan->iobase);
1854
1855         if (!chan->sgtable) /* XXX: temporary solution */
1856                 return;
1857
1858         /* grab current h/w ptr value */
1859         n = atomic_read (&chan->hw_ptr);
1860
1861         /* sanity check: make sure our h/w ptr doesn't have a weird value */
1862         assert (n >= 0);
1863         assert (n < chan->frag_number);
1864
1865         
1866         /* reset SGD data structure in memory to reflect a full buffer,
1867          * and advance the h/w ptr, wrapping around to zero if needed
1868          */
1869         if (n == (chan->frag_number - 1)) {
1870                 chan->sgtable[n].count = cpu_to_le32(chan->frag_size | VIA_EOL);
1871                 atomic_set (&chan->hw_ptr, 0);
1872         } else {
1873                 chan->sgtable[n].count = cpu_to_le32(chan->frag_size | VIA_FLAG);
1874                 atomic_inc (&chan->hw_ptr);
1875         }
1876
1877         /* accounting crap for SNDCTL_DSP_GETxPTR */
1878         chan->n_irqs++;
1879         chan->bytes += chan->frag_size;
1880         /* FIXME - signed overflow is undefined */
1881         if (chan->bytes < 0) /* handle overflow of 31-bit value */
1882                 chan->bytes = chan->frag_size;
1883         /* all following checks only occur when not in mmap(2) mode */
1884         if (!chan->is_mapped)
1885         {
1886                 /* If we are recording, then n_frags represents the number
1887                  * of fragments waiting to be handled by userspace.
1888                  * If we are playback, then n_frags represents the number
1889                  * of fragments remaining to be filled by userspace.
1890                  * We increment here.  If we reach max number of fragments,
1891                  * this indicates an underrun/overrun.  For this case under OSS,
1892                  * we stop the record/playback process.
1893                  */
1894                 if (atomic_read (&chan->n_frags) < chan->frag_number)
1895                         atomic_inc (&chan->n_frags);
1896                 assert (atomic_read (&chan->n_frags) <= chan->frag_number);
1897                 if (atomic_read (&chan->n_frags) == chan->frag_number) {
1898                         chan->is_active = 0;
1899                         via_chan_stop (chan->iobase);
1900                 }
1901         }
1902         /* wake up anyone listening to see when interrupts occur */
1903         wake_up_all (&chan->wait);
1904
1905         DPRINTK ("%s intr, status=0x%02X, hwptr=0x%lX, chan->hw_ptr=%d\n",
1906                  chan->name, status, (long) inl (chan->iobase + 0x04),
1907                  atomic_read (&chan->hw_ptr));
1908
1909         DPRINTK ("%s intr, channel n_frags == %d, missed %d\n", chan->name,
1910                  atomic_read (&chan->n_frags), missed);
1911 }
1912
1913
1914 static irqreturn_t  via_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1915 {
1916         struct via_info *card = dev_id;
1917         u32 status32;
1918
1919         /* to minimize interrupt sharing costs, we use the SGD status
1920          * shadow register to check the status of all inputs and
1921          * outputs with a single 32-bit bus read.  If no interrupt
1922          * conditions are flagged, we exit immediately
1923          */
1924         status32 = inl (card->baseaddr + VIA_BASE0_SGD_STATUS_SHADOW);
1925         if (!(status32 & VIA_INTR_MASK))
1926         {
1927 #ifdef CONFIG_MIDI_VIA82CXXX
1928                  if (card->midi_devc)
1929                         uart401intr(irq, card->midi_devc, regs);
1930 #endif
1931                 return IRQ_HANDLED;
1932         }
1933         DPRINTK ("intr, status32 == 0x%08X\n", status32);
1934
1935         /* synchronize interrupt handling under SMP.  this spinlock
1936          * goes away completely on UP
1937          */
1938         spin_lock (&card->lock);
1939
1940         if (status32 & VIA_INTR_OUT)
1941                 via_intr_channel (card, &card->ch_out);
1942         if (status32 & VIA_INTR_IN)
1943                 via_intr_channel (card, &card->ch_in);
1944         if (status32 & VIA_INTR_FM)
1945                 via_intr_channel (card, &card->ch_fm);
1946
1947         spin_unlock (&card->lock);
1948         
1949         return IRQ_HANDLED;
1950 }
1951
1952 static irqreturn_t via_new_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1953 {
1954         struct via_info *card = dev_id;
1955         u32 status32;
1956
1957         /* to minimize interrupt sharing costs, we use the SGD status
1958          * shadow register to check the status of all inputs and
1959          * outputs with a single 32-bit bus read.  If no interrupt
1960          * conditions are flagged, we exit immediately
1961          */
1962         status32 = inl (card->baseaddr + VIA_BASE0_SGD_STATUS_SHADOW);
1963         if (!(status32 & VIA_NEW_INTR_MASK))
1964                 return IRQ_NONE;
1965         /*
1966          * goes away completely on UP
1967          */
1968         spin_lock (&card->lock);
1969
1970         via_intr_channel (card, &card->ch_out);
1971         via_intr_channel (card, &card->ch_in);
1972         via_intr_channel (card, &card->ch_fm);
1973
1974         spin_unlock (&card->lock);
1975         return IRQ_HANDLED;
1976 }
1977
1978
1979 /**
1980  *      via_interrupt_init - Initialize interrupt handling
1981  *      @card: Private info for specified board
1982  *
1983  *      Obtain and reserve IRQ for using in handling audio events.
1984  *      Also, disable any IRQ-generating resources, to make sure
1985  *      we don't get interrupts before we want them.
1986  */
1987
1988 static int via_interrupt_init (struct via_info *card)
1989 {
1990         u8 tmp8;
1991
1992         DPRINTK ("ENTER\n");
1993
1994         assert (card != NULL);
1995         assert (card->pdev != NULL);
1996
1997         /* check for sane IRQ number. can this ever happen? */
1998         if (card->pdev->irq < 2) {
1999                 printk (KERN_ERR PFX "insane IRQ %d, aborting\n",
2000                         card->pdev->irq);
2001                 DPRINTK ("EXIT, returning -EIO\n");
2002                 return -EIO;
2003         }
2004
2005         /* VIA requires this is done */
2006         pci_write_config_byte(card->pdev, PCI_INTERRUPT_LINE, card->pdev->irq);
2007         
2008         if(card->legacy)
2009         {
2010                 /* make sure FM irq is not routed to us */
2011                 pci_read_config_byte (card->pdev, VIA_FM_NMI_CTRL, &tmp8);
2012                 if ((tmp8 & VIA_CR48_FM_TRAP_TO_NMI) == 0) {
2013                         tmp8 |= VIA_CR48_FM_TRAP_TO_NMI;
2014                         pci_write_config_byte (card->pdev, VIA_FM_NMI_CTRL, tmp8);
2015                 }
2016                 if (request_irq (card->pdev->irq, via_interrupt, SA_SHIRQ, VIA_MODULE_NAME, card)) {
2017                         printk (KERN_ERR PFX "unable to obtain IRQ %d, aborting\n",
2018                                 card->pdev->irq);
2019                         DPRINTK ("EXIT, returning -EBUSY\n");
2020                         return -EBUSY;
2021                 }
2022         }
2023         else 
2024         {
2025                 if (request_irq (card->pdev->irq, via_new_interrupt, SA_SHIRQ, VIA_MODULE_NAME, card)) {
2026                         printk (KERN_ERR PFX "unable to obtain IRQ %d, aborting\n",
2027                                 card->pdev->irq);
2028                         DPRINTK ("EXIT, returning -EBUSY\n");
2029                         return -EBUSY;
2030                 }
2031         }
2032
2033         DPRINTK ("EXIT, returning 0\n");
2034         return 0;
2035 }
2036
2037
2038 /****************************************************************
2039  *
2040  * OSS DSP device
2041  *
2042  */
2043
2044 static struct file_operations via_dsp_fops = {
2045         .owner          = THIS_MODULE,
2046         .open           = via_dsp_open,
2047         .release        = via_dsp_release,
2048         .read           = via_dsp_read,
2049         .write          = via_dsp_write,
2050         .poll           = via_dsp_poll,
2051         .llseek         = no_llseek,
2052         .ioctl          = via_dsp_ioctl,
2053         .mmap           = via_dsp_mmap,
2054 };
2055
2056
2057 static int __devinit via_dsp_init (struct via_info *card)
2058 {
2059         u8 tmp8;
2060
2061         DPRINTK ("ENTER\n");
2062
2063         assert (card != NULL);
2064
2065         if(card->legacy)
2066         {
2067                 /* turn off legacy features, if not already */
2068                 pci_read_config_byte (card->pdev, VIA_FUNC_ENABLE, &tmp8);
2069                 if (tmp8 & (VIA_CR42_SB_ENABLE |  VIA_CR42_FM_ENABLE)) {
2070                         tmp8 &= ~(VIA_CR42_SB_ENABLE | VIA_CR42_FM_ENABLE);
2071                         pci_write_config_byte (card->pdev, VIA_FUNC_ENABLE, tmp8);
2072                 }
2073         }
2074
2075         via_stop_everything (card);
2076
2077         card->dev_dsp = register_sound_dsp (&via_dsp_fops, -1);
2078         if (card->dev_dsp < 0) {
2079                 DPRINTK ("EXIT, returning -ENODEV\n");
2080                 return -ENODEV;
2081         }
2082         DPRINTK ("EXIT, returning 0\n");
2083         return 0;
2084 }
2085
2086
2087 static void via_dsp_cleanup (struct via_info *card)
2088 {
2089         DPRINTK ("ENTER\n");
2090
2091         assert (card != NULL);
2092         assert (card->dev_dsp >= 0);
2093
2094         via_stop_everything (card);
2095
2096         unregister_sound_dsp (card->dev_dsp);
2097
2098         DPRINTK ("EXIT\n");
2099 }
2100
2101
2102 static struct page * via_mm_nopage (struct vm_area_struct * vma,
2103                                     unsigned long address, int *type)
2104 {
2105         struct via_info *card = vma->vm_private_data;
2106         struct via_channel *chan = &card->ch_out;
2107         struct page *dmapage;
2108         unsigned long pgoff;
2109         int rd, wr;
2110
2111         DPRINTK ("ENTER, start %lXh, ofs %lXh, pgoff %ld, addr %lXh\n",
2112                  vma->vm_start,
2113                  address - vma->vm_start,
2114                  (address - vma->vm_start) >> PAGE_SHIFT,
2115                  address);
2116
2117         if (address > vma->vm_end) {
2118                 DPRINTK ("EXIT, returning NOPAGE_SIGBUS\n");
2119                 return NOPAGE_SIGBUS; /* Disallow mremap */
2120         }
2121         if (!card) {
2122                 DPRINTK ("EXIT, returning NOPAGE_OOM\n");
2123                 return NOPAGE_OOM;      /* Nothing allocated */
2124         }
2125
2126         pgoff = vma->vm_pgoff + ((address - vma->vm_start) >> PAGE_SHIFT);
2127         rd = card->ch_in.is_mapped;
2128         wr = card->ch_out.is_mapped;
2129
2130 #ifndef VIA_NDEBUG
2131         {
2132         unsigned long max_bufs = chan->frag_number;
2133         if (rd && wr) max_bufs *= 2;
2134         /* via_dsp_mmap() should ensure this */
2135         assert (pgoff < max_bufs);
2136         }
2137 #endif
2138
2139         /* if full-duplex (read+write) and we have two sets of bufs,
2140          * then the playback buffers come first, sez soundcard.c */
2141         if (pgoff >= chan->page_number) {
2142                 pgoff -= chan->page_number;
2143                 chan = &card->ch_in;
2144         } else if (!wr)
2145                 chan = &card->ch_in;
2146
2147         assert ((((unsigned long)chan->pgtbl[pgoff].cpuaddr) % PAGE_SIZE) == 0);
2148
2149         dmapage = virt_to_page (chan->pgtbl[pgoff].cpuaddr);
2150         DPRINTK ("EXIT, returning page %p for cpuaddr %lXh\n",
2151                  dmapage, (unsigned long) chan->pgtbl[pgoff].cpuaddr);
2152         get_page (dmapage);
2153         if (type)
2154                 *type = VM_FAULT_MINOR;
2155         return dmapage;
2156 }
2157
2158
2159 #ifndef VM_RESERVED
2160 static int via_mm_swapout (struct page *page, struct file *filp)
2161 {
2162         return 0;
2163 }
2164 #endif /* VM_RESERVED */
2165
2166
2167 static struct vm_operations_struct via_mm_ops = {
2168         .nopage         = via_mm_nopage,
2169
2170 #ifndef VM_RESERVED
2171         .swapout        = via_mm_swapout,
2172 #endif
2173 };
2174
2175
2176 static int via_dsp_mmap(struct file *file, struct vm_area_struct *vma)
2177 {
2178         struct via_info *card;
2179         int nonblock = (file->f_flags & O_NONBLOCK);
2180         int rc = -EINVAL, rd=0, wr=0;
2181         unsigned long max_size, size, start, offset;
2182
2183         assert (file != NULL);
2184         assert (vma != NULL);
2185         card = file->private_data;
2186         assert (card != NULL);
2187
2188         DPRINTK ("ENTER, start %lXh, size %ld, pgoff %ld\n",
2189                  vma->vm_start,
2190                  vma->vm_end - vma->vm_start,
2191                  vma->vm_pgoff);
2192
2193         max_size = 0;
2194         if (vma->vm_flags & VM_READ) {
2195                 rd = 1;
2196                 via_chan_set_buffering(card, &card->ch_in, -1);
2197                 via_chan_buffer_init (card, &card->ch_in);
2198                 max_size += card->ch_in.page_number << PAGE_SHIFT;
2199         }
2200         if (vma->vm_flags & VM_WRITE) {
2201                 wr = 1;
2202                 via_chan_set_buffering(card, &card->ch_out, -1);
2203                 via_chan_buffer_init (card, &card->ch_out);
2204                 max_size += card->ch_out.page_number << PAGE_SHIFT;
2205         }
2206
2207         start = vma->vm_start;
2208         offset = (vma->vm_pgoff << PAGE_SHIFT);
2209         size = vma->vm_end - vma->vm_start;
2210
2211         /* some basic size/offset sanity checks */
2212         if (size > max_size)
2213                 goto out;
2214         if (offset > max_size - size)
2215                 goto out;
2216
2217         rc = via_syscall_down (card, nonblock);
2218         if (rc) goto out;
2219
2220         vma->vm_ops = &via_mm_ops;
2221         vma->vm_private_data = card;
2222
2223 #ifdef VM_RESERVED
2224         vma->vm_flags |= VM_RESERVED;
2225 #endif
2226
2227         if (rd)
2228                 card->ch_in.is_mapped = 1;
2229         if (wr)
2230                 card->ch_out.is_mapped = 1;
2231
2232         mutex_unlock(&card->syscall_mutex);
2233         rc = 0;
2234
2235 out:
2236         DPRINTK ("EXIT, returning %d\n", rc);
2237         return rc;
2238 }
2239
2240
2241 static ssize_t via_dsp_do_read (struct via_info *card,
2242                                 char __user *userbuf, size_t count,
2243                                 int nonblock)
2244 {
2245         DECLARE_WAITQUEUE(wait, current);
2246         const char __user *orig_userbuf = userbuf;
2247         struct via_channel *chan = &card->ch_in;
2248         size_t size;
2249         int n, tmp;
2250         ssize_t ret = 0;
2251
2252         /* if SGD has not yet been started, start it */
2253         via_chan_maybe_start (chan);
2254
2255 handle_one_block:
2256         /* just to be a nice neighbor */
2257         /* Thomas Sailer:
2258          * But also to ourselves, release semaphore if we do so */
2259         if (need_resched()) {
2260                 mutex_unlock(&card->syscall_mutex);
2261                 schedule ();
2262                 ret = via_syscall_down (card, nonblock);
2263                 if (ret)
2264                         goto out;
2265         }
2266
2267         /* grab current channel software pointer.  In the case of
2268          * recording, this is pointing to the next buffer that
2269          * will receive data from the audio hardware.
2270          */
2271         n = chan->sw_ptr;
2272
2273         /* n_frags represents the number of fragments waiting
2274          * to be copied to userland.  sleep until at least
2275          * one buffer has been read from the audio hardware.
2276          */
2277         add_wait_queue(&chan->wait, &wait);
2278         for (;;) {
2279                 __set_current_state(TASK_INTERRUPTIBLE);
2280                 tmp = atomic_read (&chan->n_frags);
2281                 assert (tmp >= 0);
2282                 assert (tmp <= chan->frag_number);
2283                 if (tmp)
2284                         break;
2285                 if (nonblock || !chan->is_active) {
2286                         ret = -EAGAIN;
2287                         break;
2288                 }
2289
2290                 mutex_unlock(&card->syscall_mutex);
2291
2292                 DPRINTK ("Sleeping on block %d\n", n);
2293                 schedule();
2294
2295                 ret = via_syscall_down (card, nonblock);
2296                 if (ret)
2297                         break;
2298
2299                 if (signal_pending (current)) {
2300                         ret = -ERESTARTSYS;
2301                         break;
2302                 }
2303         }
2304         set_current_state(TASK_RUNNING);
2305         remove_wait_queue(&chan->wait, &wait);
2306         if (ret)
2307                 goto out;
2308
2309         /* Now that we have a buffer we can read from, send
2310          * as much as sample data possible to userspace.
2311          */
2312         while ((count > 0) && (chan->slop_len < chan->frag_size)) {
2313                 size_t slop_left = chan->frag_size - chan->slop_len;
2314                 void *base = chan->pgtbl[n / (PAGE_SIZE / chan->frag_size)].cpuaddr;
2315                 unsigned ofs = (n % (PAGE_SIZE / chan->frag_size)) * chan->frag_size;
2316
2317                 size = (count < slop_left) ? count : slop_left;
2318                 if (copy_to_user (userbuf,
2319                                   base + ofs + chan->slop_len,
2320                                   size)) {
2321                         ret = -EFAULT;
2322                         goto out;
2323                 }
2324
2325                 count -= size;
2326                 chan->slop_len += size;
2327                 userbuf += size;
2328         }
2329
2330         /* If we didn't copy the buffer completely to userspace,
2331          * stop now.
2332          */
2333         if (chan->slop_len < chan->frag_size)
2334                 goto out;
2335
2336         /*
2337          * If we get to this point, we copied one buffer completely
2338          * to userspace, give the buffer back to the hardware.
2339          */
2340
2341         /* advance channel software pointer to point to
2342          * the next buffer from which we will copy
2343          */
2344         if (chan->sw_ptr == (chan->frag_number - 1))
2345                 chan->sw_ptr = 0;
2346         else
2347                 chan->sw_ptr++;
2348
2349         /* mark one less buffer waiting to be processed */
2350         assert (atomic_read (&chan->n_frags) > 0);
2351         atomic_dec (&chan->n_frags);
2352
2353         /* we are at a block boundary, there is no fragment data */
2354         chan->slop_len = 0;
2355
2356         DPRINTK ("Flushed block %u, sw_ptr now %u, n_frags now %d\n",
2357                 n, chan->sw_ptr, atomic_read (&chan->n_frags));
2358
2359         DPRINTK ("regs==%02X %02X %02X %08X %08X %08X %08X\n",
2360                  inb (card->baseaddr + 0x00),
2361                  inb (card->baseaddr + 0x01),
2362                  inb (card->baseaddr + 0x02),
2363                  inl (card->baseaddr + 0x04),
2364                  inl (card->baseaddr + 0x0C),
2365                  inl (card->baseaddr + 0x80),
2366                  inl (card->baseaddr + 0x84));
2367
2368         if (count > 0)
2369                 goto handle_one_block;
2370
2371 out:
2372         return (userbuf != orig_userbuf) ? (userbuf - orig_userbuf) : ret;
2373 }
2374
2375
2376 static ssize_t via_dsp_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
2377 {
2378         struct via_info *card;
2379         int nonblock = (file->f_flags & O_NONBLOCK);
2380         int rc;
2381
2382         DPRINTK ("ENTER, file=%p, buffer=%p, count=%u, ppos=%lu\n",
2383                  file, buffer, count, ppos ? ((unsigned long)*ppos) : 0);
2384
2385         assert (file != NULL);
2386         card = file->private_data;
2387         assert (card != NULL);
2388
2389         rc = via_syscall_down (card, nonblock);
2390         if (rc) goto out;
2391
2392         if (card->ch_in.is_mapped) {
2393                 rc = -ENXIO;
2394                 goto out_up;
2395         }
2396
2397         via_chan_set_buffering(card, &card->ch_in, -1);
2398         rc = via_chan_buffer_init (card, &card->ch_in);
2399
2400         if (rc)
2401                 goto out_up;
2402
2403         rc = via_dsp_do_read (card, buffer, count, nonblock);
2404
2405 out_up:
2406         mutex_unlock(&card->syscall_mutex);
2407 out:
2408         DPRINTK ("EXIT, returning %ld\n",(long) rc);
2409         return rc;
2410 }
2411
2412
2413 static ssize_t via_dsp_do_write (struct via_info *card,
2414                                  const char __user *userbuf, size_t count,
2415                                  int nonblock)
2416 {
2417         DECLARE_WAITQUEUE(wait, current);
2418         const char __user *orig_userbuf = userbuf;
2419         struct via_channel *chan = &card->ch_out;
2420         volatile struct via_sgd_table *sgtable = chan->sgtable;
2421         size_t size;
2422         int n, tmp;
2423         ssize_t ret = 0;
2424
2425 handle_one_block:
2426         /* just to be a nice neighbor */
2427         /* Thomas Sailer:
2428          * But also to ourselves, release semaphore if we do so */
2429         if (need_resched()) {
2430                 mutex_unlock(&card->syscall_mutex);
2431                 schedule ();
2432                 ret = via_syscall_down (card, nonblock);
2433                 if (ret)
2434                         goto out;
2435         }
2436
2437         /* grab current channel fragment pointer.  In the case of
2438          * playback, this is pointing to the next fragment that
2439          * should receive data from userland.
2440          */
2441         n = chan->sw_ptr;
2442
2443         /* n_frags represents the number of fragments remaining
2444          * to be filled by userspace.  Sleep until
2445          * at least one fragment is available for our use.
2446          */
2447         add_wait_queue(&chan->wait, &wait);
2448         for (;;) {
2449                 __set_current_state(TASK_INTERRUPTIBLE);
2450                 tmp = atomic_read (&chan->n_frags);
2451                 assert (tmp >= 0);
2452                 assert (tmp <= chan->frag_number);
2453                 if (tmp)
2454                         break;
2455                 if (nonblock || !chan->is_active) {
2456                         ret = -EAGAIN;
2457                         break;
2458                 }
2459
2460                 mutex_unlock(&card->syscall_mutex);
2461
2462                 DPRINTK ("Sleeping on page %d, tmp==%d, ir==%d\n", n, tmp, chan->is_record);
2463                 schedule();
2464
2465                 ret = via_syscall_down (card, nonblock);
2466                 if (ret)
2467                         break;
2468
2469                 if (signal_pending (current)) {
2470                         ret = -ERESTARTSYS;
2471                         break;
2472                 }
2473         }
2474         set_current_state(TASK_RUNNING);
2475         remove_wait_queue(&chan->wait, &wait);
2476         if (ret)
2477                 goto out;
2478
2479         /* Now that we have at least one fragment we can write to, fill the buffer
2480          * as much as possible with data from userspace.
2481          */
2482         while ((count > 0) && (chan->slop_len < chan->frag_size)) {
2483                 size_t slop_left = chan->frag_size - chan->slop_len;
2484
2485                 size = (count < slop_left) ? count : slop_left;
2486                 if (copy_from_user (chan->pgtbl[n / (PAGE_SIZE / chan->frag_size)].cpuaddr + (n % (PAGE_SIZE / chan->frag_size)) * chan->frag_size + chan->slop_len,
2487                                     userbuf, size)) {
2488                         ret = -EFAULT;
2489                         goto out;
2490                 }
2491
2492                 count -= size;
2493                 chan->slop_len += size;
2494                 userbuf += size;
2495         }
2496
2497         /* If we didn't fill up the buffer with data, stop now.
2498          * Put a 'stop' marker in the DMA table too, to tell the
2499          * audio hardware to stop if it gets here.
2500          */
2501         if (chan->slop_len < chan->frag_size) {
2502                 sgtable[n].count = cpu_to_le32 (chan->slop_len | VIA_EOL | VIA_STOP);
2503                 goto out;
2504         }
2505
2506         /*
2507          * If we get to this point, we have filled a buffer with
2508          * audio data, flush the buffer to audio hardware.
2509          */
2510
2511         /* Record the true size for the audio hardware to notice */
2512         if (n == (chan->frag_number - 1))
2513                 sgtable[n].count = cpu_to_le32 (chan->frag_size | VIA_EOL);
2514         else
2515                 sgtable[n].count = cpu_to_le32 (chan->frag_size | VIA_FLAG);
2516
2517         /* advance channel software pointer to point to
2518          * the next buffer we will fill with data
2519          */
2520         if (chan->sw_ptr == (chan->frag_number - 1))
2521                 chan->sw_ptr = 0;
2522         else
2523                 chan->sw_ptr++;
2524
2525         /* mark one less buffer as being available for userspace consumption */
2526         assert (atomic_read (&chan->n_frags) > 0);
2527         atomic_dec (&chan->n_frags);
2528
2529         /* we are at a block boundary, there is no fragment data */
2530         chan->slop_len = 0;
2531
2532         /* if SGD has not yet been started, start it */
2533         via_chan_maybe_start (chan);
2534
2535         DPRINTK ("Flushed block %u, sw_ptr now %u, n_frags now %d\n",
2536                 n, chan->sw_ptr, atomic_read (&chan->n_frags));
2537
2538         DPRINTK ("regs==S=%02X C=%02X TP=%02X BP=%08X RT=%08X SG=%08X CC=%08X SS=%08X\n",
2539                  inb (card->baseaddr + 0x00),
2540                  inb (card->baseaddr + 0x01),
2541                  inb (card->baseaddr + 0x02),
2542                  inl (card->baseaddr + 0x04),
2543                  inl (card->baseaddr + 0x08),
2544                  inl (card->baseaddr + 0x0C),
2545                  inl (card->baseaddr + 0x80),
2546                  inl (card->baseaddr + 0x84));
2547
2548         if (count > 0)
2549                 goto handle_one_block;
2550
2551 out:
2552         if (userbuf - orig_userbuf)
2553                 return userbuf - orig_userbuf;
2554         else
2555                 return ret;
2556 }
2557
2558
2559 static ssize_t via_dsp_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
2560 {
2561         struct via_info *card;
2562         ssize_t rc;
2563         int nonblock = (file->f_flags & O_NONBLOCK);
2564
2565         DPRINTK ("ENTER, file=%p, buffer=%p, count=%u, ppos=%lu\n",
2566                  file, buffer, count, ppos ? ((unsigned long)*ppos) : 0);
2567
2568         assert (file != NULL);
2569         card = file->private_data;
2570         assert (card != NULL);
2571
2572         rc = via_syscall_down (card, nonblock);
2573         if (rc) goto out;
2574
2575         if (card->ch_out.is_mapped) {
2576                 rc = -ENXIO;
2577                 goto out_up;
2578         }
2579
2580         via_chan_set_buffering(card, &card->ch_out, -1);
2581         rc = via_chan_buffer_init (card, &card->ch_out);
2582
2583         if (rc)
2584                 goto out_up;
2585
2586         rc = via_dsp_do_write (card, buffer, count, nonblock);
2587
2588 out_up:
2589         mutex_unlock(&card->syscall_mutex);
2590 out:
2591         DPRINTK ("EXIT, returning %ld\n",(long) rc);
2592         return rc;
2593 }
2594
2595
2596 static unsigned int via_dsp_poll(struct file *file, struct poll_table_struct *wait)
2597 {
2598         struct via_info *card;
2599         struct via_channel *chan;
2600         unsigned int mask = 0;
2601
2602         DPRINTK ("ENTER\n");
2603
2604         assert (file != NULL);
2605         card = file->private_data;
2606         assert (card != NULL);
2607
2608         if (file->f_mode & FMODE_READ) {
2609                 chan = &card->ch_in;
2610                 if (sg_active (chan->iobase))
2611                         poll_wait(file, &chan->wait, wait);
2612                 if (atomic_read (&chan->n_frags) > 0)
2613                         mask |= POLLIN | POLLRDNORM;
2614         }
2615
2616         if (file->f_mode & FMODE_WRITE) {
2617                 chan = &card->ch_out;
2618                 if (sg_active (chan->iobase))
2619                         poll_wait(file, &chan->wait, wait);
2620                 if (atomic_read (&chan->n_frags) > 0)
2621                         mask |= POLLOUT | POLLWRNORM;
2622         }
2623
2624         DPRINTK ("EXIT, returning %u\n", mask);
2625         return mask;
2626 }
2627
2628
2629 /**
2630  *      via_dsp_drain_playback - sleep until all playback samples are flushed
2631  *      @card: Private info for specified board
2632  *      @chan: Channel to drain
2633  *      @nonblock: boolean, non-zero if O_NONBLOCK is set
2634  *
2635  *      Sleeps until all playback has been flushed to the audio
2636  *      hardware.
2637  *
2638  *      Locking: inside card->syscall_mutex
2639  */
2640
2641 static int via_dsp_drain_playback (struct via_info *card,
2642                                    struct via_channel *chan, int nonblock)
2643 {
2644         DECLARE_WAITQUEUE(wait, current);
2645         int ret = 0;
2646
2647         DPRINTK ("ENTER, nonblock = %d\n", nonblock);
2648
2649         if (chan->slop_len > 0)
2650                 via_chan_flush_frag (chan);
2651
2652         if (atomic_read (&chan->n_frags) == chan->frag_number)
2653                 goto out;
2654
2655         via_chan_maybe_start (chan);
2656
2657         add_wait_queue(&chan->wait, &wait);
2658         for (;;) {
2659                 DPRINTK ("FRAGS %d FRAGNUM %d\n", atomic_read(&chan->n_frags), chan->frag_number);
2660                 __set_current_state(TASK_INTERRUPTIBLE);
2661                 if (atomic_read (&chan->n_frags) >= chan->frag_number)
2662                         break;
2663
2664                 if (nonblock) {
2665                         DPRINTK ("EXIT, returning -EAGAIN\n");
2666                         ret = -EAGAIN;
2667                         break;
2668                 }
2669
2670 #ifdef VIA_DEBUG
2671                 {
2672                 u8 r40,r41,r42,r43,r44,r48;
2673                 pci_read_config_byte (card->pdev, 0x40, &r40);
2674                 pci_read_config_byte (card->pdev, 0x41, &r41);
2675                 pci_read_config_byte (card->pdev, 0x42, &r42);
2676                 pci_read_config_byte (card->pdev, 0x43, &r43);
2677                 pci_read_config_byte (card->pdev, 0x44, &r44);
2678                 pci_read_config_byte (card->pdev, 0x48, &r48);
2679                 DPRINTK ("PCI config: %02X %02X %02X %02X %02X %02X\n",
2680                         r40,r41,r42,r43,r44,r48);
2681
2682                 DPRINTK ("regs==%02X %02X %02X %08X %08X %08X %08X\n",
2683                          inb (card->baseaddr + 0x00),
2684                          inb (card->baseaddr + 0x01),
2685                          inb (card->baseaddr + 0x02),
2686                          inl (card->baseaddr + 0x04),
2687                          inl (card->baseaddr + 0x0C),
2688                          inl (card->baseaddr + 0x80),
2689                          inl (card->baseaddr + 0x84));
2690                 }
2691
2692                 if (!chan->is_active)
2693                         printk (KERN_ERR "sleeping but not active\n");
2694 #endif
2695
2696                 mutex_unlock(&card->syscall_mutex);
2697
2698                 DPRINTK ("sleeping, nbufs=%d\n", atomic_read (&chan->n_frags));
2699                 schedule();
2700
2701                 if ((ret = via_syscall_down (card, nonblock)))
2702                         break;
2703
2704                 if (signal_pending (current)) {
2705                         DPRINTK ("EXIT, returning -ERESTARTSYS\n");
2706                         ret = -ERESTARTSYS;
2707                         break;
2708                 }
2709         }
2710         set_current_state(TASK_RUNNING);
2711         remove_wait_queue(&chan->wait, &wait);
2712
2713 #ifdef VIA_DEBUG
2714         {
2715                 u8 r40,r41,r42,r43,r44,r48;
2716                 pci_read_config_byte (card->pdev, 0x40, &r40);
2717                 pci_read_config_byte (card->pdev, 0x41, &r41);
2718                 pci_read_config_byte (card->pdev, 0x42, &r42);
2719                 pci_read_config_byte (card->pdev, 0x43, &r43);
2720                 pci_read_config_byte (card->pdev, 0x44, &r44);
2721                 pci_read_config_byte (card->pdev, 0x48, &r48);
2722                 DPRINTK ("PCI config: %02X %02X %02X %02X %02X %02X\n",
2723                         r40,r41,r42,r43,r44,r48);
2724
2725                 DPRINTK ("regs==%02X %02X %02X %08X %08X %08X %08X\n",
2726                          inb (card->baseaddr + 0x00),
2727                          inb (card->baseaddr + 0x01),
2728                          inb (card->baseaddr + 0x02),
2729                          inl (card->baseaddr + 0x04),
2730                          inl (card->baseaddr + 0x0C),
2731                          inl (card->baseaddr + 0x80),
2732                          inl (card->baseaddr + 0x84));
2733
2734                 DPRINTK ("final nbufs=%d\n", atomic_read (&chan->n_frags));
2735         }
2736 #endif
2737
2738 out:
2739         DPRINTK ("EXIT, returning %d\n", ret);
2740         return ret;
2741 }
2742
2743
2744 /**
2745  *      via_dsp_ioctl_space - get information about channel buffering
2746  *      @card: Private info for specified board
2747  *      @chan: pointer to channel-specific info
2748  *      @arg: user buffer for returned information
2749  *
2750  *      Handles SNDCTL_DSP_GETISPACE and SNDCTL_DSP_GETOSPACE.
2751  *
2752  *      Locking: inside card->syscall_mutex
2753  */
2754
2755 static int via_dsp_ioctl_space (struct via_info *card,
2756                                 struct via_channel *chan,
2757                                 void __user *arg)
2758 {
2759         audio_buf_info info;
2760
2761         via_chan_set_buffering(card, chan, -1);
2762
2763         info.fragstotal = chan->frag_number;
2764         info.fragsize = chan->frag_size;
2765
2766         /* number of full fragments we can read/write without blocking */
2767         info.fragments = atomic_read (&chan->n_frags);
2768
2769         if ((chan->slop_len % chan->frag_size > 0) && (info.fragments > 0))
2770                 info.fragments--;
2771
2772         /* number of bytes that can be read or written immediately
2773          * without blocking.
2774          */
2775         info.bytes = (info.fragments * chan->frag_size);
2776         if (chan->slop_len % chan->frag_size > 0)
2777                 info.bytes += chan->frag_size - (chan->slop_len % chan->frag_size);
2778
2779         DPRINTK ("EXIT, returning fragstotal=%d, fragsize=%d, fragments=%d, bytes=%d\n",
2780                 info.fragstotal,
2781                 info.fragsize,
2782                 info.fragments,
2783                 info.bytes);
2784
2785         return copy_to_user (arg, &info, sizeof (info))?-EFAULT:0;
2786 }
2787
2788
2789 /**
2790  *      via_dsp_ioctl_ptr - get information about hardware buffer ptr
2791  *      @card: Private info for specified board
2792  *      @chan: pointer to channel-specific info
2793  *      @arg: user buffer for returned information
2794  *
2795  *      Handles SNDCTL_DSP_GETIPTR and SNDCTL_DSP_GETOPTR.
2796  *
2797  *      Locking: inside card->syscall_mutex
2798  */
2799
2800 static int via_dsp_ioctl_ptr (struct via_info *card,
2801                                 struct via_channel *chan,
2802                                 void __user *arg)
2803 {
2804         count_info info;
2805
2806         spin_lock_irq (&card->lock);
2807
2808         info.bytes = chan->bytes;
2809         info.blocks = chan->n_irqs;
2810         chan->n_irqs = 0;
2811
2812         spin_unlock_irq (&card->lock);
2813
2814         if (chan->is_active) {
2815                 unsigned long extra;
2816                 info.ptr = atomic_read (&chan->hw_ptr) * chan->frag_size;
2817                 extra = chan->frag_size - via_sg_offset(chan);
2818                 info.ptr += extra;
2819                 info.bytes += extra;
2820         } else {
2821                 info.ptr = 0;
2822         }
2823
2824         DPRINTK ("EXIT, returning bytes=%d, blocks=%d, ptr=%d\n",
2825                 info.bytes,
2826                 info.blocks,
2827                 info.ptr);
2828
2829         return copy_to_user (arg, &info, sizeof (info))?-EFAULT:0;
2830 }
2831
2832
2833 static int via_dsp_ioctl_trigger (struct via_channel *chan, int val)
2834 {
2835         int enable, do_something;
2836
2837         if (chan->is_record)
2838                 enable = (val & PCM_ENABLE_INPUT);
2839         else
2840                 enable = (val & PCM_ENABLE_OUTPUT);
2841
2842         if (!chan->is_enabled && enable) {
2843                 do_something = 1;
2844         } else if (chan->is_enabled && !enable) {
2845                 do_something = -1;
2846         } else {
2847                 do_something = 0;
2848         }
2849
2850         DPRINTK ("enable=%d, do_something=%d\n",
2851                  enable, do_something);
2852
2853         if (chan->is_active && do_something)
2854                 return -EINVAL;
2855
2856         if (do_something == 1) {
2857                 chan->is_enabled = 1;
2858                 via_chan_maybe_start (chan);
2859                 DPRINTK ("Triggering input\n");
2860         }
2861
2862         else if (do_something == -1) {
2863                 chan->is_enabled = 0;
2864                 DPRINTK ("Setup input trigger\n");
2865         }
2866
2867         return 0;
2868 }
2869
2870
2871 static int via_dsp_ioctl (struct inode *inode, struct file *file,
2872                           unsigned int cmd, unsigned long arg)
2873 {
2874         int rc, rd=0, wr=0, val=0;
2875         struct via_info *card;
2876         struct via_channel *chan;
2877         int nonblock = (file->f_flags & O_NONBLOCK);
2878         int __user *ip = (int __user *)arg;
2879         void __user *p = (void __user *)arg;
2880
2881         assert (file != NULL);
2882         card = file->private_data;
2883         assert (card != NULL);
2884
2885         if (file->f_mode & FMODE_WRITE)
2886                 wr = 1;
2887         if (file->f_mode & FMODE_READ)
2888                 rd = 1;
2889
2890         rc = via_syscall_down (card, nonblock);
2891         if (rc)
2892                 return rc;
2893         rc = -EINVAL;
2894
2895         switch (cmd) {
2896
2897         /* OSS API version.  XXX unverified */
2898         case OSS_GETVERSION:
2899                 DPRINTK ("ioctl OSS_GETVERSION, EXIT, returning SOUND_VERSION\n");
2900                 rc = put_user (SOUND_VERSION, ip);
2901                 break;
2902
2903         /* list of supported PCM data formats */
2904         case SNDCTL_DSP_GETFMTS:
2905                 DPRINTK ("DSP_GETFMTS, EXIT, returning AFMT U8|S16_LE\n");
2906                 rc = put_user (AFMT_U8 | AFMT_S16_LE, ip);
2907                 break;
2908
2909         /* query or set current channel's PCM data format */
2910         case SNDCTL_DSP_SETFMT:
2911                 if (get_user(val, ip)) {
2912                         rc = -EFAULT;
2913                         break;
2914                 }
2915                 DPRINTK ("DSP_SETFMT, val==%d\n", val);
2916                 if (val != AFMT_QUERY) {
2917                         rc = 0;
2918
2919                         if (rd)
2920                                 rc = via_chan_set_fmt (card, &card->ch_in, val);
2921
2922                         if (rc >= 0 && wr)
2923                                 rc = via_chan_set_fmt (card, &card->ch_out, val);
2924
2925                         if (rc < 0)
2926                                 break;
2927
2928                         val = rc;
2929                 } else {
2930                         if ((rd && (card->ch_in.pcm_fmt & VIA_PCM_FMT_16BIT)) ||
2931                             (wr && (card->ch_out.pcm_fmt & VIA_PCM_FMT_16BIT)))
2932                                 val = AFMT_S16_LE;
2933                         else
2934                                 val = AFMT_U8;
2935                 }
2936                 DPRINTK ("SETFMT EXIT, returning %d\n", val);
2937                 rc = put_user (val, ip);
2938                 break;
2939
2940         /* query or set number of channels (1=mono, 2=stereo, 4/6 for multichannel) */
2941         case SNDCTL_DSP_CHANNELS:
2942                 if (get_user(val, ip)) {
2943                         rc = -EFAULT;
2944                         break;
2945                 }
2946                 DPRINTK ("DSP_CHANNELS, val==%d\n", val);
2947                 if (val != 0) {
2948                         rc = 0;
2949
2950                         if (rd)
2951                                 rc = via_chan_set_stereo (card, &card->ch_in, val);
2952
2953                         if (rc >= 0 && wr)
2954                                 rc = via_chan_set_stereo (card, &card->ch_out, val);
2955
2956                         if (rc < 0)
2957                                 break;
2958
2959                         val = rc;
2960                 } else {
2961                         if (rd)
2962                                 val = card->ch_in.channels;
2963                         else
2964                                 val = card->ch_out.channels;
2965                 }
2966                 DPRINTK ("CHANNELS EXIT, returning %d\n", val);
2967                 rc = put_user (val, ip);
2968                 break;
2969
2970         /* enable (val is not zero) or disable (val == 0) stereo */
2971         case SNDCTL_DSP_STEREO:
2972                 if (get_user(val, ip)) {
2973                         rc = -EFAULT;
2974                         break;
2975                 }
2976                 DPRINTK ("DSP_STEREO, val==%d\n", val);
2977                 rc = 0;
2978
2979                 if (rd)
2980                         rc = via_chan_set_stereo (card, &card->ch_in, val ? 2 : 1);
2981                 if (rc >= 0 && wr)
2982                         rc = via_chan_set_stereo (card, &card->ch_out, val ? 2 : 1);
2983
2984                 if (rc < 0)
2985                         break;
2986
2987                 val = rc - 1;
2988
2989                 DPRINTK ("STEREO EXIT, returning %d\n", val);
2990                 rc = put_user(val, ip);
2991                 break;
2992
2993         /* query or set sampling rate */
2994         case SNDCTL_DSP_SPEED:
2995                 if (get_user(val, ip)) {
2996                         rc = -EFAULT;
2997                         break;
2998                 }
2999                 DPRINTK ("DSP_SPEED, val==%d\n", val);
3000                 if (val < 0) {
3001                         rc = -EINVAL;
3002                         break;
3003                 }
3004                 if (val > 0) {
3005                         rc = 0;
3006
3007                         if (rd)
3008                                 rc = via_chan_set_speed (card, &card->ch_in, val);
3009                         if (rc >= 0 && wr)
3010                                 rc = via_chan_set_speed (card, &card->ch_out, val);
3011
3012                         if (rc < 0)
3013                                 break;
3014
3015                         val = rc;
3016                 } else {
3017                         if (rd)
3018                                 val = card->ch_in.rate;
3019                         else if (wr)
3020                                 val = card->ch_out.rate;
3021                         else
3022                                 val = 0;
3023                 }
3024                 DPRINTK ("SPEED EXIT, returning %d\n", val);
3025                 rc = put_user (val, ip);
3026                 break;
3027
3028         /* wait until all buffers have been played, and then stop device */
3029         case SNDCTL_DSP_SYNC:
3030                 DPRINTK ("DSP_SYNC\n");
3031                 rc = 0;
3032                 if (wr) {
3033                         DPRINTK ("SYNC EXIT (after calling via_dsp_drain_playback)\n");
3034                         rc = via_dsp_drain_playback (card, &card->ch_out, nonblock);
3035                 }
3036                 break;
3037
3038         /* stop recording/playback immediately */
3039         case SNDCTL_DSP_RESET:
3040                 DPRINTK ("DSP_RESET\n");
3041                 if (rd) {
3042                         via_chan_clear (card, &card->ch_in);
3043                         card->ch_in.frag_number = 0;
3044                         card->ch_in.frag_size = 0;
3045                         atomic_set(&card->ch_in.n_frags, 0);
3046                 }
3047
3048                 if (wr) {
3049                         via_chan_clear (card, &card->ch_out);
3050                         card->ch_out.frag_number = 0;
3051                         card->ch_out.frag_size = 0;
3052                         atomic_set(&card->ch_out.n_frags, 0);
3053                 }
3054
3055                 rc = 0;
3056                 break;
3057
3058         case SNDCTL_DSP_NONBLOCK:
3059                 file->f_flags |= O_NONBLOCK;
3060                 rc = 0;
3061                 break;
3062
3063         /* obtain bitmask of device capabilities, such as mmap, full duplex, etc. */
3064         case SNDCTL_DSP_GETCAPS:
3065                 DPRINTK ("DSP_GETCAPS\n");
3066                 rc = put_user(VIA_DSP_CAP, ip);
3067                 break;
3068
3069         /* obtain buffer fragment size */
3070         case SNDCTL_DSP_GETBLKSIZE:
3071                 DPRINTK ("DSP_GETBLKSIZE\n");
3072
3073                 if (rd) {
3074                         via_chan_set_buffering(card, &card->ch_in, -1);
3075                         rc = put_user(card->ch_in.frag_size, ip);
3076                 } else if (wr) {
3077                         via_chan_set_buffering(card, &card->ch_out, -1);
3078                         rc = put_user(card->ch_out.frag_size, ip);
3079                 }
3080                 break;
3081
3082         /* obtain information about input buffering */
3083         case SNDCTL_DSP_GETISPACE:
3084                 DPRINTK ("DSP_GETISPACE\n");
3085                 if (rd)
3086                         rc = via_dsp_ioctl_space (card, &card->ch_in, p);
3087                 break;
3088
3089         /* obtain information about output buffering */
3090         case SNDCTL_DSP_GETOSPACE:
3091                 DPRINTK ("DSP_GETOSPACE\n");
3092                 if (wr)
3093                         rc = via_dsp_ioctl_space (card, &card->ch_out, p);
3094                 break;
3095
3096         /* obtain information about input hardware pointer */
3097         case SNDCTL_DSP_GETIPTR:
3098                 DPRINTK ("DSP_GETIPTR\n");
3099                 if (rd)
3100                         rc = via_dsp_ioctl_ptr (card, &card->ch_in, p);
3101                 break;
3102
3103         /* obtain information about output hardware pointer */
3104         case SNDCTL_DSP_GETOPTR:
3105                 DPRINTK ("DSP_GETOPTR\n");
3106                 if (wr)
3107                         rc = via_dsp_ioctl_ptr (card, &card->ch_out, p);
3108                 break;
3109
3110         /* return number of bytes remaining to be played by DMA engine */
3111         case SNDCTL_DSP_GETODELAY:
3112                 {
3113                 DPRINTK ("DSP_GETODELAY\n");
3114
3115                 chan = &card->ch_out;
3116
3117                 if (!wr)
3118                         break;
3119
3120                 if (chan->is_active) {
3121
3122                         val = chan->frag_number - atomic_read (&chan->n_frags);
3123
3124                         assert(val >= 0);
3125                                 
3126                         if (val > 0) {
3127                                 val *= chan->frag_size;
3128                                 val -= chan->frag_size - via_sg_offset(chan);
3129                         }
3130                         val += chan->slop_len % chan->frag_size;
3131                 } else
3132                         val = 0;
3133
3134                 assert (val <= (chan->frag_size * chan->frag_number));
3135
3136                 DPRINTK ("GETODELAY EXIT, val = %d bytes\n", val);
3137                 rc = put_user (val, ip);
3138                 break;
3139                 }
3140
3141         /* handle the quick-start of a channel,
3142          * or the notification that a quick-start will
3143          * occur in the future
3144          */
3145         case SNDCTL_DSP_SETTRIGGER:
3146                 if (get_user(val, ip)) {
3147                         rc = -EFAULT;
3148                         break;
3149                 }
3150                 DPRINTK ("DSP_SETTRIGGER, rd=%d, wr=%d, act=%d/%d, en=%d/%d\n",
3151                         rd, wr, card->ch_in.is_active, card->ch_out.is_active,
3152                         card->ch_in.is_enabled, card->ch_out.is_enabled);
3153
3154                 rc = 0;
3155
3156                 if (rd)
3157                         rc = via_dsp_ioctl_trigger (&card->ch_in, val);
3158
3159                 if (!rc && wr)
3160                         rc = via_dsp_ioctl_trigger (&card->ch_out, val);
3161
3162                 break;
3163
3164         case SNDCTL_DSP_GETTRIGGER:
3165                 val = 0;
3166                 if ((file->f_mode & FMODE_READ) && card->ch_in.is_enabled)
3167                         val |= PCM_ENABLE_INPUT;
3168                 if ((file->f_mode & FMODE_WRITE) && card->ch_out.is_enabled)
3169                         val |= PCM_ENABLE_OUTPUT;
3170                 rc = put_user(val, ip);
3171                 break;
3172
3173         /* Enable full duplex.  Since we do this as soon as we are opened
3174          * with O_RDWR, this is mainly a no-op that always returns success.
3175          */
3176         case SNDCTL_DSP_SETDUPLEX:
3177                 DPRINTK ("DSP_SETDUPLEX\n");
3178                 if (!rd || !wr)
3179                         break;
3180                 rc = 0;
3181                 break;
3182
3183         /* set fragment size.  implemented as a successful no-op for now */
3184         case SNDCTL_DSP_SETFRAGMENT:
3185                 if (get_user(val, ip)) {
3186                         rc = -EFAULT;
3187                         break;
3188                 }
3189                 DPRINTK ("DSP_SETFRAGMENT, val==%d\n", val);
3190
3191                 if (rd)
3192                         rc = via_chan_set_buffering(card, &card->ch_in, val);
3193
3194                 if (wr)
3195                         rc = via_chan_set_buffering(card, &card->ch_out, val);
3196
3197                 DPRINTK ("SNDCTL_DSP_SETFRAGMENT (fragshift==0x%04X (%d), maxfrags==0x%04X (%d))\n",
3198                          val & 0xFFFF,
3199                          val & 0xFFFF,
3200                          (val >> 16) & 0xFFFF,
3201                          (val >> 16) & 0xFFFF);
3202
3203                 rc = 0;
3204                 break;
3205
3206         /* inform device of an upcoming pause in input (or output). */
3207         case SNDCTL_DSP_POST:
3208                 DPRINTK ("DSP_POST\n");
3209                 if (wr) {
3210                         if (card->ch_out.slop_len > 0)
3211                                 via_chan_flush_frag (&card->ch_out);
3212                         via_chan_maybe_start (&card->ch_out);
3213                 }
3214
3215                 rc = 0;
3216                 break;
3217
3218         /* not implemented */
3219         default:
3220                 DPRINTK ("unhandled ioctl, cmd==%u, arg==%p\n",
3221                          cmd, p);
3222                 break;
3223         }
3224
3225         mutex_unlock(&card->syscall_mutex);
3226         DPRINTK ("EXIT, returning %d\n", rc);
3227         return rc;
3228 }
3229
3230
3231 static int via_dsp_open (struct inode *inode, struct file *file)
3232 {
3233         int minor = iminor(inode);
3234         struct via_info *card;
3235         struct pci_dev *pdev = NULL;
3236         struct via_channel *chan;
3237         struct pci_driver *drvr;
3238         int nonblock = (file->f_flags & O_NONBLOCK);
3239
3240         DPRINTK ("ENTER, minor=%d, file->f_mode=0x%x\n", minor, file->f_mode);
3241
3242         if (!(file->f_mode & (FMODE_READ | FMODE_WRITE))) {
3243                 DPRINTK ("EXIT, returning -EINVAL\n");
3244                 return -EINVAL;
3245         }
3246
3247         card = NULL;
3248         while ((pdev = pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pdev)) != NULL) {
3249                 drvr = pci_dev_driver (pdev);
3250                 if (drvr == &via_driver) {
3251                         assert (pci_get_drvdata (pdev) != NULL);
3252
3253                         card = pci_get_drvdata (pdev);
3254                         DPRINTK ("dev_dsp = %d, minor = %d, assn = %d\n",
3255                                  card->dev_dsp, minor,
3256                                  (card->dev_dsp ^ minor) & ~0xf);
3257
3258                         if (((card->dev_dsp ^ minor) & ~0xf) == 0)
3259                                 goto match;
3260                 }
3261         }
3262
3263         DPRINTK ("no matching %s found\n", card ? "minor" : "driver");
3264         return -ENODEV;
3265
3266 match:
3267         if (nonblock) {
3268                 if (!mutex_trylock(&card->open_mutex)) {
3269                         DPRINTK ("EXIT, returning -EAGAIN\n");
3270                         return -EAGAIN;
3271                 }
3272         } else {
3273                 if (mutex_lock_interruptible(&card->open_mutex)) {
3274                         DPRINTK ("EXIT, returning -ERESTARTSYS\n");
3275                         return -ERESTARTSYS;
3276                 }
3277         }
3278
3279         file->private_data = card;
3280         DPRINTK ("file->f_mode == 0x%x\n", file->f_mode);
3281
3282         /* handle input from analog source */
3283         if (file->f_mode & FMODE_READ) {
3284                 chan = &card->ch_in;
3285
3286                 via_chan_init (card, chan);
3287
3288                 /* why is this forced to 16-bit stereo in all drivers? */
3289                 chan->pcm_fmt = VIA_PCM_FMT_16BIT | VIA_PCM_FMT_STEREO;
3290                 chan->channels = 2;
3291
3292                 // TO DO - use FIFO: via_capture_fifo(card, 1);
3293                 via_chan_pcm_fmt (chan, 0);
3294                 via_set_rate (card->ac97, chan, 44100);
3295         }
3296
3297         /* handle output to analog source */
3298         if (file->f_mode & FMODE_WRITE) {
3299                 chan = &card->ch_out;
3300
3301                 via_chan_init (card, chan);
3302
3303                 if (file->f_mode & FMODE_READ) {
3304                         /* if in duplex mode make the recording and playback channels
3305                            have the same settings */
3306                         chan->pcm_fmt = VIA_PCM_FMT_16BIT | VIA_PCM_FMT_STEREO;
3307                         chan->channels = 2;
3308                         via_chan_pcm_fmt (chan, 0);
3309                         via_set_rate (card->ac97, chan, 44100);
3310                 } else {
3311                          if ((minor & 0xf) == SND_DEV_DSP16) {
3312                                 chan->pcm_fmt = VIA_PCM_FMT_16BIT;
3313                                 via_chan_pcm_fmt (chan, 0);
3314                                 via_set_rate (card->ac97, chan, 44100);
3315                         } else {
3316                                 via_chan_pcm_fmt (chan, 1);
3317                                 via_set_rate (card->ac97, chan, 8000);
3318                         }
3319                 }
3320         }
3321
3322         DPRINTK ("EXIT, returning 0\n");
3323         return nonseekable_open(inode, file);
3324 }
3325
3326
3327 static int via_dsp_release(struct inode *inode, struct file *file)
3328 {
3329         struct via_info *card;
3330         int nonblock = (file->f_flags & O_NONBLOCK);
3331         int rc;
3332
3333         DPRINTK ("ENTER\n");
3334
3335         assert (file != NULL);
3336         card = file->private_data;
3337         assert (card != NULL);
3338
3339         rc = via_syscall_down (card, nonblock);
3340         if (rc) {
3341                 DPRINTK ("EXIT (syscall_down error), rc=%d\n", rc);
3342                 return rc;
3343         }
3344
3345         if (file->f_mode & FMODE_WRITE) {
3346                 rc = via_dsp_drain_playback (card, &card->ch_out, nonblock);
3347                 if (rc && rc != -ERESTARTSYS)   /* Nobody needs to know about ^C */
3348                         printk (KERN_DEBUG "via_audio: ignoring drain playback error %d\n", rc);
3349
3350                 via_chan_free (card, &card->ch_out);
3351                 via_chan_buffer_free(card, &card->ch_out);
3352         }
3353
3354         if (file->f_mode & FMODE_READ) {
3355                 via_chan_free (card, &card->ch_in);
3356                 via_chan_buffer_free (card, &card->ch_in);
3357         }
3358
3359         mutex_unlock(&card->syscall_mutex);
3360         mutex_unlock(&card->open_mutex);
3361
3362         DPRINTK ("EXIT, returning 0\n");
3363         return 0;
3364 }
3365
3366
3367 /****************************************************************
3368  *
3369  * Chip setup and kernel registration
3370  *
3371  *
3372  */
3373
3374 static int __devinit via_init_one (struct pci_dev *pdev, const struct pci_device_id *id)
3375 {
3376 #ifdef CONFIG_MIDI_VIA82CXXX
3377         u8 r42;
3378 #endif
3379         int rc;
3380         struct via_info *card;
3381         static int printed_version;
3382
3383         DPRINTK ("ENTER\n");
3384
3385         if (printed_version++ == 0)
3386                 printk (KERN_INFO "Via 686a/8233/8235 audio driver " VIA_VERSION "\n");
3387
3388         rc = pci_enable_device (pdev);
3389         if (rc)
3390                 goto err_out;
3391
3392         rc = pci_request_regions (pdev, "via82cxxx_audio");
3393         if (rc)
3394                 goto err_out_disable;
3395
3396         rc = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
3397         if (rc)
3398                 goto err_out_res;
3399         rc = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
3400         if (rc)
3401                 goto err_out_res;
3402
3403         card = kmalloc (sizeof (*card), GFP_KERNEL);
3404         if (!card) {
3405                 printk (KERN_ERR PFX "out of memory, aborting\n");
3406                 rc = -ENOMEM;
3407                 goto err_out_res;
3408         }
3409
3410         pci_set_drvdata (pdev, card);
3411
3412         memset (card, 0, sizeof (*card));
3413         card->pdev = pdev;
3414         card->baseaddr = pci_resource_start (pdev, 0);
3415         card->card_num = via_num_cards++;
3416         spin_lock_init (&card->lock);
3417         spin_lock_init (&card->ac97_lock);
3418         mutex_init(&card->syscall_mutex);
3419         mutex_init(&card->open_mutex);
3420
3421         /* we must init these now, in case the intr handler needs them */
3422         via_chan_init_defaults (card, &card->ch_out);
3423         via_chan_init_defaults (card, &card->ch_in);
3424         via_chan_init_defaults (card, &card->ch_fm);
3425
3426         /* if BAR 2 is present, chip is Rev H or later,
3427          * which means it has a few extra features */
3428         if (pci_resource_start (pdev, 2) > 0)
3429                 card->rev_h = 1;
3430                 
3431         /* Overkill for now, but more flexible done right */
3432         
3433         card->intmask = id->driver_data;
3434         card->legacy = !card->intmask;
3435         card->sixchannel = id->driver_data;
3436         
3437         if(card->sixchannel)
3438                 printk(KERN_INFO PFX "Six channel audio available\n");
3439         if (pdev->irq < 1) {
3440                 printk (KERN_ERR PFX "invalid PCI IRQ %d, aborting\n", pdev->irq);
3441                 rc = -ENODEV;
3442                 goto err_out_kfree;
3443         }
3444
3445         if (!(pci_resource_flags (pdev, 0) & IORESOURCE_IO)) {
3446                 printk (KERN_ERR PFX "unable to locate I/O resources, aborting\n");
3447                 rc = -ENODEV;
3448                 goto err_out_kfree;
3449         }
3450
3451         pci_set_master(pdev);
3452         
3453         /*
3454          * init AC97 mixer and codec
3455          */
3456         rc = via_ac97_init (card);
3457         if (rc) {
3458                 printk (KERN_ERR PFX "AC97 init failed, aborting\n");
3459                 goto err_out_kfree;
3460         }
3461
3462         /*
3463          * init DSP device
3464          */
3465         rc = via_dsp_init (card);
3466         if (rc) {
3467                 printk (KERN_ERR PFX "DSP device init failed, aborting\n");
3468                 goto err_out_have_mixer;
3469         }
3470
3471         /*
3472          * init and turn on interrupts, as the last thing we do
3473          */
3474         rc = via_interrupt_init (card);
3475         if (rc) {
3476                 printk (KERN_ERR PFX "interrupt init failed, aborting\n");
3477                 goto err_out_have_dsp;
3478         }
3479
3480         printk (KERN_INFO PFX "board #%d at 0x%04lX, IRQ %d\n",
3481                 card->card_num + 1, card->baseaddr, pdev->irq);
3482
3483 #ifdef CONFIG_MIDI_VIA82CXXX
3484         /* Disable by default */
3485         card->midi_info.io_base = 0;
3486
3487         if(card->legacy)
3488         {
3489                 pci_read_config_byte (pdev, 0x42, &r42);
3490                 /* Disable MIDI interrupt */
3491                 pci_write_config_byte (pdev, 0x42, r42 | VIA_CR42_MIDI_IRQMASK);
3492                 if (r42 & VIA_CR42_MIDI_ENABLE)
3493                 {
3494                         if (r42 & VIA_CR42_MIDI_PNP) /* Address selected by iobase 2 - not tested */
3495                                 card->midi_info.io_base = pci_resource_start (pdev, 2);
3496                         else /* Address selected by byte 0x43 */
3497                         {
3498                                 u8 r43;
3499                                 pci_read_config_byte (pdev, 0x43, &r43);
3500                                 card->midi_info.io_base = 0x300 + ((r43 & 0x0c) << 2);
3501                         }
3502
3503                         card->midi_info.irq = -pdev->irq;
3504                         if (probe_uart401(& card->midi_info, THIS_MODULE))
3505                         {
3506                                 card->midi_devc=midi_devs[card->midi_info.slots[4]]->devc;
3507                                 pci_write_config_byte(pdev, 0x42, r42 & ~VIA_CR42_MIDI_IRQMASK);
3508                                 printk("Enabled Via MIDI\n");
3509                         }
3510                 }
3511         }
3512 #endif
3513
3514         DPRINTK ("EXIT, returning 0\n");
3515         return 0;
3516
3517 err_out_have_dsp:
3518         via_dsp_cleanup (card);
3519
3520 err_out_have_mixer:
3521         via_ac97_cleanup (card);
3522
3523 err_out_kfree:
3524 #ifndef VIA_NDEBUG
3525         memset (card, 0xAB, sizeof (*card)); /* poison memory */
3526 #endif
3527         kfree (card);
3528
3529 err_out_res:
3530         pci_release_regions (pdev);
3531
3532 err_out_disable:
3533         pci_disable_device (pdev);
3534
3535 err_out:
3536         pci_set_drvdata (pdev, NULL);
3537         DPRINTK ("EXIT - returning %d\n", rc);
3538         return rc;
3539 }
3540
3541
3542 static void __devexit via_remove_one (struct pci_dev *pdev)
3543 {
3544         struct via_info *card;
3545
3546         DPRINTK ("ENTER\n");
3547
3548         assert (pdev != NULL);
3549         card = pci_get_drvdata (pdev);
3550         assert (card != NULL);
3551
3552 #ifdef CONFIG_MIDI_VIA82CXXX
3553         if (card->midi_info.io_base)
3554                 unload_uart401(&card->midi_info);
3555 #endif
3556
3557         free_irq (card->pdev->irq, card);
3558         via_dsp_cleanup (card);
3559         via_ac97_cleanup (card);
3560
3561 #ifndef VIA_NDEBUG
3562         memset (card, 0xAB, sizeof (*card)); /* poison memory */
3563 #endif
3564         kfree (card);
3565
3566         pci_set_drvdata (pdev, NULL);
3567
3568         pci_release_regions (pdev);
3569         pci_disable_device (pdev);
3570         pci_set_power_state (pdev, 3); /* ...zzzzzz */
3571
3572         DPRINTK ("EXIT\n");
3573         return;
3574 }
3575
3576
3577 /****************************************************************
3578  *
3579  * Driver initialization and cleanup
3580  *
3581  *
3582  */
3583
3584 static int __init init_via82cxxx_audio(void)
3585 {
3586         int rc;
3587
3588         DPRINTK ("ENTER\n");
3589
3590         rc = pci_register_driver (&via_driver);
3591         if (rc) {
3592                 DPRINTK ("EXIT, returning %d\n", rc);
3593                 return rc;
3594         }
3595
3596         DPRINTK ("EXIT, returning 0\n");
3597         return 0;
3598 }
3599
3600
3601 static void __exit cleanup_via82cxxx_audio(void)
3602 {
3603         DPRINTK ("ENTER\n");
3604
3605         pci_unregister_driver (&via_driver);
3606
3607         DPRINTK ("EXIT\n");
3608 }
3609
3610
3611 module_init(init_via82cxxx_audio);
3612 module_exit(cleanup_via82cxxx_audio);
3613
3614 MODULE_AUTHOR("Jeff Garzik");
3615 MODULE_DESCRIPTION("DSP audio and mixer driver for Via 82Cxxx audio devices");
3616 MODULE_LICENSE("GPL");
3617