blob: cf1a1d0124fece4ca2d2644ac2d9d1b02030d0c7 [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>
42#include <linux/moduleparam.h>
43#include <linux/init.h>
44#include <linux/slab.h>
45#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010046#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <sound/core.h>
48#include <sound/initval.h>
49#include "hda_codec.h"
50
51
Takashi Iwai5aba4f82008-01-07 15:16:37 +010052static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
53static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
54static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
55static char *model[SNDRV_CARDS];
56static int position_fix[SNDRV_CARDS];
57static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwai27346162006-01-12 18:28:44 +010058static int single_cmd;
Takashi Iwai134a11f2006-11-10 12:08:37 +010059static int enable_msi;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Takashi Iwai5aba4f82008-01-07 15:16:37 +010061module_param_array(index, int, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010063module_param_array(id, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010065module_param_array(enable, bool, NULL, 0444);
66MODULE_PARM_DESC(enable, "Enable Intel HD audio interface.");
67module_param_array(model, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068MODULE_PARM_DESC(model, "Use the given board model.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010069module_param_array(position_fix, int, NULL, 0444);
Takashi Iwaid01ce992007-07-27 16:52:19 +020070MODULE_PARM_DESC(position_fix, "Fix DMA pointer "
71 "(0 = auto, 1 = none, 2 = POSBUF, 3 = FIFO size).");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010072module_param_array(probe_mask, int, NULL, 0444);
Takashi Iwai606ad752005-11-24 16:03:40 +010073MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1).");
Takashi Iwai27346162006-01-12 18:28:44 +010074module_param(single_cmd, bool, 0444);
Takashi Iwaid01ce992007-07-27 16:52:19 +020075MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs "
76 "(for debugging only).");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010077module_param(enable_msi, int, 0444);
Takashi Iwai134a11f2006-11-10 12:08:37 +010078MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)");
Takashi Iwai606ad752005-11-24 16:03:40 +010079
Takashi Iwaidee1b662007-08-13 16:10:30 +020080#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaicb53c622007-08-10 17:21:45 +020081/* power_save option is defined in hda_codec.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Takashi Iwaidee1b662007-08-13 16:10:30 +020083/* reset the HD-audio controller in power save mode.
84 * this may give more power-saving, but will take longer time to
85 * wake up.
86 */
87static int power_save_controller = 1;
88module_param(power_save_controller, bool, 0644);
89MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode.");
90#endif
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092MODULE_LICENSE("GPL");
93MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
94 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -070095 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +020096 "{Intel, ESB2},"
Jason Gastond2981392006-01-10 11:07:37 +010097 "{Intel, ICH8},"
Jason Gastonf9cc8a82006-11-22 11:53:52 +010098 "{Intel, ICH9},"
Jason Gastonc34f5a02008-01-29 12:38:49 +010099 "{Intel, ICH10},"
Tobin Davis4979bca2008-01-30 08:13:55 +0100100 "{Intel, SCH},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200101 "{ATI, SB450},"
Felix Kuehling89be83f2006-03-31 12:33:59 +0200102 "{ATI, SB600},"
Felix Kuehling778b6e12006-05-17 11:22:21 +0200103 "{ATI, RS600},"
Felix Kuehling5b15c952006-10-16 12:49:47 +0200104 "{ATI, RS690},"
Wolke Liue6db1112007-04-27 12:20:57 +0200105 "{ATI, RS780},"
106 "{ATI, R600},"
Herton Ronaldo Krzesinski2797f722007-11-05 18:21:56 +0100107 "{ATI, RV630},"
108 "{ATI, RV610},"
Wolke Liu27da1832007-11-16 11:06:30 +0100109 "{ATI, RV670},"
110 "{ATI, RV635},"
111 "{ATI, RV620},"
112 "{ATI, RV770},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200113 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +0200114 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200115 "{SiS, SIS966},"
116 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117MODULE_DESCRIPTION("Intel HDA driver");
118
119#define SFX "hda-intel: "
120
Takashi Iwaicb53c622007-08-10 17:21:45 +0200121
122/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * registers
124 */
125#define ICH6_REG_GCAP 0x00
126#define ICH6_REG_VMIN 0x02
127#define ICH6_REG_VMAJ 0x03
128#define ICH6_REG_OUTPAY 0x04
129#define ICH6_REG_INPAY 0x06
130#define ICH6_REG_GCTL 0x08
131#define ICH6_REG_WAKEEN 0x0c
132#define ICH6_REG_STATESTS 0x0e
133#define ICH6_REG_GSTS 0x10
134#define ICH6_REG_INTCTL 0x20
135#define ICH6_REG_INTSTS 0x24
136#define ICH6_REG_WALCLK 0x30
137#define ICH6_REG_SYNC 0x34
138#define ICH6_REG_CORBLBASE 0x40
139#define ICH6_REG_CORBUBASE 0x44
140#define ICH6_REG_CORBWP 0x48
141#define ICH6_REG_CORBRP 0x4A
142#define ICH6_REG_CORBCTL 0x4c
143#define ICH6_REG_CORBSTS 0x4d
144#define ICH6_REG_CORBSIZE 0x4e
145
146#define ICH6_REG_RIRBLBASE 0x50
147#define ICH6_REG_RIRBUBASE 0x54
148#define ICH6_REG_RIRBWP 0x58
149#define ICH6_REG_RINTCNT 0x5a
150#define ICH6_REG_RIRBCTL 0x5c
151#define ICH6_REG_RIRBSTS 0x5d
152#define ICH6_REG_RIRBSIZE 0x5e
153
154#define ICH6_REG_IC 0x60
155#define ICH6_REG_IR 0x64
156#define ICH6_REG_IRS 0x68
157#define ICH6_IRS_VALID (1<<1)
158#define ICH6_IRS_BUSY (1<<0)
159
160#define ICH6_REG_DPLBASE 0x70
161#define ICH6_REG_DPUBASE 0x74
162#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
163
164/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
165enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
166
167/* stream register offsets from stream base */
168#define ICH6_REG_SD_CTL 0x00
169#define ICH6_REG_SD_STS 0x03
170#define ICH6_REG_SD_LPIB 0x04
171#define ICH6_REG_SD_CBL 0x08
172#define ICH6_REG_SD_LVI 0x0c
173#define ICH6_REG_SD_FIFOW 0x0e
174#define ICH6_REG_SD_FIFOSIZE 0x10
175#define ICH6_REG_SD_FORMAT 0x12
176#define ICH6_REG_SD_BDLPL 0x18
177#define ICH6_REG_SD_BDLPU 0x1c
178
179/* PCI space */
180#define ICH6_PCIREG_TCSEL 0x44
181
182/*
183 * other constants
184 */
185
186/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200187/* ICH, ATI and VIA have 4 playback and 4 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200188#define ICH6_NUM_CAPTURE 4
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200189#define ICH6_NUM_PLAYBACK 4
190
191/* ULI has 6 playback and 5 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200192#define ULI_NUM_CAPTURE 5
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200193#define ULI_NUM_PLAYBACK 6
194
Felix Kuehling778b6e12006-05-17 11:22:21 +0200195/* ATI HDMI has 1 playback and 0 capture */
Felix Kuehling778b6e12006-05-17 11:22:21 +0200196#define ATIHDMI_NUM_CAPTURE 0
Felix Kuehling778b6e12006-05-17 11:22:21 +0200197#define ATIHDMI_NUM_PLAYBACK 1
198
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200199/* this number is statically defined for simplicity */
200#define MAX_AZX_DEV 16
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100203#define BDL_SIZE 4096
204#define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
205#define AZX_MAX_FRAG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/* max buffer size - no h/w limit, you can increase as you like */
207#define AZX_MAX_BUF_SIZE (1024*1024*1024)
208/* max number of PCM devics per card */
Takashi Iwai7ba72ba2008-02-06 14:03:20 +0100209#define AZX_MAX_PCMS 8
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/* RIRB int mask: overrun[2], response[0] */
212#define RIRB_INT_RESPONSE 0x01
213#define RIRB_INT_OVERRUN 0x04
214#define RIRB_INT_MASK 0x05
215
216/* STATESTS int mask: SD2,SD1,SD0 */
Takashi Iwai19a982b2007-03-21 15:14:35 +0100217#define AZX_MAX_CODECS 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#define STATESTS_INT_MASK 0x07
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220/* SD_CTL bits */
221#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
222#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
223#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
224#define SD_CTL_STREAM_TAG_SHIFT 20
225
226/* SD_CTL and SD_STS */
227#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
228#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
229#define SD_INT_COMPLETE 0x04 /* completion interrupt */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200230#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
231 SD_INT_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233/* SD_STS */
234#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
235
236/* INTCTL and INTSTS */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200237#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
238#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
239#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Matt41e2fce2005-07-04 17:49:55 +0200241/* GCTL unsolicited response enable bit */
242#define ICH6_GCTL_UREN (1<<8)
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/* GCTL reset bit */
245#define ICH6_GCTL_RESET (1<<0)
246
247/* CORB/RIRB control, read/write pointer */
248#define ICH6_RBCTL_DMA_EN 0x02 /* enable DMA */
249#define ICH6_RBCTL_IRQ_EN 0x01 /* enable IRQ */
250#define ICH6_RBRWP_CLR 0x8000 /* read/write pointer clear */
251/* below are so far hardcoded - should read registers in future */
252#define ICH6_MAX_CORB_ENTRIES 256
253#define ICH6_MAX_RIRB_ENTRIES 256
254
Takashi Iwaic74db862005-05-12 14:26:27 +0200255/* position fix mode */
256enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200257 POS_FIX_AUTO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200258 POS_FIX_NONE,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200259 POS_FIX_POSBUF,
260 POS_FIX_FIFO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200261};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Frederick Lif5d40b32005-05-12 14:55:20 +0200263/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200264#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
265#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
266
Vinod Gda3fca22005-09-13 18:49:12 +0200267/* Defines for Nvidia HDA support */
268#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
269#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Frederick Lif5d40b32005-05-12 14:55:20 +0200270
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100271/* Defines for Intel SCH HDA snoop control */
272#define INTEL_SCH_HDA_DEVC 0x78
273#define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
274
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 */
278
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100279struct azx_dev {
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100280 struct snd_dma_buffer bdl; /* BDL buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200281 u32 *posbuf; /* position buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Takashi Iwaid01ce992007-07-27 16:52:19 +0200283 unsigned int bufsize; /* size of the play buffer in bytes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200284 unsigned int frags; /* number for period in the play buffer */
285 unsigned int fifo_size; /* FIFO size */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Takashi Iwaid01ce992007-07-27 16:52:19 +0200287 void __iomem *sd_addr; /* stream descriptor pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Takashi Iwaid01ce992007-07-27 16:52:19 +0200289 u32 sd_int_sta_mask; /* stream int status mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
291 /* pcm support */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200292 struct snd_pcm_substream *substream; /* assigned substream,
293 * set in PCM open
294 */
295 unsigned int format_val; /* format value to be set in the
296 * controller and the codec
297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 unsigned char stream_tag; /* assigned stream */
299 unsigned char index; /* stream index */
Takashi Iwai1a56f8d2006-02-16 19:51:10 +0100300 /* for sanity check of position buffer */
301 unsigned int period_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Pavel Machek927fc862006-08-31 17:03:43 +0200303 unsigned int opened :1;
304 unsigned int running :1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
307/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100308struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 u32 *buf; /* CORB/RIRB buffer
310 * Each CORB entry is 4byte, RIRB is 8byte
311 */
312 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
313 /* for RIRB */
314 unsigned short rp, wp; /* read/write pointers */
315 int cmds; /* number of pending requests */
316 u32 res; /* last read value */
317};
318
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100319struct azx {
320 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 struct pci_dev *pci;
322
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200323 /* chip type specific */
324 int driver_type;
325 int playback_streams;
326 int playback_index_offset;
327 int capture_streams;
328 int capture_index_offset;
329 int num_streams;
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 /* pci resources */
332 unsigned long addr;
333 void __iomem *remap_addr;
334 int irq;
335
336 /* locks */
337 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100338 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200340 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100341 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343 /* PCM */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100344 struct snd_pcm *pcm[AZX_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 /* HD codec */
347 unsigned short codec_mask;
348 struct hda_bus *bus;
349
350 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100351 struct azx_rb corb;
352 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100354 /* CORB/RIRB and position buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 struct snd_dma_buffer rb;
356 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200357
358 /* flags */
359 int position_fix;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200360 unsigned int running :1;
Pavel Machek927fc862006-08-31 17:03:43 +0200361 unsigned int initialized :1;
362 unsigned int single_cmd :1;
363 unsigned int polling_mode :1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200364 unsigned int msi :1;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200365
366 /* for debugging */
367 unsigned int last_cmd; /* last issued command (to sync) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368};
369
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200370/* driver types */
371enum {
372 AZX_DRIVER_ICH,
Tobin Davis4979bca2008-01-30 08:13:55 +0100373 AZX_DRIVER_SCH,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200374 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200375 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200376 AZX_DRIVER_VIA,
377 AZX_DRIVER_SIS,
378 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200379 AZX_DRIVER_NVIDIA,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200380};
381
382static char *driver_short_names[] __devinitdata = {
383 [AZX_DRIVER_ICH] = "HDA Intel",
Tobin Davis4979bca2008-01-30 08:13:55 +0100384 [AZX_DRIVER_SCH] = "HDA Intel MID",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200385 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200386 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200387 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
388 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200389 [AZX_DRIVER_ULI] = "HDA ULI M5461",
390 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200391};
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/*
394 * macros for easy use
395 */
396#define azx_writel(chip,reg,value) \
397 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
398#define azx_readl(chip,reg) \
399 readl((chip)->remap_addr + ICH6_REG_##reg)
400#define azx_writew(chip,reg,value) \
401 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
402#define azx_readw(chip,reg) \
403 readw((chip)->remap_addr + ICH6_REG_##reg)
404#define azx_writeb(chip,reg,value) \
405 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
406#define azx_readb(chip,reg) \
407 readb((chip)->remap_addr + ICH6_REG_##reg)
408
409#define azx_sd_writel(dev,reg,value) \
410 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
411#define azx_sd_readl(dev,reg) \
412 readl((dev)->sd_addr + ICH6_REG_##reg)
413#define azx_sd_writew(dev,reg,value) \
414 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
415#define azx_sd_readw(dev,reg) \
416 readw((dev)->sd_addr + ICH6_REG_##reg)
417#define azx_sd_writeb(dev,reg,value) \
418 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
419#define azx_sd_readb(dev,reg) \
420 readb((dev)->sd_addr + ICH6_REG_##reg)
421
422/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100423#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425/* Get the upper 32bit of the given dma_addr_t
426 * Compiler should optimize and eliminate the code if dma_addr_t is 32bit
427 */
428#define upper_32bit(addr) (sizeof(addr) > 4 ? (u32)((addr) >> 32) : (u32)0)
429
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200430static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
432/*
433 * Interface for HD codec
434 */
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436/*
437 * CORB / RIRB interface
438 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100439static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 int err;
442
443 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200444 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
445 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 PAGE_SIZE, &chip->rb);
447 if (err < 0) {
448 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
449 return err;
450 }
451 return 0;
452}
453
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100454static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 /* CORB set up */
457 chip->corb.addr = chip->rb.addr;
458 chip->corb.buf = (u32 *)chip->rb.area;
459 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
460 azx_writel(chip, CORBUBASE, upper_32bit(chip->corb.addr));
461
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200462 /* set the corb size to 256 entries (ULI requires explicitly) */
463 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /* set the corb write pointer to 0 */
465 azx_writew(chip, CORBWP, 0);
466 /* reset the corb hw read pointer */
467 azx_writew(chip, CORBRP, ICH6_RBRWP_CLR);
468 /* enable corb dma */
469 azx_writeb(chip, CORBCTL, ICH6_RBCTL_DMA_EN);
470
471 /* RIRB set up */
472 chip->rirb.addr = chip->rb.addr + 2048;
473 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
474 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
475 azx_writel(chip, RIRBUBASE, upper_32bit(chip->rirb.addr));
476
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200477 /* set the rirb size to 256 entries (ULI requires explicitly) */
478 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 /* reset the rirb hw write pointer */
480 azx_writew(chip, RIRBWP, ICH6_RBRWP_CLR);
481 /* set N=1, get RIRB response interrupt for new entry */
482 azx_writew(chip, RINTCNT, 1);
483 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 chip->rirb.rp = chip->rirb.cmds = 0;
486}
487
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100488static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 /* disable ringbuffer DMAs */
491 azx_writeb(chip, RIRBCTL, 0);
492 azx_writeb(chip, CORBCTL, 0);
493}
494
495/* send a command */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200496static int azx_corb_send_cmd(struct hda_codec *codec, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100498 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 unsigned int wp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 /* add command to corb */
502 wp = azx_readb(chip, CORBWP);
503 wp++;
504 wp %= ICH6_MAX_CORB_ENTRIES;
505
506 spin_lock_irq(&chip->reg_lock);
507 chip->rirb.cmds++;
508 chip->corb.buf[wp] = cpu_to_le32(val);
509 azx_writel(chip, CORBWP, wp);
510 spin_unlock_irq(&chip->reg_lock);
511
512 return 0;
513}
514
515#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
516
517/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100518static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
520 unsigned int rp, wp;
521 u32 res, res_ex;
522
523 wp = azx_readb(chip, RIRBWP);
524 if (wp == chip->rirb.wp)
525 return;
526 chip->rirb.wp = wp;
527
528 while (chip->rirb.rp != wp) {
529 chip->rirb.rp++;
530 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
531
532 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
533 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
534 res = le32_to_cpu(chip->rirb.buf[rp]);
535 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
536 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
537 else if (chip->rirb.cmds) {
538 chip->rirb.cmds--;
539 chip->rirb.res = res;
540 }
541 }
542}
543
544/* receive a response */
Takashi Iwai111d3af2006-02-16 18:17:58 +0100545static unsigned int azx_rirb_get_response(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100547 struct azx *chip = codec->bus->private_data;
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200548 unsigned long timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200550 again:
551 timeout = jiffies + msecs_to_jiffies(1000);
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100552 for (;;) {
Takashi Iwaie96224a2006-08-21 17:57:44 +0200553 if (chip->polling_mode) {
554 spin_lock_irq(&chip->reg_lock);
555 azx_update_rirb(chip);
556 spin_unlock_irq(&chip->reg_lock);
557 }
Takashi Iwaid01ce992007-07-27 16:52:19 +0200558 if (!chip->rirb.cmds)
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200559 return chip->rirb.res; /* the last value */
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100560 if (time_after(jiffies, timeout))
561 break;
Takashi Iwai52987652008-01-16 16:09:47 +0100562 if (codec->bus->needs_damn_long_delay)
563 msleep(2); /* temporary workaround */
564 else {
565 udelay(10);
566 cond_resched();
567 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100568 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200569
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200570 if (chip->msi) {
571 snd_printk(KERN_WARNING "hda_intel: No response from codec, "
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200572 "disabling MSI: last cmd=0x%08x\n", chip->last_cmd);
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200573 free_irq(chip->irq, chip);
574 chip->irq = -1;
575 pci_disable_msi(chip->pci);
576 chip->msi = 0;
577 if (azx_acquire_irq(chip, 1) < 0)
578 return -1;
579 goto again;
580 }
581
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200582 if (!chip->polling_mode) {
583 snd_printk(KERN_WARNING "hda_intel: azx_get_response timeout, "
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200584 "switching to polling mode: last cmd=0x%08x\n",
585 chip->last_cmd);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200586 chip->polling_mode = 1;
587 goto again;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200589
590 snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200591 "switching to single_cmd mode: last cmd=0x%08x\n",
592 chip->last_cmd);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200593 chip->rirb.rp = azx_readb(chip, RIRBWP);
594 chip->rirb.cmds = 0;
595 /* switch to single_cmd mode */
596 chip->single_cmd = 1;
597 azx_free_cmd_io(chip);
598 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599}
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601/*
602 * Use the single immediate command instead of CORB/RIRB for simplicity
603 *
604 * Note: according to Intel, this is not preferred use. The command was
605 * intended for the BIOS only, and may get confused with unsolicited
606 * responses. So, we shouldn't use it for normal operation from the
607 * driver.
608 * I left the codes, however, for debugging/testing purposes.
609 */
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611/* send a command */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200612static int azx_single_send_cmd(struct hda_codec *codec, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100614 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 int timeout = 50;
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 while (timeout--) {
618 /* check ICB busy bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200619 if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* Clear IRV valid bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200621 azx_writew(chip, IRS, azx_readw(chip, IRS) |
622 ICH6_IRS_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 azx_writel(chip, IC, val);
Takashi Iwaid01ce992007-07-27 16:52:19 +0200624 azx_writew(chip, IRS, azx_readw(chip, IRS) |
625 ICH6_IRS_BUSY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return 0;
627 }
628 udelay(1);
629 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100630 if (printk_ratelimit())
631 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
632 azx_readw(chip, IRS), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return -EIO;
634}
635
636/* receive a response */
Takashi Iwai27346162006-01-12 18:28:44 +0100637static unsigned int azx_single_get_response(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100639 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int timeout = 50;
641
642 while (timeout--) {
643 /* check IRV busy bit */
644 if (azx_readw(chip, IRS) & ICH6_IRS_VALID)
645 return azx_readl(chip, IR);
646 udelay(1);
647 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100648 if (printk_ratelimit())
649 snd_printd(SFX "get_response timeout: IRS=0x%x\n",
650 azx_readw(chip, IRS));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return (unsigned int)-1;
652}
653
Takashi Iwai111d3af2006-02-16 18:17:58 +0100654/*
655 * The below are the main callbacks from hda_codec.
656 *
657 * They are just the skeleton to call sub-callbacks according to the
658 * current setting of chip->single_cmd.
659 */
660
661/* send a command */
662static int azx_send_cmd(struct hda_codec *codec, hda_nid_t nid,
663 int direct, unsigned int verb,
664 unsigned int para)
665{
666 struct azx *chip = codec->bus->private_data;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200667 u32 val;
668
669 val = (u32)(codec->addr & 0x0f) << 28;
670 val |= (u32)direct << 27;
671 val |= (u32)nid << 20;
672 val |= verb << 8;
673 val |= para;
674 chip->last_cmd = val;
675
Takashi Iwai111d3af2006-02-16 18:17:58 +0100676 if (chip->single_cmd)
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200677 return azx_single_send_cmd(codec, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100678 else
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200679 return azx_corb_send_cmd(codec, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100680}
681
682/* get a response */
683static unsigned int azx_get_response(struct hda_codec *codec)
684{
685 struct azx *chip = codec->bus->private_data;
686 if (chip->single_cmd)
687 return azx_single_get_response(codec);
688 else
689 return azx_rirb_get_response(codec);
690}
691
Takashi Iwaicb53c622007-08-10 17:21:45 +0200692#ifdef CONFIG_SND_HDA_POWER_SAVE
693static void azx_power_notify(struct hda_codec *codec);
694#endif
Takashi Iwai111d3af2006-02-16 18:17:58 +0100695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696/* reset codec link */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100697static int azx_reset(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
699 int count;
700
Danny Tholene8a7f132007-09-11 21:41:56 +0200701 /* clear STATESTS */
702 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 /* reset controller */
705 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
706
707 count = 50;
708 while (azx_readb(chip, GCTL) && --count)
709 msleep(1);
710
711 /* delay for >= 100us for codec PLL to settle per spec
712 * Rev 0.9 section 5.5.1
713 */
714 msleep(1);
715
716 /* Bring controller out of reset */
717 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
718
719 count = 50;
Pavel Machek927fc862006-08-31 17:03:43 +0200720 while (!azx_readb(chip, GCTL) && --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 msleep(1);
722
Pavel Machek927fc862006-08-31 17:03:43 +0200723 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 msleep(1);
725
726 /* check to see if controller is ready */
Pavel Machek927fc862006-08-31 17:03:43 +0200727 if (!azx_readb(chip, GCTL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 snd_printd("azx_reset: controller not ready!\n");
729 return -EBUSY;
730 }
731
Matt41e2fce2005-07-04 17:49:55 +0200732 /* Accept unsolicited responses */
733 azx_writel(chip, GCTL, azx_readl(chip, GCTL) | ICH6_GCTL_UREN);
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /* detect codecs */
Pavel Machek927fc862006-08-31 17:03:43 +0200736 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 chip->codec_mask = azx_readw(chip, STATESTS);
738 snd_printdd("codec_mask = 0x%x\n", chip->codec_mask);
739 }
740
741 return 0;
742}
743
744
745/*
746 * Lowlevel interface
747 */
748
749/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100750static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 /* enable controller CIE and GIE */
753 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
754 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
755}
756
757/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100758static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 int i;
761
762 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200763 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100764 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 azx_sd_writeb(azx_dev, SD_CTL,
766 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
767 }
768
769 /* disable SIE for all streams */
770 azx_writeb(chip, INTCTL, 0);
771
772 /* disable controller CIE and GIE */
773 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
774 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
775}
776
777/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100778static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
780 int i;
781
782 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200783 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100784 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
786 }
787
788 /* clear STATESTS */
789 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
790
791 /* clear rirb status */
792 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
793
794 /* clear int status */
795 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
796}
797
798/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100799static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 /* enable SIE */
802 azx_writeb(chip, INTCTL,
803 azx_readb(chip, INTCTL) | (1 << azx_dev->index));
804 /* set DMA start and interrupt mask */
805 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
806 SD_CTL_DMA_START | SD_INT_MASK);
807}
808
809/* stop a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100810static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
812 /* stop DMA */
813 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
814 ~(SD_CTL_DMA_START | SD_INT_MASK));
815 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
816 /* disable SIE */
817 azx_writeb(chip, INTCTL,
818 azx_readb(chip, INTCTL) & ~(1 << azx_dev->index));
819}
820
821
822/*
Takashi Iwaicb53c622007-08-10 17:21:45 +0200823 * reset and start the controller registers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100825static void azx_init_chip(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Takashi Iwaicb53c622007-08-10 17:21:45 +0200827 if (chip->initialized)
828 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 /* reset controller */
831 azx_reset(chip);
832
833 /* initialize interrupts */
834 azx_int_clear(chip);
835 azx_int_enable(chip);
836
837 /* initialize the codec command I/O */
Pavel Machek927fc862006-08-31 17:03:43 +0200838 if (!chip->single_cmd)
Takashi Iwai27346162006-01-12 18:28:44 +0100839 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200841 /* program the position buffer */
842 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
843 azx_writel(chip, DPUBASE, upper_32bit(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +0200844
Takashi Iwaicb53c622007-08-10 17:21:45 +0200845 chip->initialized = 1;
846}
847
848/*
849 * initialize the PCI registers
850 */
851/* update bits in a PCI register byte */
852static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
853 unsigned char mask, unsigned char val)
854{
855 unsigned char data;
856
857 pci_read_config_byte(pci, reg, &data);
858 data &= ~mask;
859 data |= (val & mask);
860 pci_write_config_byte(pci, reg, data);
861}
862
863static void azx_init_pci(struct azx *chip)
864{
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100865 unsigned short snoop;
866
Takashi Iwaicb53c622007-08-10 17:21:45 +0200867 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
868 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
869 * Ensuring these bits are 0 clears playback static on some HD Audio
870 * codecs
871 */
872 update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
873
Vinod Gda3fca22005-09-13 18:49:12 +0200874 switch (chip->driver_type) {
875 case AZX_DRIVER_ATI:
876 /* For ATI SB450 azalia HD audio, we need to enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200877 update_pci_byte(chip->pci,
878 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
879 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
Vinod Gda3fca22005-09-13 18:49:12 +0200880 break;
881 case AZX_DRIVER_NVIDIA:
882 /* For NVIDIA HDA, enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +0200883 update_pci_byte(chip->pci,
884 NVIDIA_HDA_TRANSREG_ADDR,
885 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
Vinod Gda3fca22005-09-13 18:49:12 +0200886 break;
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100887 case AZX_DRIVER_SCH:
888 pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
889 if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
890 pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC, \
891 snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
892 pci_read_config_word(chip->pci,
893 INTEL_SCH_HDA_DEVC, &snoop);
894 snd_printdd("HDA snoop disabled, enabling ... %s\n",\
895 (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) \
896 ? "Failed" : "OK");
897 }
898 break;
899
Vinod Gda3fca22005-09-13 18:49:12 +0200900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903
904/*
905 * interrupt handler
906 */
David Howells7d12e782006-10-05 14:55:46 +0100907static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100909 struct azx *chip = dev_id;
910 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 u32 status;
912 int i;
913
914 spin_lock(&chip->reg_lock);
915
916 status = azx_readl(chip, INTSTS);
917 if (status == 0) {
918 spin_unlock(&chip->reg_lock);
919 return IRQ_NONE;
920 }
921
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200922 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 azx_dev = &chip->azx_dev[i];
924 if (status & azx_dev->sd_int_sta_mask) {
925 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
926 if (azx_dev->substream && azx_dev->running) {
Takashi Iwai1a56f8d2006-02-16 19:51:10 +0100927 azx_dev->period_intr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 spin_unlock(&chip->reg_lock);
929 snd_pcm_period_elapsed(azx_dev->substream);
930 spin_lock(&chip->reg_lock);
931 }
932 }
933 }
934
935 /* clear rirb int */
936 status = azx_readb(chip, RIRBSTS);
937 if (status & RIRB_INT_MASK) {
Takashi Iwaid01ce992007-07-27 16:52:19 +0200938 if (!chip->single_cmd && (status & RIRB_INT_RESPONSE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 azx_update_rirb(chip);
940 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
941 }
942
943#if 0
944 /* clear state status int */
945 if (azx_readb(chip, STATESTS) & 0x04)
946 azx_writeb(chip, STATESTS, 0x04);
947#endif
948 spin_unlock(&chip->reg_lock);
949
950 return IRQ_HANDLED;
951}
952
953
954/*
955 * set up BDL entries
956 */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100957static int azx_setup_periods(struct snd_pcm_substream *substream,
958 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100960 struct snd_sg_buf *sgbuf = snd_pcm_substream_sgbuf(substream);
961 u32 *bdl;
962 int i, ofs, periods, period_bytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 /* reset BDL address */
965 azx_sd_writel(azx_dev, SD_BDLPL, 0);
966 azx_sd_writel(azx_dev, SD_BDLPU, 0);
967
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100968 period_bytes = snd_pcm_lib_period_bytes(substream);
969 periods = azx_dev->bufsize / period_bytes;
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100972 bdl = (u32 *)azx_dev->bdl.area;
973 ofs = 0;
974 azx_dev->frags = 0;
975 for (i = 0; i < periods; i++) {
976 int size, rest;
977 if (i >= AZX_MAX_BDL_ENTRIES) {
978 snd_printk(KERN_ERR "Too many BDL entries: "
979 "buffer=%d, period=%d\n",
980 azx_dev->bufsize, period_bytes);
981 /* reset */
982 azx_sd_writel(azx_dev, SD_BDLPL, 0);
983 azx_sd_writel(azx_dev, SD_BDLPU, 0);
984 return -EINVAL;
985 }
986 rest = period_bytes;
987 do {
988 dma_addr_t addr = snd_pcm_sgbuf_get_addr(sgbuf, ofs);
989 /* program the address field of the BDL entry */
990 bdl[0] = cpu_to_le32((u32)addr);
991 bdl[1] = cpu_to_le32(upper_32bit(addr));
992 /* program the size field of the BDL entry */
993 size = PAGE_SIZE - (ofs % PAGE_SIZE);
994 if (rest < size)
995 size = rest;
996 bdl[2] = cpu_to_le32(size);
997 /* program the IOC to enable interrupt
998 * only when the whole fragment is processed
999 */
1000 rest -= size;
1001 bdl[3] = rest ? 0 : cpu_to_le32(0x01);
1002 bdl += 4;
1003 azx_dev->frags++;
1004 ofs += size;
1005 } while (rest > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001007 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008}
1009
1010/*
1011 * set up the SD for streaming
1012 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001013static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
1015 unsigned char val;
1016 int timeout;
1017
1018 /* make sure the run bit is zero for SD */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001019 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
1020 ~SD_CTL_DMA_START);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 /* reset stream */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001022 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1023 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 udelay(3);
1025 timeout = 300;
1026 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1027 --timeout)
1028 ;
1029 val &= ~SD_CTL_STREAM_RESET;
1030 azx_sd_writeb(azx_dev, SD_CTL, val);
1031 udelay(3);
1032
1033 timeout = 300;
1034 /* waiting for hardware to report that the stream is out of reset */
1035 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1036 --timeout)
1037 ;
1038
1039 /* program the stream_tag */
1040 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001041 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1043
1044 /* program the length of samples in cyclic buffer */
1045 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1046
1047 /* program the stream format */
1048 /* this value needs to be the same as the one programmed */
1049 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1050
1051 /* program the stream LVI (last valid index) of the BDL */
1052 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1053
1054 /* program the BDL address */
1055 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001056 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 /* upper BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001058 azx_sd_writel(azx_dev, SD_BDLPU, upper_32bit(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001060 /* enable the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001061 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1062 azx_writel(chip, DPLBASE,
1063 (u32)chip->posbuf.addr |ICH6_DPLBASE_ENABLE);
Takashi Iwaic74db862005-05-12 14:26:27 +02001064
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001066 azx_sd_writel(azx_dev, SD_CTL,
1067 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 return 0;
1070}
1071
1072
1073/*
1074 * Codec initialization
1075 */
1076
Takashi Iwaia9995a32007-03-12 21:30:46 +01001077static unsigned int azx_max_codecs[] __devinitdata = {
1078 [AZX_DRIVER_ICH] = 3,
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001079 [AZX_DRIVER_SCH] = 3,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001080 [AZX_DRIVER_ATI] = 4,
1081 [AZX_DRIVER_ATIHDMI] = 4,
1082 [AZX_DRIVER_VIA] = 3, /* FIXME: correct? */
1083 [AZX_DRIVER_SIS] = 3, /* FIXME: correct? */
1084 [AZX_DRIVER_ULI] = 3, /* FIXME: correct? */
1085 [AZX_DRIVER_NVIDIA] = 3, /* FIXME: correct? */
1086};
1087
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001088static int __devinit azx_codec_create(struct azx *chip, const char *model,
1089 unsigned int codec_probe_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
1091 struct hda_bus_template bus_temp;
Takashi Iwaibccad142007-04-24 12:23:53 +02001092 int c, codecs, audio_codecs, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 memset(&bus_temp, 0, sizeof(bus_temp));
1095 bus_temp.private_data = chip;
1096 bus_temp.modelname = model;
1097 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001098 bus_temp.ops.command = azx_send_cmd;
1099 bus_temp.ops.get_response = azx_get_response;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001100#ifdef CONFIG_SND_HDA_POWER_SAVE
1101 bus_temp.ops.pm_notify = azx_power_notify;
1102#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
Takashi Iwaid01ce992007-07-27 16:52:19 +02001104 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1105 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 return err;
1107
Takashi Iwaibccad142007-04-24 12:23:53 +02001108 codecs = audio_codecs = 0;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001109 for (c = 0; c < AZX_MAX_CODECS; c++) {
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001110 if ((chip->codec_mask & (1 << c)) & codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001111 struct hda_codec *codec;
1112 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 if (err < 0)
1114 continue;
1115 codecs++;
Takashi Iwaibccad142007-04-24 12:23:53 +02001116 if (codec->afg)
1117 audio_codecs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119 }
Takashi Iwaibccad142007-04-24 12:23:53 +02001120 if (!audio_codecs) {
Takashi Iwai19a982b2007-03-21 15:14:35 +01001121 /* probe additional slots if no codec is found */
1122 for (; c < azx_max_codecs[chip->driver_type]; c++) {
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001123 if ((chip->codec_mask & (1 << c)) & codec_probe_mask) {
Takashi Iwai19a982b2007-03-21 15:14:35 +01001124 err = snd_hda_codec_new(chip->bus, c, NULL);
1125 if (err < 0)
1126 continue;
1127 codecs++;
1128 }
1129 }
1130 }
1131 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1133 return -ENXIO;
1134 }
1135
1136 return 0;
1137}
1138
1139
1140/*
1141 * PCM support
1142 */
1143
1144/* assign a stream for the PCM */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001145static inline struct azx_dev *azx_assign_device(struct azx *chip, int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001147 int dev, i, nums;
1148 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
1149 dev = chip->playback_index_offset;
1150 nums = chip->playback_streams;
1151 } else {
1152 dev = chip->capture_index_offset;
1153 nums = chip->capture_streams;
1154 }
1155 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001156 if (!chip->azx_dev[dev].opened) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 chip->azx_dev[dev].opened = 1;
1158 return &chip->azx_dev[dev];
1159 }
1160 return NULL;
1161}
1162
1163/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001164static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 azx_dev->opened = 0;
1167}
1168
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001169static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001170 .info = (SNDRV_PCM_INFO_MMAP |
1171 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1173 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001174 /* No full-resume yet implemented */
1175 /* SNDRV_PCM_INFO_RESUME |*/
1176 SNDRV_PCM_INFO_PAUSE),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1178 .rates = SNDRV_PCM_RATE_48000,
1179 .rate_min = 48000,
1180 .rate_max = 48000,
1181 .channels_min = 2,
1182 .channels_max = 2,
1183 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1184 .period_bytes_min = 128,
1185 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1186 .periods_min = 2,
1187 .periods_max = AZX_MAX_FRAG,
1188 .fifo_size = 0,
1189};
1190
1191struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001192 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 struct hda_codec *codec;
1194 struct hda_pcm_stream *hinfo[2];
1195};
1196
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001197static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198{
1199 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1200 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001201 struct azx *chip = apcm->chip;
1202 struct azx_dev *azx_dev;
1203 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 unsigned long flags;
1205 int err;
1206
Ingo Molnar62932df2006-01-16 16:34:20 +01001207 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 azx_dev = azx_assign_device(chip, substream->stream);
1209 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001210 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 return -EBUSY;
1212 }
1213 runtime->hw = azx_pcm_hw;
1214 runtime->hw.channels_min = hinfo->channels_min;
1215 runtime->hw.channels_max = hinfo->channels_max;
1216 runtime->hw.formats = hinfo->formats;
1217 runtime->hw.rates = hinfo->rates;
1218 snd_pcm_limit_hw_rates(runtime);
1219 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001220 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1221 128);
1222 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1223 128);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001224 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001225 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1226 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001228 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001229 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 return err;
1231 }
1232 spin_lock_irqsave(&chip->reg_lock, flags);
1233 azx_dev->substream = substream;
1234 azx_dev->running = 0;
1235 spin_unlock_irqrestore(&chip->reg_lock, flags);
1236
1237 runtime->private_data = azx_dev;
Ingo Molnar62932df2006-01-16 16:34:20 +01001238 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return 0;
1240}
1241
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001242static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1245 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001246 struct azx *chip = apcm->chip;
1247 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 unsigned long flags;
1249
Ingo Molnar62932df2006-01-16 16:34:20 +01001250 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 spin_lock_irqsave(&chip->reg_lock, flags);
1252 azx_dev->substream = NULL;
1253 azx_dev->running = 0;
1254 spin_unlock_irqrestore(&chip->reg_lock, flags);
1255 azx_release_device(azx_dev);
1256 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001257 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001258 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 return 0;
1260}
1261
Takashi Iwaid01ce992007-07-27 16:52:19 +02001262static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1263 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Takashi Iwaid01ce992007-07-27 16:52:19 +02001265 return snd_pcm_lib_malloc_pages(substream,
1266 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001269static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001272 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1274
1275 /* reset BDL address */
1276 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1277 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1278 azx_sd_writel(azx_dev, SD_CTL, 0);
1279
1280 hinfo->ops.cleanup(hinfo, apcm->codec, substream);
1281
1282 return snd_pcm_lib_free_pages(substream);
1283}
1284
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001285static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
1287 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001288 struct azx *chip = apcm->chip;
1289 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001291 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
1293 azx_dev->bufsize = snd_pcm_lib_buffer_bytes(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 azx_dev->format_val = snd_hda_calc_stream_format(runtime->rate,
1295 runtime->channels,
1296 runtime->format,
1297 hinfo->maxbps);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001298 if (!azx_dev->format_val) {
1299 snd_printk(KERN_ERR SFX
1300 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 runtime->rate, runtime->channels, runtime->format);
1302 return -EINVAL;
1303 }
1304
Takashi Iwai21c7b082008-02-07 12:06:32 +01001305 snd_printdd("azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
1306 azx_dev->bufsize, azx_dev->format_val);
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001307 if (azx_setup_periods(substream, azx_dev) < 0)
1308 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 azx_setup_controller(chip, azx_dev);
1310 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1311 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1312 else
1313 azx_dev->fifo_size = 0;
1314
1315 return hinfo->ops.prepare(hinfo, apcm->codec, azx_dev->stream_tag,
1316 azx_dev->format_val, substream);
1317}
1318
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001319static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
1321 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001322 struct azx_dev *azx_dev = get_azx_dev(substream);
1323 struct azx *chip = apcm->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 int err = 0;
1325
1326 spin_lock(&chip->reg_lock);
1327 switch (cmd) {
1328 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1329 case SNDRV_PCM_TRIGGER_RESUME:
1330 case SNDRV_PCM_TRIGGER_START:
1331 azx_stream_start(chip, azx_dev);
1332 azx_dev->running = 1;
1333 break;
1334 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001335 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 case SNDRV_PCM_TRIGGER_STOP:
1337 azx_stream_stop(chip, azx_dev);
1338 azx_dev->running = 0;
1339 break;
1340 default:
1341 err = -EINVAL;
1342 }
1343 spin_unlock(&chip->reg_lock);
1344 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH ||
Jaroslav Kysela47123192005-08-15 20:53:07 +02001345 cmd == SNDRV_PCM_TRIGGER_SUSPEND ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 cmd == SNDRV_PCM_TRIGGER_STOP) {
1347 int timeout = 5000;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001348 while ((azx_sd_readb(azx_dev, SD_CTL) & SD_CTL_DMA_START) &&
1349 --timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 ;
1351 }
1352 return err;
1353}
1354
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001355static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
Takashi Iwaic74db862005-05-12 14:26:27 +02001357 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001358 struct azx *chip = apcm->chip;
1359 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 unsigned int pos;
1361
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001362 if (chip->position_fix == POS_FIX_POSBUF ||
1363 chip->position_fix == POS_FIX_AUTO) {
Takashi Iwaic74db862005-05-12 14:26:27 +02001364 /* use the position buffer */
Takashi Iwai929861c2006-08-31 16:55:40 +02001365 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001366 if (chip->position_fix == POS_FIX_AUTO &&
Takashi Iwaid01ce992007-07-27 16:52:19 +02001367 azx_dev->period_intr == 1 && !pos) {
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001368 printk(KERN_WARNING
1369 "hda-intel: Invalid position buffer, "
1370 "using LPIB read method instead.\n");
1371 chip->position_fix = POS_FIX_NONE;
1372 goto read_lpib;
1373 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001374 } else {
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001375 read_lpib:
Takashi Iwaic74db862005-05-12 14:26:27 +02001376 /* read LPIB */
1377 pos = azx_sd_readl(azx_dev, SD_LPIB);
1378 if (chip->position_fix == POS_FIX_FIFO)
1379 pos += azx_dev->fifo_size;
1380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 if (pos >= azx_dev->bufsize)
1382 pos = 0;
1383 return bytes_to_frames(substream->runtime, pos);
1384}
1385
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001386static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 .open = azx_pcm_open,
1388 .close = azx_pcm_close,
1389 .ioctl = snd_pcm_lib_ioctl,
1390 .hw_params = azx_pcm_hw_params,
1391 .hw_free = azx_pcm_hw_free,
1392 .prepare = azx_pcm_prepare,
1393 .trigger = azx_pcm_trigger,
1394 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001395 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396};
1397
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001398static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399{
1400 kfree(pcm->private_data);
1401}
1402
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001403static int __devinit create_codec_pcm(struct azx *chip, struct hda_codec *codec,
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001404 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
1406 int err;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001407 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 struct azx_pcm *apcm;
1409
Takashi Iwaie08a0072006-09-07 17:52:14 +02001410 /* if no substreams are defined for both playback and capture,
1411 * it's just a placeholder. ignore it.
1412 */
1413 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
1414 return 0;
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 snd_assert(cpcm->name, return -EINVAL);
1417
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001418 err = snd_pcm_new(chip->card, cpcm->name, cpcm->device,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001419 cpcm->stream[0].substreams,
1420 cpcm->stream[1].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 &pcm);
1422 if (err < 0)
1423 return err;
1424 strcpy(pcm->name, cpcm->name);
1425 apcm = kmalloc(sizeof(*apcm), GFP_KERNEL);
1426 if (apcm == NULL)
1427 return -ENOMEM;
1428 apcm->chip = chip;
1429 apcm->codec = codec;
1430 apcm->hinfo[0] = &cpcm->stream[0];
1431 apcm->hinfo[1] = &cpcm->stream[1];
1432 pcm->private_data = apcm;
1433 pcm->private_free = azx_pcm_free;
1434 if (cpcm->stream[0].substreams)
1435 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &azx_pcm_ops);
1436 if (cpcm->stream[1].substreams)
1437 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &azx_pcm_ops);
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001438 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 snd_dma_pci_data(chip->pci),
Jaroslav Kyselab66b3cf2006-10-06 09:34:20 +02001440 1024 * 64, 1024 * 1024);
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001441 chip->pcm[cpcm->device] = pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 return 0;
1443}
1444
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001445static int __devinit azx_pcm_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446{
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001447 static const char *dev_name[HDA_PCM_NTYPES] = {
1448 "Audio", "SPDIF", "HDMI", "Modem"
1449 };
1450 /* starting device index for each PCM type */
1451 static int dev_idx[HDA_PCM_NTYPES] = {
1452 [HDA_PCM_TYPE_AUDIO] = 0,
1453 [HDA_PCM_TYPE_SPDIF] = 1,
1454 [HDA_PCM_TYPE_HDMI] = 3,
1455 [HDA_PCM_TYPE_MODEM] = 6
1456 };
1457 /* normal audio device indices; not linear to keep compatibility */
1458 static int audio_idx[4] = { 0, 2, 4, 5 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 struct hda_codec *codec;
1460 int c, err;
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001461 int num_devs[HDA_PCM_NTYPES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Takashi Iwaid01ce992007-07-27 16:52:19 +02001463 err = snd_hda_build_pcms(chip->bus);
1464 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 return err;
1466
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001467 /* create audio PCMs */
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001468 memset(num_devs, 0, sizeof(num_devs));
Matthias Kaehlcke33206e82007-09-17 14:40:04 +02001469 list_for_each_entry(codec, &chip->bus->codec_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 for (c = 0; c < codec->num_pcms; c++) {
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001471 struct hda_pcm *cpcm = &codec->pcm_info[c];
1472 int type = cpcm->pcm_type;
1473 switch (type) {
1474 case HDA_PCM_TYPE_AUDIO:
1475 if (num_devs[type] >= ARRAY_SIZE(audio_idx)) {
1476 snd_printk(KERN_WARNING
1477 "Too many audio devices\n");
1478 continue;
1479 }
1480 cpcm->device = audio_idx[num_devs[type]];
1481 break;
1482 case HDA_PCM_TYPE_SPDIF:
1483 case HDA_PCM_TYPE_HDMI:
1484 case HDA_PCM_TYPE_MODEM:
1485 if (num_devs[type]) {
1486 snd_printk(KERN_WARNING
1487 "%s already defined\n",
1488 dev_name[type]);
1489 continue;
1490 }
1491 cpcm->device = dev_idx[type];
1492 break;
1493 default:
1494 snd_printk(KERN_WARNING
1495 "Invalid PCM type %d\n", type);
1496 continue;
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001497 }
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001498 num_devs[type]++;
1499 err = create_codec_pcm(chip, codec, cpcm);
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001500 if (err < 0)
1501 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
1503 }
1504 return 0;
1505}
1506
1507/*
1508 * mixer creation - all stuff is implemented in hda module
1509 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001510static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 return snd_hda_build_controls(chip->bus);
1513}
1514
1515
1516/*
1517 * initialize SD streams
1518 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001519static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
1521 int i;
1522
1523 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001524 * assign the starting bdl address to each stream (device)
1525 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001527 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001528 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02001529 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
1531 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
1532 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
1533 azx_dev->sd_int_sta_mask = 1 << i;
1534 /* stream tag: must be non-zero and unique */
1535 azx_dev->index = i;
1536 azx_dev->stream_tag = i + 1;
1537 }
1538
1539 return 0;
1540}
1541
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001542static int azx_acquire_irq(struct azx *chip, int do_disconnect)
1543{
Takashi Iwai437a5a42006-11-21 12:14:23 +01001544 if (request_irq(chip->pci->irq, azx_interrupt,
1545 chip->msi ? 0 : IRQF_SHARED,
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001546 "HDA Intel", chip)) {
1547 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
1548 "disabling device\n", chip->pci->irq);
1549 if (do_disconnect)
1550 snd_card_disconnect(chip->card);
1551 return -1;
1552 }
1553 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01001554 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001555 return 0;
1556}
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Takashi Iwaicb53c622007-08-10 17:21:45 +02001559static void azx_stop_chip(struct azx *chip)
1560{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02001561 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02001562 return;
1563
1564 /* disable interrupts */
1565 azx_int_disable(chip);
1566 azx_int_clear(chip);
1567
1568 /* disable CORB/RIRB */
1569 azx_free_cmd_io(chip);
1570
1571 /* disable position buffer */
1572 azx_writel(chip, DPLBASE, 0);
1573 azx_writel(chip, DPUBASE, 0);
1574
1575 chip->initialized = 0;
1576}
1577
1578#ifdef CONFIG_SND_HDA_POWER_SAVE
1579/* power-up/down the controller */
1580static void azx_power_notify(struct hda_codec *codec)
1581{
1582 struct azx *chip = codec->bus->private_data;
1583 struct hda_codec *c;
1584 int power_on = 0;
1585
1586 list_for_each_entry(c, &codec->bus->codec_list, list) {
1587 if (c->power_on) {
1588 power_on = 1;
1589 break;
1590 }
1591 }
1592 if (power_on)
1593 azx_init_chip(chip);
Takashi Iwaidee1b662007-08-13 16:10:30 +02001594 else if (chip->running && power_save_controller)
Takashi Iwaicb53c622007-08-10 17:21:45 +02001595 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001596}
1597#endif /* CONFIG_SND_HDA_POWER_SAVE */
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599#ifdef CONFIG_PM
1600/*
1601 * power management
1602 */
Takashi Iwai421a1252005-11-17 16:11:09 +01001603static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Takashi Iwai421a1252005-11-17 16:11:09 +01001605 struct snd_card *card = pci_get_drvdata(pci);
1606 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 int i;
1608
Takashi Iwai421a1252005-11-17 16:11:09 +01001609 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai7ba72ba2008-02-06 14:03:20 +01001610 for (i = 0; i < AZX_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01001611 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02001612 if (chip->initialized)
1613 snd_hda_suspend(chip->bus, state);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001614 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02001615 if (chip->irq >= 0) {
1616 synchronize_irq(chip->irq);
Takashi Iwai43001c92006-09-08 12:30:03 +02001617 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02001618 chip->irq = -1;
1619 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001620 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02001621 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01001622 pci_disable_device(pci);
1623 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02001624 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return 0;
1626}
1627
Takashi Iwai421a1252005-11-17 16:11:09 +01001628static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
Takashi Iwai421a1252005-11-17 16:11:09 +01001630 struct snd_card *card = pci_get_drvdata(pci);
1631 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Takashi Iwai30b35392006-10-11 18:52:53 +02001633 pci_set_power_state(pci, PCI_D0);
Takashi Iwai421a1252005-11-17 16:11:09 +01001634 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02001635 if (pci_enable_device(pci) < 0) {
1636 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
1637 "disabling device\n");
1638 snd_card_disconnect(card);
1639 return -EIO;
1640 }
1641 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001642 if (chip->msi)
1643 if (pci_enable_msi(pci) < 0)
1644 chip->msi = 0;
1645 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02001646 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001647 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02001648
1649 if (snd_hda_codecs_inuse(chip->bus))
1650 azx_init_chip(chip);
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01001653 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return 0;
1655}
1656#endif /* CONFIG_PM */
1657
1658
1659/*
1660 * destructor
1661 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001662static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001664 int i;
1665
Takashi Iwaice43fba2005-05-30 20:33:44 +02001666 if (chip->initialized) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001667 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001669 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
Stephen Hemminger7376d012006-08-21 19:17:46 +02001672 if (chip->irq >= 0) {
Takashi Iwai30b35392006-10-11 18:52:53 +02001673 synchronize_irq(chip->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 free_irq(chip->irq, (void*)chip);
Stephen Hemminger7376d012006-08-21 19:17:46 +02001675 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001676 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02001677 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02001678 if (chip->remap_addr)
1679 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001681 if (chip->azx_dev) {
1682 for (i = 0; i < chip->num_streams; i++)
1683 if (chip->azx_dev[i].bdl.area)
1684 snd_dma_free_pages(&chip->azx_dev[i].bdl);
1685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 if (chip->rb.area)
1687 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 if (chip->posbuf.area)
1689 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 pci_release_regions(chip->pci);
1691 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001692 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 kfree(chip);
1694
1695 return 0;
1696}
1697
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001698static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699{
1700 return azx_free(device->device_data);
1701}
1702
1703/*
Takashi Iwai3372a152007-02-01 15:46:50 +01001704 * white/black-listing for position_fix
1705 */
Ralf Baechle623ec042007-03-13 15:29:47 +01001706static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Takashi Iwai3372a152007-02-01 15:46:50 +01001707 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_NONE),
Takashi Iwai0cb65f22007-08-16 12:32:45 +02001708 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_NONE),
Takashi Iwai3372a152007-02-01 15:46:50 +01001709 {}
1710};
1711
1712static int __devinit check_position_fix(struct azx *chip, int fix)
1713{
1714 const struct snd_pci_quirk *q;
1715
1716 if (fix == POS_FIX_AUTO) {
1717 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
1718 if (q) {
Takashi Iwai669ba272007-08-17 09:17:36 +02001719 printk(KERN_INFO
Takashi Iwai3372a152007-02-01 15:46:50 +01001720 "hda_intel: position_fix set to %d "
1721 "for device %04x:%04x\n",
1722 q->value, q->subvendor, q->subdevice);
1723 return q->value;
1724 }
1725 }
1726 return fix;
1727}
1728
1729/*
Takashi Iwai669ba272007-08-17 09:17:36 +02001730 * black-lists for probe_mask
1731 */
1732static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
1733 /* Thinkpad often breaks the controller communication when accessing
1734 * to the non-working (or non-existing) modem codec slot.
1735 */
1736 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
1737 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
1738 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
1739 {}
1740};
1741
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001742static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02001743{
1744 const struct snd_pci_quirk *q;
1745
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001746 if (probe_mask[dev] == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02001747 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
1748 if (q) {
1749 printk(KERN_INFO
1750 "hda_intel: probe_mask set to 0x%x "
1751 "for device %04x:%04x\n",
1752 q->value, q->subvendor, q->subdevice);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001753 probe_mask[dev] = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02001754 }
1755 }
1756}
1757
1758
1759/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 * constructor
1761 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001762static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001763 int dev, int driver_type,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001764 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001766 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001767 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01001768 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001769 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 .dev_free = azx_dev_free,
1771 };
1772
1773 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01001774
Pavel Machek927fc862006-08-31 17:03:43 +02001775 err = pci_enable_device(pci);
1776 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 return err;
1778
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001779 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02001780 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
1782 pci_disable_device(pci);
1783 return -ENOMEM;
1784 }
1785
1786 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01001787 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 chip->card = card;
1789 chip->pci = pci;
1790 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001791 chip->driver_type = driver_type;
Takashi Iwai134a11f2006-11-10 12:08:37 +01001792 chip->msi = enable_msi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001794 chip->position_fix = check_position_fix(chip, position_fix[dev]);
1795 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01001796
Takashi Iwai27346162006-01-12 18:28:44 +01001797 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02001798
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001799#if BITS_PER_LONG != 64
1800 /* Fix up base address on ULI M5461 */
1801 if (chip->driver_type == AZX_DRIVER_ULI) {
1802 u16 tmp3;
1803 pci_read_config_word(pci, 0x40, &tmp3);
1804 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
1805 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
1806 }
1807#endif
1808
Pavel Machek927fc862006-08-31 17:03:43 +02001809 err = pci_request_regions(pci, "ICH HD audio");
1810 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 kfree(chip);
1812 pci_disable_device(pci);
1813 return err;
1814 }
1815
Pavel Machek927fc862006-08-31 17:03:43 +02001816 chip->addr = pci_resource_start(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 chip->remap_addr = ioremap_nocache(chip->addr, pci_resource_len(pci,0));
1818 if (chip->remap_addr == NULL) {
1819 snd_printk(KERN_ERR SFX "ioremap error\n");
1820 err = -ENXIO;
1821 goto errout;
1822 }
1823
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001824 if (chip->msi)
1825 if (pci_enable_msi(pci) < 0)
1826 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02001827
Takashi Iwai68e7fff2006-10-23 13:40:59 +02001828 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 err = -EBUSY;
1830 goto errout;
1831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 pci_set_master(pci);
1834 synchronize_irq(chip->irq);
1835
Tobin Davisbcd72002008-01-15 11:23:55 +01001836 gcap = azx_readw(chip, GCAP);
1837 snd_printdd("chipset global capabilities = 0x%x\n", gcap);
1838
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01001839 /* allow 64bit DMA address if supported by H/W */
1840 if ((gcap & 0x01) && !pci_set_dma_mask(pci, DMA_64BIT_MASK))
1841 pci_set_consistent_dma_mask(pci, DMA_64BIT_MASK);
1842
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01001843 /* read number of streams from GCAP register instead of using
1844 * hardcoded value
1845 */
1846 chip->capture_streams = (gcap >> 8) & 0x0f;
1847 chip->playback_streams = (gcap >> 12) & 0x0f;
1848 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01001849 /* gcap didn't give any info, switching to old method */
1850
1851 switch (chip->driver_type) {
1852 case AZX_DRIVER_ULI:
1853 chip->playback_streams = ULI_NUM_PLAYBACK;
1854 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01001855 break;
1856 case AZX_DRIVER_ATIHDMI:
1857 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
1858 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01001859 break;
1860 default:
1861 chip->playback_streams = ICH6_NUM_PLAYBACK;
1862 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01001863 break;
1864 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001865 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01001866 chip->capture_index_offset = 0;
1867 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001868 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001869 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
1870 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02001871 if (!chip->azx_dev) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001872 snd_printk(KERN_ERR "cannot malloc azx_dev\n");
1873 goto errout;
1874 }
1875
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001876 for (i = 0; i < chip->num_streams; i++) {
1877 /* allocate memory for the BDL for each stream */
1878 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
1879 snd_dma_pci_data(chip->pci),
1880 BDL_SIZE, &chip->azx_dev[i].bdl);
1881 if (err < 0) {
1882 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
1883 goto errout;
1884 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001886 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001887 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
1888 snd_dma_pci_data(chip->pci),
1889 chip->num_streams * 8, &chip->posbuf);
1890 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001891 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
1892 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 /* allocate CORB/RIRB */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001895 if (!chip->single_cmd) {
1896 err = azx_alloc_cmd_io(chip);
1897 if (err < 0)
Takashi Iwai27346162006-01-12 18:28:44 +01001898 goto errout;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 /* initialize streams */
1902 azx_init_stream(chip);
1903
1904 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02001905 azx_init_pci(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 azx_init_chip(chip);
1907
1908 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02001909 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 snd_printk(KERN_ERR SFX "no codecs found!\n");
1911 err = -ENODEV;
1912 goto errout;
1913 }
1914
Takashi Iwaid01ce992007-07-27 16:52:19 +02001915 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
1916 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
1918 goto errout;
1919 }
1920
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001921 strcpy(card->driver, "HDA-Intel");
1922 strcpy(card->shortname, driver_short_names[chip->driver_type]);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001923 sprintf(card->longname, "%s at 0x%lx irq %i",
1924 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 *rchip = chip;
1927 return 0;
1928
1929 errout:
1930 azx_free(chip);
1931 return err;
1932}
1933
Takashi Iwaicb53c622007-08-10 17:21:45 +02001934static void power_down_all_codecs(struct azx *chip)
1935{
1936#ifdef CONFIG_SND_HDA_POWER_SAVE
1937 /* The codecs were powered up in snd_hda_codec_new().
1938 * Now all initialization done, so turn them down if possible
1939 */
1940 struct hda_codec *codec;
1941 list_for_each_entry(codec, &chip->bus->codec_list, list) {
1942 snd_hda_power_down(codec);
1943 }
1944#endif
1945}
1946
Takashi Iwaid01ce992007-07-27 16:52:19 +02001947static int __devinit azx_probe(struct pci_dev *pci,
1948 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001950 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001951 struct snd_card *card;
1952 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02001953 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001955 if (dev >= SNDRV_CARDS)
1956 return -ENODEV;
1957 if (!enable[dev]) {
1958 dev++;
1959 return -ENOENT;
1960 }
1961
1962 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
Pavel Machek927fc862006-08-31 17:03:43 +02001963 if (!card) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 snd_printk(KERN_ERR SFX "Error creating card!\n");
1965 return -ENOMEM;
1966 }
1967
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001968 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Pavel Machek927fc862006-08-31 17:03:43 +02001969 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 snd_card_free(card);
1971 return err;
1972 }
Takashi Iwai421a1252005-11-17 16:11:09 +01001973 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 /* create codec instances */
Takashi Iwai5aba4f82008-01-07 15:16:37 +01001976 err = azx_codec_create(chip, model[dev], probe_mask[dev]);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001977 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 snd_card_free(card);
1979 return err;
1980 }
1981
1982 /* create PCM streams */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001983 err = azx_pcm_create(chip);
1984 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 snd_card_free(card);
1986 return err;
1987 }
1988
1989 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001990 err = azx_mixer_create(chip);
1991 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 snd_card_free(card);
1993 return err;
1994 }
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 snd_card_set_dev(card, &pci->dev);
1997
Takashi Iwaid01ce992007-07-27 16:52:19 +02001998 err = snd_card_register(card);
1999 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 snd_card_free(card);
2001 return err;
2002 }
2003
2004 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002005 chip->running = 1;
2006 power_down_all_codecs(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002008 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return err;
2010}
2011
2012static void __devexit azx_remove(struct pci_dev *pci)
2013{
2014 snd_card_free(pci_get_drvdata(pci));
2015 pci_set_drvdata(pci, NULL);
2016}
2017
2018/* PCI IDs */
Takashi Iwaif40b6892006-07-05 16:51:05 +02002019static struct pci_device_id azx_ids[] = {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002020 { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH6 */
2021 { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH7 */
2022 { 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ESB2 */
Jason Gastond2981392006-01-10 11:07:37 +01002023 { 0x8086, 0x284b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH8 */
Jason Gastonf9cc8a82006-11-22 11:53:52 +01002024 { 0x8086, 0x293e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH9 */
2025 { 0x8086, 0x293f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH9 */
Jason Gastonc34f5a02008-01-29 12:38:49 +01002026 { 0x8086, 0x3a3e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH10 */
2027 { 0x8086, 0x3a6e, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH10 */
Tobin Davis4979bca2008-01-30 08:13:55 +01002028 { 0x8086, 0x811b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_SCH }, /* SCH*/
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002029 { 0x1002, 0x437b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATI }, /* ATI SB450 */
Felix Kuehling89be83f2006-03-31 12:33:59 +02002030 { 0x1002, 0x4383, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATI }, /* ATI SB600 */
Felix Kuehling778b6e12006-05-17 11:22:21 +02002031 { 0x1002, 0x793b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RS600 HDMI */
Felix Kuehling5b15c952006-10-16 12:49:47 +02002032 { 0x1002, 0x7919, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RS690 HDMI */
Wolke Liu27da1832007-11-16 11:06:30 +01002033 { 0x1002, 0x960f, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RS780 HDMI */
Wolke Liue6db1112007-04-27 12:20:57 +02002034 { 0x1002, 0xaa00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI R600 HDMI */
Herton Ronaldo Krzesinski2797f722007-11-05 18:21:56 +01002035 { 0x1002, 0xaa08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV630 HDMI */
2036 { 0x1002, 0xaa10, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV610 HDMI */
Wolke Liu27da1832007-11-16 11:06:30 +01002037 { 0x1002, 0xaa18, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV670 HDMI */
2038 { 0x1002, 0xaa20, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV635 HDMI */
2039 { 0x1002, 0xaa28, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV620 HDMI */
2040 { 0x1002, 0xaa30, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV770 HDMI */
Libin Yang814b1a52008-02-14 12:55:13 +01002041 { 0x1002, 0xaa38, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV730 HDMI */
2042 { 0x1002, 0xaa40, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV710 HDMI */
2043 { 0x1002, 0xaa48, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RV740 HDMI */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002044 { 0x1106, 0x3288, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_VIA }, /* VIA VT8251/VT8237A */
2045 { 0x1039, 0x7502, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_SIS }, /* SIS966 */
2046 { 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ULI }, /* ULI M5461 */
Peer Chen5b005a02006-10-31 15:33:42 +01002047 { 0x10de, 0x026c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP51 */
2048 { 0x10de, 0x0371, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP55 */
2049 { 0x10de, 0x03e4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP61 */
2050 { 0x10de, 0x03f0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP61 */
2051 { 0x10de, 0x044a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP65 */
2052 { 0x10de, 0x044b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP65 */
2053 { 0x10de, 0x055c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP67 */
2054 { 0x10de, 0x055d, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP67 */
Peer Chen15cc4452007-06-08 13:55:10 +02002055 { 0x10de, 0x07fc, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP73 */
2056 { 0x10de, 0x07fd, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP73 */
2057 { 0x10de, 0x0774, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP77 */
2058 { 0x10de, 0x0775, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP77 */
2059 { 0x10de, 0x0776, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP77 */
2060 { 0x10de, 0x0777, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP77 */
Peer Chenc1071062007-09-21 18:20:25 +02002061 { 0x10de, 0x0ac0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP79 */
2062 { 0x10de, 0x0ac1, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP79 */
2063 { 0x10de, 0x0ac2, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP79 */
2064 { 0x10de, 0x0ac3, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA MCP79 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 { 0, }
2066};
2067MODULE_DEVICE_TABLE(pci, azx_ids);
2068
2069/* pci_driver definition */
2070static struct pci_driver driver = {
2071 .name = "HDA Intel",
2072 .id_table = azx_ids,
2073 .probe = azx_probe,
2074 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002075#ifdef CONFIG_PM
2076 .suspend = azx_suspend,
2077 .resume = azx_resume,
2078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079};
2080
2081static int __init alsa_card_azx_init(void)
2082{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002083 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084}
2085
2086static void __exit alsa_card_azx_exit(void)
2087{
2088 pci_unregister_driver(&driver);
2089}
2090
2091module_init(alsa_card_azx_init)
2092module_exit(alsa_card_azx_exit)