[ALSA] highlanderize motherboard AC97/HDA drivers
[linux-2.6-block.git] / sound / pci / intel8x0.c
CommitLineData
1da177e4
LT
1/*
2 * ALSA driver for Intel ICH (i8x0) chipsets
3 *
4 * Copyright (c) 2000 Jaroslav Kysela <perex@suse.cz>
5 *
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
46MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
47MODULE_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},"
c4c8ea94 58 "{Intel,ESB2},"
1da177e4
LT
59 "{Intel,MX440},"
60 "{SiS,SI7012},"
61 "{NVidia,nForce Audio},"
62 "{NVidia,nForce2 Audio},"
63 "{AMD,AMD768},"
64 "{AMD,AMD8111},"
65 "{ALI,M5455}}");
66
b7fe4622
CL
67static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */
68static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */
69static int ac97_clock = 0;
70static char *ac97_quirk;
71static int buggy_semaphore;
72static int buggy_irq;
73static int xbox;
74
75module_param(index, int, 0444);
1da177e4 76MODULE_PARM_DESC(index, "Index value for Intel i8x0 soundcard.");
b7fe4622 77module_param(id, charp, 0444);
1da177e4 78MODULE_PARM_DESC(id, "ID string for Intel i8x0 soundcard.");
b7fe4622 79module_param(ac97_clock, int, 0444);
1da177e4 80MODULE_PARM_DESC(ac97_clock, "AC'97 codec clock (0 = auto-detect).");
b7fe4622 81module_param(ac97_quirk, charp, 0444);
1da177e4 82MODULE_PARM_DESC(ac97_quirk, "AC'97 workaround for strange hardware.");
b7fe4622 83module_param(buggy_semaphore, bool, 0444);
a06147d2 84MODULE_PARM_DESC(buggy_semaphore, "Enable workaround for hardwares with problematic codec semaphores.");
b7fe4622 85module_param(buggy_irq, bool, 0444);
1da177e4 86MODULE_PARM_DESC(buggy_irq, "Enable workaround for buggy interrupts on some motherboards.");
b7fe4622 87module_param(xbox, bool, 0444);
1da177e4
LT
88MODULE_PARM_DESC(xbox, "Set to 1 for Xbox, if you have problems with the AC'97 codec detection.");
89
90/*
91 * Direct registers
92 */
1da177e4
LT
93enum { DEVICE_INTEL, DEVICE_INTEL_ICH4, DEVICE_SIS, DEVICE_ALI, DEVICE_NFORCE };
94
95#define ICHREG(x) ICH_REG_##x
96
97#define DEFINE_REGSET(name,base) \
98enum { \
99 ICH_REG_##name##_BDBAR = base + 0x0, /* dword - buffer descriptor list base address */ \
100 ICH_REG_##name##_CIV = base + 0x04, /* byte - current index value */ \
101 ICH_REG_##name##_LVI = base + 0x05, /* byte - last valid index */ \
102 ICH_REG_##name##_SR = base + 0x06, /* byte - status register */ \
103 ICH_REG_##name##_PICB = base + 0x08, /* word - position in current buffer */ \
104 ICH_REG_##name##_PIV = base + 0x0a, /* byte - prefetched index value */ \
105 ICH_REG_##name##_CR = base + 0x0b, /* byte - control register */ \
106};
107
108/* busmaster blocks */
109DEFINE_REGSET(OFF, 0); /* offset */
110DEFINE_REGSET(PI, 0x00); /* PCM in */
111DEFINE_REGSET(PO, 0x10); /* PCM out */
112DEFINE_REGSET(MC, 0x20); /* Mic in */
113
114/* ICH4 busmaster blocks */
115DEFINE_REGSET(MC2, 0x40); /* Mic in 2 */
116DEFINE_REGSET(PI2, 0x50); /* PCM in 2 */
117DEFINE_REGSET(SP, 0x60); /* SPDIF out */
118
119/* values for each busmaster block */
120
121/* LVI */
122#define ICH_REG_LVI_MASK 0x1f
123
124/* SR */
125#define ICH_FIFOE 0x10 /* FIFO error */
126#define ICH_BCIS 0x08 /* buffer completion interrupt status */
127#define ICH_LVBCI 0x04 /* last valid buffer completion interrupt */
128#define ICH_CELV 0x02 /* current equals last valid */
129#define ICH_DCH 0x01 /* DMA controller halted */
130
131/* PIV */
132#define ICH_REG_PIV_MASK 0x1f /* mask */
133
134/* CR */
135#define ICH_IOCE 0x10 /* interrupt on completion enable */
136#define ICH_FEIE 0x08 /* fifo error interrupt enable */
137#define ICH_LVBIE 0x04 /* last valid buffer interrupt enable */
138#define ICH_RESETREGS 0x02 /* reset busmaster registers */
139#define ICH_STARTBM 0x01 /* start busmaster operation */
140
141
142/* global block */
143#define ICH_REG_GLOB_CNT 0x2c /* dword - global control */
144#define ICH_PCM_SPDIF_MASK 0xc0000000 /* s/pdif pcm slot mask (ICH4) */
145#define ICH_PCM_SPDIF_NONE 0x00000000 /* reserved - undefined */
146#define ICH_PCM_SPDIF_78 0x40000000 /* s/pdif pcm on slots 7&8 */
147#define ICH_PCM_SPDIF_69 0x80000000 /* s/pdif pcm on slots 6&9 */
148#define ICH_PCM_SPDIF_1011 0xc0000000 /* s/pdif pcm on slots 10&11 */
149#define ICH_PCM_20BIT 0x00400000 /* 20-bit samples (ICH4) */
150#define ICH_PCM_246_MASK 0x00300000 /* 6 channels (not all chips) */
151#define ICH_PCM_6 0x00200000 /* 6 channels (not all chips) */
152#define ICH_PCM_4 0x00100000 /* 4 channels (not all chips) */
153#define ICH_PCM_2 0x00000000 /* 2 channels (stereo) */
154#define ICH_SIS_PCM_246_MASK 0x000000c0 /* 6 channels (SIS7012) */
155#define ICH_SIS_PCM_6 0x00000080 /* 6 channels (SIS7012) */
156#define ICH_SIS_PCM_4 0x00000040 /* 4 channels (SIS7012) */
157#define ICH_SIS_PCM_2 0x00000000 /* 2 channels (SIS7012) */
158#define ICH_TRIE 0x00000040 /* tertiary resume interrupt enable */
159#define ICH_SRIE 0x00000020 /* secondary resume interrupt enable */
160#define ICH_PRIE 0x00000010 /* primary resume interrupt enable */
161#define ICH_ACLINK 0x00000008 /* AClink shut off */
162#define ICH_AC97WARM 0x00000004 /* AC'97 warm reset */
163#define ICH_AC97COLD 0x00000002 /* AC'97 cold reset */
164#define ICH_GIE 0x00000001 /* GPI interrupt enable */
165#define ICH_REG_GLOB_STA 0x30 /* dword - global status */
166#define ICH_TRI 0x20000000 /* ICH4: tertiary (AC_SDIN2) resume interrupt */
167#define ICH_TCR 0x10000000 /* ICH4: tertiary (AC_SDIN2) codec ready */
168#define ICH_BCS 0x08000000 /* ICH4: bit clock stopped */
169#define ICH_SPINT 0x04000000 /* ICH4: S/PDIF interrupt */
170#define ICH_P2INT 0x02000000 /* ICH4: PCM2-In interrupt */
171#define ICH_M2INT 0x01000000 /* ICH4: Mic2-In interrupt */
172#define ICH_SAMPLE_CAP 0x00c00000 /* ICH4: sample capability bits (RO) */
173#define ICH_SAMPLE_16_20 0x00400000 /* ICH4: 16- and 20-bit samples */
174#define ICH_MULTICHAN_CAP 0x00300000 /* ICH4: multi-channel capability bits (RO) */
175#define ICH_MD3 0x00020000 /* modem power down semaphore */
176#define ICH_AD3 0x00010000 /* audio power down semaphore */
177#define ICH_RCS 0x00008000 /* read completion status */
178#define ICH_BIT3 0x00004000 /* bit 3 slot 12 */
179#define ICH_BIT2 0x00002000 /* bit 2 slot 12 */
180#define ICH_BIT1 0x00001000 /* bit 1 slot 12 */
181#define ICH_SRI 0x00000800 /* secondary (AC_SDIN1) resume interrupt */
182#define ICH_PRI 0x00000400 /* primary (AC_SDIN0) resume interrupt */
183#define ICH_SCR 0x00000200 /* secondary (AC_SDIN1) codec ready */
184#define ICH_PCR 0x00000100 /* primary (AC_SDIN0) codec ready */
185#define ICH_MCINT 0x00000080 /* MIC capture interrupt */
186#define ICH_POINT 0x00000040 /* playback interrupt */
187#define ICH_PIINT 0x00000020 /* capture interrupt */
188#define ICH_NVSPINT 0x00000010 /* nforce spdif interrupt */
189#define ICH_MOINT 0x00000004 /* modem playback interrupt */
190#define ICH_MIINT 0x00000002 /* modem capture interrupt */
191#define ICH_GSCI 0x00000001 /* GPI status change interrupt */
192#define ICH_REG_ACC_SEMA 0x34 /* byte - codec write semaphore */
193#define ICH_CAS 0x01 /* codec access semaphore */
194#define ICH_REG_SDM 0x80
195#define ICH_DI2L_MASK 0x000000c0 /* PCM In 2, Mic In 2 data in line */
196#define ICH_DI2L_SHIFT 6
197#define ICH_DI1L_MASK 0x00000030 /* PCM In 1, Mic In 1 data in line */
198#define ICH_DI1L_SHIFT 4
199#define ICH_SE 0x00000008 /* steer enable */
200#define ICH_LDI_MASK 0x00000003 /* last codec read data input */
201
202#define ICH_MAX_FRAGS 32 /* max hw frags */
203
204
205/*
206 * registers for Ali5455
207 */
208
209/* ALi 5455 busmaster blocks */
210DEFINE_REGSET(AL_PI, 0x40); /* ALi PCM in */
211DEFINE_REGSET(AL_PO, 0x50); /* Ali PCM out */
212DEFINE_REGSET(AL_MC, 0x60); /* Ali Mic in */
213DEFINE_REGSET(AL_CDC_SPO, 0x70); /* Ali Codec SPDIF out */
214DEFINE_REGSET(AL_CENTER, 0x80); /* Ali center out */
215DEFINE_REGSET(AL_LFE, 0x90); /* Ali center out */
216DEFINE_REGSET(AL_CLR_SPI, 0xa0); /* Ali Controller SPDIF in */
217DEFINE_REGSET(AL_CLR_SPO, 0xb0); /* Ali Controller SPDIF out */
218DEFINE_REGSET(AL_I2S, 0xc0); /* Ali I2S in */
219DEFINE_REGSET(AL_PI2, 0xd0); /* Ali PCM2 in */
220DEFINE_REGSET(AL_MC2, 0xe0); /* Ali Mic2 in */
221
222enum {
223 ICH_REG_ALI_SCR = 0x00, /* System Control Register */
224 ICH_REG_ALI_SSR = 0x04, /* System Status Register */
225 ICH_REG_ALI_DMACR = 0x08, /* DMA Control Register */
226 ICH_REG_ALI_FIFOCR1 = 0x0c, /* FIFO Control Register 1 */
227 ICH_REG_ALI_INTERFACECR = 0x10, /* Interface Control Register */
228 ICH_REG_ALI_INTERRUPTCR = 0x14, /* Interrupt control Register */
229 ICH_REG_ALI_INTERRUPTSR = 0x18, /* Interrupt Status Register */
230 ICH_REG_ALI_FIFOCR2 = 0x1c, /* FIFO Control Register 2 */
231 ICH_REG_ALI_CPR = 0x20, /* Command Port Register */
232 ICH_REG_ALI_CPR_ADDR = 0x22, /* ac97 addr write */
233 ICH_REG_ALI_SPR = 0x24, /* Status Port Register */
234 ICH_REG_ALI_SPR_ADDR = 0x26, /* ac97 addr read */
235 ICH_REG_ALI_FIFOCR3 = 0x2c, /* FIFO Control Register 3 */
236 ICH_REG_ALI_TTSR = 0x30, /* Transmit Tag Slot Register */
237 ICH_REG_ALI_RTSR = 0x34, /* Receive Tag Slot Register */
238 ICH_REG_ALI_CSPSR = 0x38, /* Command/Status Port Status Register */
239 ICH_REG_ALI_CAS = 0x3c, /* Codec Write Semaphore Register */
240 ICH_REG_ALI_HWVOL = 0xf0, /* hardware volume control/status */
241 ICH_REG_ALI_I2SCR = 0xf4, /* I2S control/status */
242 ICH_REG_ALI_SPDIFCSR = 0xf8, /* spdif channel status register */
243 ICH_REG_ALI_SPDIFICS = 0xfc, /* spdif interface control/status */
244};
245
246#define ALI_CAS_SEM_BUSY 0x80000000
247#define ALI_CPR_ADDR_SECONDARY 0x100
248#define ALI_CPR_ADDR_READ 0x80
249#define ALI_CSPSR_CODEC_READY 0x08
250#define ALI_CSPSR_READ_OK 0x02
251#define ALI_CSPSR_WRITE_OK 0x01
252
253/* interrupts for the whole chip by interrupt status register finish */
254
255#define ALI_INT_MICIN2 (1<<26)
256#define ALI_INT_PCMIN2 (1<<25)
257#define ALI_INT_I2SIN (1<<24)
258#define ALI_INT_SPDIFOUT (1<<23) /* controller spdif out INTERRUPT */
259#define ALI_INT_SPDIFIN (1<<22)
260#define ALI_INT_LFEOUT (1<<21)
261#define ALI_INT_CENTEROUT (1<<20)
262#define ALI_INT_CODECSPDIFOUT (1<<19)
263#define ALI_INT_MICIN (1<<18)
264#define ALI_INT_PCMOUT (1<<17)
265#define ALI_INT_PCMIN (1<<16)
266#define ALI_INT_CPRAIS (1<<7) /* command port available */
267#define ALI_INT_SPRAIS (1<<5) /* status port available */
268#define ALI_INT_GPIO (1<<1)
269#define ALI_INT_MASK (ALI_INT_SPDIFOUT|ALI_INT_CODECSPDIFOUT|ALI_INT_MICIN|ALI_INT_PCMOUT|ALI_INT_PCMIN)
270
271#define ICH_ALI_SC_RESET (1<<31) /* master reset */
272#define ICH_ALI_SC_AC97_DBL (1<<30)
273#define ICH_ALI_SC_CODEC_SPDF (3<<20) /* 1=7/8, 2=6/9, 3=10/11 */
274#define ICH_ALI_SC_IN_BITS (3<<18)
275#define ICH_ALI_SC_OUT_BITS (3<<16)
276#define ICH_ALI_SC_6CH_CFG (3<<14)
277#define ICH_ALI_SC_PCM_4 (1<<8)
278#define ICH_ALI_SC_PCM_6 (2<<8)
279#define ICH_ALI_SC_PCM_246_MASK (3<<8)
280
281#define ICH_ALI_SS_SEC_ID (3<<5)
282#define ICH_ALI_SS_PRI_ID (3<<3)
283
284#define ICH_ALI_IF_AC97SP (1<<21)
285#define ICH_ALI_IF_MC (1<<20)
286#define ICH_ALI_IF_PI (1<<19)
287#define ICH_ALI_IF_MC2 (1<<18)
288#define ICH_ALI_IF_PI2 (1<<17)
289#define ICH_ALI_IF_LINE_SRC (1<<15) /* 0/1 = slot 3/6 */
290#define ICH_ALI_IF_MIC_SRC (1<<14) /* 0/1 = slot 3/6 */
291#define ICH_ALI_IF_SPDF_SRC (3<<12) /* 00 = PCM, 01 = AC97-in, 10 = spdif-in, 11 = i2s */
292#define ICH_ALI_IF_AC97_OUT (3<<8) /* 00 = PCM, 10 = spdif-in, 11 = i2s */
293#define ICH_ALI_IF_PO_SPDF (1<<3)
294#define ICH_ALI_IF_PO (1<<1)
295
296/*
297 *
298 */
299
300enum { ICHD_PCMIN, ICHD_PCMOUT, ICHD_MIC, ICHD_MIC2, ICHD_PCM2IN, ICHD_SPBAR, ICHD_LAST = ICHD_SPBAR };
301enum { NVD_PCMIN, NVD_PCMOUT, NVD_MIC, NVD_SPBAR, NVD_LAST = NVD_SPBAR };
302enum { ALID_PCMIN, ALID_PCMOUT, ALID_MIC, ALID_AC97SPDIFOUT, ALID_SPDIFIN, ALID_SPDIFOUT, ALID_LAST = ALID_SPDIFOUT };
303
304#define get_ichdev(substream) (ichdev_t *)(substream->runtime->private_data)
305
306typedef struct {
307 unsigned int ichd; /* ich device number */
308 unsigned long reg_offset; /* offset to bmaddr */
309 u32 *bdbar; /* CPU address (32bit) */
310 unsigned int bdbar_addr; /* PCI bus address (32bit) */
311 snd_pcm_substream_t *substream;
312 unsigned int physbuf; /* physical address (32bit) */
313 unsigned int size;
314 unsigned int fragsize;
315 unsigned int fragsize1;
316 unsigned int position;
317 unsigned int pos_shift;
318 int frags;
319 int lvi;
320 int lvi_frag;
321 int civ;
322 int ack;
323 int ack_reload;
324 unsigned int ack_bit;
325 unsigned int roff_sr;
326 unsigned int roff_picb;
327 unsigned int int_sta_mask; /* interrupt status mask */
328 unsigned int ali_slot; /* ALI DMA slot */
329 struct ac97_pcm *pcm;
330 int pcm_open_flag;
331 unsigned int page_attr_changed: 1;
1cfe43d2 332 unsigned int suspended: 1;
1da177e4
LT
333} ichdev_t;
334
335typedef struct _snd_intel8x0 intel8x0_t;
336
337struct _snd_intel8x0 {
338 unsigned int device_type;
339
340 int irq;
341
342 unsigned int mmio;
343 unsigned long addr;
344 void __iomem *remap_addr;
345 unsigned int bm_mmio;
346 unsigned long bmaddr;
347 void __iomem *remap_bmaddr;
348
349 struct pci_dev *pci;
350 snd_card_t *card;
351
352 int pcm_devs;
353 snd_pcm_t *pcm[6];
354 ichdev_t ichd[6];
355
356 unsigned multi4: 1,
357 multi6: 1,
358 dra: 1,
359 smp20bit: 1;
360 unsigned in_ac97_init: 1,
361 in_sdin_init: 1;
362 unsigned in_measurement: 1; /* during ac97 clock measurement */
363 unsigned fix_nocache: 1; /* workaround for 440MX */
364 unsigned buggy_irq: 1; /* workaround for buggy mobos */
365 unsigned xbox: 1; /* workaround for Xbox AC'97 detection */
a06147d2 366 unsigned buggy_semaphore: 1; /* workaround for buggy codec semaphore */
1da177e4
LT
367
368 int spdif_idx; /* SPDIF BAR index; *_SPBAR or -1 if use PCMOUT */
52b72388 369 unsigned int sdm_saved; /* SDM reg value */
1da177e4
LT
370
371 ac97_bus_t *ac97_bus;
372 ac97_t *ac97[3];
373 unsigned int ac97_sdin[3];
374
375 spinlock_t reg_lock;
376
377 u32 bdbars_count;
378 struct snd_dma_buffer bdbars;
379 u32 int_sta_reg; /* interrupt status register */
380 u32 int_sta_mask; /* interrupt status mask */
381};
382
383static struct pci_device_id snd_intel8x0_ids[] = {
384 { 0x8086, 0x2415, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801AA */
385 { 0x8086, 0x2425, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82901AB */
386 { 0x8086, 0x2445, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 82801BA */
387 { 0x8086, 0x2485, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* ICH3 */
388 { 0x8086, 0x24c5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH4 */
389 { 0x8086, 0x24d5, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH5 */
390 { 0x8086, 0x25a6, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ESB */
391 { 0x8086, 0x266e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH6 */
392 { 0x8086, 0x27de, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ICH7 */
c4c8ea94 393 { 0x8086, 0x2698, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL_ICH4 }, /* ESB2 */
1da177e4
LT
394 { 0x8086, 0x7195, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* 440MX */
395 { 0x1039, 0x7012, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_SIS }, /* SI7012 */
396 { 0x10de, 0x01b1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE */
397 { 0x10de, 0x003a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* MCP04 */
398 { 0x10de, 0x006a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE2 */
399 { 0x10de, 0x0059, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* CK804 */
400 { 0x10de, 0x008a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* CK8 */
401 { 0x10de, 0x00da, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* NFORCE3 */
402 { 0x10de, 0x00ea, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_NFORCE }, /* CK8S */
403 { 0x1022, 0x746d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD8111 */
404 { 0x1022, 0x7445, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_INTEL }, /* AMD768 */
405 { 0x10b9, 0x5455, PCI_ANY_ID, PCI_ANY_ID, 0, 0, DEVICE_ALI }, /* Ali5455 */
406 { 0, }
407};
408
409MODULE_DEVICE_TABLE(pci, snd_intel8x0_ids);
410
411/*
412 * Lowlevel I/O - busmaster
413 */
414
415static u8 igetbyte(intel8x0_t *chip, u32 offset)
416{
417 if (chip->bm_mmio)
418 return readb(chip->remap_bmaddr + offset);
419 else
420 return inb(chip->bmaddr + offset);
421}
422
423static u16 igetword(intel8x0_t *chip, u32 offset)
424{
425 if (chip->bm_mmio)
426 return readw(chip->remap_bmaddr + offset);
427 else
428 return inw(chip->bmaddr + offset);
429}
430
431static u32 igetdword(intel8x0_t *chip, u32 offset)
432{
433 if (chip->bm_mmio)
434 return readl(chip->remap_bmaddr + offset);
435 else
436 return inl(chip->bmaddr + offset);
437}
438
439static void iputbyte(intel8x0_t *chip, u32 offset, u8 val)
440{
441 if (chip->bm_mmio)
442 writeb(val, chip->remap_bmaddr + offset);
443 else
444 outb(val, chip->bmaddr + offset);
445}
446
447static void iputword(intel8x0_t *chip, u32 offset, u16 val)
448{
449 if (chip->bm_mmio)
450 writew(val, chip->remap_bmaddr + offset);
451 else
452 outw(val, chip->bmaddr + offset);
453}
454
455static void iputdword(intel8x0_t *chip, u32 offset, u32 val)
456{
457 if (chip->bm_mmio)
458 writel(val, chip->remap_bmaddr + offset);
459 else
460 outl(val, chip->bmaddr + offset);
461}
462
463/*
464 * Lowlevel I/O - AC'97 registers
465 */
466
467static u16 iagetword(intel8x0_t *chip, u32 offset)
468{
469 if (chip->mmio)
470 return readw(chip->remap_addr + offset);
471 else
472 return inw(chip->addr + offset);
473}
474
475static void iaputword(intel8x0_t *chip, u32 offset, u16 val)
476{
477 if (chip->mmio)
478 writew(val, chip->remap_addr + offset);
479 else
480 outw(val, chip->addr + offset);
481}
482
483/*
484 * Basic I/O
485 */
486
487/*
488 * access to AC97 codec via normal i/o (for ICH and SIS7012)
489 */
490
491/* return the GLOB_STA bit for the corresponding codec */
492static unsigned int get_ich_codec_bit(intel8x0_t *chip, unsigned int codec)
493{
494 static unsigned int codec_bit[3] = {
495 ICH_PCR, ICH_SCR, ICH_TCR
496 };
497 snd_assert(codec < 3, return ICH_PCR);
498 if (chip->device_type == DEVICE_INTEL_ICH4)
499 codec = chip->ac97_sdin[codec];
500 return codec_bit[codec];
501}
502
503static int snd_intel8x0_codec_semaphore(intel8x0_t *chip, unsigned int codec)
504{
505 int time;
506
507 if (codec > 2)
508 return -EIO;
509 if (chip->in_sdin_init) {
510 /* we don't know the ready bit assignment at the moment */
511 /* so we check any */
512 codec = ICH_PCR | ICH_SCR | ICH_TCR;
513 } else {
514 codec = get_ich_codec_bit(chip, codec);
515 }
516
517 /* codec ready ? */
518 if ((igetdword(chip, ICHREG(GLOB_STA)) & codec) == 0)
519 return -EIO;
520
a06147d2
TI
521 if (chip->buggy_semaphore)
522 return 0; /* just ignore ... */
523
1da177e4
LT
524 /* Anyone holding a semaphore for 1 msec should be shot... */
525 time = 100;
526 do {
527 if (!(igetbyte(chip, ICHREG(ACC_SEMA)) & ICH_CAS))
528 return 0;
529 udelay(10);
530 } while (time--);
531
532 /* access to some forbidden (non existant) ac97 registers will not
533 * reset the semaphore. So even if you don't get the semaphore, still
534 * continue the access. We don't need the semaphore anyway. */
535 snd_printk("codec_semaphore: semaphore is not ready [0x%x][0x%x]\n",
536 igetbyte(chip, ICHREG(ACC_SEMA)), igetdword(chip, ICHREG(GLOB_STA)));
537 iagetword(chip, 0); /* clear semaphore flag */
538 /* I don't care about the semaphore */
539 return -EBUSY;
540}
541
542static void snd_intel8x0_codec_write(ac97_t *ac97,
543 unsigned short reg,
544 unsigned short val)
545{
546 intel8x0_t *chip = ac97->private_data;
547
548 if (snd_intel8x0_codec_semaphore(chip, ac97->num) < 0) {
549 if (! chip->in_ac97_init)
550 snd_printk("codec_write %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);
551 }
552 iaputword(chip, reg + ac97->num * 0x80, val);
553}
554
555static unsigned short snd_intel8x0_codec_read(ac97_t *ac97,
556 unsigned short reg)
557{
558 intel8x0_t *chip = ac97->private_data;
559 unsigned short res;
560 unsigned int tmp;
561
562 if (snd_intel8x0_codec_semaphore(chip, ac97->num) < 0) {
563 if (! chip->in_ac97_init)
564 snd_printk("codec_read %d: semaphore is not ready for register 0x%x\n", ac97->num, reg);
565 res = 0xffff;
566 } else {
567 res = iagetword(chip, reg + ac97->num * 0x80);
568 if ((tmp = igetdword(chip, ICHREG(GLOB_STA))) & ICH_RCS) {
569 /* reset RCS and preserve other R/WC bits */
570 iputdword(chip, ICHREG(GLOB_STA), tmp & ~(ICH_SRI|ICH_PRI|ICH_TRI|ICH_GSCI));
571 if (! chip->in_ac97_init)
572 snd_printk("codec_read %d: read timeout for register 0x%x\n", ac97->num, reg);
573 res = 0xffff;
574 }
575 }
576 return res;
577}
578
579static void snd_intel8x0_codec_read_test(intel8x0_t *chip, unsigned int codec)
580{
581 unsigned int tmp;
582
583 if (snd_intel8x0_codec_semaphore(chip, codec) >= 0) {
584 iagetword(chip, codec * 0x80);
585 if ((tmp = igetdword(chip, ICHREG(GLOB_STA))) & ICH_RCS) {
586 /* reset RCS and preserve other R/WC bits */
587 iputdword(chip, ICHREG(GLOB_STA), tmp & ~(ICH_SRI|ICH_PRI|ICH_TRI|ICH_GSCI));
588 }
589 }
590}
591
592/*
593 * access to AC97 for Ali5455
594 */
595static int snd_intel8x0_ali_codec_ready(intel8x0_t *chip, int mask)
596{
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 }
603 snd_printd(KERN_WARNING "intel8x0: AC97 codec ready timeout.\n");
604 return -EBUSY;
605}
606
607static int snd_intel8x0_ali_codec_semaphore(intel8x0_t *chip)
608{
609 int time = 100;
610 while (time-- && (igetdword(chip, ICHREG(ALI_CAS)) & ALI_CAS_SEM_BUSY))
611 udelay(1);
612 if (! time)
613 snd_printk(KERN_WARNING "ali_codec_semaphore timeout\n");
614 return snd_intel8x0_ali_codec_ready(chip, ALI_CSPSR_CODEC_READY);
615}
616
617static unsigned short snd_intel8x0_ali_codec_read(ac97_t *ac97, unsigned short reg)
618{
619 intel8x0_t *chip = ac97->private_data;
620 unsigned short data = 0xffff;
621
622 if (snd_intel8x0_ali_codec_semaphore(chip))
623 goto __err;
624 reg |= ALI_CPR_ADDR_READ;
625 if (ac97->num)
626 reg |= ALI_CPR_ADDR_SECONDARY;
627 iputword(chip, ICHREG(ALI_CPR_ADDR), reg);
628 if (snd_intel8x0_ali_codec_ready(chip, ALI_CSPSR_READ_OK))
629 goto __err;
630 data = igetword(chip, ICHREG(ALI_SPR));
631 __err:
632 return data;
633}
634
635static void snd_intel8x0_ali_codec_write(ac97_t *ac97, unsigned short reg, unsigned short val)
636{
637 intel8x0_t *chip = ac97->private_data;
638
639 if (snd_intel8x0_ali_codec_semaphore(chip))
640 return;
641 iputword(chip, ICHREG(ALI_CPR), val);
642 if (ac97->num)
643 reg |= ALI_CPR_ADDR_SECONDARY;
644 iputword(chip, ICHREG(ALI_CPR_ADDR), reg);
645 snd_intel8x0_ali_codec_ready(chip, ALI_CSPSR_WRITE_OK);
646}
647
648
649/*
650 * DMA I/O
651 */
652static void snd_intel8x0_setup_periods(intel8x0_t *chip, ichdev_t *ichdev)
653{
654 int idx;
655 u32 *bdbar = ichdev->bdbar;
656 unsigned long port = ichdev->reg_offset;
657
658 iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);
659 if (ichdev->size == ichdev->fragsize) {
660 ichdev->ack_reload = ichdev->ack = 2;
661 ichdev->fragsize1 = ichdev->fragsize >> 1;
662 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 4) {
663 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf);
664 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
665 ichdev->fragsize1 >> ichdev->pos_shift);
666 bdbar[idx + 2] = cpu_to_le32(ichdev->physbuf + (ichdev->size >> 1));
667 bdbar[idx + 3] = cpu_to_le32(0x80000000 | /* interrupt on completion */
668 ichdev->fragsize1 >> ichdev->pos_shift);
669 }
670 ichdev->frags = 2;
671 } else {
672 ichdev->ack_reload = ichdev->ack = 1;
673 ichdev->fragsize1 = ichdev->fragsize;
674 for (idx = 0; idx < (ICH_REG_LVI_MASK + 1) * 2; idx += 2) {
675 bdbar[idx + 0] = cpu_to_le32(ichdev->physbuf + (((idx >> 1) * ichdev->fragsize) % ichdev->size));
676 bdbar[idx + 1] = cpu_to_le32(0x80000000 | /* interrupt on completion */
677 ichdev->fragsize >> ichdev->pos_shift);
678 // printk("bdbar[%i] = 0x%x [0x%x]\n", idx + 0, bdbar[idx + 0], bdbar[idx + 1]);
679 }
680 ichdev->frags = ichdev->size / ichdev->fragsize;
681 }
682 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi = ICH_REG_LVI_MASK);
683 ichdev->civ = 0;
684 iputbyte(chip, port + ICH_REG_OFF_CIV, 0);
685 ichdev->lvi_frag = ICH_REG_LVI_MASK % ichdev->frags;
686 ichdev->position = 0;
687#if 0
688 printk("lvi_frag = %i, frags = %i, period_size = 0x%x, period_size1 = 0x%x\n",
689 ichdev->lvi_frag, ichdev->frags, ichdev->fragsize, ichdev->fragsize1);
690#endif
691 /* clear interrupts */
692 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
693}
694
695#ifdef __i386__
696/*
697 * Intel 82443MX running a 100MHz processor system bus has a hardware bug,
698 * which aborts PCI busmaster for audio transfer. A workaround is to set
699 * the pages as non-cached. For details, see the errata in
700 * http://www.intel.com/design/chipsets/specupdt/245051.htm
701 */
702static void fill_nocache(void *buf, int size, int nocache)
703{
704 size = (size + PAGE_SIZE - 1) >> PAGE_SHIFT;
705 change_page_attr(virt_to_page(buf), size, nocache ? PAGE_KERNEL_NOCACHE : PAGE_KERNEL);
706 global_flush_tlb();
707}
708#else
709#define fill_nocache(buf,size,nocache)
710#endif
711
712/*
713 * Interrupt handler
714 */
715
716static inline void snd_intel8x0_update(intel8x0_t *chip, ichdev_t *ichdev)
717{
718 unsigned long port = ichdev->reg_offset;
719 int status, civ, i, step;
720 int ack = 0;
721
722 spin_lock(&chip->reg_lock);
723 status = igetbyte(chip, port + ichdev->roff_sr);
724 civ = igetbyte(chip, port + ICH_REG_OFF_CIV);
725 if (!(status & ICH_BCIS)) {
726 step = 0;
727 } else if (civ == ichdev->civ) {
728 // snd_printd("civ same %d\n", civ);
729 step = 1;
730 ichdev->civ++;
731 ichdev->civ &= ICH_REG_LVI_MASK;
732 } else {
733 step = civ - ichdev->civ;
734 if (step < 0)
735 step += ICH_REG_LVI_MASK + 1;
736 // if (step != 1)
737 // snd_printd("step = %d, %d -> %d\n", step, ichdev->civ, civ);
738 ichdev->civ = civ;
739 }
740
741 ichdev->position += step * ichdev->fragsize1;
742 if (! chip->in_measurement)
743 ichdev->position %= ichdev->size;
744 ichdev->lvi += step;
745 ichdev->lvi &= ICH_REG_LVI_MASK;
746 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
747 for (i = 0; i < step; i++) {
748 ichdev->lvi_frag++;
749 ichdev->lvi_frag %= ichdev->frags;
750 ichdev->bdbar[ichdev->lvi * 2] = cpu_to_le32(ichdev->physbuf + ichdev->lvi_frag * ichdev->fragsize1);
751 // printk("new: bdbar[%i] = 0x%x [0x%x], prefetch = %i, all = 0x%x, 0x%x\n", ichdev->lvi * 2, ichdev->bdbar[ichdev->lvi * 2], ichdev->bdbar[ichdev->lvi * 2 + 1], inb(ICH_REG_OFF_PIV + port), inl(port + 4), inb(port + ICH_REG_OFF_CR));
752 if (--ichdev->ack == 0) {
753 ichdev->ack = ichdev->ack_reload;
754 ack = 1;
755 }
756 }
757 spin_unlock(&chip->reg_lock);
758 if (ack && ichdev->substream) {
759 snd_pcm_period_elapsed(ichdev->substream);
760 }
761 iputbyte(chip, port + ichdev->roff_sr,
762 status & (ICH_FIFOE | ICH_BCIS | ICH_LVBCI));
763}
764
765static irqreturn_t snd_intel8x0_interrupt(int irq, void *dev_id, struct pt_regs *regs)
766{
767 intel8x0_t *chip = dev_id;
768 ichdev_t *ichdev;
769 unsigned int status;
770 unsigned int i;
771
772 status = igetdword(chip, chip->int_sta_reg);
773 if (status == 0xffffffff) /* we are not yet resumed */
774 return IRQ_NONE;
775
776 if ((status & chip->int_sta_mask) == 0) {
777 if (status) {
778 /* ack */
779 iputdword(chip, chip->int_sta_reg, status);
780 if (! chip->buggy_irq)
781 status = 0;
782 }
783 return IRQ_RETVAL(status);
784 }
785
786 for (i = 0; i < chip->bdbars_count; i++) {
787 ichdev = &chip->ichd[i];
788 if (status & ichdev->int_sta_mask)
789 snd_intel8x0_update(chip, ichdev);
790 }
791
792 /* ack them */
793 iputdword(chip, chip->int_sta_reg, status & chip->int_sta_mask);
794
795 return IRQ_HANDLED;
796}
797
798/*
799 * PCM part
800 */
801
802static int snd_intel8x0_pcm_trigger(snd_pcm_substream_t *substream, int cmd)
803{
804 intel8x0_t *chip = snd_pcm_substream_chip(substream);
805 ichdev_t *ichdev = get_ichdev(substream);
806 unsigned char val = 0;
807 unsigned long port = ichdev->reg_offset;
808
809 switch (cmd) {
1da177e4 810 case SNDRV_PCM_TRIGGER_RESUME:
1cfe43d2
TI
811 ichdev->suspended = 0;
812 /* fallthru */
813 case SNDRV_PCM_TRIGGER_START:
1da177e4
LT
814 val = ICH_IOCE | ICH_STARTBM;
815 break;
1da177e4 816 case SNDRV_PCM_TRIGGER_SUSPEND:
1cfe43d2
TI
817 ichdev->suspended = 1;
818 /* fallthru */
819 case SNDRV_PCM_TRIGGER_STOP:
1da177e4
LT
820 val = 0;
821 break;
822 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
823 val = ICH_IOCE;
824 break;
825 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
826 val = ICH_IOCE | ICH_STARTBM;
827 break;
828 default:
829 return -EINVAL;
830 }
831 iputbyte(chip, port + ICH_REG_OFF_CR, val);
832 if (cmd == SNDRV_PCM_TRIGGER_STOP) {
833 /* wait until DMA stopped */
834 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH)) ;
835 /* reset whole DMA things */
836 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
837 }
838 return 0;
839}
840
841static int snd_intel8x0_ali_trigger(snd_pcm_substream_t *substream, int cmd)
842{
843 intel8x0_t *chip = snd_pcm_substream_chip(substream);
844 ichdev_t *ichdev = get_ichdev(substream);
845 unsigned long port = ichdev->reg_offset;
846 static int fiforeg[] = { ICHREG(ALI_FIFOCR1), ICHREG(ALI_FIFOCR2), ICHREG(ALI_FIFOCR3) };
847 unsigned int val, fifo;
848
849 val = igetdword(chip, ICHREG(ALI_DMACR));
850 switch (cmd) {
1cfe43d2
TI
851 case SNDRV_PCM_TRIGGER_RESUME:
852 ichdev->suspended = 0;
853 /* fallthru */
1da177e4
LT
854 case SNDRV_PCM_TRIGGER_START:
855 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1da177e4
LT
856 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
857 /* clear FIFO for synchronization of channels */
858 fifo = igetdword(chip, fiforeg[ichdev->ali_slot / 4]);
859 fifo &= ~(0xff << (ichdev->ali_slot % 4));
860 fifo |= 0x83 << (ichdev->ali_slot % 4);
861 iputdword(chip, fiforeg[ichdev->ali_slot / 4], fifo);
862 }
863 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE);
864 val &= ~(1 << (ichdev->ali_slot + 16)); /* clear PAUSE flag */
865 iputdword(chip, ICHREG(ALI_DMACR), val | (1 << ichdev->ali_slot)); /* start DMA */
866 break;
1cfe43d2
TI
867 case SNDRV_PCM_TRIGGER_SUSPEND:
868 ichdev->suspended = 1;
869 /* fallthru */
1da177e4
LT
870 case SNDRV_PCM_TRIGGER_STOP:
871 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
1da177e4
LT
872 iputdword(chip, ICHREG(ALI_DMACR), val | (1 << (ichdev->ali_slot + 16))); /* pause */
873 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
874 while (igetbyte(chip, port + ICH_REG_OFF_CR))
875 ;
876 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
877 break;
878 /* reset whole DMA things */
879 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
880 /* clear interrupts */
881 iputbyte(chip, port + ICH_REG_OFF_SR, igetbyte(chip, port + ICH_REG_OFF_SR) | 0x1e);
882 iputdword(chip, ICHREG(ALI_INTERRUPTSR),
883 igetdword(chip, ICHREG(ALI_INTERRUPTSR)) & ichdev->int_sta_mask);
884 break;
885 default:
886 return -EINVAL;
887 }
888 return 0;
889}
890
891static int snd_intel8x0_hw_params(snd_pcm_substream_t * substream,
892 snd_pcm_hw_params_t * hw_params)
893{
894 intel8x0_t *chip = snd_pcm_substream_chip(substream);
895 ichdev_t *ichdev = get_ichdev(substream);
896 snd_pcm_runtime_t *runtime = substream->runtime;
897 int dbl = params_rate(hw_params) > 48000;
898 int err;
899
900 if (chip->fix_nocache && ichdev->page_attr_changed) {
901 fill_nocache(runtime->dma_area, runtime->dma_bytes, 0); /* clear */
902 ichdev->page_attr_changed = 0;
903 }
904 err = snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
905 if (err < 0)
906 return err;
907 if (chip->fix_nocache) {
908 if (runtime->dma_area && ! ichdev->page_attr_changed) {
909 fill_nocache(runtime->dma_area, runtime->dma_bytes, 1);
910 ichdev->page_attr_changed = 1;
911 }
912 }
913 if (ichdev->pcm_open_flag) {
914 snd_ac97_pcm_close(ichdev->pcm);
915 ichdev->pcm_open_flag = 0;
916 }
917 err = snd_ac97_pcm_open(ichdev->pcm, params_rate(hw_params),
918 params_channels(hw_params),
919 ichdev->pcm->r[dbl].slots);
920 if (err >= 0) {
921 ichdev->pcm_open_flag = 1;
922 /* Force SPDIF setting */
923 if (ichdev->ichd == ICHD_PCMOUT && chip->spdif_idx < 0)
924 snd_ac97_set_rate(ichdev->pcm->r[0].codec[0], AC97_SPDIF, params_rate(hw_params));
925 }
926 return err;
927}
928
929static int snd_intel8x0_hw_free(snd_pcm_substream_t * substream)
930{
931 intel8x0_t *chip = snd_pcm_substream_chip(substream);
932 ichdev_t *ichdev = get_ichdev(substream);
933
934 if (ichdev->pcm_open_flag) {
935 snd_ac97_pcm_close(ichdev->pcm);
936 ichdev->pcm_open_flag = 0;
937 }
938 if (chip->fix_nocache && ichdev->page_attr_changed) {
939 fill_nocache(substream->runtime->dma_area, substream->runtime->dma_bytes, 0);
940 ichdev->page_attr_changed = 0;
941 }
942 return snd_pcm_lib_free_pages(substream);
943}
944
945static void snd_intel8x0_setup_pcm_out(intel8x0_t *chip,
946 snd_pcm_runtime_t *runtime)
947{
948 unsigned int cnt;
949 int dbl = runtime->rate > 48000;
1cfe43d2
TI
950
951 spin_lock_irq(&chip->reg_lock);
1da177e4
LT
952 switch (chip->device_type) {
953 case DEVICE_ALI:
954 cnt = igetdword(chip, ICHREG(ALI_SCR));
955 cnt &= ~ICH_ALI_SC_PCM_246_MASK;
956 if (runtime->channels == 4 || dbl)
957 cnt |= ICH_ALI_SC_PCM_4;
958 else if (runtime->channels == 6)
959 cnt |= ICH_ALI_SC_PCM_6;
960 iputdword(chip, ICHREG(ALI_SCR), cnt);
961 break;
962 case DEVICE_SIS:
963 cnt = igetdword(chip, ICHREG(GLOB_CNT));
964 cnt &= ~ICH_SIS_PCM_246_MASK;
965 if (runtime->channels == 4 || dbl)
966 cnt |= ICH_SIS_PCM_4;
967 else if (runtime->channels == 6)
968 cnt |= ICH_SIS_PCM_6;
969 iputdword(chip, ICHREG(GLOB_CNT), cnt);
970 break;
971 default:
972 cnt = igetdword(chip, ICHREG(GLOB_CNT));
973 cnt &= ~(ICH_PCM_246_MASK | ICH_PCM_20BIT);
974 if (runtime->channels == 4 || dbl)
975 cnt |= ICH_PCM_4;
976 else if (runtime->channels == 6)
977 cnt |= ICH_PCM_6;
978 if (chip->device_type == DEVICE_NFORCE) {
979 /* reset to 2ch once to keep the 6 channel data in alignment,
980 * to start from Front Left always
981 */
982 if (cnt & ICH_PCM_246_MASK) {
983 iputdword(chip, ICHREG(GLOB_CNT), cnt & ~ICH_PCM_246_MASK);
984 spin_unlock_irq(&chip->reg_lock);
985 msleep(50); /* grrr... */
986 spin_lock_irq(&chip->reg_lock);
987 }
988 } else if (chip->device_type == DEVICE_INTEL_ICH4) {
989 if (runtime->sample_bits > 16)
990 cnt |= ICH_PCM_20BIT;
991 }
992 iputdword(chip, ICHREG(GLOB_CNT), cnt);
993 break;
994 }
1cfe43d2 995 spin_unlock_irq(&chip->reg_lock);
1da177e4
LT
996}
997
998static int snd_intel8x0_pcm_prepare(snd_pcm_substream_t * substream)
999{
1000 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1001 snd_pcm_runtime_t *runtime = substream->runtime;
1002 ichdev_t *ichdev = get_ichdev(substream);
1003
1004 ichdev->physbuf = runtime->dma_addr;
1005 ichdev->size = snd_pcm_lib_buffer_bytes(substream);
1006 ichdev->fragsize = snd_pcm_lib_period_bytes(substream);
1da177e4
LT
1007 if (ichdev->ichd == ICHD_PCMOUT) {
1008 snd_intel8x0_setup_pcm_out(chip, runtime);
1cfe43d2 1009 if (chip->device_type == DEVICE_INTEL_ICH4)
1da177e4 1010 ichdev->pos_shift = (runtime->sample_bits > 16) ? 2 : 1;
1da177e4
LT
1011 }
1012 snd_intel8x0_setup_periods(chip, ichdev);
1da177e4
LT
1013 return 0;
1014}
1015
1016static snd_pcm_uframes_t snd_intel8x0_pcm_pointer(snd_pcm_substream_t * substream)
1017{
1018 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1019 ichdev_t *ichdev = get_ichdev(substream);
1020 size_t ptr1, ptr;
1021 int civ, timeout = 100;
1022 unsigned int position;
1023
1024 spin_lock(&chip->reg_lock);
1025 do {
1026 civ = igetbyte(chip, ichdev->reg_offset + ICH_REG_OFF_CIV);
1027 ptr1 = igetword(chip, ichdev->reg_offset + ichdev->roff_picb);
1028 position = ichdev->position;
1029 if (ptr1 == 0) {
1030 udelay(10);
1031 continue;
1032 }
1033 if (civ == igetbyte(chip, ichdev->reg_offset + ICH_REG_OFF_CIV) &&
1034 ptr1 == igetword(chip, ichdev->reg_offset + ichdev->roff_picb))
1035 break;
1036 } while (timeout--);
1037 ptr1 <<= ichdev->pos_shift;
1038 ptr = ichdev->fragsize1 - ptr1;
1039 ptr += position;
1040 spin_unlock(&chip->reg_lock);
1041 if (ptr >= ichdev->size)
1042 return 0;
1043 return bytes_to_frames(substream->runtime, ptr);
1044}
1045
1046static snd_pcm_hardware_t snd_intel8x0_stream =
1047{
1048 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1049 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1050 SNDRV_PCM_INFO_MMAP_VALID |
1051 SNDRV_PCM_INFO_PAUSE |
1052 SNDRV_PCM_INFO_RESUME),
1053 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1054 .rates = SNDRV_PCM_RATE_48000,
1055 .rate_min = 48000,
1056 .rate_max = 48000,
1057 .channels_min = 2,
1058 .channels_max = 2,
1059 .buffer_bytes_max = 128 * 1024,
1060 .period_bytes_min = 32,
1061 .period_bytes_max = 128 * 1024,
1062 .periods_min = 1,
1063 .periods_max = 1024,
1064 .fifo_size = 0,
1065};
1066
1067static unsigned int channels4[] = {
1068 2, 4,
1069};
1070
1071static snd_pcm_hw_constraint_list_t hw_constraints_channels4 = {
1072 .count = ARRAY_SIZE(channels4),
1073 .list = channels4,
1074 .mask = 0,
1075};
1076
1077static unsigned int channels6[] = {
1078 2, 4, 6,
1079};
1080
1081static snd_pcm_hw_constraint_list_t hw_constraints_channels6 = {
1082 .count = ARRAY_SIZE(channels6),
1083 .list = channels6,
1084 .mask = 0,
1085};
1086
1087static int snd_intel8x0_pcm_open(snd_pcm_substream_t * substream, ichdev_t *ichdev)
1088{
1089 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1090 snd_pcm_runtime_t *runtime = substream->runtime;
1091 int err;
1092
1093 ichdev->substream = substream;
1094 runtime->hw = snd_intel8x0_stream;
1095 runtime->hw.rates = ichdev->pcm->rates;
1096 snd_pcm_limit_hw_rates(runtime);
1097 if (chip->device_type == DEVICE_SIS) {
1098 runtime->hw.buffer_bytes_max = 64*1024;
1099 runtime->hw.period_bytes_max = 64*1024;
1100 }
1101 if ((err = snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS)) < 0)
1102 return err;
1103 runtime->private_data = ichdev;
1104 return 0;
1105}
1106
1107static int snd_intel8x0_playback_open(snd_pcm_substream_t * substream)
1108{
1109 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1110 snd_pcm_runtime_t *runtime = substream->runtime;
1111 int err;
1112
1113 err = snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCMOUT]);
1114 if (err < 0)
1115 return err;
1116
1117 if (chip->multi6) {
1118 runtime->hw.channels_max = 6;
1119 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels6);
1120 } else if (chip->multi4) {
1121 runtime->hw.channels_max = 4;
1122 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, &hw_constraints_channels4);
1123 }
1124 if (chip->dra) {
1125 snd_ac97_pcm_double_rate_rules(runtime);
1126 }
1127 if (chip->smp20bit) {
1128 runtime->hw.formats |= SNDRV_PCM_FMTBIT_S32_LE;
1129 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 20);
1130 }
1131 return 0;
1132}
1133
1134static int snd_intel8x0_playback_close(snd_pcm_substream_t * substream)
1135{
1136 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1137
1138 chip->ichd[ICHD_PCMOUT].substream = NULL;
1139 return 0;
1140}
1141
1142static int snd_intel8x0_capture_open(snd_pcm_substream_t * substream)
1143{
1144 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1145
1146 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCMIN]);
1147}
1148
1149static int snd_intel8x0_capture_close(snd_pcm_substream_t * substream)
1150{
1151 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1152
1153 chip->ichd[ICHD_PCMIN].substream = NULL;
1154 return 0;
1155}
1156
1157static int snd_intel8x0_mic_open(snd_pcm_substream_t * substream)
1158{
1159 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1160
1161 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_MIC]);
1162}
1163
1164static int snd_intel8x0_mic_close(snd_pcm_substream_t * substream)
1165{
1166 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1167
1168 chip->ichd[ICHD_MIC].substream = NULL;
1169 return 0;
1170}
1171
1172static int snd_intel8x0_mic2_open(snd_pcm_substream_t * substream)
1173{
1174 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1175
1176 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_MIC2]);
1177}
1178
1179static int snd_intel8x0_mic2_close(snd_pcm_substream_t * substream)
1180{
1181 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1182
1183 chip->ichd[ICHD_MIC2].substream = NULL;
1184 return 0;
1185}
1186
1187static int snd_intel8x0_capture2_open(snd_pcm_substream_t * substream)
1188{
1189 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1190
1191 return snd_intel8x0_pcm_open(substream, &chip->ichd[ICHD_PCM2IN]);
1192}
1193
1194static int snd_intel8x0_capture2_close(snd_pcm_substream_t * substream)
1195{
1196 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1197
1198 chip->ichd[ICHD_PCM2IN].substream = NULL;
1199 return 0;
1200}
1201
1202static int snd_intel8x0_spdif_open(snd_pcm_substream_t * substream)
1203{
1204 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1205 int idx = chip->device_type == DEVICE_NFORCE ? NVD_SPBAR : ICHD_SPBAR;
1206
1207 return snd_intel8x0_pcm_open(substream, &chip->ichd[idx]);
1208}
1209
1210static int snd_intel8x0_spdif_close(snd_pcm_substream_t * substream)
1211{
1212 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1213 int idx = chip->device_type == DEVICE_NFORCE ? NVD_SPBAR : ICHD_SPBAR;
1214
1215 chip->ichd[idx].substream = NULL;
1216 return 0;
1217}
1218
1219static int snd_intel8x0_ali_ac97spdifout_open(snd_pcm_substream_t * substream)
1220{
1221 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1222 unsigned int val;
1223
1224 spin_lock_irq(&chip->reg_lock);
1225 val = igetdword(chip, ICHREG(ALI_INTERFACECR));
1226 val |= ICH_ALI_IF_AC97SP;
1227 iputdword(chip, ICHREG(ALI_INTERFACECR), val);
1228 /* also needs to set ALI_SC_CODEC_SPDF correctly */
1229 spin_unlock_irq(&chip->reg_lock);
1230
1231 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_AC97SPDIFOUT]);
1232}
1233
1234static int snd_intel8x0_ali_ac97spdifout_close(snd_pcm_substream_t * substream)
1235{
1236 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1237 unsigned int val;
1238
1239 chip->ichd[ALID_AC97SPDIFOUT].substream = NULL;
1240 spin_lock_irq(&chip->reg_lock);
1241 val = igetdword(chip, ICHREG(ALI_INTERFACECR));
1242 val &= ~ICH_ALI_IF_AC97SP;
1243 iputdword(chip, ICHREG(ALI_INTERFACECR), val);
1244 spin_unlock_irq(&chip->reg_lock);
1245
1246 return 0;
1247}
1248
1249static int snd_intel8x0_ali_spdifin_open(snd_pcm_substream_t * substream)
1250{
1251 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1252
1253 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_SPDIFIN]);
1254}
1255
1256static int snd_intel8x0_ali_spdifin_close(snd_pcm_substream_t * substream)
1257{
1258 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1259
1260 chip->ichd[ALID_SPDIFIN].substream = NULL;
1261 return 0;
1262}
1263
1264#if 0 // NYI
1265static int snd_intel8x0_ali_spdifout_open(snd_pcm_substream_t * substream)
1266{
1267 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1268
1269 return snd_intel8x0_pcm_open(substream, &chip->ichd[ALID_SPDIFOUT]);
1270}
1271
1272static int snd_intel8x0_ali_spdifout_close(snd_pcm_substream_t * substream)
1273{
1274 intel8x0_t *chip = snd_pcm_substream_chip(substream);
1275
1276 chip->ichd[ALID_SPDIFOUT].substream = NULL;
1277 return 0;
1278}
1279#endif
1280
1281static snd_pcm_ops_t snd_intel8x0_playback_ops = {
1282 .open = snd_intel8x0_playback_open,
1283 .close = snd_intel8x0_playback_close,
1284 .ioctl = snd_pcm_lib_ioctl,
1285 .hw_params = snd_intel8x0_hw_params,
1286 .hw_free = snd_intel8x0_hw_free,
1287 .prepare = snd_intel8x0_pcm_prepare,
1288 .trigger = snd_intel8x0_pcm_trigger,
1289 .pointer = snd_intel8x0_pcm_pointer,
1290};
1291
1292static snd_pcm_ops_t snd_intel8x0_capture_ops = {
1293 .open = snd_intel8x0_capture_open,
1294 .close = snd_intel8x0_capture_close,
1295 .ioctl = snd_pcm_lib_ioctl,
1296 .hw_params = snd_intel8x0_hw_params,
1297 .hw_free = snd_intel8x0_hw_free,
1298 .prepare = snd_intel8x0_pcm_prepare,
1299 .trigger = snd_intel8x0_pcm_trigger,
1300 .pointer = snd_intel8x0_pcm_pointer,
1301};
1302
1303static snd_pcm_ops_t snd_intel8x0_capture_mic_ops = {
1304 .open = snd_intel8x0_mic_open,
1305 .close = snd_intel8x0_mic_close,
1306 .ioctl = snd_pcm_lib_ioctl,
1307 .hw_params = snd_intel8x0_hw_params,
1308 .hw_free = snd_intel8x0_hw_free,
1309 .prepare = snd_intel8x0_pcm_prepare,
1310 .trigger = snd_intel8x0_pcm_trigger,
1311 .pointer = snd_intel8x0_pcm_pointer,
1312};
1313
1314static snd_pcm_ops_t snd_intel8x0_capture_mic2_ops = {
1315 .open = snd_intel8x0_mic2_open,
1316 .close = snd_intel8x0_mic2_close,
1317 .ioctl = snd_pcm_lib_ioctl,
1318 .hw_params = snd_intel8x0_hw_params,
1319 .hw_free = snd_intel8x0_hw_free,
1320 .prepare = snd_intel8x0_pcm_prepare,
1321 .trigger = snd_intel8x0_pcm_trigger,
1322 .pointer = snd_intel8x0_pcm_pointer,
1323};
1324
1325static snd_pcm_ops_t snd_intel8x0_capture2_ops = {
1326 .open = snd_intel8x0_capture2_open,
1327 .close = snd_intel8x0_capture2_close,
1328 .ioctl = snd_pcm_lib_ioctl,
1329 .hw_params = snd_intel8x0_hw_params,
1330 .hw_free = snd_intel8x0_hw_free,
1331 .prepare = snd_intel8x0_pcm_prepare,
1332 .trigger = snd_intel8x0_pcm_trigger,
1333 .pointer = snd_intel8x0_pcm_pointer,
1334};
1335
1336static snd_pcm_ops_t snd_intel8x0_spdif_ops = {
1337 .open = snd_intel8x0_spdif_open,
1338 .close = snd_intel8x0_spdif_close,
1339 .ioctl = snd_pcm_lib_ioctl,
1340 .hw_params = snd_intel8x0_hw_params,
1341 .hw_free = snd_intel8x0_hw_free,
1342 .prepare = snd_intel8x0_pcm_prepare,
1343 .trigger = snd_intel8x0_pcm_trigger,
1344 .pointer = snd_intel8x0_pcm_pointer,
1345};
1346
1347static snd_pcm_ops_t snd_intel8x0_ali_playback_ops = {
1348 .open = snd_intel8x0_playback_open,
1349 .close = snd_intel8x0_playback_close,
1350 .ioctl = snd_pcm_lib_ioctl,
1351 .hw_params = snd_intel8x0_hw_params,
1352 .hw_free = snd_intel8x0_hw_free,
1353 .prepare = snd_intel8x0_pcm_prepare,
1354 .trigger = snd_intel8x0_ali_trigger,
1355 .pointer = snd_intel8x0_pcm_pointer,
1356};
1357
1358static snd_pcm_ops_t snd_intel8x0_ali_capture_ops = {
1359 .open = snd_intel8x0_capture_open,
1360 .close = snd_intel8x0_capture_close,
1361 .ioctl = snd_pcm_lib_ioctl,
1362 .hw_params = snd_intel8x0_hw_params,
1363 .hw_free = snd_intel8x0_hw_free,
1364 .prepare = snd_intel8x0_pcm_prepare,
1365 .trigger = snd_intel8x0_ali_trigger,
1366 .pointer = snd_intel8x0_pcm_pointer,
1367};
1368
1369static snd_pcm_ops_t snd_intel8x0_ali_capture_mic_ops = {
1370 .open = snd_intel8x0_mic_open,
1371 .close = snd_intel8x0_mic_close,
1372 .ioctl = snd_pcm_lib_ioctl,
1373 .hw_params = snd_intel8x0_hw_params,
1374 .hw_free = snd_intel8x0_hw_free,
1375 .prepare = snd_intel8x0_pcm_prepare,
1376 .trigger = snd_intel8x0_ali_trigger,
1377 .pointer = snd_intel8x0_pcm_pointer,
1378};
1379
1380static snd_pcm_ops_t snd_intel8x0_ali_ac97spdifout_ops = {
1381 .open = snd_intel8x0_ali_ac97spdifout_open,
1382 .close = snd_intel8x0_ali_ac97spdifout_close,
1383 .ioctl = snd_pcm_lib_ioctl,
1384 .hw_params = snd_intel8x0_hw_params,
1385 .hw_free = snd_intel8x0_hw_free,
1386 .prepare = snd_intel8x0_pcm_prepare,
1387 .trigger = snd_intel8x0_ali_trigger,
1388 .pointer = snd_intel8x0_pcm_pointer,
1389};
1390
1391static snd_pcm_ops_t snd_intel8x0_ali_spdifin_ops = {
1392 .open = snd_intel8x0_ali_spdifin_open,
1393 .close = snd_intel8x0_ali_spdifin_close,
1394 .ioctl = snd_pcm_lib_ioctl,
1395 .hw_params = snd_intel8x0_hw_params,
1396 .hw_free = snd_intel8x0_hw_free,
1397 .prepare = snd_intel8x0_pcm_prepare,
1398 .trigger = snd_intel8x0_pcm_trigger,
1399 .pointer = snd_intel8x0_pcm_pointer,
1400};
1401
1402#if 0 // NYI
1403static snd_pcm_ops_t snd_intel8x0_ali_spdifout_ops = {
1404 .open = snd_intel8x0_ali_spdifout_open,
1405 .close = snd_intel8x0_ali_spdifout_close,
1406 .ioctl = snd_pcm_lib_ioctl,
1407 .hw_params = snd_intel8x0_hw_params,
1408 .hw_free = snd_intel8x0_hw_free,
1409 .prepare = snd_intel8x0_pcm_prepare,
1410 .trigger = snd_intel8x0_pcm_trigger,
1411 .pointer = snd_intel8x0_pcm_pointer,
1412};
1413#endif // NYI
1414
1415struct ich_pcm_table {
1416 char *suffix;
1417 snd_pcm_ops_t *playback_ops;
1418 snd_pcm_ops_t *capture_ops;
1419 size_t prealloc_size;
1420 size_t prealloc_max_size;
1421 int ac97_idx;
1422};
1423
1424static int __devinit snd_intel8x0_pcm1(intel8x0_t *chip, int device, struct ich_pcm_table *rec)
1425{
1426 snd_pcm_t *pcm;
1427 int err;
1428 char name[32];
1429
1430 if (rec->suffix)
1431 sprintf(name, "Intel ICH - %s", rec->suffix);
1432 else
1433 strcpy(name, "Intel ICH");
1434 err = snd_pcm_new(chip->card, name, device,
1435 rec->playback_ops ? 1 : 0,
1436 rec->capture_ops ? 1 : 0, &pcm);
1437 if (err < 0)
1438 return err;
1439
1440 if (rec->playback_ops)
1441 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, rec->playback_ops);
1442 if (rec->capture_ops)
1443 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, rec->capture_ops);
1444
1445 pcm->private_data = chip;
1446 pcm->info_flags = 0;
1447 if (rec->suffix)
1448 sprintf(pcm->name, "%s - %s", chip->card->shortname, rec->suffix);
1449 else
1450 strcpy(pcm->name, chip->card->shortname);
1451 chip->pcm[device] = pcm;
1452
1453 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1454 rec->prealloc_size, rec->prealloc_max_size);
1455
1456 return 0;
1457}
1458
1459static struct ich_pcm_table intel_pcms[] __devinitdata = {
1460 {
1461 .playback_ops = &snd_intel8x0_playback_ops,
1462 .capture_ops = &snd_intel8x0_capture_ops,
1463 .prealloc_size = 64 * 1024,
1464 .prealloc_max_size = 128 * 1024,
1465 },
1466 {
1467 .suffix = "MIC ADC",
1468 .capture_ops = &snd_intel8x0_capture_mic_ops,
1469 .prealloc_size = 0,
1470 .prealloc_max_size = 128 * 1024,
1471 .ac97_idx = ICHD_MIC,
1472 },
1473 {
1474 .suffix = "MIC2 ADC",
1475 .capture_ops = &snd_intel8x0_capture_mic2_ops,
1476 .prealloc_size = 0,
1477 .prealloc_max_size = 128 * 1024,
1478 .ac97_idx = ICHD_MIC2,
1479 },
1480 {
1481 .suffix = "ADC2",
1482 .capture_ops = &snd_intel8x0_capture2_ops,
1483 .prealloc_size = 0,
1484 .prealloc_max_size = 128 * 1024,
1485 .ac97_idx = ICHD_PCM2IN,
1486 },
1487 {
1488 .suffix = "IEC958",
1489 .playback_ops = &snd_intel8x0_spdif_ops,
1490 .prealloc_size = 64 * 1024,
1491 .prealloc_max_size = 128 * 1024,
1492 .ac97_idx = ICHD_SPBAR,
1493 },
1494};
1495
1496static struct ich_pcm_table nforce_pcms[] __devinitdata = {
1497 {
1498 .playback_ops = &snd_intel8x0_playback_ops,
1499 .capture_ops = &snd_intel8x0_capture_ops,
1500 .prealloc_size = 64 * 1024,
1501 .prealloc_max_size = 128 * 1024,
1502 },
1503 {
1504 .suffix = "MIC ADC",
1505 .capture_ops = &snd_intel8x0_capture_mic_ops,
1506 .prealloc_size = 0,
1507 .prealloc_max_size = 128 * 1024,
1508 .ac97_idx = NVD_MIC,
1509 },
1510 {
1511 .suffix = "IEC958",
1512 .playback_ops = &snd_intel8x0_spdif_ops,
1513 .prealloc_size = 64 * 1024,
1514 .prealloc_max_size = 128 * 1024,
1515 .ac97_idx = NVD_SPBAR,
1516 },
1517};
1518
1519static struct ich_pcm_table ali_pcms[] __devinitdata = {
1520 {
1521 .playback_ops = &snd_intel8x0_ali_playback_ops,
1522 .capture_ops = &snd_intel8x0_ali_capture_ops,
1523 .prealloc_size = 64 * 1024,
1524 .prealloc_max_size = 128 * 1024,
1525 },
1526 {
1527 .suffix = "MIC ADC",
1528 .capture_ops = &snd_intel8x0_ali_capture_mic_ops,
1529 .prealloc_size = 0,
1530 .prealloc_max_size = 128 * 1024,
1531 .ac97_idx = ALID_MIC,
1532 },
1533 {
1534 .suffix = "IEC958",
1535 .playback_ops = &snd_intel8x0_ali_ac97spdifout_ops,
1536 .capture_ops = &snd_intel8x0_ali_spdifin_ops,
1537 .prealloc_size = 64 * 1024,
1538 .prealloc_max_size = 128 * 1024,
1539 .ac97_idx = ALID_AC97SPDIFOUT,
1540 },
1541#if 0 // NYI
1542 {
1543 .suffix = "HW IEC958",
1544 .playback_ops = &snd_intel8x0_ali_spdifout_ops,
1545 .prealloc_size = 64 * 1024,
1546 .prealloc_max_size = 128 * 1024,
1547 },
1548#endif
1549};
1550
1551static int __devinit snd_intel8x0_pcm(intel8x0_t *chip)
1552{
1553 int i, tblsize, device, err;
1554 struct ich_pcm_table *tbl, *rec;
1555
1556 switch (chip->device_type) {
1557 case DEVICE_INTEL_ICH4:
1558 tbl = intel_pcms;
1559 tblsize = ARRAY_SIZE(intel_pcms);
1560 break;
1561 case DEVICE_NFORCE:
1562 tbl = nforce_pcms;
1563 tblsize = ARRAY_SIZE(nforce_pcms);
1564 break;
1565 case DEVICE_ALI:
1566 tbl = ali_pcms;
1567 tblsize = ARRAY_SIZE(ali_pcms);
1568 break;
1569 default:
1570 tbl = intel_pcms;
1571 tblsize = 2;
1572 break;
1573 }
1574
1575 device = 0;
1576 for (i = 0; i < tblsize; i++) {
1577 rec = tbl + i;
1578 if (i > 0 && rec->ac97_idx) {
1579 /* activate PCM only when associated AC'97 codec */
1580 if (! chip->ichd[rec->ac97_idx].pcm)
1581 continue;
1582 }
1583 err = snd_intel8x0_pcm1(chip, device, rec);
1584 if (err < 0)
1585 return err;
1586 device++;
1587 }
1588
1589 chip->pcm_devs = device;
1590 return 0;
1591}
1592
1593
1594/*
1595 * Mixer part
1596 */
1597
1598static void snd_intel8x0_mixer_free_ac97_bus(ac97_bus_t *bus)
1599{
1600 intel8x0_t *chip = bus->private_data;
1601 chip->ac97_bus = NULL;
1602}
1603
1604static void snd_intel8x0_mixer_free_ac97(ac97_t *ac97)
1605{
1606 intel8x0_t *chip = ac97->private_data;
1607 chip->ac97[ac97->num] = NULL;
1608}
1609
1610static struct ac97_pcm ac97_pcm_defs[] __devinitdata = {
1611 /* front PCM */
1612 {
1613 .exclusive = 1,
1614 .r = { {
1615 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1616 (1 << AC97_SLOT_PCM_RIGHT) |
1617 (1 << AC97_SLOT_PCM_CENTER) |
1618 (1 << AC97_SLOT_PCM_SLEFT) |
1619 (1 << AC97_SLOT_PCM_SRIGHT) |
1620 (1 << AC97_SLOT_LFE)
1621 },
1622 {
1623 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1624 (1 << AC97_SLOT_PCM_RIGHT) |
1625 (1 << AC97_SLOT_PCM_LEFT_0) |
1626 (1 << AC97_SLOT_PCM_RIGHT_0)
1627 }
1628 }
1629 },
1630 /* PCM IN #1 */
1631 {
1632 .stream = 1,
1633 .exclusive = 1,
1634 .r = { {
1635 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1636 (1 << AC97_SLOT_PCM_RIGHT)
1637 }
1638 }
1639 },
1640 /* MIC IN #1 */
1641 {
1642 .stream = 1,
1643 .exclusive = 1,
1644 .r = { {
1645 .slots = (1 << AC97_SLOT_MIC)
1646 }
1647 }
1648 },
1649 /* S/PDIF PCM */
1650 {
1651 .exclusive = 1,
1652 .spdif = 1,
1653 .r = { {
1654 .slots = (1 << AC97_SLOT_SPDIF_LEFT2) |
1655 (1 << AC97_SLOT_SPDIF_RIGHT2)
1656 }
1657 }
1658 },
1659 /* PCM IN #2 */
1660 {
1661 .stream = 1,
1662 .exclusive = 1,
1663 .r = { {
1664 .slots = (1 << AC97_SLOT_PCM_LEFT) |
1665 (1 << AC97_SLOT_PCM_RIGHT)
1666 }
1667 }
1668 },
1669 /* MIC IN #2 */
1670 {
1671 .stream = 1,
1672 .exclusive = 1,
1673 .r = { {
1674 .slots = (1 << AC97_SLOT_MIC)
1675 }
1676 }
1677 },
1678};
1679
1680static struct ac97_quirk ac97_quirks[] __devinitdata = {
1681 {
6fd8b87f
JCD
1682 .subvendor = 0x0e11,
1683 .subdevice = 0x008a,
1da177e4
LT
1684 .name = "Compaq Evo W4000", /* AD1885 */
1685 .type = AC97_TUNE_HP_ONLY
1686 },
1687 {
6fd8b87f
JCD
1688 .subvendor = 0x0e11,
1689 .subdevice = 0x00b8,
1da177e4
LT
1690 .name = "Compaq Evo D510C",
1691 .type = AC97_TUNE_HP_ONLY
1692 },
1693 {
6fd8b87f
JCD
1694 .subvendor = 0x0e11,
1695 .subdevice = 0x0860,
1da177e4
LT
1696 .name = "HP/Compaq nx7010",
1697 .type = AC97_TUNE_MUTE_LED
1698 },
1699 {
6fd8b87f
JCD
1700 .subvendor = 0x1014,
1701 .subdevice = 0x1f00,
1da177e4
LT
1702 .name = "MS-9128",
1703 .type = AC97_TUNE_ALC_JACK
1704 },
5d529390
TI
1705 {
1706 .subvendor = 0x1014,
1707 .subdevice = 0x0267,
1708 .name = "IBM NetVista A30p", /* AD1981B */
1709 .type = AC97_TUNE_HP_ONLY
1710 },
1da177e4 1711 {
6fd8b87f
JCD
1712 .subvendor = 0x1028,
1713 .subdevice = 0x00d8,
1da177e4
LT
1714 .name = "Dell Precision 530", /* AD1885 */
1715 .type = AC97_TUNE_HP_ONLY
1716 },
1717 {
6fd8b87f
JCD
1718 .subvendor = 0x1028,
1719 .subdevice = 0x010d,
1da177e4
LT
1720 .name = "Dell", /* which model? AD1885 */
1721 .type = AC97_TUNE_HP_ONLY
1722 },
1723 {
6fd8b87f
JCD
1724 .subvendor = 0x1028,
1725 .subdevice = 0x0126,
1da177e4
LT
1726 .name = "Dell Optiplex GX260", /* AD1981A */
1727 .type = AC97_TUNE_HP_ONLY
1728 },
1729 {
6fd8b87f
JCD
1730 .subvendor = 0x1028,
1731 .subdevice = 0x012c,
1da177e4
LT
1732 .name = "Dell Precision 650", /* AD1981A */
1733 .type = AC97_TUNE_HP_ONLY
1734 },
1735 {
6fd8b87f
JCD
1736 .subvendor = 0x1028,
1737 .subdevice = 0x012d,
1da177e4
LT
1738 .name = "Dell Precision 450", /* AD1981B*/
1739 .type = AC97_TUNE_HP_ONLY
1740 },
1741 {
6fd8b87f
JCD
1742 .subvendor = 0x1028,
1743 .subdevice = 0x0147,
1da177e4
LT
1744 .name = "Dell", /* which model? AD1981B*/
1745 .type = AC97_TUNE_HP_ONLY
1746 },
1747 {
6fd8b87f
JCD
1748 .subvendor = 0x1028,
1749 .subdevice = 0x0163,
1da177e4
LT
1750 .name = "Dell Unknown", /* STAC9750/51 */
1751 .type = AC97_TUNE_HP_ONLY
1752 },
1753 {
6fd8b87f
JCD
1754 .subvendor = 0x103c,
1755 .subdevice = 0x006d,
1da177e4
LT
1756 .name = "HP zv5000",
1757 .type = AC97_TUNE_MUTE_LED /*AD1981B*/
1758 },
1759 { /* FIXME: which codec? */
6fd8b87f
JCD
1760 .subvendor = 0x103c,
1761 .subdevice = 0x00c3,
1da177e4
LT
1762 .name = "HP xw6000",
1763 .type = AC97_TUNE_HP_ONLY
1764 },
1765 {
6fd8b87f
JCD
1766 .subvendor = 0x103c,
1767 .subdevice = 0x088c,
1da177e4
LT
1768 .name = "HP nc8000",
1769 .type = AC97_TUNE_MUTE_LED
1770 },
1771 {
6fd8b87f
JCD
1772 .subvendor = 0x103c,
1773 .subdevice = 0x0890,
1da177e4
LT
1774 .name = "HP nc6000",
1775 .type = AC97_TUNE_MUTE_LED
1776 },
e0c93cf3
DH
1777 {
1778 .subvendor = 0x103c,
1779 .subdevice = 0x0934,
1780 .name = "HP nx8220",
1781 .type = AC97_TUNE_MUTE_LED
1782 },
66d10647
SV
1783 {
1784 .subvendor = 0x103c,
1785 .subdevice = 0x099c,
1786 .name = "HP nx6110", /* AD1981B */
1787 .type = AC97_TUNE_HP_ONLY
1788 },
1da177e4 1789 {
6fd8b87f
JCD
1790 .subvendor = 0x103c,
1791 .subdevice = 0x129d,
1da177e4
LT
1792 .name = "HP xw8000",
1793 .type = AC97_TUNE_HP_ONLY
1794 },
1795 {
6fd8b87f
JCD
1796 .subvendor = 0x103c,
1797 .subdevice = 0x12f1,
1da177e4
LT
1798 .name = "HP xw8200", /* AD1981B*/
1799 .type = AC97_TUNE_HP_ONLY
1800 },
1801 {
6fd8b87f
JCD
1802 .subvendor = 0x103c,
1803 .subdevice = 0x12f2,
1da177e4
LT
1804 .name = "HP xw6200",
1805 .type = AC97_TUNE_HP_ONLY
1806 },
1807 {
6fd8b87f
JCD
1808 .subvendor = 0x103c,
1809 .subdevice = 0x3008,
1da177e4
LT
1810 .name = "HP xw4200", /* AD1981B*/
1811 .type = AC97_TUNE_HP_ONLY
1812 },
1813 {
6fd8b87f
JCD
1814 .subvendor = 0x104d,
1815 .subdevice = 0x8197,
1da177e4
LT
1816 .name = "Sony S1XP",
1817 .type = AC97_TUNE_INV_EAPD
1818 },
1819 {
6fd8b87f
JCD
1820 .subvendor = 0x1043,
1821 .subdevice = 0x80f3,
1da177e4
LT
1822 .name = "ASUS ICH5/AD1985",
1823 .type = AC97_TUNE_AD_SHARING
1824 },
1825 {
6fd8b87f
JCD
1826 .subvendor = 0x10cf,
1827 .subdevice = 0x11c3,
1da177e4
LT
1828 .name = "Fujitsu-Siemens E4010",
1829 .type = AC97_TUNE_HP_ONLY
1830 },
98c7f212
TI
1831 {
1832 .subvendor = 0x10cf,
1833 .subdevice = 0x1225,
1834 .name = "Fujitsu-Siemens T3010",
1835 .type = AC97_TUNE_HP_ONLY
1836 },
1da177e4 1837 {
6fd8b87f
JCD
1838 .subvendor = 0x10cf,
1839 .subdevice = 0x1253,
1da177e4
LT
1840 .name = "Fujitsu S6210", /* STAC9750/51 */
1841 .type = AC97_TUNE_HP_ONLY
1842 },
9970dce5
TI
1843 {
1844 .subvendor = 0x10cf,
1845 .subdevice = 0x12ec,
1846 .name = "Fujitsu-Siemens 4010",
1847 .type = AC97_TUNE_HP_ONLY
1848 },
1da177e4 1849 {
6fd8b87f
JCD
1850 .subvendor = 0x10f1,
1851 .subdevice = 0x2665,
1da177e4
LT
1852 .name = "Fujitsu-Siemens Celsius", /* AD1981? */
1853 .type = AC97_TUNE_HP_ONLY
1854 },
1855 {
6fd8b87f
JCD
1856 .subvendor = 0x10f1,
1857 .subdevice = 0x2885,
1da177e4
LT
1858 .name = "AMD64 Mobo", /* ALC650 */
1859 .type = AC97_TUNE_HP_ONLY
1860 },
1861 {
6fd8b87f
JCD
1862 .subvendor = 0x110a,
1863 .subdevice = 0x0056,
1da177e4
LT
1864 .name = "Fujitsu-Siemens Scenic", /* AD1981? */
1865 .type = AC97_TUNE_HP_ONLY
1866 },
1867 {
6fd8b87f
JCD
1868 .subvendor = 0x11d4,
1869 .subdevice = 0x5375,
1da177e4
LT
1870 .name = "ADI AD1985 (discrete)",
1871 .type = AC97_TUNE_HP_ONLY
1872 },
1873 {
6fd8b87f
JCD
1874 .subvendor = 0x1462,
1875 .subdevice = 0x5470,
1da177e4
LT
1876 .name = "MSI P4 ATX 645 Ultra",
1877 .type = AC97_TUNE_HP_ONLY
1878 },
1879 {
6fd8b87f
JCD
1880 .subvendor = 0x1734,
1881 .subdevice = 0x0088,
1da177e4
LT
1882 .name = "Fujitsu-Siemens D1522", /* AD1981 */
1883 .type = AC97_TUNE_HP_ONLY
1884 },
1885 {
6fd8b87f
JCD
1886 .subvendor = 0x8086,
1887 .subdevice = 0x2000,
1da177e4
LT
1888 .mask = 0xfff0,
1889 .name = "Intel ICH5/AD1985",
1890 .type = AC97_TUNE_AD_SHARING
1891 },
1892 {
6fd8b87f
JCD
1893 .subvendor = 0x8086,
1894 .subdevice = 0x4000,
1da177e4
LT
1895 .mask = 0xfff0,
1896 .name = "Intel ICH5/AD1985",
1897 .type = AC97_TUNE_AD_SHARING
1898 },
1899 {
6fd8b87f
JCD
1900 .subvendor = 0x8086,
1901 .subdevice = 0x4856,
1da177e4
LT
1902 .name = "Intel D845WN (82801BA)",
1903 .type = AC97_TUNE_SWAP_HP
1904 },
1905 {
6fd8b87f
JCD
1906 .subvendor = 0x8086,
1907 .subdevice = 0x4d44,
1da177e4
LT
1908 .name = "Intel D850EMV2", /* AD1885 */
1909 .type = AC97_TUNE_HP_ONLY
1910 },
1911 {
6fd8b87f
JCD
1912 .subvendor = 0x8086,
1913 .subdevice = 0x4d56,
1da177e4
LT
1914 .name = "Intel ICH/AD1885",
1915 .type = AC97_TUNE_HP_ONLY
1916 },
1917 {
6fd8b87f
JCD
1918 .subvendor = 0x8086,
1919 .subdevice = 0x6000,
1da177e4
LT
1920 .mask = 0xfff0,
1921 .name = "Intel ICH5/AD1985",
1922 .type = AC97_TUNE_AD_SHARING
1923 },
1924 {
6fd8b87f
JCD
1925 .subvendor = 0x8086,
1926 .subdevice = 0xe000,
1da177e4
LT
1927 .mask = 0xfff0,
1928 .name = "Intel ICH5/AD1985",
1929 .type = AC97_TUNE_AD_SHARING
1930 },
1931#if 0 /* FIXME: this seems wrong on most boards */
1932 {
6fd8b87f
JCD
1933 .subvendor = 0x8086,
1934 .subdevice = 0xa000,
1da177e4
LT
1935 .mask = 0xfff0,
1936 .name = "Intel ICH5/AD1985",
1937 .type = AC97_TUNE_HP_ONLY
1938 },
1939#endif
1940 { } /* terminator */
1941};
1942
1943static int __devinit snd_intel8x0_mixer(intel8x0_t *chip, int ac97_clock, const char *quirk_override)
1944{
1945 ac97_bus_t *pbus;
1946 ac97_template_t ac97;
1947 int err;
1948 unsigned int i, codecs;
1949 unsigned int glob_sta = 0;
1950 ac97_bus_ops_t *ops;
1951 static ac97_bus_ops_t standard_bus_ops = {
1952 .write = snd_intel8x0_codec_write,
1953 .read = snd_intel8x0_codec_read,
1954 };
1955 static ac97_bus_ops_t ali_bus_ops = {
1956 .write = snd_intel8x0_ali_codec_write,
1957 .read = snd_intel8x0_ali_codec_read,
1958 };
1959
1960 chip->spdif_idx = -1; /* use PCMOUT (or disabled) */
1961 switch (chip->device_type) {
1962 case DEVICE_NFORCE:
1963 chip->spdif_idx = NVD_SPBAR;
1964 break;
1965 case DEVICE_ALI:
1966 chip->spdif_idx = ALID_AC97SPDIFOUT;
1967 break;
1968 case DEVICE_INTEL_ICH4:
1969 chip->spdif_idx = ICHD_SPBAR;
1970 break;
1971 };
1972
1973 chip->in_ac97_init = 1;
1974
1975 memset(&ac97, 0, sizeof(ac97));
1976 ac97.private_data = chip;
1977 ac97.private_free = snd_intel8x0_mixer_free_ac97;
1978 ac97.scaps = AC97_SCAP_SKIP_MODEM;
1979 if (chip->xbox)
1980 ac97.scaps |= AC97_SCAP_DETECT_BY_VENDOR;
1981 if (chip->device_type != DEVICE_ALI) {
1982 glob_sta = igetdword(chip, ICHREG(GLOB_STA));
1983 ops = &standard_bus_ops;
1984 if (chip->device_type == DEVICE_INTEL_ICH4) {
1985 codecs = 0;
1986 if (glob_sta & ICH_PCR)
1987 codecs++;
1988 if (glob_sta & ICH_SCR)
1989 codecs++;
1990 if (glob_sta & ICH_TCR)
1991 codecs++;
1992 chip->in_sdin_init = 1;
1993 for (i = 0; i < codecs; i++) {
1994 snd_intel8x0_codec_read_test(chip, i);
1995 chip->ac97_sdin[i] = igetbyte(chip, ICHREG(SDM)) & ICH_LDI_MASK;
1996 }
1997 chip->in_sdin_init = 0;
1998 } else {
1999 codecs = glob_sta & ICH_SCR ? 2 : 1;
2000 }
2001 } else {
2002 ops = &ali_bus_ops;
2003 codecs = 1;
2004 /* detect the secondary codec */
2005 for (i = 0; i < 100; i++) {
2006 unsigned int reg = igetdword(chip, ICHREG(ALI_RTSR));
2007 if (reg & 0x40) {
2008 codecs = 2;
2009 break;
2010 }
2011 iputdword(chip, ICHREG(ALI_RTSR), reg | 0x40);
2012 udelay(1);
2013 }
2014 }
2015 if ((err = snd_ac97_bus(chip->card, 0, ops, chip, &pbus)) < 0)
2016 goto __err;
2017 pbus->private_free = snd_intel8x0_mixer_free_ac97_bus;
1da177e4
LT
2018 if (ac97_clock >= 8000 && ac97_clock <= 48000)
2019 pbus->clock = ac97_clock;
2020 /* FIXME: my test board doesn't work well with VRA... */
2021 if (chip->device_type == DEVICE_ALI)
2022 pbus->no_vra = 1;
2023 else
2024 pbus->dra = 1;
2025 chip->ac97_bus = pbus;
2026
2027 ac97.pci = chip->pci;
2028 for (i = 0; i < codecs; i++) {
2029 ac97.num = i;
2030 if ((err = snd_ac97_mixer(pbus, &ac97, &chip->ac97[i])) < 0) {
2031 if (err != -EACCES)
2032 snd_printk(KERN_ERR "Unable to initialize codec #%d\n", i);
2033 if (i == 0)
2034 goto __err;
2035 continue;
2036 }
2037 }
2038 /* tune up the primary codec */
2039 snd_ac97_tune_hardware(chip->ac97[0], ac97_quirks, quirk_override);
2040 /* enable separate SDINs for ICH4 */
2041 if (chip->device_type == DEVICE_INTEL_ICH4)
2042 pbus->isdin = 1;
2043 /* find the available PCM streams */
2044 i = ARRAY_SIZE(ac97_pcm_defs);
2045 if (chip->device_type != DEVICE_INTEL_ICH4)
2046 i -= 2; /* do not allocate PCM2IN and MIC2 */
2047 if (chip->spdif_idx < 0)
2048 i--; /* do not allocate S/PDIF */
2049 err = snd_ac97_pcm_assign(pbus, i, ac97_pcm_defs);
2050 if (err < 0)
2051 goto __err;
2052 chip->ichd[ICHD_PCMOUT].pcm = &pbus->pcms[0];
2053 chip->ichd[ICHD_PCMIN].pcm = &pbus->pcms[1];
2054 chip->ichd[ICHD_MIC].pcm = &pbus->pcms[2];
2055 if (chip->spdif_idx >= 0)
2056 chip->ichd[chip->spdif_idx].pcm = &pbus->pcms[3];
2057 if (chip->device_type == DEVICE_INTEL_ICH4) {
2058 chip->ichd[ICHD_PCM2IN].pcm = &pbus->pcms[4];
2059 chip->ichd[ICHD_MIC2].pcm = &pbus->pcms[5];
2060 }
2061 /* enable separate SDINs for ICH4 */
2062 if (chip->device_type == DEVICE_INTEL_ICH4) {
2063 struct ac97_pcm *pcm = chip->ichd[ICHD_PCM2IN].pcm;
2064 u8 tmp = igetbyte(chip, ICHREG(SDM));
2065 tmp &= ~(ICH_DI2L_MASK|ICH_DI1L_MASK);
2066 if (pcm) {
2067 tmp |= ICH_SE; /* steer enable for multiple SDINs */
2068 tmp |= chip->ac97_sdin[0] << ICH_DI1L_SHIFT;
2069 for (i = 1; i < 4; i++) {
2070 if (pcm->r[0].codec[i]) {
2071 tmp |= chip->ac97_sdin[pcm->r[0].codec[1]->num] << ICH_DI2L_SHIFT;
2072 break;
2073 }
2074 }
2075 } else {
2076 tmp &= ~ICH_SE; /* steer disable */
2077 }
2078 iputbyte(chip, ICHREG(SDM), tmp);
2079 }
2080 if (pbus->pcms[0].r[0].slots & (1 << AC97_SLOT_PCM_SLEFT)) {
2081 chip->multi4 = 1;
2082 if (pbus->pcms[0].r[0].slots & (1 << AC97_SLOT_LFE))
2083 chip->multi6 = 1;
2084 }
2085 if (pbus->pcms[0].r[1].rslots[0]) {
2086 chip->dra = 1;
2087 }
2088 if (chip->device_type == DEVICE_INTEL_ICH4) {
2089 if ((igetdword(chip, ICHREG(GLOB_STA)) & ICH_SAMPLE_CAP) == ICH_SAMPLE_16_20)
2090 chip->smp20bit = 1;
2091 }
2092 if (chip->device_type == DEVICE_NFORCE) {
2093 /* 48kHz only */
2094 chip->ichd[chip->spdif_idx].pcm->rates = SNDRV_PCM_RATE_48000;
2095 }
2096 if (chip->device_type == DEVICE_INTEL_ICH4) {
2097 /* use slot 10/11 for SPDIF */
2098 u32 val;
2099 val = igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_PCM_SPDIF_MASK;
2100 val |= ICH_PCM_SPDIF_1011;
2101 iputdword(chip, ICHREG(GLOB_CNT), val);
2102 snd_ac97_update_bits(chip->ac97[0], AC97_EXTENDED_STATUS, 0x03 << 4, 0x03 << 4);
2103 }
2104 chip->in_ac97_init = 0;
2105 return 0;
2106
2107 __err:
2108 /* clear the cold-reset bit for the next chance */
2109 if (chip->device_type != DEVICE_ALI)
2110 iputdword(chip, ICHREG(GLOB_CNT), igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_AC97COLD);
2111 return err;
2112}
2113
2114
2115/*
2116 *
2117 */
2118
2119static void do_ali_reset(intel8x0_t *chip)
2120{
2121 iputdword(chip, ICHREG(ALI_SCR), ICH_ALI_SC_RESET);
2122 iputdword(chip, ICHREG(ALI_FIFOCR1), 0x83838383);
2123 iputdword(chip, ICHREG(ALI_FIFOCR2), 0x83838383);
2124 iputdword(chip, ICHREG(ALI_FIFOCR3), 0x83838383);
2125 iputdword(chip, ICHREG(ALI_INTERFACECR),
2126 ICH_ALI_IF_MC|ICH_ALI_IF_PI|ICH_ALI_IF_PO);
2127 iputdword(chip, ICHREG(ALI_INTERRUPTCR), 0x00000000);
2128 iputdword(chip, ICHREG(ALI_INTERRUPTSR), 0x00000000);
2129}
2130
2131#define do_delay(chip) do {\
2132 set_current_state(TASK_UNINTERRUPTIBLE);\
2133 schedule_timeout(1);\
2134} while (0)
2135
2136static int snd_intel8x0_ich_chip_init(intel8x0_t *chip, int probing)
2137{
2138 unsigned long end_time;
2139 unsigned int cnt, status, nstatus;
2140
2141 /* put logic to right state */
2142 /* first clear status bits */
2143 status = ICH_RCS | ICH_MCINT | ICH_POINT | ICH_PIINT;
2144 if (chip->device_type == DEVICE_NFORCE)
2145 status |= ICH_NVSPINT;
2146 cnt = igetdword(chip, ICHREG(GLOB_STA));
2147 iputdword(chip, ICHREG(GLOB_STA), cnt & status);
2148
2149 /* ACLink on, 2 channels */
2150 cnt = igetdword(chip, ICHREG(GLOB_CNT));
2151 cnt &= ~(ICH_ACLINK | ICH_PCM_246_MASK);
2152 /* finish cold or do warm reset */
2153 cnt |= (cnt & ICH_AC97COLD) == 0 ? ICH_AC97COLD : ICH_AC97WARM;
2154 iputdword(chip, ICHREG(GLOB_CNT), cnt);
2155 end_time = (jiffies + (HZ / 4)) + 1;
2156 do {
2157 if ((igetdword(chip, ICHREG(GLOB_CNT)) & ICH_AC97WARM) == 0)
2158 goto __ok;
2159 do_delay(chip);
2160 } while (time_after_eq(end_time, jiffies));
2161 snd_printk("AC'97 warm reset still in progress? [0x%x]\n", igetdword(chip, ICHREG(GLOB_CNT)));
2162 return -EIO;
2163
2164 __ok:
2165 if (probing) {
2166 /* wait for any codec ready status.
2167 * Once it becomes ready it should remain ready
2168 * as long as we do not disable the ac97 link.
2169 */
2170 end_time = jiffies + HZ;
2171 do {
2172 status = igetdword(chip, ICHREG(GLOB_STA)) & (ICH_PCR | ICH_SCR | ICH_TCR);
2173 if (status)
2174 break;
2175 do_delay(chip);
2176 } while (time_after_eq(end_time, jiffies));
2177 if (! status) {
2178 /* no codec is found */
2179 snd_printk(KERN_ERR "codec_ready: codec is not ready [0x%x]\n", igetdword(chip, ICHREG(GLOB_STA)));
2180 return -EIO;
2181 }
2182
2183 if (chip->device_type == DEVICE_INTEL_ICH4)
2184 /* ICH4 can have three codecs */
2185 nstatus = ICH_PCR | ICH_SCR | ICH_TCR;
2186 else
2187 /* others up to two codecs */
2188 nstatus = ICH_PCR | ICH_SCR;
2189
2190 /* wait for other codecs ready status. */
2191 end_time = jiffies + HZ / 4;
2192 while (status != nstatus && time_after_eq(end_time, jiffies)) {
2193 do_delay(chip);
2194 status |= igetdword(chip, ICHREG(GLOB_STA)) & nstatus;
2195 }
2196
2197 } else {
2198 /* resume phase */
2199 int i;
2200 status = 0;
2201 for (i = 0; i < 3; i++)
2202 if (chip->ac97[i])
2203 status |= get_ich_codec_bit(chip, i);
2204 /* wait until all the probed codecs are ready */
2205 end_time = jiffies + HZ;
2206 do {
2207 nstatus = igetdword(chip, ICHREG(GLOB_STA)) & (ICH_PCR | ICH_SCR | ICH_TCR);
2208 if (status == nstatus)
2209 break;
2210 do_delay(chip);
2211 } while (time_after_eq(end_time, jiffies));
2212 }
2213
2214 if (chip->device_type == DEVICE_SIS) {
2215 /* unmute the output on SIS7012 */
2216 iputword(chip, 0x4c, igetword(chip, 0x4c) | 1);
2217 }
2218 if (chip->device_type == DEVICE_NFORCE) {
2219 /* enable SPDIF interrupt */
2220 unsigned int val;
2221 pci_read_config_dword(chip->pci, 0x4c, &val);
2222 val |= 0x1000000;
2223 pci_write_config_dword(chip->pci, 0x4c, val);
2224 }
2225 return 0;
2226}
2227
2228static int snd_intel8x0_ali_chip_init(intel8x0_t *chip, int probing)
2229{
2230 u32 reg;
2231 int i = 0;
2232
2233 reg = igetdword(chip, ICHREG(ALI_SCR));
2234 if ((reg & 2) == 0) /* Cold required */
2235 reg |= 2;
2236 else
2237 reg |= 1; /* Warm */
2238 reg &= ~0x80000000; /* ACLink on */
2239 iputdword(chip, ICHREG(ALI_SCR), reg);
2240
2241 for (i = 0; i < HZ / 2; i++) {
2242 if (! (igetdword(chip, ICHREG(ALI_INTERRUPTSR)) & ALI_INT_GPIO))
2243 goto __ok;
2244 do_delay(chip);
2245 }
2246 snd_printk(KERN_ERR "AC'97 reset failed.\n");
2247 if (probing)
2248 return -EIO;
2249
2250 __ok:
2251 for (i = 0; i < HZ / 2; i++) {
2252 reg = igetdword(chip, ICHREG(ALI_RTSR));
2253 if (reg & 0x80) /* primary codec */
2254 break;
2255 iputdword(chip, ICHREG(ALI_RTSR), reg | 0x80);
2256 do_delay(chip);
2257 }
2258
2259 do_ali_reset(chip);
2260 return 0;
2261}
2262
2263static int snd_intel8x0_chip_init(intel8x0_t *chip, int probing)
2264{
2265 unsigned int i;
2266 int err;
2267
2268 if (chip->device_type != DEVICE_ALI) {
2269 if ((err = snd_intel8x0_ich_chip_init(chip, probing)) < 0)
2270 return err;
2271 iagetword(chip, 0); /* clear semaphore flag */
2272 } else {
2273 if ((err = snd_intel8x0_ali_chip_init(chip, probing)) < 0)
2274 return err;
2275 }
2276
2277 /* disable interrupts */
2278 for (i = 0; i < chip->bdbars_count; i++)
2279 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
2280 /* reset channels */
2281 for (i = 0; i < chip->bdbars_count; i++)
2282 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
2283 /* initialize Buffer Descriptor Lists */
2284 for (i = 0; i < chip->bdbars_count; i++)
2285 iputdword(chip, ICH_REG_OFF_BDBAR + chip->ichd[i].reg_offset, chip->ichd[i].bdbar_addr);
2286 return 0;
2287}
2288
2289static int snd_intel8x0_free(intel8x0_t *chip)
2290{
2291 unsigned int i;
2292
2293 if (chip->irq < 0)
2294 goto __hw_end;
2295 /* disable interrupts */
2296 for (i = 0; i < chip->bdbars_count; i++)
2297 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, 0x00);
2298 /* reset channels */
2299 for (i = 0; i < chip->bdbars_count; i++)
2300 iputbyte(chip, ICH_REG_OFF_CR + chip->ichd[i].reg_offset, ICH_RESETREGS);
2301 if (chip->device_type == DEVICE_NFORCE) {
2302 /* stop the spdif interrupt */
2303 unsigned int val;
2304 pci_read_config_dword(chip->pci, 0x4c, &val);
2305 val &= ~0x1000000;
2306 pci_write_config_dword(chip->pci, 0x4c, val);
2307 }
2308 /* --- */
2309 synchronize_irq(chip->irq);
2310 __hw_end:
2311 if (chip->irq >= 0)
2312 free_irq(chip->irq, (void *)chip);
2313 if (chip->bdbars.area) {
2314 if (chip->fix_nocache)
2315 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 0);
2316 snd_dma_free_pages(&chip->bdbars);
2317 }
2318 if (chip->remap_addr)
2319 iounmap(chip->remap_addr);
2320 if (chip->remap_bmaddr)
2321 iounmap(chip->remap_bmaddr);
2322 pci_release_regions(chip->pci);
2323 pci_disable_device(chip->pci);
2324 kfree(chip);
2325 return 0;
2326}
2327
2328#ifdef CONFIG_PM
2329/*
2330 * power management
2331 */
2332static int intel8x0_suspend(snd_card_t *card, pm_message_t state)
2333{
2334 intel8x0_t *chip = card->pm_private_data;
2335 int i;
2336
2337 for (i = 0; i < chip->pcm_devs; i++)
2338 snd_pcm_suspend_all(chip->pcm[i]);
2339 /* clear nocache */
2340 if (chip->fix_nocache) {
2341 for (i = 0; i < chip->bdbars_count; i++) {
2342 ichdev_t *ichdev = &chip->ichd[i];
2343 if (ichdev->substream && ichdev->page_attr_changed) {
2344 snd_pcm_runtime_t *runtime = ichdev->substream->runtime;
2345 if (runtime->dma_area)
2346 fill_nocache(runtime->dma_area, runtime->dma_bytes, 0);
2347 }
2348 }
2349 }
2350 for (i = 0; i < 3; i++)
2351 if (chip->ac97[i])
2352 snd_ac97_suspend(chip->ac97[i]);
52b72388
TI
2353 if (chip->device_type == DEVICE_INTEL_ICH4)
2354 chip->sdm_saved = igetbyte(chip, ICHREG(SDM));
adbedd34 2355
90158b83
RW
2356 if (chip->irq >= 0)
2357 free_irq(chip->irq, (void *)chip);
1da177e4
LT
2358 pci_disable_device(chip->pci);
2359 return 0;
2360}
2361
2362static int intel8x0_resume(snd_card_t *card)
2363{
2364 intel8x0_t *chip = card->pm_private_data;
2365 int i;
2366
2367 pci_enable_device(chip->pci);
2368 pci_set_master(chip->pci);
90158b83
RW
2369 request_irq(chip->irq, snd_intel8x0_interrupt, SA_INTERRUPT|SA_SHIRQ, card->shortname, (void *)chip);
2370 synchronize_irq(chip->irq);
2371 snd_intel8x0_chip_init(chip, 1);
1da177e4 2372
52b72388
TI
2373 /* re-initialize mixer stuff */
2374 if (chip->device_type == DEVICE_INTEL_ICH4) {
2375 /* enable separate SDINs for ICH4 */
2376 iputbyte(chip, ICHREG(SDM), chip->sdm_saved);
2377 /* use slot 10/11 for SPDIF */
2378 iputdword(chip, ICHREG(GLOB_CNT),
2379 (igetdword(chip, ICHREG(GLOB_CNT)) & ~ICH_PCM_SPDIF_MASK) |
2380 ICH_PCM_SPDIF_1011);
2381 }
2382
1da177e4
LT
2383 /* refill nocache */
2384 if (chip->fix_nocache)
2385 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 1);
2386
2387 for (i = 0; i < 3; i++)
2388 if (chip->ac97[i])
2389 snd_ac97_resume(chip->ac97[i]);
2390
2391 /* refill nocache */
2392 if (chip->fix_nocache) {
2393 for (i = 0; i < chip->bdbars_count; i++) {
2394 ichdev_t *ichdev = &chip->ichd[i];
2395 if (ichdev->substream && ichdev->page_attr_changed) {
2396 snd_pcm_runtime_t *runtime = ichdev->substream->runtime;
2397 if (runtime->dma_area)
2398 fill_nocache(runtime->dma_area, runtime->dma_bytes, 1);
2399 }
2400 }
2401 }
2402
1cfe43d2
TI
2403 /* resume status */
2404 for (i = 0; i < chip->bdbars_count; i++) {
2405 ichdev_t *ichdev = &chip->ichd[i];
2406 unsigned long port = ichdev->reg_offset;
2407 if (! ichdev->substream || ! ichdev->suspended)
2408 continue;
2409 if (ichdev->ichd == ICHD_PCMOUT)
2410 snd_intel8x0_setup_pcm_out(chip, ichdev->substream->runtime);
2411 iputdword(chip, port + ICH_REG_OFF_BDBAR, ichdev->bdbar_addr);
2412 iputbyte(chip, port + ICH_REG_OFF_LVI, ichdev->lvi);
2413 iputbyte(chip, port + ICH_REG_OFF_CIV, ichdev->civ);
2414 iputbyte(chip, port + ichdev->roff_sr, ICH_FIFOE | ICH_BCIS | ICH_LVBCI);
2415 }
2416
1da177e4
LT
2417 return 0;
2418}
2419#endif /* CONFIG_PM */
2420
2421#define INTEL8X0_TESTBUF_SIZE 32768 /* enough large for one shot */
2422
2423static void __devinit intel8x0_measure_ac97_clock(intel8x0_t *chip)
2424{
2425 snd_pcm_substream_t *subs;
2426 ichdev_t *ichdev;
2427 unsigned long port;
2428 unsigned long pos, t;
2429 struct timeval start_time, stop_time;
2430
2431 if (chip->ac97_bus->clock != 48000)
2432 return; /* specified in module option */
2433
2434 subs = chip->pcm[0]->streams[0].substream;
2435 if (! subs || subs->dma_buffer.bytes < INTEL8X0_TESTBUF_SIZE) {
2436 snd_printk("no playback buffer allocated - aborting measure ac97 clock\n");
2437 return;
2438 }
2439 ichdev = &chip->ichd[ICHD_PCMOUT];
2440 ichdev->physbuf = subs->dma_buffer.addr;
2441 ichdev->size = chip->ichd[ICHD_PCMOUT].fragsize = INTEL8X0_TESTBUF_SIZE;
2442 ichdev->substream = NULL; /* don't process interrupts */
2443
2444 /* set rate */
2445 if (snd_ac97_set_rate(chip->ac97[0], AC97_PCM_FRONT_DAC_RATE, 48000) < 0) {
2446 snd_printk(KERN_ERR "cannot set ac97 rate: clock = %d\n", chip->ac97_bus->clock);
2447 return;
2448 }
2449 snd_intel8x0_setup_periods(chip, ichdev);
2450 port = ichdev->reg_offset;
2451 spin_lock_irq(&chip->reg_lock);
2452 chip->in_measurement = 1;
2453 /* trigger */
2454 if (chip->device_type != DEVICE_ALI)
2455 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE | ICH_STARTBM);
2456 else {
2457 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_IOCE);
2458 iputdword(chip, ICHREG(ALI_DMACR), 1 << ichdev->ali_slot);
2459 }
2460 do_gettimeofday(&start_time);
2461 spin_unlock_irq(&chip->reg_lock);
ef21ca24 2462 msleep(50);
1da177e4
LT
2463 spin_lock_irq(&chip->reg_lock);
2464 /* check the position */
2465 pos = ichdev->fragsize1;
2466 pos -= igetword(chip, ichdev->reg_offset + ichdev->roff_picb) << ichdev->pos_shift;
2467 pos += ichdev->position;
2468 chip->in_measurement = 0;
2469 do_gettimeofday(&stop_time);
2470 /* stop */
2471 if (chip->device_type == DEVICE_ALI) {
2472 iputdword(chip, ICHREG(ALI_DMACR), 1 << (ichdev->ali_slot + 8));
2473 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
2474 while (igetbyte(chip, port + ICH_REG_OFF_CR))
2475 ;
2476 } else {
2477 iputbyte(chip, port + ICH_REG_OFF_CR, 0);
2478 while (!(igetbyte(chip, port + ichdev->roff_sr) & ICH_DCH))
2479 ;
2480 }
2481 iputbyte(chip, port + ICH_REG_OFF_CR, ICH_RESETREGS);
2482 spin_unlock_irq(&chip->reg_lock);
2483
2484 t = stop_time.tv_sec - start_time.tv_sec;
2485 t *= 1000000;
2486 t += stop_time.tv_usec - start_time.tv_usec;
2487 printk(KERN_INFO "%s: measured %lu usecs\n", __FUNCTION__, t);
2488 if (t == 0) {
2489 snd_printk(KERN_ERR "?? calculation error..\n");
2490 return;
2491 }
2492 pos = (pos / 4) * 1000;
2493 pos = (pos / t) * 1000 + ((pos % t) * 1000) / t;
2494 if (pos < 40000 || pos >= 60000)
2495 /* abnormal value. hw problem? */
2496 printk(KERN_INFO "intel8x0: measured clock %ld rejected\n", pos);
2497 else if (pos < 47500 || pos > 48500)
2498 /* not 48000Hz, tuning the clock.. */
2499 chip->ac97_bus->clock = (chip->ac97_bus->clock * 48000) / pos;
2500 printk(KERN_INFO "intel8x0: clocking to %d\n", chip->ac97_bus->clock);
2501}
2502
2503static void snd_intel8x0_proc_read(snd_info_entry_t * entry,
2504 snd_info_buffer_t * buffer)
2505{
2506 intel8x0_t *chip = entry->private_data;
2507 unsigned int tmp;
2508
2509 snd_iprintf(buffer, "Intel8x0\n\n");
2510 if (chip->device_type == DEVICE_ALI)
2511 return;
2512 tmp = igetdword(chip, ICHREG(GLOB_STA));
2513 snd_iprintf(buffer, "Global control : 0x%08x\n", igetdword(chip, ICHREG(GLOB_CNT)));
2514 snd_iprintf(buffer, "Global status : 0x%08x\n", tmp);
2515 if (chip->device_type == DEVICE_INTEL_ICH4)
2516 snd_iprintf(buffer, "SDM : 0x%08x\n", igetdword(chip, ICHREG(SDM)));
2517 snd_iprintf(buffer, "AC'97 codecs ready :%s%s%s%s\n",
2518 tmp & ICH_PCR ? " primary" : "",
2519 tmp & ICH_SCR ? " secondary" : "",
2520 tmp & ICH_TCR ? " tertiary" : "",
2521 (tmp & (ICH_PCR | ICH_SCR | ICH_TCR)) == 0 ? " none" : "");
2522 if (chip->device_type == DEVICE_INTEL_ICH4)
2523 snd_iprintf(buffer, "AC'97 codecs SDIN : %i %i %i\n",
2524 chip->ac97_sdin[0],
2525 chip->ac97_sdin[1],
2526 chip->ac97_sdin[2]);
2527}
2528
2529static void __devinit snd_intel8x0_proc_init(intel8x0_t * chip)
2530{
2531 snd_info_entry_t *entry;
2532
2533 if (! snd_card_proc_new(chip->card, "intel8x0", &entry))
2534 snd_info_set_text_ops(entry, chip, 1024, snd_intel8x0_proc_read);
2535}
2536
2537static int snd_intel8x0_dev_free(snd_device_t *device)
2538{
2539 intel8x0_t *chip = device->device_data;
2540 return snd_intel8x0_free(chip);
2541}
2542
2543struct ich_reg_info {
2544 unsigned int int_sta_mask;
2545 unsigned int offset;
2546};
2547
2548static int __devinit snd_intel8x0_create(snd_card_t * card,
2549 struct pci_dev *pci,
2550 unsigned long device_type,
a06147d2 2551 int buggy_sem,
1da177e4
LT
2552 intel8x0_t ** r_intel8x0)
2553{
2554 intel8x0_t *chip;
2555 int err;
2556 unsigned int i;
2557 unsigned int int_sta_masks;
2558 ichdev_t *ichdev;
2559 static snd_device_ops_t ops = {
2560 .dev_free = snd_intel8x0_dev_free,
2561 };
2562
2563 static unsigned int bdbars[] = {
2564 3, /* DEVICE_INTEL */
2565 6, /* DEVICE_INTEL_ICH4 */
2566 3, /* DEVICE_SIS */
2567 6, /* DEVICE_ALI */
2568 4, /* DEVICE_NFORCE */
2569 };
2570 static struct ich_reg_info intel_regs[6] = {
2571 { ICH_PIINT, 0 },
2572 { ICH_POINT, 0x10 },
2573 { ICH_MCINT, 0x20 },
2574 { ICH_M2INT, 0x40 },
2575 { ICH_P2INT, 0x50 },
2576 { ICH_SPINT, 0x60 },
2577 };
2578 static struct ich_reg_info nforce_regs[4] = {
2579 { ICH_PIINT, 0 },
2580 { ICH_POINT, 0x10 },
2581 { ICH_MCINT, 0x20 },
2582 { ICH_NVSPINT, 0x70 },
2583 };
2584 static struct ich_reg_info ali_regs[6] = {
2585 { ALI_INT_PCMIN, 0x40 },
2586 { ALI_INT_PCMOUT, 0x50 },
2587 { ALI_INT_MICIN, 0x60 },
2588 { ALI_INT_CODECSPDIFOUT, 0x70 },
2589 { ALI_INT_SPDIFIN, 0xa0 },
2590 { ALI_INT_SPDIFOUT, 0xb0 },
2591 };
2592 struct ich_reg_info *tbl;
2593
2594 *r_intel8x0 = NULL;
2595
2596 if ((err = pci_enable_device(pci)) < 0)
2597 return err;
2598
e560d8d8 2599 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1da177e4
LT
2600 if (chip == NULL) {
2601 pci_disable_device(pci);
2602 return -ENOMEM;
2603 }
2604 spin_lock_init(&chip->reg_lock);
2605 chip->device_type = device_type;
2606 chip->card = card;
2607 chip->pci = pci;
2608 chip->irq = -1;
a06147d2 2609 chip->buggy_semaphore = buggy_sem;
1da177e4
LT
2610
2611 if (pci->vendor == PCI_VENDOR_ID_INTEL &&
2612 pci->device == PCI_DEVICE_ID_INTEL_440MX)
2613 chip->fix_nocache = 1; /* enable workaround */
2614
2615 /* some Nforce[2] and ICH boards have problems with IRQ handling.
2616 * Needs to return IRQ_HANDLED for unknown irqs.
2617 */
2618 if (device_type == DEVICE_NFORCE)
2619 chip->buggy_irq = 1;
2620
2621 if ((err = pci_request_regions(pci, card->shortname)) < 0) {
2622 kfree(chip);
2623 pci_disable_device(pci);
2624 return err;
2625 }
2626
2627 if (device_type == DEVICE_ALI) {
2628 /* ALI5455 has no ac97 region */
2629 chip->bmaddr = pci_resource_start(pci, 0);
2630 goto port_inited;
2631 }
2632
2633 if (pci_resource_flags(pci, 2) & IORESOURCE_MEM) { /* ICH4 and Nforce */
2634 chip->mmio = 1;
2635 chip->addr = pci_resource_start(pci, 2);
2636 chip->remap_addr = ioremap_nocache(chip->addr,
2637 pci_resource_len(pci, 2));
2638 if (chip->remap_addr == NULL) {
2639 snd_printk("AC'97 space ioremap problem\n");
2640 snd_intel8x0_free(chip);
2641 return -EIO;
2642 }
2643 } else {
2644 chip->addr = pci_resource_start(pci, 0);
2645 }
2646 if (pci_resource_flags(pci, 3) & IORESOURCE_MEM) { /* ICH4 */
2647 chip->bm_mmio = 1;
2648 chip->bmaddr = pci_resource_start(pci, 3);
2649 chip->remap_bmaddr = ioremap_nocache(chip->bmaddr,
2650 pci_resource_len(pci, 3));
2651 if (chip->remap_bmaddr == NULL) {
2652 snd_printk("Controller space ioremap problem\n");
2653 snd_intel8x0_free(chip);
2654 return -EIO;
2655 }
2656 } else {
2657 chip->bmaddr = pci_resource_start(pci, 1);
2658 }
2659
2660 port_inited:
2661 if (request_irq(pci->irq, snd_intel8x0_interrupt, SA_INTERRUPT|SA_SHIRQ, card->shortname, (void *)chip)) {
2662 snd_printk("unable to grab IRQ %d\n", pci->irq);
2663 snd_intel8x0_free(chip);
2664 return -EBUSY;
2665 }
2666 chip->irq = pci->irq;
2667 pci_set_master(pci);
2668 synchronize_irq(chip->irq);
2669
2670 chip->bdbars_count = bdbars[device_type];
2671
2672 /* initialize offsets */
2673 switch (device_type) {
2674 case DEVICE_NFORCE:
2675 tbl = nforce_regs;
2676 break;
2677 case DEVICE_ALI:
2678 tbl = ali_regs;
2679 break;
2680 default:
2681 tbl = intel_regs;
2682 break;
2683 }
2684 for (i = 0; i < chip->bdbars_count; i++) {
2685 ichdev = &chip->ichd[i];
2686 ichdev->ichd = i;
2687 ichdev->reg_offset = tbl[i].offset;
2688 ichdev->int_sta_mask = tbl[i].int_sta_mask;
2689 if (device_type == DEVICE_SIS) {
2690 /* SiS 7012 swaps the registers */
2691 ichdev->roff_sr = ICH_REG_OFF_PICB;
2692 ichdev->roff_picb = ICH_REG_OFF_SR;
2693 } else {
2694 ichdev->roff_sr = ICH_REG_OFF_SR;
2695 ichdev->roff_picb = ICH_REG_OFF_PICB;
2696 }
2697 if (device_type == DEVICE_ALI)
2698 ichdev->ali_slot = (ichdev->reg_offset - 0x40) / 0x10;
2699 /* SIS7012 handles the pcm data in bytes, others are in samples */
2700 ichdev->pos_shift = (device_type == DEVICE_SIS) ? 0 : 1;
2701 }
2702
2703 /* allocate buffer descriptor lists */
2704 /* the start of each lists must be aligned to 8 bytes */
2705 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
2706 chip->bdbars_count * sizeof(u32) * ICH_MAX_FRAGS * 2,
2707 &chip->bdbars) < 0) {
2708 snd_intel8x0_free(chip);
2709 snd_printk(KERN_ERR "intel8x0: cannot allocate buffer descriptors\n");
2710 return -ENOMEM;
2711 }
2712 /* tables must be aligned to 8 bytes here, but the kernel pages
2713 are much bigger, so we don't care (on i386) */
2714 /* workaround for 440MX */
2715 if (chip->fix_nocache)
2716 fill_nocache(chip->bdbars.area, chip->bdbars.bytes, 1);
2717 int_sta_masks = 0;
2718 for (i = 0; i < chip->bdbars_count; i++) {
2719 ichdev = &chip->ichd[i];
2720 ichdev->bdbar = ((u32 *)chip->bdbars.area) + (i * ICH_MAX_FRAGS * 2);
2721 ichdev->bdbar_addr = chip->bdbars.addr + (i * sizeof(u32) * ICH_MAX_FRAGS * 2);
2722 int_sta_masks |= ichdev->int_sta_mask;
2723 }
2724 chip->int_sta_reg = device_type == DEVICE_ALI ? ICH_REG_ALI_INTERRUPTSR : ICH_REG_GLOB_STA;
2725 chip->int_sta_mask = int_sta_masks;
2726
2727 if ((err = snd_intel8x0_chip_init(chip, 1)) < 0) {
2728 snd_intel8x0_free(chip);
2729 return err;
2730 }
2731
2732 snd_card_set_pm_callback(card, intel8x0_suspend, intel8x0_resume, chip);
2733
2734 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) {
2735 snd_intel8x0_free(chip);
2736 return err;
2737 }
2738
2739 snd_card_set_dev(card, &pci->dev);
2740
2741 *r_intel8x0 = chip;
2742 return 0;
2743}
2744
2745static struct shortname_table {
2746 unsigned int id;
2747 const char *s;
2748} shortnames[] __devinitdata = {
8cdfd251
TI
2749 { PCI_DEVICE_ID_INTEL_82801AA_5, "Intel 82801AA-ICH" },
2750 { PCI_DEVICE_ID_INTEL_82801AB_5, "Intel 82901AB-ICH0" },
2751 { PCI_DEVICE_ID_INTEL_82801BA_4, "Intel 82801BA-ICH2" },
1da177e4 2752 { PCI_DEVICE_ID_INTEL_440MX, "Intel 440MX" },
8cdfd251
TI
2753 { PCI_DEVICE_ID_INTEL_82801CA_5, "Intel 82801CA-ICH3" },
2754 { PCI_DEVICE_ID_INTEL_82801DB_5, "Intel 82801DB-ICH4" },
2755 { PCI_DEVICE_ID_INTEL_82801EB_5, "Intel ICH5" },
1da177e4
LT
2756 { PCI_DEVICE_ID_INTEL_ESB_5, "Intel 6300ESB" },
2757 { PCI_DEVICE_ID_INTEL_ICH6_18, "Intel ICH6" },
2758 { PCI_DEVICE_ID_INTEL_ICH7_20, "Intel ICH7" },
3437c5df 2759 { PCI_DEVICE_ID_INTEL_ESB2_14, "Intel ESB2" },
1da177e4 2760 { PCI_DEVICE_ID_SI_7012, "SiS SI7012" },
8cdfd251 2761 { PCI_DEVICE_ID_NVIDIA_MCP1_AUDIO, "NVidia nForce" },
1da177e4
LT
2762 { PCI_DEVICE_ID_NVIDIA_MCP2_AUDIO, "NVidia nForce2" },
2763 { PCI_DEVICE_ID_NVIDIA_MCP3_AUDIO, "NVidia nForce3" },
2764 { PCI_DEVICE_ID_NVIDIA_CK8S_AUDIO, "NVidia CK8S" },
2765 { PCI_DEVICE_ID_NVIDIA_CK804_AUDIO, "NVidia CK804" },
2766 { PCI_DEVICE_ID_NVIDIA_CK8_AUDIO, "NVidia CK8" },
2767 { 0x003a, "NVidia MCP04" },
2768 { 0x746d, "AMD AMD8111" },
2769 { 0x7445, "AMD AMD768" },
2770 { 0x5455, "ALi M5455" },
2771 { 0, NULL },
2772};
2773
2774static int __devinit snd_intel8x0_probe(struct pci_dev *pci,
2775 const struct pci_device_id *pci_id)
2776{
1da177e4
LT
2777 snd_card_t *card;
2778 intel8x0_t *chip;
2779 int err;
2780 struct shortname_table *name;
2781
b7fe4622 2782 card = snd_card_new(index, id, THIS_MODULE, 0);
1da177e4
LT
2783 if (card == NULL)
2784 return -ENOMEM;
2785
2786 switch (pci_id->driver_data) {
2787 case DEVICE_NFORCE:
2788 strcpy(card->driver, "NFORCE");
2789 break;
2790 case DEVICE_INTEL_ICH4:
2791 strcpy(card->driver, "ICH4");
2792 break;
2793 default:
2794 strcpy(card->driver, "ICH");
2795 break;
2796 }
2797
2798 strcpy(card->shortname, "Intel ICH");
2799 for (name = shortnames; name->id; name++) {
2800 if (pci->device == name->id) {
2801 strcpy(card->shortname, name->s);
2802 break;
2803 }
2804 }
2805
a06147d2 2806 if ((err = snd_intel8x0_create(card, pci, pci_id->driver_data,
b7fe4622 2807 buggy_semaphore, &chip)) < 0) {
1da177e4
LT
2808 snd_card_free(card);
2809 return err;
2810 }
b7fe4622 2811 if (buggy_irq)
1da177e4 2812 chip->buggy_irq = 1;
b7fe4622 2813 if (xbox)
1da177e4
LT
2814 chip->xbox = 1;
2815
b7fe4622 2816 if ((err = snd_intel8x0_mixer(chip, ac97_clock, ac97_quirk)) < 0) {
1da177e4
LT
2817 snd_card_free(card);
2818 return err;
2819 }
2820 if ((err = snd_intel8x0_pcm(chip)) < 0) {
2821 snd_card_free(card);
2822 return err;
2823 }
2824
2825 snd_intel8x0_proc_init(chip);
2826
2827 snprintf(card->longname, sizeof(card->longname),
2828 "%s with %s at %#lx, irq %i", card->shortname,
2829 snd_ac97_get_short_name(chip->ac97[0]), chip->addr, chip->irq);
2830
b7fe4622 2831 if (! ac97_clock)
1da177e4
LT
2832 intel8x0_measure_ac97_clock(chip);
2833
2834 if ((err = snd_card_register(card)) < 0) {
2835 snd_card_free(card);
2836 return err;
2837 }
2838 pci_set_drvdata(pci, card);
1da177e4
LT
2839 return 0;
2840}
2841
2842static void __devexit snd_intel8x0_remove(struct pci_dev *pci)
2843{
2844 snd_card_free(pci_get_drvdata(pci));
2845 pci_set_drvdata(pci, NULL);
2846}
2847
2848static struct pci_driver driver = {
2849 .name = "Intel ICH",
3bcd4649 2850 .owner = THIS_MODULE,
1da177e4
LT
2851 .id_table = snd_intel8x0_ids,
2852 .probe = snd_intel8x0_probe,
2853 .remove = __devexit_p(snd_intel8x0_remove),
2854 SND_PCI_PM_CALLBACKS
2855};
2856
2857
2858static int __init alsa_card_intel8x0_init(void)
2859{
01d25d46 2860 return pci_register_driver(&driver);
1da177e4
LT
2861}
2862
2863static void __exit alsa_card_intel8x0_exit(void)
2864{
2865 pci_unregister_driver(&driver);
2866}
2867
2868module_init(alsa_card_intel8x0_init)
2869module_exit(alsa_card_intel8x0_exit)