blob: ab39c0b7cceeca40d117e2b4a40611feda8be37f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA driver for ATI IXP 150/200/250 AC97 modem controllers
3 *
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
22#include <sound/driver.h>
23#include <asm/io.h>
24#include <linux/delay.h>
25#include <linux/interrupt.h>
26#include <linux/init.h>
27#include <linux/pci.h>
28#include <linux/slab.h>
29#include <linux/moduleparam.h>
30#include <sound/core.h>
31#include <sound/pcm.h>
32#include <sound/pcm_params.h>
33#include <sound/info.h>
34#include <sound/ac97_codec.h>
35#include <sound/initval.h>
36
37MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>");
38MODULE_DESCRIPTION("ATI IXP MC97 controller");
39MODULE_LICENSE("GPL");
40MODULE_SUPPORTED_DEVICE("{{ATI,IXP150/200/250}}");
41
Clemens Ladischb7fe4622005-10-04 08:46:51 +020042static int index = -2; /* Exclude the first card */
43static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
44static int ac97_clock = 48000;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Clemens Ladischb7fe4622005-10-04 08:46:51 +020046module_param(index, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047MODULE_PARM_DESC(index, "Index value for ATI IXP controller.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020048module_param(id, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049MODULE_PARM_DESC(id, "ID string for ATI IXP controller.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020050module_param(ac97_clock, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (default 48000Hz).");
52
Takashi Iwai2b3e5842005-10-06 13:47:23 +020053/* just for backward compatibility */
54static int enable;
55module_param(enable, int, 0444);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58/*
59 */
60
61#define ATI_REG_ISR 0x00 /* interrupt source */
62#define ATI_REG_ISR_MODEM_IN_XRUN (1U<<0)
63#define ATI_REG_ISR_MODEM_IN_STATUS (1U<<1)
64#define ATI_REG_ISR_MODEM_OUT1_XRUN (1U<<2)
65#define ATI_REG_ISR_MODEM_OUT1_STATUS (1U<<3)
66#define ATI_REG_ISR_MODEM_OUT2_XRUN (1U<<4)
67#define ATI_REG_ISR_MODEM_OUT2_STATUS (1U<<5)
68#define ATI_REG_ISR_MODEM_OUT3_XRUN (1U<<6)
69#define ATI_REG_ISR_MODEM_OUT3_STATUS (1U<<7)
70#define ATI_REG_ISR_PHYS_INTR (1U<<8)
71#define ATI_REG_ISR_PHYS_MISMATCH (1U<<9)
72#define ATI_REG_ISR_CODEC0_NOT_READY (1U<<10)
73#define ATI_REG_ISR_CODEC1_NOT_READY (1U<<11)
74#define ATI_REG_ISR_CODEC2_NOT_READY (1U<<12)
75#define ATI_REG_ISR_NEW_FRAME (1U<<13)
76#define ATI_REG_ISR_MODEM_GPIO_DATA (1U<<14)
77
78#define ATI_REG_IER 0x04 /* interrupt enable */
79#define ATI_REG_IER_MODEM_IN_XRUN_EN (1U<<0)
80#define ATI_REG_IER_MODEM_STATUS_EN (1U<<1)
81#define ATI_REG_IER_MODEM_OUT1_XRUN_EN (1U<<2)
82#define ATI_REG_IER_MODEM_OUT2_XRUN_EN (1U<<4)
83#define ATI_REG_IER_MODEM_OUT3_XRUN_EN (1U<<6)
84#define ATI_REG_IER_PHYS_INTR_EN (1U<<8)
85#define ATI_REG_IER_PHYS_MISMATCH_EN (1U<<9)
86#define ATI_REG_IER_CODEC0_INTR_EN (1U<<10)
87#define ATI_REG_IER_CODEC1_INTR_EN (1U<<11)
88#define ATI_REG_IER_CODEC2_INTR_EN (1U<<12)
89#define ATI_REG_IER_NEW_FRAME_EN (1U<<13) /* (RO */
90#define ATI_REG_IER_MODEM_GPIO_DATA_EN (1U<<14) /* (WO) modem is running */
91#define ATI_REG_IER_MODEM_SET_BUS_BUSY (1U<<15)
92
93#define ATI_REG_CMD 0x08 /* command */
94#define ATI_REG_CMD_POWERDOWN (1U<<0)
95#define ATI_REG_CMD_MODEM_RECEIVE_EN (1U<<1) /* modem only */
96#define ATI_REG_CMD_MODEM_SEND1_EN (1U<<2) /* modem only */
97#define ATI_REG_CMD_MODEM_SEND2_EN (1U<<3) /* modem only */
98#define ATI_REG_CMD_MODEM_SEND3_EN (1U<<4) /* modem only */
99#define ATI_REG_CMD_MODEM_STATUS_MEM (1U<<5) /* modem only */
100#define ATI_REG_CMD_MODEM_IN_DMA_EN (1U<<8) /* modem only */
101#define ATI_REG_CMD_MODEM_OUT_DMA1_EN (1U<<9) /* modem only */
102#define ATI_REG_CMD_MODEM_OUT_DMA2_EN (1U<<10) /* modem only */
103#define ATI_REG_CMD_MODEM_OUT_DMA3_EN (1U<<11) /* modem only */
104#define ATI_REG_CMD_AUDIO_PRESENT (1U<<20)
105#define ATI_REG_CMD_MODEM_GPIO_THRU_DMA (1U<<22) /* modem only */
106#define ATI_REG_CMD_LOOPBACK_EN (1U<<23)
107#define ATI_REG_CMD_PACKED_DIS (1U<<24)
108#define ATI_REG_CMD_BURST_EN (1U<<25)
109#define ATI_REG_CMD_PANIC_EN (1U<<26)
110#define ATI_REG_CMD_MODEM_PRESENT (1U<<27)
111#define ATI_REG_CMD_ACLINK_ACTIVE (1U<<28)
112#define ATI_REG_CMD_AC_SOFT_RESET (1U<<29)
113#define ATI_REG_CMD_AC_SYNC (1U<<30)
114#define ATI_REG_CMD_AC_RESET (1U<<31)
115
116#define ATI_REG_PHYS_OUT_ADDR 0x0c
117#define ATI_REG_PHYS_OUT_CODEC_MASK (3U<<0)
118#define ATI_REG_PHYS_OUT_RW (1U<<2)
119#define ATI_REG_PHYS_OUT_ADDR_EN (1U<<8)
120#define ATI_REG_PHYS_OUT_ADDR_SHIFT 9
121#define ATI_REG_PHYS_OUT_DATA_SHIFT 16
122
123#define ATI_REG_PHYS_IN_ADDR 0x10
124#define ATI_REG_PHYS_IN_READ_FLAG (1U<<8)
125#define ATI_REG_PHYS_IN_ADDR_SHIFT 9
126#define ATI_REG_PHYS_IN_DATA_SHIFT 16
127
128#define ATI_REG_SLOTREQ 0x14
129
130#define ATI_REG_COUNTER 0x18
131#define ATI_REG_COUNTER_SLOT (3U<<0) /* slot # */
132#define ATI_REG_COUNTER_BITCLOCK (31U<<8)
133
134#define ATI_REG_IN_FIFO_THRESHOLD 0x1c
135
136#define ATI_REG_MODEM_IN_DMA_LINKPTR 0x20
137#define ATI_REG_MODEM_IN_DMA_DT_START 0x24 /* RO */
138#define ATI_REG_MODEM_IN_DMA_DT_NEXT 0x28 /* RO */
139#define ATI_REG_MODEM_IN_DMA_DT_CUR 0x2c /* RO */
140#define ATI_REG_MODEM_IN_DMA_DT_SIZE 0x30
141#define ATI_REG_MODEM_OUT_FIFO 0x34 /* output threshold */
142#define ATI_REG_MODEM_OUT1_DMA_THRESHOLD_MASK (0xf<<16)
143#define ATI_REG_MODEM_OUT1_DMA_THRESHOLD_SHIFT 16
144#define ATI_REG_MODEM_OUT_DMA1_LINKPTR 0x38
145#define ATI_REG_MODEM_OUT_DMA2_LINKPTR 0x3c
146#define ATI_REG_MODEM_OUT_DMA3_LINKPTR 0x40
147#define ATI_REG_MODEM_OUT_DMA1_DT_START 0x44
148#define ATI_REG_MODEM_OUT_DMA1_DT_NEXT 0x48
149#define ATI_REG_MODEM_OUT_DMA1_DT_CUR 0x4c
150#define ATI_REG_MODEM_OUT_DMA2_DT_START 0x50
151#define ATI_REG_MODEM_OUT_DMA2_DT_NEXT 0x54
152#define ATI_REG_MODEM_OUT_DMA2_DT_CUR 0x58
153#define ATI_REG_MODEM_OUT_DMA3_DT_START 0x5c
154#define ATI_REG_MODEM_OUT_DMA3_DT_NEXT 0x60
155#define ATI_REG_MODEM_OUT_DMA3_DT_CUR 0x64
156#define ATI_REG_MODEM_OUT_DMA12_DT_SIZE 0x68
157#define ATI_REG_MODEM_OUT_DMA3_DT_SIZE 0x6c
158#define ATI_REG_MODEM_OUT_FIFO_USED 0x70
159#define ATI_REG_MODEM_OUT_GPIO 0x74
160#define ATI_REG_MODEM_OUT_GPIO_EN 1
161#define ATI_REG_MODEM_OUT_GPIO_DATA_SHIFT 5
162#define ATI_REG_MODEM_IN_GPIO 0x78
163
164#define ATI_REG_MODEM_MIRROR 0x7c
165#define ATI_REG_AUDIO_MIRROR 0x80
166
167#define ATI_REG_MODEM_FIFO_FLUSH 0x88
168#define ATI_REG_MODEM_FIFO_OUT1_FLUSH (1U<<0)
169#define ATI_REG_MODEM_FIFO_OUT2_FLUSH (1U<<1)
170#define ATI_REG_MODEM_FIFO_OUT3_FLUSH (1U<<2)
171#define ATI_REG_MODEM_FIFO_IN_FLUSH (1U<<3)
172
173/* LINKPTR */
174#define ATI_REG_LINKPTR_EN (1U<<0)
175
176#define ATI_MAX_DESCRIPTORS 256 /* max number of descriptor packets */
177
178
179/*
180 */
181
182typedef struct snd_atiixp atiixp_t;
183typedef struct snd_atiixp_dma atiixp_dma_t;
184typedef struct snd_atiixp_dma_ops atiixp_dma_ops_t;
185
186
187/*
188 * DMA packate descriptor
189 */
190
191typedef struct atiixp_dma_desc {
192 u32 addr; /* DMA buffer address */
193 u16 status; /* status bits */
194 u16 size; /* size of the packet in dwords */
195 u32 next; /* address of the next packet descriptor */
196} atiixp_dma_desc_t;
197
198/*
199 * stream enum
200 */
201enum { ATI_DMA_PLAYBACK, ATI_DMA_CAPTURE, NUM_ATI_DMAS }; /* DMAs */
202enum { ATI_PCM_OUT, ATI_PCM_IN, NUM_ATI_PCMS }; /* AC97 pcm slots */
203enum { ATI_PCMDEV_ANALOG, NUM_ATI_PCMDEVS }; /* pcm devices */
204
205#define NUM_ATI_CODECS 3
206
207
208/*
209 * constants and callbacks for each DMA type
210 */
211struct snd_atiixp_dma_ops {
212 int type; /* ATI_DMA_XXX */
213 unsigned int llp_offset; /* LINKPTR offset */
214 unsigned int dt_cur; /* DT_CUR offset */
215 void (*enable_dma)(atiixp_t *chip, int on); /* called from open callback */
216 void (*enable_transfer)(atiixp_t *chip, int on); /* called from trigger (START/STOP) */
217 void (*flush_dma)(atiixp_t *chip); /* called from trigger (STOP only) */
218};
219
220/*
221 * DMA stream
222 */
223struct snd_atiixp_dma {
224 const atiixp_dma_ops_t *ops;
225 struct snd_dma_buffer desc_buf;
226 snd_pcm_substream_t *substream; /* assigned PCM substream */
227 unsigned int buf_addr, buf_bytes; /* DMA buffer address, bytes */
228 unsigned int period_bytes, periods;
229 int opened;
230 int running;
231 int pcm_open_flag;
232 int ac97_pcm_type; /* index # of ac97_pcm to access, -1 = not used */
233};
234
235/*
236 * ATI IXP chip
237 */
238struct snd_atiixp {
239 snd_card_t *card;
240 struct pci_dev *pci;
241
242 struct resource *res; /* memory i/o */
243 unsigned long addr;
244 void __iomem *remap_addr;
245 int irq;
246
247 ac97_bus_t *ac97_bus;
248 ac97_t *ac97[NUM_ATI_CODECS];
249
250 spinlock_t reg_lock;
251
252 atiixp_dma_t dmas[NUM_ATI_DMAS];
253 struct ac97_pcm *pcms[NUM_ATI_PCMS];
254 snd_pcm_t *pcmdevs[NUM_ATI_PCMDEVS];
255
256 int max_channels; /* max. channels for PCM out */
257
258 unsigned int codec_not_ready_bits; /* for codec detection */
259
260 int spdif_over_aclink; /* passed from the module option */
261 struct semaphore open_mutex; /* playback open mutex */
262};
263
264
265/*
266 */
267static struct pci_device_id snd_atiixp_ids[] = {
268 { 0x1002, 0x434d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* SB200 */
Harald Welte548e7822005-06-27 15:10:56 +0200269 { 0x1002, 0x4378, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, /* SB400 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 { 0, }
271};
272
273MODULE_DEVICE_TABLE(pci, snd_atiixp_ids);
274
275
276/*
277 * lowlevel functions
278 */
279
280/*
281 * update the bits of the given register.
282 * return 1 if the bits changed.
283 */
284static int snd_atiixp_update_bits(atiixp_t *chip, unsigned int reg,
285 unsigned int mask, unsigned int value)
286{
287 void __iomem *addr = chip->remap_addr + reg;
288 unsigned int data, old_data;
289 old_data = data = readl(addr);
290 data &= ~mask;
291 data |= value;
292 if (old_data == data)
293 return 0;
294 writel(data, addr);
295 return 1;
296}
297
298/*
299 * macros for easy use
300 */
301#define atiixp_write(chip,reg,value) \
302 writel(value, chip->remap_addr + ATI_REG_##reg)
303#define atiixp_read(chip,reg) \
304 readl(chip->remap_addr + ATI_REG_##reg)
305#define atiixp_update(chip,reg,mask,val) \
306 snd_atiixp_update_bits(chip, ATI_REG_##reg, mask, val)
307
308/* delay for one tick */
309#define do_delay() do { \
310 set_current_state(TASK_UNINTERRUPTIBLE); \
311 schedule_timeout(1); \
312} while (0)
313
314
315/*
316 * handling DMA packets
317 *
318 * we allocate a linear buffer for the DMA, and split it to each packet.
319 * in a future version, a scatter-gather buffer should be implemented.
320 */
321
322#define ATI_DESC_LIST_SIZE \
323 PAGE_ALIGN(ATI_MAX_DESCRIPTORS * sizeof(atiixp_dma_desc_t))
324
325/*
326 * build packets ring for the given buffer size.
327 *
328 * IXP handles the buffer descriptors, which are connected as a linked
329 * list. although we can change the list dynamically, in this version,
330 * a static RING of buffer descriptors is used.
331 *
332 * the ring is built in this function, and is set up to the hardware.
333 */
334static int atiixp_build_dma_packets(atiixp_t *chip, atiixp_dma_t *dma,
335 snd_pcm_substream_t *substream,
336 unsigned int periods,
337 unsigned int period_bytes)
338{
339 unsigned int i;
340 u32 addr, desc_addr;
341 unsigned long flags;
342
343 if (periods > ATI_MAX_DESCRIPTORS)
344 return -ENOMEM;
345
346 if (dma->desc_buf.area == NULL) {
347 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
348 ATI_DESC_LIST_SIZE, &dma->desc_buf) < 0)
349 return -ENOMEM;
350 dma->period_bytes = dma->periods = 0; /* clear */
351 }
352
353 if (dma->periods == periods && dma->period_bytes == period_bytes)
354 return 0;
355
356 /* reset DMA before changing the descriptor table */
357 spin_lock_irqsave(&chip->reg_lock, flags);
358 writel(0, chip->remap_addr + dma->ops->llp_offset);
359 dma->ops->enable_dma(chip, 0);
360 dma->ops->enable_dma(chip, 1);
361 spin_unlock_irqrestore(&chip->reg_lock, flags);
362
363 /* fill the entries */
364 addr = (u32)substream->runtime->dma_addr;
365 desc_addr = (u32)dma->desc_buf.addr;
366 for (i = 0; i < periods; i++) {
367 atiixp_dma_desc_t *desc = &((atiixp_dma_desc_t *)dma->desc_buf.area)[i];
368 desc->addr = cpu_to_le32(addr);
369 desc->status = 0;
370 desc->size = period_bytes >> 2; /* in dwords */
371 desc_addr += sizeof(atiixp_dma_desc_t);
372 if (i == periods - 1)
373 desc->next = cpu_to_le32((u32)dma->desc_buf.addr);
374 else
375 desc->next = cpu_to_le32(desc_addr);
376 addr += period_bytes;
377 }
378
379 writel((u32)dma->desc_buf.addr | ATI_REG_LINKPTR_EN,
380 chip->remap_addr + dma->ops->llp_offset);
381
382 dma->period_bytes = period_bytes;
383 dma->periods = periods;
384
385 return 0;
386}
387
388/*
389 * remove the ring buffer and release it if assigned
390 */
391static void atiixp_clear_dma_packets(atiixp_t *chip, atiixp_dma_t *dma, snd_pcm_substream_t *substream)
392{
393 if (dma->desc_buf.area) {
394 writel(0, chip->remap_addr + dma->ops->llp_offset);
395 snd_dma_free_pages(&dma->desc_buf);
396 dma->desc_buf.area = NULL;
397 }
398}
399
400/*
401 * AC97 interface
402 */
403static int snd_atiixp_acquire_codec(atiixp_t *chip)
404{
405 int timeout = 1000;
406
407 while (atiixp_read(chip, PHYS_OUT_ADDR) & ATI_REG_PHYS_OUT_ADDR_EN) {
408 if (! timeout--) {
Chuck Ebbert98b4f592005-09-22 21:44:08 -0700409 snd_printk(KERN_WARNING "atiixp-modem: codec acquire timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return -EBUSY;
411 }
412 udelay(1);
413 }
414 return 0;
415}
416
417static unsigned short snd_atiixp_codec_read(atiixp_t *chip, unsigned short codec, unsigned short reg)
418{
419 unsigned int data;
420 int timeout;
421
422 if (snd_atiixp_acquire_codec(chip) < 0)
423 return 0xffff;
424 data = (reg << ATI_REG_PHYS_OUT_ADDR_SHIFT) |
425 ATI_REG_PHYS_OUT_ADDR_EN |
426 ATI_REG_PHYS_OUT_RW |
427 codec;
428 atiixp_write(chip, PHYS_OUT_ADDR, data);
429 if (snd_atiixp_acquire_codec(chip) < 0)
430 return 0xffff;
431 timeout = 1000;
432 do {
433 data = atiixp_read(chip, PHYS_IN_ADDR);
434 if (data & ATI_REG_PHYS_IN_READ_FLAG)
435 return data >> ATI_REG_PHYS_IN_DATA_SHIFT;
436 udelay(1);
437 } while (--timeout);
438 /* time out may happen during reset */
439 if (reg < 0x7c)
Chuck Ebbert98b4f592005-09-22 21:44:08 -0700440 snd_printk(KERN_WARNING "atiixp-modem: codec read timeout (reg %x)\n", reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return 0xffff;
442}
443
444
445static void snd_atiixp_codec_write(atiixp_t *chip, unsigned short codec, unsigned short reg, unsigned short val)
446{
447 unsigned int data;
448
449 if (snd_atiixp_acquire_codec(chip) < 0)
450 return;
451 data = ((unsigned int)val << ATI_REG_PHYS_OUT_DATA_SHIFT) |
452 ((unsigned int)reg << ATI_REG_PHYS_OUT_ADDR_SHIFT) |
453 ATI_REG_PHYS_OUT_ADDR_EN | codec;
454 atiixp_write(chip, PHYS_OUT_ADDR, data);
455}
456
457
458static unsigned short snd_atiixp_ac97_read(ac97_t *ac97, unsigned short reg)
459{
460 atiixp_t *chip = ac97->private_data;
461 return snd_atiixp_codec_read(chip, ac97->num, reg);
462
463}
464
465static void snd_atiixp_ac97_write(ac97_t *ac97, unsigned short reg, unsigned short val)
466{
467 atiixp_t *chip = ac97->private_data;
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200468 if (reg == AC97_GPIO_STATUS) {
469 atiixp_write(chip, MODEM_OUT_GPIO,
470 (val << ATI_REG_MODEM_OUT_GPIO_DATA_SHIFT) | ATI_REG_MODEM_OUT_GPIO_EN);
471 return;
472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 snd_atiixp_codec_write(chip, ac97->num, reg, val);
474}
475
476/*
477 * reset AC link
478 */
479static int snd_atiixp_aclink_reset(atiixp_t *chip)
480{
481 int timeout;
482
483 /* reset powerdoewn */
484 if (atiixp_update(chip, CMD, ATI_REG_CMD_POWERDOWN, 0))
485 udelay(10);
486
487 /* perform a software reset */
488 atiixp_update(chip, CMD, ATI_REG_CMD_AC_SOFT_RESET, ATI_REG_CMD_AC_SOFT_RESET);
489 atiixp_read(chip, CMD);
490 udelay(10);
491 atiixp_update(chip, CMD, ATI_REG_CMD_AC_SOFT_RESET, 0);
492
493 timeout = 10;
494 while (! (atiixp_read(chip, CMD) & ATI_REG_CMD_ACLINK_ACTIVE)) {
495 /* do a hard reset */
496 atiixp_update(chip, CMD, ATI_REG_CMD_AC_SYNC|ATI_REG_CMD_AC_RESET,
497 ATI_REG_CMD_AC_SYNC);
498 atiixp_read(chip, CMD);
499 do_delay();
500 atiixp_update(chip, CMD, ATI_REG_CMD_AC_RESET, ATI_REG_CMD_AC_RESET);
501 if (--timeout) {
Chuck Ebbert98b4f592005-09-22 21:44:08 -0700502 snd_printk(KERN_ERR "atiixp-modem: codec reset timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 break;
504 }
505 }
506
507 /* deassert RESET and assert SYNC to make sure */
508 atiixp_update(chip, CMD, ATI_REG_CMD_AC_SYNC|ATI_REG_CMD_AC_RESET,
509 ATI_REG_CMD_AC_SYNC|ATI_REG_CMD_AC_RESET);
510
511 return 0;
512}
513
514#ifdef CONFIG_PM
515static int snd_atiixp_aclink_down(atiixp_t *chip)
516{
517 // if (atiixp_read(chip, MODEM_MIRROR) & 0x1) /* modem running, too? */
518 // return -EBUSY;
519 atiixp_update(chip, CMD,
520 ATI_REG_CMD_POWERDOWN | ATI_REG_CMD_AC_RESET,
521 ATI_REG_CMD_POWERDOWN);
522 return 0;
523}
524#endif
525
526/*
527 * auto-detection of codecs
528 *
529 * the IXP chip can generate interrupts for the non-existing codecs.
530 * NEW_FRAME interrupt is used to make sure that the interrupt is generated
531 * even if all three codecs are connected.
532 */
533
534#define ALL_CODEC_NOT_READY \
535 (ATI_REG_ISR_CODEC0_NOT_READY |\
536 ATI_REG_ISR_CODEC1_NOT_READY |\
537 ATI_REG_ISR_CODEC2_NOT_READY)
538#define CODEC_CHECK_BITS (ALL_CODEC_NOT_READY|ATI_REG_ISR_NEW_FRAME)
539
540static int snd_atiixp_codec_detect(atiixp_t *chip)
541{
542 int timeout;
543
544 chip->codec_not_ready_bits = 0;
545 atiixp_write(chip, IER, CODEC_CHECK_BITS);
546 /* wait for the interrupts */
547 timeout = HZ / 10;
548 while (timeout-- > 0) {
549 do_delay();
550 if (chip->codec_not_ready_bits)
551 break;
552 }
553 atiixp_write(chip, IER, 0); /* disable irqs */
554
555 if ((chip->codec_not_ready_bits & ALL_CODEC_NOT_READY) == ALL_CODEC_NOT_READY) {
Chuck Ebbert98b4f592005-09-22 21:44:08 -0700556 snd_printk(KERN_ERR "atiixp-modem: no codec detected!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return -ENXIO;
558 }
559 return 0;
560}
561
562
563/*
564 * enable DMA and irqs
565 */
566static int snd_atiixp_chip_start(atiixp_t *chip)
567{
568 unsigned int reg;
569
570 /* set up spdif, enable burst mode */
571 reg = atiixp_read(chip, CMD);
572 reg |= ATI_REG_CMD_BURST_EN;
573 if(!(reg & ATI_REG_CMD_MODEM_PRESENT))
574 reg |= ATI_REG_CMD_MODEM_PRESENT;
575 atiixp_write(chip, CMD, reg);
576
577 /* clear all interrupt source */
578 atiixp_write(chip, ISR, 0xffffffff);
579 /* enable irqs */
580 atiixp_write(chip, IER,
581 ATI_REG_IER_MODEM_STATUS_EN |
582 ATI_REG_IER_MODEM_IN_XRUN_EN |
583 ATI_REG_IER_MODEM_OUT1_XRUN_EN);
584 return 0;
585}
586
587
588/*
589 * disable DMA and IRQs
590 */
591static int snd_atiixp_chip_stop(atiixp_t *chip)
592{
593 /* clear interrupt source */
594 atiixp_write(chip, ISR, atiixp_read(chip, ISR));
595 /* disable irqs */
596 atiixp_write(chip, IER, 0);
597 return 0;
598}
599
600
601/*
602 * PCM section
603 */
604
605/*
606 * pointer callback simplly reads XXX_DMA_DT_CUR register as the current
607 * position. when SG-buffer is implemented, the offset must be calculated
608 * correctly...
609 */
610static snd_pcm_uframes_t snd_atiixp_pcm_pointer(snd_pcm_substream_t *substream)
611{
612 atiixp_t *chip = snd_pcm_substream_chip(substream);
613 snd_pcm_runtime_t *runtime = substream->runtime;
614 atiixp_dma_t *dma = (atiixp_dma_t *)runtime->private_data;
615 unsigned int curptr;
616 int timeout = 1000;
617
618 while (timeout--) {
619 curptr = readl(chip->remap_addr + dma->ops->dt_cur);
620 if (curptr < dma->buf_addr)
621 continue;
622 curptr -= dma->buf_addr;
623 if (curptr >= dma->buf_bytes)
624 continue;
625 return bytes_to_frames(runtime, curptr);
626 }
627 snd_printd("atiixp-modem: invalid DMA pointer read 0x%x (buf=%x)\n",
628 readl(chip->remap_addr + dma->ops->dt_cur), dma->buf_addr);
629 return 0;
630}
631
632/*
633 * XRUN detected, and stop the PCM substream
634 */
635static void snd_atiixp_xrun_dma(atiixp_t *chip, atiixp_dma_t *dma)
636{
637 if (! dma->substream || ! dma->running)
638 return;
Chuck Ebbert98b4f592005-09-22 21:44:08 -0700639 snd_printdd("atiixp-modem: XRUN detected (DMA %d)\n", dma->ops->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 snd_pcm_stop(dma->substream, SNDRV_PCM_STATE_XRUN);
641}
642
643/*
644 * the period ack. update the substream.
645 */
646static void snd_atiixp_update_dma(atiixp_t *chip, atiixp_dma_t *dma)
647{
648 if (! dma->substream || ! dma->running)
649 return;
650 snd_pcm_period_elapsed(dma->substream);
651}
652
653/* set BUS_BUSY interrupt bit if any DMA is running */
654/* call with spinlock held */
655static void snd_atiixp_check_bus_busy(atiixp_t *chip)
656{
657 unsigned int bus_busy;
658 if (atiixp_read(chip, CMD) & (ATI_REG_CMD_MODEM_SEND1_EN |
659 ATI_REG_CMD_MODEM_RECEIVE_EN))
660 bus_busy = ATI_REG_IER_MODEM_SET_BUS_BUSY;
661 else
662 bus_busy = 0;
663 atiixp_update(chip, IER, ATI_REG_IER_MODEM_SET_BUS_BUSY, bus_busy);
664}
665
666/* common trigger callback
667 * calling the lowlevel callbacks in it
668 */
669static int snd_atiixp_pcm_trigger(snd_pcm_substream_t *substream, int cmd)
670{
671 atiixp_t *chip = snd_pcm_substream_chip(substream);
672 atiixp_dma_t *dma = (atiixp_dma_t *)substream->runtime->private_data;
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200673 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675 snd_assert(dma->ops->enable_transfer && dma->ops->flush_dma, return -EINVAL);
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 spin_lock(&chip->reg_lock);
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200678 switch(cmd) {
679 case SNDRV_PCM_TRIGGER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 dma->ops->enable_transfer(chip, 1);
681 dma->running = 1;
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200682 break;
683 case SNDRV_PCM_TRIGGER_STOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 dma->ops->enable_transfer(chip, 0);
685 dma->running = 0;
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200686 break;
687 default:
688 err = -EINVAL;
689 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 }
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200691 if (! err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 snd_atiixp_check_bus_busy(chip);
693 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
694 dma->ops->flush_dma(chip);
695 snd_atiixp_check_bus_busy(chip);
696 }
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 spin_unlock(&chip->reg_lock);
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200699 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
702
703/*
704 * lowlevel callbacks for each DMA type
705 *
706 * every callback is supposed to be called in chip->reg_lock spinlock
707 */
708
709/* flush FIFO of analog OUT DMA */
710static void atiixp_out_flush_dma(atiixp_t *chip)
711{
712 atiixp_write(chip, MODEM_FIFO_FLUSH, ATI_REG_MODEM_FIFO_OUT1_FLUSH);
713}
714
715/* enable/disable analog OUT DMA */
716static void atiixp_out_enable_dma(atiixp_t *chip, int on)
717{
718 unsigned int data;
719 data = atiixp_read(chip, CMD);
720 if (on) {
721 if (data & ATI_REG_CMD_MODEM_OUT_DMA1_EN)
722 return;
723 atiixp_out_flush_dma(chip);
724 data |= ATI_REG_CMD_MODEM_OUT_DMA1_EN;
725 } else
726 data &= ~ATI_REG_CMD_MODEM_OUT_DMA1_EN;
727 atiixp_write(chip, CMD, data);
728}
729
730/* start/stop transfer over OUT DMA */
731static void atiixp_out_enable_transfer(atiixp_t *chip, int on)
732{
733 atiixp_update(chip, CMD, ATI_REG_CMD_MODEM_SEND1_EN,
734 on ? ATI_REG_CMD_MODEM_SEND1_EN : 0);
735}
736
737/* enable/disable analog IN DMA */
738static void atiixp_in_enable_dma(atiixp_t *chip, int on)
739{
740 atiixp_update(chip, CMD, ATI_REG_CMD_MODEM_IN_DMA_EN,
741 on ? ATI_REG_CMD_MODEM_IN_DMA_EN : 0);
742}
743
744/* start/stop analog IN DMA */
745static void atiixp_in_enable_transfer(atiixp_t *chip, int on)
746{
747 if (on) {
748 unsigned int data = atiixp_read(chip, CMD);
749 if (! (data & ATI_REG_CMD_MODEM_RECEIVE_EN)) {
750 data |= ATI_REG_CMD_MODEM_RECEIVE_EN;
751 atiixp_write(chip, CMD, data);
752 }
753 } else
754 atiixp_update(chip, CMD, ATI_REG_CMD_MODEM_RECEIVE_EN, 0);
755}
756
757/* flush FIFO of analog IN DMA */
758static void atiixp_in_flush_dma(atiixp_t *chip)
759{
760 atiixp_write(chip, MODEM_FIFO_FLUSH, ATI_REG_MODEM_FIFO_IN_FLUSH);
761}
762
763/* set up slots and formats for analog OUT */
764static int snd_atiixp_playback_prepare(snd_pcm_substream_t *substream)
765{
766 atiixp_t *chip = snd_pcm_substream_chip(substream);
767 unsigned int data;
768
769 spin_lock_irq(&chip->reg_lock);
770 /* set output threshold */
771 data = atiixp_read(chip, MODEM_OUT_FIFO);
772 data &= ~ATI_REG_MODEM_OUT1_DMA_THRESHOLD_MASK;
773 data |= 0x04 << ATI_REG_MODEM_OUT1_DMA_THRESHOLD_SHIFT;
774 atiixp_write(chip, MODEM_OUT_FIFO, data);
775 spin_unlock_irq(&chip->reg_lock);
776 return 0;
777}
778
779/* set up slots and formats for analog IN */
780static int snd_atiixp_capture_prepare(snd_pcm_substream_t *substream)
781{
782 return 0;
783}
784
785/*
786 * hw_params - allocate the buffer and set up buffer descriptors
787 */
788static int snd_atiixp_pcm_hw_params(snd_pcm_substream_t *substream,
789 snd_pcm_hw_params_t *hw_params)
790{
791 atiixp_t *chip = snd_pcm_substream_chip(substream);
792 atiixp_dma_t *dma = (atiixp_dma_t *)substream->runtime->private_data;
793 int err;
794 int i;
795
796 err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
797 if (err < 0)
798 return err;
799 dma->buf_addr = substream->runtime->dma_addr;
800 dma->buf_bytes = params_buffer_bytes(hw_params);
801
802 err = atiixp_build_dma_packets(chip, dma, substream,
803 params_periods(hw_params),
804 params_period_bytes(hw_params));
805 if (err < 0)
806 return err;
807
808 /* set up modem rate */
809 for (i = 0; i < NUM_ATI_CODECS; i++) {
810 if (! chip->ac97[i])
811 continue;
812 snd_ac97_write(chip->ac97[i], AC97_LINE1_RATE, params_rate(hw_params));
813 snd_ac97_write(chip->ac97[i], AC97_LINE1_LEVEL, 0);
814 }
815
816 return err;
817}
818
819static int snd_atiixp_pcm_hw_free(snd_pcm_substream_t * substream)
820{
821 atiixp_t *chip = snd_pcm_substream_chip(substream);
822 atiixp_dma_t *dma = (atiixp_dma_t *)substream->runtime->private_data;
823
824 atiixp_clear_dma_packets(chip, dma, substream);
825 snd_pcm_lib_free_pages(substream);
826 return 0;
827}
828
829
830/*
831 * pcm hardware definition, identical for all DMA types
832 */
833static snd_pcm_hardware_t snd_atiixp_pcm_hw =
834{
835 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
836 SNDRV_PCM_INFO_BLOCK_TRANSFER |
837 SNDRV_PCM_INFO_MMAP_VALID),
838 .formats = SNDRV_PCM_FMTBIT_S16_LE,
839 .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_KNOT,
840 .rate_min = 8000,
841 .rate_max = 16000,
842 .channels_min = 2,
843 .channels_max = 2,
844 .buffer_bytes_max = 256 * 1024,
845 .period_bytes_min = 32,
846 .period_bytes_max = 128 * 1024,
847 .periods_min = 2,
848 .periods_max = ATI_MAX_DESCRIPTORS,
849};
850
851static int snd_atiixp_pcm_open(snd_pcm_substream_t *substream, atiixp_dma_t *dma, int pcm_type)
852{
853 atiixp_t *chip = snd_pcm_substream_chip(substream);
854 snd_pcm_runtime_t *runtime = substream->runtime;
855 int err;
856 static unsigned int rates[] = { 8000, 9600, 12000, 16000 };
857 static snd_pcm_hw_constraint_list_t hw_constraints_rates = {
858 .count = ARRAY_SIZE(rates),
859 .list = rates,
860 .mask = 0,
861 };
862
863 snd_assert(dma->ops && dma->ops->enable_dma, return -EINVAL);
864
865 if (dma->opened)
866 return -EBUSY;
867 dma->substream = substream;
868 runtime->hw = snd_atiixp_pcm_hw;
869 dma->ac97_pcm_type = pcm_type;
870 if ((err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates)) < 0)
871 return err;
872 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
873 return err;
874 runtime->private_data = dma;
875
876 /* enable DMA bits */
877 spin_lock_irq(&chip->reg_lock);
878 dma->ops->enable_dma(chip, 1);
879 spin_unlock_irq(&chip->reg_lock);
880 dma->opened = 1;
881
882 return 0;
883}
884
885static int snd_atiixp_pcm_close(snd_pcm_substream_t *substream, atiixp_dma_t *dma)
886{
887 atiixp_t *chip = snd_pcm_substream_chip(substream);
888 /* disable DMA bits */
889 snd_assert(dma->ops && dma->ops->enable_dma, return -EINVAL);
890 spin_lock_irq(&chip->reg_lock);
891 dma->ops->enable_dma(chip, 0);
892 spin_unlock_irq(&chip->reg_lock);
893 dma->substream = NULL;
894 dma->opened = 0;
895 return 0;
896}
897
898/*
899 */
900static int snd_atiixp_playback_open(snd_pcm_substream_t *substream)
901{
902 atiixp_t *chip = snd_pcm_substream_chip(substream);
903 int err;
904
905 down(&chip->open_mutex);
906 err = snd_atiixp_pcm_open(substream, &chip->dmas[ATI_DMA_PLAYBACK], 0);
907 up(&chip->open_mutex);
908 if (err < 0)
909 return err;
910 return 0;
911}
912
913static int snd_atiixp_playback_close(snd_pcm_substream_t *substream)
914{
915 atiixp_t *chip = snd_pcm_substream_chip(substream);
916 int err;
917 down(&chip->open_mutex);
918 err = snd_atiixp_pcm_close(substream, &chip->dmas[ATI_DMA_PLAYBACK]);
919 up(&chip->open_mutex);
920 return err;
921}
922
923static int snd_atiixp_capture_open(snd_pcm_substream_t *substream)
924{
925 atiixp_t *chip = snd_pcm_substream_chip(substream);
926 return snd_atiixp_pcm_open(substream, &chip->dmas[ATI_DMA_CAPTURE], 1);
927}
928
929static int snd_atiixp_capture_close(snd_pcm_substream_t *substream)
930{
931 atiixp_t *chip = snd_pcm_substream_chip(substream);
932 return snd_atiixp_pcm_close(substream, &chip->dmas[ATI_DMA_CAPTURE]);
933}
934
935
936/* AC97 playback */
937static snd_pcm_ops_t snd_atiixp_playback_ops = {
938 .open = snd_atiixp_playback_open,
939 .close = snd_atiixp_playback_close,
940 .ioctl = snd_pcm_lib_ioctl,
941 .hw_params = snd_atiixp_pcm_hw_params,
942 .hw_free = snd_atiixp_pcm_hw_free,
943 .prepare = snd_atiixp_playback_prepare,
944 .trigger = snd_atiixp_pcm_trigger,
945 .pointer = snd_atiixp_pcm_pointer,
946};
947
948/* AC97 capture */
949static snd_pcm_ops_t snd_atiixp_capture_ops = {
950 .open = snd_atiixp_capture_open,
951 .close = snd_atiixp_capture_close,
952 .ioctl = snd_pcm_lib_ioctl,
953 .hw_params = snd_atiixp_pcm_hw_params,
954 .hw_free = snd_atiixp_pcm_hw_free,
955 .prepare = snd_atiixp_capture_prepare,
956 .trigger = snd_atiixp_pcm_trigger,
957 .pointer = snd_atiixp_pcm_pointer,
958};
959
960static atiixp_dma_ops_t snd_atiixp_playback_dma_ops = {
961 .type = ATI_DMA_PLAYBACK,
962 .llp_offset = ATI_REG_MODEM_OUT_DMA1_LINKPTR,
963 .dt_cur = ATI_REG_MODEM_OUT_DMA1_DT_CUR,
964 .enable_dma = atiixp_out_enable_dma,
965 .enable_transfer = atiixp_out_enable_transfer,
966 .flush_dma = atiixp_out_flush_dma,
967};
968
969static atiixp_dma_ops_t snd_atiixp_capture_dma_ops = {
970 .type = ATI_DMA_CAPTURE,
971 .llp_offset = ATI_REG_MODEM_IN_DMA_LINKPTR,
972 .dt_cur = ATI_REG_MODEM_IN_DMA_DT_CUR,
973 .enable_dma = atiixp_in_enable_dma,
974 .enable_transfer = atiixp_in_enable_transfer,
975 .flush_dma = atiixp_in_flush_dma,
976};
977
978static int __devinit snd_atiixp_pcm_new(atiixp_t *chip)
979{
980 snd_pcm_t *pcm;
981 int err;
982
983 /* initialize constants */
984 chip->dmas[ATI_DMA_PLAYBACK].ops = &snd_atiixp_playback_dma_ops;
985 chip->dmas[ATI_DMA_CAPTURE].ops = &snd_atiixp_capture_dma_ops;
986
987 /* PCM #0: analog I/O */
988 err = snd_pcm_new(chip->card, "ATI IXP MC97", ATI_PCMDEV_ANALOG, 1, 1, &pcm);
989 if (err < 0)
990 return err;
991 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_atiixp_playback_ops);
992 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_atiixp_capture_ops);
Sasha Khapyorsky6632d192005-09-29 11:48:17 +0200993 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 pcm->private_data = chip;
995 strcpy(pcm->name, "ATI IXP MC97");
996 chip->pcmdevs[ATI_PCMDEV_ANALOG] = pcm;
997
998 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
999 snd_dma_pci_data(chip->pci), 64*1024, 128*1024);
1000
1001 return 0;
1002}
1003
1004
1005
1006/*
1007 * interrupt handler
1008 */
1009static irqreturn_t snd_atiixp_interrupt(int irq, void *dev_id, struct pt_regs *regs)
1010{
1011 atiixp_t *chip = dev_id;
1012 unsigned int status;
1013
1014 status = atiixp_read(chip, ISR);
1015
1016 if (! status)
1017 return IRQ_NONE;
1018
1019 /* process audio DMA */
1020 if (status & ATI_REG_ISR_MODEM_OUT1_XRUN)
1021 snd_atiixp_xrun_dma(chip, &chip->dmas[ATI_DMA_PLAYBACK]);
1022 else if (status & ATI_REG_ISR_MODEM_OUT1_STATUS)
1023 snd_atiixp_update_dma(chip, &chip->dmas[ATI_DMA_PLAYBACK]);
1024 if (status & ATI_REG_ISR_MODEM_IN_XRUN)
1025 snd_atiixp_xrun_dma(chip, &chip->dmas[ATI_DMA_CAPTURE]);
1026 else if (status & ATI_REG_ISR_MODEM_IN_STATUS)
1027 snd_atiixp_update_dma(chip, &chip->dmas[ATI_DMA_CAPTURE]);
1028
1029 /* for codec detection */
1030 if (status & CODEC_CHECK_BITS) {
1031 unsigned int detected;
1032 detected = status & CODEC_CHECK_BITS;
1033 spin_lock(&chip->reg_lock);
1034 chip->codec_not_ready_bits |= detected;
1035 atiixp_update(chip, IER, detected, 0); /* disable the detected irqs */
1036 spin_unlock(&chip->reg_lock);
1037 }
1038
1039 /* ack */
1040 atiixp_write(chip, ISR, status);
1041
1042 return IRQ_HANDLED;
1043}
1044
1045
1046/*
1047 * ac97 mixer section
1048 */
1049
1050static int __devinit snd_atiixp_mixer_new(atiixp_t *chip, int clock)
1051{
1052 ac97_bus_t *pbus;
1053 ac97_template_t ac97;
1054 int i, err;
1055 int codec_count;
1056 static ac97_bus_ops_t ops = {
1057 .write = snd_atiixp_ac97_write,
1058 .read = snd_atiixp_ac97_read,
1059 };
1060 static unsigned int codec_skip[NUM_ATI_CODECS] = {
1061 ATI_REG_ISR_CODEC0_NOT_READY,
1062 ATI_REG_ISR_CODEC1_NOT_READY,
1063 ATI_REG_ISR_CODEC2_NOT_READY,
1064 };
1065
1066 if (snd_atiixp_codec_detect(chip) < 0)
1067 return -ENXIO;
1068
1069 if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &pbus)) < 0)
1070 return err;
1071 pbus->clock = clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 chip->ac97_bus = pbus;
1073
1074 codec_count = 0;
1075 for (i = 0; i < NUM_ATI_CODECS; i++) {
1076 if (chip->codec_not_ready_bits & codec_skip[i])
1077 continue;
1078 memset(&ac97, 0, sizeof(ac97));
1079 ac97.private_data = chip;
1080 ac97.pci = chip->pci;
1081 ac97.num = i;
1082 ac97.scaps = AC97_SCAP_SKIP_AUDIO;
1083 if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97[i])) < 0) {
1084 chip->ac97[i] = NULL; /* to be sure */
Chuck Ebbert98b4f592005-09-22 21:44:08 -07001085 snd_printdd("atiixp-modem: codec %d not available for modem\n", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 continue;
1087 }
1088 codec_count++;
1089 }
1090
1091 if (! codec_count) {
Chuck Ebbert98b4f592005-09-22 21:44:08 -07001092 snd_printk(KERN_ERR "atiixp-modem: no codec available\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return -ENODEV;
1094 }
1095
1096 /* snd_ac97_tune_hardware(chip->ac97, ac97_quirks); */
1097
1098 return 0;
1099}
1100
1101
1102#ifdef CONFIG_PM
1103/*
1104 * power management
1105 */
1106static int snd_atiixp_suspend(snd_card_t *card, pm_message_t state)
1107{
1108 atiixp_t *chip = card->pm_private_data;
1109 int i;
1110
1111 for (i = 0; i < NUM_ATI_PCMDEVS; i++)
1112 if (chip->pcmdevs[i])
1113 snd_pcm_suspend_all(chip->pcmdevs[i]);
1114 for (i = 0; i < NUM_ATI_CODECS; i++)
1115 if (chip->ac97[i])
1116 snd_ac97_suspend(chip->ac97[i]);
1117 snd_atiixp_aclink_down(chip);
1118 snd_atiixp_chip_stop(chip);
1119
Pavel Macheke2d53562005-04-16 15:25:30 -07001120 pci_set_power_state(chip->pci, PCI_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 pci_disable_device(chip->pci);
1122 return 0;
1123}
1124
1125static int snd_atiixp_resume(snd_card_t *card)
1126{
1127 atiixp_t *chip = card->pm_private_data;
1128 int i;
1129
1130 pci_enable_device(chip->pci);
Pavel Macheke2d53562005-04-16 15:25:30 -07001131 pci_set_power_state(chip->pci, PCI_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 pci_set_master(chip->pci);
1133
1134 snd_atiixp_aclink_reset(chip);
1135 snd_atiixp_chip_start(chip);
1136
1137 for (i = 0; i < NUM_ATI_CODECS; i++)
1138 if (chip->ac97[i])
1139 snd_ac97_resume(chip->ac97[i]);
1140
1141 return 0;
1142}
1143#endif /* CONFIG_PM */
1144
1145
1146/*
1147 * proc interface for register dump
1148 */
1149
1150static void snd_atiixp_proc_read(snd_info_entry_t *entry, snd_info_buffer_t *buffer)
1151{
1152 atiixp_t *chip = entry->private_data;
1153 int i;
1154
1155 for (i = 0; i < 256; i += 4)
1156 snd_iprintf(buffer, "%02x: %08x\n", i, readl(chip->remap_addr + i));
1157}
1158
1159static void __devinit snd_atiixp_proc_init(atiixp_t *chip)
1160{
1161 snd_info_entry_t *entry;
1162
Chuck Ebbert98b4f592005-09-22 21:44:08 -07001163 if (! snd_card_proc_new(chip->card, "atiixp-modem", &entry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 snd_info_set_text_ops(entry, chip, 1024, snd_atiixp_proc_read);
1165}
1166
1167
1168
1169/*
1170 * destructor
1171 */
1172
1173static int snd_atiixp_free(atiixp_t *chip)
1174{
1175 if (chip->irq < 0)
1176 goto __hw_end;
1177 snd_atiixp_chip_stop(chip);
1178 synchronize_irq(chip->irq);
1179 __hw_end:
1180 if (chip->irq >= 0)
1181 free_irq(chip->irq, (void *)chip);
1182 if (chip->remap_addr)
1183 iounmap(chip->remap_addr);
1184 pci_release_regions(chip->pci);
1185 pci_disable_device(chip->pci);
1186 kfree(chip);
1187 return 0;
1188}
1189
1190static int snd_atiixp_dev_free(snd_device_t *device)
1191{
1192 atiixp_t *chip = device->device_data;
1193 return snd_atiixp_free(chip);
1194}
1195
1196/*
1197 * constructor for chip instance
1198 */
1199static int __devinit snd_atiixp_create(snd_card_t *card,
1200 struct pci_dev *pci,
1201 atiixp_t **r_chip)
1202{
1203 static snd_device_ops_t ops = {
1204 .dev_free = snd_atiixp_dev_free,
1205 };
1206 atiixp_t *chip;
1207 int err;
1208
1209 if ((err = pci_enable_device(pci)) < 0)
1210 return err;
1211
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001212 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 if (chip == NULL) {
1214 pci_disable_device(pci);
1215 return -ENOMEM;
1216 }
1217
1218 spin_lock_init(&chip->reg_lock);
1219 init_MUTEX(&chip->open_mutex);
1220 chip->card = card;
1221 chip->pci = pci;
1222 chip->irq = -1;
1223 if ((err = pci_request_regions(pci, "ATI IXP MC97")) < 0) {
1224 kfree(chip);
1225 pci_disable_device(pci);
1226 return err;
1227 }
1228 chip->addr = pci_resource_start(pci, 0);
1229 chip->remap_addr = ioremap_nocache(chip->addr, pci_resource_len(pci, 0));
1230 if (chip->remap_addr == NULL) {
1231 snd_printk(KERN_ERR "AC'97 space ioremap problem\n");
1232 snd_atiixp_free(chip);
1233 return -EIO;
1234 }
1235
1236 if (request_irq(pci->irq, snd_atiixp_interrupt, SA_INTERRUPT|SA_SHIRQ, card->shortname, (void *)chip)) {
1237 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
1238 snd_atiixp_free(chip);
1239 return -EBUSY;
1240 }
1241 chip->irq = pci->irq;
1242 pci_set_master(pci);
1243 synchronize_irq(chip->irq);
1244
1245 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
1246 snd_atiixp_free(chip);
1247 return err;
1248 }
1249
1250 snd_card_set_dev(card, &pci->dev);
1251
1252 *r_chip = chip;
1253 return 0;
1254}
1255
1256
1257static int __devinit snd_atiixp_probe(struct pci_dev *pci,
1258 const struct pci_device_id *pci_id)
1259{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 snd_card_t *card;
1261 atiixp_t *chip;
1262 unsigned char revision;
1263 int err;
1264
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001265 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (card == NULL)
1267 return -ENOMEM;
1268
1269 pci_read_config_byte(pci, PCI_REVISION_ID, &revision);
1270
1271 strcpy(card->driver, "ATIIXP-MODEM");
1272 strcpy(card->shortname, "ATI IXP Modem");
1273 if ((err = snd_atiixp_create(card, pci, &chip)) < 0)
1274 goto __error;
1275
1276 if ((err = snd_atiixp_aclink_reset(chip)) < 0)
1277 goto __error;
1278
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001279 if ((err = snd_atiixp_mixer_new(chip, ac97_clock)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 goto __error;
1281
1282 if ((err = snd_atiixp_pcm_new(chip)) < 0)
1283 goto __error;
1284
1285 snd_atiixp_proc_init(chip);
1286
1287 snd_atiixp_chip_start(chip);
1288
1289 sprintf(card->longname, "%s rev %x at 0x%lx, irq %i",
1290 card->shortname, revision, chip->addr, chip->irq);
1291
1292 snd_card_set_pm_callback(card, snd_atiixp_suspend, snd_atiixp_resume, chip);
1293
1294 if ((err = snd_card_register(card)) < 0)
1295 goto __error;
1296
1297 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return 0;
1299
1300 __error:
1301 snd_card_free(card);
1302 return err;
1303}
1304
1305static void __devexit snd_atiixp_remove(struct pci_dev *pci)
1306{
1307 snd_card_free(pci_get_drvdata(pci));
1308 pci_set_drvdata(pci, NULL);
1309}
1310
1311static struct pci_driver driver = {
1312 .name = "ATI IXP MC97 controller",
Clemens Ladisch3bcd4642005-09-12 08:20:54 +02001313 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 .id_table = snd_atiixp_ids,
1315 .probe = snd_atiixp_probe,
1316 .remove = __devexit_p(snd_atiixp_remove),
1317 SND_PCI_PM_CALLBACKS
1318};
1319
1320
1321static int __init alsa_card_atiixp_init(void)
1322{
Takashi Iwai01d25d42005-04-11 16:58:24 +02001323 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
1325
1326static void __exit alsa_card_atiixp_exit(void)
1327{
1328 pci_unregister_driver(&driver);
1329}
1330
1331module_init(alsa_card_atiixp_init)
1332module_exit(alsa_card_atiixp_exit)