blob: f2337e4eddda439c29f7fb62fcfe66fa380ada84 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
Takashi Iwaid01ce992007-07-27 16:52:19 +02003 * hda_intel.c - Implementation of primary alsa driver code base
4 * for Intel HD Audio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright(c) 2004 Intel Corporation. All rights reserved.
7 *
8 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
9 * PeiSen Hou <pshou@realtek.com.tw>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 * CONTACTS:
26 *
27 * Matt Jared matt.jared@intel.com
28 * Andy Kopp andy.kopp@intel.com
29 * Dan Kogan dan.d.kogan@intel.com
30 *
31 * CHANGES:
32 *
33 * 2004.12.01 Major rewrite by tiwai, merged the work of pshou
34 *
35 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/io.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
Randy Dunlap362775e2005-11-07 14:43:23 +010040#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
Andrew Morton24982c52008-03-04 10:08:58 +010042#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/moduleparam.h>
44#include <linux/init.h>
45#include <linux/slab.h>
46#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010047#include <linux/mutex.h>
Takashi Iwai0cbf0092008-10-29 16:18:25 +010048#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <sound/core.h>
50#include <sound/initval.h>
51#include "hda_codec.h"
52
53
Takashi Iwai5aba4f82008-01-07 15:16:37 +010054static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
55static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
56static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
57static char *model[SNDRV_CARDS];
58static int position_fix[SNDRV_CARDS];
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +020059static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwai5aba4f82008-01-07 15:16:37 +010060static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwai27346162006-01-12 18:28:44 +010061static int single_cmd;
Takashi Iwai134a11f2006-11-10 12:08:37 +010062static int enable_msi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Takashi Iwai5aba4f82008-01-07 15:16:37 +010064module_param_array(index, int, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010066module_param_array(id, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010068module_param_array(enable, bool, NULL, 0444);
69MODULE_PARM_DESC(enable, "Enable Intel HD audio interface.");
70module_param_array(model, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071MODULE_PARM_DESC(model, "Use the given board model.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010072module_param_array(position_fix, int, NULL, 0444);
Takashi Iwaid01ce992007-07-27 16:52:19 +020073MODULE_PARM_DESC(position_fix, "Fix DMA pointer "
Takashi Iwaid2e1c972008-06-10 17:53:34 +020074 "(0 = auto, 1 = none, 2 = POSBUF).");
Takashi Iwai555e2192008-06-10 17:53:34 +020075module_param_array(bdl_pos_adj, int, NULL, 0644);
76MODULE_PARM_DESC(bdl_pos_adj, "BDL position adjustment offset.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010077module_param_array(probe_mask, int, NULL, 0444);
Takashi Iwai606ad752005-11-24 16:03:40 +010078MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1).");
Takashi Iwai27346162006-01-12 18:28:44 +010079module_param(single_cmd, bool, 0444);
Takashi Iwaid01ce992007-07-27 16:52:19 +020080MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs "
81 "(for debugging only).");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010082module_param(enable_msi, int, 0444);
Takashi Iwai134a11f2006-11-10 12:08:37 +010083MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)");
Takashi Iwai606ad752005-11-24 16:03:40 +010084
Takashi Iwaidee1b662007-08-13 16:10:30 +020085#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaifee2fba2008-11-27 12:43:28 +010086static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
87module_param(power_save, int, 0644);
88MODULE_PARM_DESC(power_save, "Automatic power-saving timeout "
89 "(in second, 0 = disable).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Takashi Iwaidee1b662007-08-13 16:10:30 +020091/* reset the HD-audio controller in power save mode.
92 * this may give more power-saving, but will take longer time to
93 * wake up.
94 */
95static int power_save_controller = 1;
96module_param(power_save_controller, bool, 0644);
97MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode.");
98#endif
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100MODULE_LICENSE("GPL");
101MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
102 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -0700103 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +0200104 "{Intel, ESB2},"
Jason Gastond2981392006-01-10 11:07:37 +0100105 "{Intel, ICH8},"
Jason Gastonf9cc8a82006-11-22 11:53:52 +0100106 "{Intel, ICH9},"
Jason Gastonc34f5a02008-01-29 12:38:49 +0100107 "{Intel, ICH10},"
Seth Heasleyb29c2362008-08-08 15:56:39 -0700108 "{Intel, PCH},"
Tobin Davis4979bca2008-01-30 08:13:55 +0100109 "{Intel, SCH},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200110 "{ATI, SB450},"
Felix Kuehling89be83f2006-03-31 12:33:59 +0200111 "{ATI, SB600},"
Felix Kuehling778b6e12006-05-17 11:22:21 +0200112 "{ATI, RS600},"
Felix Kuehling5b15c952006-10-16 12:49:47 +0200113 "{ATI, RS690},"
Wolke Liue6db1112007-04-27 12:20:57 +0200114 "{ATI, RS780},"
115 "{ATI, R600},"
Herton Ronaldo Krzesinski2797f722007-11-05 18:21:56 +0100116 "{ATI, RV630},"
117 "{ATI, RV610},"
Wolke Liu27da1832007-11-16 11:06:30 +0100118 "{ATI, RV670},"
119 "{ATI, RV635},"
120 "{ATI, RV620},"
121 "{ATI, RV770},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200122 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +0200123 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200124 "{SiS, SIS966},"
125 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126MODULE_DESCRIPTION("Intel HDA driver");
127
128#define SFX "hda-intel: "
129
Takashi Iwaicb53c622007-08-10 17:21:45 +0200130
131/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 * registers
133 */
134#define ICH6_REG_GCAP 0x00
135#define ICH6_REG_VMIN 0x02
136#define ICH6_REG_VMAJ 0x03
137#define ICH6_REG_OUTPAY 0x04
138#define ICH6_REG_INPAY 0x06
139#define ICH6_REG_GCTL 0x08
140#define ICH6_REG_WAKEEN 0x0c
141#define ICH6_REG_STATESTS 0x0e
142#define ICH6_REG_GSTS 0x10
143#define ICH6_REG_INTCTL 0x20
144#define ICH6_REG_INTSTS 0x24
145#define ICH6_REG_WALCLK 0x30
146#define ICH6_REG_SYNC 0x34
147#define ICH6_REG_CORBLBASE 0x40
148#define ICH6_REG_CORBUBASE 0x44
149#define ICH6_REG_CORBWP 0x48
150#define ICH6_REG_CORBRP 0x4A
151#define ICH6_REG_CORBCTL 0x4c
152#define ICH6_REG_CORBSTS 0x4d
153#define ICH6_REG_CORBSIZE 0x4e
154
155#define ICH6_REG_RIRBLBASE 0x50
156#define ICH6_REG_RIRBUBASE 0x54
157#define ICH6_REG_RIRBWP 0x58
158#define ICH6_REG_RINTCNT 0x5a
159#define ICH6_REG_RIRBCTL 0x5c
160#define ICH6_REG_RIRBSTS 0x5d
161#define ICH6_REG_RIRBSIZE 0x5e
162
163#define ICH6_REG_IC 0x60
164#define ICH6_REG_IR 0x64
165#define ICH6_REG_IRS 0x68
166#define ICH6_IRS_VALID (1<<1)
167#define ICH6_IRS_BUSY (1<<0)
168
169#define ICH6_REG_DPLBASE 0x70
170#define ICH6_REG_DPUBASE 0x74
171#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
172
173/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
174enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
175
176/* stream register offsets from stream base */
177#define ICH6_REG_SD_CTL 0x00
178#define ICH6_REG_SD_STS 0x03
179#define ICH6_REG_SD_LPIB 0x04
180#define ICH6_REG_SD_CBL 0x08
181#define ICH6_REG_SD_LVI 0x0c
182#define ICH6_REG_SD_FIFOW 0x0e
183#define ICH6_REG_SD_FIFOSIZE 0x10
184#define ICH6_REG_SD_FORMAT 0x12
185#define ICH6_REG_SD_BDLPL 0x18
186#define ICH6_REG_SD_BDLPU 0x1c
187
188/* PCI space */
189#define ICH6_PCIREG_TCSEL 0x44
190
191/*
192 * other constants
193 */
194
195/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200196/* ICH, ATI and VIA have 4 playback and 4 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200197#define ICH6_NUM_CAPTURE 4
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200198#define ICH6_NUM_PLAYBACK 4
199
200/* ULI has 6 playback and 5 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200201#define ULI_NUM_CAPTURE 5
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200202#define ULI_NUM_PLAYBACK 6
203
Felix Kuehling778b6e12006-05-17 11:22:21 +0200204/* ATI HDMI has 1 playback and 0 capture */
Felix Kuehling778b6e12006-05-17 11:22:21 +0200205#define ATIHDMI_NUM_CAPTURE 0
Felix Kuehling778b6e12006-05-17 11:22:21 +0200206#define ATIHDMI_NUM_PLAYBACK 1
207
Kailang Yangf2690022008-05-27 11:44:55 +0200208/* TERA has 4 playback and 3 capture */
209#define TERA_NUM_CAPTURE 3
210#define TERA_NUM_PLAYBACK 4
211
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200212/* this number is statically defined for simplicity */
213#define MAX_AZX_DEV 16
214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100216#define BDL_SIZE 4096
217#define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
218#define AZX_MAX_FRAG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219/* max buffer size - no h/w limit, you can increase as you like */
220#define AZX_MAX_BUF_SIZE (1024*1024*1024)
221/* max number of PCM devics per card */
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100222#define AZX_MAX_PCMS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224/* RIRB int mask: overrun[2], response[0] */
225#define RIRB_INT_RESPONSE 0x01
226#define RIRB_INT_OVERRUN 0x04
227#define RIRB_INT_MASK 0x05
228
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200229/* STATESTS int mask: S3,SD2,SD1,SD0 */
230#define AZX_MAX_CODECS 4
231#define STATESTS_INT_MASK 0x0f
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233/* SD_CTL bits */
234#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
235#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
Takashi Iwai850f0e52008-03-18 17:11:05 +0100236#define SD_CTL_STRIPE (3 << 16) /* stripe control */
237#define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
238#define SD_CTL_DIR (1 << 19) /* bi-directional stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
240#define SD_CTL_STREAM_TAG_SHIFT 20
241
242/* SD_CTL and SD_STS */
243#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
244#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
245#define SD_INT_COMPLETE 0x04 /* completion interrupt */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200246#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
247 SD_INT_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249/* SD_STS */
250#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
251
252/* INTCTL and INTSTS */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200253#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
254#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
255#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Matt41e2fce2005-07-04 17:49:55 +0200257/* GCTL unsolicited response enable bit */
258#define ICH6_GCTL_UREN (1<<8)
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/* GCTL reset bit */
261#define ICH6_GCTL_RESET (1<<0)
262
263/* CORB/RIRB control, read/write pointer */
264#define ICH6_RBCTL_DMA_EN 0x02 /* enable DMA */
265#define ICH6_RBCTL_IRQ_EN 0x01 /* enable IRQ */
266#define ICH6_RBRWP_CLR 0x8000 /* read/write pointer clear */
267/* below are so far hardcoded - should read registers in future */
268#define ICH6_MAX_CORB_ENTRIES 256
269#define ICH6_MAX_RIRB_ENTRIES 256
270
Takashi Iwaic74db862005-05-12 14:26:27 +0200271/* position fix mode */
272enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200273 POS_FIX_AUTO,
Takashi Iwaid2e1c972008-06-10 17:53:34 +0200274 POS_FIX_LPIB,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200275 POS_FIX_POSBUF,
Takashi Iwaic74db862005-05-12 14:26:27 +0200276};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Frederick Lif5d40b32005-05-12 14:55:20 +0200278/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200279#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
280#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
281
Vinod Gda3fca22005-09-13 18:49:12 +0200282/* Defines for Nvidia HDA support */
283#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
284#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Peer Chen320dcc32008-08-20 16:43:24 -0700285#define NVIDIA_HDA_ISTRM_COH 0x4d
286#define NVIDIA_HDA_OSTRM_COH 0x4c
287#define NVIDIA_HDA_ENABLE_COHBIT 0x01
Frederick Lif5d40b32005-05-12 14:55:20 +0200288
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100289/* Defines for Intel SCH HDA snoop control */
290#define INTEL_SCH_HDA_DEVC 0x78
291#define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
292
Joseph Chan0e153472008-08-26 14:38:03 +0200293/* Define IN stream 0 FIFO size offset in VIA controller */
294#define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
295/* Define VIA HD Audio Device ID*/
296#define VIA_HDAC_DEVICE_ID 0x3288
297
Yang, Libinc4da29c2008-11-13 11:07:07 +0100298/* HD Audio class code */
299#define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 */
303
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100304struct azx_dev {
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100305 struct snd_dma_buffer bdl; /* BDL buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200306 u32 *posbuf; /* position buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Takashi Iwaid01ce992007-07-27 16:52:19 +0200308 unsigned int bufsize; /* size of the play buffer in bytes */
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200309 unsigned int period_bytes; /* size of the period in bytes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200310 unsigned int frags; /* number for period in the play buffer */
311 unsigned int fifo_size; /* FIFO size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Takashi Iwaid01ce992007-07-27 16:52:19 +0200313 void __iomem *sd_addr; /* stream descriptor pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Takashi Iwaid01ce992007-07-27 16:52:19 +0200315 u32 sd_int_sta_mask; /* stream int status mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317 /* pcm support */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200318 struct snd_pcm_substream *substream; /* assigned substream,
319 * set in PCM open
320 */
321 unsigned int format_val; /* format value to be set in the
322 * controller and the codec
323 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 unsigned char stream_tag; /* assigned stream */
325 unsigned char index; /* stream index */
326
Pavel Machek927fc862006-08-31 17:03:43 +0200327 unsigned int opened :1;
328 unsigned int running :1;
Takashi Iwai675f25d2008-06-10 17:53:20 +0200329 unsigned int irq_pending :1;
330 unsigned int irq_ignore :1;
Joseph Chan0e153472008-08-26 14:38:03 +0200331 /*
332 * For VIA:
333 * A flag to ensure DMA position is 0
334 * when link position is not greater than FIFO size
335 */
336 unsigned int insufficient :1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337};
338
339/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100340struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 u32 *buf; /* CORB/RIRB buffer
342 * Each CORB entry is 4byte, RIRB is 8byte
343 */
344 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
345 /* for RIRB */
346 unsigned short rp, wp; /* read/write pointers */
347 int cmds; /* number of pending requests */
348 u32 res; /* last read value */
349};
350
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100351struct azx {
352 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 struct pci_dev *pci;
Takashi Iwai555e2192008-06-10 17:53:34 +0200354 int dev_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200356 /* chip type specific */
357 int driver_type;
358 int playback_streams;
359 int playback_index_offset;
360 int capture_streams;
361 int capture_index_offset;
362 int num_streams;
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 /* pci resources */
365 unsigned long addr;
366 void __iomem *remap_addr;
367 int irq;
368
369 /* locks */
370 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100371 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200373 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100374 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* PCM */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100377 struct snd_pcm *pcm[AZX_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 /* HD codec */
380 unsigned short codec_mask;
381 struct hda_bus *bus;
382
383 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100384 struct azx_rb corb;
385 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100387 /* CORB/RIRB and position buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 struct snd_dma_buffer rb;
389 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200390
391 /* flags */
392 int position_fix;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200393 unsigned int running :1;
Pavel Machek927fc862006-08-31 17:03:43 +0200394 unsigned int initialized :1;
395 unsigned int single_cmd :1;
396 unsigned int polling_mode :1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200397 unsigned int msi :1;
Takashi Iwaia6a950a2008-06-10 17:53:35 +0200398 unsigned int irq_pending_warned :1;
Joseph Chan0e153472008-08-26 14:38:03 +0200399 unsigned int via_dmapos_patch :1; /* enable DMA-position fix for VIA */
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100400 unsigned int probing :1; /* codec probing phase */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200401
402 /* for debugging */
403 unsigned int last_cmd; /* last issued command (to sync) */
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200404
405 /* for pending irqs */
406 struct work_struct irq_pending_work;
Takashi Iwai0cbf0092008-10-29 16:18:25 +0100407
408 /* reboot notifier (for mysterious hangup problem at power-down) */
409 struct notifier_block reboot_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410};
411
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200412/* driver types */
413enum {
414 AZX_DRIVER_ICH,
Tobin Davis4979bca2008-01-30 08:13:55 +0100415 AZX_DRIVER_SCH,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200416 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200417 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200418 AZX_DRIVER_VIA,
419 AZX_DRIVER_SIS,
420 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200421 AZX_DRIVER_NVIDIA,
Kailang Yangf2690022008-05-27 11:44:55 +0200422 AZX_DRIVER_TERA,
Yang, Libinc4da29c2008-11-13 11:07:07 +0100423 AZX_DRIVER_GENERIC,
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200424 AZX_NUM_DRIVERS, /* keep this as last entry */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200425};
426
427static char *driver_short_names[] __devinitdata = {
428 [AZX_DRIVER_ICH] = "HDA Intel",
Tobin Davis4979bca2008-01-30 08:13:55 +0100429 [AZX_DRIVER_SCH] = "HDA Intel MID",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200430 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200431 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200432 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
433 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200434 [AZX_DRIVER_ULI] = "HDA ULI M5461",
435 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Kailang Yangf2690022008-05-27 11:44:55 +0200436 [AZX_DRIVER_TERA] = "HDA Teradici",
Yang, Libinc4da29c2008-11-13 11:07:07 +0100437 [AZX_DRIVER_GENERIC] = "HD-Audio Generic",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200438};
439
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440/*
441 * macros for easy use
442 */
443#define azx_writel(chip,reg,value) \
444 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
445#define azx_readl(chip,reg) \
446 readl((chip)->remap_addr + ICH6_REG_##reg)
447#define azx_writew(chip,reg,value) \
448 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
449#define azx_readw(chip,reg) \
450 readw((chip)->remap_addr + ICH6_REG_##reg)
451#define azx_writeb(chip,reg,value) \
452 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
453#define azx_readb(chip,reg) \
454 readb((chip)->remap_addr + ICH6_REG_##reg)
455
456#define azx_sd_writel(dev,reg,value) \
457 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
458#define azx_sd_readl(dev,reg) \
459 readl((dev)->sd_addr + ICH6_REG_##reg)
460#define azx_sd_writew(dev,reg,value) \
461 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
462#define azx_sd_readw(dev,reg) \
463 readw((dev)->sd_addr + ICH6_REG_##reg)
464#define azx_sd_writeb(dev,reg,value) \
465 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
466#define azx_sd_readb(dev,reg) \
467 readb((dev)->sd_addr + ICH6_REG_##reg)
468
469/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100470#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200472static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
474/*
475 * Interface for HD codec
476 */
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478/*
479 * CORB / RIRB interface
480 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100481static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
483 int err;
484
485 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200486 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
487 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 PAGE_SIZE, &chip->rb);
489 if (err < 0) {
490 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
491 return err;
492 }
493 return 0;
494}
495
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100496static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
498 /* CORB set up */
499 chip->corb.addr = chip->rb.addr;
500 chip->corb.buf = (u32 *)chip->rb.area;
501 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200502 azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200504 /* set the corb size to 256 entries (ULI requires explicitly) */
505 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /* set the corb write pointer to 0 */
507 azx_writew(chip, CORBWP, 0);
508 /* reset the corb hw read pointer */
509 azx_writew(chip, CORBRP, ICH6_RBRWP_CLR);
510 /* enable corb dma */
511 azx_writeb(chip, CORBCTL, ICH6_RBCTL_DMA_EN);
512
513 /* RIRB set up */
514 chip->rirb.addr = chip->rb.addr + 2048;
515 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
516 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200517 azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200519 /* set the rirb size to 256 entries (ULI requires explicitly) */
520 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 /* reset the rirb hw write pointer */
522 azx_writew(chip, RIRBWP, ICH6_RBRWP_CLR);
523 /* set N=1, get RIRB response interrupt for new entry */
524 azx_writew(chip, RINTCNT, 1);
525 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 chip->rirb.rp = chip->rirb.cmds = 0;
528}
529
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100530static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 /* disable ringbuffer DMAs */
533 azx_writeb(chip, RIRBCTL, 0);
534 azx_writeb(chip, CORBCTL, 0);
535}
536
537/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100538static int azx_corb_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100540 struct azx *chip = bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 unsigned int wp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /* add command to corb */
544 wp = azx_readb(chip, CORBWP);
545 wp++;
546 wp %= ICH6_MAX_CORB_ENTRIES;
547
548 spin_lock_irq(&chip->reg_lock);
549 chip->rirb.cmds++;
550 chip->corb.buf[wp] = cpu_to_le32(val);
551 azx_writel(chip, CORBWP, wp);
552 spin_unlock_irq(&chip->reg_lock);
553
554 return 0;
555}
556
557#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
558
559/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100560static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 unsigned int rp, wp;
563 u32 res, res_ex;
564
565 wp = azx_readb(chip, RIRBWP);
566 if (wp == chip->rirb.wp)
567 return;
568 chip->rirb.wp = wp;
569
570 while (chip->rirb.rp != wp) {
571 chip->rirb.rp++;
572 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
573
574 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
575 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
576 res = le32_to_cpu(chip->rirb.buf[rp]);
577 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
578 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
579 else if (chip->rirb.cmds) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 chip->rirb.res = res;
Takashi Iwai2add9b92008-03-18 09:47:06 +0100581 smp_wmb();
582 chip->rirb.cmds--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584 }
585}
586
587/* receive a response */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100588static unsigned int azx_rirb_get_response(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100590 struct azx *chip = bus->private_data;
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200591 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200593 again:
594 timeout = jiffies + msecs_to_jiffies(1000);
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100595 for (;;) {
Takashi Iwaie96224a2006-08-21 17:57:44 +0200596 if (chip->polling_mode) {
597 spin_lock_irq(&chip->reg_lock);
598 azx_update_rirb(chip);
599 spin_unlock_irq(&chip->reg_lock);
600 }
Takashi Iwai2add9b92008-03-18 09:47:06 +0100601 if (!chip->rirb.cmds) {
602 smp_rmb();
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200603 return chip->rirb.res; /* the last value */
Takashi Iwai2add9b92008-03-18 09:47:06 +0100604 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100605 if (time_after(jiffies, timeout))
606 break;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100607 if (bus->needs_damn_long_delay)
Takashi Iwai52987652008-01-16 16:09:47 +0100608 msleep(2); /* temporary workaround */
609 else {
610 udelay(10);
611 cond_resched();
612 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100613 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200614
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200615 if (chip->msi) {
616 snd_printk(KERN_WARNING "hda_intel: No response from codec, "
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200617 "disabling MSI: last cmd=0x%08x\n", chip->last_cmd);
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200618 free_irq(chip->irq, chip);
619 chip->irq = -1;
620 pci_disable_msi(chip->pci);
621 chip->msi = 0;
622 if (azx_acquire_irq(chip, 1) < 0)
623 return -1;
624 goto again;
625 }
626
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200627 if (!chip->polling_mode) {
628 snd_printk(KERN_WARNING "hda_intel: azx_get_response timeout, "
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200629 "switching to polling mode: last cmd=0x%08x\n",
630 chip->last_cmd);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200631 chip->polling_mode = 1;
632 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200634
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100635 if (chip->probing) {
636 /* If this critical timeout happens during the codec probing
637 * phase, this is likely an access to a non-existing codec
638 * slot. Better to return an error and reset the system.
639 */
640 return -1;
641 }
642
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200643 snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200644 "switching to single_cmd mode: last cmd=0x%08x\n",
645 chip->last_cmd);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200646 chip->rirb.rp = azx_readb(chip, RIRBWP);
647 chip->rirb.cmds = 0;
648 /* switch to single_cmd mode */
649 chip->single_cmd = 1;
650 azx_free_cmd_io(chip);
651 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654/*
655 * Use the single immediate command instead of CORB/RIRB for simplicity
656 *
657 * Note: according to Intel, this is not preferred use. The command was
658 * intended for the BIOS only, and may get confused with unsolicited
659 * responses. So, we shouldn't use it for normal operation from the
660 * driver.
661 * I left the codes, however, for debugging/testing purposes.
662 */
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100665static int azx_single_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100667 struct azx *chip = bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int timeout = 50;
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 while (timeout--) {
671 /* check ICB busy bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200672 if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 /* Clear IRV valid bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200674 azx_writew(chip, IRS, azx_readw(chip, IRS) |
675 ICH6_IRS_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 azx_writel(chip, IC, val);
Takashi Iwaid01ce992007-07-27 16:52:19 +0200677 azx_writew(chip, IRS, azx_readw(chip, IRS) |
678 ICH6_IRS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return 0;
680 }
681 udelay(1);
682 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100683 if (printk_ratelimit())
684 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
685 azx_readw(chip, IRS), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 return -EIO;
687}
688
689/* receive a response */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100690static unsigned int azx_single_get_response(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100692 struct azx *chip = bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 int timeout = 50;
694
695 while (timeout--) {
696 /* check IRV busy bit */
697 if (azx_readw(chip, IRS) & ICH6_IRS_VALID)
698 return azx_readl(chip, IR);
699 udelay(1);
700 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100701 if (printk_ratelimit())
702 snd_printd(SFX "get_response timeout: IRS=0x%x\n",
703 azx_readw(chip, IRS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return (unsigned int)-1;
705}
706
Takashi Iwai111d3af2006-02-16 18:17:58 +0100707/*
708 * The below are the main callbacks from hda_codec.
709 *
710 * They are just the skeleton to call sub-callbacks according to the
711 * current setting of chip->single_cmd.
712 */
713
714/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100715static int azx_send_cmd(struct hda_bus *bus, unsigned int val)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100716{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100717 struct azx *chip = bus->private_data;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200718
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200719 chip->last_cmd = val;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100720 if (chip->single_cmd)
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100721 return azx_single_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100722 else
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100723 return azx_corb_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100724}
725
726/* get a response */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100727static unsigned int azx_get_response(struct hda_bus *bus)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100728{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100729 struct azx *chip = bus->private_data;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100730 if (chip->single_cmd)
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100731 return azx_single_get_response(bus);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100732 else
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100733 return azx_rirb_get_response(bus);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100734}
735
Takashi Iwaicb53c622007-08-10 17:21:45 +0200736#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100737static void azx_power_notify(struct hda_bus *bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200738#endif
Takashi Iwai111d3af2006-02-16 18:17:58 +0100739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/* reset codec link */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100741static int azx_reset(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 int count;
744
Danny Tholene8a7f132007-09-11 21:41:56 +0200745 /* clear STATESTS */
746 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /* reset controller */
749 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
750
751 count = 50;
752 while (azx_readb(chip, GCTL) && --count)
753 msleep(1);
754
755 /* delay for >= 100us for codec PLL to settle per spec
756 * Rev 0.9 section 5.5.1
757 */
758 msleep(1);
759
760 /* Bring controller out of reset */
761 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
762
763 count = 50;
Pavel Machek927fc862006-08-31 17:03:43 +0200764 while (!azx_readb(chip, GCTL) && --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 msleep(1);
766
Pavel Machek927fc862006-08-31 17:03:43 +0200767 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 msleep(1);
769
770 /* check to see if controller is ready */
Pavel Machek927fc862006-08-31 17:03:43 +0200771 if (!azx_readb(chip, GCTL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 snd_printd("azx_reset: controller not ready!\n");
773 return -EBUSY;
774 }
775
Matt41e2fce2005-07-04 17:49:55 +0200776 /* Accept unsolicited responses */
777 azx_writel(chip, GCTL, azx_readl(chip, GCTL) | ICH6_GCTL_UREN);
778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 /* detect codecs */
Pavel Machek927fc862006-08-31 17:03:43 +0200780 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 chip->codec_mask = azx_readw(chip, STATESTS);
782 snd_printdd("codec_mask = 0x%x\n", chip->codec_mask);
783 }
784
785 return 0;
786}
787
788
789/*
790 * Lowlevel interface
791 */
792
793/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100794static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 /* enable controller CIE and GIE */
797 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
798 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
799}
800
801/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100802static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 int i;
805
806 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200807 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100808 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 azx_sd_writeb(azx_dev, SD_CTL,
810 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
811 }
812
813 /* disable SIE for all streams */
814 azx_writeb(chip, INTCTL, 0);
815
816 /* disable controller CIE and GIE */
817 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
818 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
819}
820
821/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100822static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 int i;
825
826 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200827 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100828 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
830 }
831
832 /* clear STATESTS */
833 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
834
835 /* clear rirb status */
836 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
837
838 /* clear int status */
839 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
840}
841
842/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100843static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Joseph Chan0e153472008-08-26 14:38:03 +0200845 /*
846 * Before stream start, initialize parameter
847 */
848 azx_dev->insufficient = 1;
849
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 /* enable SIE */
851 azx_writeb(chip, INTCTL,
852 azx_readb(chip, INTCTL) | (1 << azx_dev->index));
853 /* set DMA start and interrupt mask */
854 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
855 SD_CTL_DMA_START | SD_INT_MASK);
856}
857
858/* stop a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100859static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860{
861 /* stop DMA */
862 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
863 ~(SD_CTL_DMA_START | SD_INT_MASK));
864 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
865 /* disable SIE */
866 azx_writeb(chip, INTCTL,
867 azx_readb(chip, INTCTL) & ~(1 << azx_dev->index));
868}
869
870
871/*
Takashi Iwaicb53c622007-08-10 17:21:45 +0200872 * reset and start the controller registers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100874static void azx_init_chip(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Takashi Iwaicb53c622007-08-10 17:21:45 +0200876 if (chip->initialized)
877 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /* reset controller */
880 azx_reset(chip);
881
882 /* initialize interrupts */
883 azx_int_clear(chip);
884 azx_int_enable(chip);
885
886 /* initialize the codec command I/O */
Pavel Machek927fc862006-08-31 17:03:43 +0200887 if (!chip->single_cmd)
Takashi Iwai27346162006-01-12 18:28:44 +0100888 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200890 /* program the position buffer */
891 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200892 azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +0200893
Takashi Iwaicb53c622007-08-10 17:21:45 +0200894 chip->initialized = 1;
895}
896
897/*
898 * initialize the PCI registers
899 */
900/* update bits in a PCI register byte */
901static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
902 unsigned char mask, unsigned char val)
903{
904 unsigned char data;
905
906 pci_read_config_byte(pci, reg, &data);
907 data &= ~mask;
908 data |= (val & mask);
909 pci_write_config_byte(pci, reg, data);
910}
911
912static void azx_init_pci(struct azx *chip)
913{
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100914 unsigned short snoop;
915
Takashi Iwaicb53c622007-08-10 17:21:45 +0200916 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
917 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
918 * Ensuring these bits are 0 clears playback static on some HD Audio
919 * codecs
920 */
921 update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
922
Vinod Gda3fca22005-09-13 18:49:12 +0200923 switch (chip->driver_type) {
924 case AZX_DRIVER_ATI:
925 /* For ATI SB450 azalia HD audio, we need to enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200926 update_pci_byte(chip->pci,
927 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
928 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
Vinod Gda3fca22005-09-13 18:49:12 +0200929 break;
930 case AZX_DRIVER_NVIDIA:
931 /* For NVIDIA HDA, enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200932 update_pci_byte(chip->pci,
933 NVIDIA_HDA_TRANSREG_ADDR,
934 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
Peer Chen320dcc32008-08-20 16:43:24 -0700935 update_pci_byte(chip->pci,
936 NVIDIA_HDA_ISTRM_COH,
937 0x01, NVIDIA_HDA_ENABLE_COHBIT);
938 update_pci_byte(chip->pci,
939 NVIDIA_HDA_OSTRM_COH,
940 0x01, NVIDIA_HDA_ENABLE_COHBIT);
Vinod Gda3fca22005-09-13 18:49:12 +0200941 break;
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100942 case AZX_DRIVER_SCH:
943 pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
944 if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
945 pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC, \
946 snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
947 pci_read_config_word(chip->pci,
948 INTEL_SCH_HDA_DEVC, &snoop);
949 snd_printdd("HDA snoop disabled, enabling ... %s\n",\
950 (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) \
951 ? "Failed" : "OK");
952 }
953 break;
954
Vinod Gda3fca22005-09-13 18:49:12 +0200955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956}
957
958
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200959static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
960
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961/*
962 * interrupt handler
963 */
David Howells7d12e782006-10-05 14:55:46 +0100964static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100966 struct azx *chip = dev_id;
967 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 u32 status;
969 int i;
970
971 spin_lock(&chip->reg_lock);
972
973 status = azx_readl(chip, INTSTS);
974 if (status == 0) {
975 spin_unlock(&chip->reg_lock);
976 return IRQ_NONE;
977 }
978
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200979 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 azx_dev = &chip->azx_dev[i];
981 if (status & azx_dev->sd_int_sta_mask) {
982 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200983 if (!azx_dev->substream || !azx_dev->running)
984 continue;
Takashi Iwai675f25d2008-06-10 17:53:20 +0200985 /* ignore the first dummy IRQ (due to pos_adj) */
986 if (azx_dev->irq_ignore) {
987 azx_dev->irq_ignore = 0;
988 continue;
989 }
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200990 /* check whether this IRQ is really acceptable */
991 if (azx_position_ok(chip, azx_dev)) {
992 azx_dev->irq_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 spin_unlock(&chip->reg_lock);
994 snd_pcm_period_elapsed(azx_dev->substream);
995 spin_lock(&chip->reg_lock);
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200996 } else {
997 /* bogus IRQ, process it later */
998 azx_dev->irq_pending = 1;
999 schedule_work(&chip->irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
1001 }
1002 }
1003
1004 /* clear rirb int */
1005 status = azx_readb(chip, RIRBSTS);
1006 if (status & RIRB_INT_MASK) {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001007 if (!chip->single_cmd && (status & RIRB_INT_RESPONSE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 azx_update_rirb(chip);
1009 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1010 }
1011
1012#if 0
1013 /* clear state status int */
1014 if (azx_readb(chip, STATESTS) & 0x04)
1015 azx_writeb(chip, STATESTS, 0x04);
1016#endif
1017 spin_unlock(&chip->reg_lock);
1018
1019 return IRQ_HANDLED;
1020}
1021
1022
1023/*
Takashi Iwai675f25d2008-06-10 17:53:20 +02001024 * set up a BDL entry
1025 */
1026static int setup_bdle(struct snd_pcm_substream *substream,
1027 struct azx_dev *azx_dev, u32 **bdlp,
1028 int ofs, int size, int with_ioc)
1029{
Takashi Iwai675f25d2008-06-10 17:53:20 +02001030 u32 *bdl = *bdlp;
1031
1032 while (size > 0) {
1033 dma_addr_t addr;
1034 int chunk;
1035
1036 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
1037 return -EINVAL;
1038
Takashi Iwai77a23f22008-08-21 13:00:13 +02001039 addr = snd_pcm_sgbuf_get_addr(substream, ofs);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001040 /* program the address field of the BDL entry */
1041 bdl[0] = cpu_to_le32((u32)addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001042 bdl[1] = cpu_to_le32(upper_32_bits(addr));
Takashi Iwai675f25d2008-06-10 17:53:20 +02001043 /* program the size field of the BDL entry */
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001044 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001045 bdl[2] = cpu_to_le32(chunk);
1046 /* program the IOC to enable interrupt
1047 * only when the whole fragment is processed
1048 */
1049 size -= chunk;
1050 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
1051 bdl += 4;
1052 azx_dev->frags++;
1053 ofs += chunk;
1054 }
1055 *bdlp = bdl;
1056 return ofs;
1057}
1058
1059/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 * set up BDL entries
1061 */
Takashi Iwai555e2192008-06-10 17:53:34 +02001062static int azx_setup_periods(struct azx *chip,
1063 struct snd_pcm_substream *substream,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001064 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001066 u32 *bdl;
1067 int i, ofs, periods, period_bytes;
Takashi Iwai555e2192008-06-10 17:53:34 +02001068 int pos_adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 /* reset BDL address */
1071 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1072 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1073
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001074 period_bytes = snd_pcm_lib_period_bytes(substream);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001075 azx_dev->period_bytes = period_bytes;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001076 periods = azx_dev->bufsize / period_bytes;
1077
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001079 bdl = (u32 *)azx_dev->bdl.area;
1080 ofs = 0;
1081 azx_dev->frags = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001082 azx_dev->irq_ignore = 0;
Takashi Iwai555e2192008-06-10 17:53:34 +02001083 pos_adj = bdl_pos_adj[chip->dev_index];
1084 if (pos_adj > 0) {
Takashi Iwai675f25d2008-06-10 17:53:20 +02001085 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001086 int pos_align = pos_adj;
Takashi Iwai555e2192008-06-10 17:53:34 +02001087 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001088 if (!pos_adj)
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001089 pos_adj = pos_align;
1090 else
1091 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
1092 pos_align;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001093 pos_adj = frames_to_bytes(runtime, pos_adj);
1094 if (pos_adj >= period_bytes) {
1095 snd_printk(KERN_WARNING "Too big adjustment %d\n",
Takashi Iwai555e2192008-06-10 17:53:34 +02001096 bdl_pos_adj[chip->dev_index]);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001097 pos_adj = 0;
1098 } else {
1099 ofs = setup_bdle(substream, azx_dev,
1100 &bdl, ofs, pos_adj, 1);
1101 if (ofs < 0)
1102 goto error;
1103 azx_dev->irq_ignore = 1;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001104 }
Takashi Iwai555e2192008-06-10 17:53:34 +02001105 } else
1106 pos_adj = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001107 for (i = 0; i < periods; i++) {
1108 if (i == periods - 1 && pos_adj)
1109 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1110 period_bytes - pos_adj, 0);
1111 else
1112 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1113 period_bytes, 1);
1114 if (ofs < 0)
1115 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001117 return 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001118
1119 error:
1120 snd_printk(KERN_ERR "Too many BDL entries: buffer=%d, period=%d\n",
1121 azx_dev->bufsize, period_bytes);
1122 /* reset */
1123 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1124 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1125 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126}
1127
1128/*
1129 * set up the SD for streaming
1130 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001131static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
1133 unsigned char val;
1134 int timeout;
1135
1136 /* make sure the run bit is zero for SD */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001137 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
1138 ~SD_CTL_DMA_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 /* reset stream */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001140 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1141 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 udelay(3);
1143 timeout = 300;
1144 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1145 --timeout)
1146 ;
1147 val &= ~SD_CTL_STREAM_RESET;
1148 azx_sd_writeb(azx_dev, SD_CTL, val);
1149 udelay(3);
1150
1151 timeout = 300;
1152 /* waiting for hardware to report that the stream is out of reset */
1153 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1154 --timeout)
1155 ;
1156
1157 /* program the stream_tag */
1158 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001159 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1161
1162 /* program the length of samples in cyclic buffer */
1163 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1164
1165 /* program the stream format */
1166 /* this value needs to be the same as the one programmed */
1167 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1168
1169 /* program the stream LVI (last valid index) of the BDL */
1170 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1171
1172 /* program the BDL address */
1173 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001174 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 /* upper BDL address */
Takashi Iwai766979e2008-06-13 20:53:56 +02001176 azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001178 /* enable the position buffer */
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001179 if (chip->position_fix == POS_FIX_POSBUF ||
Joseph Chan0e153472008-08-26 14:38:03 +02001180 chip->position_fix == POS_FIX_AUTO ||
1181 chip->via_dmapos_patch) {
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001182 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1183 azx_writel(chip, DPLBASE,
1184 (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
1185 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001188 azx_sd_writel(azx_dev, SD_CTL,
1189 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 return 0;
1192}
1193
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001194/*
1195 * Probe the given codec address
1196 */
1197static int probe_codec(struct azx *chip, int addr)
1198{
1199 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
1200 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
1201 unsigned int res;
1202
1203 chip->probing = 1;
1204 azx_send_cmd(chip->bus, cmd);
1205 res = azx_get_response(chip->bus);
1206 chip->probing = 0;
1207 if (res == -1)
1208 return -EIO;
1209 snd_printdd("hda_intel: codec #%d probed OK\n", addr);
1210 return 0;
1211}
1212
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001213static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1214 struct hda_pcm *cpcm);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001215static void azx_stop_chip(struct azx *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217/*
1218 * Codec initialization
1219 */
1220
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001221/* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1222static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
Kailang Yangf2690022008-05-27 11:44:55 +02001223 [AZX_DRIVER_TERA] = 1,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001224};
1225
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001226static int __devinit azx_codec_create(struct azx *chip, const char *model,
1227 unsigned int codec_probe_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228{
1229 struct hda_bus_template bus_temp;
Takashi Iwai34c25352008-10-28 11:38:58 +01001230 int c, codecs, err;
1231 int max_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 memset(&bus_temp, 0, sizeof(bus_temp));
1234 bus_temp.private_data = chip;
1235 bus_temp.modelname = model;
1236 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001237 bus_temp.ops.command = azx_send_cmd;
1238 bus_temp.ops.get_response = azx_get_response;
Takashi Iwai176d5332008-07-30 15:01:44 +02001239 bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001240#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai11cd41b2008-11-28 07:22:18 +01001241 bus_temp.power_save = &power_save;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001242 bus_temp.ops.pm_notify = azx_power_notify;
1243#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Takashi Iwaid01ce992007-07-27 16:52:19 +02001245 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1246 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return err;
1248
Wei Nidc9c8e22008-09-26 13:55:56 +08001249 if (chip->driver_type == AZX_DRIVER_NVIDIA)
1250 chip->bus->needs_damn_long_delay = 1;
1251
Takashi Iwai34c25352008-10-28 11:38:58 +01001252 codecs = 0;
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001253 max_slots = azx_max_codecs[chip->driver_type];
1254 if (!max_slots)
1255 max_slots = AZX_MAX_CODECS;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001256
1257 /* First try to probe all given codec slots */
1258 for (c = 0; c < max_slots; c++) {
1259 if ((chip->codec_mask & (1 << c)) & codec_probe_mask) {
1260 if (probe_codec(chip, c) < 0) {
1261 /* Some BIOSen give you wrong codec addresses
1262 * that don't exist
1263 */
1264 snd_printk(KERN_WARNING
1265 "hda_intel: Codec #%d probe error; "
1266 "disabling it...\n", c);
1267 chip->codec_mask &= ~(1 << c);
1268 /* More badly, accessing to a non-existing
1269 * codec often screws up the controller chip,
1270 * and distrubs the further communications.
1271 * Thus if an error occurs during probing,
1272 * better to reset the controller chip to
1273 * get back to the sanity state.
1274 */
1275 azx_stop_chip(chip);
1276 azx_init_chip(chip);
1277 }
1278 }
1279 }
1280
1281 /* Then create codec instances */
Takashi Iwai34c25352008-10-28 11:38:58 +01001282 for (c = 0; c < max_slots; c++) {
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001283 if ((chip->codec_mask & (1 << c)) & codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001284 struct hda_codec *codec;
1285 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (err < 0)
1287 continue;
1288 codecs++;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001289 }
1290 }
1291 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1293 return -ENXIO;
1294 }
1295
1296 return 0;
1297}
1298
1299
1300/*
1301 * PCM support
1302 */
1303
1304/* assign a stream for the PCM */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001305static inline struct azx_dev *azx_assign_device(struct azx *chip, int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001307 int dev, i, nums;
1308 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1309 dev = chip->playback_index_offset;
1310 nums = chip->playback_streams;
1311 } else {
1312 dev = chip->capture_index_offset;
1313 nums = chip->capture_streams;
1314 }
1315 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001316 if (!chip->azx_dev[dev].opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 chip->azx_dev[dev].opened = 1;
1318 return &chip->azx_dev[dev];
1319 }
1320 return NULL;
1321}
1322
1323/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001324static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
1326 azx_dev->opened = 0;
1327}
1328
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001329static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001330 .info = (SNDRV_PCM_INFO_MMAP |
1331 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1333 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001334 /* No full-resume yet implemented */
1335 /* SNDRV_PCM_INFO_RESUME |*/
Takashi Iwai850f0e52008-03-18 17:11:05 +01001336 SNDRV_PCM_INFO_PAUSE |
1337 SNDRV_PCM_INFO_SYNC_START),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1339 .rates = SNDRV_PCM_RATE_48000,
1340 .rate_min = 48000,
1341 .rate_max = 48000,
1342 .channels_min = 2,
1343 .channels_max = 2,
1344 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1345 .period_bytes_min = 128,
1346 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1347 .periods_min = 2,
1348 .periods_max = AZX_MAX_FRAG,
1349 .fifo_size = 0,
1350};
1351
1352struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001353 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 struct hda_codec *codec;
1355 struct hda_pcm_stream *hinfo[2];
1356};
1357
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001358static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1361 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001362 struct azx *chip = apcm->chip;
1363 struct azx_dev *azx_dev;
1364 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 unsigned long flags;
1366 int err;
1367
Ingo Molnar62932df2006-01-16 16:34:20 +01001368 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 azx_dev = azx_assign_device(chip, substream->stream);
1370 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001371 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 return -EBUSY;
1373 }
1374 runtime->hw = azx_pcm_hw;
1375 runtime->hw.channels_min = hinfo->channels_min;
1376 runtime->hw.channels_max = hinfo->channels_max;
1377 runtime->hw.formats = hinfo->formats;
1378 runtime->hw.rates = hinfo->rates;
1379 snd_pcm_limit_hw_rates(runtime);
1380 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001381 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1382 128);
1383 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1384 128);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001385 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001386 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1387 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001389 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001390 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return err;
1392 }
1393 spin_lock_irqsave(&chip->reg_lock, flags);
1394 azx_dev->substream = substream;
1395 azx_dev->running = 0;
1396 spin_unlock_irqrestore(&chip->reg_lock, flags);
1397
1398 runtime->private_data = azx_dev;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001399 snd_pcm_set_sync(substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001400 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return 0;
1402}
1403
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001404static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
1406 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1407 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001408 struct azx *chip = apcm->chip;
1409 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 unsigned long flags;
1411
Ingo Molnar62932df2006-01-16 16:34:20 +01001412 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 spin_lock_irqsave(&chip->reg_lock, flags);
1414 azx_dev->substream = NULL;
1415 azx_dev->running = 0;
1416 spin_unlock_irqrestore(&chip->reg_lock, flags);
1417 azx_release_device(azx_dev);
1418 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001419 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001420 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return 0;
1422}
1423
Takashi Iwaid01ce992007-07-27 16:52:19 +02001424static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1425 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Takashi Iwaid01ce992007-07-27 16:52:19 +02001427 return snd_pcm_lib_malloc_pages(substream,
1428 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001431static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
1433 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001434 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1436
1437 /* reset BDL address */
1438 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1439 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1440 azx_sd_writel(azx_dev, SD_CTL, 0);
1441
1442 hinfo->ops.cleanup(hinfo, apcm->codec, substream);
1443
1444 return snd_pcm_lib_free_pages(substream);
1445}
1446
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001447static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448{
1449 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001450 struct azx *chip = apcm->chip;
1451 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001453 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
1455 azx_dev->bufsize = snd_pcm_lib_buffer_bytes(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 azx_dev->format_val = snd_hda_calc_stream_format(runtime->rate,
1457 runtime->channels,
1458 runtime->format,
1459 hinfo->maxbps);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001460 if (!azx_dev->format_val) {
1461 snd_printk(KERN_ERR SFX
1462 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 runtime->rate, runtime->channels, runtime->format);
1464 return -EINVAL;
1465 }
1466
Takashi Iwai21c7b082008-02-07 12:06:32 +01001467 snd_printdd("azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
1468 azx_dev->bufsize, azx_dev->format_val);
Takashi Iwai555e2192008-06-10 17:53:34 +02001469 if (azx_setup_periods(chip, substream, azx_dev) < 0)
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001470 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 azx_setup_controller(chip, azx_dev);
1472 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1473 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1474 else
1475 azx_dev->fifo_size = 0;
1476
1477 return hinfo->ops.prepare(hinfo, apcm->codec, azx_dev->stream_tag,
1478 azx_dev->format_val, substream);
1479}
1480
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001481static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482{
1483 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001484 struct azx *chip = apcm->chip;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001485 struct azx_dev *azx_dev;
1486 struct snd_pcm_substream *s;
1487 int start, nsync = 0, sbits = 0;
1488 int nwait, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 switch (cmd) {
1491 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1492 case SNDRV_PCM_TRIGGER_RESUME:
1493 case SNDRV_PCM_TRIGGER_START:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001494 start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 break;
1496 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001497 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001499 start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 break;
1501 default:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001502 return -EINVAL;
1503 }
1504
1505 snd_pcm_group_for_each_entry(s, substream) {
1506 if (s->pcm->card != substream->pcm->card)
1507 continue;
1508 azx_dev = get_azx_dev(s);
1509 sbits |= 1 << azx_dev->index;
1510 nsync++;
1511 snd_pcm_trigger_done(s, substream);
1512 }
1513
1514 spin_lock(&chip->reg_lock);
1515 if (nsync > 1) {
1516 /* first, set SYNC bits of corresponding streams */
1517 azx_writel(chip, SYNC, azx_readl(chip, SYNC) | sbits);
1518 }
1519 snd_pcm_group_for_each_entry(s, substream) {
1520 if (s->pcm->card != substream->pcm->card)
1521 continue;
1522 azx_dev = get_azx_dev(s);
1523 if (start)
1524 azx_stream_start(chip, azx_dev);
1525 else
1526 azx_stream_stop(chip, azx_dev);
1527 azx_dev->running = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529 spin_unlock(&chip->reg_lock);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001530 if (start) {
1531 if (nsync == 1)
1532 return 0;
1533 /* wait until all FIFOs get ready */
1534 for (timeout = 5000; timeout; timeout--) {
1535 nwait = 0;
1536 snd_pcm_group_for_each_entry(s, substream) {
1537 if (s->pcm->card != substream->pcm->card)
1538 continue;
1539 azx_dev = get_azx_dev(s);
1540 if (!(azx_sd_readb(azx_dev, SD_STS) &
1541 SD_STS_FIFO_READY))
1542 nwait++;
1543 }
1544 if (!nwait)
1545 break;
1546 cpu_relax();
1547 }
1548 } else {
1549 /* wait until all RUN bits are cleared */
1550 for (timeout = 5000; timeout; timeout--) {
1551 nwait = 0;
1552 snd_pcm_group_for_each_entry(s, substream) {
1553 if (s->pcm->card != substream->pcm->card)
1554 continue;
1555 azx_dev = get_azx_dev(s);
1556 if (azx_sd_readb(azx_dev, SD_CTL) &
1557 SD_CTL_DMA_START)
1558 nwait++;
1559 }
1560 if (!nwait)
1561 break;
1562 cpu_relax();
1563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001565 if (nsync > 1) {
1566 spin_lock(&chip->reg_lock);
1567 /* reset SYNC bits */
1568 azx_writel(chip, SYNC, azx_readl(chip, SYNC) & ~sbits);
1569 spin_unlock(&chip->reg_lock);
1570 }
1571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Joseph Chan0e153472008-08-26 14:38:03 +02001574/* get the current DMA position with correction on VIA chips */
1575static unsigned int azx_via_get_position(struct azx *chip,
1576 struct azx_dev *azx_dev)
1577{
1578 unsigned int link_pos, mini_pos, bound_pos;
1579 unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
1580 unsigned int fifo_size;
1581
1582 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
1583 if (azx_dev->index >= 4) {
1584 /* Playback, no problem using link position */
1585 return link_pos;
1586 }
1587
1588 /* Capture */
1589 /* For new chipset,
1590 * use mod to get the DMA position just like old chipset
1591 */
1592 mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
1593 mod_dma_pos %= azx_dev->period_bytes;
1594
1595 /* azx_dev->fifo_size can't get FIFO size of in stream.
1596 * Get from base address + offset.
1597 */
1598 fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
1599
1600 if (azx_dev->insufficient) {
1601 /* Link position never gather than FIFO size */
1602 if (link_pos <= fifo_size)
1603 return 0;
1604
1605 azx_dev->insufficient = 0;
1606 }
1607
1608 if (link_pos <= fifo_size)
1609 mini_pos = azx_dev->bufsize + link_pos - fifo_size;
1610 else
1611 mini_pos = link_pos - fifo_size;
1612
1613 /* Find nearest previous boudary */
1614 mod_mini_pos = mini_pos % azx_dev->period_bytes;
1615 mod_link_pos = link_pos % azx_dev->period_bytes;
1616 if (mod_link_pos >= fifo_size)
1617 bound_pos = link_pos - mod_link_pos;
1618 else if (mod_dma_pos >= mod_mini_pos)
1619 bound_pos = mini_pos - mod_mini_pos;
1620 else {
1621 bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
1622 if (bound_pos >= azx_dev->bufsize)
1623 bound_pos = 0;
1624 }
1625
1626 /* Calculate real DMA position we want */
1627 return bound_pos + mod_dma_pos;
1628}
1629
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001630static unsigned int azx_get_position(struct azx *chip,
1631 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 unsigned int pos;
1634
Joseph Chan0e153472008-08-26 14:38:03 +02001635 if (chip->via_dmapos_patch)
1636 pos = azx_via_get_position(chip, azx_dev);
1637 else if (chip->position_fix == POS_FIX_POSBUF ||
1638 chip->position_fix == POS_FIX_AUTO) {
Takashi Iwaic74db862005-05-12 14:26:27 +02001639 /* use the position buffer */
Takashi Iwai929861c2006-08-31 16:55:40 +02001640 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwaic74db862005-05-12 14:26:27 +02001641 } else {
1642 /* read LPIB */
1643 pos = azx_sd_readl(azx_dev, SD_LPIB);
Takashi Iwaic74db862005-05-12 14:26:27 +02001644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 if (pos >= azx_dev->bufsize)
1646 pos = 0;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001647 return pos;
1648}
1649
1650static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
1651{
1652 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1653 struct azx *chip = apcm->chip;
1654 struct azx_dev *azx_dev = get_azx_dev(substream);
1655 return bytes_to_frames(substream->runtime,
1656 azx_get_position(chip, azx_dev));
1657}
1658
1659/*
1660 * Check whether the current DMA position is acceptable for updating
1661 * periods. Returns non-zero if it's OK.
1662 *
1663 * Many HD-audio controllers appear pretty inaccurate about
1664 * the update-IRQ timing. The IRQ is issued before actually the
1665 * data is processed. So, we need to process it afterwords in a
1666 * workqueue.
1667 */
1668static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
1669{
1670 unsigned int pos;
1671
1672 pos = azx_get_position(chip, azx_dev);
1673 if (chip->position_fix == POS_FIX_AUTO) {
1674 if (!pos) {
1675 printk(KERN_WARNING
1676 "hda-intel: Invalid position buffer, "
1677 "using LPIB read method instead.\n");
Takashi Iwaid2e1c972008-06-10 17:53:34 +02001678 chip->position_fix = POS_FIX_LPIB;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001679 pos = azx_get_position(chip, azx_dev);
1680 } else
1681 chip->position_fix = POS_FIX_POSBUF;
1682 }
1683
Takashi Iwaia62741c2008-08-18 17:11:09 +02001684 if (!bdl_pos_adj[chip->dev_index])
1685 return 1; /* no delayed ack */
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001686 if (pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
1687 return 0; /* NG - it's below the period boundary */
1688 return 1; /* OK, it's fine */
1689}
1690
1691/*
1692 * The work for pending PCM period updates.
1693 */
1694static void azx_irq_pending_work(struct work_struct *work)
1695{
1696 struct azx *chip = container_of(work, struct azx, irq_pending_work);
1697 int i, pending;
1698
Takashi Iwaia6a950a2008-06-10 17:53:35 +02001699 if (!chip->irq_pending_warned) {
1700 printk(KERN_WARNING
1701 "hda-intel: IRQ timing workaround is activated "
1702 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
1703 chip->card->number);
1704 chip->irq_pending_warned = 1;
1705 }
1706
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001707 for (;;) {
1708 pending = 0;
1709 spin_lock_irq(&chip->reg_lock);
1710 for (i = 0; i < chip->num_streams; i++) {
1711 struct azx_dev *azx_dev = &chip->azx_dev[i];
1712 if (!azx_dev->irq_pending ||
1713 !azx_dev->substream ||
1714 !azx_dev->running)
1715 continue;
1716 if (azx_position_ok(chip, azx_dev)) {
1717 azx_dev->irq_pending = 0;
1718 spin_unlock(&chip->reg_lock);
1719 snd_pcm_period_elapsed(azx_dev->substream);
1720 spin_lock(&chip->reg_lock);
1721 } else
1722 pending++;
1723 }
1724 spin_unlock_irq(&chip->reg_lock);
1725 if (!pending)
1726 return;
1727 cond_resched();
1728 }
1729}
1730
1731/* clear irq_pending flags and assure no on-going workq */
1732static void azx_clear_irq_pending(struct azx *chip)
1733{
1734 int i;
1735
1736 spin_lock_irq(&chip->reg_lock);
1737 for (i = 0; i < chip->num_streams; i++)
1738 chip->azx_dev[i].irq_pending = 0;
1739 spin_unlock_irq(&chip->reg_lock);
1740 flush_scheduled_work();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741}
1742
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001743static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 .open = azx_pcm_open,
1745 .close = azx_pcm_close,
1746 .ioctl = snd_pcm_lib_ioctl,
1747 .hw_params = azx_pcm_hw_params,
1748 .hw_free = azx_pcm_hw_free,
1749 .prepare = azx_pcm_prepare,
1750 .trigger = azx_pcm_trigger,
1751 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001752 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753};
1754
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001755static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Takashi Iwai176d5332008-07-30 15:01:44 +02001757 struct azx_pcm *apcm = pcm->private_data;
1758 if (apcm) {
1759 apcm->chip->pcm[pcm->device] = NULL;
1760 kfree(apcm);
1761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Takashi Iwai176d5332008-07-30 15:01:44 +02001764static int
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001765azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1766 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001768 struct azx *chip = bus->private_data;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001769 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 struct azx_pcm *apcm;
Takashi Iwai176d5332008-07-30 15:01:44 +02001771 int pcm_dev = cpcm->device;
1772 int s, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Takashi Iwai176d5332008-07-30 15:01:44 +02001774 if (pcm_dev >= AZX_MAX_PCMS) {
1775 snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
1776 pcm_dev);
Takashi Iwaida3cec32008-08-08 17:12:14 +02001777 return -EINVAL;
Takashi Iwai176d5332008-07-30 15:01:44 +02001778 }
1779 if (chip->pcm[pcm_dev]) {
1780 snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
1781 return -EBUSY;
1782 }
1783 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
1784 cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
1785 cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 &pcm);
1787 if (err < 0)
1788 return err;
1789 strcpy(pcm->name, cpcm->name);
Takashi Iwai176d5332008-07-30 15:01:44 +02001790 apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (apcm == NULL)
1792 return -ENOMEM;
1793 apcm->chip = chip;
1794 apcm->codec = codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 pcm->private_data = apcm;
1796 pcm->private_free = azx_pcm_free;
Takashi Iwai176d5332008-07-30 15:01:44 +02001797 if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
1798 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
1799 chip->pcm[pcm_dev] = pcm;
1800 cpcm->pcm = pcm;
1801 for (s = 0; s < 2; s++) {
1802 apcm->hinfo[s] = &cpcm->stream[s];
1803 if (cpcm->stream[s].substreams)
1804 snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
1805 }
1806 /* buffer pre-allocation */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001807 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 snd_dma_pci_data(chip->pci),
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001809 1024 * 64, 32 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return 0;
1811}
1812
1813/*
1814 * mixer creation - all stuff is implemented in hda module
1815 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001816static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 return snd_hda_build_controls(chip->bus);
1819}
1820
1821
1822/*
1823 * initialize SD streams
1824 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001825static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
1827 int i;
1828
1829 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001830 * assign the starting bdl address to each stream (device)
1831 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001833 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001834 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02001835 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
1837 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
1838 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
1839 azx_dev->sd_int_sta_mask = 1 << i;
1840 /* stream tag: must be non-zero and unique */
1841 azx_dev->index = i;
1842 azx_dev->stream_tag = i + 1;
1843 }
1844
1845 return 0;
1846}
1847
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001848static int azx_acquire_irq(struct azx *chip, int do_disconnect)
1849{
Takashi Iwai437a5a42006-11-21 12:14:23 +01001850 if (request_irq(chip->pci->irq, azx_interrupt,
1851 chip->msi ? 0 : IRQF_SHARED,
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001852 "HDA Intel", chip)) {
1853 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
1854 "disabling device\n", chip->pci->irq);
1855 if (do_disconnect)
1856 snd_card_disconnect(chip->card);
1857 return -1;
1858 }
1859 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01001860 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001861 return 0;
1862}
1863
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Takashi Iwaicb53c622007-08-10 17:21:45 +02001865static void azx_stop_chip(struct azx *chip)
1866{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02001867 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02001868 return;
1869
1870 /* disable interrupts */
1871 azx_int_disable(chip);
1872 azx_int_clear(chip);
1873
1874 /* disable CORB/RIRB */
1875 azx_free_cmd_io(chip);
1876
1877 /* disable position buffer */
1878 azx_writel(chip, DPLBASE, 0);
1879 azx_writel(chip, DPUBASE, 0);
1880
1881 chip->initialized = 0;
1882}
1883
1884#ifdef CONFIG_SND_HDA_POWER_SAVE
1885/* power-up/down the controller */
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001886static void azx_power_notify(struct hda_bus *bus)
Takashi Iwaicb53c622007-08-10 17:21:45 +02001887{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001888 struct azx *chip = bus->private_data;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001889 struct hda_codec *c;
1890 int power_on = 0;
1891
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001892 list_for_each_entry(c, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02001893 if (c->power_on) {
1894 power_on = 1;
1895 break;
1896 }
1897 }
1898 if (power_on)
1899 azx_init_chip(chip);
Takashi Iwaidee1b662007-08-13 16:10:30 +02001900 else if (chip->running && power_save_controller)
Takashi Iwaicb53c622007-08-10 17:21:45 +02001901 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001902}
Takashi Iwai5c0b9be2008-12-11 11:47:17 +01001903#endif /* CONFIG_SND_HDA_POWER_SAVE */
1904
1905#ifdef CONFIG_PM
1906/*
1907 * power management
1908 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01001909
1910static int snd_hda_codecs_inuse(struct hda_bus *bus)
1911{
1912 struct hda_codec *codec;
1913
1914 list_for_each_entry(codec, &bus->codec_list, list) {
1915 if (snd_hda_codec_needs_resume(codec))
1916 return 1;
1917 }
1918 return 0;
1919}
Takashi Iwaicb53c622007-08-10 17:21:45 +02001920
Takashi Iwai421a1252005-11-17 16:11:09 +01001921static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
Takashi Iwai421a1252005-11-17 16:11:09 +01001923 struct snd_card *card = pci_get_drvdata(pci);
1924 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 int i;
1926
Takashi Iwai421a1252005-11-17 16:11:09 +01001927 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001928 azx_clear_irq_pending(chip);
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001929 for (i = 0; i < AZX_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01001930 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02001931 if (chip->initialized)
1932 snd_hda_suspend(chip->bus, state);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001933 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02001934 if (chip->irq >= 0) {
Takashi Iwai43001c92006-09-08 12:30:03 +02001935 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02001936 chip->irq = -1;
1937 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001938 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02001939 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01001940 pci_disable_device(pci);
1941 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02001942 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return 0;
1944}
1945
Takashi Iwai421a1252005-11-17 16:11:09 +01001946static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
Takashi Iwai421a1252005-11-17 16:11:09 +01001948 struct snd_card *card = pci_get_drvdata(pci);
1949 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
Takashi Iwai30b35392006-10-11 18:52:53 +02001951 pci_set_power_state(pci, PCI_D0);
Takashi Iwai421a1252005-11-17 16:11:09 +01001952 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02001953 if (pci_enable_device(pci) < 0) {
1954 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
1955 "disabling device\n");
1956 snd_card_disconnect(card);
1957 return -EIO;
1958 }
1959 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001960 if (chip->msi)
1961 if (pci_enable_msi(pci) < 0)
1962 chip->msi = 0;
1963 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02001964 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001965 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02001966
1967 if (snd_hda_codecs_inuse(chip->bus))
1968 azx_init_chip(chip);
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01001971 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return 0;
1973}
1974#endif /* CONFIG_PM */
1975
1976
1977/*
Takashi Iwai0cbf0092008-10-29 16:18:25 +01001978 * reboot notifier for hang-up problem at power-down
1979 */
1980static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
1981{
1982 struct azx *chip = container_of(nb, struct azx, reboot_notifier);
1983 azx_stop_chip(chip);
1984 return NOTIFY_OK;
1985}
1986
1987static void azx_notifier_register(struct azx *chip)
1988{
1989 chip->reboot_notifier.notifier_call = azx_halt;
1990 register_reboot_notifier(&chip->reboot_notifier);
1991}
1992
1993static void azx_notifier_unregister(struct azx *chip)
1994{
1995 if (chip->reboot_notifier.notifier_call)
1996 unregister_reboot_notifier(&chip->reboot_notifier);
1997}
1998
1999/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 * destructor
2001 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002002static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002004 int i;
2005
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002006 azx_notifier_unregister(chip);
2007
Takashi Iwaice43fba2005-05-30 20:33:44 +02002008 if (chip->initialized) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002009 azx_clear_irq_pending(chip);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002010 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002012 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
2014
Jeff Garzikf000fd82008-04-22 13:50:34 +02002015 if (chip->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 free_irq(chip->irq, (void*)chip);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002017 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02002018 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02002019 if (chip->remap_addr)
2020 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002022 if (chip->azx_dev) {
2023 for (i = 0; i < chip->num_streams; i++)
2024 if (chip->azx_dev[i].bdl.area)
2025 snd_dma_free_pages(&chip->azx_dev[i].bdl);
2026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 if (chip->rb.area)
2028 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 if (chip->posbuf.area)
2030 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 pci_release_regions(chip->pci);
2032 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002033 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 kfree(chip);
2035
2036 return 0;
2037}
2038
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002039static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
2041 return azx_free(device->device_data);
2042}
2043
2044/*
Takashi Iwai3372a152007-02-01 15:46:50 +01002045 * white/black-listing for position_fix
2046 */
Ralf Baechle623ec042007-03-13 15:29:47 +01002047static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002048 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
2049 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
2050 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
Takashi Iwai3372a152007-02-01 15:46:50 +01002051 {}
2052};
2053
2054static int __devinit check_position_fix(struct azx *chip, int fix)
2055{
2056 const struct snd_pci_quirk *q;
2057
Joseph Chan0e153472008-08-26 14:38:03 +02002058 /* Check VIA HD Audio Controller exist */
2059 if (chip->pci->vendor == PCI_VENDOR_ID_VIA &&
2060 chip->pci->device == VIA_HDAC_DEVICE_ID) {
2061 chip->via_dmapos_patch = 1;
2062 /* Use link position directly, avoid any transfer problem. */
2063 return POS_FIX_LPIB;
2064 }
2065 chip->via_dmapos_patch = 0;
2066
Takashi Iwai3372a152007-02-01 15:46:50 +01002067 if (fix == POS_FIX_AUTO) {
2068 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
2069 if (q) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002070 printk(KERN_INFO
Takashi Iwai3372a152007-02-01 15:46:50 +01002071 "hda_intel: position_fix set to %d "
2072 "for device %04x:%04x\n",
2073 q->value, q->subvendor, q->subdevice);
2074 return q->value;
2075 }
2076 }
2077 return fix;
2078}
2079
2080/*
Takashi Iwai669ba272007-08-17 09:17:36 +02002081 * black-lists for probe_mask
2082 */
2083static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
2084 /* Thinkpad often breaks the controller communication when accessing
2085 * to the non-working (or non-existing) modem codec slot.
2086 */
2087 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2088 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2089 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
Takashi Iwai0edb9452008-11-07 14:53:09 +01002090 /* broken BIOS */
2091 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
Takashi Iwaief1681d2008-11-24 17:29:28 +01002092 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2093 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
Takashi Iwai669ba272007-08-17 09:17:36 +02002094 {}
2095};
2096
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002097static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02002098{
2099 const struct snd_pci_quirk *q;
2100
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002101 if (probe_mask[dev] == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002102 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
2103 if (q) {
2104 printk(KERN_INFO
2105 "hda_intel: probe_mask set to 0x%x "
2106 "for device %04x:%04x\n",
2107 q->value, q->subvendor, q->subdevice);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002108 probe_mask[dev] = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02002109 }
2110 }
2111}
2112
2113
2114/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 * constructor
2116 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002117static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002118 int dev, int driver_type,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002119 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002121 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002122 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01002123 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002124 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 .dev_free = azx_dev_free,
2126 };
2127
2128 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01002129
Pavel Machek927fc862006-08-31 17:03:43 +02002130 err = pci_enable_device(pci);
2131 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 return err;
2133
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002134 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002135 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
2137 pci_disable_device(pci);
2138 return -ENOMEM;
2139 }
2140
2141 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002142 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 chip->card = card;
2144 chip->pci = pci;
2145 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002146 chip->driver_type = driver_type;
Takashi Iwai134a11f2006-11-10 12:08:37 +01002147 chip->msi = enable_msi;
Takashi Iwai555e2192008-06-10 17:53:34 +02002148 chip->dev_index = dev;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002149 INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002151 chip->position_fix = check_position_fix(chip, position_fix[dev]);
2152 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01002153
Takashi Iwai27346162006-01-12 18:28:44 +01002154 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02002155
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002156 if (bdl_pos_adj[dev] < 0) {
2157 switch (chip->driver_type) {
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002158 case AZX_DRIVER_ICH:
2159 bdl_pos_adj[dev] = 1;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002160 break;
2161 default:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002162 bdl_pos_adj[dev] = 32;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002163 break;
2164 }
2165 }
2166
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002167#if BITS_PER_LONG != 64
2168 /* Fix up base address on ULI M5461 */
2169 if (chip->driver_type == AZX_DRIVER_ULI) {
2170 u16 tmp3;
2171 pci_read_config_word(pci, 0x40, &tmp3);
2172 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
2173 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
2174 }
2175#endif
2176
Pavel Machek927fc862006-08-31 17:03:43 +02002177 err = pci_request_regions(pci, "ICH HD audio");
2178 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 kfree(chip);
2180 pci_disable_device(pci);
2181 return err;
2182 }
2183
Pavel Machek927fc862006-08-31 17:03:43 +02002184 chip->addr = pci_resource_start(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 chip->remap_addr = ioremap_nocache(chip->addr, pci_resource_len(pci,0));
2186 if (chip->remap_addr == NULL) {
2187 snd_printk(KERN_ERR SFX "ioremap error\n");
2188 err = -ENXIO;
2189 goto errout;
2190 }
2191
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002192 if (chip->msi)
2193 if (pci_enable_msi(pci) < 0)
2194 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02002195
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002196 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 err = -EBUSY;
2198 goto errout;
2199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
2201 pci_set_master(pci);
2202 synchronize_irq(chip->irq);
2203
Tobin Davisbcd72002008-01-15 11:23:55 +01002204 gcap = azx_readw(chip, GCAP);
2205 snd_printdd("chipset global capabilities = 0x%x\n", gcap);
2206
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002207 /* allow 64bit DMA address if supported by H/W */
2208 if ((gcap & 0x01) && !pci_set_dma_mask(pci, DMA_64BIT_MASK))
2209 pci_set_consistent_dma_mask(pci, DMA_64BIT_MASK);
2210
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002211 /* read number of streams from GCAP register instead of using
2212 * hardcoded value
2213 */
2214 chip->capture_streams = (gcap >> 8) & 0x0f;
2215 chip->playback_streams = (gcap >> 12) & 0x0f;
2216 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01002217 /* gcap didn't give any info, switching to old method */
2218
2219 switch (chip->driver_type) {
2220 case AZX_DRIVER_ULI:
2221 chip->playback_streams = ULI_NUM_PLAYBACK;
2222 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002223 break;
2224 case AZX_DRIVER_ATIHDMI:
2225 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
2226 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002227 break;
Yang, Libinc4da29c2008-11-13 11:07:07 +01002228 case AZX_DRIVER_GENERIC:
Tobin Davisbcd72002008-01-15 11:23:55 +01002229 default:
2230 chip->playback_streams = ICH6_NUM_PLAYBACK;
2231 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002232 break;
2233 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002234 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002235 chip->capture_index_offset = 0;
2236 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002237 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002238 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
2239 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002240 if (!chip->azx_dev) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002241 snd_printk(KERN_ERR "cannot malloc azx_dev\n");
2242 goto errout;
2243 }
2244
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002245 for (i = 0; i < chip->num_streams; i++) {
2246 /* allocate memory for the BDL for each stream */
2247 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2248 snd_dma_pci_data(chip->pci),
2249 BDL_SIZE, &chip->azx_dev[i].bdl);
2250 if (err < 0) {
2251 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
2252 goto errout;
2253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002255 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002256 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2257 snd_dma_pci_data(chip->pci),
2258 chip->num_streams * 8, &chip->posbuf);
2259 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002260 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
2261 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 /* allocate CORB/RIRB */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002264 if (!chip->single_cmd) {
2265 err = azx_alloc_cmd_io(chip);
2266 if (err < 0)
Takashi Iwai27346162006-01-12 18:28:44 +01002267 goto errout;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
2270 /* initialize streams */
2271 azx_init_stream(chip);
2272
2273 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002274 azx_init_pci(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 azx_init_chip(chip);
2276
2277 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02002278 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 snd_printk(KERN_ERR SFX "no codecs found!\n");
2280 err = -ENODEV;
2281 goto errout;
2282 }
2283
Takashi Iwaid01ce992007-07-27 16:52:19 +02002284 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
2285 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
2287 goto errout;
2288 }
2289
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002290 strcpy(card->driver, "HDA-Intel");
2291 strcpy(card->shortname, driver_short_names[chip->driver_type]);
Takashi Iwaid01ce992007-07-27 16:52:19 +02002292 sprintf(card->longname, "%s at 0x%lx irq %i",
2293 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 *rchip = chip;
2296 return 0;
2297
2298 errout:
2299 azx_free(chip);
2300 return err;
2301}
2302
Takashi Iwaicb53c622007-08-10 17:21:45 +02002303static void power_down_all_codecs(struct azx *chip)
2304{
2305#ifdef CONFIG_SND_HDA_POWER_SAVE
2306 /* The codecs were powered up in snd_hda_codec_new().
2307 * Now all initialization done, so turn them down if possible
2308 */
2309 struct hda_codec *codec;
2310 list_for_each_entry(codec, &chip->bus->codec_list, list) {
2311 snd_hda_power_down(codec);
2312 }
2313#endif
2314}
2315
Takashi Iwaid01ce992007-07-27 16:52:19 +02002316static int __devinit azx_probe(struct pci_dev *pci,
2317 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002319 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002320 struct snd_card *card;
2321 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02002322 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002324 if (dev >= SNDRV_CARDS)
2325 return -ENODEV;
2326 if (!enable[dev]) {
2327 dev++;
2328 return -ENOENT;
2329 }
2330
2331 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
Pavel Machek927fc862006-08-31 17:03:43 +02002332 if (!card) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 snd_printk(KERN_ERR SFX "Error creating card!\n");
2334 return -ENOMEM;
2335 }
2336
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002337 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002338 if (err < 0)
2339 goto out_free;
Takashi Iwai421a1252005-11-17 16:11:09 +01002340 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 /* create codec instances */
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002343 err = azx_codec_create(chip, model[dev], probe_mask[dev]);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002344 if (err < 0)
2345 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
2347 /* create PCM streams */
Takashi Iwai176d5332008-07-30 15:01:44 +02002348 err = snd_hda_build_pcms(chip->bus);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002349 if (err < 0)
2350 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351
2352 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002353 err = azx_mixer_create(chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002354 if (err < 0)
2355 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 snd_card_set_dev(card, &pci->dev);
2358
Takashi Iwaid01ce992007-07-27 16:52:19 +02002359 err = snd_card_register(card);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002360 if (err < 0)
2361 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002364 chip->running = 1;
2365 power_down_all_codecs(chip);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002366 azx_notifier_register(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002368 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return err;
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002370out_free:
2371 snd_card_free(card);
2372 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
2374
2375static void __devexit azx_remove(struct pci_dev *pci)
2376{
2377 snd_card_free(pci_get_drvdata(pci));
2378 pci_set_drvdata(pci, NULL);
2379}
2380
2381/* PCI IDs */
Takashi Iwaif40b6892006-07-05 16:51:05 +02002382static struct pci_device_id azx_ids[] = {
Takashi Iwai87218e92008-02-21 08:13:11 +01002383 /* ICH 6..10 */
2384 { PCI_DEVICE(0x8086, 0x2668), .driver_data = AZX_DRIVER_ICH },
2385 { PCI_DEVICE(0x8086, 0x27d8), .driver_data = AZX_DRIVER_ICH },
2386 { PCI_DEVICE(0x8086, 0x269a), .driver_data = AZX_DRIVER_ICH },
2387 { PCI_DEVICE(0x8086, 0x284b), .driver_data = AZX_DRIVER_ICH },
Kailang Yangabbc9d12008-05-27 11:48:01 +02002388 { PCI_DEVICE(0x8086, 0x2911), .driver_data = AZX_DRIVER_ICH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002389 { PCI_DEVICE(0x8086, 0x293e), .driver_data = AZX_DRIVER_ICH },
2390 { PCI_DEVICE(0x8086, 0x293f), .driver_data = AZX_DRIVER_ICH },
2391 { PCI_DEVICE(0x8086, 0x3a3e), .driver_data = AZX_DRIVER_ICH },
2392 { PCI_DEVICE(0x8086, 0x3a6e), .driver_data = AZX_DRIVER_ICH },
Seth Heasleyb29c2362008-08-08 15:56:39 -07002393 /* PCH */
2394 { PCI_DEVICE(0x8086, 0x3b56), .driver_data = AZX_DRIVER_ICH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002395 /* SCH */
2396 { PCI_DEVICE(0x8086, 0x811b), .driver_data = AZX_DRIVER_SCH },
2397 /* ATI SB 450/600 */
2398 { PCI_DEVICE(0x1002, 0x437b), .driver_data = AZX_DRIVER_ATI },
2399 { PCI_DEVICE(0x1002, 0x4383), .driver_data = AZX_DRIVER_ATI },
2400 /* ATI HDMI */
2401 { PCI_DEVICE(0x1002, 0x793b), .driver_data = AZX_DRIVER_ATIHDMI },
2402 { PCI_DEVICE(0x1002, 0x7919), .driver_data = AZX_DRIVER_ATIHDMI },
2403 { PCI_DEVICE(0x1002, 0x960f), .driver_data = AZX_DRIVER_ATIHDMI },
Libin Yang9e6dd472008-08-12 12:25:46 +02002404 { PCI_DEVICE(0x1002, 0x970f), .driver_data = AZX_DRIVER_ATIHDMI },
Takashi Iwai87218e92008-02-21 08:13:11 +01002405 { PCI_DEVICE(0x1002, 0xaa00), .driver_data = AZX_DRIVER_ATIHDMI },
2406 { PCI_DEVICE(0x1002, 0xaa08), .driver_data = AZX_DRIVER_ATIHDMI },
2407 { PCI_DEVICE(0x1002, 0xaa10), .driver_data = AZX_DRIVER_ATIHDMI },
2408 { PCI_DEVICE(0x1002, 0xaa18), .driver_data = AZX_DRIVER_ATIHDMI },
2409 { PCI_DEVICE(0x1002, 0xaa20), .driver_data = AZX_DRIVER_ATIHDMI },
2410 { PCI_DEVICE(0x1002, 0xaa28), .driver_data = AZX_DRIVER_ATIHDMI },
2411 { PCI_DEVICE(0x1002, 0xaa30), .driver_data = AZX_DRIVER_ATIHDMI },
2412 { PCI_DEVICE(0x1002, 0xaa38), .driver_data = AZX_DRIVER_ATIHDMI },
2413 { PCI_DEVICE(0x1002, 0xaa40), .driver_data = AZX_DRIVER_ATIHDMI },
2414 { PCI_DEVICE(0x1002, 0xaa48), .driver_data = AZX_DRIVER_ATIHDMI },
2415 /* VIA VT8251/VT8237A */
2416 { PCI_DEVICE(0x1106, 0x3288), .driver_data = AZX_DRIVER_VIA },
2417 /* SIS966 */
2418 { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
2419 /* ULI M5461 */
2420 { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
2421 /* NVIDIA MCP */
2422 { PCI_DEVICE(0x10de, 0x026c), .driver_data = AZX_DRIVER_NVIDIA },
2423 { PCI_DEVICE(0x10de, 0x0371), .driver_data = AZX_DRIVER_NVIDIA },
2424 { PCI_DEVICE(0x10de, 0x03e4), .driver_data = AZX_DRIVER_NVIDIA },
2425 { PCI_DEVICE(0x10de, 0x03f0), .driver_data = AZX_DRIVER_NVIDIA },
2426 { PCI_DEVICE(0x10de, 0x044a), .driver_data = AZX_DRIVER_NVIDIA },
2427 { PCI_DEVICE(0x10de, 0x044b), .driver_data = AZX_DRIVER_NVIDIA },
2428 { PCI_DEVICE(0x10de, 0x055c), .driver_data = AZX_DRIVER_NVIDIA },
2429 { PCI_DEVICE(0x10de, 0x055d), .driver_data = AZX_DRIVER_NVIDIA },
2430 { PCI_DEVICE(0x10de, 0x0774), .driver_data = AZX_DRIVER_NVIDIA },
2431 { PCI_DEVICE(0x10de, 0x0775), .driver_data = AZX_DRIVER_NVIDIA },
2432 { PCI_DEVICE(0x10de, 0x0776), .driver_data = AZX_DRIVER_NVIDIA },
2433 { PCI_DEVICE(0x10de, 0x0777), .driver_data = AZX_DRIVER_NVIDIA },
2434 { PCI_DEVICE(0x10de, 0x07fc), .driver_data = AZX_DRIVER_NVIDIA },
2435 { PCI_DEVICE(0x10de, 0x07fd), .driver_data = AZX_DRIVER_NVIDIA },
2436 { PCI_DEVICE(0x10de, 0x0ac0), .driver_data = AZX_DRIVER_NVIDIA },
2437 { PCI_DEVICE(0x10de, 0x0ac1), .driver_data = AZX_DRIVER_NVIDIA },
2438 { PCI_DEVICE(0x10de, 0x0ac2), .driver_data = AZX_DRIVER_NVIDIA },
2439 { PCI_DEVICE(0x10de, 0x0ac3), .driver_data = AZX_DRIVER_NVIDIA },
Peer Chen487145a2008-03-06 15:15:11 +01002440 { PCI_DEVICE(0x10de, 0x0bd4), .driver_data = AZX_DRIVER_NVIDIA },
2441 { PCI_DEVICE(0x10de, 0x0bd5), .driver_data = AZX_DRIVER_NVIDIA },
2442 { PCI_DEVICE(0x10de, 0x0bd6), .driver_data = AZX_DRIVER_NVIDIA },
2443 { PCI_DEVICE(0x10de, 0x0bd7), .driver_data = AZX_DRIVER_NVIDIA },
Kailang Yangf2690022008-05-27 11:44:55 +02002444 /* Teradici */
2445 { PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
Yang, Libinc4da29c2008-11-13 11:07:07 +01002446 /* AMD Generic, PCI class code and Vendor ID for HD Audio */
2447 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
2448 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2449 .class_mask = 0xffffff,
2450 .driver_data = AZX_DRIVER_GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 { 0, }
2452};
2453MODULE_DEVICE_TABLE(pci, azx_ids);
2454
2455/* pci_driver definition */
2456static struct pci_driver driver = {
2457 .name = "HDA Intel",
2458 .id_table = azx_ids,
2459 .probe = azx_probe,
2460 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002461#ifdef CONFIG_PM
2462 .suspend = azx_suspend,
2463 .resume = azx_resume,
2464#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465};
2466
2467static int __init alsa_card_azx_init(void)
2468{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002469 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470}
2471
2472static void __exit alsa_card_azx_exit(void)
2473{
2474 pci_unregister_driver(&driver);
2475}
2476
2477module_init(alsa_card_azx_init)
2478module_exit(alsa_card_azx_exit)