2 * ALI ali5455 and friends ICH driver for Linux
3 * LEI HU <Lei_Hu@ali.com.tw>
6 * drivers/sound/i810_audio
8 * The ALi 5455 is similar but not quite identical to the Intel ICH
9 * series of controllers. Its easier to keep the driver separated from
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
27 * ALi 5455 theory of operation
29 * The chipset provides three DMA channels that talk to an AC97
30 * CODEC (AC97 is a digital/analog mixer standard). At its simplest
31 * you get 48Khz audio with basic volume and mixer controls. At the
32 * best you get rate adaption in the codec. We set the card up so
33 * that we never take completion interrupts but instead keep the card
34 * chasing its tail around a ring buffer. This is needed for mmap
35 * mode audio and happens to work rather well for non-mmap modes too.
37 * The board has one output channel for PCM audio (supported) and
38 * a stereo line in and mono microphone input. Again these are normally
39 * locked to 48Khz only. Right now recording is not finished.
41 * There is no midi support, no synth support. Use timidity. To get
42 * esd working you need to use esd -r 48000 as it won't probe 48KHz
43 * by default. mpg123 can't handle 48Khz only audio so use xmms.
45 * If you need to force a specific rate set the clocking= option
49 #include <linux/module.h>
50 #include <linux/string.h>
51 #include <linux/ctype.h>
52 #include <linux/ioport.h>
53 #include <linux/sched.h>
54 #include <linux/delay.h>
55 #include <linux/sound.h>
56 #include <linux/slab.h>
57 #include <linux/soundcard.h>
58 #include <linux/pci.h>
61 #include <linux/init.h>
62 #include <linux/poll.h>
63 #include <linux/spinlock.h>
64 #include <linux/smp_lock.h>
65 #include <linux/ac97_codec.h>
66 #include <linux/interrupt.h>
67 #include <linux/mutex.h>
69 #include <asm/uaccess.h>
71 #ifndef PCI_DEVICE_ID_ALI_5455
72 #define PCI_DEVICE_ID_ALI_5455 0x5455
75 #ifndef PCI_VENDOR_ID_ALI
76 #define PCI_VENDOR_ID_ALI 0x10b9
79 static int strict_clocking
= 0;
80 static unsigned int clocking
= 0;
81 static unsigned int codec_pcmout_share_spdif_locked
= 0;
82 static unsigned int codec_independent_spdif_locked
= 0;
83 static unsigned int controller_pcmout_share_spdif_locked
= 0;
84 static unsigned int controller_independent_spdif_locked
= 0;
85 static unsigned int globel
= 0;
89 #define CODEC_SPDIFOUT_RUNNING 8
90 #define CONTROLLER_SPDIFOUT_RUNNING 4
92 #define SPDIF_ENABLE_OUTPUT 4 /* bits 0,1 are PCM */
94 #define ALI5455_FMT_16BIT 1
95 #define ALI5455_FMT_STEREO 2
96 #define ALI5455_FMT_MASK 3
98 #define SPDIF_ON 0x0004
99 #define SURR_ON 0x0010
100 #define CENTER_LFE_ON 0x0020
101 #define VOL_MUTED 0x8000
104 #define ALI_SPDIF_OUT_CH_STATUS 0xbf
105 /* the 810's array of pointers to data buffers */
108 #define BUSADDR_MASK 0xFFFFFFFE
110 #define CON_IOC 0x80000000 /* interrupt on completion */
111 #define CON_BUFPAD 0x40000000 /* pad underrun with last sample, else 0 */
112 #define CON_BUFLEN_MASK 0x0000ffff /* buffer length in samples */
116 /* an instance of the ali channel */
119 /* these sg guys should probably be allocated
120 separately as nocache. Must be 8 byte aligned */
121 struct sg_item sg
[SG_LEN
]; /* 32*8 */
129 * we have 3 separate dma engines. pcm in, pcm out, and mic.
130 * each dma engine has controlling registers. These goofy
131 * names are from the datasheet, but make it easy to write
132 * code while leafing through it.
135 #define ENUM_ENGINE(PRE,DIG) \
137 PRE##_BDBAR = 0x##DIG##0, /* Buffer Descriptor list Base Address */ \
138 PRE##_CIV = 0x##DIG##4, /* Current Index Value */ \
139 PRE##_LVI = 0x##DIG##5, /* Last Valid Index */ \
140 PRE##_SR = 0x##DIG##6, /* Status Register */ \
141 PRE##_PICB = 0x##DIG##8, /* Position In Current Buffer */ \
142 PRE##_CR = 0x##DIG##b /* Control Register */ \
145 ENUM_ENGINE(OFF
, 0); /* Offsets */
146 ENUM_ENGINE(PI
, 4); /* PCM In */
147 ENUM_ENGINE(PO
, 5); /* PCM Out */
148 ENUM_ENGINE(MC
, 6); /* Mic In */
149 ENUM_ENGINE(CODECSPDIFOUT
, 7); /* CODEC SPDIF OUT */
150 ENUM_ENGINE(CONTROLLERSPDIFIN
, A
); /* CONTROLLER SPDIF In */
151 ENUM_ENGINE(CONTROLLERSPDIFOUT
, B
); /* CONTROLLER SPDIF OUT */
155 ALI_SCR
= 0x00, /* System Control Register */
156 ALI_SSR
= 0x04, /* System Status Register */
157 ALI_DMACR
= 0x08, /* DMA Control Register */
158 ALI_FIFOCR1
= 0x0c, /* FIFO Control Register 1 */
159 ALI_INTERFACECR
= 0x10, /* Interface Control Register */
160 ALI_INTERRUPTCR
= 0x14, /* Interrupt control Register */
161 ALI_INTERRUPTSR
= 0x18, /* Interrupt Status Register */
162 ALI_FIFOCR2
= 0x1c, /* FIFO Control Register 2 */
163 ALI_CPR
= 0x20, /* Command Port Register */
164 ALI_SPR
= 0x24, /* Status Port Register */
165 ALI_FIFOCR3
= 0x2c, /* FIFO Control Register 3 */
166 ALI_TTSR
= 0x30, /* Transmit Tag Slot Register */
167 ALI_RTSR
= 0x34, /* Receive Tag Slot Register */
168 ALI_CSPSR
= 0x38, /* Command/Status Port Status Register */
169 ALI_CAS
= 0x3c, /* Codec Write Semaphore Register */
170 ALI_SPDIFCSR
= 0xf8, /* spdif channel status register */
171 ALI_SPDIFICS
= 0xfc /* spdif interface control/status */
174 // x-status register(x:pcm in ,pcm out, mic in,)
175 /* interrupts for a dma engine */
176 #define DMA_INT_FIFO (1<<4) /* fifo under/over flow */
177 #define DMA_INT_COMPLETE (1<<3) /* buffer read/write complete and ioc set */
178 #define DMA_INT_LVI (1<<2) /* last valid done */
179 #define DMA_INT_CELV (1<<1) /* last valid is current */
180 #define DMA_INT_DCH (1) /* DMA Controller Halted (happens on LVI interrupts) */ //not eqult intel
181 #define DMA_INT_MASK (DMA_INT_FIFO|DMA_INT_COMPLETE|DMA_INT_LVI)
183 /* interrupts for the whole chip */// by interrupt status
register finish
185 #define INT_SPDIFOUT (1<<23) /* controller spdif out INTERRUPT */
186 #define INT_SPDIFIN (1<<22)
187 #define INT_CODECSPDIFOUT (1<<19)
188 #define INT_MICIN (1<<18)
189 #define INT_PCMOUT (1<<17)
190 #define INT_PCMIN (1<<16)
191 #define INT_CPRAIS (1<<7)
192 #define INT_SPRAIS (1<<5)
193 #define INT_GPIO (1<<1)
194 #define INT_MASK (INT_SPDIFOUT|INT_CODECSPDIFOUT|INT_MICIN|INT_PCMOUT|INT_PCMIN)
196 #define DRIVER_VERSION "0.02ac"
198 /* magic numbers to protect our data structures */
199 #define ALI5455_CARD_MAGIC 0x5072696E /* "Prin" */
200 #define ALI5455_STATE_MAGIC 0x63657373 /* "cess" */
201 #define ALI5455_DMA_MASK 0xffffffff /* DMA buffer mask for pci_alloc_consist */
202 #define NR_HW_CH 5 //I think 5 channel
204 /* maxinum number of AC97 codecs connected, AC97 2.0 defined 4 */
207 /* Please note that an 8bit mono stream is not valid on this card, you must have a 16bit */
208 /* stream at a minimum for this card to be happy */
209 static const unsigned sample_size
[] = { 1, 2, 2, 4 };
210 /* Samples are 16bit values, so we are shifting to a word, not to a byte, hence shift */
211 /* values are one less than might be expected */
212 static const unsigned sample_shift
[] = { -1, 0, 0, 1 };
215 static char *card_names
[] = {
219 static struct pci_device_id ali_pci_tbl
[] = {
220 {PCI_VENDOR_ID_ALI
, PCI_DEVICE_ID_ALI_5455
,
221 PCI_ANY_ID
, PCI_ANY_ID
, 0, 0, ALI5455
},
225 MODULE_DEVICE_TABLE(pci
, ali_pci_tbl
);
228 #define PM_SUSPENDED(card) (card->pm_suspended)
230 #define PM_SUSPENDED(card) (0)
233 /* "software" or virtual channel, an instance of opened /dev/dsp */
236 struct ali_card
*card
; /* Card info */
238 /* single open lock mechanism, only used for recording */
239 struct mutex open_mutex
;
240 wait_queue_head_t open_wait
;
245 /* virtual channel number */
249 unsigned int pm_saved_dac_rate
, pm_saved_adc_rate
;
252 /* wave sample stuff */
254 unsigned char fmt
, enable
, trigger
;
256 /* hardware channel */
257 struct ali_channel
*read_channel
;
258 struct ali_channel
*write_channel
;
259 struct ali_channel
*codec_spdifout_channel
;
260 struct ali_channel
*controller_spdifout_channel
;
262 /* OSS buffer management stuff */
264 dma_addr_t dma_handle
;
269 /* our buffer acts like a circular ring */
270 unsigned hwptr
; /* where dma last started, updated by update_ptr */
271 unsigned swptr
; /* where driver last clear/filled, updated by read/write */
272 int count
; /* bytes to be consumed or been generated by dma machine */
273 unsigned total_bytes
; /* total bytes dmaed by hardware */
275 unsigned error
; /* number of over/underruns */
276 wait_queue_head_t wait
; /* put process on wait queue when no more space in buffer */
278 /* redundant, but makes calculations easier */
279 /* what the hardware uses */
282 unsigned fragsamples
;
284 /* what we tell the user to expect */
286 unsigned userfragsize
;
291 unsigned update_flag
;
292 unsigned ossfragsize
;
293 unsigned ossmaxfrags
;
294 unsigned subdivision
;
300 struct ali_channel channel
[5];
303 /* We keep ali5455 cards in a linked list */
304 struct ali_card
*next
;
306 /* The ali has a certain amount of cross channel interaction
307 so we use a single per card lock */
309 spinlock_t ac97_lock
;
311 /* PCI device stuff */
312 struct pci_dev
*pci_dev
;
316 int pm_saved_mixer_settings
[SOUND_MIXER_NRDEVICES
][NR_AC97
];
318 /* soundcore stuff */
321 /* structures for abstraction of hardware facilities, codecs, banks and channels */
322 struct ac97_codec
*ac97_codec
[NR_AC97
];
323 struct ali_state
*states
[NR_HW_CH
];
329 /* hardware resources */
330 unsigned long iobase
;
334 /* Function support */
335 struct ali_channel
*(*alloc_pcm_channel
) (struct ali_card
*);
336 struct ali_channel
*(*alloc_rec_pcm_channel
) (struct ali_card
*);
337 struct ali_channel
*(*alloc_rec_mic_channel
) (struct ali_card
*);
338 struct ali_channel
*(*alloc_codec_spdifout_channel
) (struct ali_card
*);
339 struct ali_channel
*(*alloc_controller_spdifout_channel
) (struct ali_card
*);
340 void (*free_pcm_channel
) (struct ali_card
*, int chan
);
342 /* We have a *very* long init time possibly, so use this to block */
343 /* attempts to open our devices before we are ready (stops oops'es) */
348 static struct ali_card
*devs
= NULL
;
350 static int ali_open_mixdev(struct inode
*inode
, struct file
*file
);
351 static int ali_ioctl_mixdev(struct inode
*inode
, struct file
*file
,
352 unsigned int cmd
, unsigned long arg
);
353 static u16
ali_ac97_get(struct ac97_codec
*dev
, u8 reg
);
354 static void ali_ac97_set(struct ac97_codec
*dev
, u8 reg
, u16 data
);
356 static struct ali_channel
*ali_alloc_pcm_channel(struct ali_card
*card
)
358 if (card
->channel
[1].used
== 1)
360 card
->channel
[1].used
= 1;
361 return &card
->channel
[1];
364 static struct ali_channel
*ali_alloc_rec_pcm_channel(struct ali_card
*card
)
366 if (card
->channel
[0].used
== 1)
368 card
->channel
[0].used
= 1;
369 return &card
->channel
[0];
372 static struct ali_channel
*ali_alloc_rec_mic_channel(struct ali_card
*card
)
374 if (card
->channel
[2].used
== 1)
376 card
->channel
[2].used
= 1;
377 return &card
->channel
[2];
380 static struct ali_channel
*ali_alloc_codec_spdifout_channel(struct ali_card
*card
)
382 if (card
->channel
[3].used
== 1)
384 card
->channel
[3].used
= 1;
385 return &card
->channel
[3];
388 static struct ali_channel
*ali_alloc_controller_spdifout_channel(struct ali_card
*card
)
390 if (card
->channel
[4].used
== 1)
392 card
->channel
[4].used
= 1;
393 return &card
->channel
[4];
395 static void ali_free_pcm_channel(struct ali_card
*card
, int channel
)
397 card
->channel
[channel
].used
= 0;
401 //add support codec spdif out
402 static int ali_valid_spdif_rate(struct ac97_codec
*codec
, int rate
)
404 unsigned long id
= 0L;
406 id
= (ali_ac97_get(codec
, AC97_VENDOR_ID1
) << 16);
407 id
|= ali_ac97_get(codec
, AC97_VENDOR_ID2
) & 0xffff;
409 case 0x41445361: /* AD1886 */
414 case 0x414c4720: /* ALC650 */
419 default: /* all other codecs, until we know otherwiae */
420 if (rate
== 48000 || rate
== 44100 || rate
== 32000) {
428 /* ali_set_spdif_output
430 * Configure the S/PDIF output transmitter. When we turn on
431 * S/PDIF, we turn off the analog output. This may not be
432 * the right thing to do.
435 * The DSP sample rate must already be set to a supported
436 * S/PDIF rate (32kHz, 44.1kHz, or 48kHz) or we abort.
438 static void ali_set_spdif_output(struct ali_state
*state
, int slots
,
443 struct ac97_codec
*codec
= state
->card
->ac97_codec
[0];
445 if (!(state
->card
->ac97_features
& 4)) {
446 state
->card
->ac97_status
&= ~SPDIF_ON
;
448 if (slots
== -1) { /* Turn off S/PDIF */
449 aud_reg
= ali_ac97_get(codec
, AC97_EXTENDED_STATUS
);
450 ali_ac97_set(codec
, AC97_EXTENDED_STATUS
, (aud_reg
& ~AC97_EA_SPDIF
));
452 /* If the volume wasn't muted before we turned on S/PDIF, unmute it */
453 if (!(state
->card
->ac97_status
& VOL_MUTED
)) {
454 aud_reg
= ali_ac97_get(codec
, AC97_MASTER_VOL_STEREO
);
455 ali_ac97_set(codec
, AC97_MASTER_VOL_STEREO
,
456 (aud_reg
& ~VOL_MUTED
));
458 state
->card
->ac97_status
&= ~(VOL_MUTED
| SPDIF_ON
);
462 vol
= ali_ac97_get(codec
, AC97_MASTER_VOL_STEREO
);
463 state
->card
->ac97_status
= vol
& VOL_MUTED
;
465 /* Set S/PDIF transmitter sample rate */
466 aud_reg
= ali_ac97_get(codec
, AC97_SPDIF_CONTROL
);
469 aud_reg
= (aud_reg
& AC97_SC_SPSR_MASK
) | AC97_SC_SPSR_32K
;
472 aud_reg
= (aud_reg
& AC97_SC_SPSR_MASK
) | AC97_SC_SPSR_44K
;
475 aud_reg
= (aud_reg
& AC97_SC_SPSR_MASK
) | AC97_SC_SPSR_48K
;
478 /* turn off S/PDIF */
479 aud_reg
= ali_ac97_get(codec
, AC97_EXTENDED_STATUS
);
480 ali_ac97_set(codec
, AC97_EXTENDED_STATUS
, (aud_reg
& ~AC97_EA_SPDIF
));
481 state
->card
->ac97_status
&= ~SPDIF_ON
;
485 ali_ac97_set(codec
, AC97_SPDIF_CONTROL
, aud_reg
);
487 aud_reg
= ali_ac97_get(codec
, AC97_EXTENDED_STATUS
);
488 aud_reg
= (aud_reg
& AC97_EA_SLOT_MASK
) | slots
| AC97_EA_SPDIF
;
489 ali_ac97_set(codec
, AC97_EXTENDED_STATUS
, aud_reg
);
491 aud_reg
= ali_ac97_get(codec
, AC97_POWER_CONTROL
);
493 ali_ac97_set(codec
, AC97_POWER_CONTROL
, aud_reg
);
496 state
->card
->ac97_status
|= SPDIF_ON
;
498 /* Check to make sure the configuration is valid */
499 aud_reg
= ali_ac97_get(codec
, AC97_EXTENDED_STATUS
);
500 if (!(aud_reg
& 0x0400)) {
501 /* turn off S/PDIF */
502 ali_ac97_set(codec
, AC97_EXTENDED_STATUS
, (aud_reg
& ~AC97_EA_SPDIF
));
503 state
->card
->ac97_status
&= ~SPDIF_ON
;
506 if (codec_independent_spdif_locked
> 0) {
507 aud_reg
= ali_ac97_get(codec
, 0x6a);
508 ali_ac97_set(codec
, 0x6a, (aud_reg
& 0xefff));
510 /* Mute the analog output */
511 /* Should this only mute the PCM volume??? */
515 /* ali_set_dac_channels
517 * Configure the codec's multi-channel DACs
519 * The logic is backwards. Setting the bit to 1 turns off the DAC.
521 * What about the ICH? We currently configure it using the
522 * SNDCTL_DSP_CHANNELS ioctl. If we're turnning on the DAC,
523 * does that imply that we want the ICH set to support
527 * vailidate that the codec really supports these DACs
528 * before turning them on.
530 static void ali_set_dac_channels(struct ali_state
*state
, int channel
)
533 struct ac97_codec
*codec
= state
->card
->ac97_codec
[0];
535 aud_reg
= ali_ac97_get(codec
, AC97_EXTENDED_STATUS
);
536 aud_reg
|= AC97_EA_PRI
| AC97_EA_PRJ
| AC97_EA_PRK
;
537 state
->card
->ac97_status
&= ~(SURR_ON
| CENTER_LFE_ON
);
540 case 2: /* always enabled */
543 aud_reg
&= ~AC97_EA_PRJ
;
544 state
->card
->ac97_status
|= SURR_ON
;
547 aud_reg
&= ~(AC97_EA_PRJ
| AC97_EA_PRI
| AC97_EA_PRK
);
548 state
->card
->ac97_status
|= SURR_ON
| CENTER_LFE_ON
;
553 ali_ac97_set(codec
, AC97_EXTENDED_STATUS
, aud_reg
);
557 /* set playback sample rate */
558 static unsigned int ali_set_dac_rate(struct ali_state
*state
,
561 struct dmabuf
*dmabuf
= &state
->dmabuf
;
563 struct ac97_codec
*codec
= state
->card
->ac97_codec
[0];
565 if (!(state
->card
->ac97_features
& 0x0001)) {
566 dmabuf
->rate
= clocking
;
577 * Adjust for misclocked crap
580 rate
= (rate
* clocking
) / 48000;
582 if (strict_clocking
&& rate
< 8000) {
584 dmabuf
->rate
= (rate
* 48000) / clocking
;
587 new_rate
= ac97_set_dac_rate(codec
, rate
);
588 if (new_rate
!= rate
) {
589 dmabuf
->rate
= (new_rate
* 48000) / clocking
;
595 /* set recording sample rate */
596 static unsigned int ali_set_adc_rate(struct ali_state
*state
,
599 struct dmabuf
*dmabuf
= &state
->dmabuf
;
601 struct ac97_codec
*codec
= state
->card
->ac97_codec
[0];
603 if (!(state
->card
->ac97_features
& 0x0001)) {
604 dmabuf
->rate
= clocking
;
615 * Adjust for misclocked crap
618 rate
= (rate
* clocking
) / 48000;
619 if (strict_clocking
&& rate
< 8000) {
621 dmabuf
->rate
= (rate
* 48000) / clocking
;
624 new_rate
= ac97_set_adc_rate(codec
, rate
);
626 if (new_rate
!= rate
) {
627 dmabuf
->rate
= (new_rate
* 48000) / clocking
;
633 /* set codec independent spdifout sample rate */
634 static unsigned int ali_set_codecspdifout_rate(struct ali_state
*state
,
637 struct dmabuf
*dmabuf
= &state
->dmabuf
;
639 if (!(state
->card
->ac97_features
& 0x0001)) {
640 dmabuf
->rate
= clocking
;
653 /* set controller independent spdif out function sample rate */
654 static void ali_set_spdifout_rate(struct ali_state
*state
,
657 unsigned char ch_st_sel
;
658 unsigned short status_rate
;
673 ch_st_sel
= inb(state
->card
->iobase
+ ALI_SPDIFICS
) & ALI_SPDIF_OUT_CH_STATUS
; //select spdif_out
675 ch_st_sel
|= 0x80; //select right
676 outb(ch_st_sel
, (state
->card
->iobase
+ ALI_SPDIFICS
));
677 outb(status_rate
| 0x20, (state
->card
->iobase
+ ALI_SPDIFCSR
+ 2));
679 ch_st_sel
&= (~0x80); //select left
680 outb(ch_st_sel
, (state
->card
->iobase
+ ALI_SPDIFICS
));
681 outw(status_rate
| 0x10, (state
->card
->iobase
+ ALI_SPDIFCSR
+ 2));
684 /* get current playback/recording dma buffer pointer (byte offset from LBA),
685 called with spinlock held! */
687 static inline unsigned ali_get_dma_addr(struct ali_state
*state
, int rec
)
689 struct dmabuf
*dmabuf
= &state
->dmabuf
;
690 unsigned int civ
, offset
, port
, port_picb
;
697 port
= state
->card
->iobase
+ dmabuf
->read_channel
->port
;
699 port
= state
->card
->iobase
+ dmabuf
->codec_spdifout_channel
->port
;
701 port
= state
->card
->iobase
+ dmabuf
->controller_spdifout_channel
->port
;
703 port
= state
->card
->iobase
+ dmabuf
->write_channel
->port
;
705 port_picb
= port
+ OFF_PICB
;
708 civ
= inb(port
+ OFF_CIV
) & 31;
709 offset
= inw(port_picb
);
710 /* Must have a delay here! */
714 /* Reread both registers and make sure that that total
715 * offset from the first reading to the second is 0.
716 * There is an issue with SiS hardware where it will count
717 * picb down to 0, then update civ to the next value,
718 * then set the new picb to fragsize bytes. We can catch
719 * it between the civ update and the picb update, making
720 * it look as though we are 1 fragsize ahead of where we
721 * are. The next to we get the address though, it will
722 * be back in thdelay is more than long enough
723 * that we won't have to worry about the chip still being
724 * out of sync with reality ;-)
726 } while (civ
!= (inb(port
+ OFF_CIV
) & 31) || offset
!= inw(port_picb
));
728 data
= ((civ
+ 1) * dmabuf
->fragsize
- (2 * offset
)) % dmabuf
->dmasize
;
729 if (inw(port_picb
) == 0)
735 /* Stop recording (lock held) */
736 static inline void __stop_adc(struct ali_state
*state
)
738 struct dmabuf
*dmabuf
= &state
->dmabuf
;
739 struct ali_card
*card
= state
->card
;
741 dmabuf
->enable
&= ~ADC_RUNNING
;
743 outl((1 << 18) | (1 << 16), card
->iobase
+ ALI_DMACR
);
746 outb(0, card
->iobase
+ PI_CR
);
747 while (inb(card
->iobase
+ PI_CR
) != 0);
749 // now clear any latent interrupt bits (like the halt bit)
750 outb(inb(card
->iobase
+ PI_SR
) | 0x001e, card
->iobase
+ PI_SR
);
751 outl(inl(card
->iobase
+ ALI_INTERRUPTSR
) & INT_PCMIN
, card
->iobase
+ ALI_INTERRUPTSR
);
754 static void stop_adc(struct ali_state
*state
)
756 struct ali_card
*card
= state
->card
;
758 spin_lock_irqsave(&card
->lock
, flags
);
760 spin_unlock_irqrestore(&card
->lock
, flags
);
763 static inline void __start_adc(struct ali_state
*state
)
765 struct dmabuf
*dmabuf
= &state
->dmabuf
;
767 if (dmabuf
->count
< dmabuf
->dmasize
&& dmabuf
->ready
768 && !dmabuf
->enable
&& (dmabuf
->trigger
& PCM_ENABLE_INPUT
)) {
769 dmabuf
->enable
|= ADC_RUNNING
;
770 outb((1 << 4) | (1 << 2), state
->card
->iobase
+ PI_CR
);
771 if (state
->card
->channel
[0].used
== 1)
772 outl(1, state
->card
->iobase
+ ALI_DMACR
); // DMA CONTROL REGISTRER
774 if (state
->card
->channel
[2].used
== 1)
775 outl((1 << 2), state
->card
->iobase
+ ALI_DMACR
); //DMA CONTROL REGISTER
780 static void start_adc(struct ali_state
*state
)
782 struct ali_card
*card
= state
->card
;
785 spin_lock_irqsave(&card
->lock
, flags
);
787 spin_unlock_irqrestore(&card
->lock
, flags
);
790 /* stop playback (lock held) */
791 static inline void __stop_dac(struct ali_state
*state
)
793 struct dmabuf
*dmabuf
= &state
->dmabuf
;
794 struct ali_card
*card
= state
->card
;
796 dmabuf
->enable
&= ~DAC_RUNNING
;
797 outl(0x00020000, card
->iobase
+ 0x08);
798 outb(0, card
->iobase
+ PO_CR
);
799 while (inb(card
->iobase
+ PO_CR
) != 0)
802 outb(inb(card
->iobase
+ PO_SR
) | 0x001e, card
->iobase
+ PO_SR
);
804 outl(inl(card
->iobase
+ ALI_INTERRUPTSR
) & INT_PCMOUT
, card
->iobase
+ ALI_INTERRUPTSR
);
807 static void stop_dac(struct ali_state
*state
)
809 struct ali_card
*card
= state
->card
;
811 spin_lock_irqsave(&card
->lock
, flags
);
813 spin_unlock_irqrestore(&card
->lock
, flags
);
816 static inline void __start_dac(struct ali_state
*state
)
818 struct dmabuf
*dmabuf
= &state
->dmabuf
;
819 if (dmabuf
->count
> 0 && dmabuf
->ready
&& !dmabuf
->enable
&&
820 (dmabuf
->trigger
& PCM_ENABLE_OUTPUT
)) {
821 dmabuf
->enable
|= DAC_RUNNING
;
822 outb((1 << 4) | (1 << 2), state
->card
->iobase
+ PO_CR
);
823 outl((1 << 1), state
->card
->iobase
+ 0x08); //dma control register
827 static void start_dac(struct ali_state
*state
)
829 struct ali_card
*card
= state
->card
;
831 spin_lock_irqsave(&card
->lock
, flags
);
833 spin_unlock_irqrestore(&card
->lock
, flags
);
836 /* stop codec and controller spdif out (lock held) */
837 static inline void __stop_spdifout(struct ali_state
*state
)
839 struct dmabuf
*dmabuf
= &state
->dmabuf
;
840 struct ali_card
*card
= state
->card
;
842 if (codec_independent_spdif_locked
> 0) {
843 dmabuf
->enable
&= ~CODEC_SPDIFOUT_RUNNING
;
844 outl((1 << 19), card
->iobase
+ 0x08);
845 outb(0, card
->iobase
+ CODECSPDIFOUT_CR
);
847 while (inb(card
->iobase
+ CODECSPDIFOUT_CR
) != 0)
850 outb(inb(card
->iobase
+ CODECSPDIFOUT_SR
) | 0x001e, card
->iobase
+ CODECSPDIFOUT_SR
);
851 outl(inl(card
->iobase
+ ALI_INTERRUPTSR
) & INT_CODECSPDIFOUT
, card
->iobase
+ ALI_INTERRUPTSR
);
853 if (controller_independent_spdif_locked
> 0) {
854 dmabuf
->enable
&= ~CONTROLLER_SPDIFOUT_RUNNING
;
855 outl((1 << 23), card
->iobase
+ 0x08);
856 outb(0, card
->iobase
+ CONTROLLERSPDIFOUT_CR
);
857 while (inb(card
->iobase
+ CONTROLLERSPDIFOUT_CR
) != 0)
859 outb(inb(card
->iobase
+ CONTROLLERSPDIFOUT_SR
) | 0x001e, card
->iobase
+ CONTROLLERSPDIFOUT_SR
);
860 outl(inl(card
->iobase
+ ALI_INTERRUPTSR
) & INT_SPDIFOUT
, card
->iobase
+ ALI_INTERRUPTSR
);
865 static void stop_spdifout(struct ali_state
*state
)
867 struct ali_card
*card
= state
->card
;
869 spin_lock_irqsave(&card
->lock
, flags
);
870 __stop_spdifout(state
);
871 spin_unlock_irqrestore(&card
->lock
, flags
);
874 static inline void __start_spdifout(struct ali_state
*state
)
876 struct dmabuf
*dmabuf
= &state
->dmabuf
;
877 if (dmabuf
->count
> 0 && dmabuf
->ready
&& !dmabuf
->enable
&&
878 (dmabuf
->trigger
& SPDIF_ENABLE_OUTPUT
)) {
879 if (codec_independent_spdif_locked
> 0) {
880 dmabuf
->enable
|= CODEC_SPDIFOUT_RUNNING
;
881 outb((1 << 4) | (1 << 2), state
->card
->iobase
+ CODECSPDIFOUT_CR
);
882 outl((1 << 3), state
->card
->iobase
+ 0x08); //dma control register
884 if (controller_independent_spdif_locked
> 0) {
885 dmabuf
->enable
|= CONTROLLER_SPDIFOUT_RUNNING
;
886 outb((1 << 4) | (1 << 2), state
->card
->iobase
+ CONTROLLERSPDIFOUT_CR
);
887 outl((1 << 7), state
->card
->iobase
+ 0x08); //dma control register
893 static void start_spdifout(struct ali_state
*state
)
895 struct ali_card
*card
= state
->card
;
897 spin_lock_irqsave(&card
->lock
, flags
);
898 __start_spdifout(state
);
899 spin_unlock_irqrestore(&card
->lock
, flags
);
902 #define DMABUF_DEFAULTORDER (16-PAGE_SHIFT)
903 #define DMABUF_MINORDER 1
905 /* allocate DMA buffer, playback , recording,spdif out buffer should be allocated separately */
906 static int alloc_dmabuf(struct ali_state
*state
)
908 struct dmabuf
*dmabuf
= &state
->dmabuf
;
911 struct page
*page
, *pend
;
913 /* If we don't have any oss frag params, then use our default ones */
914 if (dmabuf
->ossmaxfrags
== 0)
915 dmabuf
->ossmaxfrags
= 4;
916 if (dmabuf
->ossfragsize
== 0)
917 dmabuf
->ossfragsize
= (PAGE_SIZE
<< DMABUF_DEFAULTORDER
) / dmabuf
->ossmaxfrags
;
918 size
= dmabuf
->ossfragsize
* dmabuf
->ossmaxfrags
;
920 if (dmabuf
->rawbuf
&& (PAGE_SIZE
<< dmabuf
->buforder
) == size
)
922 /* alloc enough to satisfy the oss params */
923 for (order
= DMABUF_DEFAULTORDER
; order
>= DMABUF_MINORDER
; order
--) {
924 if ((PAGE_SIZE
<< order
) > size
)
926 if ((rawbuf
= pci_alloc_consistent(state
->card
->pci_dev
,
928 &dmabuf
->dma_handle
)))
934 dmabuf
->ready
= dmabuf
->mapped
= 0;
935 dmabuf
->rawbuf
= rawbuf
;
936 dmabuf
->buforder
= order
;
938 /* now mark the pages as reserved; otherwise remap_pfn_range doesn't do what we want */
939 pend
= virt_to_page(rawbuf
+ (PAGE_SIZE
<< order
) - 1);
940 for (page
= virt_to_page(rawbuf
); page
<= pend
; page
++)
941 SetPageReserved(page
);
945 /* free DMA buffer */
946 static void dealloc_dmabuf(struct ali_state
*state
)
948 struct dmabuf
*dmabuf
= &state
->dmabuf
;
949 struct page
*page
, *pend
;
951 if (dmabuf
->rawbuf
) {
952 /* undo marking the pages as reserved */
953 pend
= virt_to_page(dmabuf
->rawbuf
+ (PAGE_SIZE
<< dmabuf
->buforder
) - 1);
954 for (page
= virt_to_page(dmabuf
->rawbuf
); page
<= pend
; page
++)
955 ClearPageReserved(page
);
956 pci_free_consistent(state
->card
->pci_dev
,
957 PAGE_SIZE
<< dmabuf
->buforder
,
958 dmabuf
->rawbuf
, dmabuf
->dma_handle
);
960 dmabuf
->rawbuf
= NULL
;
961 dmabuf
->mapped
= dmabuf
->ready
= 0;
964 static int prog_dmabuf(struct ali_state
*state
, unsigned rec
)
966 struct dmabuf
*dmabuf
= &state
->dmabuf
;
967 struct ali_channel
*c
= NULL
;
974 spin_lock_irqsave(&state
->card
->lock
, flags
);
975 if (dmabuf
->enable
& DAC_RUNNING
)
977 if (dmabuf
->enable
& ADC_RUNNING
)
979 if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)
980 __stop_spdifout(state
);
981 if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
982 __stop_spdifout(state
);
984 dmabuf
->total_bytes
= 0;
985 dmabuf
->count
= dmabuf
->error
= 0;
986 dmabuf
->swptr
= dmabuf
->hwptr
= 0;
987 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
989 /* allocate DMA buffer, let alloc_dmabuf determine if we are already
990 * allocated well enough or if we should replace the current buffer
991 * (assuming one is already allocated, if it isn't, then allocate it).
993 if ((ret
= alloc_dmabuf(state
)))
996 /* FIXME: figure out all this OSS fragment stuff */
997 /* I did, it now does what it should according to the OSS API. DL */
998 /* We may not have realloced our dmabuf, but the fragment size to
999 * fragment number ratio may have changed, so go ahead and reprogram
1003 dmabuf
->dmasize
= PAGE_SIZE
<< dmabuf
->buforder
;
1004 dmabuf
->numfrag
= SG_LEN
;
1005 dmabuf
->fragsize
= dmabuf
->dmasize
/ dmabuf
->numfrag
;
1006 dmabuf
->fragsamples
= dmabuf
->fragsize
>> 1;
1007 dmabuf
->userfragsize
= dmabuf
->ossfragsize
;
1008 dmabuf
->userfrags
= dmabuf
->dmasize
/ dmabuf
->ossfragsize
;
1010 memset(dmabuf
->rawbuf
, 0, dmabuf
->dmasize
);
1012 if (dmabuf
->ossmaxfrags
== 4) {
1014 dmabuf
->fragshift
= 2;
1015 } else if (dmabuf
->ossmaxfrags
== 8) {
1017 dmabuf
->fragshift
= 3;
1018 } else if (dmabuf
->ossmaxfrags
== 16) {
1020 dmabuf
->fragshift
= 4;
1023 dmabuf
->fragshift
= 5;
1026 * Now set up the ring
1030 c
= dmabuf
->read_channel
;
1032 c
= dmabuf
->codec_spdifout_channel
;
1034 c
= dmabuf
->controller_spdifout_channel
;
1036 c
= dmabuf
->write_channel
;
1040 * Load up 32 sg entries and take an interrupt at half
1041 * way (we might want more interrupts later..)
1043 for (i
= 0; i
< dmabuf
->numfrag
; i
++) {
1045 virt_to_bus(dmabuf
->rawbuf
+
1046 dmabuf
->fragsize
* i
);
1047 // the card will always be doing 16bit stereo
1048 sg
->control
= dmabuf
->fragsamples
;
1049 sg
->control
|= CON_BUFPAD
; //I modify
1050 // set us up to get IOC interrupts as often as needed to
1051 // satisfy numfrag requirements, no more
1052 if (((i
+ 1) % fragint
) == 0) {
1053 sg
->control
|= CON_IOC
;
1057 spin_lock_irqsave(&state
->card
->lock
, flags
);
1058 outb(2, state
->card
->iobase
+ c
->port
+ OFF_CR
); /* reset DMA machine */
1059 outl(virt_to_bus(&c
->sg
[0]), state
->card
->iobase
+ c
->port
+ OFF_BDBAR
);
1060 outb(0, state
->card
->iobase
+ c
->port
+ OFF_CIV
);
1061 outb(0, state
->card
->iobase
+ c
->port
+ OFF_LVI
);
1062 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
1064 /* set the ready flag for the dma buffer */
1069 static void __ali_update_lvi(struct ali_state
*state
, int rec
)
1071 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1073 port
= state
->card
->iobase
;
1075 port
+= dmabuf
->read_channel
->port
;
1077 port
+= dmabuf
->codec_spdifout_channel
->port
;
1079 port
+= dmabuf
->controller_spdifout_channel
->port
;
1081 port
+= dmabuf
->write_channel
->port
;
1082 /* if we are currently stopped, then our CIV is actually set to our
1083 * *last* sg segment and we are ready to wrap to the next. However,
1084 * if we set our LVI to the last sg segment, then it won't wrap to
1085 * the next sg segment, it won't even get a start. So, instead, when
1086 * we are stopped, we set both the LVI value and also we increment
1087 * the CIV value to the next sg segment to be played so that when
1088 * we call start_{dac,adc}, things will operate properly
1090 if (!dmabuf
->enable
&& dmabuf
->ready
) {
1091 if (rec
&& dmabuf
->count
< dmabuf
->dmasize
&& (dmabuf
->trigger
& PCM_ENABLE_INPUT
)) {
1092 outb((inb(port
+ OFF_CIV
) + 1) & 31, port
+ OFF_LVI
);
1094 while (! (inb(port
+ OFF_CR
) & ((1 << 4) | (1 << 2))))
1096 } else if (!rec
&& dmabuf
->count
&& (dmabuf
->trigger
& PCM_ENABLE_OUTPUT
)) {
1097 outb((inb(port
+ OFF_CIV
) + 1) & 31, port
+ OFF_LVI
);
1099 while (!(inb(port
+ OFF_CR
) & ((1 << 4) | (1 << 2))))
1101 } else if (rec
&& dmabuf
->count
&& (dmabuf
->trigger
& SPDIF_ENABLE_OUTPUT
)) {
1102 if (codec_independent_spdif_locked
> 0) {
1103 // outb((inb(port+OFF_CIV))&31, port+OFF_LVI);
1104 outb((inb(port
+ OFF_CIV
) + 1) & 31, port
+ OFF_LVI
);
1105 __start_spdifout(state
);
1106 while (!(inb(port
+ OFF_CR
) & ((1 << 4) | (1 << 2))))
1109 if (controller_independent_spdif_locked
> 0) {
1110 outb((inb(port
+ OFF_CIV
) + 1) & 31, port
+ OFF_LVI
);
1111 __start_spdifout(state
);
1112 while (!(inb(port
+ OFF_CR
) & ((1 << 4) | (1 << 2))))
1119 /* swptr - 1 is the tail of our transfer */
1120 x
= (dmabuf
->dmasize
+ dmabuf
->swptr
- 1) % dmabuf
->dmasize
;
1121 x
/= dmabuf
->fragsize
;
1122 outb(x
, port
+ OFF_LVI
);
1125 static void ali_update_lvi(struct ali_state
*state
, int rec
)
1127 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1128 unsigned long flags
;
1131 spin_lock_irqsave(&state
->card
->lock
, flags
);
1132 __ali_update_lvi(state
, rec
);
1133 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
1136 /* update buffer manangement pointers, especially, dmabuf->count and dmabuf->hwptr */
1137 static void ali_update_ptr(struct ali_state
*state
)
1139 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1143 /* error handling and process wake up for DAC */
1144 if (dmabuf
->enable
== ADC_RUNNING
) {
1145 /* update hardware pointer */
1146 hwptr
= ali_get_dma_addr(state
, 1);
1147 diff
= (dmabuf
->dmasize
+ hwptr
- dmabuf
->hwptr
) % dmabuf
->dmasize
;
1148 dmabuf
->hwptr
= hwptr
;
1149 dmabuf
->total_bytes
+= diff
;
1150 dmabuf
->count
+= diff
;
1151 if (dmabuf
->count
> dmabuf
->dmasize
) {
1152 /* buffer underrun or buffer overrun */
1153 /* this is normal for the end of a read */
1154 /* only give an error if we went past the */
1155 /* last valid sg entry */
1156 if ((inb(state
->card
->iobase
+ PI_CIV
) & 31) != (inb(state
->card
->iobase
+ PI_LVI
) & 31)) {
1157 printk(KERN_WARNING
"ali_audio: DMA overrun on read\n");
1161 if (dmabuf
->count
> dmabuf
->userfragsize
)
1162 wake_up(&dmabuf
->wait
);
1164 /* error handling and process wake up for DAC */
1165 if (dmabuf
->enable
== DAC_RUNNING
) {
1166 /* update hardware pointer */
1167 hwptr
= ali_get_dma_addr(state
, 0);
1169 (dmabuf
->dmasize
+ hwptr
-
1170 dmabuf
->hwptr
) % dmabuf
->dmasize
;
1171 #if defined(DEBUG_INTERRUPTS) || defined(DEBUG_MMAP)
1172 printk("DAC HWP %d,%d,%d\n", hwptr
, dmabuf
->hwptr
, diff
);
1174 dmabuf
->hwptr
= hwptr
;
1175 dmabuf
->total_bytes
+= diff
;
1176 dmabuf
->count
-= diff
;
1177 if (dmabuf
->count
< 0) {
1178 /* buffer underrun or buffer overrun */
1179 /* this is normal for the end of a write */
1180 /* only give an error if we went past the */
1181 /* last valid sg entry */
1182 if ((inb(state
->card
->iobase
+ PO_CIV
) & 31) != (inb(state
->card
->iobase
+ PO_LVI
) & 31)) {
1183 printk(KERN_WARNING
"ali_audio: DMA overrun on write\n");
1184 printk(KERN_DEBUG
"ali_audio: CIV %d, LVI %d, hwptr %x, count %d\n",
1185 inb(state
->card
->iobase
+ PO_CIV
) & 31,
1186 inb(state
->card
->iobase
+ PO_LVI
) & 31,
1192 if (dmabuf
->count
< (dmabuf
->dmasize
- dmabuf
->userfragsize
))
1193 wake_up(&dmabuf
->wait
);
1196 /* error handling and process wake up for CODEC SPDIF OUT */
1197 if (dmabuf
->enable
== CODEC_SPDIFOUT_RUNNING
) {
1198 /* update hardware pointer */
1199 hwptr
= ali_get_dma_addr(state
, 2);
1200 diff
= (dmabuf
->dmasize
+ hwptr
- dmabuf
->hwptr
) % dmabuf
->dmasize
;
1201 dmabuf
->hwptr
= hwptr
;
1202 dmabuf
->total_bytes
+= diff
;
1203 dmabuf
->count
-= diff
;
1204 if (dmabuf
->count
< 0) {
1205 /* buffer underrun or buffer overrun */
1206 /* this is normal for the end of a write */
1207 /* only give an error if we went past the */
1208 /* last valid sg entry */
1209 if ((inb(state
->card
->iobase
+ CODECSPDIFOUT_CIV
) & 31) != (inb(state
->card
->iobase
+ CODECSPDIFOUT_LVI
) & 31)) {
1210 printk(KERN_WARNING
"ali_audio: DMA overrun on write\n");
1211 printk(KERN_DEBUG
"ali_audio: CIV %d, LVI %d, hwptr %x, count %d\n",
1212 inb(state
->card
->iobase
+ CODECSPDIFOUT_CIV
) & 31,
1213 inb(state
->card
->iobase
+ CODECSPDIFOUT_LVI
) & 31,
1214 dmabuf
->hwptr
, dmabuf
->count
);
1218 if (dmabuf
->count
< (dmabuf
->dmasize
- dmabuf
->userfragsize
))
1219 wake_up(&dmabuf
->wait
);
1221 /* error handling and process wake up for CONTROLLER SPDIF OUT */
1222 if (dmabuf
->enable
== CONTROLLER_SPDIFOUT_RUNNING
) {
1223 /* update hardware pointer */
1224 hwptr
= ali_get_dma_addr(state
, 3);
1225 diff
= (dmabuf
->dmasize
+ hwptr
- dmabuf
->hwptr
) % dmabuf
->dmasize
;
1226 dmabuf
->hwptr
= hwptr
;
1227 dmabuf
->total_bytes
+= diff
;
1228 dmabuf
->count
-= diff
;
1229 if (dmabuf
->count
< 0) {
1230 /* buffer underrun or buffer overrun */
1231 /* this is normal for the end of a write */
1232 /* only give an error if we went past the */
1233 /* last valid sg entry */
1234 if ((inb(state
->card
->iobase
+ CONTROLLERSPDIFOUT_CIV
) & 31) != (inb(state
->card
->iobase
+ CONTROLLERSPDIFOUT_LVI
) & 31)) {
1236 "ali_audio: DMA overrun on write\n");
1237 printk("ali_audio: CIV %d, LVI %d, hwptr %x, "
1239 inb(state
->card
->iobase
+ CONTROLLERSPDIFOUT_CIV
) & 31,
1240 inb(state
->card
->iobase
+ CONTROLLERSPDIFOUT_LVI
) & 31,
1241 dmabuf
->hwptr
, dmabuf
->count
);
1245 if (dmabuf
->count
< (dmabuf
->dmasize
- dmabuf
->userfragsize
))
1246 wake_up(&dmabuf
->wait
);
1250 static inline int ali_get_free_write_space(struct
1254 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1257 if (dmabuf
->count
< 0) {
1259 dmabuf
->swptr
= dmabuf
->hwptr
;
1261 free
= dmabuf
->dmasize
- dmabuf
->swptr
;
1262 if ((dmabuf
->count
+ free
) > dmabuf
->dmasize
){
1263 free
= dmabuf
->dmasize
- dmabuf
->count
;
1268 static inline int ali_get_available_read_data(struct
1272 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1274 ali_update_ptr(state
);
1275 // catch overruns during record
1276 if (dmabuf
->count
> dmabuf
->dmasize
) {
1277 dmabuf
->count
= dmabuf
->dmasize
;
1278 dmabuf
->swptr
= dmabuf
->hwptr
;
1280 avail
= dmabuf
->count
;
1281 avail
-= (dmabuf
->hwptr
% dmabuf
->fragsize
);
1287 static int drain_dac(struct ali_state
*state
, int signals_allowed
)
1290 DECLARE_WAITQUEUE(wait
, current
);
1291 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1292 unsigned long flags
;
1297 if (dmabuf
->mapped
) {
1301 add_wait_queue(&dmabuf
->wait
, &wait
);
1304 spin_lock_irqsave(&state
->card
->lock
, flags
);
1305 ali_update_ptr(state
);
1306 count
= dmabuf
->count
;
1307 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
1311 * This will make sure that our LVI is correct, that our
1312 * pointer is updated, and that the DAC is running. We
1313 * have to force the setting of dmabuf->trigger to avoid
1314 * any possible deadlocks.
1316 if (!dmabuf
->enable
) {
1317 dmabuf
->trigger
= PCM_ENABLE_OUTPUT
;
1318 ali_update_lvi(state
, 0);
1320 if (signal_pending(current
) && signals_allowed
) {
1324 /* It seems that we have to set the current state to
1325 * TASK_INTERRUPTIBLE every time to make the process
1326 * really go to sleep. This also has to be *after* the
1327 * update_ptr() call because update_ptr is likely to
1328 * do a wake_up() which will unset this before we ever
1329 * try to sleep, resuling in a tight loop in this code
1330 * instead of actually sleeping and waiting for an
1331 * interrupt to wake us up!
1333 set_current_state(TASK_INTERRUPTIBLE
);
1335 * set the timeout to significantly longer than it *should*
1336 * take for the DAC to drain the DMA buffer
1338 tmo
= (count
* HZ
) / (dmabuf
->rate
);
1339 if (!schedule_timeout(tmo
>= 2 ? tmo
: 2)) {
1340 printk(KERN_ERR
"ali_audio: drain_dac, dma timeout?\n");
1345 set_current_state(TASK_RUNNING
);
1346 remove_wait_queue(&dmabuf
->wait
, &wait
);
1347 if (count
> 0 && signal_pending(current
) && signals_allowed
)
1348 return -ERESTARTSYS
;
1354 static int drain_spdifout(struct ali_state
*state
, int signals_allowed
)
1357 DECLARE_WAITQUEUE(wait
, current
);
1358 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1359 unsigned long flags
;
1364 if (dmabuf
->mapped
) {
1365 stop_spdifout(state
);
1368 add_wait_queue(&dmabuf
->wait
, &wait
);
1371 spin_lock_irqsave(&state
->card
->lock
, flags
);
1372 ali_update_ptr(state
);
1373 count
= dmabuf
->count
;
1374 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
1378 * This will make sure that our LVI is correct, that our
1379 * pointer is updated, and that the DAC is running. We
1380 * have to force the setting of dmabuf->trigger to avoid
1381 * any possible deadlocks.
1383 if (!dmabuf
->enable
) {
1384 if (codec_independent_spdif_locked
> 0) {
1385 dmabuf
->trigger
= SPDIF_ENABLE_OUTPUT
;
1386 ali_update_lvi(state
, 2);
1388 if (controller_independent_spdif_locked
> 0) {
1389 dmabuf
->trigger
= SPDIF_ENABLE_OUTPUT
;
1390 ali_update_lvi(state
, 3);
1394 if (signal_pending(current
) && signals_allowed
) {
1398 /* It seems that we have to set the current state to
1399 * TASK_INTERRUPTIBLE every time to make the process
1400 * really go to sleep. This also has to be *after* the
1401 * update_ptr() call because update_ptr is likely to
1402 * do a wake_up() which will unset this before we ever
1403 * try to sleep, resuling in a tight loop in this code
1404 * instead of actually sleeping and waiting for an
1405 * interrupt to wake us up!
1407 set_current_state(TASK_INTERRUPTIBLE
);
1409 * set the timeout to significantly longer than it *should*
1410 * take for the DAC to drain the DMA buffer
1412 tmo
= (count
* HZ
) / (dmabuf
->rate
);
1413 if (!schedule_timeout(tmo
>= 2 ? tmo
: 2)) {
1414 printk(KERN_ERR
"ali_audio: drain_spdifout, dma timeout?\n");
1419 set_current_state(TASK_RUNNING
);
1420 remove_wait_queue(&dmabuf
->wait
, &wait
);
1421 if (count
> 0 && signal_pending(current
) && signals_allowed
)
1422 return -ERESTARTSYS
;
1423 stop_spdifout(state
);
1427 static void ali_channel_interrupt(struct ali_card
*card
)
1431 for (i
= 0; i
< NR_HW_CH
; i
++) {
1432 struct ali_state
*state
= card
->states
[i
];
1433 struct ali_channel
*c
= NULL
;
1434 struct dmabuf
*dmabuf
;
1435 unsigned long port
= card
->iobase
;
1439 if (!state
->dmabuf
.ready
)
1441 dmabuf
= &state
->dmabuf
;
1442 if (codec_independent_spdif_locked
> 0) {
1443 if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
) {
1444 c
= dmabuf
->codec_spdifout_channel
;
1447 if (controller_independent_spdif_locked
> 0) {
1448 if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
1449 c
= dmabuf
->controller_spdifout_channel
;
1451 if (dmabuf
->enable
& DAC_RUNNING
) {
1452 c
= dmabuf
->write_channel
;
1453 } else if (dmabuf
->enable
& ADC_RUNNING
) {
1454 c
= dmabuf
->read_channel
;
1461 status
= inw(port
+ OFF_SR
);
1463 if (status
& DMA_INT_COMPLETE
) {
1464 /* only wake_up() waiters if this interrupt signals
1465 * us being beyond a userfragsize of data open or
1466 * available, and ali_update_ptr() does that for
1469 ali_update_ptr(state
);
1472 if (status
& DMA_INT_LVI
) {
1473 ali_update_ptr(state
);
1474 wake_up(&dmabuf
->wait
);
1476 if (dmabuf
->enable
& DAC_RUNNING
)
1477 count
= dmabuf
->count
;
1478 else if (dmabuf
->enable
& ADC_RUNNING
)
1479 count
= dmabuf
->dmasize
- dmabuf
->count
;
1480 else if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)
1481 count
= dmabuf
->count
;
1482 else if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
1483 count
= dmabuf
->count
;
1487 if (dmabuf
->enable
& DAC_RUNNING
)
1488 outl((1 << 1), state
->card
->iobase
+ ALI_DMACR
);
1489 else if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)
1490 outl((1 << 3), state
->card
->iobase
+ ALI_DMACR
);
1491 else if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
1492 outl((1 << 7), state
->card
->iobase
+ ALI_DMACR
);
1494 if (dmabuf
->enable
& DAC_RUNNING
)
1496 if (dmabuf
->enable
& ADC_RUNNING
)
1498 if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)
1499 __stop_spdifout(state
);
1500 if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
1501 __stop_spdifout(state
);
1503 wake_up(&dmabuf
->wait
);
1507 if (!(status
& DMA_INT_DCH
)) {
1508 ali_update_ptr(state
);
1509 wake_up(&dmabuf
->wait
);
1510 if (dmabuf
->enable
& DAC_RUNNING
)
1511 count
= dmabuf
->count
;
1512 else if (dmabuf
->enable
& ADC_RUNNING
)
1513 count
= dmabuf
->dmasize
- dmabuf
->count
;
1514 else if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)
1515 count
= dmabuf
->count
;
1516 else if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
1517 count
= dmabuf
->count
;
1522 if (dmabuf
->enable
& DAC_RUNNING
)
1523 outl((1 << 1), state
->card
->iobase
+ ALI_DMACR
);
1524 else if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)
1525 outl((1 << 3), state
->card
->iobase
+ ALI_DMACR
);
1526 else if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
1527 outl((1 << 7), state
->card
->iobase
+ ALI_DMACR
);
1529 if (dmabuf
->enable
& DAC_RUNNING
)
1531 if (dmabuf
->enable
& ADC_RUNNING
)
1533 if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)
1534 __stop_spdifout(state
);
1535 if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)
1536 __stop_spdifout(state
);
1538 wake_up(&dmabuf
->wait
);
1541 outw(status
& DMA_INT_MASK
, port
+ OFF_SR
);
1545 static irqreturn_t
ali_interrupt(int irq
, void *dev_id
, struct pt_regs
*regs
)
1547 struct ali_card
*card
= (struct ali_card
*) dev_id
;
1551 spin_lock(&card
->lock
);
1552 status
= inl(card
->iobase
+ ALI_INTERRUPTSR
);
1553 if (!(status
& INT_MASK
)) {
1554 spin_unlock(&card
->lock
);
1555 return IRQ_NONE
; /* not for us */
1558 if (codec_independent_spdif_locked
> 0) {
1561 status2
= inw(card
->iobase
+ 0x76);
1562 outw(status2
| 0x000c, card
->iobase
+ 0x76);
1564 if (status
& (INT_PCMOUT
| INT_PCMIN
| INT_MICIN
| INT_SPDIFOUT
| INT_CODECSPDIFOUT
))
1565 ali_channel_interrupt(card
);
1568 if (status
& (INT_PCMOUT
| INT_PCMIN
| INT_MICIN
| INT_SPDIFOUT
| INT_CODECSPDIFOUT
))
1569 ali_channel_interrupt(card
);
1573 outl(status
& INT_MASK
, card
->iobase
+ ALI_INTERRUPTSR
);
1574 spin_unlock(&card
->lock
);
1578 /* in this loop, dmabuf.count signifies the amount of data that is
1579 waiting to be copied to the user's buffer. It is filled by the dma
1580 machine and drained by this loop. */
1582 static ssize_t
ali_read(struct file
*file
, char __user
*buffer
,
1583 size_t count
, loff_t
* ppos
)
1585 struct ali_state
*state
= (struct ali_state
*) file
->private_data
;
1586 struct ali_card
*card
= state
? state
->card
: NULL
;
1587 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1589 unsigned long flags
;
1592 DECLARE_WAITQUEUE(waita
, current
);
1594 printk("ali_audio: ali_read called, count = %d\n", count
);
1598 if (dmabuf
->enable
& DAC_RUNNING
)
1600 if (!dmabuf
->read_channel
) {
1602 dmabuf
->read_channel
= card
->alloc_rec_pcm_channel(card
);
1603 if (!dmabuf
->read_channel
) {
1607 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 1)))
1609 if (!access_ok(VERIFY_WRITE
, buffer
, count
))
1612 add_wait_queue(&dmabuf
->wait
, &waita
);
1614 set_current_state(TASK_INTERRUPTIBLE
);
1615 spin_lock_irqsave(&card
->lock
, flags
);
1616 if (PM_SUSPENDED(card
)) {
1617 spin_unlock_irqrestore(&card
->lock
, flags
);
1619 if (signal_pending(current
)) {
1626 swptr
= dmabuf
->swptr
;
1627 cnt
= ali_get_available_read_data(state
);
1628 // this is to make the copy_to_user simpler below
1629 if (cnt
> (dmabuf
->dmasize
- swptr
))
1630 cnt
= dmabuf
->dmasize
- swptr
;
1631 spin_unlock_irqrestore(&card
->lock
, flags
);
1634 /* Lop off the last two bits to force the code to always
1635 * write in full samples. This keeps software that sets
1636 * O_NONBLOCK but doesn't check the return value of the
1637 * write call from getting things out of state where they
1638 * think a full 4 byte sample was written when really only
1639 * a portion was, resulting in odd sound and stereo
1646 * Don't let us deadlock. The ADC won't start if
1647 * dmabuf->trigger isn't set. A call to SETTRIGGER
1648 * could have turned it off after we set it to on
1651 dmabuf
->trigger
= PCM_ENABLE_INPUT
;
1653 * This does three things. Updates LVI to be correct,
1654 * makes sure the ADC is running, and updates the
1657 ali_update_lvi(state
, 1);
1658 if (file
->f_flags
& O_NONBLOCK
) {
1663 /* Set the timeout to how long it would take to fill
1664 * two of our buffers. If we haven't been woke up
1665 * by then, then we know something is wrong.
1667 tmo
= (dmabuf
->dmasize
* HZ
* 2) / (dmabuf
->rate
* 4);
1669 /* There are two situations when sleep_on_timeout returns, one is when
1670 the interrupt is serviced correctly and the process is waked up by
1671 ISR ON TIME. Another is when timeout is expired, which means that
1672 either interrupt is NOT serviced correctly (pending interrupt) or it
1673 is TOO LATE for the process to be scheduled to run (scheduler latency)
1674 which results in a (potential) buffer overrun. And worse, there is
1675 NOTHING we can do to prevent it. */
1676 if (!schedule_timeout(tmo
>= 2 ? tmo
: 2)) {
1678 "ali_audio: recording schedule timeout, "
1679 "dmasz %u fragsz %u count %i hwptr %u swptr %u\n",
1680 dmabuf
->dmasize
, dmabuf
->fragsize
,
1681 dmabuf
->count
, dmabuf
->hwptr
,
1683 /* a buffer overrun, we delay the recovery until next time the
1684 while loop begin and we REALLY have space to record */
1686 if (signal_pending(current
)) {
1687 ret
= ret
? ret
: -ERESTARTSYS
;
1693 if (copy_to_user(buffer
, dmabuf
->rawbuf
+ swptr
, cnt
)) {
1699 swptr
= (swptr
+ cnt
) % dmabuf
->dmasize
;
1700 spin_lock_irqsave(&card
->lock
, flags
);
1701 if (PM_SUSPENDED(card
)) {
1702 spin_unlock_irqrestore(&card
->lock
, flags
);
1705 dmabuf
->swptr
= swptr
;
1706 dmabuf
->count
-= cnt
;
1707 spin_unlock_irqrestore(&card
->lock
, flags
);
1713 ali_update_lvi(state
, 1);
1714 set_current_state(TASK_RUNNING
);
1715 remove_wait_queue(&dmabuf
->wait
, &waita
);
1719 /* in this loop, dmabuf.count signifies the amount of data that is waiting to be dma to
1720 the soundcard. it is drained by the dma machine and filled by this loop. */
1721 static ssize_t
ali_write(struct file
*file
,
1722 const char __user
*buffer
, size_t count
, loff_t
* ppos
)
1724 struct ali_state
*state
= (struct ali_state
*) file
->private_data
;
1725 struct ali_card
*card
= state
? state
->card
: NULL
;
1726 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1728 unsigned long flags
;
1729 unsigned int swptr
= 0;
1731 DECLARE_WAITQUEUE(waita
, current
);
1733 printk("ali_audio: ali_write called, count = %d\n", count
);
1737 if (dmabuf
->enable
& ADC_RUNNING
)
1739 if (codec_independent_spdif_locked
> 0) {
1740 if (!dmabuf
->codec_spdifout_channel
) {
1742 dmabuf
->codec_spdifout_channel
= card
->alloc_codec_spdifout_channel(card
);
1743 if (!dmabuf
->codec_spdifout_channel
)
1747 if (controller_independent_spdif_locked
> 0) {
1748 if (!dmabuf
->controller_spdifout_channel
) {
1750 dmabuf
->controller_spdifout_channel
= card
->alloc_controller_spdifout_channel(card
);
1751 if (!dmabuf
->controller_spdifout_channel
)
1755 if (!dmabuf
->write_channel
) {
1757 dmabuf
->write_channel
=
1758 card
->alloc_pcm_channel(card
);
1759 if (!dmabuf
->write_channel
)
1765 if (codec_independent_spdif_locked
> 0) {
1766 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 2)))
1769 if (controller_independent_spdif_locked
> 0) {
1770 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 3)))
1774 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 0)))
1778 if (!access_ok(VERIFY_READ
, buffer
, count
))
1781 add_wait_queue(&dmabuf
->wait
, &waita
);
1783 set_current_state(TASK_INTERRUPTIBLE
);
1784 spin_lock_irqsave(&state
->card
->lock
, flags
);
1785 if (PM_SUSPENDED(card
)) {
1786 spin_unlock_irqrestore(&card
->lock
, flags
);
1788 if (signal_pending(current
)) {
1796 swptr
= dmabuf
->swptr
;
1797 cnt
= ali_get_free_write_space(state
);
1798 /* Bound the maximum size to how much we can copy to the
1799 * dma buffer before we hit the end. If we have more to
1800 * copy then it will get done in a second pass of this
1801 * loop starting from the beginning of the buffer.
1803 if (cnt
> (dmabuf
->dmasize
- swptr
))
1804 cnt
= dmabuf
->dmasize
- swptr
;
1805 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
1808 "ali_audio: ali_write: %d bytes available space\n",
1813 /* Lop off the last two bits to force the code to always
1814 * write in full samples. This keeps software that sets
1815 * O_NONBLOCK but doesn't check the return value of the
1816 * write call from getting things out of state where they
1817 * think a full 4 byte sample was written when really only
1818 * a portion was, resulting in odd sound and stereo
1824 // There is data waiting to be played
1826 * Force the trigger setting since we would
1827 * deadlock with it set any other way
1829 if (codec_independent_spdif_locked
> 0) {
1830 dmabuf
->trigger
= SPDIF_ENABLE_OUTPUT
;
1831 ali_update_lvi(state
, 2);
1833 if (controller_independent_spdif_locked
> 0) {
1834 dmabuf
->trigger
= SPDIF_ENABLE_OUTPUT
;
1835 ali_update_lvi(state
, 3);
1838 dmabuf
->trigger
= PCM_ENABLE_OUTPUT
;
1839 ali_update_lvi(state
, 0);
1842 if (file
->f_flags
& O_NONBLOCK
) {
1847 /* Not strictly correct but works */
1848 tmo
= (dmabuf
->dmasize
* HZ
* 2) / (dmabuf
->rate
* 4);
1849 /* There are two situations when sleep_on_timeout returns, one is when
1850 the interrupt is serviced correctly and the process is waked up by
1851 ISR ON TIME. Another is when timeout is expired, which means that
1852 either interrupt is NOT serviced correctly (pending interrupt) or it
1853 is TOO LATE for the process to be scheduled to run (scheduler latency)
1854 which results in a (potential) buffer underrun. And worse, there is
1855 NOTHING we can do to prevent it. */
1857 /* FIXME - do timeout handling here !! */
1858 schedule_timeout(tmo
>= 2 ? tmo
: 2);
1860 if (signal_pending(current
)) {
1867 if (copy_from_user(dmabuf
->rawbuf
+ swptr
, buffer
, cnt
)) {
1873 swptr
= (swptr
+ cnt
) % dmabuf
->dmasize
;
1874 spin_lock_irqsave(&state
->card
->lock
, flags
);
1875 if (PM_SUSPENDED(card
)) {
1876 spin_unlock_irqrestore(&card
->lock
, flags
);
1880 dmabuf
->swptr
= swptr
;
1881 dmabuf
->count
+= cnt
;
1885 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
1887 if (swptr
% dmabuf
->fragsize
) {
1888 x
= dmabuf
->fragsize
- (swptr
% dmabuf
->fragsize
);
1889 memset(dmabuf
->rawbuf
+ swptr
, '\0', x
);
1892 if (codec_independent_spdif_locked
> 0) {
1893 ali_update_lvi(state
, 2);
1895 if (controller_independent_spdif_locked
> 0) {
1896 ali_update_lvi(state
, 3);
1898 ali_update_lvi(state
, 0);
1901 set_current_state(TASK_RUNNING
);
1902 remove_wait_queue(&dmabuf
->wait
, &waita
);
1906 /* No kernel lock - we have our own spinlock */
1907 static unsigned int ali_poll(struct file
*file
, struct poll_table_struct
1910 struct ali_state
*state
= (struct ali_state
*) file
->private_data
;
1911 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1912 unsigned long flags
;
1913 unsigned int mask
= 0;
1916 poll_wait(file
, &dmabuf
->wait
, wait
);
1917 spin_lock_irqsave(&state
->card
->lock
, flags
);
1918 ali_update_ptr(state
);
1919 if (file
->f_mode
& FMODE_READ
&& dmabuf
->enable
& ADC_RUNNING
) {
1920 if (dmabuf
->count
>= (signed) dmabuf
->fragsize
)
1921 mask
|= POLLIN
| POLLRDNORM
;
1923 if (file
->f_mode
& FMODE_WRITE
&& (dmabuf
->enable
& (DAC_RUNNING
|CODEC_SPDIFOUT_RUNNING
|CONTROLLER_SPDIFOUT_RUNNING
))) {
1924 if ((signed) dmabuf
->dmasize
>= dmabuf
->count
+ (signed) dmabuf
->fragsize
)
1925 mask
|= POLLOUT
| POLLWRNORM
;
1927 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
1931 static int ali_mmap(struct file
*file
, struct vm_area_struct
*vma
)
1933 struct ali_state
*state
= (struct ali_state
*) file
->private_data
;
1934 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1938 if (vma
->vm_flags
& VM_WRITE
) {
1939 if (!dmabuf
->write_channel
&& (dmabuf
->write_channel
= state
->card
->alloc_pcm_channel(state
->card
)) == NULL
) {
1944 if (vma
->vm_flags
& VM_READ
) {
1945 if (!dmabuf
->read_channel
&& (dmabuf
->read_channel
= state
->card
->alloc_rec_pcm_channel(state
->card
)) == NULL
) {
1950 if ((ret
= prog_dmabuf(state
, 0)) != 0)
1953 if (vma
->vm_pgoff
!= 0)
1955 size
= vma
->vm_end
- vma
->vm_start
;
1956 if (size
> (PAGE_SIZE
<< dmabuf
->buforder
))
1959 if (remap_pfn_range(vma
, vma
->vm_start
,
1960 virt_to_phys(dmabuf
->rawbuf
) >> PAGE_SHIFT
,
1961 size
, vma
->vm_page_prot
))
1964 dmabuf
->trigger
= 0;
1971 static int ali_ioctl(struct inode
*inode
, struct file
*file
, unsigned int cmd
, unsigned long arg
)
1973 struct ali_state
*state
= (struct ali_state
*) file
->private_data
;
1974 struct ali_channel
*c
= NULL
;
1975 struct dmabuf
*dmabuf
= &state
->dmabuf
;
1976 unsigned long flags
;
1977 audio_buf_info abinfo
;
1981 struct ac97_codec
*codec
= state
->card
->ac97_codec
[0];
1982 void __user
*argp
= (void __user
*)arg
;
1983 int __user
*p
= argp
;
1986 printk("ali_audio: ali_ioctl, arg=0x%x, cmd=",
1990 case OSS_GETVERSION
:
1992 printk("OSS_GETVERSION\n");
1994 return put_user(SOUND_VERSION
, p
);
1995 case SNDCTL_DSP_RESET
:
1997 printk("SNDCTL_DSP_RESET\n");
1999 spin_lock_irqsave(&state
->card
->lock
, flags
);
2000 if (dmabuf
->enable
== DAC_RUNNING
) {
2001 c
= dmabuf
->write_channel
;
2004 if (dmabuf
->enable
== ADC_RUNNING
) {
2005 c
= dmabuf
->read_channel
;
2008 if (dmabuf
->enable
== CODEC_SPDIFOUT_RUNNING
) {
2009 c
= dmabuf
->codec_spdifout_channel
;
2010 __stop_spdifout(state
);
2012 if (dmabuf
->enable
== CONTROLLER_SPDIFOUT_RUNNING
) {
2013 c
= dmabuf
->controller_spdifout_channel
;
2014 __stop_spdifout(state
);
2017 outb(2, state
->card
->iobase
+ c
->port
+ OFF_CR
); /* reset DMA machine */
2018 outl(virt_to_bus(&c
->sg
[0]),
2019 state
->card
->iobase
+ c
->port
+ OFF_BDBAR
);
2020 outb(0, state
->card
->iobase
+ c
->port
+ OFF_CIV
);
2021 outb(0, state
->card
->iobase
+ c
->port
+ OFF_LVI
);
2024 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2025 synchronize_irq(state
->card
->pci_dev
->irq
);
2027 dmabuf
->swptr
= dmabuf
->hwptr
= 0;
2028 dmabuf
->count
= dmabuf
->total_bytes
= 0;
2030 case SNDCTL_DSP_SYNC
:
2032 printk("SNDCTL_DSP_SYNC\n");
2034 if (codec_independent_spdif_locked
> 0) {
2035 if (dmabuf
->enable
!= CODEC_SPDIFOUT_RUNNING
2036 || file
->f_flags
& O_NONBLOCK
)
2038 if ((val
= drain_spdifout(state
, 1)))
2041 if (controller_independent_spdif_locked
> 0) {
2042 if (dmabuf
->enable
!=
2043 CONTROLLER_SPDIFOUT_RUNNING
2044 || file
->f_flags
& O_NONBLOCK
)
2046 if ((val
= drain_spdifout(state
, 1)))
2049 if (dmabuf
->enable
!= DAC_RUNNING
2050 || file
->f_flags
& O_NONBLOCK
)
2052 if ((val
= drain_dac(state
, 1)))
2056 dmabuf
->total_bytes
= 0;
2058 case SNDCTL_DSP_SPEED
: /* set smaple rate */
2060 printk("SNDCTL_DSP_SPEED\n");
2062 if (get_user(val
, p
))
2065 if (file
->f_mode
& FMODE_WRITE
) {
2066 if ((state
->card
->ac97_status
& SPDIF_ON
)) { /* S/PDIF Enabled */
2067 /* RELTEK ALC650 only support 48000, need to check that */
2068 if (ali_valid_spdif_rate(codec
, val
)) {
2069 if (codec_independent_spdif_locked
> 0) {
2070 ali_set_spdif_output(state
, -1, 0);
2071 stop_spdifout(state
);
2073 /* I add test codec independent spdif out */
2074 spin_lock_irqsave(&state
->card
->lock
, flags
);
2075 ali_set_codecspdifout_rate(state
, val
); // I modified
2076 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2077 /* Set S/PDIF transmitter rate. */
2078 i_scr
= inl(state
->card
->iobase
+ ALI_SCR
);
2079 if ((i_scr
& 0x00300000) == 0x00100000) {
2080 ali_set_spdif_output(state
, AC97_EA_SPSA_7_8
, codec_independent_spdif_locked
);
2082 if ((i_scr
&0x00300000) == 0x00200000)
2084 ali_set_spdif_output(state
, AC97_EA_SPSA_6_9
, codec_independent_spdif_locked
);
2086 if ((i_scr
& 0x00300000) == 0x00300000) {
2087 ali_set_spdif_output(state
, AC97_EA_SPSA_10_11
, codec_independent_spdif_locked
);
2089 ali_set_spdif_output(state
, AC97_EA_SPSA_7_8
, codec_independent_spdif_locked
);
2094 if (!(state
->card
->ac97_status
& SPDIF_ON
)) {
2098 if (controller_independent_spdif_locked
> 0)
2100 stop_spdifout(state
);
2102 spin_lock_irqsave(&state
->card
->lock
, flags
);
2103 ali_set_spdifout_rate(state
, controller_independent_spdif_locked
);
2104 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2107 ali_set_spdif_output(state
, -1, 0);
2110 spin_lock_irqsave(&state
->card
->lock
, flags
);
2111 ali_set_dac_rate(state
, val
);
2112 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2113 /* Set S/PDIF transmitter rate. */
2114 ali_set_spdif_output(state
, AC97_EA_SPSA_3_4
, val
);
2115 if (!(state
->card
->ac97_status
& SPDIF_ON
))
2121 } else { /* Not a valid rate for S/PDIF, ignore it */
2127 spin_lock_irqsave(&state
->card
->lock
, flags
);
2128 ali_set_dac_rate(state
, val
);
2129 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2132 if (file
->f_mode
& FMODE_READ
) {
2135 spin_lock_irqsave(&state
->card
->lock
, flags
);
2136 ali_set_adc_rate(state
, val
);
2137 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2140 return put_user(dmabuf
->rate
, p
);
2141 case SNDCTL_DSP_STEREO
: /* set stereo or mono channel */
2143 printk("SNDCTL_DSP_STEREO\n");
2145 if (dmabuf
->enable
& DAC_RUNNING
) {
2148 if (dmabuf
->enable
& ADC_RUNNING
) {
2151 if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
) {
2152 stop_spdifout(state
);
2154 if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
) {
2155 stop_spdifout(state
);
2157 return put_user(1, p
);
2158 case SNDCTL_DSP_GETBLKSIZE
:
2159 if (file
->f_mode
& FMODE_WRITE
) {
2160 if (codec_independent_spdif_locked
> 0) {
2161 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 2)))
2164 if (controller_independent_spdif_locked
> 0) {
2165 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 3)))
2168 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 0)))
2174 if (file
->f_mode
& FMODE_READ
) {
2175 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 1)))
2179 printk("SNDCTL_DSP_GETBLKSIZE %d\n", dmabuf
->userfragsize
);
2181 return put_user(dmabuf
->userfragsize
, p
);
2182 case SNDCTL_DSP_GETFMTS
: /* Returns a mask of supported sample format */
2184 printk("SNDCTL_DSP_GETFMTS\n");
2186 return put_user(AFMT_S16_LE
, p
);
2187 case SNDCTL_DSP_SETFMT
: /* Select sample format */
2189 printk("SNDCTL_DSP_SETFMT\n");
2191 return put_user(AFMT_S16_LE
, p
);
2192 case SNDCTL_DSP_CHANNELS
: // add support 4,6 channel
2194 printk("SNDCTL_DSP_CHANNELS\n");
2196 if (get_user(val
, p
))
2199 if (dmabuf
->enable
& DAC_RUNNING
) {
2202 if (dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
) {
2203 stop_spdifout(state
);
2205 if (dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
) {
2206 stop_spdifout(state
);
2208 if (dmabuf
->enable
& ADC_RUNNING
) {
2212 return put_user(state
->card
->channels
, p
);
2215 i_scr
= inl(state
->card
->iobase
+ ALI_SCR
);
2216 /* Current # of channels enabled */
2217 if (i_scr
& 0x00000100)
2219 else if (i_scr
& 0x00000200)
2224 case 2: /* 2 channels is always supported */
2225 if (codec_independent_spdif_locked
> 0) {
2226 outl(((i_scr
& 0xfffffcff) | 0x00100000), (state
->card
->iobase
+ ALI_SCR
));
2228 outl((i_scr
& 0xfffffcff), (state
->card
->iobase
+ ALI_SCR
));
2229 /* Do we need to change mixer settings???? */
2231 case 4: /* Supported on some chipsets, better check first */
2232 if (codec_independent_spdif_locked
> 0) {
2233 outl(((i_scr
& 0xfffffcff) | 0x00000100 | 0x00200000), (state
->card
->iobase
+ ALI_SCR
));
2235 outl(((i_scr
& 0xfffffcff) | 0x00000100), (state
->card
->iobase
+ ALI_SCR
));
2237 case 6: /* Supported on some chipsets, better check first */
2238 if (codec_independent_spdif_locked
> 0) {
2239 outl(((i_scr
& 0xfffffcff) | 0x00000200 | 0x00008000 | 0x00300000), (state
->card
->iobase
+ ALI_SCR
));
2241 outl(((i_scr
& 0xfffffcff) | 0x00000200 | 0x00008000), (state
->card
->iobase
+ ALI_SCR
));
2243 default: /* nothing else is ever supported by the chipset */
2247 return put_user(val
, p
);
2248 case SNDCTL_DSP_POST
: /* the user has sent all data and is notifying us */
2249 /* we update the swptr to the end of the last sg segment then return */
2251 printk("SNDCTL_DSP_POST\n");
2253 if (codec_independent_spdif_locked
> 0) {
2254 if (!dmabuf
->ready
|| (dmabuf
->enable
!= CODEC_SPDIFOUT_RUNNING
))
2257 if (controller_independent_spdif_locked
> 0) {
2258 if (!dmabuf
->ready
|| (dmabuf
->enable
!= CONTROLLER_SPDIFOUT_RUNNING
))
2261 if (!dmabuf
->ready
|| (dmabuf
->enable
!= DAC_RUNNING
))
2265 if ((dmabuf
->swptr
% dmabuf
->fragsize
) != 0) {
2266 val
= dmabuf
->fragsize
- (dmabuf
->swptr
% dmabuf
->fragsize
);
2267 dmabuf
->swptr
+= val
;
2268 dmabuf
->count
+= val
;
2271 case SNDCTL_DSP_SUBDIVIDE
:
2272 if (dmabuf
->subdivision
)
2274 if (get_user(val
, p
))
2276 if (val
!= 1 && val
!= 2 && val
!= 4)
2279 printk("SNDCTL_DSP_SUBDIVIDE %d\n", val
);
2281 dmabuf
->subdivision
= val
;
2284 case SNDCTL_DSP_SETFRAGMENT
:
2285 if (get_user(val
, p
))
2287 dmabuf
->ossfragsize
= 1 << (val
& 0xffff);
2288 dmabuf
->ossmaxfrags
= (val
>> 16) & 0xffff;
2289 if (!dmabuf
->ossfragsize
|| !dmabuf
->ossmaxfrags
)
2292 * Bound the frag size into our allowed range of 256 - 4096
2294 if (dmabuf
->ossfragsize
< 256)
2295 dmabuf
->ossfragsize
= 256;
2296 else if (dmabuf
->ossfragsize
> 4096)
2297 dmabuf
->ossfragsize
= 4096;
2299 * The numfrags could be something reasonable, or it could
2300 * be 0xffff meaning "Give me as much as possible". So,
2301 * we check the numfrags * fragsize doesn't exceed our
2302 * 64k buffer limit, nor is it less than our 8k minimum.
2303 * If it fails either one of these checks, then adjust the
2304 * number of fragments, not the size of them. It's OK if
2305 * our number of fragments doesn't equal 32 or anything
2306 * like our hardware based number now since we are using
2307 * a different frag count for the hardware. Before we get
2308 * into this though, bound the maxfrags to avoid overflow
2309 * issues. A reasonable bound would be 64k / 256 since our
2310 * maximum buffer size is 64k and our minimum frag size is
2311 * 256. On the other end, our minimum buffer size is 8k and
2312 * our maximum frag size is 4k, so the lower bound should
2315 if (dmabuf
->ossmaxfrags
> 256)
2316 dmabuf
->ossmaxfrags
= 256;
2317 else if (dmabuf
->ossmaxfrags
< 2)
2318 dmabuf
->ossmaxfrags
= 2;
2319 val
= dmabuf
->ossfragsize
* dmabuf
->ossmaxfrags
;
2320 while (val
< 8192) {
2322 dmabuf
->ossmaxfrags
<<= 1;
2324 while (val
> 65536) {
2326 dmabuf
->ossmaxfrags
>>= 1;
2330 printk("SNDCTL_DSP_SETFRAGMENT 0x%x, %d, %d\n", val
,
2331 dmabuf
->ossfragsize
, dmabuf
->ossmaxfrags
);
2334 case SNDCTL_DSP_GETOSPACE
:
2335 if (!(file
->f_mode
& FMODE_WRITE
))
2337 if (codec_independent_spdif_locked
> 0) {
2338 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 2)) != 0)
2341 if (controller_independent_spdif_locked
> 0) {
2342 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 3)) != 0)
2345 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 0)) != 0)
2349 spin_lock_irqsave(&state
->card
->lock
, flags
);
2350 ali_update_ptr(state
);
2351 abinfo
.fragsize
= dmabuf
->userfragsize
;
2352 abinfo
.fragstotal
= dmabuf
->userfrags
;
2354 abinfo
.bytes
= dmabuf
->dmasize
;
2356 abinfo
.bytes
= ali_get_free_write_space(state
);
2357 abinfo
.fragments
= abinfo
.bytes
/ dmabuf
->userfragsize
;
2358 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2359 #if defined(DEBUG) || defined(DEBUG_MMAP)
2360 printk("SNDCTL_DSP_GETOSPACE %d, %d, %d, %d\n",
2361 abinfo
.bytes
, abinfo
.fragsize
, abinfo
.fragments
,
2364 return copy_to_user(argp
, &abinfo
,
2365 sizeof(abinfo
)) ? -EFAULT
: 0;
2366 case SNDCTL_DSP_GETOPTR
:
2367 if (!(file
->f_mode
& FMODE_WRITE
))
2369 if (codec_independent_spdif_locked
> 0) {
2370 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 2)) != 0)
2373 if (controller_independent_spdif_locked
> 0) {
2374 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 3)) != 0)
2377 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 0)) != 0)
2381 spin_lock_irqsave(&state
->card
->lock
, flags
);
2382 val
= ali_get_free_write_space(state
);
2383 cinfo
.bytes
= dmabuf
->total_bytes
;
2384 cinfo
.ptr
= dmabuf
->hwptr
;
2385 cinfo
.blocks
= val
/ dmabuf
->userfragsize
;
2386 if (codec_independent_spdif_locked
> 0) {
2387 if (dmabuf
->mapped
&& (dmabuf
->trigger
& SPDIF_ENABLE_OUTPUT
)) {
2388 dmabuf
->count
+= val
;
2389 dmabuf
->swptr
= (dmabuf
->swptr
+ val
) % dmabuf
->dmasize
;
2390 __ali_update_lvi(state
, 2);
2393 if (controller_independent_spdif_locked
> 0) {
2394 if (dmabuf
->mapped
&& (dmabuf
->trigger
& SPDIF_ENABLE_OUTPUT
)) {
2395 dmabuf
->count
+= val
;
2396 dmabuf
->swptr
= (dmabuf
->swptr
+ val
) % dmabuf
->dmasize
;
2397 __ali_update_lvi(state
, 3);
2400 if (dmabuf
->mapped
&& (dmabuf
->trigger
& PCM_ENABLE_OUTPUT
)) {
2401 dmabuf
->count
+= val
;
2402 dmabuf
->swptr
= (dmabuf
->swptr
+ val
) % dmabuf
->dmasize
;
2403 __ali_update_lvi(state
, 0);
2407 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2408 #if defined(DEBUG) || defined(DEBUG_MMAP)
2409 printk("SNDCTL_DSP_GETOPTR %d, %d, %d, %d\n", cinfo
.bytes
,
2410 cinfo
.blocks
, cinfo
.ptr
, dmabuf
->count
);
2412 return copy_to_user(argp
, &cinfo
, sizeof(cinfo
))? -EFAULT
: 0;
2413 case SNDCTL_DSP_GETISPACE
:
2414 if (!(file
->f_mode
& FMODE_READ
))
2416 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 1)) != 0)
2418 spin_lock_irqsave(&state
->card
->lock
, flags
);
2419 abinfo
.bytes
= ali_get_available_read_data(state
);
2420 abinfo
.fragsize
= dmabuf
->userfragsize
;
2421 abinfo
.fragstotal
= dmabuf
->userfrags
;
2422 abinfo
.fragments
= abinfo
.bytes
/ dmabuf
->userfragsize
;
2423 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2424 #if defined(DEBUG) || defined(DEBUG_MMAP)
2425 printk("SNDCTL_DSP_GETISPACE %d, %d, %d, %d\n",
2426 abinfo
.bytes
, abinfo
.fragsize
, abinfo
.fragments
,
2429 return copy_to_user(argp
, &abinfo
,
2430 sizeof(abinfo
)) ? -EFAULT
: 0;
2431 case SNDCTL_DSP_GETIPTR
:
2432 if (!(file
->f_mode
& FMODE_READ
))
2434 if (!dmabuf
->ready
&& (val
= prog_dmabuf(state
, 0)) != 0)
2436 spin_lock_irqsave(&state
->card
->lock
, flags
);
2437 val
= ali_get_available_read_data(state
);
2438 cinfo
.bytes
= dmabuf
->total_bytes
;
2439 cinfo
.blocks
= val
/ dmabuf
->userfragsize
;
2440 cinfo
.ptr
= dmabuf
->hwptr
;
2441 if (dmabuf
->mapped
&& (dmabuf
->trigger
& PCM_ENABLE_INPUT
)) {
2442 dmabuf
->count
-= val
;
2443 dmabuf
->swptr
= (dmabuf
->swptr
+ val
) % dmabuf
->dmasize
;
2444 __ali_update_lvi(state
, 1);
2446 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2447 #if defined(DEBUG) || defined(DEBUG_MMAP)
2448 printk("SNDCTL_DSP_GETIPTR %d, %d, %d, %d\n", cinfo
.bytes
,
2449 cinfo
.blocks
, cinfo
.ptr
, dmabuf
->count
);
2451 return copy_to_user(argp
, &cinfo
, sizeof(cinfo
))? -EFAULT
: 0;
2452 case SNDCTL_DSP_NONBLOCK
:
2454 printk("SNDCTL_DSP_NONBLOCK\n");
2456 file
->f_flags
|= O_NONBLOCK
;
2458 case SNDCTL_DSP_GETCAPS
:
2460 printk("SNDCTL_DSP_GETCAPS\n");
2462 return put_user(DSP_CAP_REALTIME
| DSP_CAP_TRIGGER
|
2463 DSP_CAP_MMAP
| DSP_CAP_BIND
, p
);
2464 case SNDCTL_DSP_GETTRIGGER
:
2467 printk("SNDCTL_DSP_GETTRIGGER 0x%x\n", dmabuf
->trigger
);
2469 return put_user(dmabuf
->trigger
, p
);
2470 case SNDCTL_DSP_SETTRIGGER
:
2471 if (get_user(val
, p
))
2473 #if defined(DEBUG) || defined(DEBUG_MMAP)
2474 printk("SNDCTL_DSP_SETTRIGGER 0x%x\n", val
);
2476 if (!(val
& PCM_ENABLE_INPUT
) && dmabuf
->enable
== ADC_RUNNING
) {
2479 if (!(val
& PCM_ENABLE_OUTPUT
) && dmabuf
->enable
== DAC_RUNNING
) {
2482 if (!(val
& SPDIF_ENABLE_OUTPUT
) && dmabuf
->enable
== CODEC_SPDIFOUT_RUNNING
) {
2483 stop_spdifout(state
);
2485 if (!(val
& SPDIF_ENABLE_OUTPUT
) && dmabuf
->enable
== CONTROLLER_SPDIFOUT_RUNNING
) {
2486 stop_spdifout(state
);
2488 dmabuf
->trigger
= val
;
2489 if (val
& PCM_ENABLE_OUTPUT
&& !(dmabuf
->enable
& DAC_RUNNING
)) {
2490 if (!dmabuf
->write_channel
) {
2492 dmabuf
->write_channel
= state
->card
->alloc_pcm_channel(state
->card
);
2493 if (!dmabuf
->write_channel
)
2496 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 0)))
2498 if (dmabuf
->mapped
) {
2499 spin_lock_irqsave(&state
->card
->lock
, flags
);
2500 ali_update_ptr(state
);
2502 dmabuf
->swptr
= dmabuf
->hwptr
;
2503 dmabuf
->count
= ali_get_free_write_space(state
);
2504 dmabuf
->swptr
= (dmabuf
->swptr
+ dmabuf
->count
) % dmabuf
->dmasize
;
2505 __ali_update_lvi(state
, 0);
2506 spin_unlock_irqrestore(&state
->card
->lock
,
2511 if (val
& SPDIF_ENABLE_OUTPUT
&& !(dmabuf
->enable
& CODEC_SPDIFOUT_RUNNING
)) {
2512 if (!dmabuf
->codec_spdifout_channel
) {
2514 dmabuf
->codec_spdifout_channel
= state
->card
->alloc_codec_spdifout_channel(state
->card
);
2515 if (!dmabuf
->codec_spdifout_channel
)
2518 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 2)))
2520 if (dmabuf
->mapped
) {
2521 spin_lock_irqsave(&state
->card
->lock
, flags
);
2522 ali_update_ptr(state
);
2524 dmabuf
->swptr
= dmabuf
->hwptr
;
2525 dmabuf
->count
= ali_get_free_write_space(state
);
2526 dmabuf
->swptr
= (dmabuf
->swptr
+ dmabuf
->count
) % dmabuf
->dmasize
;
2527 __ali_update_lvi(state
, 2);
2528 spin_unlock_irqrestore(&state
->card
->lock
,
2531 start_spdifout(state
);
2533 if (val
& SPDIF_ENABLE_OUTPUT
&& !(dmabuf
->enable
& CONTROLLER_SPDIFOUT_RUNNING
)) {
2534 if (!dmabuf
->controller_spdifout_channel
) {
2536 dmabuf
->controller_spdifout_channel
= state
->card
->alloc_controller_spdifout_channel(state
->card
);
2537 if (!dmabuf
->controller_spdifout_channel
)
2540 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 3)))
2542 if (dmabuf
->mapped
) {
2543 spin_lock_irqsave(&state
->card
->lock
, flags
);
2544 ali_update_ptr(state
);
2546 dmabuf
->swptr
= dmabuf
->hwptr
;
2547 dmabuf
->count
= ali_get_free_write_space(state
);
2548 dmabuf
->swptr
= (dmabuf
->swptr
+ dmabuf
->count
) % dmabuf
->dmasize
;
2549 __ali_update_lvi(state
, 3);
2550 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2552 start_spdifout(state
);
2554 if (val
& PCM_ENABLE_INPUT
&& !(dmabuf
->enable
& ADC_RUNNING
)) {
2555 if (!dmabuf
->read_channel
) {
2557 dmabuf
->read_channel
= state
->card
->alloc_rec_pcm_channel(state
->card
);
2558 if (!dmabuf
->read_channel
)
2561 if (!dmabuf
->ready
&& (ret
= prog_dmabuf(state
, 1)))
2563 if (dmabuf
->mapped
) {
2564 spin_lock_irqsave(&state
->card
->lock
,
2566 ali_update_ptr(state
);
2567 dmabuf
->swptr
= dmabuf
->hwptr
;
2569 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2571 ali_update_lvi(state
, 1);
2575 case SNDCTL_DSP_SETDUPLEX
:
2577 printk("SNDCTL_DSP_SETDUPLEX\n");
2580 case SNDCTL_DSP_GETODELAY
:
2581 if (!(file
->f_mode
& FMODE_WRITE
))
2583 spin_lock_irqsave(&state
->card
->lock
, flags
);
2584 ali_update_ptr(state
);
2585 val
= dmabuf
->count
;
2586 spin_unlock_irqrestore(&state
->card
->lock
, flags
);
2588 printk("SNDCTL_DSP_GETODELAY %d\n", dmabuf
->count
);
2590 return put_user(val
, p
);
2591 case SOUND_PCM_READ_RATE
:
2593 printk("SOUND_PCM_READ_RATE %d\n", dmabuf
->rate
);
2595 return put_user(dmabuf
->rate
, p
);
2596 case SOUND_PCM_READ_CHANNELS
:
2598 printk("SOUND_PCM_READ_CHANNELS\n");
2600 return put_user(2, p
);
2601 case SOUND_PCM_READ_BITS
:
2603 printk("SOUND_PCM_READ_BITS\n");
2605 return put_user(AFMT_S16_LE
, p
);
2606 case SNDCTL_DSP_SETSPDIF
: /* Set S/PDIF Control register */
2608 printk("SNDCTL_DSP_SETSPDIF\n");
2610 if (get_user(val
, p
))
2612 /* Check to make sure the codec supports S/PDIF transmitter */
2613 if ((state
->card
->ac97_features
& 4)) {
2614 /* mask out the transmitter speed bits so the user can't set them */
2616 /* Add the current transmitter speed bits to the passed value */
2617 ret
= ali_ac97_get(codec
, AC97_SPDIF_CONTROL
);
2618 val
|= (ret
& 0x3000);
2619 ali_ac97_set(codec
, AC97_SPDIF_CONTROL
, val
);
2620 if (ali_ac97_get(codec
, AC97_SPDIF_CONTROL
) != val
) {
2621 printk(KERN_ERR
"ali_audio: Unable to set S/PDIF configuration to 0x%04x.\n", val
);
2627 printk(KERN_WARNING
"ali_audio: S/PDIF transmitter not avalible.\n");
2629 return put_user(val
, p
);
2630 case SNDCTL_DSP_GETSPDIF
: /* Get S/PDIF Control register */
2632 printk("SNDCTL_DSP_GETSPDIF\n");
2634 if (get_user(val
, p
))
2636 /* Check to make sure the codec supports S/PDIF transmitter */
2637 if (!(state
->card
->ac97_features
& 4)) {
2639 printk(KERN_WARNING
"ali_audio: S/PDIF transmitter not avalible.\n");
2643 val
= ali_ac97_get(codec
, AC97_SPDIF_CONTROL
);
2646 return put_user(val
, p
);
2647 //end add support spdif out
2648 //add support 4,6 channel
2649 case SNDCTL_DSP_GETCHANNELMASK
:
2651 printk("SNDCTL_DSP_GETCHANNELMASK\n");
2653 if (get_user(val
, p
))
2655 /* Based on AC'97 DAC support, not ICH hardware */
2656 val
= DSP_BIND_FRONT
;
2657 if (state
->card
->ac97_features
& 0x0004)
2658 val
|= DSP_BIND_SPDIF
;
2659 if (state
->card
->ac97_features
& 0x0080)
2660 val
|= DSP_BIND_SURR
;
2661 if (state
->card
->ac97_features
& 0x0140)
2662 val
|= DSP_BIND_CENTER_LFE
;
2663 return put_user(val
, p
);
2664 case SNDCTL_DSP_BIND_CHANNEL
:
2666 printk("SNDCTL_DSP_BIND_CHANNEL\n");
2668 if (get_user(val
, p
))
2670 if (val
== DSP_BIND_QUERY
) {
2671 val
= DSP_BIND_FRONT
; /* Always report this as being enabled */
2672 if (state
->card
->ac97_status
& SPDIF_ON
)
2673 val
|= DSP_BIND_SPDIF
;
2675 if (state
->card
->ac97_status
& SURR_ON
)
2676 val
|= DSP_BIND_SURR
;
2678 ac97_status
& CENTER_LFE_ON
)
2679 val
|= DSP_BIND_CENTER_LFE
;
2681 } else { /* Not a query, set it */
2682 if (!(file
->f_mode
& FMODE_WRITE
))
2684 if (dmabuf
->enable
== DAC_RUNNING
) {
2687 if (val
& DSP_BIND_SPDIF
) { /* Turn on SPDIF */
2688 /* Ok, this should probably define what slots
2689 * to use. For now, we'll only set it to the
2692 * non multichannel codec maps to slots 3&4
2693 * 2 channel codec maps to slots 7&8
2694 * 4 channel codec maps to slots 6&9
2695 * 6 channel codec maps to slots 10&11
2697 * there should be some way for the app to
2698 * select the slot assignment.
2700 i_scr
= inl(state
->card
->iobase
+ ALI_SCR
);
2701 if (codec_independent_spdif_locked
> 0) {
2703 if ((i_scr
& 0x00300000) == 0x00100000) {
2704 ali_set_spdif_output(state
, AC97_EA_SPSA_7_8
, codec_independent_spdif_locked
);
2706 if ((i_scr
& 0x00300000) == 0x00200000) {
2707 ali_set_spdif_output(state
, AC97_EA_SPSA_6_9
, codec_independent_spdif_locked
);
2709 if ((i_scr
& 0x00300000) == 0x00300000) {
2710 ali_set_spdif_output(state
, AC97_EA_SPSA_10_11
, codec_independent_spdif_locked
);
2714 } else { /* codec spdif out (pcm out share ) */
2715 ali_set_spdif_output(state
, AC97_EA_SPSA_3_4
, dmabuf
->rate
); //I do not modify
2718 if (!(state
->card
->ac97_status
& SPDIF_ON
))
2719 val
&= ~DSP_BIND_SPDIF
;
2723 /* Turn off S/PDIF if it was on */
2724 if (state
->card
->ac97_status
& SPDIF_ON
)
2725 ali_set_spdif_output(state
, -1, 0);
2727 val
& (DSP_BIND_FRONT
| DSP_BIND_SURR
|
2728 DSP_BIND_CENTER_LFE
);
2730 case DSP_BIND_FRONT
:
2733 case DSP_BIND_FRONT
| DSP_BIND_SURR
:
2736 case DSP_BIND_FRONT
| DSP_BIND_SURR
| DSP_BIND_CENTER_LFE
:
2740 val
= DSP_BIND_FRONT
;
2744 ali_set_dac_channels(state
, channels
);
2745 /* check that they really got turned on */
2746 if (!state
->card
->ac97_status
& SURR_ON
)
2747 val
&= ~DSP_BIND_SURR
;
2749 ac97_status
& CENTER_LFE_ON
)
2750 val
&= ~DSP_BIND_CENTER_LFE
;
2753 return put_user(val
, p
);
2754 case SNDCTL_DSP_MAPINBUF
:
2755 case SNDCTL_DSP_MAPOUTBUF
:
2756 case SNDCTL_DSP_SETSYNCRO
:
2757 case SOUND_PCM_WRITE_FILTER
:
2758 case SOUND_PCM_READ_FILTER
:
2764 static int ali_open(struct inode
*inode
, struct file
*file
)
2767 struct ali_card
*card
= devs
;
2768 struct ali_state
*state
= NULL
;
2769 struct dmabuf
*dmabuf
= NULL
;
2772 /* find an available virtual channel (instance of /dev/dsp) */
2774 while (card
!= NULL
) {
2777 * If we are initializing and then fail, card could go
2778 * away unuexpectedly while we are in the for() loop.
2779 * So, check for card on each iteration before we check
2780 * for card->initializing to avoid a possible oops.
2781 * This usually only matters for times when the driver is
2782 * autoloaded by kmod.
2784 for (i
= 0; i
< 50 && card
&& card
->initializing
; i
++) {
2785 set_current_state(TASK_UNINTERRUPTIBLE
);
2786 schedule_timeout(HZ
/ 20);
2789 for (i
= 0; i
< NR_HW_CH
&& card
&& !card
->initializing
; i
++) {
2790 if (card
->states
[i
] == NULL
) {
2791 state
= card
->states
[i
] = (struct ali_state
*) kmalloc(sizeof(struct ali_state
), GFP_KERNEL
);
2794 memset(state
, 0, sizeof(struct ali_state
));
2795 dmabuf
= &state
->dmabuf
;
2802 /* no more virtual channel avaiable */
2806 /* initialize the virtual channel */
2810 state
->magic
= ALI5455_STATE_MAGIC
;
2811 init_waitqueue_head(&dmabuf
->wait
);
2812 mutex_init(&state
->open_mutex
);
2813 file
->private_data
= state
;
2814 dmabuf
->trigger
= 0;
2815 /* allocate hardware channels */
2816 if (file
->f_mode
& FMODE_READ
) {
2817 if ((dmabuf
->read_channel
=
2818 card
->alloc_rec_pcm_channel(card
)) == NULL
) {
2819 kfree(card
->states
[i
]);
2820 card
->states
[i
] = NULL
;
2823 dmabuf
->trigger
|= PCM_ENABLE_INPUT
;
2824 ali_set_adc_rate(state
, 8000);
2826 if (file
->f_mode
& FMODE_WRITE
) {
2827 if (codec_independent_spdif_locked
> 0) {
2828 if ((dmabuf
->codec_spdifout_channel
= card
->alloc_codec_spdifout_channel(card
)) == NULL
) {
2829 kfree(card
->states
[i
]);
2830 card
->states
[i
] = NULL
;
2833 dmabuf
->trigger
|= SPDIF_ENABLE_OUTPUT
;
2834 ali_set_codecspdifout_rate(state
, codec_independent_spdif_locked
); //It must add
2835 i_scr
= inl(state
->card
->iobase
+ ALI_SCR
);
2836 if ((i_scr
& 0x00300000) == 0x00100000) {
2837 ali_set_spdif_output(state
, AC97_EA_SPSA_7_8
, codec_independent_spdif_locked
);
2839 if ((i_scr
& 0x00300000) == 0x00200000) {
2840 ali_set_spdif_output(state
, AC97_EA_SPSA_6_9
, codec_independent_spdif_locked
);
2842 if ((i_scr
& 0x00300000) == 0x00300000) {
2843 ali_set_spdif_output(state
, AC97_EA_SPSA_10_11
, codec_independent_spdif_locked
);
2845 ali_set_spdif_output(state
, AC97_EA_SPSA_7_8
, codec_independent_spdif_locked
);
2851 if (controller_independent_spdif_locked
> 0) {
2852 if ((dmabuf
->controller_spdifout_channel
= card
->alloc_controller_spdifout_channel(card
)) == NULL
) {
2853 kfree(card
->states
[i
]);
2854 card
->states
[i
] = NULL
;
2857 dmabuf
->trigger
|= SPDIF_ENABLE_OUTPUT
;
2858 ali_set_spdifout_rate(state
, controller_independent_spdif_locked
);
2860 if ((dmabuf
->write_channel
= card
->alloc_pcm_channel(card
)) == NULL
) {
2861 kfree(card
->states
[i
]);
2862 card
->states
[i
] = NULL
;
2865 /* Initialize to 8kHz? What if we don't support 8kHz? */
2866 /* Let's change this to check for S/PDIF stuff */
2868 dmabuf
->trigger
|= PCM_ENABLE_OUTPUT
;
2869 if (codec_pcmout_share_spdif_locked
) {
2870 ali_set_dac_rate(state
, codec_pcmout_share_spdif_locked
);
2871 ali_set_spdif_output(state
, AC97_EA_SPSA_3_4
, codec_pcmout_share_spdif_locked
);
2873 ali_set_dac_rate(state
, 8000);
2880 /* set default sample format. According to OSS Programmer's Guide /dev/dsp
2881 should be default to unsigned 8-bits, mono, with sample rate 8kHz and
2882 /dev/dspW will accept 16-bits sample, but we don't support those so we
2883 set it immediately to stereo and 16bit, which is all we do support */
2884 dmabuf
->fmt
|= ALI5455_FMT_16BIT
| ALI5455_FMT_STEREO
;
2885 dmabuf
->ossfragsize
= 0;
2886 dmabuf
->ossmaxfrags
= 0;
2887 dmabuf
->subdivision
= 0;
2888 state
->open_mode
|= file
->f_mode
& (FMODE_READ
| FMODE_WRITE
);
2889 outl(0x00000000, card
->iobase
+ ALI_INTERRUPTCR
);
2890 outl(0x00000000, card
->iobase
+ ALI_INTERRUPTSR
);
2891 return nonseekable_open(inode
, file
);
2894 static int ali_release(struct inode
*inode
, struct file
*file
)
2896 struct ali_state
*state
= (struct ali_state
*) file
->private_data
;
2897 struct ali_card
*card
= state
->card
;
2898 struct dmabuf
*dmabuf
= &state
->dmabuf
;
2899 unsigned long flags
;
2902 /* stop DMA state machine and free DMA buffers/channels */
2903 if (dmabuf
->trigger
& PCM_ENABLE_OUTPUT
)
2904 drain_dac(state
, 0);
2906 if (dmabuf
->trigger
& SPDIF_ENABLE_OUTPUT
)
2907 drain_spdifout(state
, 0);
2909 if (dmabuf
->trigger
& PCM_ENABLE_INPUT
)
2912 spin_lock_irqsave(&card
->lock
, flags
);
2913 dealloc_dmabuf(state
);
2914 if (file
->f_mode
& FMODE_WRITE
) {
2915 if (codec_independent_spdif_locked
> 0) {
2916 state
->card
->free_pcm_channel(state
->card
, dmabuf
->codec_spdifout_channel
->num
);
2918 if (controller_independent_spdif_locked
> 0)
2919 state
->card
->free_pcm_channel(state
->card
,
2920 dmabuf
->controller_spdifout_channel
->num
);
2921 else state
->card
->free_pcm_channel(state
->card
,
2922 dmabuf
->write_channel
->num
);
2925 if (file
->f_mode
& FMODE_READ
)
2926 state
->card
->free_pcm_channel(state
->card
, dmabuf
->read_channel
->num
);
2928 state
->card
->states
[state
->virt
] = NULL
;
2930 spin_unlock_irqrestore(&card
->lock
, flags
);
2935 static /*const */ struct file_operations ali_audio_fops
= {
2936 .owner
= THIS_MODULE
,
2937 .llseek
= no_llseek
,
2944 .release
= ali_release
,
2947 /* Read AC97 codec registers */
2948 static u16
ali_ac97_get(struct ac97_codec
*dev
, u8 reg
)
2950 struct ali_card
*card
= dev
->private_data
;
2953 unsigned short int data
= 0, count
, addr1
, addr2
= 0;
2955 spin_lock(&card
->ac97_lock
);
2956 while (count1
-- && (inl(card
->iobase
+ ALI_CAS
) & 0x80000000))
2961 for (count
= 0; count
< 0x7f; count
++) {
2962 val
= inb(card
->iobase
+ ALI_CSPSR
);
2968 spin_unlock(&card
->ac97_lock
);
2971 outw(reg
, (card
->iobase
+ ALI_CPR
) + 2);
2972 for (count
= 0; count
< 0x7f; count
++) {
2973 val
= inb(card
->iobase
+ ALI_CSPSR
);
2975 data
= inw(card
->iobase
+ ALI_SPR
);
2976 addr2
= inw((card
->iobase
+ ALI_SPR
) + 2);
2980 spin_unlock(&card
->ac97_lock
);
2985 return ((u16
) data
);
2988 /* write ac97 codec register */
2990 static void ali_ac97_set(struct ac97_codec
*dev
, u8 reg
, u16 data
)
2992 struct ali_card
*card
= dev
->private_data
;
2995 unsigned short int count
;
2997 spin_lock(&card
->ac97_lock
);
2998 while (count1
-- && (inl(card
->iobase
+ ALI_CAS
) & 0x80000000))
3001 for (count
= 0; count
< 0x7f; count
++) {
3002 val
= inb(card
->iobase
+ ALI_CSPSR
);
3006 if (count
== 0x7f) {
3007 printk(KERN_WARNING
"ali_ac97_set: AC97 codec register access timed out. \n");
3008 spin_unlock(&card
->ac97_lock
);
3011 outw(data
, (card
->iobase
+ ALI_CPR
));
3012 outb(reg
, (card
->iobase
+ ALI_CPR
) + 2);
3013 for (count
= 0; count
< 0x7f; count
++) {
3014 val
= inb(card
->iobase
+ ALI_CSPSR
);
3018 spin_unlock(&card
->ac97_lock
);
3020 printk(KERN_WARNING
"ali_ac97_set: AC97 codec register access timed out. \n");
3024 /* OSS /dev/mixer file operation methods */
3026 static int ali_open_mixdev(struct inode
*inode
, struct file
*file
)
3029 int minor
= iminor(inode
);
3030 struct ali_card
*card
= devs
;
3031 for (card
= devs
; card
!= NULL
; card
= card
->next
) {
3033 * If we are initializing and then fail, card could go
3034 * away unuexpectedly while we are in the for() loop.
3035 * So, check for card on each iteration before we check
3036 * for card->initializing to avoid a possible oops.
3037 * This usually only matters for times when the driver is
3038 * autoloaded by kmod.
3040 for (i
= 0; i
< 50 && card
&& card
->initializing
; i
++) {
3041 set_current_state(TASK_UNINTERRUPTIBLE
);
3042 schedule_timeout(HZ
/ 20);
3044 for (i
= 0; i
< NR_AC97
&& card
&& !card
->initializing
; i
++)
3045 if (card
->ac97_codec
[i
] != NULL
3046 && card
->ac97_codec
[i
]->dev_mixer
== minor
) {
3047 file
->private_data
= card
->ac97_codec
[i
];
3048 return nonseekable_open(inode
, file
);
3054 static int ali_ioctl_mixdev(struct inode
*inode
,
3056 unsigned int cmd
, unsigned long arg
)
3058 struct ac97_codec
*codec
= (struct ac97_codec
*) file
->private_data
;
3059 return codec
->mixer_ioctl(codec
, cmd
, arg
);
3062 static /*const */ struct file_operations ali_mixer_fops
= {
3063 .owner
= THIS_MODULE
,
3064 .llseek
= no_llseek
,
3065 .ioctl
= ali_ioctl_mixdev
,
3066 .open
= ali_open_mixdev
,
3069 /* AC97 codec initialisation. These small functions exist so we don't
3070 duplicate code between module init and apm resume */
3072 static inline int ali_ac97_exists(struct ali_card
*card
, int ac97_number
)
3075 u32 reg
= inl(card
->iobase
+ ALI_RTSR
);
3079 reg
= inl(card
->iobase
+ ALI_RTSR
);
3083 outl(reg
| 0x00000040,
3084 card
->iobase
+ 0x34);
3092 reg
= inl(card
->iobase
+ ALI_RTSR
);
3096 outl(reg
| 0x00000080,
3097 card
->iobase
+ 0x34);
3110 static inline int ali_ac97_enable_variable_rate(struct ac97_codec
*codec
)
3112 ali_ac97_set(codec
, AC97_EXTENDED_STATUS
, 9);
3113 ali_ac97_set(codec
, AC97_EXTENDED_STATUS
, ali_ac97_get(codec
, AC97_EXTENDED_STATUS
) | 0xE800);
3114 return (ali_ac97_get(codec
, AC97_EXTENDED_STATUS
) & 1);
3118 static int ali_ac97_probe_and_powerup(struct ali_card
*card
, struct ac97_codec
*codec
)
3120 /* Returns 0 on failure */
3123 if (ac97_probe_codec(codec
) == 0)
3125 /* ac97_probe_codec is success ,then begin to init codec */
3126 ali_ac97_set(codec
, AC97_RESET
, 0xffff);
3127 if (card
->channel
[0].used
== 1) {
3128 ali_ac97_set(codec
, AC97_RECORD_SELECT
, 0x0000);
3129 ali_ac97_set(codec
, AC97_LINEIN_VOL
, 0x0808);
3130 ali_ac97_set(codec
, AC97_RECORD_GAIN
, 0x0F0F);
3133 if (card
->channel
[2].used
== 1) //if MICin then init codec
3135 ali_ac97_set(codec
, AC97_RECORD_SELECT
, 0x0000);
3136 ali_ac97_set(codec
, AC97_MIC_VOL
, 0x8808);
3137 ali_ac97_set(codec
, AC97_RECORD_GAIN
, 0x0F0F);
3138 ali_ac97_set(codec
, AC97_RECORD_GAIN_MIC
, 0x0000);
3141 ali_ac97_set(codec
, AC97_MASTER_VOL_STEREO
, 0x0000);
3142 ali_ac97_set(codec
, AC97_HEADPHONE_VOL
, 0x0000);
3143 ali_ac97_set(codec
, AC97_PCMOUT_VOL
, 0x0000);
3144 ali_ac97_set(codec
, AC97_CD_VOL
, 0x0808);
3145 ali_ac97_set(codec
, AC97_VIDEO_VOL
, 0x0808);
3146 ali_ac97_set(codec
, AC97_AUX_VOL
, 0x0808);
3147 ali_ac97_set(codec
, AC97_PHONE_VOL
, 0x8048);
3148 ali_ac97_set(codec
, AC97_PCBEEP_VOL
, 0x0000);
3149 ali_ac97_set(codec
, AC97_GENERAL_PURPOSE
, AC97_GP_MIX
);
3150 ali_ac97_set(codec
, AC97_MASTER_VOL_MONO
, 0x0000);
3151 ali_ac97_set(codec
, 0x38, 0x0000);
3152 addr
= ali_ac97_get(codec
, 0x2a);
3153 ali_ac97_set(codec
, 0x2a, addr
| 0x0001);
3154 addr
= ali_ac97_get(codec
, 0x2a);
3155 addr
= ali_ac97_get(codec
, 0x28);
3156 ali_ac97_set(codec
, 0x2c, 0xbb80);
3157 addr
= ali_ac97_get(codec
, 0x2c);
3158 /* power it all up */
3159 ali_ac97_set(codec
, AC97_POWER_CONTROL
,
3160 ali_ac97_get(codec
, AC97_POWER_CONTROL
) & ~0x7f00);
3161 /* wait for analog ready */
3162 for (i
= 10; i
&& ((ali_ac97_get(codec
, AC97_POWER_CONTROL
) & 0xf) != 0xf); i
--) {
3163 set_current_state(TASK_UNINTERRUPTIBLE
);
3164 schedule_timeout(HZ
/ 20);
3172 /* I clone ali5455(2.4.7 ) not clone i810_audio(2.4.18) */
3174 static int ali_reset_5455(struct ali_card
*card
)
3176 outl(0x80000003, card
->iobase
+ ALI_SCR
);
3177 outl(0x83838383, card
->iobase
+ ALI_FIFOCR1
);
3178 outl(0x83838383, card
->iobase
+ ALI_FIFOCR2
);
3179 if (controller_pcmout_share_spdif_locked
> 0) {
3180 outl((inl(card
->iobase
+ ALI_SPDIFICS
) | 0x00000001),
3181 card
->iobase
+ ALI_SPDIFICS
);
3182 outl(0x0408000a, card
->iobase
+ ALI_INTERFACECR
);
3184 if (codec_independent_spdif_locked
> 0) {
3185 outl((inl(card
->iobase
+ ALI_SCR
) | 0x00100000), card
->iobase
+ ALI_SCR
); // now I select slot 7 & 8
3186 outl(0x00200000, card
->iobase
+ ALI_INTERFACECR
); //enable codec independent spdifout
3188 outl(0x04080002, card
->iobase
+ ALI_INTERFACECR
);
3191 outl(0x00000000, card
->iobase
+ ALI_INTERRUPTCR
);
3192 outl(0x00000000, card
->iobase
+ ALI_INTERRUPTSR
);
3193 if (controller_independent_spdif_locked
> 0)
3194 outl((inl(card
->iobase
+ ALI_SPDIFICS
) | 0x00000001),
3195 card
->iobase
+ ALI_SPDIFICS
);
3200 static int ali_ac97_random_init_stuff(struct ali_card
3203 u32 reg
= inl(card
->iobase
+ ALI_SCR
);
3205 reg
= inl(card
->iobase
+ ALI_SCR
);
3206 if ((reg
& 2) == 0) /* Cold required */
3209 reg
|= 1; /* Warm */
3210 reg
&= ~0x80000000; /* ACLink on */
3211 outl(reg
, card
->iobase
+ ALI_SCR
);
3214 if ((inl(card
->iobase
+ 0x18) & (1 << 1)) == 0)
3216 current
->state
= TASK_UNINTERRUPTIBLE
;
3217 schedule_timeout(HZ
/ 20);
3221 printk(KERN_ERR
"ali_audio: AC'97 reset failed.\n");
3225 set_current_state(TASK_UNINTERRUPTIBLE
);
3226 schedule_timeout(HZ
/ 2);
3230 /* AC97 codec initialisation. */
3232 static int __devinit
ali_ac97_init(struct ali_card
*card
)
3235 int total_channels
= 0;
3236 struct ac97_codec
*codec
;
3239 if (!ali_ac97_random_init_stuff(card
))
3242 /* Number of channels supported */
3243 /* What about the codec? Just because the ICH supports */
3244 /* multiple channels doesn't mean the codec does. */
3245 /* we'll have to modify this in the codec section below */
3246 /* to reflect what the codec has. */
3247 /* ICH and ICH0 only support 2 channels so don't bother */
3249 inl(card
->iobase
+ ALI_CPR
);
3252 for (num_ac97
= 0; num_ac97
< NR_AC97
; num_ac97
++) {
3254 /* Assume codec isn't available until we go through the
3256 card
->ac97_codec
[num_ac97
] = NULL
;
3257 /* The ICH programmer's reference says you should */
3258 /* check the ready status before probing. So we chk */
3259 /* What do we do if it's not ready? Wait and try */
3260 /* again, or abort? */
3261 if (!ali_ac97_exists(card
, num_ac97
)) {
3263 printk(KERN_ERR
"ali_audio: Primary codec not ready.\n");
3267 if ((codec
= ac97_alloc_codec()) == NULL
)
3269 /* initialize some basic codec information, other fields will be filled
3270 in ac97_probe_codec */
3271 codec
->private_data
= card
;
3272 codec
->id
= num_ac97
;
3273 codec
->codec_read
= ali_ac97_get
;
3274 codec
->codec_write
= ali_ac97_set
;
3275 if (!ali_ac97_probe_and_powerup(card
, codec
)) {
3276 printk(KERN_ERR
"ali_audio: timed out waiting for codec %d analog ready",
3279 break; /* it didn't work */
3282 /* Store state information about S/PDIF transmitter */
3283 card
->ac97_status
= 0;
3284 /* Don't attempt to get eid until powerup is complete */
3285 eid
= ali_ac97_get(codec
, AC97_EXTENDED_ID
);
3286 if (eid
== 0xFFFF) {
3287 printk(KERN_ERR
"ali_audio: no codec attached ?\n");
3292 card
->ac97_features
= eid
;
3293 /* Now check the codec for useful features to make up for
3294 the dumbness of the ali5455 hardware engine */
3295 if (!(eid
& 0x0001))
3297 "ali_audio: only 48Khz playback available.\n");
3299 if (!ali_ac97_enable_variable_rate(codec
)) {
3301 "ali_audio: Codec refused to allow VRA, using 48Khz only.\n");
3302 card
->ac97_features
&= ~1;
3306 /* Determine how many channels the codec(s) support */
3307 /* - The primary codec always supports 2 */
3308 /* - If the codec supports AMAP, surround DACs will */
3309 /* automaticlly get assigned to slots. */
3310 /* * Check for surround DACs and increment if */
3312 /* - Else check if the codec is revision 2.2 */
3313 /* * If surround DACs exist, assign them to slots */
3314 /* and increment channel count. */
3316 /* All of this only applies to ICH2 and above. ICH */
3317 /* and ICH0 only support 2 channels. ICH2 will only */
3318 /* support multiple codecs in a "split audio" config. */
3319 /* as described above. */
3321 /* TODO: Remove all the debugging messages! */
3323 if ((eid
& 0xc000) == 0) /* primary codec */
3324 total_channels
+= 2;
3325 if ((codec
->dev_mixer
= register_sound_mixer(&ali_mixer_fops
, -1)) < 0) {
3326 printk(KERN_ERR
"ali_audio: couldn't register mixer!\n");
3330 card
->ac97_codec
[num_ac97
] = codec
;
3332 /* pick the minimum of channels supported by ICHx or codec(s) */
3333 card
->channels
= (card
->channels
> total_channels
) ? total_channels
: card
->channels
;
3337 static void __devinit
ali_configure_clocking(void)
3339 struct ali_card
*card
;
3340 struct ali_state
*state
;
3341 struct dmabuf
*dmabuf
;
3342 unsigned int i
, offset
, new_offset
;
3343 unsigned long flags
;
3346 /* We could try to set the clocking for multiple cards, but can you even have
3347 * more than one ali in a machine? Besides, clocking is global, so unless
3348 * someone actually thinks more than one ali in a machine is possible and
3349 * decides to rewrite that little bit, setting the rate for more than one card
3350 * is a waste of time.
3353 state
= card
->states
[0] = (struct ali_state
*)
3354 kmalloc(sizeof(struct ali_state
), GFP_KERNEL
);
3357 memset(state
, 0, sizeof(struct ali_state
));
3358 dmabuf
= &state
->dmabuf
;
3359 dmabuf
->write_channel
= card
->alloc_pcm_channel(card
);
3362 state
->magic
= ALI5455_STATE_MAGIC
;
3363 init_waitqueue_head(&dmabuf
->wait
);
3364 mutex_init(&state
->open_mutex
);
3365 dmabuf
->fmt
= ALI5455_FMT_STEREO
| ALI5455_FMT_16BIT
;
3366 dmabuf
->trigger
= PCM_ENABLE_OUTPUT
;
3367 ali_set_dac_rate(state
, 48000);
3368 if (prog_dmabuf(state
, 0) != 0)
3369 goto config_out_nodmabuf
;
3371 if (dmabuf
->dmasize
< 16384)
3374 dmabuf
->count
= dmabuf
->dmasize
;
3375 outb(31, card
->iobase
+ dmabuf
->write_channel
->port
+ OFF_LVI
);
3377 local_irq_save(flags
);
3379 offset
= ali_get_dma_addr(state
, 0);
3381 new_offset
= ali_get_dma_addr(state
, 0);
3384 outb(2, card
->iobase
+ dmabuf
->write_channel
->port
+ OFF_CR
);
3385 local_irq_restore(flags
);
3387 i
= new_offset
- offset
;
3392 if (i
> 48500 || i
< 47500) {
3393 clocking
= clocking
* clocking
/ i
;
3396 dealloc_dmabuf(state
);
3397 config_out_nodmabuf
:
3398 state
->card
->free_pcm_channel(state
->card
, state
->dmabuf
. write_channel
->num
);
3400 card
->states
[0] = NULL
;
3404 /* install the driver, we do not allocate hardware channel nor DMA buffer now, they are defered
3405 until "ACCESS" time (in prog_dmabuf called by open/read/write/ioctl/mmap) */
3407 static int __devinit
ali_probe(struct pci_dev
*pci_dev
,
3408 const struct pci_device_id
*pci_id
)
3410 struct ali_card
*card
;
3411 if (pci_enable_device(pci_dev
))
3413 if (pci_set_dma_mask(pci_dev
, ALI5455_DMA_MASK
)) {
3414 printk(KERN_ERR
"ali5455: architecture does not support"
3415 " 32bit PCI busmaster DMA\n");
3419 if ((card
= kmalloc(sizeof(struct ali_card
), GFP_KERNEL
)) == NULL
) {
3420 printk(KERN_ERR
"ali_audio: out of memory\n");
3423 memset(card
, 0, sizeof(*card
));
3424 card
->initializing
= 1;
3425 card
->iobase
= pci_resource_start(pci_dev
, 0);
3426 card
->pci_dev
= pci_dev
;
3427 card
->pci_id
= pci_id
->device
;
3428 card
->irq
= pci_dev
->irq
;
3430 card
->magic
= ALI5455_CARD_MAGIC
;
3432 card
->pm_suspended
= 0;
3434 spin_lock_init(&card
->lock
);
3435 spin_lock_init(&card
->ac97_lock
);
3437 pci_set_master(pci_dev
);
3438 printk(KERN_INFO
"ali: %s found at IO 0x%04lx, IRQ %d\n",
3439 card_names
[pci_id
->driver_data
], card
->iobase
, card
->irq
);
3440 card
->alloc_pcm_channel
= ali_alloc_pcm_channel
;
3441 card
->alloc_rec_pcm_channel
= ali_alloc_rec_pcm_channel
;
3442 card
->alloc_rec_mic_channel
= ali_alloc_rec_mic_channel
;
3443 card
->alloc_codec_spdifout_channel
= ali_alloc_codec_spdifout_channel
;
3444 card
->alloc_controller_spdifout_channel
= ali_alloc_controller_spdifout_channel
;
3445 card
->free_pcm_channel
= ali_free_pcm_channel
;
3446 card
->channel
[0].offset
= 0;
3447 card
->channel
[0].port
= 0x40;
3448 card
->channel
[0].num
= 0;
3449 card
->channel
[1].offset
= 0;
3450 card
->channel
[1].port
= 0x50;
3451 card
->channel
[1].num
= 1;
3452 card
->channel
[2].offset
= 0;
3453 card
->channel
[2].port
= 0x60;
3454 card
->channel
[2].num
= 2;
3455 card
->channel
[3].offset
= 0;
3456 card
->channel
[3].port
= 0x70;
3457 card
->channel
[3].num
= 3;
3458 card
->channel
[4].offset
= 0;
3459 card
->channel
[4].port
= 0xb0;
3460 card
->channel
[4].num
= 4;
3461 /* claim our iospace and irq */
3462 request_region(card
->iobase
, 256, card_names
[pci_id
->driver_data
]);
3463 if (request_irq(card
->irq
, &ali_interrupt
, IRQF_SHARED
,
3464 card_names
[pci_id
->driver_data
], card
)) {
3465 printk(KERN_ERR
"ali_audio: unable to allocate irq %d\n",
3467 release_region(card
->iobase
, 256);
3472 if (ali_reset_5455(card
) <= 0) {
3473 unregister_sound_dsp(card
->dev_audio
);
3474 release_region(card
->iobase
, 256);
3475 free_irq(card
->irq
, card
);
3480 /* initialize AC97 codec and register /dev/mixer */
3481 if (ali_ac97_init(card
) < 0) {
3482 release_region(card
->iobase
, 256);
3483 free_irq(card
->irq
, card
);
3488 pci_set_drvdata(pci_dev
, card
);
3490 if (clocking
== 0) {
3492 ali_configure_clocking();
3495 /* register /dev/dsp */
3496 if ((card
->dev_audio
= register_sound_dsp(&ali_audio_fops
, -1)) < 0) {
3498 printk(KERN_ERR
"ali_audio: couldn't register DSP device!\n");
3499 release_region(card
->iobase
, 256);
3500 free_irq(card
->irq
, card
);
3501 for (i
= 0; i
< NR_AC97
; i
++)
3502 if (card
->ac97_codec
[i
] != NULL
) {
3503 unregister_sound_mixer(card
->ac97_codec
[i
]->dev_mixer
);
3504 kfree(card
->ac97_codec
[i
]);
3509 card
->initializing
= 0;
3513 static void __devexit
ali_remove(struct pci_dev
*pci_dev
)
3516 struct ali_card
*card
= pci_get_drvdata(pci_dev
);
3517 /* free hardware resources */
3518 free_irq(card
->irq
, devs
);
3519 release_region(card
->iobase
, 256);
3520 /* unregister audio devices */
3521 for (i
= 0; i
< NR_AC97
; i
++)
3522 if (card
->ac97_codec
[i
] != NULL
) {
3523 unregister_sound_mixer(card
->ac97_codec
[i
]->
3525 ac97_release_codec(card
->ac97_codec
[i
]);
3526 card
->ac97_codec
[i
] = NULL
;
3528 unregister_sound_dsp(card
->dev_audio
);
3533 static int ali_pm_suspend(struct pci_dev
*dev
, pm_message_t pm_state
)
3535 struct ali_card
*card
= pci_get_drvdata(dev
);
3536 struct ali_state
*state
;
3537 unsigned long flags
;
3538 struct dmabuf
*dmabuf
;
3543 spin_lock_irqsave(&card
->lock
, flags
);
3544 card
->pm_suspended
= 1;
3545 for (i
= 0; i
< NR_HW_CH
; i
++) {
3546 state
= card
->states
[i
];
3549 /* this happens only if there are open files */
3550 dmabuf
= &state
->dmabuf
;
3551 if (dmabuf
->enable
& DAC_RUNNING
||
3553 && (dmabuf
->trigger
& PCM_ENABLE_OUTPUT
))) {
3554 state
->pm_saved_dac_rate
= dmabuf
->rate
;
3557 state
->pm_saved_dac_rate
= 0;
3559 if (dmabuf
->enable
& ADC_RUNNING
) {
3560 state
->pm_saved_adc_rate
= dmabuf
->rate
;
3563 state
->pm_saved_adc_rate
= 0;
3566 dmabuf
->swptr
= dmabuf
->hwptr
= 0;
3567 dmabuf
->count
= dmabuf
->total_bytes
= 0;
3570 spin_unlock_irqrestore(&card
->lock
, flags
);
3571 /* save mixer settings */
3572 for (num_ac97
= 0; num_ac97
< NR_AC97
; num_ac97
++) {
3573 struct ac97_codec
*codec
= card
->ac97_codec
[num_ac97
];
3576 for (i
= 0; i
< SOUND_MIXER_NRDEVICES
; i
++) {
3577 if ((supported_mixer(codec
, i
)) && (codec
->read_mixer
)) {
3578 card
->pm_saved_mixer_settings
[i
][num_ac97
] = codec
->read_mixer(codec
, i
);
3582 pci_save_state(dev
); /* XXX do we need this? */
3583 pci_disable_device(dev
); /* disable busmastering */
3584 pci_set_power_state(dev
, 3); /* Zzz. */
3589 static int ali_pm_resume(struct pci_dev
*dev
)
3591 int num_ac97
, i
= 0;
3592 struct ali_card
*card
= pci_get_drvdata(dev
);
3593 pci_enable_device(dev
);
3594 pci_restore_state(dev
);
3595 /* observation of a toshiba portege 3440ct suggests that the
3596 hardware has to be more or less completely reinitialized from
3597 scratch after an apm suspend. Works For Me. -dan */
3598 ali_ac97_random_init_stuff(card
);
3599 for (num_ac97
= 0; num_ac97
< NR_AC97
; num_ac97
++) {
3600 struct ac97_codec
*codec
= card
->ac97_codec
[num_ac97
];
3601 /* check they haven't stolen the hardware while we were
3603 if (!codec
|| !ali_ac97_exists(card
, num_ac97
)) {
3609 if (!ali_ac97_probe_and_powerup(card
, codec
))
3611 if ((card
->ac97_features
& 0x0001)) {
3612 /* at probe time we found we could do variable
3613 rates, but APM suspend has made it forget
3614 its magical powers */
3615 if (!ali_ac97_enable_variable_rate(codec
))
3618 /* we lost our mixer settings, so restore them */
3619 for (i
= 0; i
< SOUND_MIXER_NRDEVICES
; i
++) {
3620 if (supported_mixer(codec
, i
)) {
3621 int val
= card
->pm_saved_mixer_settings
[i
][num_ac97
];
3622 codec
->mixer_state
[i
] = val
;
3623 codec
->write_mixer(codec
, i
,
3625 ((val
>> 8) & 0xff));
3630 /* we need to restore the sample rate from whatever it was */
3631 for (i
= 0; i
< NR_HW_CH
; i
++) {
3632 struct ali_state
*state
= card
->states
[i
];
3634 if (state
->pm_saved_adc_rate
)
3635 ali_set_adc_rate(state
, state
->pm_saved_adc_rate
);
3636 if (state
->pm_saved_dac_rate
)
3637 ali_set_dac_rate(state
, state
->pm_saved_dac_rate
);
3641 card
->pm_suspended
= 0;
3642 /* any processes that were reading/writing during the suspend
3643 probably ended up here */
3644 for (i
= 0; i
< NR_HW_CH
; i
++) {
3645 struct ali_state
*state
= card
->states
[i
];
3647 wake_up(&state
->dmabuf
.wait
);
3651 #endif /* CONFIG_PM */
3654 MODULE_DESCRIPTION("ALI 5455 audio support");
3655 MODULE_LICENSE("GPL");
3656 module_param(clocking
, int, 0);
3658 module_param(strict_clocking
, uint
, 0);
3659 module_param(codec_pcmout_share_spdif_locked
, uint
, 0);
3660 module_param(codec_independent_spdif_locked
, uint
, 0);
3661 module_param(controller_pcmout_share_spdif_locked
, uint
, 0);
3662 module_param(controller_independent_spdif_locked
, uint
, 0);
3663 #define ALI5455_MODULE_NAME "ali5455"
3664 static struct pci_driver ali_pci_driver
= {
3665 .name
= ALI5455_MODULE_NAME
,
3666 .id_table
= ali_pci_tbl
,
3668 .remove
= __devexit_p(ali_remove
),
3670 .suspend
= ali_pm_suspend
,
3671 .resume
= ali_pm_resume
,
3672 #endif /* CONFIG_PM */
3675 static int __init
ali_init_module(void)
3677 printk(KERN_INFO
"ALI 5455 + AC97 Audio, version "
3678 DRIVER_VERSION
", " __TIME__
" " __DATE__
"\n");
3680 if (codec_independent_spdif_locked
> 0) {
3681 if (codec_independent_spdif_locked
== 32000
3682 || codec_independent_spdif_locked
== 44100
3683 || codec_independent_spdif_locked
== 48000) {
3684 printk(KERN_INFO
"ali_audio: Enabling S/PDIF at sample rate %dHz.\n", codec_independent_spdif_locked
);
3686 printk(KERN_INFO
"ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.\n");
3687 codec_independent_spdif_locked
= 0;
3690 if (controller_independent_spdif_locked
> 0) {
3691 if (controller_independent_spdif_locked
== 32000
3692 || controller_independent_spdif_locked
== 44100
3693 || controller_independent_spdif_locked
== 48000) {
3694 printk(KERN_INFO
"ali_audio: Enabling S/PDIF at sample rate %dHz.\n", controller_independent_spdif_locked
);
3696 printk(KERN_INFO
"ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.\n");
3697 controller_independent_spdif_locked
= 0;
3701 if (codec_pcmout_share_spdif_locked
> 0) {
3702 if (codec_pcmout_share_spdif_locked
== 32000
3703 || codec_pcmout_share_spdif_locked
== 44100
3704 || codec_pcmout_share_spdif_locked
== 48000) {
3705 printk(KERN_INFO
"ali_audio: Enabling S/PDIF at sample rate %dHz.\n", codec_pcmout_share_spdif_locked
);
3707 printk(KERN_INFO
"ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.\n");
3708 codec_pcmout_share_spdif_locked
= 0;
3711 if (controller_pcmout_share_spdif_locked
> 0) {
3712 if (controller_pcmout_share_spdif_locked
== 32000
3713 || controller_pcmout_share_spdif_locked
== 44100
3714 || controller_pcmout_share_spdif_locked
== 48000) {
3715 printk(KERN_INFO
"ali_audio: Enabling controller S/PDIF at sample rate %dHz.\n", controller_pcmout_share_spdif_locked
);
3717 printk(KERN_INFO
"ali_audio: S/PDIF can only be locked to 32000, 44100, or 48000Hz.\n");
3718 controller_pcmout_share_spdif_locked
= 0;
3721 return pci_register_driver(&ali_pci_driver
);
3724 static void __exit
ali_cleanup_module(void)
3726 pci_unregister_driver(&ali_pci_driver
);
3729 module_init(ali_init_module
);
3730 module_exit(ali_cleanup_module
);