2 * ALSA modem driver for Intel ICH (i8x0) chipsets
4 * Copyright (c) 2000 Jaroslav Kysela <perex@suse.cz>
6 * This is modified (by Sasha Khapyorsky <sashak@smlink.com>) version
7 * of ALSA ICH sound driver intel8x0.c .
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <sound/driver.h>
28 #include <linux/delay.h>
29 #include <linux/interrupt.h>
30 #include <linux/init.h>
31 #include <linux/pci.h>
32 #include <linux/slab.h>
33 #include <linux/moduleparam.h>
34 #include <sound/core.h>
35 #include <sound/pcm.h>
36 #include <sound/ac97_codec.h>
37 #include <sound/info.h>
38 #include <sound/initval.h>
40 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
41 MODULE_DESCRIPTION("Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; SiS 7013; NVidia MCP/2/2S/3 modems");
42 MODULE_LICENSE("GPL");
43 MODULE_SUPPORTED_DEVICE("{{Intel,82801AA-ICH},"
44 "{Intel,82901AB-ICH0},"
45 "{Intel,82801BA-ICH2},"
46 "{Intel,82801CA-ICH3},"
47 "{Intel,82801DB-ICH4},"
53 "{NVidia,NForce Modem},"
54 "{NVidia,NForce2 Modem},"
55 "{NVidia,NForce2s Modem},"
56 "{NVidia,NForce3 Modem},"
59 static int index[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = -2}; /* Exclude the first card */
60 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
61 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
62 static int ac97_clock[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS - 1)] = 0};
64 module_param_array(index, int, NULL, 0444);
65 MODULE_PARM_DESC(index, "Index value for Intel i8x0 modemcard.");
66 module_param_array(id, charp, NULL, 0444);
67 MODULE_PARM_DESC(id, "ID string for Intel i8x0 modemcard.");
68 module_param_array(enable, bool, NULL, 0444);
69 MODULE_PARM_DESC(enable, "Enable Intel i8x0 modemcard.");
70 module_param_array(ac97_clock, int, NULL, 0444);
71 MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (0 = auto-detect).");
77 #ifndef PCI_DEVICE_ID_INTEL_82801_6
78 #define PCI_DEVICE_ID_INTEL_82801_6 0x2416
80 #ifndef PCI_DEVICE_ID_INTEL_82901_6
81 #define PCI_DEVICE_ID_INTEL_82901_6 0x2426
83 #ifndef PCI_DEVICE_ID_INTEL_82801BA_6
84 #define PCI_DEVICE_ID_INTEL_82801BA_6 0x2446
86 #ifndef PCI_DEVICE_ID_INTEL_440MX_6
87 #define PCI_DEVICE_ID_INTEL_440MX_6 0x7196
89 #ifndef PCI_DEVICE_ID_INTEL_ICH3_6
90 #define PCI_DEVICE_ID_INTEL_ICH3_6 0x2486
92 #ifndef PCI_DEVICE_ID_INTEL_ICH4_6
93 #define PCI_DEVICE_ID_INTEL_ICH4_6 0x24c6
95 #ifndef PCI_DEVICE_ID_INTEL_ICH5_6
96 #define PCI_DEVICE_ID_INTEL_ICH5_6 0x24d6
98 #ifndef PCI_DEVICE_ID_INTEL_ICH6_6
99 #define PCI_DEVICE_ID_INTEL_ICH6_6 0x266d
101 #ifndef PCI_DEVICE_ID_INTEL_ICH7_6
102 #define PCI_DEVICE_ID_INTEL_ICH7_6 0x27dd
104 #ifndef PCI_DEVICE_ID_SI_7013
105 #define PCI_DEVICE_ID_SI_7013 0x7013
107 #ifndef PCI_DEVICE_ID_NVIDIA_MCP_MODEM
108 #define PCI_DEVICE_ID_NVIDIA_MCP_MODEM 0x01c1
110 #ifndef PCI_DEVICE_ID_NVIDIA_MCP2_MODEM
111 #define PCI_DEVICE_ID_NVIDIA_MCP2_MODEM 0x0069
113 #ifndef PCI_DEVICE_ID_NVIDIA_MCP2S_MODEM
114 #define PCI_DEVICE_ID_NVIDIA_MCP2S_MODEM 0x0089
116 #ifndef PCI_DEVICE_ID_NVIDIA_MCP3_MODEM
117 #define PCI_DEVICE_ID_NVIDIA_MCP3_MODEM 0x00d9
121 enum { DEVICE_INTEL, DEVICE_SIS, DEVICE_ALI, DEVICE_NFORCE };
123 #define ICHREG(x) ICH_REG_##x
125 #define DEFINE_REGSET(name,base) \
127 ICH_REG_##name##_BDBAR = base + 0x0, /* dword - buffer descriptor list base address */ \
128 ICH_REG_##name##_CIV = base + 0x04, /* byte - current index value */ \
129 ICH_REG_##name##_LVI = base + 0x05, /* byte - last valid index */ \
130 ICH_REG_##name##_SR = base + 0x06, /* byte - status register */ \
131 ICH_REG_##name##_PICB = base + 0x08, /* word - position in current buffer */ \
132 ICH_REG_##name##_PIV = base + 0x0a, /* byte - prefetched index value */ \
133 ICH_REG_##name##_CR = base + 0x0b, /* byte - control register */ \
136 /* busmaster blocks */
137 DEFINE_REGSET(OFF, 0); /* offset */
139 /* values for each busmaster block */
142 #define ICH_REG_LVI_MASK 0x1f
145 #define ICH_FIFOE 0x10 /* FIFO error */
146 #define ICH_BCIS 0x08 /* buffer completion interrupt status */
147 #define ICH_LVBCI 0x04 /* last valid buffer completion interrupt */
148 #define ICH_CELV 0x02 /* current equals last valid */
149 #define ICH_DCH 0x01 /* DMA controller halted */
152 #define ICH_REG_PIV_MASK 0x1f /* mask */
155 #define ICH_IOCE 0x10 /* interrupt on completion enable */
156 #define ICH_FEIE 0x08 /* fifo error interrupt enable */
157 #define ICH_LVBIE 0x04 /* last valid buffer interrupt enable */
158 #define ICH_RESETREGS 0x02 /* reset busmaster registers */
159 #define ICH_STARTBM 0x01 /* start busmaster operation */
163 #define ICH_REG_GLOB_CNT 0x3c /* dword - global control */
164 #define ICH_TRIE 0x00000040 /* tertiary resume interrupt enable */
165 #define ICH_SRIE 0x00000020 /* secondary resume interrupt enable */
166 #define ICH_PRIE 0x00000010 /* primary resume interrupt enable */
167 #define ICH_ACLINK 0x00000008 /* AClink shut off */
168 #define ICH_AC97WARM 0x00000004 /* AC'97 warm reset */
169 #define ICH_AC97COLD 0x00000002 /* AC'97 cold reset */
170 #define ICH_GIE 0x00000001 /* GPI interrupt enable */
171 #define ICH_REG_GLOB_STA 0x40 /* dword - global status */
172 #define ICH_TRI 0x20000000 /* ICH4: tertiary (AC_SDIN2) resume interrupt */
173 #define ICH_TCR 0x10000000 /* ICH4: tertiary (AC_SDIN2) codec ready */
174 #define ICH_BCS 0x08000000 /* ICH4: bit clock stopped */
175 #define ICH_SPINT 0x04000000 /* ICH4: S/PDIF interrupt */
176 #define ICH_P2INT 0x02000000 /* ICH4: PCM2-In interrupt */
177 #define ICH_M2INT 0x01000000 /* ICH4: Mic2-In interrupt */
178 #define ICH_SAMPLE_CAP 0x00c00000 /* ICH4: sample capability bits (RO) */
179 #define ICH_MULTICHAN_CAP 0x00300000 /* ICH4: multi-channel capability bits (RO) */
180 #define ICH_MD3 0x00020000 /* modem power down semaphore */
181 #define ICH_AD3 0x00010000 /* audio power down semaphore */
182 #define ICH_RCS 0x00008000 /* read completion status */
183 #define ICH_BIT3 0x00004000 /* bit 3 slot 12 */
184 #define ICH_BIT2 0x00002000 /* bit 2 slot 12 */
185 #define ICH_BIT1 0x00001000 /* bit 1 slot 12 */
186 #define ICH_SRI 0x00000800 /* secondary (AC_SDIN1) resume interrupt */
187 #define ICH_PRI 0x00000400 /* primary (AC_SDIN0) resume interrupt */
188 #define ICH_SCR 0x00000200 /* secondary (AC_SDIN1) codec ready */
189 #define ICH_PCR 0x00000100 /* primary (AC_SDIN0) codec ready */
190 #define ICH_MCINT 0x00000080 /* MIC capture interrupt */
191 #define ICH_POINT 0x00000040 /* playback interrupt */
192 #define ICH_PIINT 0x00000020 /* capture interrupt */
193 #define ICH_NVSPINT 0x00000010 /* nforce spdif interrupt */
194 #define ICH_MOINT 0x00000004 /* modem playback interrupt */
195 #define ICH_MIINT 0x00000002 /* modem capture interrupt */
196 #define ICH_GSCI 0x00000001 /* GPI status change interrupt */
197 #define ICH_REG_ACC_SEMA 0x44 /* byte - codec write semaphore */
198 #define ICH_CAS 0x01 /* codec access semaphore */
200 #define ICH_MAX_FRAGS 32 /* max hw frags */
207 enum { ICHD_MDMIN, ICHD_MDMOUT, ICHD_MDMLAST = ICHD_MDMOUT };
208 enum { ALID_MDMIN, ALID_MDMOUT, ALID_MDMLAST = ALID_MDMOUT };
210 #define get_ichdev(substream) (ichdev_t *)(substream->runtime->private_data)
213 unsigned int ichd; /* ich device number */
214 unsigned long reg_offset; /* offset to bmaddr */
215 u32 *bdbar; /* CPU address (32bit) */
216 unsigned int bdbar_addr; /* PCI bus address (32bit) */
217 snd_pcm_substream_t *substream;
218 unsigned int physbuf; /* physical address (32bit) */
220 unsigned int fragsize;
221 unsigned int fragsize1;
222 unsigned int position;
229 unsigned int ack_bit;
230 unsigned int roff_sr;
231 unsigned int roff_picb;
232 unsigned int int_sta_mask; /* interrupt status mask */
233 unsigned int ali_slot; /* ALI DMA slot */
237 typedef struct _snd_intel8x0m intel8x0_t;
239 struct _snd_intel8x0m {
240 unsigned int device_type;
246 void __iomem *remap_addr;
247 unsigned int bm_mmio;
248 unsigned long bmaddr;
249 void __iomem *remap_bmaddr;
258 unsigned int in_ac97_init: 1;
260 ac97_bus_t *ac97_bus;
265 struct snd_dma_buffer bdbars;
267 u32 int_sta_reg; /* interrupt status register */
268 u32 int_sta_mask; /* interrupt status mask */
269 unsigned int pcm_pos_shift;
272 static struct pci_device_id snd_intel8x0m_ids[] = {
273 { 0x8086, 0x2416, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801AA */
274 { 0x8086, 0x2426, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82901AB */
275 { 0x8086, 0x2446, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801BA */
276 { 0x8086, 0x2486, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH3 */
277 { 0x8086, 0x24c6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH4 */
278 { 0x8086, 0x24d6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH5 */
279 { 0x8086, 0x266d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH6 */
280 { 0x8086, 0x27dd, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH7 */
281 { 0x8086, 0x7196, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 440MX */
282 { 0x1022, 0x7446, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD768 */
283 { 0x1039, 0x7013, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_SIS }, /* SI7013 */
284 { 0x10de, 0x01c1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE */
285 { 0x10de, 0x0069, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2 */
286 { 0x10de, 0x0089, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2s */
287 { 0x10de, 0x00d9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE3 */
289 { 0x1022, 0x746d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD8111 */
290 { 0x10b9, 0x5455, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_ALI }, /* Ali5455 */
295 MODULE_DEVICE_TABLE(pci, snd_intel8x0m_ids);
298 * Lowlevel I/O - busmaster
301 static u8 igetbyte(intel8x0_t *chip, u32 offset)
304 return readb(chip->remap_bmaddr + offset);
306 return inb(chip->bmaddr + offset);
309 static u16 igetword(intel8x0_t *chip, u32 offset)
312 return readw(chip->remap_bmaddr + offset);
314 return inw(chip->bmaddr + offset);
317 static u32 igetdword(intel8x0_t *chip, u32 offset)
320 return readl(chip->remap_bmaddr + offset);
322 return inl(chip->bmaddr + offset);
325 static void iputbyte(intel8x0_t *chip, u32 offset, u8 val)
328 writeb(val, chip->remap_bmaddr + offset);
330 outb(val, chip->bmaddr + offset);
333 static void iputword(intel8x0_t *chip, u32 offset, u16 val)
336 writew(val, chip->remap_bmaddr + offset);
338 outw(val, chip->bmaddr + offset);
341 static void iputdword(intel8x0_t *chip, u32 offset, u32 val)
344 writel(val, chip->remap_bmaddr + offset);
346 outl(val, chip->bmaddr + offset);
350 * Lowlevel I/O - AC'97 registers
353 static u16 iagetword(intel8x0_t *chip, u32 offset)
356 return readw(chip->remap_addr + offset);
358 return inw(chip->addr + offset);
361 static void iaputword(intel8x0_t *chip, u32 offset, u16 val)
364 writew(val, chip->remap_addr + offset);
366 outw(val, chip->addr + offset);
374 * access to AC97 codec via normal i/o (for ICH and SIS7013)
377 /* return the GLOB_STA bit for the corresponding codec */
378 static unsigned int get_ich_codec_bit(intel8x0_t *chip, unsigned int codec)
380 static unsigned int codec_bit[3] = {
381 ICH_PCR, ICH_SCR, ICH_TCR
383 snd_assert(codec < 3, return ICH_PCR);
384 return codec_bit[codec];
387 static int snd_intel8x0m_codec_semaphore(intel8x0_t *chip, unsigned int codec)
393 codec = get_ich_codec_bit(chip, codec);
396 if ((igetdword(chip, ICHREG(GLOB_STA)) & codec) == 0)
399 /* Anyone holding a semaphore for 1 msec should be shot... */
402 if (!(igetbyte(chip, ICHREG(ACC_SEMA)) & ICH_CAS))
407 /* access to some forbidden (non existant) ac97 registers will not
408 * reset the semaphore. So even if you don't get the semaphore, still
409 * continue the access. We don't need the semaphore anyway. */
410 snd_printk("codec_semaphore: semaphore is not ready [0x%x][0x%x]\n",
411 igetbyte(chip, ICHREG(ACC_SEMA)), igetdword(chip, ICHREG(GLOB_STA)));
412 iagetword(chip, 0); /* clear semaphore flag */
413 /* I don't care about the semaphore */
417 static void snd_intel8x0_codec_write(ac97_t *ac97,
421 intel8x0_t *chip = ac97->private_data;
423 if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) {
424 if (! chip->in_ac97_init)
425 snd_printk("codec_write %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);
427 iaputword(chip, reg + ac97->num * 0x80, val);
430 static unsigned short snd_intel8x0_codec_read(ac97_t *ac97,
433 intel8x0_t *chip = ac97->private_data;
437 if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) {
438 if (! chip->in_ac97_init)
439 snd_printk("codec_read %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);
442 res = iagetword(chip, reg + ac97->num * 0x80);
443 if ((tmp = igetdword(chip, ICHREG(GLOB_STA))) & ICH_RCS) {
444 /* reset RCS and preserve other R/WC bits */
445 iputdword(chip, ICHREG(GLOB_STA), tmp & ~(ICH_SRI|ICH_PRI|ICH_TRI|ICH_GSCI));
446 if (! chip->in_ac97_init)
447 snd_printk("codec_read %d: read timeout for register 0x%x\n", ac97->num, reg);
451 if (reg == AC97_GPIO_STATUS)
452 iagetword(chip, 0); /* clear semaphore */
460 static void snd_intel8x0_setup_periods(intel8x0_t *chip, ichdev_t *ichdev)
463 u32 *bdbar = ichdev->bdbar;
464 unsigned long port = ichdev->reg_offset;
466 iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);
467 if (ichdev->size == ichdev->fragsize) {
468 ichdev->ack_reload = ichdev->ack = 2;
469 ichdev->fragsize1 = ichdev->fragsize >> 1;
470 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 4) {
471 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf);
472 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
473 ichdev->fragsize1 >> chip->pcm_pos_shift);
474 bdbar[idx + 2] = cpu_to_le32(ichdev->physbuf + (ichdev->size >> 1));
475 bdbar[idx + 3] = cpu_to_le32(0x80000000 | /* interrupt on completion */
476 ichdev->fragsize1 >> chip->pcm_pos_shift);
480 ichdev->ack_reload = ichdev->ack = 1;
481 ichdev->fragsize1 = ichdev->fragsize;
482 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 2) {
483 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf + (((idx >> 1) * ichdev->fragsize) % ichdev->size));
484 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
485 ichdev->fragsize >> chip->pcm_pos_shift);
486 // printk("bdbar[%i] = 0x%x [0x%x]\n", idx + 0, bdbar[idx + 0], bdbar[idx + 1]);
488 ichdev->frags = ichdev->size / ichdev->fragsize;
490 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi = ICH_REG_LVI_MASK);
492 iputbyte(chip, port + ICH_REG_OFF_CIV, 0);
493 ichdev->lvi_frag = ICH_REG_LVI_MASK % ichdev->frags;
494 ichdev->position = 0;
496 printk("lvi_frag = %i, frags = %i, period_size = 0x%x, period_size1 = 0x%x\n",
497 ichdev->lvi_frag, ichdev->frags, ichdev->fragsize, ichdev->fragsize1);
499 /* clear interrupts */
500 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
507 static inline void snd_intel8x0_update(intel8x0_t *chip, ichdev_t *ichdev)
509 unsigned long port = ichdev->reg_offset;
513 civ = igetbyte(chip, port + ICH_REG_OFF_CIV);
514 if (civ == ichdev->civ) {
515 // snd_printd("civ same %d\n", civ);
518 ichdev->civ &= ICH_REG_LVI_MASK;
520 step = civ - ichdev->civ;
522 step += ICH_REG_LVI_MASK + 1;
524 // snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ);
528 ichdev->position += step * ichdev->fragsize1;
529 ichdev->position %= ichdev->size;
531 ichdev->lvi &= ICH_REG_LVI_MASK;
532 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
533 for (i = 0; i < step; i++) {
535 ichdev->lvi_frag %= ichdev->frags;
536 ichdev->bdbar[ichdev->lvi * 2] = cpu_to_le32(ichdev->physbuf + ichdev->lvi_frag * ichdev->fragsize1);
537 // printk("new: bdbar[%i] = 0x%x [0x%x], prefetch = %i, all = 0x%x, 0x%x\n", ichdev->lvi * 2, ichdev->bdbar[ichdev->lvi * 2], ichdev->bdbar[ichdev->lvi * 2 + 1], inb(ICH_REG_OFF_PIV + port), inl(port + 4), inb(port + ICH_REG_OFF_CR));
538 if (--ichdev->ack == 0) {
539 ichdev->ack = ichdev->ack_reload;
543 if (ack && ichdev->substream) {
544 spin_unlock(&chip->reg_lock);
545 snd_pcm_period_elapsed(ichdev->substream);
546 spin_lock(&chip->reg_lock);
548 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
551 static irqreturn_t snd_intel8x0_interrupt(int irq, void *dev_id, struct pt_regs *regs)
553 intel8x0_t *chip = dev_id;
558 spin_lock(&chip->reg_lock);
559 status = igetdword(chip, chip->int_sta_reg);
560 if (status == 0xffffffff) { /* we are not yet resumed */
561 spin_unlock(&chip->reg_lock);
564 if ((status & chip->int_sta_mask) == 0) {
566 iputdword(chip, chip->int_sta_reg, status);
567 spin_unlock(&chip->reg_lock);
571 for (i = 0; i < chip->bdbars_count; i++) {
572 ichdev = &chip->ichd[i];
573 if (status & ichdev->int_sta_mask)
574 snd_intel8x0_update(chip, ichdev);
578 iputdword(chip, chip->int_sta_reg, status & chip->int_sta_mask);
579 spin_unlock(&chip->reg_lock);
588 static int snd_intel8x0_pcm_trigger(snd_pcm_substream_t *substream, int cmd)
590 intel8x0_t *chip = snd_pcm_substream_chip(substream);
591 ichdev_t *ichdev = get_ichdev(substream);
592 unsigned char val = 0;
593 unsigned long port = ichdev->reg_offset;
596 case SNDRV_PCM_TRIGGER_START:
597 case SNDRV_PCM_TRIGGER_RESUME:
598 val = ICH_IOCE | ICH_STARTBM;
600 case SNDRV_PCM_TRIGGER_STOP:
601 case SNDRV_PCM_TRIGGER_SUSPEND:
604 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
607 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
608 val = ICH_IOCE | ICH_STARTBM;
613 iputbyte(chip, port + ICH_REG_OFF_CR, val);
614 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
615 /* wait until DMA stopped */
616 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH)) ;
617 /* reset whole DMA things */
618 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
623 static int snd_intel8x0_hw_params(snd_pcm_substream_t * substream,
624 snd_pcm_hw_params_t * hw_params)
626 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
629 static int snd_intel8x0_hw_free(snd_pcm_substream_t * substream)
631 return snd_pcm_lib_free_pages(substream);
634 static snd_pcm_uframes_t snd_intel8x0_pcm_pointer(snd_pcm_substream_t * substream)
636 intel8x0_t *chip = snd_pcm_substream_chip(substream);
637 ichdev_t *ichdev = get_ichdev(substream);
640 ptr1 = igetword(chip, ichdev->reg_offset + ichdev->roff_picb) << chip->pcm_pos_shift;
642 ptr = ichdev->fragsize1 - ptr1;
645 ptr += ichdev->position;
646 if (ptr >= ichdev->size)
648 return bytes_to_frames(substream->runtime, ptr);
651 static int snd_intel8x0m_pcm_prepare(snd_pcm_substream_t * substream)
653 intel8x0_t *chip = snd_pcm_substream_chip(substream);
654 snd_pcm_runtime_t *runtime = substream->runtime;
655 ichdev_t *ichdev = get_ichdev(substream);
657 ichdev->physbuf = runtime->dma_addr;
658 ichdev->size = snd_pcm_lib_buffer_bytes(substream);
659 ichdev->fragsize = snd_pcm_lib_period_bytes(substream);
660 snd_ac97_write(ichdev->ac97, AC97_LINE1_RATE, runtime->rate);
661 snd_ac97_write(ichdev->ac97, AC97_LINE1_LEVEL, 0);
662 snd_intel8x0_setup_periods(chip, ichdev);
666 static snd_pcm_hardware_t snd_intel8x0m_stream =
668 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
669 SNDRV_PCM_INFO_BLOCK_TRANSFER |
670 SNDRV_PCM_INFO_MMAP_VALID |
671 SNDRV_PCM_INFO_PAUSE |
672 SNDRV_PCM_INFO_RESUME),
673 .formats = SNDRV_PCM_FMTBIT_S16_LE,
674 .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_KNOT,
679 .buffer_bytes_max = 64 * 1024,
680 .period_bytes_min = 32,
681 .period_bytes_max = 64 * 1024,
688 static int snd_intel8x0m_pcm_open(snd_pcm_substream_t * substream, ichdev_t *ichdev)
690 static unsigned int rates[] = { 8000, 9600, 12000, 16000 };
691 static snd_pcm_hw_constraint_list_t hw_constraints_rates = {
692 .count = ARRAY_SIZE(rates),
696 snd_pcm_runtime_t *runtime = substream->runtime;
699 ichdev->substream = substream;
700 runtime->hw = snd_intel8x0m_stream;
701 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
704 runtime->private_data = ichdev;
708 static int snd_intel8x0m_playback_open(snd_pcm_substream_t * substream)
710 intel8x0_t *chip = snd_pcm_substream_chip(substream);
712 return snd_intel8x0m_pcm_open(substream, &chip->ichd[ICHD_MDMOUT]);
715 static int snd_intel8x0m_playback_close(snd_pcm_substream_t * substream)
717 intel8x0_t *chip = snd_pcm_substream_chip(substream);
719 chip->ichd[ICHD_MDMOUT].substream = NULL;
723 static int snd_intel8x0m_capture_open(snd_pcm_substream_t * substream)
725 intel8x0_t *chip = snd_pcm_substream_chip(substream);
727 return snd_intel8x0m_pcm_open(substream, &chip->ichd[ICHD_MDMIN]);
730 static int snd_intel8x0m_capture_close(snd_pcm_substream_t * substream)
732 intel8x0_t *chip = snd_pcm_substream_chip(substream);
734 chip->ichd[ICHD_MDMIN].substream = NULL;
739 static snd_pcm_ops_t snd_intel8x0m_playback_ops = {
740 .open = snd_intel8x0m_playback_open,
741 .close = snd_intel8x0m_playback_close,
742 .ioctl = snd_pcm_lib_ioctl,
743 .hw_params = snd_intel8x0_hw_params,
744 .hw_free = snd_intel8x0_hw_free,
745 .prepare = snd_intel8x0m_pcm_prepare,
746 .trigger = snd_intel8x0_pcm_trigger,
747 .pointer = snd_intel8x0_pcm_pointer,
750 static snd_pcm_ops_t snd_intel8x0m_capture_ops = {
751 .open = snd_intel8x0m_capture_open,
752 .close = snd_intel8x0m_capture_close,
753 .ioctl = snd_pcm_lib_ioctl,
754 .hw_params = snd_intel8x0_hw_params,
755 .hw_free = snd_intel8x0_hw_free,
756 .prepare = snd_intel8x0m_pcm_prepare,
757 .trigger = snd_intel8x0_pcm_trigger,
758 .pointer = snd_intel8x0_pcm_pointer,
762 struct ich_pcm_table {
764 snd_pcm_ops_t *playback_ops;
765 snd_pcm_ops_t *capture_ops;
766 size_t prealloc_size;
767 size_t prealloc_max_size;
771 static int __devinit snd_intel8x0_pcm1(intel8x0_t *chip, int device, struct ich_pcm_table *rec)
778 sprintf(name, "Intel ICH - %s", rec->suffix);
780 strcpy(name, "Intel ICH");
781 err = snd_pcm_new(chip->card, name, device,
782 rec->playback_ops ? 1 : 0,
783 rec->capture_ops ? 1 : 0, &pcm);
787 if (rec->playback_ops)
788 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, rec->playback_ops);
789 if (rec->capture_ops)
790 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, rec->capture_ops);
792 pcm->private_data = chip;
795 sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix);
797 strcpy(pcm->name, chip->card->shortname);
798 chip->pcm[device] = pcm;
800 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
801 snd_dma_pci_data(chip->pci),
803 rec->prealloc_max_size);
808 static struct ich_pcm_table intel_pcms[] __devinitdata = {
811 .playback_ops = &snd_intel8x0m_playback_ops,
812 .capture_ops = &snd_intel8x0m_capture_ops,
813 .prealloc_size = 32 * 1024,
814 .prealloc_max_size = 64 * 1024,
818 static int __devinit snd_intel8x0_pcm(intel8x0_t *chip)
820 int i, tblsize, device, err;
821 struct ich_pcm_table *tbl, *rec;
827 switch (chip->device_type) {
830 tblsize = ARRAY_SIZE(nforce_pcms);
834 tblsize = ARRAY_SIZE(ali_pcms);
843 for (i = 0; i < tblsize; i++) {
845 if (i > 0 && rec->ac97_idx) {
846 /* activate PCM only when associated AC'97 codec */
847 if (! chip->ichd[rec->ac97_idx].ac97)
850 err = snd_intel8x0_pcm1(chip, device, rec);
856 chip->pcm_devs = device;
865 static void snd_intel8x0_mixer_free_ac97_bus(ac97_bus_t *bus)
867 intel8x0_t *chip = bus->private_data;
868 chip->ac97_bus = NULL;
871 static void snd_intel8x0_mixer_free_ac97(ac97_t *ac97)
873 intel8x0_t *chip = ac97->private_data;
878 static int __devinit snd_intel8x0_mixer(intel8x0_t *chip, int ac97_clock)
881 ac97_template_t ac97;
884 unsigned int glob_sta = 0;
885 static ac97_bus_ops_t ops = {
886 .write = snd_intel8x0_codec_write,
887 .read = snd_intel8x0_codec_read,
890 chip->in_ac97_init = 1;
892 memset(&ac97, 0, sizeof(ac97));
893 ac97.private_data = chip;
894 ac97.private_free = snd_intel8x0_mixer_free_ac97;
895 ac97.scaps = AC97_SCAP_SKIP_AUDIO;
897 glob_sta = igetdword(chip, ICHREG(GLOB_STA));
899 if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &pbus)) < 0)
901 pbus->private_free = snd_intel8x0_mixer_free_ac97_bus;
902 pbus->shared_type = AC97_SHARED_TYPE_ICH; /* shared with audio driver */
903 if (ac97_clock >= 8000 && ac97_clock <= 48000)
904 pbus->clock = ac97_clock;
905 chip->ac97_bus = pbus;
907 ac97.pci = chip->pci;
908 ac97.num = glob_sta & ICH_SCR ? 1 : 0;
909 if ((err = snd_ac97_mixer(pbus, &ac97, &x97)) < 0) {
910 snd_printk(KERN_ERR "Unable to initialize codec #%d\n", ac97.num);
916 if(ac97_is_modem(x97) && !chip->ichd[ICHD_MDMIN].ac97) {
917 chip->ichd[ICHD_MDMIN].ac97 = x97;
918 chip->ichd[ICHD_MDMOUT].ac97 = x97;
921 chip->in_ac97_init = 0;
925 /* clear the cold-reset bit for the next chance */
926 if (chip->device_type != DEVICE_ALI)
927 iputdword(chip, ICHREG(GLOB_CNT), igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_AC97COLD);
936 #define do_delay(chip) do {\
937 set_current_state(TASK_UNINTERRUPTIBLE);\
938 schedule_timeout(1);\
941 static int snd_intel8x0m_ich_chip_init(intel8x0_t *chip, int probing)
943 unsigned long end_time;
944 unsigned int cnt, status, nstatus;
946 /* put logic to right state */
947 /* first clear status bits */
948 status = ICH_RCS | ICH_MIINT | ICH_MOINT;
949 cnt = igetdword(chip, ICHREG(GLOB_STA));
950 iputdword(chip, ICHREG(GLOB_STA), cnt & status);
952 /* ACLink on, 2 channels */
953 cnt = igetdword(chip, ICHREG(GLOB_CNT));
954 cnt &= ~(ICH_ACLINK);
955 /* finish cold or do warm reset */
956 cnt |= (cnt & ICH_AC97COLD) == 0 ? ICH_AC97COLD : ICH_AC97WARM;
957 iputdword(chip, ICHREG(GLOB_CNT), cnt);
958 end_time = (jiffies + (HZ / 4)) + 1;
960 if ((igetdword(chip, ICHREG(GLOB_CNT)) & ICH_AC97WARM) == 0)
963 } while (time_after_eq(end_time, jiffies));
964 snd_printk("AC'97 warm reset still in progress? [0x%x]\n", igetdword(chip, ICHREG(GLOB_CNT)));
969 /* wait for any codec ready status.
970 * Once it becomes ready it should remain ready
971 * as long as we do not disable the ac97 link.
973 end_time = jiffies + HZ;
975 status = igetdword(chip, ICHREG(GLOB_STA)) & (ICH_PCR | ICH_SCR | ICH_TCR);
979 } while (time_after_eq(end_time, jiffies));
981 /* no codec is found */
982 snd_printk(KERN_ERR "codec_ready: codec is not ready [0x%x]\n", igetdword(chip, ICHREG(GLOB_STA)));
986 /* up to two codecs (modem cannot be tertiary with ICH4) */
987 nstatus = ICH_PCR | ICH_SCR;
989 /* wait for other codecs ready status. */
990 end_time = jiffies + HZ / 4;
991 while (status != nstatus && time_after_eq(end_time, jiffies)) {
993 status |= igetdword(chip, ICHREG(GLOB_STA)) & nstatus;
1000 status |= get_ich_codec_bit(chip, chip->ac97->num);
1001 /* wait until all the probed codecs are ready */
1002 end_time = jiffies + HZ;
1004 nstatus = igetdword(chip, ICHREG(GLOB_STA)) & (ICH_PCR | ICH_SCR | ICH_TCR);
1005 if (status == nstatus)
1008 } while (time_after_eq(end_time, jiffies));
1011 if (chip->device_type == DEVICE_SIS) {
1012 /* unmute the output on SIS7012 */
1013 iputword(chip, 0x4c, igetword(chip, 0x4c) | 1);
1019 static int snd_intel8x0_chip_init(intel8x0_t *chip, int probing)
1024 if ((err = snd_intel8x0m_ich_chip_init(chip, probing)) < 0)
1026 iagetword(chip, 0); /* clear semaphore flag */
1028 /* disable interrupts */
1029 for (i = 0; i < chip->bdbars_count; i++)
1030 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
1031 /* reset channels */
1032 for (i = 0; i < chip->bdbars_count; i++)
1033 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
1034 /* initialize Buffer Descriptor Lists */
1035 for (i = 0; i < chip->bdbars_count; i++)
1036 iputdword(chip, ICH_REG_OFF_BDBAR + chip->ichd[i].reg_offset, chip->ichd[i].bdbar_addr);
1040 static int snd_intel8x0_free(intel8x0_t *chip)
1046 /* disable interrupts */
1047 for (i = 0; i < chip->bdbars_count; i++)
1048 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
1049 /* reset channels */
1050 for (i = 0; i < chip->bdbars_count; i++)
1051 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
1053 synchronize_irq(chip->irq);
1055 if (chip->bdbars.area)
1056 snd_dma_free_pages(&chip->bdbars);
1057 if (chip->remap_addr)
1058 iounmap(chip->remap_addr);
1059 if (chip->remap_bmaddr)
1060 iounmap(chip->remap_bmaddr);
1062 free_irq(chip->irq, (void *)chip);
1063 pci_release_regions(chip->pci);
1064 pci_disable_device(chip->pci);
1073 static int intel8x0m_suspend(snd_card_t *card, pm_message_t state)
1075 intel8x0_t *chip = card->pm_private_data;
1078 for (i = 0; i < chip->pcm_devs; i++)
1079 snd_pcm_suspend_all(chip->pcm[i]);
1081 snd_ac97_suspend(chip->ac97);
1082 pci_disable_device(chip->pci);
1086 static int intel8x0m_resume(snd_card_t *card)
1088 intel8x0_t *chip = card->pm_private_data;
1089 pci_enable_device(chip->pci);
1090 pci_set_master(chip->pci);
1091 snd_intel8x0_chip_init(chip, 0);
1093 snd_ac97_resume(chip->ac97);
1097 #endif /* CONFIG_PM */
1099 static void snd_intel8x0m_proc_read(snd_info_entry_t * entry,
1100 snd_info_buffer_t * buffer)
1102 intel8x0_t *chip = entry->private_data;
1105 snd_iprintf(buffer, "Intel8x0m\n\n");
1106 if (chip->device_type == DEVICE_ALI)
1108 tmp = igetdword(chip, ICHREG(GLOB_STA));
1109 snd_iprintf(buffer, "Global control : 0x%08x\n", igetdword(chip, ICHREG(GLOB_CNT)));
1110 snd_iprintf(buffer, "Global status : 0x%08x\n", tmp);
1111 snd_iprintf(buffer, "AC'97 codecs ready :%s%s%s%s\n",
1112 tmp & ICH_PCR ? " primary" : "",
1113 tmp & ICH_SCR ? " secondary" : "",
1114 tmp & ICH_TCR ? " tertiary" : "",
1115 (tmp & (ICH_PCR | ICH_SCR | ICH_TCR)) == 0 ? " none" : "");
1118 static void __devinit snd_intel8x0m_proc_init(intel8x0_t * chip)
1120 snd_info_entry_t *entry;
1122 if (! snd_card_proc_new(chip->card, "intel8x0m", &entry))
1123 snd_info_set_text_ops(entry, chip, 1024, snd_intel8x0m_proc_read);
1126 static int snd_intel8x0_dev_free(snd_device_t *device)
1128 intel8x0_t *chip = device->device_data;
1129 return snd_intel8x0_free(chip);
1132 struct ich_reg_info {
1133 unsigned int int_sta_mask;
1134 unsigned int offset;
1137 static int __devinit snd_intel8x0m_create(snd_card_t * card,
1138 struct pci_dev *pci,
1139 unsigned long device_type,
1140 intel8x0_t ** r_intel8x0)
1145 unsigned int int_sta_masks;
1147 static snd_device_ops_t ops = {
1148 .dev_free = snd_intel8x0_dev_free,
1150 static struct ich_reg_info intel_regs[2] = {
1152 { ICH_MOINT, 0x10 },
1154 struct ich_reg_info *tbl;
1158 if ((err = pci_enable_device(pci)) < 0)
1161 chip = kcalloc(1, sizeof(*chip), GFP_KERNEL);
1163 pci_disable_device(pci);
1166 spin_lock_init(&chip->reg_lock);
1167 chip->device_type = device_type;
1172 if ((err = pci_request_regions(pci, card->shortname)) < 0) {
1174 pci_disable_device(pci);
1178 if (device_type == DEVICE_ALI) {
1179 /* ALI5455 has no ac97 region */
1180 chip->bmaddr = pci_resource_start(pci, 0);
1184 if (pci_resource_flags(pci, 2) & IORESOURCE_MEM) { /* ICH4 and Nforce */
1186 chip->addr = pci_resource_start(pci, 2);
1187 chip->remap_addr = ioremap_nocache(chip->addr,
1188 pci_resource_len(pci, 2));
1189 if (chip->remap_addr == NULL) {
1190 snd_printk("AC'97 space ioremap problem\n");
1191 snd_intel8x0_free(chip);
1195 chip->addr = pci_resource_start(pci, 0);
1197 if (pci_resource_flags(pci, 3) & IORESOURCE_MEM) { /* ICH4 */
1199 chip->bmaddr = pci_resource_start(pci, 3);
1200 chip->remap_bmaddr = ioremap_nocache(chip->bmaddr,
1201 pci_resource_len(pci, 3));
1202 if (chip->remap_bmaddr == NULL) {
1203 snd_printk("Controller space ioremap problem\n");
1204 snd_intel8x0_free(chip);
1208 chip->bmaddr = pci_resource_start(pci, 1);
1212 if (request_irq(pci->irq, snd_intel8x0_interrupt, SA_INTERRUPT|SA_SHIRQ, card->shortname, (void *)chip)) {
1213 snd_printk("unable to grab IRQ %d\n", pci->irq);
1214 snd_intel8x0_free(chip);
1217 chip->irq = pci->irq;
1218 pci_set_master(pci);
1219 synchronize_irq(chip->irq);
1221 /* initialize offsets */
1222 chip->bdbars_count = 2;
1225 for (i = 0; i < chip->bdbars_count; i++) {
1226 ichdev = &chip->ichd[i];
1228 ichdev->reg_offset = tbl[i].offset;
1229 ichdev->int_sta_mask = tbl[i].int_sta_mask;
1230 if (device_type == DEVICE_SIS) {
1231 /* SiS 7013 swaps the registers */
1232 ichdev->roff_sr = ICH_REG_OFF_PICB;
1233 ichdev->roff_picb = ICH_REG_OFF_SR;
1235 ichdev->roff_sr = ICH_REG_OFF_SR;
1236 ichdev->roff_picb = ICH_REG_OFF_PICB;
1238 if (device_type == DEVICE_ALI)
1239 ichdev->ali_slot = (ichdev->reg_offset - 0x40) / 0x10;
1241 /* SIS7013 handles the pcm data in bytes, others are in words */
1242 chip->pcm_pos_shift = (device_type == DEVICE_SIS) ? 0 : 1;
1244 /* allocate buffer descriptor lists */
1245 /* the start of each lists must be aligned to 8 bytes */
1246 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
1247 chip->bdbars_count * sizeof(u32) * ICH_MAX_FRAGS * 2,
1248 &chip->bdbars) < 0) {
1249 snd_intel8x0_free(chip);
1252 /* tables must be aligned to 8 bytes here, but the kernel pages
1253 are much bigger, so we don't care (on i386) */
1255 for (i = 0; i < chip->bdbars_count; i++) {
1256 ichdev = &chip->ichd[i];
1257 ichdev->bdbar = ((u32 *)chip->bdbars.area) + (i * ICH_MAX_FRAGS * 2);
1258 ichdev->bdbar_addr = chip->bdbars.addr + (i * sizeof(u32) * ICH_MAX_FRAGS * 2);
1259 int_sta_masks |= ichdev->int_sta_mask;
1261 chip->int_sta_reg = ICH_REG_GLOB_STA;
1262 chip->int_sta_mask = int_sta_masks;
1264 if ((err = snd_intel8x0_chip_init(chip, 1)) < 0) {
1265 snd_intel8x0_free(chip);
1269 snd_card_set_pm_callback(card, intel8x0m_suspend, intel8x0m_resume, chip);
1271 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
1272 snd_intel8x0_free(chip);
1276 snd_card_set_dev(card, &pci->dev);
1282 static struct shortname_table {
1285 } shortnames[] __devinitdata = {
1286 { PCI_DEVICE_ID_INTEL_82801_6, "Intel 82801AA-ICH" },
1287 { PCI_DEVICE_ID_INTEL_82901_6, "Intel 82901AB-ICH0" },
1288 { PCI_DEVICE_ID_INTEL_82801BA_6, "Intel 82801BA-ICH2" },
1289 { PCI_DEVICE_ID_INTEL_440MX_6, "Intel 440MX" },
1290 { PCI_DEVICE_ID_INTEL_ICH3_6, "Intel 82801CA-ICH3" },
1291 { PCI_DEVICE_ID_INTEL_ICH4_6, "Intel 82801DB-ICH4" },
1292 { PCI_DEVICE_ID_INTEL_ICH5_6, "Intel ICH5" },
1293 { PCI_DEVICE_ID_INTEL_ICH6_6, "Intel ICH6" },
1294 { PCI_DEVICE_ID_INTEL_ICH7_6, "Intel ICH7" },
1295 { 0x7446, "AMD AMD768" },
1296 { PCI_DEVICE_ID_SI_7013, "SiS SI7013" },
1297 { PCI_DEVICE_ID_NVIDIA_MCP_MODEM, "NVidia nForce" },
1298 { PCI_DEVICE_ID_NVIDIA_MCP2_MODEM, "NVidia nForce2" },
1299 { PCI_DEVICE_ID_NVIDIA_MCP2S_MODEM, "NVidia nForce2s" },
1300 { PCI_DEVICE_ID_NVIDIA_MCP3_MODEM, "NVidia nForce3" },
1302 { 0x5455, "ALi M5455" },
1303 { 0x746d, "AMD AMD8111" },
1308 static int __devinit snd_intel8x0m_probe(struct pci_dev *pci,
1309 const struct pci_device_id *pci_id)
1315 struct shortname_table *name;
1317 if (dev >= SNDRV_CARDS)
1324 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
1328 strcpy(card->driver, "ICH-MODEM");
1329 strcpy(card->shortname, "Intel ICH");
1330 for (name = shortnames; name->id; name++) {
1331 if (pci->device == name->id) {
1332 strcpy(card->shortname, name->s);
1336 strcat(card->shortname," Modem");
1338 if ((err = snd_intel8x0m_create(card, pci, pci_id->driver_data, &chip)) < 0) {
1339 snd_card_free(card);
1343 if ((err = snd_intel8x0_mixer(chip, ac97_clock[dev])) < 0) {
1344 snd_card_free(card);
1347 if ((err = snd_intel8x0_pcm(chip)) < 0) {
1348 snd_card_free(card);
1352 snd_intel8x0m_proc_init(chip);
1354 sprintf(card->longname, "%s at 0x%lx, irq %i",
1355 card->shortname, chip->addr, chip->irq);
1357 if ((err = snd_card_register(card)) < 0) {
1358 snd_card_free(card);
1361 pci_set_drvdata(pci, card);
1366 static void __devexit snd_intel8x0m_remove(struct pci_dev *pci)
1368 snd_card_free(pci_get_drvdata(pci));
1369 pci_set_drvdata(pci, NULL);
1372 static struct pci_driver driver = {
1373 .name = "Intel ICH Modem",
1374 .id_table = snd_intel8x0m_ids,
1375 .probe = snd_intel8x0m_probe,
1376 .remove = __devexit_p(snd_intel8x0m_remove),
1377 SND_PCI_PM_CALLBACKS
1381 static int __init alsa_card_intel8x0m_init(void)
1383 return pci_register_driver(&driver);
1386 static void __exit alsa_card_intel8x0m_exit(void)
1388 pci_unregister_driver(&driver);
1391 module_init(alsa_card_intel8x0m_init)
1392 module_exit(alsa_card_intel8x0m_exit)