blob: faf674e671aca3c1432cf4d04860bb69f210d5df [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA modem driver for Intel ICH (i8x0) chipsets
3 *
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02004 * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Sasha Khapyorskyf01cc522005-10-10 11:45:31 +02006 * This is modified (by Sasha Khapyorsky <sashak@alsa-project.org>) version
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * of ALSA ICH sound driver intel8x0.c .
8 *
9 *
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.
14 *
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.
19 *
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
23 *
24 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <asm/io.h>
27#include <linux/delay.h>
28#include <linux/interrupt.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/slab.h>
32#include <linux/moduleparam.h>
33#include <sound/core.h>
34#include <sound/pcm.h>
35#include <sound/ac97_codec.h>
36#include <sound/info.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <sound/initval.h>
38
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020039MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Takashi Iwai6b75a9d2005-11-17 15:04:53 +010040MODULE_DESCRIPTION("Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; "
41 "SiS 7013; NVidia MCP/2/2S/3 modems");
Linus Torvalds1da177e2005-04-16 15:20:36 -070042MODULE_LICENSE("GPL");
43MODULE_SUPPORTED_DEVICE("{{Intel,82801AA-ICH},"
44 "{Intel,82901AB-ICH0},"
45 "{Intel,82801BA-ICH2},"
46 "{Intel,82801CA-ICH3},"
47 "{Intel,82801DB-ICH4},"
48 "{Intel,ICH5},"
49 "{Intel,ICH6},"
50 "{Intel,ICH7},"
51 "{Intel,MX440},"
52 "{SiS,7013},"
53 "{NVidia,NForce Modem},"
54 "{NVidia,NForce2 Modem},"
55 "{NVidia,NForce2s Modem},"
56 "{NVidia,NForce3 Modem},"
57 "{AMD,AMD768}}");
58
Clemens Ladischb7fe4622005-10-04 08:46:51 +020059static int index = -2; /* Exclude the first card */
60static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
Takashi Iwai6581f4e2006-05-17 17:14:51 +020061static int ac97_clock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Clemens Ladischb7fe4622005-10-04 08:46:51 +020063module_param(index, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_PARM_DESC(index, "Index value for Intel i8x0 modemcard.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020065module_param(id, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066MODULE_PARM_DESC(id, "ID string for Intel i8x0 modemcard.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020067module_param(ac97_clock, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (0 = auto-detect).");
69
Takashi Iwai2b3e5842005-10-06 13:47:23 +020070/* just for backward compatibility */
71static int enable;
Takashi Iwai698444f2005-10-20 16:53:49 +020072module_param(enable, bool, 0444);
Takashi Iwai2b3e5842005-10-06 13:47:23 +020073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/*
75 * Direct registers
76 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077enum { DEVICE_INTEL, DEVICE_SIS, DEVICE_ALI, DEVICE_NFORCE };
78
79#define ICHREG(x) ICH_REG_##x
80
81#define DEFINE_REGSET(name,base) \
82enum { \
83 ICH_REG_##name##_BDBAR = base + 0x0, /* dword - buffer descriptor list base address */ \
84 ICH_REG_##name##_CIV = base + 0x04, /* byte - current index value */ \
85 ICH_REG_##name##_LVI = base + 0x05, /* byte - last valid index */ \
86 ICH_REG_##name##_SR = base + 0x06, /* byte - status register */ \
87 ICH_REG_##name##_PICB = base + 0x08, /* word - position in current buffer */ \
88 ICH_REG_##name##_PIV = base + 0x0a, /* byte - prefetched index value */ \
89 ICH_REG_##name##_CR = base + 0x0b, /* byte - control register */ \
90};
91
92/* busmaster blocks */
93DEFINE_REGSET(OFF, 0); /* offset */
94
95/* values for each busmaster block */
96
97/* LVI */
98#define ICH_REG_LVI_MASK 0x1f
99
100/* SR */
101#define ICH_FIFOE 0x10 /* FIFO error */
102#define ICH_BCIS 0x08 /* buffer completion interrupt status */
103#define ICH_LVBCI 0x04 /* last valid buffer completion interrupt */
104#define ICH_CELV 0x02 /* current equals last valid */
105#define ICH_DCH 0x01 /* DMA controller halted */
106
107/* PIV */
108#define ICH_REG_PIV_MASK 0x1f /* mask */
109
110/* CR */
111#define ICH_IOCE 0x10 /* interrupt on completion enable */
112#define ICH_FEIE 0x08 /* fifo error interrupt enable */
113#define ICH_LVBIE 0x04 /* last valid buffer interrupt enable */
114#define ICH_RESETREGS 0x02 /* reset busmaster registers */
115#define ICH_STARTBM 0x01 /* start busmaster operation */
116
117
118/* global block */
119#define ICH_REG_GLOB_CNT 0x3c /* dword - global control */
120#define ICH_TRIE 0x00000040 /* tertiary resume interrupt enable */
121#define ICH_SRIE 0x00000020 /* secondary resume interrupt enable */
122#define ICH_PRIE 0x00000010 /* primary resume interrupt enable */
123#define ICH_ACLINK 0x00000008 /* AClink shut off */
124#define ICH_AC97WARM 0x00000004 /* AC'97 warm reset */
125#define ICH_AC97COLD 0x00000002 /* AC'97 cold reset */
126#define ICH_GIE 0x00000001 /* GPI interrupt enable */
127#define ICH_REG_GLOB_STA 0x40 /* dword - global status */
128#define ICH_TRI 0x20000000 /* ICH4: tertiary (AC_SDIN2) resume interrupt */
129#define ICH_TCR 0x10000000 /* ICH4: tertiary (AC_SDIN2) codec ready */
130#define ICH_BCS 0x08000000 /* ICH4: bit clock stopped */
131#define ICH_SPINT 0x04000000 /* ICH4: S/PDIF interrupt */
132#define ICH_P2INT 0x02000000 /* ICH4: PCM2-In interrupt */
133#define ICH_M2INT 0x01000000 /* ICH4: Mic2-In interrupt */
134#define ICH_SAMPLE_CAP 0x00c00000 /* ICH4: sample capability bits (RO) */
135#define ICH_MULTICHAN_CAP 0x00300000 /* ICH4: multi-channel capability bits (RO) */
136#define ICH_MD3 0x00020000 /* modem power down semaphore */
137#define ICH_AD3 0x00010000 /* audio power down semaphore */
138#define ICH_RCS 0x00008000 /* read completion status */
139#define ICH_BIT3 0x00004000 /* bit 3 slot 12 */
140#define ICH_BIT2 0x00002000 /* bit 2 slot 12 */
141#define ICH_BIT1 0x00001000 /* bit 1 slot 12 */
142#define ICH_SRI 0x00000800 /* secondary (AC_SDIN1) resume interrupt */
143#define ICH_PRI 0x00000400 /* primary (AC_SDIN0) resume interrupt */
144#define ICH_SCR 0x00000200 /* secondary (AC_SDIN1) codec ready */
145#define ICH_PCR 0x00000100 /* primary (AC_SDIN0) codec ready */
146#define ICH_MCINT 0x00000080 /* MIC capture interrupt */
147#define ICH_POINT 0x00000040 /* playback interrupt */
148#define ICH_PIINT 0x00000020 /* capture interrupt */
149#define ICH_NVSPINT 0x00000010 /* nforce spdif interrupt */
150#define ICH_MOINT 0x00000004 /* modem playback interrupt */
151#define ICH_MIINT 0x00000002 /* modem capture interrupt */
152#define ICH_GSCI 0x00000001 /* GPI status change interrupt */
153#define ICH_REG_ACC_SEMA 0x44 /* byte - codec write semaphore */
154#define ICH_CAS 0x01 /* codec access semaphore */
155
156#define ICH_MAX_FRAGS 32 /* max hw frags */
157
158
159/*
160 *
161 */
162
163enum { ICHD_MDMIN, ICHD_MDMOUT, ICHD_MDMLAST = ICHD_MDMOUT };
164enum { ALID_MDMIN, ALID_MDMOUT, ALID_MDMLAST = ALID_MDMOUT };
165
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100166#define get_ichdev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100168struct ichdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 unsigned int ichd; /* ich device number */
170 unsigned long reg_offset; /* offset to bmaddr */
171 u32 *bdbar; /* CPU address (32bit) */
172 unsigned int bdbar_addr; /* PCI bus address (32bit) */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100173 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 unsigned int physbuf; /* physical address (32bit) */
175 unsigned int size;
176 unsigned int fragsize;
177 unsigned int fragsize1;
178 unsigned int position;
179 int frags;
180 int lvi;
181 int lvi_frag;
182 int civ;
183 int ack;
184 int ack_reload;
185 unsigned int ack_bit;
186 unsigned int roff_sr;
187 unsigned int roff_picb;
188 unsigned int int_sta_mask; /* interrupt status mask */
189 unsigned int ali_slot; /* ALI DMA slot */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100190 struct snd_ac97 *ac97;
191};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100193struct intel8x0m {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 unsigned int device_type;
195
196 int irq;
197
Takashi Iwai3388c372006-10-06 17:06:39 +0200198 void __iomem *addr;
199 void __iomem *bmaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 struct pci_dev *pci;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100202 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 int pcm_devs;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100205 struct snd_pcm *pcm[2];
206 struct ichdev ichd[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 unsigned int in_ac97_init: 1;
209
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100210 struct snd_ac97_bus *ac97_bus;
211 struct snd_ac97 *ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 spinlock_t reg_lock;
214
215 struct snd_dma_buffer bdbars;
216 u32 bdbars_count;
217 u32 int_sta_reg; /* interrupt status register */
218 u32 int_sta_mask; /* interrupt status mask */
219 unsigned int pcm_pos_shift;
220};
221
Takashi Iwaif40b6892006-07-05 16:51:05 +0200222static struct pci_device_id snd_intel8x0m_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 { 0x8086, 0x2416, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801AA */
224 { 0x8086, 0x2426, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82901AB */
225 { 0x8086, 0x2446, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801BA */
226 { 0x8086, 0x2486, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH3 */
227 { 0x8086, 0x24c6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH4 */
228 { 0x8086, 0x24d6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH5 */
229 { 0x8086, 0x266d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH6 */
230 { 0x8086, 0x27dd, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH7 */
231 { 0x8086, 0x7196, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 440MX */
232 { 0x1022, 0x7446, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD768 */
233 { 0x1039, 0x7013, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_SIS }, /* SI7013 */
234 { 0x10de, 0x01c1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE */
235 { 0x10de, 0x0069, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2 */
236 { 0x10de, 0x0089, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2s */
237 { 0x10de, 0x00d9, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE3 */
238#if 0
239 { 0x1022, 0x746d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD8111 */
240 { 0x10b9, 0x5455, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_ALI }, /* Ali5455 */
241#endif
242 { 0, }
243};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
245MODULE_DEVICE_TABLE(pci, snd_intel8x0m_ids);
246
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247/*
248 * Lowlevel I/O - busmaster
249 */
250
Takashi Iwai3388c372006-10-06 17:06:39 +0200251static inline u8 igetbyte(struct intel8x0m *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252{
Takashi Iwai3388c372006-10-06 17:06:39 +0200253 return ioread8(chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Takashi Iwai3388c372006-10-06 17:06:39 +0200256static inline u16 igetword(struct intel8x0m *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257{
Takashi Iwai3388c372006-10-06 17:06:39 +0200258 return ioread16(chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
260
Takashi Iwai3388c372006-10-06 17:06:39 +0200261static inline u32 igetdword(struct intel8x0m *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Takashi Iwai3388c372006-10-06 17:06:39 +0200263 return ioread32(chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Takashi Iwai3388c372006-10-06 17:06:39 +0200266static inline void iputbyte(struct intel8x0m *chip, u32 offset, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Takashi Iwai3388c372006-10-06 17:06:39 +0200268 iowrite8(val, chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269}
270
Takashi Iwai3388c372006-10-06 17:06:39 +0200271static inline void iputword(struct intel8x0m *chip, u32 offset, u16 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Takashi Iwai3388c372006-10-06 17:06:39 +0200273 iowrite16(val, chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Takashi Iwai3388c372006-10-06 17:06:39 +0200276static inline void iputdword(struct intel8x0m *chip, u32 offset, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Takashi Iwai3388c372006-10-06 17:06:39 +0200278 iowrite32(val, chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281/*
282 * Lowlevel I/O - AC'97 registers
283 */
284
Takashi Iwai3388c372006-10-06 17:06:39 +0200285static inline u16 iagetword(struct intel8x0m *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Takashi Iwai3388c372006-10-06 17:06:39 +0200287 return ioread16(chip->addr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
Takashi Iwai3388c372006-10-06 17:06:39 +0200290static inline void iaputword(struct intel8x0m *chip, u32 offset, u16 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
Takashi Iwai3388c372006-10-06 17:06:39 +0200292 iowrite16(val, chip->addr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
295/*
296 * Basic I/O
297 */
298
299/*
300 * access to AC97 codec via normal i/o (for ICH and SIS7013)
301 */
302
303/* return the GLOB_STA bit for the corresponding codec */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100304static unsigned int get_ich_codec_bit(struct intel8x0m *chip, unsigned int codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 static unsigned int codec_bit[3] = {
307 ICH_PCR, ICH_SCR, ICH_TCR
308 };
309 snd_assert(codec < 3, return ICH_PCR);
310 return codec_bit[codec];
311}
312
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100313static int snd_intel8x0m_codec_semaphore(struct intel8x0m *chip, unsigned int codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 int time;
316
317 if (codec > 1)
318 return -EIO;
319 codec = get_ich_codec_bit(chip, codec);
320
321 /* codec ready ? */
322 if ((igetdword(chip, ICHREG(GLOB_STA)) & codec) == 0)
323 return -EIO;
324
325 /* Anyone holding a semaphore for 1 msec should be shot... */
326 time = 100;
327 do {
328 if (!(igetbyte(chip, ICHREG(ACC_SEMA)) & ICH_CAS))
329 return 0;
330 udelay(10);
331 } while (time--);
332
333 /* access to some forbidden (non existant) ac97 registers will not
334 * reset the semaphore. So even if you don't get the semaphore, still
335 * continue the access. We don't need the semaphore anyway. */
Takashi Iwai99b359b2005-10-20 18:26:44 +0200336 snd_printk(KERN_ERR "codec_semaphore: semaphore is not ready [0x%x][0x%x]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 igetbyte(chip, ICHREG(ACC_SEMA)), igetdword(chip, ICHREG(GLOB_STA)));
338 iagetword(chip, 0); /* clear semaphore flag */
339 /* I don't care about the semaphore */
340 return -EBUSY;
341}
342
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100343static void snd_intel8x0_codec_write(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 unsigned short reg,
345 unsigned short val)
346{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100347 struct intel8x0m *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) {
350 if (! chip->in_ac97_init)
Takashi Iwai99b359b2005-10-20 18:26:44 +0200351 snd_printk(KERN_ERR "codec_write %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 }
353 iaputword(chip, reg + ac97->num * 0x80, val);
354}
355
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100356static unsigned short snd_intel8x0_codec_read(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 unsigned short reg)
358{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100359 struct intel8x0m *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 unsigned short res;
361 unsigned int tmp;
362
363 if (snd_intel8x0m_codec_semaphore(chip, ac97->num) < 0) {
364 if (! chip->in_ac97_init)
Takashi Iwai99b359b2005-10-20 18:26:44 +0200365 snd_printk(KERN_ERR "codec_read %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 res = 0xffff;
367 } else {
368 res = iagetword(chip, reg + ac97->num * 0x80);
369 if ((tmp = igetdword(chip, ICHREG(GLOB_STA))) & ICH_RCS) {
370 /* reset RCS and preserve other R/WC bits */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100371 iputdword(chip, ICHREG(GLOB_STA),
372 tmp & ~(ICH_SRI|ICH_PRI|ICH_TRI|ICH_GSCI));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (! chip->in_ac97_init)
Takashi Iwai99b359b2005-10-20 18:26:44 +0200374 snd_printk(KERN_ERR "codec_read %d: read timeout for register 0x%x\n", ac97->num, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 res = 0xffff;
376 }
377 }
Sasha Khapyorsky2c56c472005-04-07 20:21:21 +0200378 if (reg == AC97_GPIO_STATUS)
379 iagetword(chip, 0); /* clear semaphore */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return res;
381}
382
383
384/*
385 * DMA I/O
386 */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100387static void snd_intel8x0_setup_periods(struct intel8x0m *chip, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
389 int idx;
390 u32 *bdbar = ichdev->bdbar;
391 unsigned long port = ichdev->reg_offset;
392
393 iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);
394 if (ichdev->size == ichdev->fragsize) {
395 ichdev->ack_reload = ichdev->ack = 2;
396 ichdev->fragsize1 = ichdev->fragsize >> 1;
397 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 4) {
398 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf);
399 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
400 ichdev->fragsize1 >> chip->pcm_pos_shift);
401 bdbar[idx + 2] = cpu_to_le32(ichdev->physbuf + (ichdev->size >> 1));
402 bdbar[idx + 3] = cpu_to_le32(0x80000000 | /* interrupt on completion */
403 ichdev->fragsize1 >> chip->pcm_pos_shift);
404 }
405 ichdev->frags = 2;
406 } else {
407 ichdev->ack_reload = ichdev->ack = 1;
408 ichdev->fragsize1 = ichdev->fragsize;
409 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 2) {
410 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf + (((idx >> 1) * ichdev->fragsize) % ichdev->size));
411 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
412 ichdev->fragsize >> chip->pcm_pos_shift);
413 // printk("bdbar[%i] = 0x%x [0x%x]\n", idx + 0, bdbar[idx + 0], bdbar[idx + 1]);
414 }
415 ichdev->frags = ichdev->size / ichdev->fragsize;
416 }
417 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi = ICH_REG_LVI_MASK);
418 ichdev->civ = 0;
419 iputbyte(chip, port + ICH_REG_OFF_CIV, 0);
420 ichdev->lvi_frag = ICH_REG_LVI_MASK % ichdev->frags;
421 ichdev->position = 0;
422#if 0
423 printk("lvi_frag = %i, frags = %i, period_size = 0x%x, period_size1 = 0x%x\n",
424 ichdev->lvi_frag, ichdev->frags, ichdev->fragsize, ichdev->fragsize1);
425#endif
426 /* clear interrupts */
427 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
428}
429
430/*
431 * Interrupt handler
432 */
433
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100434static inline void snd_intel8x0_update(struct intel8x0m *chip, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
436 unsigned long port = ichdev->reg_offset;
437 int civ, i, step;
438 int ack = 0;
439
440 civ = igetbyte(chip, port + ICH_REG_OFF_CIV);
441 if (civ == ichdev->civ) {
442 // snd_printd("civ same %d\n", civ);
443 step = 1;
444 ichdev->civ++;
445 ichdev->civ &= ICH_REG_LVI_MASK;
446 } else {
447 step = civ - ichdev->civ;
448 if (step < 0)
449 step += ICH_REG_LVI_MASK + 1;
450 // if (step != 1)
451 // snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ);
452 ichdev->civ = civ;
453 }
454
455 ichdev->position += step * ichdev->fragsize1;
456 ichdev->position %= ichdev->size;
457 ichdev->lvi += step;
458 ichdev->lvi &= ICH_REG_LVI_MASK;
459 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
460 for (i = 0; i < step; i++) {
461 ichdev->lvi_frag++;
462 ichdev->lvi_frag %= ichdev->frags;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100463 ichdev->bdbar[ichdev->lvi * 2] = cpu_to_le32(ichdev->physbuf +
464 ichdev->lvi_frag *
465 ichdev->fragsize1);
466#if 0
467 printk("new: bdbar[%i] = 0x%x [0x%x], prefetch = %i, all = 0x%x, 0x%x\n",
468 ichdev->lvi * 2, ichdev->bdbar[ichdev->lvi * 2],
469 ichdev->bdbar[ichdev->lvi * 2 + 1], inb(ICH_REG_OFF_PIV + port),
470 inl(port + 4), inb(port + ICH_REG_OFF_CR));
471#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (--ichdev->ack == 0) {
473 ichdev->ack = ichdev->ack_reload;
474 ack = 1;
475 }
476 }
477 if (ack && ichdev->substream) {
478 spin_unlock(&chip->reg_lock);
479 snd_pcm_period_elapsed(ichdev->substream);
480 spin_lock(&chip->reg_lock);
481 }
482 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
483}
484
David Howells7d12e782006-10-05 14:55:46 +0100485static irqreturn_t snd_intel8x0_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100487 struct intel8x0m *chip = dev_id;
488 struct ichdev *ichdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 unsigned int status;
490 unsigned int i;
491
492 spin_lock(&chip->reg_lock);
493 status = igetdword(chip, chip->int_sta_reg);
494 if (status == 0xffffffff) { /* we are not yet resumed */
495 spin_unlock(&chip->reg_lock);
496 return IRQ_NONE;
497 }
498 if ((status & chip->int_sta_mask) == 0) {
499 if (status)
500 iputdword(chip, chip->int_sta_reg, status);
501 spin_unlock(&chip->reg_lock);
502 return IRQ_NONE;
503 }
504
505 for (i = 0; i < chip->bdbars_count; i++) {
506 ichdev = &chip->ichd[i];
507 if (status & ichdev->int_sta_mask)
508 snd_intel8x0_update(chip, ichdev);
509 }
510
511 /* ack them */
512 iputdword(chip, chip->int_sta_reg, status & chip->int_sta_mask);
513 spin_unlock(&chip->reg_lock);
514
515 return IRQ_HANDLED;
516}
517
518/*
519 * PCM part
520 */
521
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100522static int snd_intel8x0_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100524 struct intel8x0m *chip = snd_pcm_substream_chip(substream);
525 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 unsigned char val = 0;
527 unsigned long port = ichdev->reg_offset;
528
529 switch (cmd) {
530 case SNDRV_PCM_TRIGGER_START:
531 case SNDRV_PCM_TRIGGER_RESUME:
532 val = ICH_IOCE | ICH_STARTBM;
533 break;
534 case SNDRV_PCM_TRIGGER_STOP:
535 case SNDRV_PCM_TRIGGER_SUSPEND:
536 val = 0;
537 break;
538 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
539 val = ICH_IOCE;
540 break;
541 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
542 val = ICH_IOCE | ICH_STARTBM;
543 break;
544 default:
545 return -EINVAL;
546 }
547 iputbyte(chip, port + ICH_REG_OFF_CR, val);
548 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
549 /* wait until DMA stopped */
550 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH)) ;
551 /* reset whole DMA things */
552 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
553 }
554 return 0;
555}
556
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100557static int snd_intel8x0_hw_params(struct snd_pcm_substream *substream,
558 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559{
560 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
561}
562
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100563static int snd_intel8x0_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 return snd_pcm_lib_free_pages(substream);
566}
567
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100568static snd_pcm_uframes_t snd_intel8x0_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100570 struct intel8x0m *chip = snd_pcm_substream_chip(substream);
571 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 size_t ptr1, ptr;
573
574 ptr1 = igetword(chip, ichdev->reg_offset + ichdev->roff_picb) << chip->pcm_pos_shift;
575 if (ptr1 != 0)
576 ptr = ichdev->fragsize1 - ptr1;
577 else
578 ptr = 0;
579 ptr += ichdev->position;
580 if (ptr >= ichdev->size)
581 return 0;
582 return bytes_to_frames(substream->runtime, ptr);
583}
584
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100585static int snd_intel8x0m_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100587 struct intel8x0m *chip = snd_pcm_substream_chip(substream);
588 struct snd_pcm_runtime *runtime = substream->runtime;
589 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591 ichdev->physbuf = runtime->dma_addr;
592 ichdev->size = snd_pcm_lib_buffer_bytes(substream);
593 ichdev->fragsize = snd_pcm_lib_period_bytes(substream);
594 snd_ac97_write(ichdev->ac97, AC97_LINE1_RATE, runtime->rate);
595 snd_ac97_write(ichdev->ac97, AC97_LINE1_LEVEL, 0);
596 snd_intel8x0_setup_periods(chip, ichdev);
597 return 0;
598}
599
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100600static struct snd_pcm_hardware snd_intel8x0m_stream =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{
602 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
603 SNDRV_PCM_INFO_BLOCK_TRANSFER |
604 SNDRV_PCM_INFO_MMAP_VALID |
605 SNDRV_PCM_INFO_PAUSE |
606 SNDRV_PCM_INFO_RESUME),
607 .formats = SNDRV_PCM_FMTBIT_S16_LE,
608 .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_KNOT,
609 .rate_min = 8000,
610 .rate_max = 16000,
611 .channels_min = 1,
612 .channels_max = 1,
613 .buffer_bytes_max = 64 * 1024,
614 .period_bytes_min = 32,
615 .period_bytes_max = 64 * 1024,
616 .periods_min = 1,
617 .periods_max = 1024,
618 .fifo_size = 0,
619};
620
621
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100622static int snd_intel8x0m_pcm_open(struct snd_pcm_substream *substream, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
624 static unsigned int rates[] = { 8000, 9600, 12000, 16000 };
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100625 static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 .count = ARRAY_SIZE(rates),
627 .list = rates,
628 .mask = 0,
629 };
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100630 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 int err;
632
633 ichdev->substream = substream;
634 runtime->hw = snd_intel8x0m_stream;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100635 err = snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
636 &hw_constraints_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if ( err < 0 )
638 return err;
639 runtime->private_data = ichdev;
640 return 0;
641}
642
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100643static int snd_intel8x0m_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100645 struct intel8x0m *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
647 return snd_intel8x0m_pcm_open(substream, &chip->ichd[ICHD_MDMOUT]);
648}
649
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100650static int snd_intel8x0m_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100652 struct intel8x0m *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
654 chip->ichd[ICHD_MDMOUT].substream = NULL;
655 return 0;
656}
657
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100658static int snd_intel8x0m_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100660 struct intel8x0m *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 return snd_intel8x0m_pcm_open(substream, &chip->ichd[ICHD_MDMIN]);
663}
664
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100665static int snd_intel8x0m_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100667 struct intel8x0m *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
669 chip->ichd[ICHD_MDMIN].substream = NULL;
670 return 0;
671}
672
673
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100674static struct snd_pcm_ops snd_intel8x0m_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 .open = snd_intel8x0m_playback_open,
676 .close = snd_intel8x0m_playback_close,
677 .ioctl = snd_pcm_lib_ioctl,
678 .hw_params = snd_intel8x0_hw_params,
679 .hw_free = snd_intel8x0_hw_free,
680 .prepare = snd_intel8x0m_pcm_prepare,
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200681 .trigger = snd_intel8x0_pcm_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 .pointer = snd_intel8x0_pcm_pointer,
683};
684
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100685static struct snd_pcm_ops snd_intel8x0m_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 .open = snd_intel8x0m_capture_open,
687 .close = snd_intel8x0m_capture_close,
688 .ioctl = snd_pcm_lib_ioctl,
689 .hw_params = snd_intel8x0_hw_params,
690 .hw_free = snd_intel8x0_hw_free,
691 .prepare = snd_intel8x0m_pcm_prepare,
Sasha Khapyorsky83a5b722005-05-29 15:10:07 +0200692 .trigger = snd_intel8x0_pcm_trigger,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 .pointer = snd_intel8x0_pcm_pointer,
694};
695
696
697struct ich_pcm_table {
698 char *suffix;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100699 struct snd_pcm_ops *playback_ops;
700 struct snd_pcm_ops *capture_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 size_t prealloc_size;
702 size_t prealloc_max_size;
703 int ac97_idx;
704};
705
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100706static int __devinit snd_intel8x0_pcm1(struct intel8x0m *chip, int device,
707 struct ich_pcm_table *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100709 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 int err;
711 char name[32];
712
713 if (rec->suffix)
714 sprintf(name, "Intel ICH - %s", rec->suffix);
715 else
716 strcpy(name, "Intel ICH");
717 err = snd_pcm_new(chip->card, name, device,
718 rec->playback_ops ? 1 : 0,
719 rec->capture_ops ? 1 : 0, &pcm);
720 if (err < 0)
721 return err;
722
723 if (rec->playback_ops)
724 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, rec->playback_ops);
725 if (rec->capture_ops)
726 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, rec->capture_ops);
727
728 pcm->private_data = chip;
729 pcm->info_flags = 0;
Sasha Khapyorsky6632d192005-09-29 11:48:17 +0200730 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (rec->suffix)
732 sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix);
733 else
734 strcpy(pcm->name, chip->card->shortname);
735 chip->pcm[device] = pcm;
736
737 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
738 snd_dma_pci_data(chip->pci),
739 rec->prealloc_size,
740 rec->prealloc_max_size);
741
742 return 0;
743}
744
745static struct ich_pcm_table intel_pcms[] __devinitdata = {
746 {
747 .suffix = "Modem",
748 .playback_ops = &snd_intel8x0m_playback_ops,
749 .capture_ops = &snd_intel8x0m_capture_ops,
750 .prealloc_size = 32 * 1024,
751 .prealloc_max_size = 64 * 1024,
752 },
753};
754
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100755static int __devinit snd_intel8x0_pcm(struct intel8x0m *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
757 int i, tblsize, device, err;
758 struct ich_pcm_table *tbl, *rec;
759
760#if 1
761 tbl = intel_pcms;
762 tblsize = 1;
763#else
764 switch (chip->device_type) {
765 case DEVICE_NFORCE:
766 tbl = nforce_pcms;
767 tblsize = ARRAY_SIZE(nforce_pcms);
768 break;
769 case DEVICE_ALI:
770 tbl = ali_pcms;
771 tblsize = ARRAY_SIZE(ali_pcms);
772 break;
773 default:
774 tbl = intel_pcms;
775 tblsize = 2;
776 break;
777 }
778#endif
779 device = 0;
780 for (i = 0; i < tblsize; i++) {
781 rec = tbl + i;
782 if (i > 0 && rec->ac97_idx) {
783 /* activate PCM only when associated AC'97 codec */
784 if (! chip->ichd[rec->ac97_idx].ac97)
785 continue;
786 }
787 err = snd_intel8x0_pcm1(chip, device, rec);
788 if (err < 0)
789 return err;
790 device++;
791 }
792
793 chip->pcm_devs = device;
794 return 0;
795}
796
797
798/*
799 * Mixer part
800 */
801
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100802static void snd_intel8x0_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100804 struct intel8x0m *chip = bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 chip->ac97_bus = NULL;
806}
807
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100808static void snd_intel8x0_mixer_free_ac97(struct snd_ac97 *ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100810 struct intel8x0m *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 chip->ac97 = NULL;
812}
813
814
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100815static int __devinit snd_intel8x0_mixer(struct intel8x0m *chip, int ac97_clock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100817 struct snd_ac97_bus *pbus;
818 struct snd_ac97_template ac97;
819 struct snd_ac97 *x97;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 int err;
821 unsigned int glob_sta = 0;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100822 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 .write = snd_intel8x0_codec_write,
824 .read = snd_intel8x0_codec_read,
825 };
826
827 chip->in_ac97_init = 1;
828
829 memset(&ac97, 0, sizeof(ac97));
830 ac97.private_data = chip;
831 ac97.private_free = snd_intel8x0_mixer_free_ac97;
Takashi Iwaif1a63a32006-10-24 18:25:29 +0200832 ac97.scaps = AC97_SCAP_SKIP_AUDIO | AC97_SCAP_POWER_SAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834 glob_sta = igetdword(chip, ICHREG(GLOB_STA));
835
836 if ((err = snd_ac97_bus(chip->card, 0, &ops, chip, &pbus)) < 0)
837 goto __err;
838 pbus->private_free = snd_intel8x0_mixer_free_ac97_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (ac97_clock >= 8000 && ac97_clock <= 48000)
840 pbus->clock = ac97_clock;
841 chip->ac97_bus = pbus;
842
843 ac97.pci = chip->pci;
844 ac97.num = glob_sta & ICH_SCR ? 1 : 0;
845 if ((err = snd_ac97_mixer(pbus, &ac97, &x97)) < 0) {
846 snd_printk(KERN_ERR "Unable to initialize codec #%d\n", ac97.num);
847 if (ac97.num == 0)
848 goto __err;
849 return err;
850 }
851 chip->ac97 = x97;
852 if(ac97_is_modem(x97) && !chip->ichd[ICHD_MDMIN].ac97) {
853 chip->ichd[ICHD_MDMIN].ac97 = x97;
854 chip->ichd[ICHD_MDMOUT].ac97 = x97;
855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857 chip->in_ac97_init = 0;
858 return 0;
859
860 __err:
861 /* clear the cold-reset bit for the next chance */
862 if (chip->device_type != DEVICE_ALI)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100863 iputdword(chip, ICHREG(GLOB_CNT),
864 igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_AC97COLD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return err;
866}
867
868
869/*
870 *
871 */
872
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100873static int snd_intel8x0m_ich_chip_init(struct intel8x0m *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
875 unsigned long end_time;
876 unsigned int cnt, status, nstatus;
877
878 /* put logic to right state */
879 /* first clear status bits */
880 status = ICH_RCS | ICH_MIINT | ICH_MOINT;
881 cnt = igetdword(chip, ICHREG(GLOB_STA));
882 iputdword(chip, ICHREG(GLOB_STA), cnt & status);
883
884 /* ACLink on, 2 channels */
885 cnt = igetdword(chip, ICHREG(GLOB_CNT));
886 cnt &= ~(ICH_ACLINK);
887 /* finish cold or do warm reset */
888 cnt |= (cnt & ICH_AC97COLD) == 0 ? ICH_AC97COLD : ICH_AC97WARM;
889 iputdword(chip, ICHREG(GLOB_CNT), cnt);
890 end_time = (jiffies + (HZ / 4)) + 1;
891 do {
892 if ((igetdword(chip, ICHREG(GLOB_CNT)) & ICH_AC97WARM) == 0)
893 goto __ok;
Takashi Iwai954bea32005-11-17 10:37:40 +0100894 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 } while (time_after_eq(end_time, jiffies));
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100896 snd_printk(KERN_ERR "AC'97 warm reset still in progress? [0x%x]\n",
897 igetdword(chip, ICHREG(GLOB_CNT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 return -EIO;
899
900 __ok:
901 if (probing) {
902 /* wait for any codec ready status.
903 * Once it becomes ready it should remain ready
904 * as long as we do not disable the ac97 link.
905 */
906 end_time = jiffies + HZ;
907 do {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100908 status = igetdword(chip, ICHREG(GLOB_STA)) &
909 (ICH_PCR | ICH_SCR | ICH_TCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (status)
911 break;
Takashi Iwai954bea32005-11-17 10:37:40 +0100912 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 } while (time_after_eq(end_time, jiffies));
914 if (! status) {
915 /* no codec is found */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100916 snd_printk(KERN_ERR "codec_ready: codec is not ready [0x%x]\n",
917 igetdword(chip, ICHREG(GLOB_STA)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return -EIO;
919 }
920
921 /* up to two codecs (modem cannot be tertiary with ICH4) */
922 nstatus = ICH_PCR | ICH_SCR;
923
924 /* wait for other codecs ready status. */
925 end_time = jiffies + HZ / 4;
926 while (status != nstatus && time_after_eq(end_time, jiffies)) {
Takashi Iwai954bea32005-11-17 10:37:40 +0100927 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 status |= igetdword(chip, ICHREG(GLOB_STA)) & nstatus;
929 }
930
931 } else {
932 /* resume phase */
933 status = 0;
934 if (chip->ac97)
935 status |= get_ich_codec_bit(chip, chip->ac97->num);
936 /* wait until all the probed codecs are ready */
937 end_time = jiffies + HZ;
938 do {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100939 nstatus = igetdword(chip, ICHREG(GLOB_STA)) &
940 (ICH_PCR | ICH_SCR | ICH_TCR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (status == nstatus)
942 break;
Takashi Iwai954bea32005-11-17 10:37:40 +0100943 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 } while (time_after_eq(end_time, jiffies));
945 }
946
947 if (chip->device_type == DEVICE_SIS) {
948 /* unmute the output on SIS7012 */
949 iputword(chip, 0x4c, igetword(chip, 0x4c) | 1);
950 }
951
952 return 0;
953}
954
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100955static int snd_intel8x0_chip_init(struct intel8x0m *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 unsigned int i;
958 int err;
959
960 if ((err = snd_intel8x0m_ich_chip_init(chip, probing)) < 0)
961 return err;
962 iagetword(chip, 0); /* clear semaphore flag */
963
964 /* disable interrupts */
965 for (i = 0; i < chip->bdbars_count; i++)
966 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
967 /* reset channels */
968 for (i = 0; i < chip->bdbars_count; i++)
969 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
970 /* initialize Buffer Descriptor Lists */
971 for (i = 0; i < chip->bdbars_count; i++)
972 iputdword(chip, ICH_REG_OFF_BDBAR + chip->ichd[i].reg_offset, chip->ichd[i].bdbar_addr);
973 return 0;
974}
975
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100976static int snd_intel8x0_free(struct intel8x0m *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
978 unsigned int i;
979
980 if (chip->irq < 0)
981 goto __hw_end;
982 /* disable interrupts */
983 for (i = 0; i < chip->bdbars_count; i++)
984 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
985 /* reset channels */
986 for (i = 0; i < chip->bdbars_count; i++)
987 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
Takashi Iwaiebf029d2008-04-22 17:28:11 +0200988 __hw_end:
Jeff Garzikf000fd82008-04-22 13:50:34 +0200989 if (chip->irq >= 0)
Takashi Iwaiebf029d2008-04-22 17:28:11 +0200990 free_irq(chip->irq, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 if (chip->bdbars.area)
992 snd_dma_free_pages(&chip->bdbars);
Takashi Iwai3388c372006-10-06 17:06:39 +0200993 if (chip->addr)
994 pci_iounmap(chip->pci, chip->addr);
995 if (chip->bmaddr)
996 pci_iounmap(chip->pci, chip->bmaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 pci_release_regions(chip->pci);
998 pci_disable_device(chip->pci);
999 kfree(chip);
1000 return 0;
1001}
1002
1003#ifdef CONFIG_PM
1004/*
1005 * power management
1006 */
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001007static int intel8x0m_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001009 struct snd_card *card = pci_get_drvdata(pci);
1010 struct intel8x0m *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 int i;
1012
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001013 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 for (i = 0; i < chip->pcm_devs; i++)
1015 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001016 snd_ac97_suspend(chip->ac97);
Takashi Iwai30b35392006-10-11 18:52:53 +02001017 if (chip->irq >= 0) {
Takashi Iwaif0063c42006-09-22 15:30:42 +02001018 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02001019 chip->irq = -1;
1020 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001021 pci_disable_device(pci);
1022 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02001023 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return 0;
1025}
1026
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001027static int intel8x0m_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001029 struct snd_card *card = pci_get_drvdata(pci);
1030 struct intel8x0m *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
Takashi Iwai30b35392006-10-11 18:52:53 +02001032 pci_set_power_state(pci, PCI_D0);
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001033 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02001034 if (pci_enable_device(pci) < 0) {
1035 printk(KERN_ERR "intel8x0m: pci_enable_device failed, "
1036 "disabling device\n");
1037 snd_card_disconnect(card);
1038 return -EIO;
1039 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001040 pci_set_master(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02001041 if (request_irq(pci->irq, snd_intel8x0_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01001042 IRQF_SHARED, card->shortname, chip)) {
Takashi Iwai30b35392006-10-11 18:52:53 +02001043 printk(KERN_ERR "intel8x0m: unable to grab IRQ %d, "
1044 "disabling device\n", pci->irq);
1045 snd_card_disconnect(card);
1046 return -EIO;
1047 }
Takashi Iwaif0063c42006-09-22 15:30:42 +02001048 chip->irq = pci->irq;
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001049 snd_intel8x0_chip_init(chip, 0);
1050 snd_ac97_resume(chip->ac97);
1051
1052 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return 0;
1054}
1055#endif /* CONFIG_PM */
1056
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01001057#ifdef CONFIG_PROC_FS
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001058static void snd_intel8x0m_proc_read(struct snd_info_entry * entry,
1059 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001061 struct intel8x0m *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 unsigned int tmp;
1063
1064 snd_iprintf(buffer, "Intel8x0m\n\n");
1065 if (chip->device_type == DEVICE_ALI)
1066 return;
1067 tmp = igetdword(chip, ICHREG(GLOB_STA));
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001068 snd_iprintf(buffer, "Global control : 0x%08x\n",
1069 igetdword(chip, ICHREG(GLOB_CNT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 snd_iprintf(buffer, "Global status : 0x%08x\n", tmp);
1071 snd_iprintf(buffer, "AC'97 codecs ready :%s%s%s%s\n",
1072 tmp & ICH_PCR ? " primary" : "",
1073 tmp & ICH_SCR ? " secondary" : "",
1074 tmp & ICH_TCR ? " tertiary" : "",
1075 (tmp & (ICH_PCR | ICH_SCR | ICH_TCR)) == 0 ? " none" : "");
1076}
1077
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001078static void __devinit snd_intel8x0m_proc_init(struct intel8x0m * chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001080 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 if (! snd_card_proc_new(chip->card, "intel8x0m", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02001083 snd_info_set_text_ops(entry, chip, snd_intel8x0m_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01001085#else /* !CONFIG_PROC_FS */
1086#define snd_intel8x0m_proc_init(chip)
1087#endif /* CONFIG_PROC_FS */
1088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001090static int snd_intel8x0_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001092 struct intel8x0m *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return snd_intel8x0_free(chip);
1094}
1095
1096struct ich_reg_info {
1097 unsigned int int_sta_mask;
1098 unsigned int offset;
1099};
1100
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001101static int __devinit snd_intel8x0m_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 struct pci_dev *pci,
1103 unsigned long device_type,
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001104 struct intel8x0m ** r_intel8x0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001106 struct intel8x0m *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 int err;
1108 unsigned int i;
1109 unsigned int int_sta_masks;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001110 struct ichdev *ichdev;
1111 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 .dev_free = snd_intel8x0_dev_free,
1113 };
1114 static struct ich_reg_info intel_regs[2] = {
1115 { ICH_MIINT, 0 },
1116 { ICH_MOINT, 0x10 },
1117 };
1118 struct ich_reg_info *tbl;
1119
1120 *r_intel8x0 = NULL;
1121
1122 if ((err = pci_enable_device(pci)) < 0)
1123 return err;
1124
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001125 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 if (chip == NULL) {
1127 pci_disable_device(pci);
1128 return -ENOMEM;
1129 }
1130 spin_lock_init(&chip->reg_lock);
1131 chip->device_type = device_type;
1132 chip->card = card;
1133 chip->pci = pci;
1134 chip->irq = -1;
1135
1136 if ((err = pci_request_regions(pci, card->shortname)) < 0) {
1137 kfree(chip);
1138 pci_disable_device(pci);
1139 return err;
1140 }
1141
1142 if (device_type == DEVICE_ALI) {
1143 /* ALI5455 has no ac97 region */
Takashi Iwai3388c372006-10-06 17:06:39 +02001144 chip->bmaddr = pci_iomap(pci, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 goto port_inited;
1146 }
1147
Takashi Iwai3388c372006-10-06 17:06:39 +02001148 if (pci_resource_flags(pci, 2) & IORESOURCE_MEM) /* ICH4 and Nforce */
1149 chip->addr = pci_iomap(pci, 2, 0);
1150 else
1151 chip->addr = pci_iomap(pci, 0, 0);
1152 if (!chip->addr) {
1153 snd_printk(KERN_ERR "AC'97 space ioremap problem\n");
1154 snd_intel8x0_free(chip);
1155 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
Takashi Iwai3388c372006-10-06 17:06:39 +02001157 if (pci_resource_flags(pci, 3) & IORESOURCE_MEM) /* ICH4 */
1158 chip->bmaddr = pci_iomap(pci, 3, 0);
1159 else
1160 chip->bmaddr = pci_iomap(pci, 1, 0);
1161 if (!chip->bmaddr) {
1162 snd_printk(KERN_ERR "Controller space ioremap problem\n");
1163 snd_intel8x0_free(chip);
1164 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
1166
1167 port_inited:
Takashi Iwai437a5a42006-11-21 12:14:23 +01001168 if (request_irq(pci->irq, snd_intel8x0_interrupt, IRQF_SHARED,
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001169 card->shortname, chip)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02001170 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 snd_intel8x0_free(chip);
1172 return -EBUSY;
1173 }
1174 chip->irq = pci->irq;
1175 pci_set_master(pci);
1176 synchronize_irq(chip->irq);
1177
1178 /* initialize offsets */
1179 chip->bdbars_count = 2;
1180 tbl = intel_regs;
1181
1182 for (i = 0; i < chip->bdbars_count; i++) {
1183 ichdev = &chip->ichd[i];
1184 ichdev->ichd = i;
1185 ichdev->reg_offset = tbl[i].offset;
1186 ichdev->int_sta_mask = tbl[i].int_sta_mask;
1187 if (device_type == DEVICE_SIS) {
1188 /* SiS 7013 swaps the registers */
1189 ichdev->roff_sr = ICH_REG_OFF_PICB;
1190 ichdev->roff_picb = ICH_REG_OFF_SR;
1191 } else {
1192 ichdev->roff_sr = ICH_REG_OFF_SR;
1193 ichdev->roff_picb = ICH_REG_OFF_PICB;
1194 }
1195 if (device_type == DEVICE_ALI)
1196 ichdev->ali_slot = (ichdev->reg_offset - 0x40) / 0x10;
1197 }
1198 /* SIS7013 handles the pcm data in bytes, others are in words */
1199 chip->pcm_pos_shift = (device_type == DEVICE_SIS) ? 0 : 1;
1200
1201 /* allocate buffer descriptor lists */
1202 /* the start of each lists must be aligned to 8 bytes */
1203 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
1204 chip->bdbars_count * sizeof(u32) * ICH_MAX_FRAGS * 2,
1205 &chip->bdbars) < 0) {
1206 snd_intel8x0_free(chip);
1207 return -ENOMEM;
1208 }
1209 /* tables must be aligned to 8 bytes here, but the kernel pages
1210 are much bigger, so we don't care (on i386) */
1211 int_sta_masks = 0;
1212 for (i = 0; i < chip->bdbars_count; i++) {
1213 ichdev = &chip->ichd[i];
1214 ichdev->bdbar = ((u32 *)chip->bdbars.area) + (i * ICH_MAX_FRAGS * 2);
1215 ichdev->bdbar_addr = chip->bdbars.addr + (i * sizeof(u32) * ICH_MAX_FRAGS * 2);
1216 int_sta_masks |= ichdev->int_sta_mask;
1217 }
1218 chip->int_sta_reg = ICH_REG_GLOB_STA;
1219 chip->int_sta_mask = int_sta_masks;
1220
1221 if ((err = snd_intel8x0_chip_init(chip, 1)) < 0) {
1222 snd_intel8x0_free(chip);
1223 return err;
1224 }
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
1227 snd_intel8x0_free(chip);
1228 return err;
1229 }
1230
1231 snd_card_set_dev(card, &pci->dev);
1232
1233 *r_intel8x0 = chip;
1234 return 0;
1235}
1236
1237static struct shortname_table {
1238 unsigned int id;
1239 const char *s;
1240} shortnames[] __devinitdata = {
Takashi Iwai8cdfd252005-09-07 14:08:11 +02001241 { PCI_DEVICE_ID_INTEL_82801AA_6, "Intel 82801AA-ICH" },
1242 { PCI_DEVICE_ID_INTEL_82801AB_6, "Intel 82901AB-ICH0" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 { PCI_DEVICE_ID_INTEL_82801BA_6, "Intel 82801BA-ICH2" },
1244 { PCI_DEVICE_ID_INTEL_440MX_6, "Intel 440MX" },
Takashi Iwai8cdfd252005-09-07 14:08:11 +02001245 { PCI_DEVICE_ID_INTEL_82801CA_6, "Intel 82801CA-ICH3" },
1246 { PCI_DEVICE_ID_INTEL_82801DB_6, "Intel 82801DB-ICH4" },
1247 { PCI_DEVICE_ID_INTEL_82801EB_6, "Intel ICH5" },
1248 { PCI_DEVICE_ID_INTEL_ICH6_17, "Intel ICH6" },
1249 { PCI_DEVICE_ID_INTEL_ICH7_19, "Intel ICH7" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 { 0x7446, "AMD AMD768" },
1251 { PCI_DEVICE_ID_SI_7013, "SiS SI7013" },
Takashi Iwai8cdfd252005-09-07 14:08:11 +02001252 { PCI_DEVICE_ID_NVIDIA_MCP1_MODEM, "NVidia nForce" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 { PCI_DEVICE_ID_NVIDIA_MCP2_MODEM, "NVidia nForce2" },
1254 { PCI_DEVICE_ID_NVIDIA_MCP2S_MODEM, "NVidia nForce2s" },
1255 { PCI_DEVICE_ID_NVIDIA_MCP3_MODEM, "NVidia nForce3" },
1256#if 0
1257 { 0x5455, "ALi M5455" },
1258 { 0x746d, "AMD AMD8111" },
1259#endif
1260 { 0 },
1261};
1262
1263static int __devinit snd_intel8x0m_probe(struct pci_dev *pci,
1264 const struct pci_device_id *pci_id)
1265{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001266 struct snd_card *card;
1267 struct intel8x0m *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 int err;
1269 struct shortname_table *name;
1270
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001271 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (card == NULL)
1273 return -ENOMEM;
1274
1275 strcpy(card->driver, "ICH-MODEM");
1276 strcpy(card->shortname, "Intel ICH");
1277 for (name = shortnames; name->id; name++) {
1278 if (pci->device == name->id) {
1279 strcpy(card->shortname, name->s);
1280 break;
1281 }
1282 }
1283 strcat(card->shortname," Modem");
1284
1285 if ((err = snd_intel8x0m_create(card, pci, pci_id->driver_data, &chip)) < 0) {
1286 snd_card_free(card);
1287 return err;
1288 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001289 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001291 if ((err = snd_intel8x0_mixer(chip, ac97_clock)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 snd_card_free(card);
1293 return err;
1294 }
1295 if ((err = snd_intel8x0_pcm(chip)) < 0) {
1296 snd_card_free(card);
1297 return err;
1298 }
1299
1300 snd_intel8x0m_proc_init(chip);
1301
Takashi Iwai3388c372006-10-06 17:06:39 +02001302 sprintf(card->longname, "%s at irq %i",
1303 card->shortname, chip->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 if ((err = snd_card_register(card)) < 0) {
1306 snd_card_free(card);
1307 return err;
1308 }
1309 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 return 0;
1311}
1312
1313static void __devexit snd_intel8x0m_remove(struct pci_dev *pci)
1314{
1315 snd_card_free(pci_get_drvdata(pci));
1316 pci_set_drvdata(pci, NULL);
1317}
1318
1319static struct pci_driver driver = {
1320 .name = "Intel ICH Modem",
1321 .id_table = snd_intel8x0m_ids,
1322 .probe = snd_intel8x0m_probe,
1323 .remove = __devexit_p(snd_intel8x0m_remove),
Takashi Iwai5809c6c2005-11-17 16:10:01 +01001324#ifdef CONFIG_PM
1325 .suspend = intel8x0m_suspend,
1326 .resume = intel8x0m_resume,
1327#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328};
1329
1330
1331static int __init alsa_card_intel8x0m_init(void)
1332{
Takashi Iwai01d25d42005-04-11 16:58:24 +02001333 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336static void __exit alsa_card_intel8x0m_exit(void)
1337{
1338 pci_unregister_driver(&driver);
1339}
1340
1341module_init(alsa_card_intel8x0m_init)
1342module_exit(alsa_card_intel8x0m_exit)