blob: e5650905296ee34026705311e845977cb3dfe2c0 [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 global_flush_tlb();
719}
720#else
Arjan van de Ven6d238cc2008-01-30 13:34:06 +0100721#define fill_nocache(buf, size, nocache) do { ; } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#endif
723
724/*
725 * Interrupt handler
726 */
727
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100728static inline void snd_intel8x0_update(struct intel8x0 *chip, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 unsigned long port = ichdev->reg_offset;
Takashi Iwai883be792007-03-13 21:52:36 +0100731 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 int status, civ, i, step;
733 int ack = 0;
734
Takashi Iwai883be792007-03-13 21:52:36 +0100735 spin_lock_irqsave(&chip->reg_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 status = igetbyte(chip, port + ichdev->roff_sr);
737 civ = igetbyte(chip, port + ICH_REG_OFF_CIV);
738 if (!(status & ICH_BCIS)) {
739 step = 0;
740 } else if (civ == ichdev->civ) {
741 // snd_printd("civ same %d\n", civ);
742 step = 1;
743 ichdev->civ++;
744 ichdev->civ &= ICH_REG_LVI_MASK;
745 } else {
746 step = civ - ichdev->civ;
747 if (step < 0)
748 step += ICH_REG_LVI_MASK + 1;
749 // if (step != 1)
750 // snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ);
751 ichdev->civ = civ;
752 }
753
754 ichdev->position += step * ichdev->fragsize1;
755 if (! chip->in_measurement)
756 ichdev->position %= ichdev->size;
757 ichdev->lvi += step;
758 ichdev->lvi &= ICH_REG_LVI_MASK;
759 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
760 for (i = 0; i < step; i++) {
761 ichdev->lvi_frag++;
762 ichdev->lvi_frag %= ichdev->frags;
763 ichdev->bdbar[ichdev->lvi * 2] = cpu_to_le32(ichdev->physbuf + ichdev->lvi_frag * ichdev->fragsize1);
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100764#if 0
765 printk("new: bdbar[%i] = 0x%x [0x%x], prefetch = %i, all = 0x%x, 0x%x\n",
766 ichdev->lvi * 2, ichdev->bdbar[ichdev->lvi * 2],
767 ichdev->bdbar[ichdev->lvi * 2 + 1], inb(ICH_REG_OFF_PIV + port),
768 inl(port + 4), inb(port + ICH_REG_OFF_CR));
769#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (--ichdev->ack == 0) {
771 ichdev->ack = ichdev->ack_reload;
772 ack = 1;
773 }
774 }
Takashi Iwai883be792007-03-13 21:52:36 +0100775 spin_unlock_irqrestore(&chip->reg_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (ack && ichdev->substream) {
777 snd_pcm_period_elapsed(ichdev->substream);
778 }
779 iputbyte(chip, port + ichdev->roff_sr,
780 status & (ICH_FIFOE | ICH_BCIS | ICH_LVBCI));
781}
782
David Howells7d12e782006-10-05 14:55:46 +0100783static irqreturn_t snd_intel8x0_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100785 struct intel8x0 *chip = dev_id;
786 struct ichdev *ichdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 unsigned int status;
788 unsigned int i;
789
790 status = igetdword(chip, chip->int_sta_reg);
791 if (status == 0xffffffff) /* we are not yet resumed */
792 return IRQ_NONE;
793
794 if ((status & chip->int_sta_mask) == 0) {
795 if (status) {
796 /* ack */
797 iputdword(chip, chip->int_sta_reg, status);
798 if (! chip->buggy_irq)
799 status = 0;
800 }
801 return IRQ_RETVAL(status);
802 }
803
804 for (i = 0; i < chip->bdbars_count; i++) {
805 ichdev = &chip->ichd[i];
806 if (status & ichdev->int_sta_mask)
807 snd_intel8x0_update(chip, ichdev);
808 }
809
810 /* ack them */
811 iputdword(chip, chip->int_sta_reg, status & chip->int_sta_mask);
812
813 return IRQ_HANDLED;
814}
815
816/*
817 * PCM part
818 */
819
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100820static int snd_intel8x0_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100822 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
823 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 unsigned char val = 0;
825 unsigned long port = ichdev->reg_offset;
826
827 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200829 ichdev->suspended = 0;
830 /* fallthru */
831 case SNDRV_PCM_TRIGGER_START:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 val = ICH_IOCE | ICH_STARTBM;
833 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 case SNDRV_PCM_TRIGGER_SUSPEND:
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200835 ichdev->suspended = 1;
836 /* fallthru */
837 case SNDRV_PCM_TRIGGER_STOP:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 val = 0;
839 break;
840 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
841 val = ICH_IOCE;
842 break;
843 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
844 val = ICH_IOCE | ICH_STARTBM;
845 break;
846 default:
847 return -EINVAL;
848 }
849 iputbyte(chip, port + ICH_REG_OFF_CR, val);
850 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
851 /* wait until DMA stopped */
852 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH)) ;
853 /* reset whole DMA things */
854 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
855 }
856 return 0;
857}
858
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100859static int snd_intel8x0_ali_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100861 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
862 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 unsigned long port = ichdev->reg_offset;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100864 static int fiforeg[] = {
865 ICHREG(ALI_FIFOCR1), ICHREG(ALI_FIFOCR2), ICHREG(ALI_FIFOCR3)
866 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 unsigned int val, fifo;
868
869 val = igetdword(chip, ICHREG(ALI_DMACR));
870 switch (cmd) {
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200871 case SNDRV_PCM_TRIGGER_RESUME:
872 ichdev->suspended = 0;
873 /* fallthru */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 case SNDRV_PCM_TRIGGER_START:
875 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
877 /* clear FIFO for synchronization of channels */
878 fifo = igetdword(chip, fiforeg[ichdev->ali_slot / 4]);
879 fifo &= ~(0xff << (ichdev->ali_slot % 4));
880 fifo |= 0x83 << (ichdev->ali_slot % 4);
881 iputdword(chip, fiforeg[ichdev->ali_slot / 4], fifo);
882 }
883 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE);
884 val &= ~(1 << (ichdev->ali_slot + 16)); /* clear PAUSE flag */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100885 /* start DMA */
886 iputdword(chip, ICHREG(ALI_DMACR), val | (1 << ichdev->ali_slot));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 break;
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200888 case SNDRV_PCM_TRIGGER_SUSPEND:
889 ichdev->suspended = 1;
890 /* fallthru */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 case SNDRV_PCM_TRIGGER_STOP:
892 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100893 /* pause */
894 iputdword(chip, ICHREG(ALI_DMACR), val | (1 << (ichdev->ali_slot + 16)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
896 while (igetbyte(chip, port + ICH_REG_OFF_CR))
897 ;
898 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
899 break;
900 /* reset whole DMA things */
901 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
902 /* clear interrupts */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100903 iputbyte(chip, port + ICH_REG_OFF_SR,
904 igetbyte(chip, port + ICH_REG_OFF_SR) | 0x1e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 iputdword(chip, ICHREG(ALI_INTERRUPTSR),
906 igetdword(chip, ICHREG(ALI_INTERRUPTSR)) & ichdev->int_sta_mask);
907 break;
908 default:
909 return -EINVAL;
910 }
911 return 0;
912}
913
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100914static int snd_intel8x0_hw_params(struct snd_pcm_substream *substream,
915 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100917 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
918 struct ichdev *ichdev = get_ichdev(substream);
919 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 int dbl = params_rate(hw_params) > 48000;
921 int err;
922
923 if (chip->fix_nocache && ichdev->page_attr_changed) {
924 fill_nocache(runtime->dma_area, runtime->dma_bytes, 0); /* clear */
925 ichdev->page_attr_changed = 0;
926 }
927 err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
928 if (err < 0)
929 return err;
930 if (chip->fix_nocache) {
931 if (runtime->dma_area && ! ichdev->page_attr_changed) {
932 fill_nocache(runtime->dma_area, runtime->dma_bytes, 1);
933 ichdev->page_attr_changed = 1;
934 }
935 }
936 if (ichdev->pcm_open_flag) {
937 snd_ac97_pcm_close(ichdev->pcm);
938 ichdev->pcm_open_flag = 0;
939 }
940 err = snd_ac97_pcm_open(ichdev->pcm, params_rate(hw_params),
941 params_channels(hw_params),
942 ichdev->pcm->r[dbl].slots);
943 if (err >= 0) {
944 ichdev->pcm_open_flag = 1;
945 /* Force SPDIF setting */
946 if (ichdev->ichd == ICHD_PCMOUT && chip->spdif_idx < 0)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100947 snd_ac97_set_rate(ichdev->pcm->r[0].codec[0], AC97_SPDIF,
948 params_rate(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950 return err;
951}
952
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100953static int snd_intel8x0_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100955 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
956 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 if (ichdev->pcm_open_flag) {
959 snd_ac97_pcm_close(ichdev->pcm);
960 ichdev->pcm_open_flag = 0;
961 }
962 if (chip->fix_nocache && ichdev->page_attr_changed) {
963 fill_nocache(substream->runtime->dma_area, substream->runtime->dma_bytes, 0);
964 ichdev->page_attr_changed = 0;
965 }
966 return snd_pcm_lib_free_pages(substream);
967}
968
Takashi Iwai6b75a9d2005-11-17 15:04:53 +0100969static void snd_intel8x0_setup_pcm_out(struct intel8x0 *chip,
970 struct snd_pcm_runtime *runtime)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
972 unsigned int cnt;
973 int dbl = runtime->rate > 48000;
Takashi Iwai1cfe43d2005-08-16 16:52:24 +0200974
975 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 switch (chip->device_type) {
977 case DEVICE_ALI:
978 cnt = igetdword(chip, ICHREG(ALI_SCR));
979 cnt &= ~ICH_ALI_SC_PCM_246_MASK;
980 if (runtime->channels == 4 || dbl)
981 cnt |= ICH_ALI_SC_PCM_4;
982 else if (runtime->channels == 6)
983 cnt |= ICH_ALI_SC_PCM_6;
984 iputdword(chip, ICHREG(ALI_SCR), cnt);
985 break;
986 case DEVICE_SIS:
987 cnt = igetdword(chip, ICHREG(GLOB_CNT));
988 cnt &= ~ICH_SIS_PCM_246_MASK;
989 if (runtime->channels == 4 || dbl)
990 cnt |= ICH_SIS_PCM_4;
991 else if (runtime->channels == 6)
992 cnt |= ICH_SIS_PCM_6;
993 iputdword(chip, ICHREG(GLOB_CNT), cnt);
994 break;
995 default:
996 cnt = igetdword(chip, ICHREG(GLOB_CNT));
997 cnt &= ~(ICH_PCM_246_MASK | ICH_PCM_20BIT);
998 if (runtime->channels == 4 || dbl)
999 cnt |= ICH_PCM_4;
1000 else if (runtime->channels == 6)
1001 cnt |= ICH_PCM_6;
1002 if (chip->device_type == DEVICE_NFORCE) {
1003 /* reset to 2ch once to keep the 6 channel data in alignment,
1004 * to start from Front Left always
1005 */
1006 if (cnt & ICH_PCM_246_MASK) {
1007 iputdword(chip, ICHREG(GLOB_CNT), cnt & ~ICH_PCM_246_MASK);
1008 spin_unlock_irq(&chip->reg_lock);
1009 msleep(50); /* grrr... */
1010 spin_lock_irq(&chip->reg_lock);
1011 }
1012 } else if (chip->device_type == DEVICE_INTEL_ICH4) {
1013 if (runtime->sample_bits > 16)
1014 cnt |= ICH_PCM_20BIT;
1015 }
1016 iputdword(chip, ICHREG(GLOB_CNT), cnt);
1017 break;
1018 }
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02001019 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001022static int snd_intel8x0_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001024 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1025 struct snd_pcm_runtime *runtime = substream->runtime;
1026 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
1028 ichdev->physbuf = runtime->dma_addr;
1029 ichdev->size = snd_pcm_lib_buffer_bytes(substream);
1030 ichdev->fragsize = snd_pcm_lib_period_bytes(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (ichdev->ichd == ICHD_PCMOUT) {
1032 snd_intel8x0_setup_pcm_out(chip, runtime);
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02001033 if (chip->device_type == DEVICE_INTEL_ICH4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 ichdev->pos_shift = (runtime->sample_bits > 16) ? 2 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 }
1036 snd_intel8x0_setup_periods(chip, ichdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return 0;
1038}
1039
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001040static snd_pcm_uframes_t snd_intel8x0_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001042 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1043 struct ichdev *ichdev = get_ichdev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 size_t ptr1, ptr;
1045 int civ, timeout = 100;
1046 unsigned int position;
1047
1048 spin_lock(&chip->reg_lock);
1049 do {
1050 civ = igetbyte(chip, ichdev->reg_offset + ICH_REG_OFF_CIV);
1051 ptr1 = igetword(chip, ichdev->reg_offset + ichdev->roff_picb);
1052 position = ichdev->position;
1053 if (ptr1 == 0) {
1054 udelay(10);
1055 continue;
1056 }
1057 if (civ == igetbyte(chip, ichdev->reg_offset + ICH_REG_OFF_CIV) &&
1058 ptr1 == igetword(chip, ichdev->reg_offset + ichdev->roff_picb))
1059 break;
1060 } while (timeout--);
1061 ptr1 <<= ichdev->pos_shift;
1062 ptr = ichdev->fragsize1 - ptr1;
1063 ptr += position;
1064 spin_unlock(&chip->reg_lock);
1065 if (ptr >= ichdev->size)
1066 return 0;
1067 return bytes_to_frames(substream->runtime, ptr);
1068}
1069
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001070static struct snd_pcm_hardware snd_intel8x0_stream =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
1072 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1073 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1074 SNDRV_PCM_INFO_MMAP_VALID |
1075 SNDRV_PCM_INFO_PAUSE |
1076 SNDRV_PCM_INFO_RESUME),
1077 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1078 .rates = SNDRV_PCM_RATE_48000,
1079 .rate_min = 48000,
1080 .rate_max = 48000,
1081 .channels_min = 2,
1082 .channels_max = 2,
1083 .buffer_bytes_max = 128 * 1024,
1084 .period_bytes_min = 32,
1085 .period_bytes_max = 128 * 1024,
1086 .periods_min = 1,
1087 .periods_max = 1024,
1088 .fifo_size = 0,
1089};
1090
1091static unsigned int channels4[] = {
1092 2, 4,
1093};
1094
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001095static struct snd_pcm_hw_constraint_list hw_constraints_channels4 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 .count = ARRAY_SIZE(channels4),
1097 .list = channels4,
1098 .mask = 0,
1099};
1100
1101static unsigned int channels6[] = {
1102 2, 4, 6,
1103};
1104
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001105static struct snd_pcm_hw_constraint_list hw_constraints_channels6 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 .count = ARRAY_SIZE(channels6),
1107 .list = channels6,
1108 .mask = 0,
1109};
1110
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001111static int snd_intel8x0_pcm_open(struct snd_pcm_substream *substream, struct ichdev *ichdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001113 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1114 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 int err;
1116
1117 ichdev->substream = substream;
1118 runtime->hw = snd_intel8x0_stream;
1119 runtime->hw.rates = ichdev->pcm->rates;
1120 snd_pcm_limit_hw_rates(runtime);
1121 if (chip->device_type == DEVICE_SIS) {
1122 runtime->hw.buffer_bytes_max = 64*1024;
1123 runtime->hw.period_bytes_max = 64*1024;
1124 }
1125 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
1126 return err;
1127 runtime->private_data = ichdev;
1128 return 0;
1129}
1130
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001131static int snd_intel8x0_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001133 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
1134 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 int err;
1136
1137 err = snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCMOUT]);
1138 if (err < 0)
1139 return err;
1140
1141 if (chip->multi6) {
1142 runtime->hw.channels_max = 6;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001143 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1144 &hw_constraints_channels6);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 } else if (chip->multi4) {
1146 runtime->hw.channels_max = 4;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001147 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS,
1148 &hw_constraints_channels4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150 if (chip->dra) {
1151 snd_ac97_pcm_double_rate_rules(runtime);
1152 }
1153 if (chip->smp20bit) {
1154 runtime->hw.formats |= SNDRV_PCM_FMTBIT_S32_LE;
1155 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 20);
1156 }
1157 return 0;
1158}
1159
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001160static int snd_intel8x0_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001162 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 chip->ichd[ICHD_PCMOUT].substream = NULL;
1165 return 0;
1166}
1167
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001168static int snd_intel8x0_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001170 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCMIN]);
1173}
1174
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001175static int snd_intel8x0_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001177 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 chip->ichd[ICHD_PCMIN].substream = NULL;
1180 return 0;
1181}
1182
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001183static int snd_intel8x0_mic_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001185 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
1187 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_MIC]);
1188}
1189
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001190static int snd_intel8x0_mic_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001192 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
1194 chip->ichd[ICHD_MIC].substream = NULL;
1195 return 0;
1196}
1197
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001198static int snd_intel8x0_mic2_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001200 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
1202 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_MIC2]);
1203}
1204
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001205static int snd_intel8x0_mic2_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001207 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208
1209 chip->ichd[ICHD_MIC2].substream = NULL;
1210 return 0;
1211}
1212
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001213static int snd_intel8x0_capture2_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001215 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCM2IN]);
1218}
1219
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001220static int snd_intel8x0_capture2_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001222 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 chip->ichd[ICHD_PCM2IN].substream = NULL;
1225 return 0;
1226}
1227
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001228static int snd_intel8x0_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001230 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 int idx = chip->device_type == DEVICE_NFORCE ? NVD_SPBAR : ICHD_SPBAR;
1232
1233 return snd_intel8x0_pcm_open(substream, &chip->ichd[idx]);
1234}
1235
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001236static int snd_intel8x0_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001238 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 int idx = chip->device_type == DEVICE_NFORCE ? NVD_SPBAR : ICHD_SPBAR;
1240
1241 chip->ichd[idx].substream = NULL;
1242 return 0;
1243}
1244
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001245static int snd_intel8x0_ali_ac97spdifout_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001247 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 unsigned int val;
1249
1250 spin_lock_irq(&chip->reg_lock);
1251 val = igetdword(chip, ICHREG(ALI_INTERFACECR));
1252 val |= ICH_ALI_IF_AC97SP;
1253 iputdword(chip, ICHREG(ALI_INTERFACECR), val);
1254 /* also needs to set ALI_SC_CODEC_SPDF correctly */
1255 spin_unlock_irq(&chip->reg_lock);
1256
1257 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_AC97SPDIFOUT]);
1258}
1259
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001260static int snd_intel8x0_ali_ac97spdifout_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001262 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 unsigned int val;
1264
1265 chip->ichd[ALID_AC97SPDIFOUT].substream = NULL;
1266 spin_lock_irq(&chip->reg_lock);
1267 val = igetdword(chip, ICHREG(ALI_INTERFACECR));
1268 val &= ~ICH_ALI_IF_AC97SP;
1269 iputdword(chip, ICHREG(ALI_INTERFACECR), val);
1270 spin_unlock_irq(&chip->reg_lock);
1271
1272 return 0;
1273}
1274
Takashi Iwai1a183132006-04-18 21:23:47 +02001275#if 0 // NYI
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001276static int snd_intel8x0_ali_spdifin_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001278 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_SPDIFIN]);
1281}
1282
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001283static int snd_intel8x0_ali_spdifin_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001285 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 chip->ichd[ALID_SPDIFIN].substream = NULL;
1288 return 0;
1289}
1290
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001291static int snd_intel8x0_ali_spdifout_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001293 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_SPDIFOUT]);
1296}
1297
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001298static int snd_intel8x0_ali_spdifout_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001300 struct intel8x0 *chip = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 chip->ichd[ALID_SPDIFOUT].substream = NULL;
1303 return 0;
1304}
1305#endif
1306
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001307static struct snd_pcm_ops snd_intel8x0_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 .open = snd_intel8x0_playback_open,
1309 .close = snd_intel8x0_playback_close,
1310 .ioctl = snd_pcm_lib_ioctl,
1311 .hw_params = snd_intel8x0_hw_params,
1312 .hw_free = snd_intel8x0_hw_free,
1313 .prepare = snd_intel8x0_pcm_prepare,
1314 .trigger = snd_intel8x0_pcm_trigger,
1315 .pointer = snd_intel8x0_pcm_pointer,
1316};
1317
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001318static struct snd_pcm_ops snd_intel8x0_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 .open = snd_intel8x0_capture_open,
1320 .close = snd_intel8x0_capture_close,
1321 .ioctl = snd_pcm_lib_ioctl,
1322 .hw_params = snd_intel8x0_hw_params,
1323 .hw_free = snd_intel8x0_hw_free,
1324 .prepare = snd_intel8x0_pcm_prepare,
1325 .trigger = snd_intel8x0_pcm_trigger,
1326 .pointer = snd_intel8x0_pcm_pointer,
1327};
1328
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001329static struct snd_pcm_ops snd_intel8x0_capture_mic_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 .open = snd_intel8x0_mic_open,
1331 .close = snd_intel8x0_mic_close,
1332 .ioctl = snd_pcm_lib_ioctl,
1333 .hw_params = snd_intel8x0_hw_params,
1334 .hw_free = snd_intel8x0_hw_free,
1335 .prepare = snd_intel8x0_pcm_prepare,
1336 .trigger = snd_intel8x0_pcm_trigger,
1337 .pointer = snd_intel8x0_pcm_pointer,
1338};
1339
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001340static struct snd_pcm_ops snd_intel8x0_capture_mic2_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 .open = snd_intel8x0_mic2_open,
1342 .close = snd_intel8x0_mic2_close,
1343 .ioctl = snd_pcm_lib_ioctl,
1344 .hw_params = snd_intel8x0_hw_params,
1345 .hw_free = snd_intel8x0_hw_free,
1346 .prepare = snd_intel8x0_pcm_prepare,
1347 .trigger = snd_intel8x0_pcm_trigger,
1348 .pointer = snd_intel8x0_pcm_pointer,
1349};
1350
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001351static struct snd_pcm_ops snd_intel8x0_capture2_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 .open = snd_intel8x0_capture2_open,
1353 .close = snd_intel8x0_capture2_close,
1354 .ioctl = snd_pcm_lib_ioctl,
1355 .hw_params = snd_intel8x0_hw_params,
1356 .hw_free = snd_intel8x0_hw_free,
1357 .prepare = snd_intel8x0_pcm_prepare,
1358 .trigger = snd_intel8x0_pcm_trigger,
1359 .pointer = snd_intel8x0_pcm_pointer,
1360};
1361
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001362static struct snd_pcm_ops snd_intel8x0_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 .open = snd_intel8x0_spdif_open,
1364 .close = snd_intel8x0_spdif_close,
1365 .ioctl = snd_pcm_lib_ioctl,
1366 .hw_params = snd_intel8x0_hw_params,
1367 .hw_free = snd_intel8x0_hw_free,
1368 .prepare = snd_intel8x0_pcm_prepare,
1369 .trigger = snd_intel8x0_pcm_trigger,
1370 .pointer = snd_intel8x0_pcm_pointer,
1371};
1372
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001373static struct snd_pcm_ops snd_intel8x0_ali_playback_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 .open = snd_intel8x0_playback_open,
1375 .close = snd_intel8x0_playback_close,
1376 .ioctl = snd_pcm_lib_ioctl,
1377 .hw_params = snd_intel8x0_hw_params,
1378 .hw_free = snd_intel8x0_hw_free,
1379 .prepare = snd_intel8x0_pcm_prepare,
1380 .trigger = snd_intel8x0_ali_trigger,
1381 .pointer = snd_intel8x0_pcm_pointer,
1382};
1383
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001384static struct snd_pcm_ops snd_intel8x0_ali_capture_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 .open = snd_intel8x0_capture_open,
1386 .close = snd_intel8x0_capture_close,
1387 .ioctl = snd_pcm_lib_ioctl,
1388 .hw_params = snd_intel8x0_hw_params,
1389 .hw_free = snd_intel8x0_hw_free,
1390 .prepare = snd_intel8x0_pcm_prepare,
1391 .trigger = snd_intel8x0_ali_trigger,
1392 .pointer = snd_intel8x0_pcm_pointer,
1393};
1394
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001395static struct snd_pcm_ops snd_intel8x0_ali_capture_mic_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 .open = snd_intel8x0_mic_open,
1397 .close = snd_intel8x0_mic_close,
1398 .ioctl = snd_pcm_lib_ioctl,
1399 .hw_params = snd_intel8x0_hw_params,
1400 .hw_free = snd_intel8x0_hw_free,
1401 .prepare = snd_intel8x0_pcm_prepare,
1402 .trigger = snd_intel8x0_ali_trigger,
1403 .pointer = snd_intel8x0_pcm_pointer,
1404};
1405
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001406static struct snd_pcm_ops snd_intel8x0_ali_ac97spdifout_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 .open = snd_intel8x0_ali_ac97spdifout_open,
1408 .close = snd_intel8x0_ali_ac97spdifout_close,
1409 .ioctl = snd_pcm_lib_ioctl,
1410 .hw_params = snd_intel8x0_hw_params,
1411 .hw_free = snd_intel8x0_hw_free,
1412 .prepare = snd_intel8x0_pcm_prepare,
1413 .trigger = snd_intel8x0_ali_trigger,
1414 .pointer = snd_intel8x0_pcm_pointer,
1415};
1416
Takashi Iwai1a183132006-04-18 21:23:47 +02001417#if 0 // NYI
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001418static struct snd_pcm_ops snd_intel8x0_ali_spdifin_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 .open = snd_intel8x0_ali_spdifin_open,
1420 .close = snd_intel8x0_ali_spdifin_close,
1421 .ioctl = snd_pcm_lib_ioctl,
1422 .hw_params = snd_intel8x0_hw_params,
1423 .hw_free = snd_intel8x0_hw_free,
1424 .prepare = snd_intel8x0_pcm_prepare,
1425 .trigger = snd_intel8x0_pcm_trigger,
1426 .pointer = snd_intel8x0_pcm_pointer,
1427};
1428
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001429static struct snd_pcm_ops snd_intel8x0_ali_spdifout_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 .open = snd_intel8x0_ali_spdifout_open,
1431 .close = snd_intel8x0_ali_spdifout_close,
1432 .ioctl = snd_pcm_lib_ioctl,
1433 .hw_params = snd_intel8x0_hw_params,
1434 .hw_free = snd_intel8x0_hw_free,
1435 .prepare = snd_intel8x0_pcm_prepare,
1436 .trigger = snd_intel8x0_pcm_trigger,
1437 .pointer = snd_intel8x0_pcm_pointer,
1438};
1439#endif // NYI
1440
1441struct ich_pcm_table {
1442 char *suffix;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001443 struct snd_pcm_ops *playback_ops;
1444 struct snd_pcm_ops *capture_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 size_t prealloc_size;
1446 size_t prealloc_max_size;
1447 int ac97_idx;
1448};
1449
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001450static int __devinit snd_intel8x0_pcm1(struct intel8x0 *chip, int device,
1451 struct ich_pcm_table *rec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001453 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 int err;
1455 char name[32];
1456
1457 if (rec->suffix)
1458 sprintf(name, "Intel ICH - %s", rec->suffix);
1459 else
1460 strcpy(name, "Intel ICH");
1461 err = snd_pcm_new(chip->card, name, device,
1462 rec->playback_ops ? 1 : 0,
1463 rec->capture_ops ? 1 : 0, &pcm);
1464 if (err < 0)
1465 return err;
1466
1467 if (rec->playback_ops)
1468 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, rec->playback_ops);
1469 if (rec->capture_ops)
1470 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, rec->capture_ops);
1471
1472 pcm->private_data = chip;
1473 pcm->info_flags = 0;
1474 if (rec->suffix)
1475 sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix);
1476 else
1477 strcpy(pcm->name, chip->card->shortname);
1478 chip->pcm[device] = pcm;
1479
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001480 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1481 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 rec->prealloc_size, rec->prealloc_max_size);
1483
1484 return 0;
1485}
1486
1487static struct ich_pcm_table intel_pcms[] __devinitdata = {
1488 {
1489 .playback_ops = &snd_intel8x0_playback_ops,
1490 .capture_ops = &snd_intel8x0_capture_ops,
1491 .prealloc_size = 64 * 1024,
1492 .prealloc_max_size = 128 * 1024,
1493 },
1494 {
1495 .suffix = "MIC ADC",
1496 .capture_ops = &snd_intel8x0_capture_mic_ops,
1497 .prealloc_size = 0,
1498 .prealloc_max_size = 128 * 1024,
1499 .ac97_idx = ICHD_MIC,
1500 },
1501 {
1502 .suffix = "MIC2 ADC",
1503 .capture_ops = &snd_intel8x0_capture_mic2_ops,
1504 .prealloc_size = 0,
1505 .prealloc_max_size = 128 * 1024,
1506 .ac97_idx = ICHD_MIC2,
1507 },
1508 {
1509 .suffix = "ADC2",
1510 .capture_ops = &snd_intel8x0_capture2_ops,
1511 .prealloc_size = 0,
1512 .prealloc_max_size = 128 * 1024,
1513 .ac97_idx = ICHD_PCM2IN,
1514 },
1515 {
1516 .suffix = "IEC958",
1517 .playback_ops = &snd_intel8x0_spdif_ops,
1518 .prealloc_size = 64 * 1024,
1519 .prealloc_max_size = 128 * 1024,
1520 .ac97_idx = ICHD_SPBAR,
1521 },
1522};
1523
1524static struct ich_pcm_table nforce_pcms[] __devinitdata = {
1525 {
1526 .playback_ops = &snd_intel8x0_playback_ops,
1527 .capture_ops = &snd_intel8x0_capture_ops,
1528 .prealloc_size = 64 * 1024,
1529 .prealloc_max_size = 128 * 1024,
1530 },
1531 {
1532 .suffix = "MIC ADC",
1533 .capture_ops = &snd_intel8x0_capture_mic_ops,
1534 .prealloc_size = 0,
1535 .prealloc_max_size = 128 * 1024,
1536 .ac97_idx = NVD_MIC,
1537 },
1538 {
1539 .suffix = "IEC958",
1540 .playback_ops = &snd_intel8x0_spdif_ops,
1541 .prealloc_size = 64 * 1024,
1542 .prealloc_max_size = 128 * 1024,
1543 .ac97_idx = NVD_SPBAR,
1544 },
1545};
1546
1547static struct ich_pcm_table ali_pcms[] __devinitdata = {
1548 {
1549 .playback_ops = &snd_intel8x0_ali_playback_ops,
1550 .capture_ops = &snd_intel8x0_ali_capture_ops,
1551 .prealloc_size = 64 * 1024,
1552 .prealloc_max_size = 128 * 1024,
1553 },
1554 {
1555 .suffix = "MIC ADC",
1556 .capture_ops = &snd_intel8x0_ali_capture_mic_ops,
1557 .prealloc_size = 0,
1558 .prealloc_max_size = 128 * 1024,
1559 .ac97_idx = ALID_MIC,
1560 },
1561 {
1562 .suffix = "IEC958",
1563 .playback_ops = &snd_intel8x0_ali_ac97spdifout_ops,
Takashi Iwai1a183132006-04-18 21:23:47 +02001564 /* .capture_ops = &snd_intel8x0_ali_spdifin_ops, */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 .prealloc_size = 64 * 1024,
1566 .prealloc_max_size = 128 * 1024,
1567 .ac97_idx = ALID_AC97SPDIFOUT,
1568 },
1569#if 0 // NYI
1570 {
1571 .suffix = "HW IEC958",
1572 .playback_ops = &snd_intel8x0_ali_spdifout_ops,
1573 .prealloc_size = 64 * 1024,
1574 .prealloc_max_size = 128 * 1024,
1575 },
1576#endif
1577};
1578
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001579static int __devinit snd_intel8x0_pcm(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580{
1581 int i, tblsize, device, err;
1582 struct ich_pcm_table *tbl, *rec;
1583
1584 switch (chip->device_type) {
1585 case DEVICE_INTEL_ICH4:
1586 tbl = intel_pcms;
1587 tblsize = ARRAY_SIZE(intel_pcms);
Takashi Iwaia9e99662006-11-24 15:42:07 +01001588 if (spdif_aclink)
1589 tblsize--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 break;
1591 case DEVICE_NFORCE:
1592 tbl = nforce_pcms;
1593 tblsize = ARRAY_SIZE(nforce_pcms);
Takashi Iwaia9e99662006-11-24 15:42:07 +01001594 if (spdif_aclink)
1595 tblsize--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 break;
1597 case DEVICE_ALI:
1598 tbl = ali_pcms;
1599 tblsize = ARRAY_SIZE(ali_pcms);
1600 break;
1601 default:
1602 tbl = intel_pcms;
1603 tblsize = 2;
1604 break;
1605 }
1606
1607 device = 0;
1608 for (i = 0; i < tblsize; i++) {
1609 rec = tbl + i;
1610 if (i > 0 && rec->ac97_idx) {
1611 /* activate PCM only when associated AC'97 codec */
1612 if (! chip->ichd[rec->ac97_idx].pcm)
1613 continue;
1614 }
1615 err = snd_intel8x0_pcm1(chip, device, rec);
1616 if (err < 0)
1617 return err;
1618 device++;
1619 }
1620
1621 chip->pcm_devs = device;
1622 return 0;
1623}
1624
1625
1626/*
1627 * Mixer part
1628 */
1629
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001630static void snd_intel8x0_mixer_free_ac97_bus(struct snd_ac97_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001632 struct intel8x0 *chip = bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 chip->ac97_bus = NULL;
1634}
1635
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001636static void snd_intel8x0_mixer_free_ac97(struct snd_ac97 *ac97)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01001638 struct intel8x0 *chip = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 chip->ac97[ac97->num] = NULL;
1640}
1641
1642static struct ac97_pcm ac97_pcm_defs[] __devinitdata = {
1643 /* front PCM */
1644 {
1645 .exclusive = 1,
1646 .r = { {
1647 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1648 (1 << AC97_SLOT_PCM_RIGHT) |
1649 (1 << AC97_SLOT_PCM_CENTER) |
1650 (1 << AC97_SLOT_PCM_SLEFT) |
1651 (1 << AC97_SLOT_PCM_SRIGHT) |
1652 (1 << AC97_SLOT_LFE)
1653 },
1654 {
1655 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1656 (1 << AC97_SLOT_PCM_RIGHT) |
1657 (1 << AC97_SLOT_PCM_LEFT_0) |
1658 (1 << AC97_SLOT_PCM_RIGHT_0)
1659 }
1660 }
1661 },
1662 /* PCM IN #1 */
1663 {
1664 .stream = 1,
1665 .exclusive = 1,
1666 .r = { {
1667 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1668 (1 << AC97_SLOT_PCM_RIGHT)
1669 }
1670 }
1671 },
1672 /* MIC IN #1 */
1673 {
1674 .stream = 1,
1675 .exclusive = 1,
1676 .r = { {
1677 .slots = (1 << AC97_SLOT_MIC)
1678 }
1679 }
1680 },
1681 /* S/PDIF PCM */
1682 {
1683 .exclusive = 1,
1684 .spdif = 1,
1685 .r = { {
1686 .slots = (1 << AC97_SLOT_SPDIF_LEFT2) |
1687 (1 << AC97_SLOT_SPDIF_RIGHT2)
1688 }
1689 }
1690 },
1691 /* PCM IN #2 */
1692 {
1693 .stream = 1,
1694 .exclusive = 1,
1695 .r = { {
1696 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1697 (1 << AC97_SLOT_PCM_RIGHT)
1698 }
1699 }
1700 },
1701 /* MIC IN #2 */
1702 {
1703 .stream = 1,
1704 .exclusive = 1,
1705 .r = { {
1706 .slots = (1 << AC97_SLOT_MIC)
1707 }
1708 }
1709 },
1710};
1711
1712static struct ac97_quirk ac97_quirks[] __devinitdata = {
1713 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001714 .subvendor = 0x0e11,
1715 .subdevice = 0x008a,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 .name = "Compaq Evo W4000", /* AD1885 */
1717 .type = AC97_TUNE_HP_ONLY
1718 },
1719 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001720 .subvendor = 0x0e11,
1721 .subdevice = 0x00b8,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 .name = "Compaq Evo D510C",
1723 .type = AC97_TUNE_HP_ONLY
1724 },
1725 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001726 .subvendor = 0x0e11,
1727 .subdevice = 0x0860,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 .name = "HP/Compaq nx7010",
1729 .type = AC97_TUNE_MUTE_LED
1730 },
1731 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001732 .subvendor = 0x1014,
1733 .subdevice = 0x1f00,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 .name = "MS-9128",
1735 .type = AC97_TUNE_ALC_JACK
1736 },
1737 {
Takashi Iwai5d529392005-09-01 13:56:23 +02001738 .subvendor = 0x1014,
1739 .subdevice = 0x0267,
1740 .name = "IBM NetVista A30p", /* AD1981B */
1741 .type = AC97_TUNE_HP_ONLY
1742 },
1743 {
Dick Streefland72c89862005-10-07 12:02:23 +02001744 .subvendor = 0x1025,
1745 .subdevice = 0x0083,
1746 .name = "Acer Aspire 3003LCi",
1747 .type = AC97_TUNE_HP_ONLY
1748 },
1749 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001750 .subvendor = 0x1028,
1751 .subdevice = 0x00d8,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 .name = "Dell Precision 530", /* AD1885 */
1753 .type = AC97_TUNE_HP_ONLY
1754 },
1755 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001756 .subvendor = 0x1028,
1757 .subdevice = 0x010d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 .name = "Dell", /* which model? AD1885 */
1759 .type = AC97_TUNE_HP_ONLY
1760 },
1761 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001762 .subvendor = 0x1028,
1763 .subdevice = 0x0126,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 .name = "Dell Optiplex GX260", /* AD1981A */
1765 .type = AC97_TUNE_HP_ONLY
1766 },
1767 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001768 .subvendor = 0x1028,
1769 .subdevice = 0x012c,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 .name = "Dell Precision 650", /* AD1981A */
1771 .type = AC97_TUNE_HP_ONLY
1772 },
1773 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001774 .subvendor = 0x1028,
1775 .subdevice = 0x012d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 .name = "Dell Precision 450", /* AD1981B*/
1777 .type = AC97_TUNE_HP_ONLY
1778 },
1779 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001780 .subvendor = 0x1028,
1781 .subdevice = 0x0147,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 .name = "Dell", /* which model? AD1981B*/
1783 .type = AC97_TUNE_HP_ONLY
1784 },
1785 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001786 .subvendor = 0x1028,
Chris Ballc9fe51c2006-01-13 13:26:42 +01001787 .subdevice = 0x0151,
1788 .name = "Dell Optiplex GX270", /* AD1981B */
1789 .type = AC97_TUNE_HP_ONLY
1790 },
1791 {
1792 .subvendor = 0x1028,
Daniel T Chen1781a9a2006-06-16 12:13:00 +02001793 .subdevice = 0x014e,
1794 .name = "Dell D800", /* STAC9750/51 */
1795 .type = AC97_TUNE_HP_ONLY
1796 },
1797 {
1798 .subvendor = 0x1028,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001799 .subdevice = 0x0163,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 .name = "Dell Unknown", /* STAC9750/51 */
1801 .type = AC97_TUNE_HP_ONLY
1802 },
1803 {
Karoly Lorentey6d6f9152005-10-25 11:50:25 +02001804 .subvendor = 0x1028,
Daniel T Chen8286c532007-05-15 11:46:23 +02001805 .subdevice = 0x0186,
1806 .name = "Dell Latitude D810", /* cf. Malone #41015 */
1807 .type = AC97_TUNE_HP_MUTE_LED
1808 },
1809 {
1810 .subvendor = 0x1028,
1811 .subdevice = 0x0188,
1812 .name = "Dell Inspiron 6000",
1813 .type = AC97_TUNE_HP_MUTE_LED /* cf. Malone #41015 */
1814 },
1815 {
1816 .subvendor = 0x1028,
Karoly Lorentey6d6f9152005-10-25 11:50:25 +02001817 .subdevice = 0x0191,
1818 .name = "Dell Inspiron 8600",
1819 .type = AC97_TUNE_HP_ONLY
1820 },
1821 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001822 .subvendor = 0x103c,
1823 .subdevice = 0x006d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 .name = "HP zv5000",
1825 .type = AC97_TUNE_MUTE_LED /*AD1981B*/
1826 },
1827 { /* FIXME: which codec? */
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001828 .subvendor = 0x103c,
1829 .subdevice = 0x00c3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 .name = "HP xw6000",
1831 .type = AC97_TUNE_HP_ONLY
1832 },
1833 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001834 .subvendor = 0x103c,
1835 .subdevice = 0x088c,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 .name = "HP nc8000",
Daniel T Chen8286c532007-05-15 11:46:23 +02001837 .type = AC97_TUNE_HP_MUTE_LED
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 },
1839 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001840 .subvendor = 0x103c,
1841 .subdevice = 0x0890,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 .name = "HP nc6000",
1843 .type = AC97_TUNE_MUTE_LED
1844 },
1845 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001846 .subvendor = 0x103c,
Daniel Horchnere0c93cf2005-08-25 13:02:24 +02001847 .subdevice = 0x0934,
1848 .name = "HP nx8220",
1849 .type = AC97_TUNE_MUTE_LED
1850 },
1851 {
1852 .subvendor = 0x103c,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001853 .subdevice = 0x129d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 .name = "HP xw8000",
1855 .type = AC97_TUNE_HP_ONLY
1856 },
1857 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001858 .subvendor = 0x103c,
Matthew Garretta0faefe2005-12-06 13:59:12 +01001859 .subdevice = 0x0938,
1860 .name = "HP nc4200",
1861 .type = AC97_TUNE_HP_MUTE_LED
1862 },
1863 {
1864 .subvendor = 0x103c,
1865 .subdevice = 0x099c,
Ulrich Muellerd82ed2f2006-01-04 12:21:11 +01001866 .name = "HP nx6110/nc6120",
Matthew Garretta0faefe2005-12-06 13:59:12 +01001867 .type = AC97_TUNE_HP_MUTE_LED
1868 },
1869 {
1870 .subvendor = 0x103c,
1871 .subdevice = 0x0944,
1872 .name = "HP nc6220",
1873 .type = AC97_TUNE_HP_MUTE_LED
1874 },
1875 {
1876 .subvendor = 0x103c,
1877 .subdevice = 0x0934,
1878 .name = "HP nc8220",
1879 .type = AC97_TUNE_HP_MUTE_LED
1880 },
1881 {
1882 .subvendor = 0x103c,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001883 .subdevice = 0x12f1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 .name = "HP xw8200", /* AD1981B*/
1885 .type = AC97_TUNE_HP_ONLY
1886 },
1887 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001888 .subvendor = 0x103c,
1889 .subdevice = 0x12f2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 .name = "HP xw6200",
1891 .type = AC97_TUNE_HP_ONLY
1892 },
1893 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001894 .subvendor = 0x103c,
1895 .subdevice = 0x3008,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 .name = "HP xw4200", /* AD1981B*/
1897 .type = AC97_TUNE_HP_ONLY
1898 },
1899 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001900 .subvendor = 0x104d,
1901 .subdevice = 0x8197,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 .name = "Sony S1XP",
1903 .type = AC97_TUNE_INV_EAPD
1904 },
1905 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001906 .subvendor = 0x1043,
1907 .subdevice = 0x80f3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 .name = "ASUS ICH5/AD1985",
1909 .type = AC97_TUNE_AD_SHARING
1910 },
1911 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001912 .subvendor = 0x10cf,
1913 .subdevice = 0x11c3,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 .name = "Fujitsu-Siemens E4010",
1915 .type = AC97_TUNE_HP_ONLY
1916 },
1917 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001918 .subvendor = 0x10cf,
Takashi Iwai98c7f212005-05-31 16:52:58 +02001919 .subdevice = 0x1225,
1920 .name = "Fujitsu-Siemens T3010",
1921 .type = AC97_TUNE_HP_ONLY
1922 },
1923 {
1924 .subvendor = 0x10cf,
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001925 .subdevice = 0x1253,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 .name = "Fujitsu S6210", /* STAC9750/51 */
1927 .type = AC97_TUNE_HP_ONLY
1928 },
1929 {
Takashi Iwai9970dce2005-08-25 20:30:27 +02001930 .subvendor = 0x10cf,
Daniel T Chen8286c532007-05-15 11:46:23 +02001931 .subdevice = 0x127e,
1932 .name = "Fujitsu Lifebook C1211D",
1933 .type = AC97_TUNE_HP_ONLY
1934 },
1935 {
1936 .subvendor = 0x10cf,
Takashi Iwai9970dce2005-08-25 20:30:27 +02001937 .subdevice = 0x12ec,
1938 .name = "Fujitsu-Siemens 4010",
1939 .type = AC97_TUNE_HP_ONLY
1940 },
1941 {
Jaroslav Kysela2eb061f2005-11-18 07:44:13 +01001942 .subvendor = 0x10cf,
1943 .subdevice = 0x12f2,
1944 .name = "Fujitsu-Siemens Celsius H320",
1945 .type = AC97_TUNE_SWAP_HP
1946 },
1947 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001948 .subvendor = 0x10f1,
1949 .subdevice = 0x2665,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 .name = "Fujitsu-Siemens Celsius", /* AD1981? */
1951 .type = AC97_TUNE_HP_ONLY
1952 },
1953 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001954 .subvendor = 0x10f1,
1955 .subdevice = 0x2885,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 .name = "AMD64 Mobo", /* ALC650 */
1957 .type = AC97_TUNE_HP_ONLY
1958 },
1959 {
Takashi Iwai4f42bcc2006-06-29 17:05:31 +02001960 .subvendor = 0x10f1,
1961 .subdevice = 0x2895,
1962 .name = "Tyan Thunder K8WE",
1963 .type = AC97_TUNE_HP_ONLY
1964 },
1965 {
Keith Packard6c504442006-10-24 13:34:11 -07001966 .subvendor = 0x10f7,
1967 .subdevice = 0x834c,
1968 .name = "Panasonic CF-R4",
1969 .type = AC97_TUNE_HP_ONLY,
1970 },
1971 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001972 .subvendor = 0x110a,
1973 .subdevice = 0x0056,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 .name = "Fujitsu-Siemens Scenic", /* AD1981? */
1975 .type = AC97_TUNE_HP_ONLY
1976 },
1977 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001978 .subvendor = 0x11d4,
1979 .subdevice = 0x5375,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 .name = "ADI AD1985 (discrete)",
1981 .type = AC97_TUNE_HP_ONLY
1982 },
1983 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001984 .subvendor = 0x1462,
1985 .subdevice = 0x5470,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 .name = "MSI P4 ATX 645 Ultra",
1987 .type = AC97_TUNE_HP_ONLY
1988 },
1989 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001990 .subvendor = 0x1734,
1991 .subdevice = 0x0088,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 .name = "Fujitsu-Siemens D1522", /* AD1981 */
1993 .type = AC97_TUNE_HP_ONLY
1994 },
1995 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02001996 .subvendor = 0x8086,
1997 .subdevice = 0x2000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 .mask = 0xfff0,
1999 .name = "Intel ICH5/AD1985",
2000 .type = AC97_TUNE_AD_SHARING
2001 },
2002 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002003 .subvendor = 0x8086,
2004 .subdevice = 0x4000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 .mask = 0xfff0,
2006 .name = "Intel ICH5/AD1985",
2007 .type = AC97_TUNE_AD_SHARING
2008 },
2009 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002010 .subvendor = 0x8086,
2011 .subdevice = 0x4856,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 .name = "Intel D845WN (82801BA)",
2013 .type = AC97_TUNE_SWAP_HP
2014 },
2015 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002016 .subvendor = 0x8086,
2017 .subdevice = 0x4d44,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 .name = "Intel D850EMV2", /* AD1885 */
2019 .type = AC97_TUNE_HP_ONLY
2020 },
2021 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002022 .subvendor = 0x8086,
2023 .subdevice = 0x4d56,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 .name = "Intel ICH/AD1885",
2025 .type = AC97_TUNE_HP_ONLY
2026 },
2027 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002028 .subvendor = 0x8086,
2029 .subdevice = 0x6000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 .mask = 0xfff0,
2031 .name = "Intel ICH5/AD1985",
2032 .type = AC97_TUNE_AD_SHARING
2033 },
2034 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002035 .subvendor = 0x8086,
2036 .subdevice = 0xe000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 .mask = 0xfff0,
2038 .name = "Intel ICH5/AD1985",
2039 .type = AC97_TUNE_AD_SHARING
2040 },
2041#if 0 /* FIXME: this seems wrong on most boards */
2042 {
James Courtier-Dutton6fd8b872005-05-30 17:20:19 +02002043 .subvendor = 0x8086,
2044 .subdevice = 0xa000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 .mask = 0xfff0,
2046 .name = "Intel ICH5/AD1985",
2047 .type = AC97_TUNE_HP_ONLY
2048 },
2049#endif
2050 { } /* terminator */
2051};
2052
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002053static int __devinit snd_intel8x0_mixer(struct intel8x0 *chip, int ac97_clock,
2054 const char *quirk_override)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002056 struct snd_ac97_bus *pbus;
2057 struct snd_ac97_template ac97;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 int err;
2059 unsigned int i, codecs;
2060 unsigned int glob_sta = 0;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002061 struct snd_ac97_bus_ops *ops;
2062 static struct snd_ac97_bus_ops standard_bus_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 .write = snd_intel8x0_codec_write,
2064 .read = snd_intel8x0_codec_read,
2065 };
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002066 static struct snd_ac97_bus_ops ali_bus_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 .write = snd_intel8x0_ali_codec_write,
2068 .read = snd_intel8x0_ali_codec_read,
2069 };
2070
2071 chip->spdif_idx = -1; /* use PCMOUT (or disabled) */
Takashi Iwaia9e99662006-11-24 15:42:07 +01002072 if (!spdif_aclink) {
2073 switch (chip->device_type) {
2074 case DEVICE_NFORCE:
2075 chip->spdif_idx = NVD_SPBAR;
2076 break;
2077 case DEVICE_ALI:
2078 chip->spdif_idx = ALID_AC97SPDIFOUT;
2079 break;
2080 case DEVICE_INTEL_ICH4:
2081 chip->spdif_idx = ICHD_SPBAR;
2082 break;
2083 };
2084 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
2086 chip->in_ac97_init = 1;
2087
2088 memset(&ac97, 0, sizeof(ac97));
2089 ac97.private_data = chip;
2090 ac97.private_free = snd_intel8x0_mixer_free_ac97;
Takashi Iwaif1a63a32006-10-24 18:25:29 +02002091 ac97.scaps = AC97_SCAP_SKIP_MODEM | AC97_SCAP_POWER_SAVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 if (chip->xbox)
2093 ac97.scaps |= AC97_SCAP_DETECT_BY_VENDOR;
2094 if (chip->device_type != DEVICE_ALI) {
2095 glob_sta = igetdword(chip, ICHREG(GLOB_STA));
2096 ops = &standard_bus_ops;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002097 chip->in_sdin_init = 1;
2098 codecs = 0;
2099 for (i = 0; i < chip->max_codecs; i++) {
2100 if (! (glob_sta & chip->codec_bit[i]))
2101 continue;
2102 if (chip->device_type == DEVICE_INTEL_ICH4) {
2103 snd_intel8x0_codec_read_test(chip, codecs);
2104 chip->ac97_sdin[codecs] =
2105 igetbyte(chip, ICHREG(SDM)) & ICH_LDI_MASK;
2106 snd_assert(chip->ac97_sdin[codecs] < 3,
2107 chip->ac97_sdin[codecs] = 0);
2108 } else
2109 chip->ac97_sdin[codecs] = i;
2110 codecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002112 chip->in_sdin_init = 0;
2113 if (! codecs)
2114 codecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 } else {
2116 ops = &ali_bus_ops;
2117 codecs = 1;
2118 /* detect the secondary codec */
2119 for (i = 0; i < 100; i++) {
2120 unsigned int reg = igetdword(chip, ICHREG(ALI_RTSR));
2121 if (reg & 0x40) {
2122 codecs = 2;
2123 break;
2124 }
2125 iputdword(chip, ICHREG(ALI_RTSR), reg | 0x40);
2126 udelay(1);
2127 }
2128 }
2129 if ((err = snd_ac97_bus(chip->card, 0, ops, chip, &pbus)) < 0)
2130 goto __err;
2131 pbus->private_free = snd_intel8x0_mixer_free_ac97_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 if (ac97_clock >= 8000 && ac97_clock <= 48000)
2133 pbus->clock = ac97_clock;
2134 /* FIXME: my test board doesn't work well with VRA... */
2135 if (chip->device_type == DEVICE_ALI)
2136 pbus->no_vra = 1;
2137 else
2138 pbus->dra = 1;
2139 chip->ac97_bus = pbus;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002140 chip->ncodecs = codecs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 ac97.pci = chip->pci;
2143 for (i = 0; i < codecs; i++) {
2144 ac97.num = i;
2145 if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97[i])) < 0) {
2146 if (err != -EACCES)
2147 snd_printk(KERN_ERR "Unable to initialize codec #%d\n", i);
2148 if (i == 0)
2149 goto __err;
2150 continue;
2151 }
2152 }
2153 /* tune up the primary codec */
2154 snd_ac97_tune_hardware(chip->ac97[0], ac97_quirks, quirk_override);
2155 /* enable separate SDINs for ICH4 */
2156 if (chip->device_type == DEVICE_INTEL_ICH4)
2157 pbus->isdin = 1;
2158 /* find the available PCM streams */
2159 i = ARRAY_SIZE(ac97_pcm_defs);
2160 if (chip->device_type != DEVICE_INTEL_ICH4)
2161 i -= 2; /* do not allocate PCM2IN and MIC2 */
2162 if (chip->spdif_idx < 0)
2163 i--; /* do not allocate S/PDIF */
2164 err = snd_ac97_pcm_assign(pbus, i, ac97_pcm_defs);
2165 if (err < 0)
2166 goto __err;
2167 chip->ichd[ICHD_PCMOUT].pcm = &pbus->pcms[0];
2168 chip->ichd[ICHD_PCMIN].pcm = &pbus->pcms[1];
2169 chip->ichd[ICHD_MIC].pcm = &pbus->pcms[2];
2170 if (chip->spdif_idx >= 0)
2171 chip->ichd[chip->spdif_idx].pcm = &pbus->pcms[3];
2172 if (chip->device_type == DEVICE_INTEL_ICH4) {
2173 chip->ichd[ICHD_PCM2IN].pcm = &pbus->pcms[4];
2174 chip->ichd[ICHD_MIC2].pcm = &pbus->pcms[5];
2175 }
2176 /* enable separate SDINs for ICH4 */
2177 if (chip->device_type == DEVICE_INTEL_ICH4) {
2178 struct ac97_pcm *pcm = chip->ichd[ICHD_PCM2IN].pcm;
2179 u8 tmp = igetbyte(chip, ICHREG(SDM));
2180 tmp &= ~(ICH_DI2L_MASK|ICH_DI1L_MASK);
2181 if (pcm) {
2182 tmp |= ICH_SE; /* steer enable for multiple SDINs */
2183 tmp |= chip->ac97_sdin[0] << ICH_DI1L_SHIFT;
2184 for (i = 1; i < 4; i++) {
2185 if (pcm->r[0].codec[i]) {
2186 tmp |= chip->ac97_sdin[pcm->r[0].codec[1]->num] << ICH_DI2L_SHIFT;
2187 break;
2188 }
2189 }
2190 } else {
2191 tmp &= ~ICH_SE; /* steer disable */
2192 }
2193 iputbyte(chip, ICHREG(SDM), tmp);
2194 }
2195 if (pbus->pcms[0].r[0].slots & (1 << AC97_SLOT_PCM_SLEFT)) {
2196 chip->multi4 = 1;
2197 if (pbus->pcms[0].r[0].slots & (1 << AC97_SLOT_LFE))
2198 chip->multi6 = 1;
2199 }
2200 if (pbus->pcms[0].r[1].rslots[0]) {
2201 chip->dra = 1;
2202 }
2203 if (chip->device_type == DEVICE_INTEL_ICH4) {
2204 if ((igetdword(chip, ICHREG(GLOB_STA)) & ICH_SAMPLE_CAP) == ICH_SAMPLE_16_20)
2205 chip->smp20bit = 1;
2206 }
Takashi Iwaia9e99662006-11-24 15:42:07 +01002207 if (chip->device_type == DEVICE_NFORCE && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 /* 48kHz only */
2209 chip->ichd[chip->spdif_idx].pcm->rates = SNDRV_PCM_RATE_48000;
2210 }
Takashi Iwaia9e99662006-11-24 15:42:07 +01002211 if (chip->device_type == DEVICE_INTEL_ICH4 && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 /* use slot 10/11 for SPDIF */
2213 u32 val;
2214 val = igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_PCM_SPDIF_MASK;
2215 val |= ICH_PCM_SPDIF_1011;
2216 iputdword(chip, ICHREG(GLOB_CNT), val);
2217 snd_ac97_update_bits(chip->ac97[0], AC97_EXTENDED_STATUS, 0x03 << 4, 0x03 << 4);
2218 }
2219 chip->in_ac97_init = 0;
2220 return 0;
2221
2222 __err:
2223 /* clear the cold-reset bit for the next chance */
2224 if (chip->device_type != DEVICE_ALI)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002225 iputdword(chip, ICHREG(GLOB_CNT),
2226 igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_AC97COLD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 return err;
2228}
2229
2230
2231/*
2232 *
2233 */
2234
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002235static void do_ali_reset(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
2237 iputdword(chip, ICHREG(ALI_SCR), ICH_ALI_SC_RESET);
2238 iputdword(chip, ICHREG(ALI_FIFOCR1), 0x83838383);
2239 iputdword(chip, ICHREG(ALI_FIFOCR2), 0x83838383);
2240 iputdword(chip, ICHREG(ALI_FIFOCR3), 0x83838383);
2241 iputdword(chip, ICHREG(ALI_INTERFACECR),
Wei Nid78bec22005-10-24 11:04:51 +02002242 ICH_ALI_IF_PI|ICH_ALI_IF_PO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 iputdword(chip, ICHREG(ALI_INTERRUPTCR), 0x00000000);
2244 iputdword(chip, ICHREG(ALI_INTERRUPTSR), 0x00000000);
2245}
2246
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002247static int snd_intel8x0_ich_chip_init(struct intel8x0 *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248{
2249 unsigned long end_time;
2250 unsigned int cnt, status, nstatus;
2251
2252 /* put logic to right state */
2253 /* first clear status bits */
2254 status = ICH_RCS | ICH_MCINT | ICH_POINT | ICH_PIINT;
2255 if (chip->device_type == DEVICE_NFORCE)
2256 status |= ICH_NVSPINT;
2257 cnt = igetdword(chip, ICHREG(GLOB_STA));
2258 iputdword(chip, ICHREG(GLOB_STA), cnt & status);
2259
2260 /* ACLink on, 2 channels */
2261 cnt = igetdword(chip, ICHREG(GLOB_CNT));
2262 cnt &= ~(ICH_ACLINK | ICH_PCM_246_MASK);
Takashi Iwai6dbe6622006-06-27 18:28:53 +02002263#ifdef CONFIG_SND_AC97_POWER_SAVE
2264 /* do cold reset - the full ac97 powerdown may leave the controller
2265 * in a warm state but actually it cannot communicate with the codec.
2266 */
2267 iputdword(chip, ICHREG(GLOB_CNT), cnt & ~ICH_AC97COLD);
2268 cnt = igetdword(chip, ICHREG(GLOB_CNT));
2269 udelay(10);
2270 iputdword(chip, ICHREG(GLOB_CNT), cnt | ICH_AC97COLD);
2271 msleep(1);
2272#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 /* finish cold or do warm reset */
2274 cnt |= (cnt & ICH_AC97COLD) == 0 ? ICH_AC97COLD : ICH_AC97WARM;
2275 iputdword(chip, ICHREG(GLOB_CNT), cnt);
2276 end_time = (jiffies + (HZ / 4)) + 1;
2277 do {
2278 if ((igetdword(chip, ICHREG(GLOB_CNT)) & ICH_AC97WARM) == 0)
2279 goto __ok;
Takashi Iwai954bea32005-11-17 10:37:40 +01002280 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 } while (time_after_eq(end_time, jiffies));
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002282 snd_printk(KERN_ERR "AC'97 warm reset still in progress? [0x%x]\n",
2283 igetdword(chip, ICHREG(GLOB_CNT)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 return -EIO;
2285
2286 __ok:
Takashi Iwai6dbe6622006-06-27 18:28:53 +02002287#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if (probing) {
2289 /* wait for any codec ready status.
2290 * Once it becomes ready it should remain ready
2291 * as long as we do not disable the ac97 link.
2292 */
2293 end_time = jiffies + HZ;
2294 do {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002295 status = igetdword(chip, ICHREG(GLOB_STA)) &
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002296 chip->codec_isr_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (status)
2298 break;
Takashi Iwai954bea32005-11-17 10:37:40 +01002299 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 } while (time_after_eq(end_time, jiffies));
2301 if (! status) {
2302 /* no codec is found */
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002303 snd_printk(KERN_ERR "codec_ready: codec is not ready [0x%x]\n",
2304 igetdword(chip, ICHREG(GLOB_STA)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 return -EIO;
2306 }
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 /* wait for other codecs ready status. */
2309 end_time = jiffies + HZ / 4;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002310 while (status != chip->codec_isr_bits &&
2311 time_after_eq(end_time, jiffies)) {
Takashi Iwai954bea32005-11-17 10:37:40 +01002312 schedule_timeout_uninterruptible(1);
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002313 status |= igetdword(chip, ICHREG(GLOB_STA)) &
2314 chip->codec_isr_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 }
2316
2317 } else {
2318 /* resume phase */
2319 int i;
2320 status = 0;
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002321 for (i = 0; i < chip->ncodecs; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 if (chip->ac97[i])
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002323 status |= chip->codec_bit[chip->ac97_sdin[i]];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 /* wait until all the probed codecs are ready */
2325 end_time = jiffies + HZ;
2326 do {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002327 nstatus = igetdword(chip, ICHREG(GLOB_STA)) &
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002328 chip->codec_isr_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 if (status == nstatus)
2330 break;
Takashi Iwai954bea32005-11-17 10:37:40 +01002331 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 } while (time_after_eq(end_time, jiffies));
2333 }
2334
2335 if (chip->device_type == DEVICE_SIS) {
2336 /* unmute the output on SIS7012 */
2337 iputword(chip, 0x4c, igetword(chip, 0x4c) | 1);
2338 }
Takashi Iwaia9e99662006-11-24 15:42:07 +01002339 if (chip->device_type == DEVICE_NFORCE && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 /* enable SPDIF interrupt */
2341 unsigned int val;
2342 pci_read_config_dword(chip->pci, 0x4c, &val);
2343 val |= 0x1000000;
2344 pci_write_config_dword(chip->pci, 0x4c, val);
2345 }
2346 return 0;
2347}
2348
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002349static int snd_intel8x0_ali_chip_init(struct intel8x0 *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
2351 u32 reg;
2352 int i = 0;
2353
2354 reg = igetdword(chip, ICHREG(ALI_SCR));
2355 if ((reg & 2) == 0) /* Cold required */
2356 reg |= 2;
2357 else
2358 reg |= 1; /* Warm */
2359 reg &= ~0x80000000; /* ACLink on */
2360 iputdword(chip, ICHREG(ALI_SCR), reg);
2361
2362 for (i = 0; i < HZ / 2; i++) {
2363 if (! (igetdword(chip, ICHREG(ALI_INTERRUPTSR)) & ALI_INT_GPIO))
2364 goto __ok;
Takashi Iwai954bea32005-11-17 10:37:40 +01002365 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367 snd_printk(KERN_ERR "AC'97 reset failed.\n");
2368 if (probing)
2369 return -EIO;
2370
2371 __ok:
2372 for (i = 0; i < HZ / 2; i++) {
2373 reg = igetdword(chip, ICHREG(ALI_RTSR));
2374 if (reg & 0x80) /* primary codec */
2375 break;
2376 iputdword(chip, ICHREG(ALI_RTSR), reg | 0x80);
Takashi Iwai954bea32005-11-17 10:37:40 +01002377 schedule_timeout_uninterruptible(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
2379
2380 do_ali_reset(chip);
2381 return 0;
2382}
2383
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002384static int snd_intel8x0_chip_init(struct intel8x0 *chip, int probing)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
Jaroslav Kysela253b9992006-02-15 13:31:23 +01002386 unsigned int i, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 int err;
2388
2389 if (chip->device_type != DEVICE_ALI) {
2390 if ((err = snd_intel8x0_ich_chip_init(chip, probing)) < 0)
2391 return err;
2392 iagetword(chip, 0); /* clear semaphore flag */
2393 } else {
2394 if ((err = snd_intel8x0_ali_chip_init(chip, probing)) < 0)
2395 return err;
2396 }
2397
2398 /* disable interrupts */
2399 for (i = 0; i < chip->bdbars_count; i++)
2400 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
2401 /* reset channels */
2402 for (i = 0; i < chip->bdbars_count; i++)
2403 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
Jaroslav Kysela253b9992006-02-15 13:31:23 +01002404 for (i = 0; i < chip->bdbars_count; i++) {
2405 timeout = 100000;
2406 while (--timeout != 0) {
2407 if ((igetbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset) & ICH_RESETREGS) == 0)
2408 break;
2409 }
2410 if (timeout == 0)
2411 printk(KERN_ERR "intel8x0: reset of registers failed?\n");
2412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 /* initialize Buffer Descriptor Lists */
2414 for (i = 0; i < chip->bdbars_count; i++)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002415 iputdword(chip, ICH_REG_OFF_BDBAR + chip->ichd[i].reg_offset,
2416 chip->ichd[i].bdbar_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 return 0;
2418}
2419
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002420static int snd_intel8x0_free(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421{
2422 unsigned int i;
2423
2424 if (chip->irq < 0)
2425 goto __hw_end;
2426 /* disable interrupts */
2427 for (i = 0; i < chip->bdbars_count; i++)
2428 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
2429 /* reset channels */
2430 for (i = 0; i < chip->bdbars_count; i++)
2431 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
Takashi Iwaia9e99662006-11-24 15:42:07 +01002432 if (chip->device_type == DEVICE_NFORCE && !spdif_aclink) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 /* stop the spdif interrupt */
2434 unsigned int val;
2435 pci_read_config_dword(chip->pci, 0x4c, &val);
2436 val &= ~0x1000000;
2437 pci_write_config_dword(chip->pci, 0x4c, val);
2438 }
2439 /* --- */
2440 synchronize_irq(chip->irq);
2441 __hw_end:
2442 if (chip->irq >= 0)
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002443 free_irq(chip->irq, chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 if (chip->bdbars.area) {
2445 if (chip->fix_nocache)
2446 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 0);
2447 snd_dma_free_pages(&chip->bdbars);
2448 }
Takashi Iwai3388c372006-10-06 17:06:39 +02002449 if (chip->addr)
2450 pci_iounmap(chip->pci, chip->addr);
2451 if (chip->bmaddr)
2452 pci_iounmap(chip->pci, chip->bmaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 pci_release_regions(chip->pci);
2454 pci_disable_device(chip->pci);
2455 kfree(chip);
2456 return 0;
2457}
2458
2459#ifdef CONFIG_PM
2460/*
2461 * power management
2462 */
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002463static int intel8x0_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464{
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002465 struct snd_card *card = pci_get_drvdata(pci);
2466 struct intel8x0 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 int i;
2468
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002469 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 for (i = 0; i < chip->pcm_devs; i++)
2471 snd_pcm_suspend_all(chip->pcm[i]);
2472 /* clear nocache */
2473 if (chip->fix_nocache) {
2474 for (i = 0; i < chip->bdbars_count; i++) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002475 struct ichdev *ichdev = &chip->ichd[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (ichdev->substream && ichdev->page_attr_changed) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002477 struct snd_pcm_runtime *runtime = ichdev->substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 if (runtime->dma_area)
2479 fill_nocache(runtime->dma_area, runtime->dma_bytes, 0);
2480 }
2481 }
2482 }
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002483 for (i = 0; i < chip->ncodecs; i++)
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002484 snd_ac97_suspend(chip->ac97[i]);
Takashi Iwai52b72382005-06-30 13:47:06 +02002485 if (chip->device_type == DEVICE_INTEL_ICH4)
2486 chip->sdm_saved = igetbyte(chip, ICHREG(SDM));
Len Brownadbedd32005-07-30 01:55:32 -04002487
Takashi Iwai30b35392006-10-11 18:52:53 +02002488 if (chip->irq >= 0) {
2489 synchronize_irq(chip->irq);
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002490 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002491 chip->irq = -1;
2492 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002493 pci_disable_device(pci);
2494 pci_save_state(pci);
Tommi Kyntola19bfafb2007-03-09 16:15:06 +01002495 /* The call below may disable built-in speaker on some laptops
2496 * after S2RAM. So, don't touch it.
2497 */
2498 /* pci_set_power_state(pci, pci_choose_state(pci, state)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 return 0;
2500}
2501
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002502static int intel8x0_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002504 struct snd_card *card = pci_get_drvdata(pci);
2505 struct intel8x0 *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 int i;
2507
Takashi Iwai30b35392006-10-11 18:52:53 +02002508 pci_set_power_state(pci, PCI_D0);
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002509 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002510 if (pci_enable_device(pci) < 0) {
2511 printk(KERN_ERR "intel8x0: pci_enable_device failed, "
2512 "disabling device\n");
2513 snd_card_disconnect(card);
2514 return -EIO;
2515 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002516 pci_set_master(pci);
Takashi Iwai2078f382007-04-20 12:30:28 +02002517 snd_intel8x0_chip_init(chip, 0);
Takashi Iwai30b35392006-10-11 18:52:53 +02002518 if (request_irq(pci->irq, snd_intel8x0_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002519 IRQF_SHARED, card->shortname, chip)) {
Takashi Iwai30b35392006-10-11 18:52:53 +02002520 printk(KERN_ERR "intel8x0: unable to grab IRQ %d, "
2521 "disabling device\n", pci->irq);
2522 snd_card_disconnect(card);
2523 return -EIO;
2524 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002525 chip->irq = pci->irq;
Rafael J. Wysocki90158b82005-07-24 14:22:00 -04002526 synchronize_irq(chip->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Takashi Iwai52b72382005-06-30 13:47:06 +02002528 /* re-initialize mixer stuff */
Takashi Iwaia9e99662006-11-24 15:42:07 +01002529 if (chip->device_type == DEVICE_INTEL_ICH4 && !spdif_aclink) {
Takashi Iwai52b72382005-06-30 13:47:06 +02002530 /* enable separate SDINs for ICH4 */
2531 iputbyte(chip, ICHREG(SDM), chip->sdm_saved);
2532 /* use slot 10/11 for SPDIF */
2533 iputdword(chip, ICHREG(GLOB_CNT),
2534 (igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_PCM_SPDIF_MASK) |
2535 ICH_PCM_SPDIF_1011);
2536 }
2537
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 /* refill nocache */
2539 if (chip->fix_nocache)
2540 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 1);
2541
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002542 for (i = 0; i < chip->ncodecs; i++)
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002543 snd_ac97_resume(chip->ac97[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
2545 /* refill nocache */
2546 if (chip->fix_nocache) {
2547 for (i = 0; i < chip->bdbars_count; i++) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002548 struct ichdev *ichdev = &chip->ichd[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 if (ichdev->substream && ichdev->page_attr_changed) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002550 struct snd_pcm_runtime *runtime = ichdev->substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if (runtime->dma_area)
2552 fill_nocache(runtime->dma_area, runtime->dma_bytes, 1);
2553 }
2554 }
2555 }
2556
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02002557 /* resume status */
2558 for (i = 0; i < chip->bdbars_count; i++) {
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002559 struct ichdev *ichdev = &chip->ichd[i];
Takashi Iwai1cfe43d2005-08-16 16:52:24 +02002560 unsigned long port = ichdev->reg_offset;
2561 if (! ichdev->substream || ! ichdev->suspended)
2562 continue;
2563 if (ichdev->ichd == ICHD_PCMOUT)
2564 snd_intel8x0_setup_pcm_out(chip, ichdev->substream->runtime);
2565 iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);
2566 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
2567 iputbyte(chip, port + ICH_REG_OFF_CIV, ichdev->civ);
2568 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
2569 }
2570
Takashi Iwai5809c6c2005-11-17 16:10:01 +01002571 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return 0;
2573}
2574#endif /* CONFIG_PM */
2575
2576#define INTEL8X0_TESTBUF_SIZE 32768 /* enough large for one shot */
2577
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002578static void __devinit intel8x0_measure_ac97_clock(struct intel8x0 *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002580 struct snd_pcm_substream *subs;
2581 struct ichdev *ichdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 unsigned long port;
2583 unsigned long pos, t;
2584 struct timeval start_time, stop_time;
2585
2586 if (chip->ac97_bus->clock != 48000)
2587 return; /* specified in module option */
2588
2589 subs = chip->pcm[0]->streams[0].substream;
2590 if (! subs || subs->dma_buffer.bytes < INTEL8X0_TESTBUF_SIZE) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002591 snd_printk(KERN_WARNING "no playback buffer allocated - aborting measure ac97 clock\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 return;
2593 }
2594 ichdev = &chip->ichd[ICHD_PCMOUT];
2595 ichdev->physbuf = subs->dma_buffer.addr;
2596 ichdev->size = chip->ichd[ICHD_PCMOUT].fragsize = INTEL8X0_TESTBUF_SIZE;
2597 ichdev->substream = NULL; /* don't process interrupts */
2598
2599 /* set rate */
2600 if (snd_ac97_set_rate(chip->ac97[0], AC97_PCM_FRONT_DAC_RATE, 48000) < 0) {
2601 snd_printk(KERN_ERR "cannot set ac97 rate: clock = %d\n", chip->ac97_bus->clock);
2602 return;
2603 }
2604 snd_intel8x0_setup_periods(chip, ichdev);
2605 port = ichdev->reg_offset;
2606 spin_lock_irq(&chip->reg_lock);
2607 chip->in_measurement = 1;
2608 /* trigger */
2609 if (chip->device_type != DEVICE_ALI)
2610 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE | ICH_STARTBM);
2611 else {
2612 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE);
2613 iputdword(chip, ICHREG(ALI_DMACR), 1 << ichdev->ali_slot);
2614 }
2615 do_gettimeofday(&start_time);
2616 spin_unlock_irq(&chip->reg_lock);
Nishanth Aravamudanef21ca22005-07-09 10:13:22 +02002617 msleep(50);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 spin_lock_irq(&chip->reg_lock);
2619 /* check the position */
2620 pos = ichdev->fragsize1;
2621 pos -= igetword(chip, ichdev->reg_offset + ichdev->roff_picb) << ichdev->pos_shift;
2622 pos += ichdev->position;
2623 chip->in_measurement = 0;
2624 do_gettimeofday(&stop_time);
2625 /* stop */
2626 if (chip->device_type == DEVICE_ALI) {
Wei Nid78bec22005-10-24 11:04:51 +02002627 iputdword(chip, ICHREG(ALI_DMACR), 1 << (ichdev->ali_slot + 16));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
2629 while (igetbyte(chip, port + ICH_REG_OFF_CR))
2630 ;
2631 } else {
2632 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
2633 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH))
2634 ;
2635 }
2636 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
2637 spin_unlock_irq(&chip->reg_lock);
2638
2639 t = stop_time.tv_sec - start_time.tv_sec;
2640 t *= 1000000;
2641 t += stop_time.tv_usec - start_time.tv_usec;
2642 printk(KERN_INFO "%s: measured %lu usecs\n", __FUNCTION__, t);
2643 if (t == 0) {
2644 snd_printk(KERN_ERR "?? calculation error..\n");
2645 return;
2646 }
2647 pos = (pos / 4) * 1000;
2648 pos = (pos / t) * 1000 + ((pos % t) * 1000) / t;
2649 if (pos < 40000 || pos >= 60000)
2650 /* abnormal value. hw problem? */
2651 printk(KERN_INFO "intel8x0: measured clock %ld rejected\n", pos);
2652 else if (pos < 47500 || pos > 48500)
2653 /* not 48000Hz, tuning the clock.. */
2654 chip->ac97_bus->clock = (chip->ac97_bus->clock * 48000) / pos;
2655 printk(KERN_INFO "intel8x0: clocking to %d\n", chip->ac97_bus->clock);
Takashi Iwai6dbe6622006-06-27 18:28:53 +02002656 snd_ac97_update_power(chip->ac97[0], AC97_PCM_FRONT_DAC_RATE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657}
2658
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01002659#ifdef CONFIG_PROC_FS
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002660static void snd_intel8x0_proc_read(struct snd_info_entry * entry,
2661 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002663 struct intel8x0 *chip = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 unsigned int tmp;
2665
2666 snd_iprintf(buffer, "Intel8x0\n\n");
2667 if (chip->device_type == DEVICE_ALI)
2668 return;
2669 tmp = igetdword(chip, ICHREG(GLOB_STA));
2670 snd_iprintf(buffer, "Global control : 0x%08x\n", igetdword(chip, ICHREG(GLOB_CNT)));
2671 snd_iprintf(buffer, "Global status : 0x%08x\n", tmp);
2672 if (chip->device_type == DEVICE_INTEL_ICH4)
2673 snd_iprintf(buffer, "SDM : 0x%08x\n", igetdword(chip, ICHREG(SDM)));
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002674 snd_iprintf(buffer, "AC'97 codecs ready :");
2675 if (tmp & chip->codec_isr_bits) {
2676 int i;
2677 static const char *codecs[3] = {
2678 "primary", "secondary", "tertiary"
2679 };
2680 for (i = 0; i < chip->max_codecs; i++)
2681 if (tmp & chip->codec_bit[i])
2682 snd_iprintf(buffer, " %s", codecs[i]);
2683 } else
2684 snd_iprintf(buffer, " none");
2685 snd_iprintf(buffer, "\n");
2686 if (chip->device_type == DEVICE_INTEL_ICH4 ||
2687 chip->device_type == DEVICE_SIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 snd_iprintf(buffer, "AC'97 codecs SDIN : %i %i %i\n",
2689 chip->ac97_sdin[0],
2690 chip->ac97_sdin[1],
2691 chip->ac97_sdin[2]);
2692}
2693
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002694static void __devinit snd_intel8x0_proc_init(struct intel8x0 * chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002696 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
2698 if (! snd_card_proc_new(chip->card, "intel8x0", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02002699 snd_info_set_text_ops(entry, chip, snd_intel8x0_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01002701#else
2702#define snd_intel8x0_proc_init(x)
2703#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002705static int snd_intel8x0_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002707 struct intel8x0 *chip = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return snd_intel8x0_free(chip);
2709}
2710
2711struct ich_reg_info {
2712 unsigned int int_sta_mask;
2713 unsigned int offset;
2714};
2715
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002716static unsigned int ich_codec_bits[3] = {
2717 ICH_PCR, ICH_SCR, ICH_TCR
2718};
2719static unsigned int sis_codec_bits[3] = {
2720 ICH_PCR, ICH_SCR, ICH_SIS_TCR
2721};
2722
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002723static int __devinit snd_intel8x0_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 struct pci_dev *pci,
2725 unsigned long device_type,
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002726 struct intel8x0 ** r_intel8x0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002728 struct intel8x0 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 int err;
2730 unsigned int i;
2731 unsigned int int_sta_masks;
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002732 struct ichdev *ichdev;
2733 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 .dev_free = snd_intel8x0_dev_free,
2735 };
2736
2737 static unsigned int bdbars[] = {
2738 3, /* DEVICE_INTEL */
2739 6, /* DEVICE_INTEL_ICH4 */
2740 3, /* DEVICE_SIS */
2741 6, /* DEVICE_ALI */
2742 4, /* DEVICE_NFORCE */
2743 };
2744 static struct ich_reg_info intel_regs[6] = {
2745 { ICH_PIINT, 0 },
2746 { ICH_POINT, 0x10 },
2747 { ICH_MCINT, 0x20 },
2748 { ICH_M2INT, 0x40 },
2749 { ICH_P2INT, 0x50 },
2750 { ICH_SPINT, 0x60 },
2751 };
2752 static struct ich_reg_info nforce_regs[4] = {
2753 { ICH_PIINT, 0 },
2754 { ICH_POINT, 0x10 },
2755 { ICH_MCINT, 0x20 },
2756 { ICH_NVSPINT, 0x70 },
2757 };
2758 static struct ich_reg_info ali_regs[6] = {
2759 { ALI_INT_PCMIN, 0x40 },
2760 { ALI_INT_PCMOUT, 0x50 },
2761 { ALI_INT_MICIN, 0x60 },
2762 { ALI_INT_CODECSPDIFOUT, 0x70 },
2763 { ALI_INT_SPDIFIN, 0xa0 },
2764 { ALI_INT_SPDIFOUT, 0xb0 },
2765 };
2766 struct ich_reg_info *tbl;
2767
2768 *r_intel8x0 = NULL;
2769
2770 if ((err = pci_enable_device(pci)) < 0)
2771 return err;
2772
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002773 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 if (chip == NULL) {
2775 pci_disable_device(pci);
2776 return -ENOMEM;
2777 }
2778 spin_lock_init(&chip->reg_lock);
2779 chip->device_type = device_type;
2780 chip->card = card;
2781 chip->pci = pci;
2782 chip->irq = -1;
Takashi Iwaic829b052005-10-18 18:03:35 +02002783
2784 /* module parameters */
2785 chip->buggy_irq = buggy_irq;
2786 chip->buggy_semaphore = buggy_semaphore;
2787 if (xbox)
2788 chip->xbox = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
2790 if (pci->vendor == PCI_VENDOR_ID_INTEL &&
2791 pci->device == PCI_DEVICE_ID_INTEL_440MX)
2792 chip->fix_nocache = 1; /* enable workaround */
2793
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 if ((err = pci_request_regions(pci, card->shortname)) < 0) {
2795 kfree(chip);
2796 pci_disable_device(pci);
2797 return err;
2798 }
2799
2800 if (device_type == DEVICE_ALI) {
2801 /* ALI5455 has no ac97 region */
Takashi Iwai3388c372006-10-06 17:06:39 +02002802 chip->bmaddr = pci_iomap(pci, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 goto port_inited;
2804 }
2805
Takashi Iwai3388c372006-10-06 17:06:39 +02002806 if (pci_resource_flags(pci, 2) & IORESOURCE_MEM) /* ICH4 and Nforce */
2807 chip->addr = pci_iomap(pci, 2, 0);
2808 else
2809 chip->addr = pci_iomap(pci, 0, 0);
2810 if (!chip->addr) {
2811 snd_printk(KERN_ERR "AC'97 space ioremap problem\n");
2812 snd_intel8x0_free(chip);
2813 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 }
Takashi Iwai3388c372006-10-06 17:06:39 +02002815 if (pci_resource_flags(pci, 3) & IORESOURCE_MEM) /* ICH4 */
2816 chip->bmaddr = pci_iomap(pci, 3, 0);
2817 else
2818 chip->bmaddr = pci_iomap(pci, 1, 0);
2819 if (!chip->bmaddr) {
2820 snd_printk(KERN_ERR "Controller space ioremap problem\n");
2821 snd_intel8x0_free(chip);
2822 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 }
2824
2825 port_inited:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 chip->bdbars_count = bdbars[device_type];
2827
2828 /* initialize offsets */
2829 switch (device_type) {
2830 case DEVICE_NFORCE:
2831 tbl = nforce_regs;
2832 break;
2833 case DEVICE_ALI:
2834 tbl = ali_regs;
2835 break;
2836 default:
2837 tbl = intel_regs;
2838 break;
2839 }
2840 for (i = 0; i < chip->bdbars_count; i++) {
2841 ichdev = &chip->ichd[i];
2842 ichdev->ichd = i;
2843 ichdev->reg_offset = tbl[i].offset;
2844 ichdev->int_sta_mask = tbl[i].int_sta_mask;
2845 if (device_type == DEVICE_SIS) {
2846 /* SiS 7012 swaps the registers */
2847 ichdev->roff_sr = ICH_REG_OFF_PICB;
2848 ichdev->roff_picb = ICH_REG_OFF_SR;
2849 } else {
2850 ichdev->roff_sr = ICH_REG_OFF_SR;
2851 ichdev->roff_picb = ICH_REG_OFF_PICB;
2852 }
2853 if (device_type == DEVICE_ALI)
2854 ichdev->ali_slot = (ichdev->reg_offset - 0x40) / 0x10;
2855 /* SIS7012 handles the pcm data in bytes, others are in samples */
2856 ichdev->pos_shift = (device_type == DEVICE_SIS) ? 0 : 1;
2857 }
2858
2859 /* allocate buffer descriptor lists */
2860 /* the start of each lists must be aligned to 8 bytes */
2861 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
2862 chip->bdbars_count * sizeof(u32) * ICH_MAX_FRAGS * 2,
2863 &chip->bdbars) < 0) {
2864 snd_intel8x0_free(chip);
2865 snd_printk(KERN_ERR "intel8x0: cannot allocate buffer descriptors\n");
2866 return -ENOMEM;
2867 }
2868 /* tables must be aligned to 8 bytes here, but the kernel pages
2869 are much bigger, so we don't care (on i386) */
2870 /* workaround for 440MX */
2871 if (chip->fix_nocache)
2872 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 1);
2873 int_sta_masks = 0;
2874 for (i = 0; i < chip->bdbars_count; i++) {
2875 ichdev = &chip->ichd[i];
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002876 ichdev->bdbar = ((u32 *)chip->bdbars.area) +
2877 (i * ICH_MAX_FRAGS * 2);
2878 ichdev->bdbar_addr = chip->bdbars.addr +
2879 (i * sizeof(u32) * ICH_MAX_FRAGS * 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 int_sta_masks |= ichdev->int_sta_mask;
2881 }
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002882 chip->int_sta_reg = device_type == DEVICE_ALI ?
2883 ICH_REG_ALI_INTERRUPTSR : ICH_REG_GLOB_STA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 chip->int_sta_mask = int_sta_masks;
2885
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002886 pci_set_master(pci);
Takashi Iwaibeef08a2005-10-27 20:55:38 +02002887
Takashi Iwai84a43bd2006-01-12 11:47:32 +01002888 switch(chip->device_type) {
2889 case DEVICE_INTEL_ICH4:
2890 /* ICH4 can have three codecs */
2891 chip->max_codecs = 3;
2892 chip->codec_bit = ich_codec_bits;
2893 chip->codec_ready_bits = ICH_PRI | ICH_SRI | ICH_TRI;
2894 break;
2895 case DEVICE_SIS:
2896 /* recent SIS7012 can have three codecs */
2897 chip->max_codecs = 3;
2898 chip->codec_bit = sis_codec_bits;
2899 chip->codec_ready_bits = ICH_PRI | ICH_SRI | ICH_SIS_TRI;
2900 break;
2901 default:
2902 /* others up to two codecs */
2903 chip->max_codecs = 2;
2904 chip->codec_bit = ich_codec_bits;
2905 chip->codec_ready_bits = ICH_PRI | ICH_SRI;
2906 break;
2907 }
2908 for (i = 0; i < chip->max_codecs; i++)
2909 chip->codec_isr_bits |= chip->codec_bit[i];
2910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 if ((err = snd_intel8x0_chip_init(chip, 1)) < 0) {
2912 snd_intel8x0_free(chip);
2913 return err;
2914 }
2915
Takashi Iwai2078f382007-04-20 12:30:28 +02002916 /* request irq after initializaing int_sta_mask, etc */
2917 if (request_irq(pci->irq, snd_intel8x0_interrupt,
2918 IRQF_SHARED, card->shortname, chip)) {
2919 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
2920 snd_intel8x0_free(chip);
2921 return -EBUSY;
2922 }
2923 chip->irq = pci->irq;
2924
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
2926 snd_intel8x0_free(chip);
2927 return err;
2928 }
2929
2930 snd_card_set_dev(card, &pci->dev);
2931
2932 *r_intel8x0 = chip;
2933 return 0;
2934}
2935
2936static struct shortname_table {
2937 unsigned int id;
2938 const char *s;
2939} shortnames[] __devinitdata = {
Takashi Iwai8cdfd252005-09-07 14:08:11 +02002940 { PCI_DEVICE_ID_INTEL_82801AA_5, "Intel 82801AA-ICH" },
2941 { PCI_DEVICE_ID_INTEL_82801AB_5, "Intel 82901AB-ICH0" },
2942 { PCI_DEVICE_ID_INTEL_82801BA_4, "Intel 82801BA-ICH2" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 { PCI_DEVICE_ID_INTEL_440MX, "Intel 440MX" },
Takashi Iwai8cdfd252005-09-07 14:08:11 +02002944 { PCI_DEVICE_ID_INTEL_82801CA_5, "Intel 82801CA-ICH3" },
2945 { PCI_DEVICE_ID_INTEL_82801DB_5, "Intel 82801DB-ICH4" },
2946 { PCI_DEVICE_ID_INTEL_82801EB_5, "Intel ICH5" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 { PCI_DEVICE_ID_INTEL_ESB_5, "Intel 6300ESB" },
2948 { PCI_DEVICE_ID_INTEL_ICH6_18, "Intel ICH6" },
2949 { PCI_DEVICE_ID_INTEL_ICH7_20, "Intel ICH7" },
Jason Gaston3437c5d2005-05-05 16:15:05 -07002950 { PCI_DEVICE_ID_INTEL_ESB2_14, "Intel ESB2" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 { PCI_DEVICE_ID_SI_7012, "SiS SI7012" },
Takashi Iwai8cdfd252005-09-07 14:08:11 +02002952 { PCI_DEVICE_ID_NVIDIA_MCP1_AUDIO, "NVidia nForce" },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 { PCI_DEVICE_ID_NVIDIA_MCP2_AUDIO, "NVidia nForce2" },
2954 { PCI_DEVICE_ID_NVIDIA_MCP3_AUDIO, "NVidia nForce3" },
2955 { PCI_DEVICE_ID_NVIDIA_CK8S_AUDIO, "NVidia CK8S" },
2956 { PCI_DEVICE_ID_NVIDIA_CK804_AUDIO, "NVidia CK804" },
2957 { PCI_DEVICE_ID_NVIDIA_CK8_AUDIO, "NVidia CK8" },
2958 { 0x003a, "NVidia MCP04" },
2959 { 0x746d, "AMD AMD8111" },
2960 { 0x7445, "AMD AMD768" },
2961 { 0x5455, "ALi M5455" },
2962 { 0, NULL },
2963};
2964
Takashi Iwaia9e99662006-11-24 15:42:07 +01002965static struct snd_pci_quirk spdif_aclink_defaults[] __devinitdata = {
2966 SND_PCI_QUIRK(0x147b, 0x1c1a, "ASUS KN8", 1),
2967 { } /* end */
2968};
2969
2970/* look up white/black list for SPDIF over ac-link */
2971static int __devinit check_default_spdif_aclink(struct pci_dev *pci)
2972{
2973 const struct snd_pci_quirk *w;
2974
2975 w = snd_pci_quirk_lookup(pci, spdif_aclink_defaults);
2976 if (w) {
2977 if (w->value)
2978 snd_printdd(KERN_INFO "intel8x0: Using SPDIF over "
2979 "AC-Link for %s\n", w->name);
2980 else
2981 snd_printdd(KERN_INFO "intel8x0: Using integrated "
2982 "SPDIF DMA for %s\n", w->name);
2983 return w->value;
2984 }
2985 return 0;
2986}
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988static int __devinit snd_intel8x0_probe(struct pci_dev *pci,
2989 const struct pci_device_id *pci_id)
2990{
Takashi Iwai6b75a9d2005-11-17 15:04:53 +01002991 struct snd_card *card;
2992 struct intel8x0 *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 int err;
2994 struct shortname_table *name;
2995
Clemens Ladischb7fe4622005-10-04 08:46:51 +02002996 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (card == NULL)
2998 return -ENOMEM;
2999
Takashi Iwaia9e99662006-11-24 15:42:07 +01003000 if (spdif_aclink < 0)
3001 spdif_aclink = check_default_spdif_aclink(pci);
3002
3003 strcpy(card->driver, "ICH");
3004 if (!spdif_aclink) {
3005 switch (pci_id->driver_data) {
3006 case DEVICE_NFORCE:
3007 strcpy(card->driver, "NFORCE");
3008 break;
3009 case DEVICE_INTEL_ICH4:
3010 strcpy(card->driver, "ICH4");
3011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 }
3013
3014 strcpy(card->shortname, "Intel ICH");
3015 for (name = shortnames; name->id; name++) {
3016 if (pci->device == name->id) {
3017 strcpy(card->shortname, name->s);
3018 break;
3019 }
3020 }
3021
Takashi Iwaibeef08a2005-10-27 20:55:38 +02003022 if (buggy_irq < 0) {
3023 /* some Nforce[2] and ICH boards have problems with IRQ handling.
3024 * Needs to return IRQ_HANDLED for unknown irqs.
3025 */
3026 if (pci_id->driver_data == DEVICE_NFORCE)
3027 buggy_irq = 1;
3028 else
3029 buggy_irq = 0;
3030 }
3031
Takashi Iwaia06147d2005-09-08 19:54:17 +02003032 if ((err = snd_intel8x0_create(card, pci, pci_id->driver_data,
Takashi Iwaic829b052005-10-18 18:03:35 +02003033 &chip)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 snd_card_free(card);
3035 return err;
3036 }
Takashi Iwai5809c6c2005-11-17 16:10:01 +01003037 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038
Clemens Ladischb7fe4622005-10-04 08:46:51 +02003039 if ((err = snd_intel8x0_mixer(chip, ac97_clock, ac97_quirk)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 snd_card_free(card);
3041 return err;
3042 }
3043 if ((err = snd_intel8x0_pcm(chip)) < 0) {
3044 snd_card_free(card);
3045 return err;
3046 }
3047
3048 snd_intel8x0_proc_init(chip);
3049
3050 snprintf(card->longname, sizeof(card->longname),
Takashi Iwai3388c372006-10-06 17:06:39 +02003051 "%s with %s at irq %i", card->shortname,
3052 snd_ac97_get_short_name(chip->ac97[0]), chip->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053
Clemens Ladischb7fe4622005-10-04 08:46:51 +02003054 if (! ac97_clock)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 intel8x0_measure_ac97_clock(chip);
3056
3057 if ((err = snd_card_register(card)) < 0) {
3058 snd_card_free(card);
3059 return err;
3060 }
3061 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 return 0;
3063}
3064
3065static void __devexit snd_intel8x0_remove(struct pci_dev *pci)
3066{
3067 snd_card_free(pci_get_drvdata(pci));
3068 pci_set_drvdata(pci, NULL);
3069}
3070
3071static struct pci_driver driver = {
3072 .name = "Intel ICH",
3073 .id_table = snd_intel8x0_ids,
3074 .probe = snd_intel8x0_probe,
3075 .remove = __devexit_p(snd_intel8x0_remove),
Takashi Iwai5809c6c2005-11-17 16:10:01 +01003076#ifdef CONFIG_PM
3077 .suspend = intel8x0_suspend,
3078 .resume = intel8x0_resume,
3079#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080};
3081
3082
3083static int __init alsa_card_intel8x0_init(void)
3084{
Takashi Iwai01d25d42005-04-11 16:58:24 +02003085 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086}
3087
3088static void __exit alsa_card_intel8x0_exit(void)
3089{
3090 pci_unregister_driver(&driver);
3091}
3092
3093module_init(alsa_card_intel8x0_init)
3094module_exit(alsa_card_intel8x0_exit)