blob: 4bb97646a67abebd031206bcfef3789b870f9f39 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA 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 *
6 *
7 * This code also contains alpha support for SiS 735 chipsets provided
8 * by Mike Pieper <mptei@users.sourceforge.net>. We have no datasheet
9 * for SiS735, so the code is not fully functional.
10 *
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
26 *
27 */
28
29#include <sound/driver.h>
30#include <asm/io.h>
31#include <linux/delay.h>
32#include <linux/interrupt.h>
33#include <linux/init.h>
34#include <linux/pci.h>
35#include <linux/slab.h>
36#include <linux/moduleparam.h>
37#include <sound/core.h>
38#include <sound/pcm.h>
39#include <sound/ac97_codec.h>
40#include <sound/info.h>
41#include <sound/initval.h>
42/* for 440MX workaround */
43#include <asm/pgtable.h>
44#include <asm/cacheflush.h>
45
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020046MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070047MODULE_DESCRIPTION("Intel 82801AA,82901AB,i810,i820,i830,i840,i845,MX440; SiS 7012; Ali 5455");
48MODULE_LICENSE("GPL");
49MODULE_SUPPORTED_DEVICE("{{Intel,82801AA-ICH},"
50 "{Intel,82901AB-ICH0},"
51 "{Intel,82801BA-ICH2},"
52 "{Intel,82801CA-ICH3},"
53 "{Intel,82801DB-ICH4},"
54 "{Intel,ICH5},"
55 "{Intel,ICH6},"
56 "{Intel,ICH7},"
57 "{Intel,6300ESB},"
Jason Gastonc4c8ea92005-04-16 15:24:43 -070058 "{Intel,ESB2},"
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 "{Intel,MX440},"
60 "{SiS,SI7012},"
61 "{NVidia,nForce Audio},"
62 "{NVidia,nForce2 Audio},"
63 "{AMD,AMD768},"
64 "{AMD,AMD8111},"
65 "{ALI,M5455}}");
66
Clemens Ladischb7fe4622005-10-04 08:46:51 +020067static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */
68static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
Takashi Iwai6581f4e2006-05-17 17:14:51 +020069static int ac97_clock;
Clemens Ladischb7fe4622005-10-04 08:46:51 +020070static char *ac97_quirk;
71static int buggy_semaphore;
Takashi Iwaibeef08a2005-10-27 20:55:38 +020072static int buggy_irq = -1; /* auto-check */
Clemens Ladischb7fe4622005-10-04 08:46:51 +020073static int xbox;
Takashi Iwaia9e99662006-11-24 15:42:07 +010074static int spdif_aclink = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Clemens Ladischb7fe4622005-10-04 08:46:51 +020076module_param(index, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077MODULE_PARM_DESC(index, "Index value for Intel i8x0 soundcard.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020078module_param(id, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_PARM_DESC(id, "ID string for Intel i8x0 soundcard.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020080module_param(ac97_clock, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (0 = auto-detect).");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020082module_param(ac97_quirk, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083MODULE_PARM_DESC(ac97_quirk, "AC'97 workaround for strange hardware.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020084module_param(buggy_semaphore, bool, 0444);
Takashi Iwaia06147d2005-09-08 19:54:17 +020085MODULE_PARM_DESC(buggy_semaphore, "Enable workaround for hardwares with problematic codec semaphores.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020086module_param(buggy_irq, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087MODULE_PARM_DESC(buggy_irq, "Enable workaround for buggy interrupts on some motherboards.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020088module_param(xbox, bool, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089MODULE_PARM_DESC(xbox, "Set to 1 for Xbox, if you have problems with the AC'97 codec detection.");
Takashi Iwaia9e99662006-11-24 15:42:07 +010090module_param(spdif_aclink, int, 0444);
91MODULE_PARM_DESC(spdif_aclink, "S/PDIF over AC-link.");
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Takashi Iwai2b3e5842005-10-06 13:47:23 +020093/* just for backward compatibility */
94static int enable;
Takashi Iwai698444f2005-10-20 16:53:49 +020095module_param(enable, bool, 0444);
Takashi Iwai2b3e5842005-10-06 13:47:23 +020096static int joystick;
97module_param(joystick, int, 0444);
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099/*
100 * Direct registers
101 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102enum { DEVICE_INTEL, DEVICE_INTEL_ICH4, DEVICE_SIS, DEVICE_ALI, DEVICE_NFORCE };
103
104#define ICHREG(x) ICH_REG_##x
105
106#define DEFINE_REGSET(name,base) \
107enum { \
108 ICH_REG_##name##_BDBAR = base + 0x0, /* dword - buffer descriptor list base address */ \
109 ICH_REG_##name##_CIV = base + 0x04, /* byte - current index value */ \
110 ICH_REG_##name##_LVI = base + 0x05, /* byte - last valid index */ \
111 ICH_REG_##name##_SR = base + 0x06, /* byte - status register */ \
112 ICH_REG_##name##_PICB = base + 0x08, /* word - position in current buffer */ \
113 ICH_REG_##name##_PIV = base + 0x0a, /* byte - prefetched index value */ \
114 ICH_REG_##name##_CR = base + 0x0b, /* byte - control register */ \
115};
116
117/* busmaster blocks */
118DEFINE_REGSET(OFF, 0); /* offset */
119DEFINE_REGSET(PI, 0x00); /* PCM in */
120DEFINE_REGSET(PO, 0x10); /* PCM out */
121DEFINE_REGSET(MC, 0x20); /* Mic in */
122
123/* ICH4 busmaster blocks */
124DEFINE_REGSET(MC2, 0x40); /* Mic in 2 */
125DEFINE_REGSET(PI2, 0x50); /* PCM in 2 */
126DEFINE_REGSET(SP, 0x60); /* SPDIF out */
127
128/* values for each busmaster block */
129
130/* LVI */
131#define ICH_REG_LVI_MASK 0x1f
132
133/* SR */
134#define ICH_FIFOE 0x10 /* FIFO error */
135#define ICH_BCIS 0x08 /* buffer completion interrupt status */
136#define ICH_LVBCI 0x04 /* last valid buffer completion interrupt */
137#define ICH_CELV 0x02 /* current equals last valid */
138#define ICH_DCH 0x01 /* DMA controller halted */
139
140/* PIV */
141#define ICH_REG_PIV_MASK 0x1f /* mask */
142
143/* CR */
144#define ICH_IOCE 0x10 /* interrupt on completion enable */
145#define ICH_FEIE 0x08 /* fifo error interrupt enable */
146#define ICH_LVBIE 0x04 /* last valid buffer interrupt enable */
147#define ICH_RESETREGS 0x02 /* reset busmaster registers */
148#define ICH_STARTBM 0x01 /* start busmaster operation */
149
150
151/* global block */
152#define ICH_REG_GLOB_CNT 0x2c /* dword - global control */
153#define ICH_PCM_SPDIF_MASK 0xc0000000 /* s/pdif pcm slot mask (ICH4) */
154#define ICH_PCM_SPDIF_NONE 0x00000000 /* reserved - undefined */
155#define ICH_PCM_SPDIF_78 0x40000000 /* s/pdif pcm on slots 7&8 */
156#define ICH_PCM_SPDIF_69 0x80000000 /* s/pdif pcm on slots 6&9 */
157#define ICH_PCM_SPDIF_1011 0xc0000000 /* s/pdif pcm on slots 10&11 */
158#define ICH_PCM_20BIT 0x00400000 /* 20-bit samples (ICH4) */
159#define ICH_PCM_246_MASK 0x00300000 /* 6 channels (not all chips) */
160#define ICH_PCM_6 0x00200000 /* 6 channels (not all chips) */
161#define ICH_PCM_4 0x00100000 /* 4 channels (not all chips) */
162#define ICH_PCM_2 0x00000000 /* 2 channels (stereo) */
163#define ICH_SIS_PCM_246_MASK 0x000000c0 /* 6 channels (SIS7012) */
164#define ICH_SIS_PCM_6 0x00000080 /* 6 channels (SIS7012) */
165#define ICH_SIS_PCM_4 0x00000040 /* 4 channels (SIS7012) */
166#define ICH_SIS_PCM_2 0x00000000 /* 2 channels (SIS7012) */
167#define ICH_TRIE 0x00000040 /* tertiary resume interrupt enable */
168#define ICH_SRIE 0x00000020 /* secondary resume interrupt enable */
169#define ICH_PRIE 0x00000010 /* primary resume interrupt enable */
170#define ICH_ACLINK 0x00000008 /* AClink shut off */
171#define ICH_AC97WARM 0x00000004 /* AC'97 warm reset */
172#define ICH_AC97COLD 0x00000002 /* AC'97 cold reset */
173#define ICH_GIE 0x00000001 /* GPI interrupt enable */
174#define ICH_REG_GLOB_STA 0x30 /* dword - global status */
175#define ICH_TRI 0x20000000 /* ICH4: tertiary (AC_SDIN2) resume interrupt */
176#define ICH_TCR 0x10000000 /* ICH4: tertiary (AC_SDIN2) codec ready */
177#define ICH_BCS 0x08000000 /* ICH4: bit clock stopped */
178#define ICH_SPINT 0x04000000 /* ICH4: S/PDIF interrupt */
179#define ICH_P2INT 0x02000000 /* ICH4: PCM2-In interrupt */
180#define ICH_M2INT 0x01000000 /* ICH4: Mic2-In interrupt */
181#define ICH_SAMPLE_CAP 0x00c00000 /* ICH4: sample capability bits (RO) */
182#define ICH_SAMPLE_16_20 0x00400000 /* ICH4: 16- and 20-bit samples */
183#define ICH_MULTICHAN_CAP 0x00300000 /* ICH4: multi-channel capability bits (RO) */
Takashi Iwai84a43bd2006-01-12 11:47:32 +0100184#define ICH_SIS_TRI 0x00080000 /* SIS: tertiary resume irq */
185#define ICH_SIS_TCR 0x00040000 /* SIS: tertiary codec ready */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define ICH_MD3 0x00020000 /* modem power down semaphore */
187#define ICH_AD3 0x00010000 /* audio power down semaphore */
188#define ICH_RCS 0x00008000 /* read completion status */
189#define ICH_BIT3 0x00004000 /* bit 3 slot 12 */
190#define ICH_BIT2 0x00002000 /* bit 2 slot 12 */
191#define ICH_BIT1 0x00001000 /* bit 1 slot 12 */
192#define ICH_SRI 0x00000800 /* secondary (AC_SDIN1) resume interrupt */
193#define ICH_PRI 0x00000400 /* primary (AC_SDIN0) resume interrupt */
194#define ICH_SCR 0x00000200 /* secondary (AC_SDIN1) codec ready */
195#define ICH_PCR 0x00000100 /* primary (AC_SDIN0) codec ready */
196#define ICH_MCINT 0x00000080 /* MIC capture interrupt */
197#define ICH_POINT 0x00000040 /* playback interrupt */
198#define ICH_PIINT 0x00000020 /* capture interrupt */
199#define ICH_NVSPINT 0x00000010 /* nforce spdif interrupt */
200#define ICH_MOINT 0x00000004 /* modem playback interrupt */
201#define ICH_MIINT 0x00000002 /* modem capture interrupt */
202#define ICH_GSCI 0x00000001 /* GPI status change interrupt */
203#define ICH_REG_ACC_SEMA 0x34 /* byte - codec write semaphore */
204#define ICH_CAS 0x01 /* codec access semaphore */
205#define ICH_REG_SDM 0x80
206#define ICH_DI2L_MASK 0x000000c0 /* PCM In 2, Mic In 2 data in line */
207#define ICH_DI2L_SHIFT 6
208#define ICH_DI1L_MASK 0x00000030 /* PCM In 1, Mic In 1 data in line */
209#define ICH_DI1L_SHIFT 4
210#define ICH_SE 0x00000008 /* steer enable */
211#define ICH_LDI_MASK 0x00000003 /* last codec read data input */
212
213#define ICH_MAX_FRAGS 32 /* max hw frags */
214
215
216/*
217 * registers for Ali5455
218 */
219
220/* ALi 5455 busmaster blocks */
221DEFINE_REGSET(AL_PI, 0x40); /* ALi PCM in */
222DEFINE_REGSET(AL_PO, 0x50); /* Ali PCM out */
223DEFINE_REGSET(AL_MC, 0x60); /* Ali Mic in */
224DEFINE_REGSET(AL_CDC_SPO, 0x70); /* Ali Codec SPDIF out */
225DEFINE_REGSET(AL_CENTER, 0x80); /* Ali center out */
226DEFINE_REGSET(AL_LFE, 0x90); /* Ali center out */
227DEFINE_REGSET(AL_CLR_SPI, 0xa0); /* Ali Controller SPDIF in */
228DEFINE_REGSET(AL_CLR_SPO, 0xb0); /* Ali Controller SPDIF out */
229DEFINE_REGSET(AL_I2S, 0xc0); /* Ali I2S in */
230DEFINE_REGSET(AL_PI2, 0xd0); /* Ali PCM2 in */
231DEFINE_REGSET(AL_MC2, 0xe0); /* Ali Mic2 in */
232
233enum {
234 ICH_REG_ALI_SCR = 0x00, /* System Control Register */
235 ICH_REG_ALI_SSR = 0x04, /* System Status Register */
236 ICH_REG_ALI_DMACR = 0x08, /* DMA Control Register */
237 ICH_REG_ALI_FIFOCR1 = 0x0c, /* FIFO Control Register 1 */
238 ICH_REG_ALI_INTERFACECR = 0x10, /* Interface Control Register */
239 ICH_REG_ALI_INTERRUPTCR = 0x14, /* Interrupt control Register */
240 ICH_REG_ALI_INTERRUPTSR = 0x18, /* Interrupt Status Register */
241 ICH_REG_ALI_FIFOCR2 = 0x1c, /* FIFO Control Register 2 */
242 ICH_REG_ALI_CPR = 0x20, /* Command Port Register */
243 ICH_REG_ALI_CPR_ADDR = 0x22, /* ac97 addr write */
244 ICH_REG_ALI_SPR = 0x24, /* Status Port Register */
245 ICH_REG_ALI_SPR_ADDR = 0x26, /* ac97 addr read */
246 ICH_REG_ALI_FIFOCR3 = 0x2c, /* FIFO Control Register 3 */
247 ICH_REG_ALI_TTSR = 0x30, /* Transmit Tag Slot Register */
248 ICH_REG_ALI_RTSR = 0x34, /* Receive Tag Slot Register */
249 ICH_REG_ALI_CSPSR = 0x38, /* Command/Status Port Status Register */
250 ICH_REG_ALI_CAS = 0x3c, /* Codec Write Semaphore Register */
251 ICH_REG_ALI_HWVOL = 0xf0, /* hardware volume control/status */
252 ICH_REG_ALI_I2SCR = 0xf4, /* I2S control/status */
253 ICH_REG_ALI_SPDIFCSR = 0xf8, /* spdif channel status register */
254 ICH_REG_ALI_SPDIFICS = 0xfc, /* spdif interface control/status */
255};
256
257#define ALI_CAS_SEM_BUSY 0x80000000
258#define ALI_CPR_ADDR_SECONDARY 0x100
259#define ALI_CPR_ADDR_READ 0x80
260#define ALI_CSPSR_CODEC_READY 0x08
261#define ALI_CSPSR_READ_OK 0x02
262#define ALI_CSPSR_WRITE_OK 0x01
263
264/* interrupts for the whole chip by interrupt status register finish */
265
266#define ALI_INT_MICIN2 (1<<26)
267#define ALI_INT_PCMIN2 (1<<25)
268#define ALI_INT_I2SIN (1<<24)
269#define ALI_INT_SPDIFOUT (1<<23) /* controller spdif out INTERRUPT */
270#define ALI_INT_SPDIFIN (1<<22)
271#define ALI_INT_LFEOUT (1<<21)
272#define ALI_INT_CENTEROUT (1<<20)
273#define ALI_INT_CODECSPDIFOUT (1<<19)
274#define ALI_INT_MICIN (1<<18)
275#define ALI_INT_PCMOUT (1<<17)
276#define ALI_INT_PCMIN (1<<16)
277#define ALI_INT_CPRAIS (1<<7) /* command port available */
278#define ALI_INT_SPRAIS (1<<5) /* status port available */
279#define ALI_INT_GPIO (1<<1)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100280#define ALI_INT_MASK (ALI_INT_SPDIFOUT|ALI_INT_CODECSPDIFOUT|\
281 ALI_INT_MICIN|ALI_INT_PCMOUT|ALI_INT_PCMIN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283#define ICH_ALI_SC_RESET (1<<31) /* master reset */
284#define ICH_ALI_SC_AC97_DBL (1<<30)
285#define ICH_ALI_SC_CODEC_SPDF (3<<20) /* 1=7/8, 2=6/9, 3=10/11 */
286#define ICH_ALI_SC_IN_BITS (3<<18)
287#define ICH_ALI_SC_OUT_BITS (3<<16)
288#define ICH_ALI_SC_6CH_CFG (3<<14)
289#define ICH_ALI_SC_PCM_4 (1<<8)
290#define ICH_ALI_SC_PCM_6 (2<<8)
291#define ICH_ALI_SC_PCM_246_MASK (3<<8)
292
293#define ICH_ALI_SS_SEC_ID (3<<5)
294#define ICH_ALI_SS_PRI_ID (3<<3)
295
296#define ICH_ALI_IF_AC97SP (1<<21)
297#define ICH_ALI_IF_MC (1<<20)
298#define ICH_ALI_IF_PI (1<<19)
299#define ICH_ALI_IF_MC2 (1<<18)
300#define ICH_ALI_IF_PI2 (1<<17)
301#define ICH_ALI_IF_LINE_SRC (1<<15) /* 0/1 = slot 3/6 */
302#define ICH_ALI_IF_MIC_SRC (1<<14) /* 0/1 = slot 3/6 */
303#define ICH_ALI_IF_SPDF_SRC (3<<12) /* 00 = PCM, 01 = AC97-in, 10 = spdif-in, 11 = i2s */
304#define ICH_ALI_IF_AC97_OUT (3<<8) /* 00 = PCM, 10 = spdif-in, 11 = i2s */
305#define ICH_ALI_IF_PO_SPDF (1<<3)
306#define ICH_ALI_IF_PO (1<<1)
307
308/*
309 *
310 */
311
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100312enum {
313 ICHD_PCMIN,
314 ICHD_PCMOUT,
315 ICHD_MIC,
316 ICHD_MIC2,
317 ICHD_PCM2IN,
318 ICHD_SPBAR,
319 ICHD_LAST = ICHD_SPBAR
320};
321enum {
322 NVD_PCMIN,
323 NVD_PCMOUT,
324 NVD_MIC,
325 NVD_SPBAR,
326 NVD_LAST = NVD_SPBAR
327};
328enum {
329 ALID_PCMIN,
330 ALID_PCMOUT,
331 ALID_MIC,
332 ALID_AC97SPDIFOUT,
333 ALID_SPDIFIN,
334 ALID_SPDIFOUT,
335 ALID_LAST = ALID_SPDIFOUT
336};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100338#define get_ichdev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100340struct ichdev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 unsigned int ichd; /* ich device number */
342 unsigned long reg_offset; /* offset to bmaddr */
343 u32 *bdbar; /* CPU address (32bit) */
344 unsigned int bdbar_addr; /* PCI bus address (32bit) */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100345 struct snd_pcm_substream *substream;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 unsigned int physbuf; /* physical address (32bit) */
347 unsigned int size;
348 unsigned int fragsize;
349 unsigned int fragsize1;
350 unsigned int position;
351 unsigned int pos_shift;
352 int frags;
353 int lvi;
354 int lvi_frag;
355 int civ;
356 int ack;
357 int ack_reload;
358 unsigned int ack_bit;
359 unsigned int roff_sr;
360 unsigned int roff_picb;
361 unsigned int int_sta_mask; /* interrupt status mask */
362 unsigned int ali_slot; /* ALI DMA slot */
363 struct ac97_pcm *pcm;
364 int pcm_open_flag;
365 unsigned int page_attr_changed: 1;
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200366 unsigned int suspended: 1;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100367};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100369struct intel8x0 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 unsigned int device_type;
371
372 int irq;
373
Takashi Iwai3388c372006-10-06 17:06:39 +0200374 void __iomem *addr;
375 void __iomem *bmaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 struct pci_dev *pci;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100378 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 int pcm_devs;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100381 struct snd_pcm *pcm[6];
382 struct ichdev ichd[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 unsigned multi4: 1,
385 multi6: 1,
386 dra: 1,
387 smp20bit: 1;
388 unsigned in_ac97_init: 1,
389 in_sdin_init: 1;
390 unsigned in_measurement: 1; /* during ac97 clock measurement */
391 unsigned fix_nocache: 1; /* workaround for 440MX */
392 unsigned buggy_irq: 1; /* workaround for buggy mobos */
393 unsigned xbox: 1; /* workaround for Xbox AC'97 detection */
Takashi Iwaia06147d2005-09-08 19:54:17 +0200394 unsigned buggy_semaphore: 1; /* workaround for buggy codec semaphore */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 int spdif_idx; /* SPDIF BAR index; *_SPBAR or -1 if use PCMOUT */
Takashi Iwai52b72382005-06-30 13:47:06 +0200397 unsigned int sdm_saved; /* SDM reg value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100399 struct snd_ac97_bus *ac97_bus;
400 struct snd_ac97 *ac97[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 unsigned int ac97_sdin[3];
Takashi Iwai84a43bd2006-01-12 11:47:32 +0100402 unsigned int max_codecs, ncodecs;
403 unsigned int *codec_bit;
404 unsigned int codec_isr_bits;
405 unsigned int codec_ready_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 spinlock_t reg_lock;
408
409 u32 bdbars_count;
410 struct snd_dma_buffer bdbars;
411 u32 int_sta_reg; /* interrupt status register */
412 u32 int_sta_mask; /* interrupt status mask */
413};
414
Takashi Iwaif40b6892006-07-05 16:51:05 +0200415static struct pci_device_id snd_intel8x0_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 { 0x8086, 0x2415, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801AA */
417 { 0x8086, 0x2425, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82901AB */
418 { 0x8086, 0x2445, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801BA */
419 { 0x8086, 0x2485, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH3 */
420 { 0x8086, 0x24c5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH4 */
421 { 0x8086, 0x24d5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH5 */
422 { 0x8086, 0x25a6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ESB */
423 { 0x8086, 0x266e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH6 */
424 { 0x8086, 0x27de, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH7 */
Jason Gastonc4c8ea92005-04-16 15:24:43 -0700425 { 0x8086, 0x2698, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ESB2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 { 0x8086, 0x7195, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 440MX */
427 { 0x1039, 0x7012, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_SIS }, /* SI7012 */
428 { 0x10de, 0x01b1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE */
429 { 0x10de, 0x003a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* MCP04 */
430 { 0x10de, 0x006a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2 */
431 { 0x10de, 0x0059, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* CK804 */
432 { 0x10de, 0x008a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* CK8 */
433 { 0x10de, 0x00da, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE3 */
434 { 0x10de, 0x00ea, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* CK8S */
Takashi Iwai89ac9c22006-01-24 10:36:57 +0100435 { 0x10de, 0x026b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* MCP51 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 { 0x1022, 0x746d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD8111 */
437 { 0x1022, 0x7445, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD768 */
438 { 0x10b9, 0x5455, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_ALI }, /* Ali5455 */
439 { 0, }
440};
441
442MODULE_DEVICE_TABLE(pci, snd_intel8x0_ids);
443
444/*
445 * Lowlevel I/O - busmaster
446 */
447
Takashi Iwai3388c372006-10-06 17:06:39 +0200448static inline u8 igetbyte(struct intel8x0 *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Takashi Iwai3388c372006-10-06 17:06:39 +0200450 return ioread8(chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Takashi Iwai3388c372006-10-06 17:06:39 +0200453static inline u16 igetword(struct intel8x0 *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
Takashi Iwai3388c372006-10-06 17:06:39 +0200455 return ioread16(chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Takashi Iwai3388c372006-10-06 17:06:39 +0200458static inline u32 igetdword(struct intel8x0 *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
Takashi Iwai3388c372006-10-06 17:06:39 +0200460 return ioread32(chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
Takashi Iwai3388c372006-10-06 17:06:39 +0200463static inline void iputbyte(struct intel8x0 *chip, u32 offset, u8 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Takashi Iwai3388c372006-10-06 17:06:39 +0200465 iowrite8(val, chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466}
467
Takashi Iwai3388c372006-10-06 17:06:39 +0200468static inline void iputword(struct intel8x0 *chip, u32 offset, u16 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469{
Takashi Iwai3388c372006-10-06 17:06:39 +0200470 iowrite16(val, chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Takashi Iwai3388c372006-10-06 17:06:39 +0200473static inline void iputdword(struct intel8x0 *chip, u32 offset, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Takashi Iwai3388c372006-10-06 17:06:39 +0200475 iowrite32(val, chip->bmaddr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
478/*
479 * Lowlevel I/O - AC'97 registers
480 */
481
Takashi Iwai3388c372006-10-06 17:06:39 +0200482static inline u16 iagetword(struct intel8x0 *chip, u32 offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Takashi Iwai3388c372006-10-06 17:06:39 +0200484 return ioread16(chip->addr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Takashi Iwai3388c372006-10-06 17:06:39 +0200487static inline void iaputword(struct intel8x0 *chip, u32 offset, u16 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488{
Takashi Iwai3388c372006-10-06 17:06:39 +0200489 iowrite16(val, chip->addr + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492/*
493 * Basic I/O
494 */
495
496/*
497 * access to AC97 codec via normal i/o (for ICH and SIS7012)
498 */
499
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100500static int snd_intel8x0_codec_semaphore(struct intel8x0 *chip, unsigned int codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 int time;
503
504 if (codec > 2)
505 return -EIO;
506 if (chip->in_sdin_init) {
507 /* we don't know the ready bit assignment at the moment */
508 /* so we check any */
Takashi Iwai84a43bd2006-01-12 11:47:32 +0100509 codec = chip->codec_isr_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } else {
Takashi Iwai84a43bd2006-01-12 11:47:32 +0100511 codec = chip->codec_bit[chip->ac97_sdin[codec]];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
514 /* codec ready ? */
515 if ((igetdword(chip, ICHREG(GLOB_STA)) & codec) == 0)
516 return -EIO;
517
Takashi Iwaia06147d2005-09-08 19:54:17 +0200518 if (chip->buggy_semaphore)
519 return 0; /* just ignore ... */
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* Anyone holding a semaphore for 1 msec should be shot... */
522 time = 100;
523 do {
524 if (!(igetbyte(chip, ICHREG(ACC_SEMA)) & ICH_CAS))
525 return 0;
526 udelay(10);
527 } while (time--);
528
529 /* access to some forbidden (non existant) ac97 registers will not
530 * reset the semaphore. So even if you don't get the semaphore, still
531 * continue the access. We don't need the semaphore anyway. */
Takashi Iwai99b359b2005-10-20 18:26:44 +0200532 snd_printk(KERN_ERR "codec_semaphore: semaphore is not ready [0x%x][0x%x]\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 igetbyte(chip, ICHREG(ACC_SEMA)), igetdword(chip, ICHREG(GLOB_STA)));
534 iagetword(chip, 0); /* clear semaphore flag */
535 /* I don't care about the semaphore */
536 return -EBUSY;
537}
538
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100539static void snd_intel8x0_codec_write(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 unsigned short reg,
541 unsigned short val)
542{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100543 struct intel8x0 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
545 if (snd_intel8x0_codec_semaphore(chip, ac97->num) < 0) {
546 if (! chip->in_ac97_init)
Takashi Iwai99b359b2005-10-20 18:26:44 +0200547 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 -0700548 }
549 iaputword(chip, reg + ac97->num * 0x80, val);
550}
551
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100552static unsigned short snd_intel8x0_codec_read(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 unsigned short reg)
554{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100555 struct intel8x0 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 unsigned short res;
557 unsigned int tmp;
558
559 if (snd_intel8x0_codec_semaphore(chip, ac97->num) < 0) {
560 if (! chip->in_ac97_init)
Takashi Iwai99b359b2005-10-20 18:26:44 +0200561 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 -0700562 res = 0xffff;
563 } else {
564 res = iagetword(chip, reg + ac97->num * 0x80);
565 if ((tmp = igetdword(chip, ICHREG(GLOB_STA))) & ICH_RCS) {
566 /* reset RCS and preserve other R/WC bits */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100567 iputdword(chip, ICHREG(GLOB_STA), tmp &
Takashi Iwai84a43bd2006-01-12 11:47:32 +0100568 ~(chip->codec_ready_bits | ICH_GSCI));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 if (! chip->in_ac97_init)
Takashi Iwai99b359b2005-10-20 18:26:44 +0200570 snd_printk(KERN_ERR "codec_read %d: read timeout for register 0x%x\n", ac97->num, reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 res = 0xffff;
572 }
573 }
574 return res;
575}
576
Takashi Iwai84a43bd2006-01-12 11:47:32 +0100577static void __devinit snd_intel8x0_codec_read_test(struct intel8x0 *chip,
578 unsigned int codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
580 unsigned int tmp;
581
582 if (snd_intel8x0_codec_semaphore(chip, codec) >= 0) {
583 iagetword(chip, codec * 0x80);
584 if ((tmp = igetdword(chip, ICHREG(GLOB_STA))) & ICH_RCS) {
585 /* reset RCS and preserve other R/WC bits */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100586 iputdword(chip, ICHREG(GLOB_STA), tmp &
Takashi Iwai84a43bd2006-01-12 11:47:32 +0100587 ~(chip->codec_ready_bits | ICH_GSCI));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
589 }
590}
591
592/*
593 * access to AC97 for Ali5455
594 */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100595static int snd_intel8x0_ali_codec_ready(struct intel8x0 *chip, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596{
597 int count = 0;
598 for (count = 0; count < 0x7f; count++) {
599 int val = igetbyte(chip, ICHREG(ALI_CSPSR));
600 if (val & mask)
601 return 0;
602 }
Takashi Iwai79ba34b2005-10-05 19:47:41 +0200603 if (! chip->in_ac97_init)
604 snd_printd(KERN_WARNING "intel8x0: AC97 codec ready timeout.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return -EBUSY;
606}
607
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100608static int snd_intel8x0_ali_codec_semaphore(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
610 int time = 100;
Takashi Iwai79ba34b2005-10-05 19:47:41 +0200611 if (chip->buggy_semaphore)
612 return 0; /* just ignore ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 while (time-- && (igetdword(chip, ICHREG(ALI_CAS)) & ALI_CAS_SEM_BUSY))
614 udelay(1);
Takashi Iwai79ba34b2005-10-05 19:47:41 +0200615 if (! time && ! chip->in_ac97_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 snd_printk(KERN_WARNING "ali_codec_semaphore timeout\n");
617 return snd_intel8x0_ali_codec_ready(chip, ALI_CSPSR_CODEC_READY);
618}
619
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100620static unsigned short snd_intel8x0_ali_codec_read(struct snd_ac97 *ac97, unsigned short reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100622 struct intel8x0 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 unsigned short data = 0xffff;
624
625 if (snd_intel8x0_ali_codec_semaphore(chip))
626 goto __err;
627 reg |= ALI_CPR_ADDR_READ;
628 if (ac97->num)
629 reg |= ALI_CPR_ADDR_SECONDARY;
630 iputword(chip, ICHREG(ALI_CPR_ADDR), reg);
631 if (snd_intel8x0_ali_codec_ready(chip, ALI_CSPSR_READ_OK))
632 goto __err;
633 data = igetword(chip, ICHREG(ALI_SPR));
634 __err:
635 return data;
636}
637
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100638static void snd_intel8x0_ali_codec_write(struct snd_ac97 *ac97, unsigned short reg,
639 unsigned short val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100641 struct intel8x0 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
643 if (snd_intel8x0_ali_codec_semaphore(chip))
644 return;
645 iputword(chip, ICHREG(ALI_CPR), val);
646 if (ac97->num)
647 reg |= ALI_CPR_ADDR_SECONDARY;
648 iputword(chip, ICHREG(ALI_CPR_ADDR), reg);
649 snd_intel8x0_ali_codec_ready(chip, ALI_CSPSR_WRITE_OK);
650}
651
652
653/*
654 * DMA I/O
655 */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100656static void snd_intel8x0_setup_periods(struct intel8x0 *chip, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657{
658 int idx;
659 u32 *bdbar = ichdev->bdbar;
660 unsigned long port = ichdev->reg_offset;
661
662 iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);
663 if (ichdev->size == ichdev->fragsize) {
664 ichdev->ack_reload = ichdev->ack = 2;
665 ichdev->fragsize1 = ichdev->fragsize >> 1;
666 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 4) {
667 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf);
668 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
669 ichdev->fragsize1 >> ichdev->pos_shift);
670 bdbar[idx + 2] = cpu_to_le32(ichdev->physbuf + (ichdev->size >> 1));
671 bdbar[idx + 3] = cpu_to_le32(0x80000000 | /* interrupt on completion */
672 ichdev->fragsize1 >> ichdev->pos_shift);
673 }
674 ichdev->frags = 2;
675 } else {
676 ichdev->ack_reload = ichdev->ack = 1;
677 ichdev->fragsize1 = ichdev->fragsize;
678 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 2) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100679 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf +
680 (((idx >> 1) * ichdev->fragsize) %
681 ichdev->size));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
683 ichdev->fragsize >> ichdev->pos_shift);
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100684#if 0
685 printk("bdbar[%i] = 0x%x [0x%x]\n",
686 idx + 0, bdbar[idx + 0], bdbar[idx + 1]);
687#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
689 ichdev->frags = ichdev->size / ichdev->fragsize;
690 }
691 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi = ICH_REG_LVI_MASK);
692 ichdev->civ = 0;
693 iputbyte(chip, port + ICH_REG_OFF_CIV, 0);
694 ichdev->lvi_frag = ICH_REG_LVI_MASK % ichdev->frags;
695 ichdev->position = 0;
696#if 0
697 printk("lvi_frag = %i, frags = %i, period_size = 0x%x, period_size1 = 0x%x\n",
698 ichdev->lvi_frag, ichdev->frags, ichdev->fragsize, ichdev->fragsize1);
699#endif
700 /* clear interrupts */
701 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
702}
703
704#ifdef __i386__
705/*
706 * Intel 82443MX running a 100MHz processor system bus has a hardware bug,
707 * which aborts PCI busmaster for audio transfer. A workaround is to set
708 * the pages as non-cached. For details, see the errata in
709 * http://www.intel.com/design/chipsets/specupdt/245051.htm
710 */
711static void fill_nocache(void *buf, int size, int nocache)
712{
713 size = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100714 if (nocache)
715 set_pages_uc(virt_to_page(buf), size);
716 else
717 set_pages_wb(virt_to_page(buf), size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718}
719#else
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100720#define fill_nocache(buf, size, nocache) do { ; } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#endif
722
723/*
724 * Interrupt handler
725 */
726
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100727static inline void snd_intel8x0_update(struct intel8x0 *chip, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
729 unsigned long port = ichdev->reg_offset;
Takashi Iwai883be792007-03-13 21:52:36 +0100730 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 int status, civ, i, step;
732 int ack = 0;
733
Takashi Iwai883be792007-03-13 21:52:36 +0100734 spin_lock_irqsave(&chip->reg_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 status = igetbyte(chip, port + ichdev->roff_sr);
736 civ = igetbyte(chip, port + ICH_REG_OFF_CIV);
737 if (!(status & ICH_BCIS)) {
738 step = 0;
739 } else if (civ == ichdev->civ) {
740 // snd_printd("civ same %d\n", civ);
741 step = 1;
742 ichdev->civ++;
743 ichdev->civ &= ICH_REG_LVI_MASK;
744 } else {
745 step = civ - ichdev->civ;
746 if (step < 0)
747 step += ICH_REG_LVI_MASK + 1;
748 // if (step != 1)
749 // snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ);
750 ichdev->civ = civ;
751 }
752
753 ichdev->position += step * ichdev->fragsize1;
754 if (! chip->in_measurement)
755 ichdev->position %= ichdev->size;
756 ichdev->lvi += step;
757 ichdev->lvi &= ICH_REG_LVI_MASK;
758 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
759 for (i = 0; i < step; i++) {
760 ichdev->lvi_frag++;
761 ichdev->lvi_frag %= ichdev->frags;
762 ichdev->bdbar[ichdev->lvi * 2] = cpu_to_le32(ichdev->physbuf + ichdev->lvi_frag * ichdev->fragsize1);
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100763#if 0
764 printk("new: bdbar[%i] = 0x%x [0x%x], prefetch = %i, all = 0x%x, 0x%x\n",
765 ichdev->lvi * 2, ichdev->bdbar[ichdev->lvi * 2],
766 ichdev->bdbar[ichdev->lvi * 2 + 1], inb(ICH_REG_OFF_PIV + port),
767 inl(port + 4), inb(port + ICH_REG_OFF_CR));
768#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 if (--ichdev->ack == 0) {
770 ichdev->ack = ichdev->ack_reload;
771 ack = 1;
772 }
773 }
Takashi Iwai883be792007-03-13 21:52:36 +0100774 spin_unlock_irqrestore(&chip->reg_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (ack && ichdev->substream) {
776 snd_pcm_period_elapsed(ichdev->substream);
777 }
778 iputbyte(chip, port + ichdev->roff_sr,
779 status & (ICH_FIFOE | ICH_BCIS | ICH_LVBCI));
780}
781
David Howells7d12e782006-10-05 14:55:46 +0100782static irqreturn_t snd_intel8x0_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100784 struct intel8x0 *chip = dev_id;
785 struct ichdev *ichdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 unsigned int status;
787 unsigned int i;
788
789 status = igetdword(chip, chip->int_sta_reg);
790 if (status == 0xffffffff) /* we are not yet resumed */
791 return IRQ_NONE;
792
793 if ((status & chip->int_sta_mask) == 0) {
794 if (status) {
795 /* ack */
796 iputdword(chip, chip->int_sta_reg, status);
797 if (! chip->buggy_irq)
798 status = 0;
799 }
800 return IRQ_RETVAL(status);
801 }
802
803 for (i = 0; i < chip->bdbars_count; i++) {
804 ichdev = &chip->ichd[i];
805 if (status & ichdev->int_sta_mask)
806 snd_intel8x0_update(chip, ichdev);
807 }
808
809 /* ack them */
810 iputdword(chip, chip->int_sta_reg, status & chip->int_sta_mask);
811
812 return IRQ_HANDLED;
813}
814
815/*
816 * PCM part
817 */
818
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100819static int snd_intel8x0_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100821 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
822 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 unsigned char val = 0;
824 unsigned long port = ichdev->reg_offset;
825
826 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200828 ichdev->suspended = 0;
829 /* fallthru */
830 case SNDRV_PCM_TRIGGER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 val = ICH_IOCE | ICH_STARTBM;
832 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 case SNDRV_PCM_TRIGGER_SUSPEND:
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200834 ichdev->suspended = 1;
835 /* fallthru */
836 case SNDRV_PCM_TRIGGER_STOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 val = 0;
838 break;
839 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
840 val = ICH_IOCE;
841 break;
842 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
843 val = ICH_IOCE | ICH_STARTBM;
844 break;
845 default:
846 return -EINVAL;
847 }
848 iputbyte(chip, port + ICH_REG_OFF_CR, val);
849 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
850 /* wait until DMA stopped */
851 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH)) ;
852 /* reset whole DMA things */
853 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
854 }
855 return 0;
856}
857
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100858static int snd_intel8x0_ali_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100860 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
861 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 unsigned long port = ichdev->reg_offset;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100863 static int fiforeg[] = {
864 ICHREG(ALI_FIFOCR1), ICHREG(ALI_FIFOCR2), ICHREG(ALI_FIFOCR3)
865 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 unsigned int val, fifo;
867
868 val = igetdword(chip, ICHREG(ALI_DMACR));
869 switch (cmd) {
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200870 case SNDRV_PCM_TRIGGER_RESUME:
871 ichdev->suspended = 0;
872 /* fallthru */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 case SNDRV_PCM_TRIGGER_START:
874 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
876 /* clear FIFO for synchronization of channels */
877 fifo = igetdword(chip, fiforeg[ichdev->ali_slot / 4]);
878 fifo &= ~(0xff << (ichdev->ali_slot % 4));
879 fifo |= 0x83 << (ichdev->ali_slot % 4);
880 iputdword(chip, fiforeg[ichdev->ali_slot / 4], fifo);
881 }
882 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE);
883 val &= ~(1 << (ichdev->ali_slot + 16)); /* clear PAUSE flag */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100884 /* start DMA */
885 iputdword(chip, ICHREG(ALI_DMACR), val | (1 << ichdev->ali_slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200887 case SNDRV_PCM_TRIGGER_SUSPEND:
888 ichdev->suspended = 1;
889 /* fallthru */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 case SNDRV_PCM_TRIGGER_STOP:
891 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100892 /* pause */
893 iputdword(chip, ICHREG(ALI_DMACR), val | (1 << (ichdev->ali_slot + 16)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
895 while (igetbyte(chip, port + ICH_REG_OFF_CR))
896 ;
897 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
898 break;
899 /* reset whole DMA things */
900 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
901 /* clear interrupts */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100902 iputbyte(chip, port + ICH_REG_OFF_SR,
903 igetbyte(chip, port + ICH_REG_OFF_SR) | 0x1e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 iputdword(chip, ICHREG(ALI_INTERRUPTSR),
905 igetdword(chip, ICHREG(ALI_INTERRUPTSR)) & ichdev->int_sta_mask);
906 break;
907 default:
908 return -EINVAL;
909 }
910 return 0;
911}
912
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100913static int snd_intel8x0_hw_params(struct snd_pcm_substream *substream,
914 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100916 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
917 struct ichdev *ichdev = get_ichdev(substream);
918 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int dbl = params_rate(hw_params) > 48000;
920 int err;
921
922 if (chip->fix_nocache && ichdev->page_attr_changed) {
923 fill_nocache(runtime->dma_area, runtime->dma_bytes, 0); /* clear */
924 ichdev->page_attr_changed = 0;
925 }
926 err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
927 if (err < 0)
928 return err;
929 if (chip->fix_nocache) {
930 if (runtime->dma_area && ! ichdev->page_attr_changed) {
931 fill_nocache(runtime->dma_area, runtime->dma_bytes, 1);
932 ichdev->page_attr_changed = 1;
933 }
934 }
935 if (ichdev->pcm_open_flag) {
936 snd_ac97_pcm_close(ichdev->pcm);
937 ichdev->pcm_open_flag = 0;
938 }
939 err = snd_ac97_pcm_open(ichdev->pcm, params_rate(hw_params),
940 params_channels(hw_params),
941 ichdev->pcm->r[dbl].slots);
942 if (err >= 0) {
943 ichdev->pcm_open_flag = 1;
944 /* Force SPDIF setting */
945 if (ichdev->ichd == ICHD_PCMOUT && chip->spdif_idx < 0)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100946 snd_ac97_set_rate(ichdev->pcm->r[0].codec[0], AC97_SPDIF,
947 params_rate(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
949 return err;
950}
951
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100952static int snd_intel8x0_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100954 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
955 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957 if (ichdev->pcm_open_flag) {
958 snd_ac97_pcm_close(ichdev->pcm);
959 ichdev->pcm_open_flag = 0;
960 }
961 if (chip->fix_nocache && ichdev->page_attr_changed) {
962 fill_nocache(substream->runtime->dma_area, substream->runtime->dma_bytes, 0);
963 ichdev->page_attr_changed = 0;
964 }
965 return snd_pcm_lib_free_pages(substream);
966}
967
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100968static void snd_intel8x0_setup_pcm_out(struct intel8x0 *chip,
969 struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 unsigned int cnt;
972 int dbl = runtime->rate > 48000;
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200973
974 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 switch (chip->device_type) {
976 case DEVICE_ALI:
977 cnt = igetdword(chip, ICHREG(ALI_SCR));
978 cnt &= ~ICH_ALI_SC_PCM_246_MASK;
979 if (runtime->channels == 4 || dbl)
980 cnt |= ICH_ALI_SC_PCM_4;
981 else if (runtime->channels == 6)
982 cnt |= ICH_ALI_SC_PCM_6;
983 iputdword(chip, ICHREG(ALI_SCR), cnt);
984 break;
985 case DEVICE_SIS:
986 cnt = igetdword(chip, ICHREG(GLOB_CNT));
987 cnt &= ~ICH_SIS_PCM_246_MASK;
988 if (runtime->channels == 4 || dbl)
989 cnt |= ICH_SIS_PCM_4;
990 else if (runtime->channels == 6)
991 cnt |= ICH_SIS_PCM_6;
992 iputdword(chip, ICHREG(GLOB_CNT), cnt);
993 break;
994 default:
995 cnt = igetdword(chip, ICHREG(GLOB_CNT));
996 cnt &= ~(ICH_PCM_246_MASK | ICH_PCM_20BIT);
997 if (runtime->channels == 4 || dbl)
998 cnt |= ICH_PCM_4;
999 else if (runtime->channels == 6)
1000 cnt |= ICH_PCM_6;
1001 if (chip->device_type == DEVICE_NFORCE) {
1002 /* reset to 2ch once to keep the 6 channel data in alignment,
1003 * to start from Front Left always
1004 */
1005 if (cnt & ICH_PCM_246_MASK) {
1006 iputdword(chip, ICHREG(GLOB_CNT), cnt & ~ICH_PCM_246_MASK);
1007 spin_unlock_irq(&chip->reg_lock);
1008 msleep(50); /* grrr... */
1009 spin_lock_irq(&chip->reg_lock);
1010 }
1011 } else if (chip->device_type == DEVICE_INTEL_ICH4) {
1012 if (runtime->sample_bits > 16)
1013 cnt |= ICH_PCM_20BIT;
1014 }
1015 iputdword(chip, ICHREG(GLOB_CNT), cnt);
1016 break;
1017 }
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02001018 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001021static int snd_intel8x0_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001023 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1024 struct snd_pcm_runtime *runtime = substream->runtime;
1025 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 ichdev->physbuf = runtime->dma_addr;
1028 ichdev->size = snd_pcm_lib_buffer_bytes(substream);
1029 ichdev->fragsize = snd_pcm_lib_period_bytes(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (ichdev->ichd == ICHD_PCMOUT) {
1031 snd_intel8x0_setup_pcm_out(chip, runtime);
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02001032 if (chip->device_type == DEVICE_INTEL_ICH4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 ichdev->pos_shift = (runtime->sample_bits > 16) ? 2 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
1035 snd_intel8x0_setup_periods(chip, ichdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return 0;
1037}
1038
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001039static snd_pcm_uframes_t snd_intel8x0_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001041 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1042 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 size_t ptr1, ptr;
1044 int civ, timeout = 100;
1045 unsigned int position;
1046
1047 spin_lock(&chip->reg_lock);
1048 do {
1049 civ = igetbyte(chip, ichdev->reg_offset + ICH_REG_OFF_CIV);
1050 ptr1 = igetword(chip, ichdev->reg_offset + ichdev->roff_picb);
1051 position = ichdev->position;
1052 if (ptr1 == 0) {
1053 udelay(10);
1054 continue;
1055 }
1056 if (civ == igetbyte(chip, ichdev->reg_offset + ICH_REG_OFF_CIV) &&
1057 ptr1 == igetword(chip, ichdev->reg_offset + ichdev->roff_picb))
1058 break;
1059 } while (timeout--);
1060 ptr1 <<= ichdev->pos_shift;
1061 ptr = ichdev->fragsize1 - ptr1;
1062 ptr += position;
1063 spin_unlock(&chip->reg_lock);
1064 if (ptr >= ichdev->size)
1065 return 0;
1066 return bytes_to_frames(substream->runtime, ptr);
1067}
1068
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001069static struct snd_pcm_hardware snd_intel8x0_stream =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
1071 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1072 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1073 SNDRV_PCM_INFO_MMAP_VALID |
1074 SNDRV_PCM_INFO_PAUSE |
1075 SNDRV_PCM_INFO_RESUME),
1076 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1077 .rates = SNDRV_PCM_RATE_48000,
1078 .rate_min = 48000,
1079 .rate_max = 48000,
1080 .channels_min = 2,
1081 .channels_max = 2,
1082 .buffer_bytes_max = 128 * 1024,
1083 .period_bytes_min = 32,
1084 .period_bytes_max = 128 * 1024,
1085 .periods_min = 1,
1086 .periods_max = 1024,
1087 .fifo_size = 0,
1088};
1089
1090static unsigned int channels4[] = {
1091 2, 4,
1092};
1093
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001094static struct snd_pcm_hw_constraint_list hw_constraints_channels4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 .count = ARRAY_SIZE(channels4),
1096 .list = channels4,
1097 .mask = 0,
1098};
1099
1100static unsigned int channels6[] = {
1101 2, 4, 6,
1102};
1103
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001104static struct snd_pcm_hw_constraint_list hw_constraints_channels6 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 .count = ARRAY_SIZE(channels6),
1106 .list = channels6,
1107 .mask = 0,
1108};
1109
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001110static int snd_intel8x0_pcm_open(struct snd_pcm_substream *substream, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001112 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1113 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 int err;
1115
1116 ichdev->substream = substream;
1117 runtime->hw = snd_intel8x0_stream;
1118 runtime->hw.rates = ichdev->pcm->rates;
1119 snd_pcm_limit_hw_rates(runtime);
1120 if (chip->device_type == DEVICE_SIS) {
1121 runtime->hw.buffer_bytes_max = 64*1024;
1122 runtime->hw.period_bytes_max = 64*1024;
1123 }
1124 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
1125 return err;
1126 runtime->private_data = ichdev;
1127 return 0;
1128}
1129
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001130static int snd_intel8x0_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001132 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1133 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 int err;
1135
1136 err = snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCMOUT]);
1137 if (err < 0)
1138 return err;
1139
1140 if (chip->multi6) {
1141 runtime->hw.channels_max = 6;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001142 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1143 &hw_constraints_channels6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 } else if (chip->multi4) {
1145 runtime->hw.channels_max = 4;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001146 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1147 &hw_constraints_channels4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 }
1149 if (chip->dra) {
1150 snd_ac97_pcm_double_rate_rules(runtime);
1151 }
1152 if (chip->smp20bit) {
1153 runtime->hw.formats |= SNDRV_PCM_FMTBIT_S32_LE;
1154 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 20);
1155 }
1156 return 0;
1157}
1158
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001159static int snd_intel8x0_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001161 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 chip->ichd[ICHD_PCMOUT].substream = NULL;
1164 return 0;
1165}
1166
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001167static int snd_intel8x0_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001169 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCMIN]);
1172}
1173
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001174static int snd_intel8x0_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001176 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 chip->ichd[ICHD_PCMIN].substream = NULL;
1179 return 0;
1180}
1181
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001182static int snd_intel8x0_mic_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001184 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_MIC]);
1187}
1188
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001189static int snd_intel8x0_mic_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001191 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 chip->ichd[ICHD_MIC].substream = NULL;
1194 return 0;
1195}
1196
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001197static int snd_intel8x0_mic2_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001199 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_MIC2]);
1202}
1203
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001204static int snd_intel8x0_mic2_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001206 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 chip->ichd[ICHD_MIC2].substream = NULL;
1209 return 0;
1210}
1211
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001212static int snd_intel8x0_capture2_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001214 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCM2IN]);
1217}
1218
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001219static int snd_intel8x0_capture2_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001221 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 chip->ichd[ICHD_PCM2IN].substream = NULL;
1224 return 0;
1225}
1226
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001227static int snd_intel8x0_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001229 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 int idx = chip->device_type == DEVICE_NFORCE ? NVD_SPBAR : ICHD_SPBAR;
1231
1232 return snd_intel8x0_pcm_open(substream, &chip->ichd[idx]);
1233}
1234
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001235static int snd_intel8x0_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001237 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 int idx = chip->device_type == DEVICE_NFORCE ? NVD_SPBAR : ICHD_SPBAR;
1239
1240 chip->ichd[idx].substream = NULL;
1241 return 0;
1242}
1243
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001244static int snd_intel8x0_ali_ac97spdifout_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001246 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 unsigned int val;
1248
1249 spin_lock_irq(&chip->reg_lock);
1250 val = igetdword(chip, ICHREG(ALI_INTERFACECR));
1251 val |= ICH_ALI_IF_AC97SP;
1252 iputdword(chip, ICHREG(ALI_INTERFACECR), val);
1253 /* also needs to set ALI_SC_CODEC_SPDF correctly */
1254 spin_unlock_irq(&chip->reg_lock);
1255
1256 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_AC97SPDIFOUT]);
1257}
1258
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001259static int snd_intel8x0_ali_ac97spdifout_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001261 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 unsigned int val;
1263
1264 chip->ichd[ALID_AC97SPDIFOUT].substream = NULL;
1265 spin_lock_irq(&chip->reg_lock);
1266 val = igetdword(chip, ICHREG(ALI_INTERFACECR));
1267 val &= ~ICH_ALI_IF_AC97SP;
1268 iputdword(chip, ICHREG(ALI_INTERFACECR), val);
1269 spin_unlock_irq(&chip->reg_lock);
1270
1271 return 0;
1272}
1273
Takashi Iwai1a183132006-04-18 21:23:47 +02001274#if 0 // NYI
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001275static int snd_intel8x0_ali_spdifin_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001277 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_SPDIFIN]);
1280}
1281
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001282static int snd_intel8x0_ali_spdifin_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001284 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 chip->ichd[ALID_SPDIFIN].substream = NULL;
1287 return 0;
1288}
1289
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001290static int snd_intel8x0_ali_spdifout_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001292 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_SPDIFOUT]);
1295}
1296
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001297static int snd_intel8x0_ali_spdifout_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001299 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 chip->ichd[ALID_SPDIFOUT].substream = NULL;
1302 return 0;
1303}
1304#endif
1305
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001306static struct snd_pcm_ops snd_intel8x0_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 .open = snd_intel8x0_playback_open,
1308 .close = snd_intel8x0_playback_close,
1309 .ioctl = snd_pcm_lib_ioctl,
1310 .hw_params = snd_intel8x0_hw_params,
1311 .hw_free = snd_intel8x0_hw_free,
1312 .prepare = snd_intel8x0_pcm_prepare,
1313 .trigger = snd_intel8x0_pcm_trigger,
1314 .pointer = snd_intel8x0_pcm_pointer,
1315};
1316
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001317static struct snd_pcm_ops snd_intel8x0_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 .open = snd_intel8x0_capture_open,
1319 .close = snd_intel8x0_capture_close,
1320 .ioctl = snd_pcm_lib_ioctl,
1321 .hw_params = snd_intel8x0_hw_params,
1322 .hw_free = snd_intel8x0_hw_free,
1323 .prepare = snd_intel8x0_pcm_prepare,
1324 .trigger = snd_intel8x0_pcm_trigger,
1325 .pointer = snd_intel8x0_pcm_pointer,
1326};
1327
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001328static struct snd_pcm_ops snd_intel8x0_capture_mic_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 .open = snd_intel8x0_mic_open,
1330 .close = snd_intel8x0_mic_close,
1331 .ioctl = snd_pcm_lib_ioctl,
1332 .hw_params = snd_intel8x0_hw_params,
1333 .hw_free = snd_intel8x0_hw_free,
1334 .prepare = snd_intel8x0_pcm_prepare,
1335 .trigger = snd_intel8x0_pcm_trigger,
1336 .pointer = snd_intel8x0_pcm_pointer,
1337};
1338
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001339static struct snd_pcm_ops snd_intel8x0_capture_mic2_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 .open = snd_intel8x0_mic2_open,
1341 .close = snd_intel8x0_mic2_close,
1342 .ioctl = snd_pcm_lib_ioctl,
1343 .hw_params = snd_intel8x0_hw_params,
1344 .hw_free = snd_intel8x0_hw_free,
1345 .prepare = snd_intel8x0_pcm_prepare,
1346 .trigger = snd_intel8x0_pcm_trigger,
1347 .pointer = snd_intel8x0_pcm_pointer,
1348};
1349
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001350static struct snd_pcm_ops snd_intel8x0_capture2_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 .open = snd_intel8x0_capture2_open,
1352 .close = snd_intel8x0_capture2_close,
1353 .ioctl = snd_pcm_lib_ioctl,
1354 .hw_params = snd_intel8x0_hw_params,
1355 .hw_free = snd_intel8x0_hw_free,
1356 .prepare = snd_intel8x0_pcm_prepare,
1357 .trigger = snd_intel8x0_pcm_trigger,
1358 .pointer = snd_intel8x0_pcm_pointer,
1359};
1360
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001361static struct snd_pcm_ops snd_intel8x0_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 .open = snd_intel8x0_spdif_open,
1363 .close = snd_intel8x0_spdif_close,
1364 .ioctl = snd_pcm_lib_ioctl,
1365 .hw_params = snd_intel8x0_hw_params,
1366 .hw_free = snd_intel8x0_hw_free,
1367 .prepare = snd_intel8x0_pcm_prepare,
1368 .trigger = snd_intel8x0_pcm_trigger,
1369 .pointer = snd_intel8x0_pcm_pointer,
1370};
1371
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001372static struct snd_pcm_ops snd_intel8x0_ali_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 .open = snd_intel8x0_playback_open,
1374 .close = snd_intel8x0_playback_close,
1375 .ioctl = snd_pcm_lib_ioctl,
1376 .hw_params = snd_intel8x0_hw_params,
1377 .hw_free = snd_intel8x0_hw_free,
1378 .prepare = snd_intel8x0_pcm_prepare,
1379 .trigger = snd_intel8x0_ali_trigger,
1380 .pointer = snd_intel8x0_pcm_pointer,
1381};
1382
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001383static struct snd_pcm_ops snd_intel8x0_ali_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 .open = snd_intel8x0_capture_open,
1385 .close = snd_intel8x0_capture_close,
1386 .ioctl = snd_pcm_lib_ioctl,
1387 .hw_params = snd_intel8x0_hw_params,
1388 .hw_free = snd_intel8x0_hw_free,
1389 .prepare = snd_intel8x0_pcm_prepare,
1390 .trigger = snd_intel8x0_ali_trigger,
1391 .pointer = snd_intel8x0_pcm_pointer,
1392};
1393
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001394static struct snd_pcm_ops snd_intel8x0_ali_capture_mic_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 .open = snd_intel8x0_mic_open,
1396 .close = snd_intel8x0_mic_close,
1397 .ioctl = snd_pcm_lib_ioctl,
1398 .hw_params = snd_intel8x0_hw_params,
1399 .hw_free = snd_intel8x0_hw_free,
1400 .prepare = snd_intel8x0_pcm_prepare,
1401 .trigger = snd_intel8x0_ali_trigger,
1402 .pointer = snd_intel8x0_pcm_pointer,
1403};
1404
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001405static struct snd_pcm_ops snd_intel8x0_ali_ac97spdifout_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 .open = snd_intel8x0_ali_ac97spdifout_open,
1407 .close = snd_intel8x0_ali_ac97spdifout_close,
1408 .ioctl = snd_pcm_lib_ioctl,
1409 .hw_params = snd_intel8x0_hw_params,
1410 .hw_free = snd_intel8x0_hw_free,
1411 .prepare = snd_intel8x0_pcm_prepare,
1412 .trigger = snd_intel8x0_ali_trigger,
1413 .pointer = snd_intel8x0_pcm_pointer,
1414};
1415
Takashi Iwai1a183132006-04-18 21:23:47 +02001416#if 0 // NYI
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001417static struct snd_pcm_ops snd_intel8x0_ali_spdifin_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 .open = snd_intel8x0_ali_spdifin_open,
1419 .close = snd_intel8x0_ali_spdifin_close,
1420 .ioctl = snd_pcm_lib_ioctl,
1421 .hw_params = snd_intel8x0_hw_params,
1422 .hw_free = snd_intel8x0_hw_free,
1423 .prepare = snd_intel8x0_pcm_prepare,
1424 .trigger = snd_intel8x0_pcm_trigger,
1425 .pointer = snd_intel8x0_pcm_pointer,
1426};
1427
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001428static struct snd_pcm_ops snd_intel8x0_ali_spdifout_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 .open = snd_intel8x0_ali_spdifout_open,
1430 .close = snd_intel8x0_ali_spdifout_close,
1431 .ioctl = snd_pcm_lib_ioctl,
1432 .hw_params = snd_intel8x0_hw_params,
1433 .hw_free = snd_intel8x0_hw_free,
1434 .prepare = snd_intel8x0_pcm_prepare,
1435 .trigger = snd_intel8x0_pcm_trigger,
1436 .pointer = snd_intel8x0_pcm_pointer,
1437};
1438#endif // NYI
1439
1440struct ich_pcm_table {
1441 char *suffix;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001442 struct snd_pcm_ops *playback_ops;
1443 struct snd_pcm_ops *capture_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 size_t prealloc_size;
1445 size_t prealloc_max_size;
1446 int ac97_idx;
1447};
1448
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001449static int __devinit snd_intel8x0_pcm1(struct intel8x0 *chip, int device,
1450 struct ich_pcm_table *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001452 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int err;
1454 char name[32];
1455
1456 if (rec->suffix)
1457 sprintf(name, "Intel ICH - %s", rec->suffix);
1458 else
1459 strcpy(name, "Intel ICH");
1460 err = snd_pcm_new(chip->card, name, device,
1461 rec->playback_ops ? 1 : 0,
1462 rec->capture_ops ? 1 : 0, &pcm);
1463 if (err < 0)
1464 return err;
1465
1466 if (rec->playback_ops)
1467 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, rec->playback_ops);
1468 if (rec->capture_ops)
1469 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, rec->capture_ops);
1470
1471 pcm->private_data = chip;
1472 pcm->info_flags = 0;
1473 if (rec->suffix)
1474 sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix);
1475 else
1476 strcpy(pcm->name, chip->card->shortname);
1477 chip->pcm[device] = pcm;
1478
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001479 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1480 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 rec->prealloc_size, rec->prealloc_max_size);
1482
1483 return 0;
1484}
1485
1486static struct ich_pcm_table intel_pcms[] __devinitdata = {
1487 {
1488 .playback_ops = &snd_intel8x0_playback_ops,
1489 .capture_ops = &snd_intel8x0_capture_ops,
1490 .prealloc_size = 64 * 1024,
1491 .prealloc_max_size = 128 * 1024,
1492 },
1493 {
1494 .suffix = "MIC ADC",
1495 .capture_ops = &snd_intel8x0_capture_mic_ops,
1496 .prealloc_size = 0,
1497 .prealloc_max_size = 128 * 1024,
1498 .ac97_idx = ICHD_MIC,
1499 },
1500 {
1501 .suffix = "MIC2 ADC",
1502 .capture_ops = &snd_intel8x0_capture_mic2_ops,
1503 .prealloc_size = 0,
1504 .prealloc_max_size = 128 * 1024,
1505 .ac97_idx = ICHD_MIC2,
1506 },
1507 {
1508 .suffix = "ADC2",
1509 .capture_ops = &snd_intel8x0_capture2_ops,
1510 .prealloc_size = 0,
1511 .prealloc_max_size = 128 * 1024,
1512 .ac97_idx = ICHD_PCM2IN,
1513 },
1514 {
1515 .suffix = "IEC958",
1516 .playback_ops = &snd_intel8x0_spdif_ops,
1517 .prealloc_size = 64 * 1024,
1518 .prealloc_max_size = 128 * 1024,
1519 .ac97_idx = ICHD_SPBAR,
1520 },
1521};
1522
1523static struct ich_pcm_table nforce_pcms[] __devinitdata = {
1524 {
1525 .playback_ops = &snd_intel8x0_playback_ops,
1526 .capture_ops = &snd_intel8x0_capture_ops,
1527 .prealloc_size = 64 * 1024,
1528 .prealloc_max_size = 128 * 1024,
1529 },
1530 {
1531 .suffix = "MIC ADC",
1532 .capture_ops = &snd_intel8x0_capture_mic_ops,
1533 .prealloc_size = 0,
1534 .prealloc_max_size = 128 * 1024,
1535 .ac97_idx = NVD_MIC,
1536 },
1537 {
1538 .suffix = "IEC958",
1539 .playback_ops = &snd_intel8x0_spdif_ops,
1540 .prealloc_size = 64 * 1024,
1541 .prealloc_max_size = 128 * 1024,
1542 .ac97_idx = NVD_SPBAR,
1543 },
1544};
1545
1546static struct ich_pcm_table ali_pcms[] __devinitdata = {
1547 {
1548 .playback_ops = &snd_intel8x0_ali_playback_ops,
1549 .capture_ops = &snd_intel8x0_ali_capture_ops,
1550 .prealloc_size = 64 * 1024,
1551 .prealloc_max_size = 128 * 1024,
1552 },
1553 {
1554 .suffix = "MIC ADC",
1555 .capture_ops = &snd_intel8x0_ali_capture_mic_ops,
1556 .prealloc_size = 0,
1557 .prealloc_max_size = 128 * 1024,
1558 .ac97_idx = ALID_MIC,
1559 },
1560 {
1561 .suffix = "IEC958",
1562 .playback_ops = &snd_intel8x0_ali_ac97spdifout_ops,
Takashi Iwai1a183132006-04-18 21:23:47 +02001563 /* .capture_ops = &snd_intel8x0_ali_spdifin_ops, */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 .prealloc_size = 64 * 1024,
1565 .prealloc_max_size = 128 * 1024,
1566 .ac97_idx = ALID_AC97SPDIFOUT,
1567 },
1568#if 0 // NYI
1569 {
1570 .suffix = "HW IEC958",
1571 .playback_ops = &snd_intel8x0_ali_spdifout_ops,
1572 .prealloc_size = 64 * 1024,
1573 .prealloc_max_size = 128 * 1024,
1574 },
1575#endif
1576};
1577
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001578static int __devinit snd_intel8x0_pcm(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579{
1580 int i, tblsize, device, err;
1581 struct ich_pcm_table *tbl, *rec;
1582
1583 switch (chip->device_type) {
1584 case DEVICE_INTEL_ICH4:
1585 tbl = intel_pcms;
1586 tblsize = ARRAY_SIZE(intel_pcms);
Takashi Iwaia9e99662006-11-24 15:42:07 +01001587 if (spdif_aclink)
1588 tblsize--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 break;
1590 case DEVICE_NFORCE:
1591 tbl = nforce_pcms;
1592 tblsize = ARRAY_SIZE(nforce_pcms);
Takashi Iwaia9e99662006-11-24 15:42:07 +01001593 if (spdif_aclink)
1594 tblsize--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 break;
1596 case DEVICE_ALI:
1597 tbl = ali_pcms;
1598 tblsize = ARRAY_SIZE(ali_pcms);
1599 break;
1600 default:
1601 tbl = intel_pcms;
1602 tblsize = 2;
1603 break;
1604 }
1605
1606 device = 0;
1607 for (i = 0; i < tblsize; i++) {
1608 rec = tbl + i;
1609 if (i > 0 && rec->ac97_idx) {
1610 /* activate PCM only when associated AC'97 codec */
1611 if (! chip->ichd[rec->ac97_idx].pcm)
1612 continue;
1613 }
1614 err = snd_intel8x0_pcm1(chip, device, rec);
1615 if (err < 0)
1616 return err;
1617 device++;
1618 }
1619
1620 chip->pcm_devs = device;
1621 return 0;
1622}
1623
1624
1625/*
1626 * Mixer part
1627 */
1628
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001629static void snd_intel8x0_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001631 struct intel8x0 *chip = bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 chip->ac97_bus = NULL;
1633}
1634
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001635static void snd_intel8x0_mixer_free_ac97(struct snd_ac97 *ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001637 struct intel8x0 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 chip->ac97[ac97->num] = NULL;
1639}
1640
1641static struct ac97_pcm ac97_pcm_defs[] __devinitdata = {
1642 /* front PCM */
1643 {
1644 .exclusive = 1,
1645 .r = { {
1646 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1647 (1 << AC97_SLOT_PCM_RIGHT) |
1648 (1 << AC97_SLOT_PCM_CENTER) |
1649 (1 << AC97_SLOT_PCM_SLEFT) |
1650 (1 << AC97_SLOT_PCM_SRIGHT) |
1651 (1 << AC97_SLOT_LFE)
1652 },
1653 {
1654 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1655 (1 << AC97_SLOT_PCM_RIGHT) |
1656 (1 << AC97_SLOT_PCM_LEFT_0) |
1657 (1 << AC97_SLOT_PCM_RIGHT_0)
1658 }
1659 }
1660 },
1661 /* PCM IN #1 */
1662 {
1663 .stream = 1,
1664 .exclusive = 1,
1665 .r = { {
1666 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1667 (1 << AC97_SLOT_PCM_RIGHT)
1668 }
1669 }
1670 },
1671 /* MIC IN #1 */
1672 {
1673 .stream = 1,
1674 .exclusive = 1,
1675 .r = { {
1676 .slots = (1 << AC97_SLOT_MIC)
1677 }
1678 }
1679 },
1680 /* S/PDIF PCM */
1681 {
1682 .exclusive = 1,
1683 .spdif = 1,
1684 .r = { {
1685 .slots = (1 << AC97_SLOT_SPDIF_LEFT2) |
1686 (1 << AC97_SLOT_SPDIF_RIGHT2)
1687 }
1688 }
1689 },
1690 /* PCM IN #2 */
1691 {
1692 .stream = 1,
1693 .exclusive = 1,
1694 .r = { {
1695 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1696 (1 << AC97_SLOT_PCM_RIGHT)
1697 }
1698 }
1699 },
1700 /* MIC IN #2 */
1701 {
1702 .stream = 1,
1703 .exclusive = 1,
1704 .r = { {
1705 .slots = (1 << AC97_SLOT_MIC)
1706 }
1707 }
1708 },
1709};
1710
1711static struct ac97_quirk ac97_quirks[] __devinitdata = {
1712 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001713 .subvendor = 0x0e11,
1714 .subdevice = 0x008a,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 .name = "Compaq Evo W4000", /* AD1885 */
1716 .type = AC97_TUNE_HP_ONLY
1717 },
1718 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001719 .subvendor = 0x0e11,
1720 .subdevice = 0x00b8,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 .name = "Compaq Evo D510C",
1722 .type = AC97_TUNE_HP_ONLY
1723 },
1724 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001725 .subvendor = 0x0e11,
1726 .subdevice = 0x0860,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 .name = "HP/Compaq nx7010",
1728 .type = AC97_TUNE_MUTE_LED
1729 },
1730 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001731 .subvendor = 0x1014,
1732 .subdevice = 0x1f00,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 .name = "MS-9128",
1734 .type = AC97_TUNE_ALC_JACK
1735 },
1736 {
Takashi Iwai5d529392005-09-01 13:56:23 +02001737 .subvendor = 0x1014,
1738 .subdevice = 0x0267,
1739 .name = "IBM NetVista A30p", /* AD1981B */
1740 .type = AC97_TUNE_HP_ONLY
1741 },
1742 {
Dick Streefland72c89862005-10-07 12:02:23 +02001743 .subvendor = 0x1025,
1744 .subdevice = 0x0083,
1745 .name = "Acer Aspire 3003LCi",
1746 .type = AC97_TUNE_HP_ONLY
1747 },
1748 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001749 .subvendor = 0x1028,
1750 .subdevice = 0x00d8,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 .name = "Dell Precision 530", /* AD1885 */
1752 .type = AC97_TUNE_HP_ONLY
1753 },
1754 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001755 .subvendor = 0x1028,
1756 .subdevice = 0x010d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 .name = "Dell", /* which model? AD1885 */
1758 .type = AC97_TUNE_HP_ONLY
1759 },
1760 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001761 .subvendor = 0x1028,
1762 .subdevice = 0x0126,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 .name = "Dell Optiplex GX260", /* AD1981A */
1764 .type = AC97_TUNE_HP_ONLY
1765 },
1766 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001767 .subvendor = 0x1028,
1768 .subdevice = 0x012c,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 .name = "Dell Precision 650", /* AD1981A */
1770 .type = AC97_TUNE_HP_ONLY
1771 },
1772 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001773 .subvendor = 0x1028,
1774 .subdevice = 0x012d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 .name = "Dell Precision 450", /* AD1981B*/
1776 .type = AC97_TUNE_HP_ONLY
1777 },
1778 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001779 .subvendor = 0x1028,
1780 .subdevice = 0x0147,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 .name = "Dell", /* which model? AD1981B*/
1782 .type = AC97_TUNE_HP_ONLY
1783 },
1784 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001785 .subvendor = 0x1028,
Chris Ballc9fe51c2006-01-13 13:26:42 +01001786 .subdevice = 0x0151,
1787 .name = "Dell Optiplex GX270", /* AD1981B */
1788 .type = AC97_TUNE_HP_ONLY
1789 },
1790 {
1791 .subvendor = 0x1028,
Daniel T Chen1781a9a2006-06-16 12:13:00 +02001792 .subdevice = 0x014e,
1793 .name = "Dell D800", /* STAC9750/51 */
1794 .type = AC97_TUNE_HP_ONLY
1795 },
1796 {
1797 .subvendor = 0x1028,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001798 .subdevice = 0x0163,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 .name = "Dell Unknown", /* STAC9750/51 */
1800 .type = AC97_TUNE_HP_ONLY
1801 },
1802 {
Karoly Lorentey6d6f9152005-10-25 11:50:25 +02001803 .subvendor = 0x1028,
Daniel T Chen8286c532007-05-15 11:46:23 +02001804 .subdevice = 0x0186,
1805 .name = "Dell Latitude D810", /* cf. Malone #41015 */
1806 .type = AC97_TUNE_HP_MUTE_LED
1807 },
1808 {
1809 .subvendor = 0x1028,
1810 .subdevice = 0x0188,
1811 .name = "Dell Inspiron 6000",
1812 .type = AC97_TUNE_HP_MUTE_LED /* cf. Malone #41015 */
1813 },
1814 {
1815 .subvendor = 0x1028,
Karoly Lorentey6d6f9152005-10-25 11:50:25 +02001816 .subdevice = 0x0191,
1817 .name = "Dell Inspiron 8600",
1818 .type = AC97_TUNE_HP_ONLY
1819 },
1820 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001821 .subvendor = 0x103c,
1822 .subdevice = 0x006d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 .name = "HP zv5000",
1824 .type = AC97_TUNE_MUTE_LED /*AD1981B*/
1825 },
1826 { /* FIXME: which codec? */
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001827 .subvendor = 0x103c,
1828 .subdevice = 0x00c3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 .name = "HP xw6000",
1830 .type = AC97_TUNE_HP_ONLY
1831 },
1832 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001833 .subvendor = 0x103c,
1834 .subdevice = 0x088c,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 .name = "HP nc8000",
Daniel T Chen8286c532007-05-15 11:46:23 +02001836 .type = AC97_TUNE_HP_MUTE_LED
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 },
1838 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001839 .subvendor = 0x103c,
1840 .subdevice = 0x0890,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 .name = "HP nc6000",
1842 .type = AC97_TUNE_MUTE_LED
1843 },
1844 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001845 .subvendor = 0x103c,
Daniel Horchnere0c93cf2005-08-25 13:02:24 +02001846 .subdevice = 0x0934,
1847 .name = "HP nx8220",
1848 .type = AC97_TUNE_MUTE_LED
1849 },
1850 {
1851 .subvendor = 0x103c,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001852 .subdevice = 0x129d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 .name = "HP xw8000",
1854 .type = AC97_TUNE_HP_ONLY
1855 },
1856 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001857 .subvendor = 0x103c,
Matthew Garretta0faefe2005-12-06 13:59:12 +01001858 .subdevice = 0x0938,
1859 .name = "HP nc4200",
1860 .type = AC97_TUNE_HP_MUTE_LED
1861 },
1862 {
1863 .subvendor = 0x103c,
1864 .subdevice = 0x099c,
Ulrich Muellerd82ed2f2006-01-04 12:21:11 +01001865 .name = "HP nx6110/nc6120",
Matthew Garretta0faefe2005-12-06 13:59:12 +01001866 .type = AC97_TUNE_HP_MUTE_LED
1867 },
1868 {
1869 .subvendor = 0x103c,
1870 .subdevice = 0x0944,
1871 .name = "HP nc6220",
1872 .type = AC97_TUNE_HP_MUTE_LED
1873 },
1874 {
1875 .subvendor = 0x103c,
1876 .subdevice = 0x0934,
1877 .name = "HP nc8220",
1878 .type = AC97_TUNE_HP_MUTE_LED
1879 },
1880 {
1881 .subvendor = 0x103c,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001882 .subdevice = 0x12f1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .name = "HP xw8200", /* AD1981B*/
1884 .type = AC97_TUNE_HP_ONLY
1885 },
1886 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001887 .subvendor = 0x103c,
1888 .subdevice = 0x12f2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 .name = "HP xw6200",
1890 .type = AC97_TUNE_HP_ONLY
1891 },
1892 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001893 .subvendor = 0x103c,
1894 .subdevice = 0x3008,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 .name = "HP xw4200", /* AD1981B*/
1896 .type = AC97_TUNE_HP_ONLY
1897 },
1898 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001899 .subvendor = 0x104d,
1900 .subdevice = 0x8197,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 .name = "Sony S1XP",
1902 .type = AC97_TUNE_INV_EAPD
1903 },
1904 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001905 .subvendor = 0x1043,
1906 .subdevice = 0x80f3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 .name = "ASUS ICH5/AD1985",
1908 .type = AC97_TUNE_AD_SHARING
1909 },
1910 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001911 .subvendor = 0x10cf,
1912 .subdevice = 0x11c3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 .name = "Fujitsu-Siemens E4010",
1914 .type = AC97_TUNE_HP_ONLY
1915 },
1916 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001917 .subvendor = 0x10cf,
Takashi Iwai98c7f212005-05-31 16:52:58 +02001918 .subdevice = 0x1225,
1919 .name = "Fujitsu-Siemens T3010",
1920 .type = AC97_TUNE_HP_ONLY
1921 },
1922 {
1923 .subvendor = 0x10cf,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001924 .subdevice = 0x1253,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 .name = "Fujitsu S6210", /* STAC9750/51 */
1926 .type = AC97_TUNE_HP_ONLY
1927 },
1928 {
Takashi Iwai9970dce2005-08-25 20:30:27 +02001929 .subvendor = 0x10cf,
Daniel T Chen8286c532007-05-15 11:46:23 +02001930 .subdevice = 0x127e,
1931 .name = "Fujitsu Lifebook C1211D",
1932 .type = AC97_TUNE_HP_ONLY
1933 },
1934 {
1935 .subvendor = 0x10cf,
Takashi Iwai9970dce2005-08-25 20:30:27 +02001936 .subdevice = 0x12ec,
1937 .name = "Fujitsu-Siemens 4010",
1938 .type = AC97_TUNE_HP_ONLY
1939 },
1940 {
Jaroslav Kysela2eb061f2005-11-18 07:44:13 +01001941 .subvendor = 0x10cf,
1942 .subdevice = 0x12f2,
1943 .name = "Fujitsu-Siemens Celsius H320",
1944 .type = AC97_TUNE_SWAP_HP
1945 },
1946 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001947 .subvendor = 0x10f1,
1948 .subdevice = 0x2665,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 .name = "Fujitsu-Siemens Celsius", /* AD1981? */
1950 .type = AC97_TUNE_HP_ONLY
1951 },
1952 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001953 .subvendor = 0x10f1,
1954 .subdevice = 0x2885,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 .name = "AMD64 Mobo", /* ALC650 */
1956 .type = AC97_TUNE_HP_ONLY
1957 },
1958 {
Takashi Iwai4f42bcc2006-06-29 17:05:31 +02001959 .subvendor = 0x10f1,
1960 .subdevice = 0x2895,
1961 .name = "Tyan Thunder K8WE",
1962 .type = AC97_TUNE_HP_ONLY
1963 },
1964 {
Keith Packard6c504442006-10-24 13:34:11 -07001965 .subvendor = 0x10f7,
1966 .subdevice = 0x834c,
1967 .name = "Panasonic CF-R4",
1968 .type = AC97_TUNE_HP_ONLY,
1969 },
1970 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001971 .subvendor = 0x110a,
1972 .subdevice = 0x0056,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 .name = "Fujitsu-Siemens Scenic", /* AD1981? */
1974 .type = AC97_TUNE_HP_ONLY
1975 },
1976 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001977 .subvendor = 0x11d4,
1978 .subdevice = 0x5375,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 .name = "ADI AD1985 (discrete)",
1980 .type = AC97_TUNE_HP_ONLY
1981 },
1982 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001983 .subvendor = 0x1462,
1984 .subdevice = 0x5470,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 .name = "MSI P4 ATX 645 Ultra",
1986 .type = AC97_TUNE_HP_ONLY
1987 },
1988 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001989 .subvendor = 0x1734,
1990 .subdevice = 0x0088,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 .name = "Fujitsu-Siemens D1522", /* AD1981 */
1992 .type = AC97_TUNE_HP_ONLY
1993 },
1994 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001995 .subvendor = 0x8086,
1996 .subdevice = 0x2000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 .mask = 0xfff0,
1998 .name = "Intel ICH5/AD1985",
1999 .type = AC97_TUNE_AD_SHARING
2000 },
2001 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002002 .subvendor = 0x8086,
2003 .subdevice = 0x4000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 .mask = 0xfff0,
2005 .name = "Intel ICH5/AD1985",
2006 .type = AC97_TUNE_AD_SHARING
2007 },
2008 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002009 .subvendor = 0x8086,
2010 .subdevice = 0x4856,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 .name = "Intel D845WN (82801BA)",
2012 .type = AC97_TUNE_SWAP_HP
2013 },
2014 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002015 .subvendor = 0x8086,
2016 .subdevice = 0x4d44,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 .name = "Intel D850EMV2", /* AD1885 */
2018 .type = AC97_TUNE_HP_ONLY
2019 },
2020 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002021 .subvendor = 0x8086,
2022 .subdevice = 0x4d56,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 .name = "Intel ICH/AD1885",
2024 .type = AC97_TUNE_HP_ONLY
2025 },
2026 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002027 .subvendor = 0x8086,
2028 .subdevice = 0x6000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 .mask = 0xfff0,
2030 .name = "Intel ICH5/AD1985",
2031 .type = AC97_TUNE_AD_SHARING
2032 },
2033 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002034 .subvendor = 0x8086,
2035 .subdevice = 0xe000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 .mask = 0xfff0,
2037 .name = "Intel ICH5/AD1985",
2038 .type = AC97_TUNE_AD_SHARING
2039 },
2040#if 0 /* FIXME: this seems wrong on most boards */
2041 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002042 .subvendor = 0x8086,
2043 .subdevice = 0xa000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 .mask = 0xfff0,
2045 .name = "Intel ICH5/AD1985",
2046 .type = AC97_TUNE_HP_ONLY
2047 },
2048#endif
2049 { } /* terminator */
2050};
2051
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002052static int __devinit snd_intel8x0_mixer(struct intel8x0 *chip, int ac97_clock,
2053 const char *quirk_override)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002055 struct snd_ac97_bus *pbus;
2056 struct snd_ac97_template ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 int err;
2058 unsigned int i, codecs;
2059 unsigned int glob_sta = 0;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002060 struct snd_ac97_bus_ops *ops;
2061 static struct snd_ac97_bus_ops standard_bus_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 .write = snd_intel8x0_codec_write,
2063 .read = snd_intel8x0_codec_read,
2064 };
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002065 static struct snd_ac97_bus_ops ali_bus_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 .write = snd_intel8x0_ali_codec_write,
2067 .read = snd_intel8x0_ali_codec_read,
2068 };
2069
2070 chip->spdif_idx = -1; /* use PCMOUT (or disabled) */
Takashi Iwaia9e99662006-11-24 15:42:07 +01002071 if (!spdif_aclink) {
2072 switch (chip->device_type) {
2073 case DEVICE_NFORCE:
2074 chip->spdif_idx = NVD_SPBAR;
2075 break;
2076 case DEVICE_ALI:
2077 chip->spdif_idx = ALID_AC97SPDIFOUT;
2078 break;
2079 case DEVICE_INTEL_ICH4:
2080 chip->spdif_idx = ICHD_SPBAR;
2081 break;
2082 };
2083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 chip->in_ac97_init = 1;
2086
2087 memset(&ac97, 0, sizeof(ac97));
2088 ac97.private_data = chip;
2089 ac97.private_free = snd_intel8x0_mixer_free_ac97;
Takashi Iwaif1a63a32006-10-24 18:25:29 +02002090 ac97.scaps = AC97_SCAP_SKIP_MODEM | AC97_SCAP_POWER_SAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 if (chip->xbox)
2092 ac97.scaps |= AC97_SCAP_DETECT_BY_VENDOR;
2093 if (chip->device_type != DEVICE_ALI) {
2094 glob_sta = igetdword(chip, ICHREG(GLOB_STA));
2095 ops = &standard_bus_ops;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002096 chip->in_sdin_init = 1;
2097 codecs = 0;
2098 for (i = 0; i < chip->max_codecs; i++) {
2099 if (! (glob_sta & chip->codec_bit[i]))
2100 continue;
2101 if (chip->device_type == DEVICE_INTEL_ICH4) {
2102 snd_intel8x0_codec_read_test(chip, codecs);
2103 chip->ac97_sdin[codecs] =
2104 igetbyte(chip, ICHREG(SDM)) & ICH_LDI_MASK;
2105 snd_assert(chip->ac97_sdin[codecs] < 3,
2106 chip->ac97_sdin[codecs] = 0);
2107 } else
2108 chip->ac97_sdin[codecs] = i;
2109 codecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002111 chip->in_sdin_init = 0;
2112 if (! codecs)
2113 codecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 } else {
2115 ops = &ali_bus_ops;
2116 codecs = 1;
2117 /* detect the secondary codec */
2118 for (i = 0; i < 100; i++) {
2119 unsigned int reg = igetdword(chip, ICHREG(ALI_RTSR));
2120 if (reg & 0x40) {
2121 codecs = 2;
2122 break;
2123 }
2124 iputdword(chip, ICHREG(ALI_RTSR), reg | 0x40);
2125 udelay(1);
2126 }
2127 }
2128 if ((err = snd_ac97_bus(chip->card, 0, ops, chip, &pbus)) < 0)
2129 goto __err;
2130 pbus->private_free = snd_intel8x0_mixer_free_ac97_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 if (ac97_clock >= 8000 && ac97_clock <= 48000)
2132 pbus->clock = ac97_clock;
2133 /* FIXME: my test board doesn't work well with VRA... */
2134 if (chip->device_type == DEVICE_ALI)
2135 pbus->no_vra = 1;
2136 else
2137 pbus->dra = 1;
2138 chip->ac97_bus = pbus;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002139 chip->ncodecs = codecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
2141 ac97.pci = chip->pci;
2142 for (i = 0; i < codecs; i++) {
2143 ac97.num = i;
2144 if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97[i])) < 0) {
2145 if (err != -EACCES)
2146 snd_printk(KERN_ERR "Unable to initialize codec #%d\n", i);
2147 if (i == 0)
2148 goto __err;
2149 continue;
2150 }
2151 }
2152 /* tune up the primary codec */
2153 snd_ac97_tune_hardware(chip->ac97[0], ac97_quirks, quirk_override);
2154 /* enable separate SDINs for ICH4 */
2155 if (chip->device_type == DEVICE_INTEL_ICH4)
2156 pbus->isdin = 1;
2157 /* find the available PCM streams */
2158 i = ARRAY_SIZE(ac97_pcm_defs);
2159 if (chip->device_type != DEVICE_INTEL_ICH4)
2160 i -= 2; /* do not allocate PCM2IN and MIC2 */
2161 if (chip->spdif_idx < 0)
2162 i--; /* do not allocate S/PDIF */
2163 err = snd_ac97_pcm_assign(pbus, i, ac97_pcm_defs);
2164 if (err < 0)
2165 goto __err;
2166 chip->ichd[ICHD_PCMOUT].pcm = &pbus->pcms[0];
2167 chip->ichd[ICHD_PCMIN].pcm = &pbus->pcms[1];
2168 chip->ichd[ICHD_MIC].pcm = &pbus->pcms[2];
2169 if (chip->spdif_idx >= 0)
2170 chip->ichd[chip->spdif_idx].pcm = &pbus->pcms[3];
2171 if (chip->device_type == DEVICE_INTEL_ICH4) {
2172 chip->ichd[ICHD_PCM2IN].pcm = &pbus->pcms[4];
2173 chip->ichd[ICHD_MIC2].pcm = &pbus->pcms[5];
2174 }
2175 /* enable separate SDINs for ICH4 */
2176 if (chip->device_type == DEVICE_INTEL_ICH4) {
2177 struct ac97_pcm *pcm = chip->ichd[ICHD_PCM2IN].pcm;
2178 u8 tmp = igetbyte(chip, ICHREG(SDM));
2179 tmp &= ~(ICH_DI2L_MASK|ICH_DI1L_MASK);
2180 if (pcm) {
2181 tmp |= ICH_SE; /* steer enable for multiple SDINs */
2182 tmp |= chip->ac97_sdin[0] << ICH_DI1L_SHIFT;
2183 for (i = 1; i < 4; i++) {
2184 if (pcm->r[0].codec[i]) {
2185 tmp |= chip->ac97_sdin[pcm->r[0].codec[1]->num] << ICH_DI2L_SHIFT;
2186 break;
2187 }
2188 }
2189 } else {
2190 tmp &= ~ICH_SE; /* steer disable */
2191 }
2192 iputbyte(chip, ICHREG(SDM), tmp);
2193 }
2194 if (pbus->pcms[0].r[0].slots & (1 << AC97_SLOT_PCM_SLEFT)) {
2195 chip->multi4 = 1;
2196 if (pbus->pcms[0].r[0].slots & (1 << AC97_SLOT_LFE))
2197 chip->multi6 = 1;
2198 }
2199 if (pbus->pcms[0].r[1].rslots[0]) {
2200 chip->dra = 1;
2201 }
2202 if (chip->device_type == DEVICE_INTEL_ICH4) {
2203 if ((igetdword(chip, ICHREG(GLOB_STA)) & ICH_SAMPLE_CAP) == ICH_SAMPLE_16_20)
2204 chip->smp20bit = 1;
2205 }
Takashi Iwaia9e99662006-11-24 15:42:07 +01002206 if (chip->device_type == DEVICE_NFORCE && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 /* 48kHz only */
2208 chip->ichd[chip->spdif_idx].pcm->rates = SNDRV_PCM_RATE_48000;
2209 }
Takashi Iwaia9e99662006-11-24 15:42:07 +01002210 if (chip->device_type == DEVICE_INTEL_ICH4 && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 /* use slot 10/11 for SPDIF */
2212 u32 val;
2213 val = igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_PCM_SPDIF_MASK;
2214 val |= ICH_PCM_SPDIF_1011;
2215 iputdword(chip, ICHREG(GLOB_CNT), val);
2216 snd_ac97_update_bits(chip->ac97[0], AC97_EXTENDED_STATUS, 0x03 << 4, 0x03 << 4);
2217 }
2218 chip->in_ac97_init = 0;
2219 return 0;
2220
2221 __err:
2222 /* clear the cold-reset bit for the next chance */
2223 if (chip->device_type != DEVICE_ALI)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002224 iputdword(chip, ICHREG(GLOB_CNT),
2225 igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_AC97COLD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 return err;
2227}
2228
2229
2230/*
2231 *
2232 */
2233
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002234static void do_ali_reset(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
2236 iputdword(chip, ICHREG(ALI_SCR), ICH_ALI_SC_RESET);
2237 iputdword(chip, ICHREG(ALI_FIFOCR1), 0x83838383);
2238 iputdword(chip, ICHREG(ALI_FIFOCR2), 0x83838383);
2239 iputdword(chip, ICHREG(ALI_FIFOCR3), 0x83838383);
2240 iputdword(chip, ICHREG(ALI_INTERFACECR),
Wei Nid78bec22005-10-24 11:04:51 +02002241 ICH_ALI_IF_PI|ICH_ALI_IF_PO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 iputdword(chip, ICHREG(ALI_INTERRUPTCR), 0x00000000);
2243 iputdword(chip, ICHREG(ALI_INTERRUPTSR), 0x00000000);
2244}
2245
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002246static int snd_intel8x0_ich_chip_init(struct intel8x0 *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
2248 unsigned long end_time;
2249 unsigned int cnt, status, nstatus;
2250
2251 /* put logic to right state */
2252 /* first clear status bits */
2253 status = ICH_RCS | ICH_MCINT | ICH_POINT | ICH_PIINT;
2254 if (chip->device_type == DEVICE_NFORCE)
2255 status |= ICH_NVSPINT;
2256 cnt = igetdword(chip, ICHREG(GLOB_STA));
2257 iputdword(chip, ICHREG(GLOB_STA), cnt & status);
2258
2259 /* ACLink on, 2 channels */
2260 cnt = igetdword(chip, ICHREG(GLOB_CNT));
2261 cnt &= ~(ICH_ACLINK | ICH_PCM_246_MASK);
Takashi Iwai6dbe6622006-06-27 18:28:53 +02002262#ifdef CONFIG_SND_AC97_POWER_SAVE
2263 /* do cold reset - the full ac97 powerdown may leave the controller
2264 * in a warm state but actually it cannot communicate with the codec.
2265 */
2266 iputdword(chip, ICHREG(GLOB_CNT), cnt & ~ICH_AC97COLD);
2267 cnt = igetdword(chip, ICHREG(GLOB_CNT));
2268 udelay(10);
2269 iputdword(chip, ICHREG(GLOB_CNT), cnt | ICH_AC97COLD);
2270 msleep(1);
2271#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 /* finish cold or do warm reset */
2273 cnt |= (cnt & ICH_AC97COLD) == 0 ? ICH_AC97COLD : ICH_AC97WARM;
2274 iputdword(chip, ICHREG(GLOB_CNT), cnt);
2275 end_time = (jiffies + (HZ / 4)) + 1;
2276 do {
2277 if ((igetdword(chip, ICHREG(GLOB_CNT)) & ICH_AC97WARM) == 0)
2278 goto __ok;
Takashi Iwai954bea32005-11-17 10:37:40 +01002279 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 } while (time_after_eq(end_time, jiffies));
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002281 snd_printk(KERN_ERR "AC'97 warm reset still in progress? [0x%x]\n",
2282 igetdword(chip, ICHREG(GLOB_CNT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return -EIO;
2284
2285 __ok:
Takashi Iwai6dbe6622006-06-27 18:28:53 +02002286#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (probing) {
2288 /* wait for any codec ready status.
2289 * Once it becomes ready it should remain ready
2290 * as long as we do not disable the ac97 link.
2291 */
2292 end_time = jiffies + HZ;
2293 do {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002294 status = igetdword(chip, ICHREG(GLOB_STA)) &
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002295 chip->codec_isr_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (status)
2297 break;
Takashi Iwai954bea32005-11-17 10:37:40 +01002298 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 } while (time_after_eq(end_time, jiffies));
2300 if (! status) {
2301 /* no codec is found */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002302 snd_printk(KERN_ERR "codec_ready: codec is not ready [0x%x]\n",
2303 igetdword(chip, ICHREG(GLOB_STA)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 return -EIO;
2305 }
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 /* wait for other codecs ready status. */
2308 end_time = jiffies + HZ / 4;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002309 while (status != chip->codec_isr_bits &&
2310 time_after_eq(end_time, jiffies)) {
Takashi Iwai954bea32005-11-17 10:37:40 +01002311 schedule_timeout_uninterruptible(1);
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002312 status |= igetdword(chip, ICHREG(GLOB_STA)) &
2313 chip->codec_isr_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 }
2315
2316 } else {
2317 /* resume phase */
2318 int i;
2319 status = 0;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002320 for (i = 0; i < chip->ncodecs; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 if (chip->ac97[i])
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002322 status |= chip->codec_bit[chip->ac97_sdin[i]];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 /* wait until all the probed codecs are ready */
2324 end_time = jiffies + HZ;
2325 do {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002326 nstatus = igetdword(chip, ICHREG(GLOB_STA)) &
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002327 chip->codec_isr_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 if (status == nstatus)
2329 break;
Takashi Iwai954bea32005-11-17 10:37:40 +01002330 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 } while (time_after_eq(end_time, jiffies));
2332 }
2333
2334 if (chip->device_type == DEVICE_SIS) {
2335 /* unmute the output on SIS7012 */
2336 iputword(chip, 0x4c, igetword(chip, 0x4c) | 1);
2337 }
Takashi Iwaia9e99662006-11-24 15:42:07 +01002338 if (chip->device_type == DEVICE_NFORCE && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 /* enable SPDIF interrupt */
2340 unsigned int val;
2341 pci_read_config_dword(chip->pci, 0x4c, &val);
2342 val |= 0x1000000;
2343 pci_write_config_dword(chip->pci, 0x4c, val);
2344 }
2345 return 0;
2346}
2347
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002348static int snd_intel8x0_ali_chip_init(struct intel8x0 *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
2350 u32 reg;
2351 int i = 0;
2352
2353 reg = igetdword(chip, ICHREG(ALI_SCR));
2354 if ((reg & 2) == 0) /* Cold required */
2355 reg |= 2;
2356 else
2357 reg |= 1; /* Warm */
2358 reg &= ~0x80000000; /* ACLink on */
2359 iputdword(chip, ICHREG(ALI_SCR), reg);
2360
2361 for (i = 0; i < HZ / 2; i++) {
2362 if (! (igetdword(chip, ICHREG(ALI_INTERRUPTSR)) & ALI_INT_GPIO))
2363 goto __ok;
Takashi Iwai954bea32005-11-17 10:37:40 +01002364 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
2366 snd_printk(KERN_ERR "AC'97 reset failed.\n");
2367 if (probing)
2368 return -EIO;
2369
2370 __ok:
2371 for (i = 0; i < HZ / 2; i++) {
2372 reg = igetdword(chip, ICHREG(ALI_RTSR));
2373 if (reg & 0x80) /* primary codec */
2374 break;
2375 iputdword(chip, ICHREG(ALI_RTSR), reg | 0x80);
Takashi Iwai954bea32005-11-17 10:37:40 +01002376 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 }
2378
2379 do_ali_reset(chip);
2380 return 0;
2381}
2382
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002383static int snd_intel8x0_chip_init(struct intel8x0 *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384{
Jaroslav Kysela253b9992006-02-15 13:31:23 +01002385 unsigned int i, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 int err;
2387
2388 if (chip->device_type != DEVICE_ALI) {
2389 if ((err = snd_intel8x0_ich_chip_init(chip, probing)) < 0)
2390 return err;
2391 iagetword(chip, 0); /* clear semaphore flag */
2392 } else {
2393 if ((err = snd_intel8x0_ali_chip_init(chip, probing)) < 0)
2394 return err;
2395 }
2396
2397 /* disable interrupts */
2398 for (i = 0; i < chip->bdbars_count; i++)
2399 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
2400 /* reset channels */
2401 for (i = 0; i < chip->bdbars_count; i++)
2402 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
Jaroslav Kysela253b9992006-02-15 13:31:23 +01002403 for (i = 0; i < chip->bdbars_count; i++) {
2404 timeout = 100000;
2405 while (--timeout != 0) {
2406 if ((igetbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset) & ICH_RESETREGS) == 0)
2407 break;
2408 }
2409 if (timeout == 0)
2410 printk(KERN_ERR "intel8x0: reset of registers failed?\n");
2411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 /* initialize Buffer Descriptor Lists */
2413 for (i = 0; i < chip->bdbars_count; i++)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002414 iputdword(chip, ICH_REG_OFF_BDBAR + chip->ichd[i].reg_offset,
2415 chip->ichd[i].bdbar_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 return 0;
2417}
2418
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002419static int snd_intel8x0_free(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
2421 unsigned int i;
2422
2423 if (chip->irq < 0)
2424 goto __hw_end;
2425 /* disable interrupts */
2426 for (i = 0; i < chip->bdbars_count; i++)
2427 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
2428 /* reset channels */
2429 for (i = 0; i < chip->bdbars_count; i++)
2430 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
Takashi Iwaia9e99662006-11-24 15:42:07 +01002431 if (chip->device_type == DEVICE_NFORCE && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 /* stop the spdif interrupt */
2433 unsigned int val;
2434 pci_read_config_dword(chip->pci, 0x4c, &val);
2435 val &= ~0x1000000;
2436 pci_write_config_dword(chip->pci, 0x4c, val);
2437 }
2438 /* --- */
2439 synchronize_irq(chip->irq);
2440 __hw_end:
2441 if (chip->irq >= 0)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002442 free_irq(chip->irq, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (chip->bdbars.area) {
2444 if (chip->fix_nocache)
2445 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 0);
2446 snd_dma_free_pages(&chip->bdbars);
2447 }
Takashi Iwai3388c372006-10-06 17:06:39 +02002448 if (chip->addr)
2449 pci_iounmap(chip->pci, chip->addr);
2450 if (chip->bmaddr)
2451 pci_iounmap(chip->pci, chip->bmaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 pci_release_regions(chip->pci);
2453 pci_disable_device(chip->pci);
2454 kfree(chip);
2455 return 0;
2456}
2457
2458#ifdef CONFIG_PM
2459/*
2460 * power management
2461 */
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002462static int intel8x0_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002464 struct snd_card *card = pci_get_drvdata(pci);
2465 struct intel8x0 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 int i;
2467
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002468 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 for (i = 0; i < chip->pcm_devs; i++)
2470 snd_pcm_suspend_all(chip->pcm[i]);
2471 /* clear nocache */
2472 if (chip->fix_nocache) {
2473 for (i = 0; i < chip->bdbars_count; i++) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002474 struct ichdev *ichdev = &chip->ichd[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 if (ichdev->substream && ichdev->page_attr_changed) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002476 struct snd_pcm_runtime *runtime = ichdev->substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 if (runtime->dma_area)
2478 fill_nocache(runtime->dma_area, runtime->dma_bytes, 0);
2479 }
2480 }
2481 }
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002482 for (i = 0; i < chip->ncodecs; i++)
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002483 snd_ac97_suspend(chip->ac97[i]);
Takashi Iwai52b72382005-06-30 13:47:06 +02002484 if (chip->device_type == DEVICE_INTEL_ICH4)
2485 chip->sdm_saved = igetbyte(chip, ICHREG(SDM));
Len Brownadbedd32005-07-30 01:55:32 -04002486
Takashi Iwai30b35392006-10-11 18:52:53 +02002487 if (chip->irq >= 0) {
2488 synchronize_irq(chip->irq);
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002489 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002490 chip->irq = -1;
2491 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002492 pci_disable_device(pci);
2493 pci_save_state(pci);
Tommi Kyntola19bfafb2007-03-09 16:15:06 +01002494 /* The call below may disable built-in speaker on some laptops
2495 * after S2RAM. So, don't touch it.
2496 */
2497 /* pci_set_power_state(pci, pci_choose_state(pci, state)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 return 0;
2499}
2500
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002501static int intel8x0_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502{
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002503 struct snd_card *card = pci_get_drvdata(pci);
2504 struct intel8x0 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 int i;
2506
Takashi Iwai30b35392006-10-11 18:52:53 +02002507 pci_set_power_state(pci, PCI_D0);
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002508 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002509 if (pci_enable_device(pci) < 0) {
2510 printk(KERN_ERR "intel8x0: pci_enable_device failed, "
2511 "disabling device\n");
2512 snd_card_disconnect(card);
2513 return -EIO;
2514 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002515 pci_set_master(pci);
Takashi Iwai2078f382007-04-20 12:30:28 +02002516 snd_intel8x0_chip_init(chip, 0);
Takashi Iwai30b35392006-10-11 18:52:53 +02002517 if (request_irq(pci->irq, snd_intel8x0_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002518 IRQF_SHARED, card->shortname, chip)) {
Takashi Iwai30b35392006-10-11 18:52:53 +02002519 printk(KERN_ERR "intel8x0: unable to grab IRQ %d, "
2520 "disabling device\n", pci->irq);
2521 snd_card_disconnect(card);
2522 return -EIO;
2523 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002524 chip->irq = pci->irq;
Rafael J. Wysocki90158b82005-07-24 14:22:00 -04002525 synchronize_irq(chip->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Takashi Iwai52b72382005-06-30 13:47:06 +02002527 /* re-initialize mixer stuff */
Takashi Iwaia9e99662006-11-24 15:42:07 +01002528 if (chip->device_type == DEVICE_INTEL_ICH4 && !spdif_aclink) {
Takashi Iwai52b72382005-06-30 13:47:06 +02002529 /* enable separate SDINs for ICH4 */
2530 iputbyte(chip, ICHREG(SDM), chip->sdm_saved);
2531 /* use slot 10/11 for SPDIF */
2532 iputdword(chip, ICHREG(GLOB_CNT),
2533 (igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_PCM_SPDIF_MASK) |
2534 ICH_PCM_SPDIF_1011);
2535 }
2536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 /* refill nocache */
2538 if (chip->fix_nocache)
2539 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 1);
2540
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002541 for (i = 0; i < chip->ncodecs; i++)
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002542 snd_ac97_resume(chip->ac97[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
2544 /* refill nocache */
2545 if (chip->fix_nocache) {
2546 for (i = 0; i < chip->bdbars_count; i++) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002547 struct ichdev *ichdev = &chip->ichd[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (ichdev->substream && ichdev->page_attr_changed) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002549 struct snd_pcm_runtime *runtime = ichdev->substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (runtime->dma_area)
2551 fill_nocache(runtime->dma_area, runtime->dma_bytes, 1);
2552 }
2553 }
2554 }
2555
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02002556 /* resume status */
2557 for (i = 0; i < chip->bdbars_count; i++) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002558 struct ichdev *ichdev = &chip->ichd[i];
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02002559 unsigned long port = ichdev->reg_offset;
2560 if (! ichdev->substream || ! ichdev->suspended)
2561 continue;
2562 if (ichdev->ichd == ICHD_PCMOUT)
2563 snd_intel8x0_setup_pcm_out(chip, ichdev->substream->runtime);
2564 iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);
2565 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
2566 iputbyte(chip, port + ICH_REG_OFF_CIV, ichdev->civ);
2567 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
2568 }
2569
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002570 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 return 0;
2572}
2573#endif /* CONFIG_PM */
2574
2575#define INTEL8X0_TESTBUF_SIZE 32768 /* enough large for one shot */
2576
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002577static void __devinit intel8x0_measure_ac97_clock(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002579 struct snd_pcm_substream *subs;
2580 struct ichdev *ichdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 unsigned long port;
2582 unsigned long pos, t;
2583 struct timeval start_time, stop_time;
2584
2585 if (chip->ac97_bus->clock != 48000)
2586 return; /* specified in module option */
2587
2588 subs = chip->pcm[0]->streams[0].substream;
2589 if (! subs || subs->dma_buffer.bytes < INTEL8X0_TESTBUF_SIZE) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002590 snd_printk(KERN_WARNING "no playback buffer allocated - aborting measure ac97 clock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 return;
2592 }
2593 ichdev = &chip->ichd[ICHD_PCMOUT];
2594 ichdev->physbuf = subs->dma_buffer.addr;
2595 ichdev->size = chip->ichd[ICHD_PCMOUT].fragsize = INTEL8X0_TESTBUF_SIZE;
2596 ichdev->substream = NULL; /* don't process interrupts */
2597
2598 /* set rate */
2599 if (snd_ac97_set_rate(chip->ac97[0], AC97_PCM_FRONT_DAC_RATE, 48000) < 0) {
2600 snd_printk(KERN_ERR "cannot set ac97 rate: clock = %d\n", chip->ac97_bus->clock);
2601 return;
2602 }
2603 snd_intel8x0_setup_periods(chip, ichdev);
2604 port = ichdev->reg_offset;
2605 spin_lock_irq(&chip->reg_lock);
2606 chip->in_measurement = 1;
2607 /* trigger */
2608 if (chip->device_type != DEVICE_ALI)
2609 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE | ICH_STARTBM);
2610 else {
2611 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE);
2612 iputdword(chip, ICHREG(ALI_DMACR), 1 << ichdev->ali_slot);
2613 }
2614 do_gettimeofday(&start_time);
2615 spin_unlock_irq(&chip->reg_lock);
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +02002616 msleep(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 spin_lock_irq(&chip->reg_lock);
2618 /* check the position */
2619 pos = ichdev->fragsize1;
2620 pos -= igetword(chip, ichdev->reg_offset + ichdev->roff_picb) << ichdev->pos_shift;
2621 pos += ichdev->position;
2622 chip->in_measurement = 0;
2623 do_gettimeofday(&stop_time);
2624 /* stop */
2625 if (chip->device_type == DEVICE_ALI) {
Wei Nid78bec22005-10-24 11:04:51 +02002626 iputdword(chip, ICHREG(ALI_DMACR), 1 << (ichdev->ali_slot + 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
2628 while (igetbyte(chip, port + ICH_REG_OFF_CR))
2629 ;
2630 } else {
2631 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
2632 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH))
2633 ;
2634 }
2635 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
2636 spin_unlock_irq(&chip->reg_lock);
2637
2638 t = stop_time.tv_sec - start_time.tv_sec;
2639 t *= 1000000;
2640 t += stop_time.tv_usec - start_time.tv_usec;
2641 printk(KERN_INFO "%s: measured %lu usecs\n", __FUNCTION__, t);
2642 if (t == 0) {
2643 snd_printk(KERN_ERR "?? calculation error..\n");
2644 return;
2645 }
2646 pos = (pos / 4) * 1000;
2647 pos = (pos / t) * 1000 + ((pos % t) * 1000) / t;
2648 if (pos < 40000 || pos >= 60000)
2649 /* abnormal value. hw problem? */
2650 printk(KERN_INFO "intel8x0: measured clock %ld rejected\n", pos);
2651 else if (pos < 47500 || pos > 48500)
2652 /* not 48000Hz, tuning the clock.. */
2653 chip->ac97_bus->clock = (chip->ac97_bus->clock * 48000) / pos;
2654 printk(KERN_INFO "intel8x0: clocking to %d\n", chip->ac97_bus->clock);
Takashi Iwai6dbe6622006-06-27 18:28:53 +02002655 snd_ac97_update_power(chip->ac97[0], AC97_PCM_FRONT_DAC_RATE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656}
2657
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01002658#ifdef CONFIG_PROC_FS
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002659static void snd_intel8x0_proc_read(struct snd_info_entry * entry,
2660 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002662 struct intel8x0 *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 unsigned int tmp;
2664
2665 snd_iprintf(buffer, "Intel8x0\n\n");
2666 if (chip->device_type == DEVICE_ALI)
2667 return;
2668 tmp = igetdword(chip, ICHREG(GLOB_STA));
2669 snd_iprintf(buffer, "Global control : 0x%08x\n", igetdword(chip, ICHREG(GLOB_CNT)));
2670 snd_iprintf(buffer, "Global status : 0x%08x\n", tmp);
2671 if (chip->device_type == DEVICE_INTEL_ICH4)
2672 snd_iprintf(buffer, "SDM : 0x%08x\n", igetdword(chip, ICHREG(SDM)));
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002673 snd_iprintf(buffer, "AC'97 codecs ready :");
2674 if (tmp & chip->codec_isr_bits) {
2675 int i;
2676 static const char *codecs[3] = {
2677 "primary", "secondary", "tertiary"
2678 };
2679 for (i = 0; i < chip->max_codecs; i++)
2680 if (tmp & chip->codec_bit[i])
2681 snd_iprintf(buffer, " %s", codecs[i]);
2682 } else
2683 snd_iprintf(buffer, " none");
2684 snd_iprintf(buffer, "\n");
2685 if (chip->device_type == DEVICE_INTEL_ICH4 ||
2686 chip->device_type == DEVICE_SIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 snd_iprintf(buffer, "AC'97 codecs SDIN : %i %i %i\n",
2688 chip->ac97_sdin[0],
2689 chip->ac97_sdin[1],
2690 chip->ac97_sdin[2]);
2691}
2692
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002693static void __devinit snd_intel8x0_proc_init(struct intel8x0 * chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002695 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696
2697 if (! snd_card_proc_new(chip->card, "intel8x0", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002698 snd_info_set_text_ops(entry, chip, snd_intel8x0_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699}
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01002700#else
2701#define snd_intel8x0_proc_init(x)
2702#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002704static int snd_intel8x0_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002706 struct intel8x0 *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return snd_intel8x0_free(chip);
2708}
2709
2710struct ich_reg_info {
2711 unsigned int int_sta_mask;
2712 unsigned int offset;
2713};
2714
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002715static unsigned int ich_codec_bits[3] = {
2716 ICH_PCR, ICH_SCR, ICH_TCR
2717};
2718static unsigned int sis_codec_bits[3] = {
2719 ICH_PCR, ICH_SCR, ICH_SIS_TCR
2720};
2721
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002722static int __devinit snd_intel8x0_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 struct pci_dev *pci,
2724 unsigned long device_type,
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002725 struct intel8x0 ** r_intel8x0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002727 struct intel8x0 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 int err;
2729 unsigned int i;
2730 unsigned int int_sta_masks;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002731 struct ichdev *ichdev;
2732 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 .dev_free = snd_intel8x0_dev_free,
2734 };
2735
2736 static unsigned int bdbars[] = {
2737 3, /* DEVICE_INTEL */
2738 6, /* DEVICE_INTEL_ICH4 */
2739 3, /* DEVICE_SIS */
2740 6, /* DEVICE_ALI */
2741 4, /* DEVICE_NFORCE */
2742 };
2743 static struct ich_reg_info intel_regs[6] = {
2744 { ICH_PIINT, 0 },
2745 { ICH_POINT, 0x10 },
2746 { ICH_MCINT, 0x20 },
2747 { ICH_M2INT, 0x40 },
2748 { ICH_P2INT, 0x50 },
2749 { ICH_SPINT, 0x60 },
2750 };
2751 static struct ich_reg_info nforce_regs[4] = {
2752 { ICH_PIINT, 0 },
2753 { ICH_POINT, 0x10 },
2754 { ICH_MCINT, 0x20 },
2755 { ICH_NVSPINT, 0x70 },
2756 };
2757 static struct ich_reg_info ali_regs[6] = {
2758 { ALI_INT_PCMIN, 0x40 },
2759 { ALI_INT_PCMOUT, 0x50 },
2760 { ALI_INT_MICIN, 0x60 },
2761 { ALI_INT_CODECSPDIFOUT, 0x70 },
2762 { ALI_INT_SPDIFIN, 0xa0 },
2763 { ALI_INT_SPDIFOUT, 0xb0 },
2764 };
2765 struct ich_reg_info *tbl;
2766
2767 *r_intel8x0 = NULL;
2768
2769 if ((err = pci_enable_device(pci)) < 0)
2770 return err;
2771
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002772 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 if (chip == NULL) {
2774 pci_disable_device(pci);
2775 return -ENOMEM;
2776 }
2777 spin_lock_init(&chip->reg_lock);
2778 chip->device_type = device_type;
2779 chip->card = card;
2780 chip->pci = pci;
2781 chip->irq = -1;
Takashi Iwaic829b052005-10-18 18:03:35 +02002782
2783 /* module parameters */
2784 chip->buggy_irq = buggy_irq;
2785 chip->buggy_semaphore = buggy_semaphore;
2786 if (xbox)
2787 chip->xbox = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789 if (pci->vendor == PCI_VENDOR_ID_INTEL &&
2790 pci->device == PCI_DEVICE_ID_INTEL_440MX)
2791 chip->fix_nocache = 1; /* enable workaround */
2792
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if ((err = pci_request_regions(pci, card->shortname)) < 0) {
2794 kfree(chip);
2795 pci_disable_device(pci);
2796 return err;
2797 }
2798
2799 if (device_type == DEVICE_ALI) {
2800 /* ALI5455 has no ac97 region */
Takashi Iwai3388c372006-10-06 17:06:39 +02002801 chip->bmaddr = pci_iomap(pci, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 goto port_inited;
2803 }
2804
Takashi Iwai3388c372006-10-06 17:06:39 +02002805 if (pci_resource_flags(pci, 2) & IORESOURCE_MEM) /* ICH4 and Nforce */
2806 chip->addr = pci_iomap(pci, 2, 0);
2807 else
2808 chip->addr = pci_iomap(pci, 0, 0);
2809 if (!chip->addr) {
2810 snd_printk(KERN_ERR "AC'97 space ioremap problem\n");
2811 snd_intel8x0_free(chip);
2812 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 }
Takashi Iwai3388c372006-10-06 17:06:39 +02002814 if (pci_resource_flags(pci, 3) & IORESOURCE_MEM) /* ICH4 */
2815 chip->bmaddr = pci_iomap(pci, 3, 0);
2816 else
2817 chip->bmaddr = pci_iomap(pci, 1, 0);
2818 if (!chip->bmaddr) {
2819 snd_printk(KERN_ERR "Controller space ioremap problem\n");
2820 snd_intel8x0_free(chip);
2821 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823
2824 port_inited:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 chip->bdbars_count = bdbars[device_type];
2826
2827 /* initialize offsets */
2828 switch (device_type) {
2829 case DEVICE_NFORCE:
2830 tbl = nforce_regs;
2831 break;
2832 case DEVICE_ALI:
2833 tbl = ali_regs;
2834 break;
2835 default:
2836 tbl = intel_regs;
2837 break;
2838 }
2839 for (i = 0; i < chip->bdbars_count; i++) {
2840 ichdev = &chip->ichd[i];
2841 ichdev->ichd = i;
2842 ichdev->reg_offset = tbl[i].offset;
2843 ichdev->int_sta_mask = tbl[i].int_sta_mask;
2844 if (device_type == DEVICE_SIS) {
2845 /* SiS 7012 swaps the registers */
2846 ichdev->roff_sr = ICH_REG_OFF_PICB;
2847 ichdev->roff_picb = ICH_REG_OFF_SR;
2848 } else {
2849 ichdev->roff_sr = ICH_REG_OFF_SR;
2850 ichdev->roff_picb = ICH_REG_OFF_PICB;
2851 }
2852 if (device_type == DEVICE_ALI)
2853 ichdev->ali_slot = (ichdev->reg_offset - 0x40) / 0x10;
2854 /* SIS7012 handles the pcm data in bytes, others are in samples */
2855 ichdev->pos_shift = (device_type == DEVICE_SIS) ? 0 : 1;
2856 }
2857
2858 /* allocate buffer descriptor lists */
2859 /* the start of each lists must be aligned to 8 bytes */
2860 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
2861 chip->bdbars_count * sizeof(u32) * ICH_MAX_FRAGS * 2,
2862 &chip->bdbars) < 0) {
2863 snd_intel8x0_free(chip);
2864 snd_printk(KERN_ERR "intel8x0: cannot allocate buffer descriptors\n");
2865 return -ENOMEM;
2866 }
2867 /* tables must be aligned to 8 bytes here, but the kernel pages
2868 are much bigger, so we don't care (on i386) */
2869 /* workaround for 440MX */
2870 if (chip->fix_nocache)
2871 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 1);
2872 int_sta_masks = 0;
2873 for (i = 0; i < chip->bdbars_count; i++) {
2874 ichdev = &chip->ichd[i];
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002875 ichdev->bdbar = ((u32 *)chip->bdbars.area) +
2876 (i * ICH_MAX_FRAGS * 2);
2877 ichdev->bdbar_addr = chip->bdbars.addr +
2878 (i * sizeof(u32) * ICH_MAX_FRAGS * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 int_sta_masks |= ichdev->int_sta_mask;
2880 }
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002881 chip->int_sta_reg = device_type == DEVICE_ALI ?
2882 ICH_REG_ALI_INTERRUPTSR : ICH_REG_GLOB_STA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 chip->int_sta_mask = int_sta_masks;
2884
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002885 pci_set_master(pci);
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002886
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002887 switch(chip->device_type) {
2888 case DEVICE_INTEL_ICH4:
2889 /* ICH4 can have three codecs */
2890 chip->max_codecs = 3;
2891 chip->codec_bit = ich_codec_bits;
2892 chip->codec_ready_bits = ICH_PRI | ICH_SRI | ICH_TRI;
2893 break;
2894 case DEVICE_SIS:
2895 /* recent SIS7012 can have three codecs */
2896 chip->max_codecs = 3;
2897 chip->codec_bit = sis_codec_bits;
2898 chip->codec_ready_bits = ICH_PRI | ICH_SRI | ICH_SIS_TRI;
2899 break;
2900 default:
2901 /* others up to two codecs */
2902 chip->max_codecs = 2;
2903 chip->codec_bit = ich_codec_bits;
2904 chip->codec_ready_bits = ICH_PRI | ICH_SRI;
2905 break;
2906 }
2907 for (i = 0; i < chip->max_codecs; i++)
2908 chip->codec_isr_bits |= chip->codec_bit[i];
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 if ((err = snd_intel8x0_chip_init(chip, 1)) < 0) {
2911 snd_intel8x0_free(chip);
2912 return err;
2913 }
2914
Takashi Iwai2078f382007-04-20 12:30:28 +02002915 /* request irq after initializaing int_sta_mask, etc */
2916 if (request_irq(pci->irq, snd_intel8x0_interrupt,
2917 IRQF_SHARED, card->shortname, chip)) {
2918 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
2919 snd_intel8x0_free(chip);
2920 return -EBUSY;
2921 }
2922 chip->irq = pci->irq;
2923
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
2925 snd_intel8x0_free(chip);
2926 return err;
2927 }
2928
2929 snd_card_set_dev(card, &pci->dev);
2930
2931 *r_intel8x0 = chip;
2932 return 0;
2933}
2934
2935static struct shortname_table {
2936 unsigned int id;
2937 const char *s;
2938} shortnames[] __devinitdata = {
Takashi Iwai8cdfd252005-09-07 14:08:11 +02002939 { PCI_DEVICE_ID_INTEL_82801AA_5, "Intel 82801AA-ICH" },
2940 { PCI_DEVICE_ID_INTEL_82801AB_5, "Intel 82901AB-ICH0" },
2941 { PCI_DEVICE_ID_INTEL_82801BA_4, "Intel 82801BA-ICH2" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 { PCI_DEVICE_ID_INTEL_440MX, "Intel 440MX" },
Takashi Iwai8cdfd252005-09-07 14:08:11 +02002943 { PCI_DEVICE_ID_INTEL_82801CA_5, "Intel 82801CA-ICH3" },
2944 { PCI_DEVICE_ID_INTEL_82801DB_5, "Intel 82801DB-ICH4" },
2945 { PCI_DEVICE_ID_INTEL_82801EB_5, "Intel ICH5" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 { PCI_DEVICE_ID_INTEL_ESB_5, "Intel 6300ESB" },
2947 { PCI_DEVICE_ID_INTEL_ICH6_18, "Intel ICH6" },
2948 { PCI_DEVICE_ID_INTEL_ICH7_20, "Intel ICH7" },
Jason Gaston3437c5d2005-05-05 16:15:05 -07002949 { PCI_DEVICE_ID_INTEL_ESB2_14, "Intel ESB2" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 { PCI_DEVICE_ID_SI_7012, "SiS SI7012" },
Takashi Iwai8cdfd252005-09-07 14:08:11 +02002951 { PCI_DEVICE_ID_NVIDIA_MCP1_AUDIO, "NVidia nForce" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 { PCI_DEVICE_ID_NVIDIA_MCP2_AUDIO, "NVidia nForce2" },
2953 { PCI_DEVICE_ID_NVIDIA_MCP3_AUDIO, "NVidia nForce3" },
2954 { PCI_DEVICE_ID_NVIDIA_CK8S_AUDIO, "NVidia CK8S" },
2955 { PCI_DEVICE_ID_NVIDIA_CK804_AUDIO, "NVidia CK804" },
2956 { PCI_DEVICE_ID_NVIDIA_CK8_AUDIO, "NVidia CK8" },
2957 { 0x003a, "NVidia MCP04" },
2958 { 0x746d, "AMD AMD8111" },
2959 { 0x7445, "AMD AMD768" },
2960 { 0x5455, "ALi M5455" },
2961 { 0, NULL },
2962};
2963
Takashi Iwaia9e99662006-11-24 15:42:07 +01002964static struct snd_pci_quirk spdif_aclink_defaults[] __devinitdata = {
2965 SND_PCI_QUIRK(0x147b, 0x1c1a, "ASUS KN8", 1),
2966 { } /* end */
2967};
2968
2969/* look up white/black list for SPDIF over ac-link */
2970static int __devinit check_default_spdif_aclink(struct pci_dev *pci)
2971{
2972 const struct snd_pci_quirk *w;
2973
2974 w = snd_pci_quirk_lookup(pci, spdif_aclink_defaults);
2975 if (w) {
2976 if (w->value)
2977 snd_printdd(KERN_INFO "intel8x0: Using SPDIF over "
2978 "AC-Link for %s\n", w->name);
2979 else
2980 snd_printdd(KERN_INFO "intel8x0: Using integrated "
2981 "SPDIF DMA for %s\n", w->name);
2982 return w->value;
2983 }
2984 return 0;
2985}
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987static int __devinit snd_intel8x0_probe(struct pci_dev *pci,
2988 const struct pci_device_id *pci_id)
2989{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002990 struct snd_card *card;
2991 struct intel8x0 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 int err;
2993 struct shortname_table *name;
2994
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002995 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 if (card == NULL)
2997 return -ENOMEM;
2998
Takashi Iwaia9e99662006-11-24 15:42:07 +01002999 if (spdif_aclink < 0)
3000 spdif_aclink = check_default_spdif_aclink(pci);
3001
3002 strcpy(card->driver, "ICH");
3003 if (!spdif_aclink) {
3004 switch (pci_id->driver_data) {
3005 case DEVICE_NFORCE:
3006 strcpy(card->driver, "NFORCE");
3007 break;
3008 case DEVICE_INTEL_ICH4:
3009 strcpy(card->driver, "ICH4");
3010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 }
3012
3013 strcpy(card->shortname, "Intel ICH");
3014 for (name = shortnames; name->id; name++) {
3015 if (pci->device == name->id) {
3016 strcpy(card->shortname, name->s);
3017 break;
3018 }
3019 }
3020
Takashi Iwaibeef08a2005-10-27 20:55:38 +02003021 if (buggy_irq < 0) {
3022 /* some Nforce[2] and ICH boards have problems with IRQ handling.
3023 * Needs to return IRQ_HANDLED for unknown irqs.
3024 */
3025 if (pci_id->driver_data == DEVICE_NFORCE)
3026 buggy_irq = 1;
3027 else
3028 buggy_irq = 0;
3029 }
3030
Takashi Iwaia06147d2005-09-08 19:54:17 +02003031 if ((err = snd_intel8x0_create(card, pci, pci_id->driver_data,
Takashi Iwaic829b052005-10-18 18:03:35 +02003032 &chip)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 snd_card_free(card);
3034 return err;
3035 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01003036 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037
Clemens Ladischb7fe4622005-10-04 08:46:51 +02003038 if ((err = snd_intel8x0_mixer(chip, ac97_clock, ac97_quirk)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 snd_card_free(card);
3040 return err;
3041 }
3042 if ((err = snd_intel8x0_pcm(chip)) < 0) {
3043 snd_card_free(card);
3044 return err;
3045 }
3046
3047 snd_intel8x0_proc_init(chip);
3048
3049 snprintf(card->longname, sizeof(card->longname),
Takashi Iwai3388c372006-10-06 17:06:39 +02003050 "%s with %s at irq %i", card->shortname,
3051 snd_ac97_get_short_name(chip->ac97[0]), chip->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052
Clemens Ladischb7fe4622005-10-04 08:46:51 +02003053 if (! ac97_clock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 intel8x0_measure_ac97_clock(chip);
3055
3056 if ((err = snd_card_register(card)) < 0) {
3057 snd_card_free(card);
3058 return err;
3059 }
3060 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 return 0;
3062}
3063
3064static void __devexit snd_intel8x0_remove(struct pci_dev *pci)
3065{
3066 snd_card_free(pci_get_drvdata(pci));
3067 pci_set_drvdata(pci, NULL);
3068}
3069
3070static struct pci_driver driver = {
3071 .name = "Intel ICH",
3072 .id_table = snd_intel8x0_ids,
3073 .probe = snd_intel8x0_probe,
3074 .remove = __devexit_p(snd_intel8x0_remove),
Takashi Iwai5809c6c2005-11-17 16:10:01 +01003075#ifdef CONFIG_PM
3076 .suspend = intel8x0_suspend,
3077 .resume = intel8x0_resume,
3078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079};
3080
3081
3082static int __init alsa_card_intel8x0_init(void)
3083{
Takashi Iwai01d25d42005-04-11 16:58:24 +02003084 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085}
3086
3087static void __exit alsa_card_intel8x0_exit(void)
3088{
3089 pci_unregister_driver(&driver);
3090}
3091
3092module_init(alsa_card_intel8x0_init)
3093module_exit(alsa_card_intel8x0_exit)