blob: 966f40147bc36dbca7af8a42210512f8b489f1d4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
Takashi Iwaid01ce992007-07-27 16:52:19 +02003 * hda_intel.c - Implementation of primary alsa driver code base
4 * for Intel HD Audio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright(c) 2004 Intel Corporation. All rights reserved.
7 *
8 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
9 * PeiSen Hou <pshou@realtek.com.tw>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 * CONTACTS:
26 *
27 * Matt Jared matt.jared@intel.com
28 * Andy Kopp andy.kopp@intel.com
29 * Dan Kogan dan.d.kogan@intel.com
30 *
31 * CHANGES:
32 *
33 * 2004.12.01 Major rewrite by tiwai, merged the work of pshou
34 *
35 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/io.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
Randy Dunlap362775e2005-11-07 14:43:23 +010040#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
Andrew Morton24982c52008-03-04 10:08:58 +010042#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/moduleparam.h>
44#include <linux/init.h>
45#include <linux/slab.h>
46#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010047#include <linux/mutex.h>
Takashi Iwai0cbf0092008-10-29 16:18:25 +010048#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <sound/core.h>
50#include <sound/initval.h>
51#include "hda_codec.h"
52
53
Takashi Iwai5aba4f82008-01-07 15:16:37 +010054static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
55static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
56static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
57static char *model[SNDRV_CARDS];
58static int position_fix[SNDRV_CARDS];
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +020059static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwai5aba4f82008-01-07 15:16:37 +010060static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwaid4d9cd032008-12-19 15:19:11 +010061static int probe_only[SNDRV_CARDS];
Takashi Iwai27346162006-01-12 18:28:44 +010062static int single_cmd;
Takashi Iwai716238552009-09-28 13:14:04 +020063static int enable_msi = -1;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +020064#ifdef CONFIG_SND_HDA_PATCH_LOADER
65static char *patch[SNDRV_CARDS];
66#endif
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +010067#ifdef CONFIG_SND_HDA_INPUT_BEEP
68static int beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] =
69 CONFIG_SND_HDA_INPUT_BEEP_MODE};
70#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Takashi Iwai5aba4f82008-01-07 15:16:37 +010072module_param_array(index, int, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010074module_param_array(id, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010076module_param_array(enable, bool, NULL, 0444);
77MODULE_PARM_DESC(enable, "Enable Intel HD audio interface.");
78module_param_array(model, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_PARM_DESC(model, "Use the given board model.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010080module_param_array(position_fix, int, NULL, 0444);
David Henningsson4cb36312010-09-30 10:12:50 +020081MODULE_PARM_DESC(position_fix, "DMA pointer read method."
82 "(0 = auto, 1 = LPIB, 2 = POSBUF, 3 = VIACOMBO).");
Takashi Iwai555e2192008-06-10 17:53:34 +020083module_param_array(bdl_pos_adj, int, NULL, 0644);
84MODULE_PARM_DESC(bdl_pos_adj, "BDL position adjustment offset.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010085module_param_array(probe_mask, int, NULL, 0444);
Takashi Iwai606ad752005-11-24 16:03:40 +010086MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1).");
Jaroslav Kysela079e6832010-03-26 11:16:59 +010087module_param_array(probe_only, int, NULL, 0444);
Takashi Iwaid4d9cd032008-12-19 15:19:11 +010088MODULE_PARM_DESC(probe_only, "Only probing and no codec initialization.");
Takashi Iwai27346162006-01-12 18:28:44 +010089module_param(single_cmd, bool, 0444);
Takashi Iwaid01ce992007-07-27 16:52:19 +020090MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs "
91 "(for debugging only).");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010092module_param(enable_msi, int, 0444);
Takashi Iwai134a11f2006-11-10 12:08:37 +010093MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)");
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +020094#ifdef CONFIG_SND_HDA_PATCH_LOADER
95module_param_array(patch, charp, NULL, 0444);
96MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface.");
97#endif
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +010098#ifdef CONFIG_SND_HDA_INPUT_BEEP
99module_param_array(beep_mode, int, NULL, 0444);
100MODULE_PARM_DESC(beep_mode, "Select HDA Beep registration mode "
101 "(0=off, 1=on, 2=mute switch on/off) (default=1).");
102#endif
Takashi Iwai606ad752005-11-24 16:03:40 +0100103
Takashi Iwaidee1b662007-08-13 16:10:30 +0200104#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100105static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
106module_param(power_save, int, 0644);
107MODULE_PARM_DESC(power_save, "Automatic power-saving timeout "
108 "(in second, 0 = disable).");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Takashi Iwaidee1b662007-08-13 16:10:30 +0200110/* reset the HD-audio controller in power save mode.
111 * this may give more power-saving, but will take longer time to
112 * wake up.
113 */
114static int power_save_controller = 1;
115module_param(power_save_controller, bool, 0644);
116MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode.");
117#endif
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119MODULE_LICENSE("GPL");
120MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
121 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -0700122 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +0200123 "{Intel, ESB2},"
Jason Gastond2981392006-01-10 11:07:37 +0100124 "{Intel, ICH8},"
Jason Gastonf9cc8a82006-11-22 11:53:52 +0100125 "{Intel, ICH9},"
Jason Gastonc34f5a02008-01-29 12:38:49 +0100126 "{Intel, ICH10},"
Seth Heasleyb29c2362008-08-08 15:56:39 -0700127 "{Intel, PCH},"
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -0800128 "{Intel, CPT},"
Seth Heasleyd2edeb72011-04-20 10:59:57 -0700129 "{Intel, PPT},"
Seth Heasleycea310e2010-09-10 16:29:56 -0700130 "{Intel, PBG},"
Tobin Davis4979bca2008-01-30 08:13:55 +0100131 "{Intel, SCH},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200132 "{ATI, SB450},"
Felix Kuehling89be83f2006-03-31 12:33:59 +0200133 "{ATI, SB600},"
Felix Kuehling778b6e12006-05-17 11:22:21 +0200134 "{ATI, RS600},"
Felix Kuehling5b15c952006-10-16 12:49:47 +0200135 "{ATI, RS690},"
Wolke Liue6db1112007-04-27 12:20:57 +0200136 "{ATI, RS780},"
137 "{ATI, R600},"
Herton Ronaldo Krzesinski2797f722007-11-05 18:21:56 +0100138 "{ATI, RV630},"
139 "{ATI, RV610},"
Wolke Liu27da1832007-11-16 11:06:30 +0100140 "{ATI, RV670},"
141 "{ATI, RV635},"
142 "{ATI, RV620},"
143 "{ATI, RV770},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200144 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +0200145 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200146 "{SiS, SIS966},"
147 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148MODULE_DESCRIPTION("Intel HDA driver");
149
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200150#ifdef CONFIG_SND_VERBOSE_PRINTK
151#define SFX /* nop */
152#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define SFX "hda-intel: "
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200154#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +0200155
156/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * registers
158 */
159#define ICH6_REG_GCAP 0x00
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200160#define ICH6_GCAP_64OK (1 << 0) /* 64bit address support */
161#define ICH6_GCAP_NSDO (3 << 1) /* # of serial data out signals */
162#define ICH6_GCAP_BSS (31 << 3) /* # of bidirectional streams */
163#define ICH6_GCAP_ISS (15 << 8) /* # of input streams */
164#define ICH6_GCAP_OSS (15 << 12) /* # of output streams */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#define ICH6_REG_VMIN 0x02
166#define ICH6_REG_VMAJ 0x03
167#define ICH6_REG_OUTPAY 0x04
168#define ICH6_REG_INPAY 0x06
169#define ICH6_REG_GCTL 0x08
Takashi Iwai8a933ec2009-05-31 09:28:12 +0200170#define ICH6_GCTL_RESET (1 << 0) /* controller reset */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200171#define ICH6_GCTL_FCNTRL (1 << 1) /* flush control */
172#define ICH6_GCTL_UNSOL (1 << 8) /* accept unsol. response enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define ICH6_REG_WAKEEN 0x0c
174#define ICH6_REG_STATESTS 0x0e
175#define ICH6_REG_GSTS 0x10
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200176#define ICH6_GSTS_FSTS (1 << 1) /* flush status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#define ICH6_REG_INTCTL 0x20
178#define ICH6_REG_INTSTS 0x24
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200179#define ICH6_REG_WALLCLK 0x30 /* 24Mhz source */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define ICH6_REG_SYNC 0x34
181#define ICH6_REG_CORBLBASE 0x40
182#define ICH6_REG_CORBUBASE 0x44
183#define ICH6_REG_CORBWP 0x48
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200184#define ICH6_REG_CORBRP 0x4a
185#define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define ICH6_REG_CORBCTL 0x4c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200187#define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */
188#define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#define ICH6_REG_CORBSTS 0x4d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200190#define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#define ICH6_REG_CORBSIZE 0x4e
192
193#define ICH6_REG_RIRBLBASE 0x50
194#define ICH6_REG_RIRBUBASE 0x54
195#define ICH6_REG_RIRBWP 0x58
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200196#define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define ICH6_REG_RINTCNT 0x5a
198#define ICH6_REG_RIRBCTL 0x5c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200199#define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */
200#define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */
201#define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define ICH6_REG_RIRBSTS 0x5d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200203#define ICH6_RBSTS_IRQ (1 << 0) /* response irq */
204#define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define ICH6_REG_RIRBSIZE 0x5e
206
207#define ICH6_REG_IC 0x60
208#define ICH6_REG_IR 0x64
209#define ICH6_REG_IRS 0x68
210#define ICH6_IRS_VALID (1<<1)
211#define ICH6_IRS_BUSY (1<<0)
212
213#define ICH6_REG_DPLBASE 0x70
214#define ICH6_REG_DPUBASE 0x74
215#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
216
217/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
218enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
219
220/* stream register offsets from stream base */
221#define ICH6_REG_SD_CTL 0x00
222#define ICH6_REG_SD_STS 0x03
223#define ICH6_REG_SD_LPIB 0x04
224#define ICH6_REG_SD_CBL 0x08
225#define ICH6_REG_SD_LVI 0x0c
226#define ICH6_REG_SD_FIFOW 0x0e
227#define ICH6_REG_SD_FIFOSIZE 0x10
228#define ICH6_REG_SD_FORMAT 0x12
229#define ICH6_REG_SD_BDLPL 0x18
230#define ICH6_REG_SD_BDLPU 0x1c
231
232/* PCI space */
233#define ICH6_PCIREG_TCSEL 0x44
234
235/*
236 * other constants
237 */
238
239/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200240/* ICH, ATI and VIA have 4 playback and 4 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200241#define ICH6_NUM_CAPTURE 4
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200242#define ICH6_NUM_PLAYBACK 4
243
244/* ULI has 6 playback and 5 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200245#define ULI_NUM_CAPTURE 5
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200246#define ULI_NUM_PLAYBACK 6
247
Felix Kuehling778b6e12006-05-17 11:22:21 +0200248/* ATI HDMI has 1 playback and 0 capture */
Felix Kuehling778b6e12006-05-17 11:22:21 +0200249#define ATIHDMI_NUM_CAPTURE 0
Felix Kuehling778b6e12006-05-17 11:22:21 +0200250#define ATIHDMI_NUM_PLAYBACK 1
251
Kailang Yangf2690022008-05-27 11:44:55 +0200252/* TERA has 4 playback and 3 capture */
253#define TERA_NUM_CAPTURE 3
254#define TERA_NUM_PLAYBACK 4
255
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200256/* this number is statically defined for simplicity */
257#define MAX_AZX_DEV 16
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100260#define BDL_SIZE 4096
261#define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
262#define AZX_MAX_FRAG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/* max buffer size - no h/w limit, you can increase as you like */
264#define AZX_MAX_BUF_SIZE (1024*1024*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/* RIRB int mask: overrun[2], response[0] */
267#define RIRB_INT_RESPONSE 0x01
268#define RIRB_INT_OVERRUN 0x04
269#define RIRB_INT_MASK 0x05
270
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200271/* STATESTS int mask: S3,SD2,SD1,SD0 */
Wei Ni7445dfc2010-03-03 15:05:53 +0800272#define AZX_MAX_CODECS 8
273#define AZX_DEFAULT_CODECS 4
Wu Fengguangdeadff12009-08-01 18:45:16 +0800274#define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/* SD_CTL bits */
277#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
278#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
Takashi Iwai850f0e52008-03-18 17:11:05 +0100279#define SD_CTL_STRIPE (3 << 16) /* stripe control */
280#define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
281#define SD_CTL_DIR (1 << 19) /* bi-directional stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
283#define SD_CTL_STREAM_TAG_SHIFT 20
284
285/* SD_CTL and SD_STS */
286#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
287#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
288#define SD_INT_COMPLETE 0x04 /* completion interrupt */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200289#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
290 SD_INT_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292/* SD_STS */
293#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
294
295/* INTCTL and INTSTS */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200296#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
297#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
298#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/* below are so far hardcoded - should read registers in future */
301#define ICH6_MAX_CORB_ENTRIES 256
302#define ICH6_MAX_RIRB_ENTRIES 256
303
Takashi Iwaic74db862005-05-12 14:26:27 +0200304/* position fix mode */
305enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200306 POS_FIX_AUTO,
Takashi Iwaid2e1c972008-06-10 17:53:34 +0200307 POS_FIX_LPIB,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200308 POS_FIX_POSBUF,
David Henningsson4cb36312010-09-30 10:12:50 +0200309 POS_FIX_VIACOMBO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200310};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Frederick Lif5d40b32005-05-12 14:55:20 +0200312/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200313#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
314#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
315
Vinod Gda3fca22005-09-13 18:49:12 +0200316/* Defines for Nvidia HDA support */
317#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
318#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Peer Chen320dcc32008-08-20 16:43:24 -0700319#define NVIDIA_HDA_ISTRM_COH 0x4d
320#define NVIDIA_HDA_OSTRM_COH 0x4c
321#define NVIDIA_HDA_ENABLE_COHBIT 0x01
Frederick Lif5d40b32005-05-12 14:55:20 +0200322
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100323/* Defines for Intel SCH HDA snoop control */
324#define INTEL_SCH_HDA_DEVC 0x78
325#define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
326
Joseph Chan0e153472008-08-26 14:38:03 +0200327/* Define IN stream 0 FIFO size offset in VIA controller */
328#define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
329/* Define VIA HD Audio Device ID*/
330#define VIA_HDAC_DEVICE_ID 0x3288
331
Yang, Libinc4da29c2008-11-13 11:07:07 +0100332/* HD Audio class code */
333#define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100338struct azx_dev {
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100339 struct snd_dma_buffer bdl; /* BDL buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200340 u32 *posbuf; /* position buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Takashi Iwaid01ce992007-07-27 16:52:19 +0200342 unsigned int bufsize; /* size of the play buffer in bytes */
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200343 unsigned int period_bytes; /* size of the period in bytes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200344 unsigned int frags; /* number for period in the play buffer */
345 unsigned int fifo_size; /* FIFO size */
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200346 unsigned long start_wallclk; /* start + minimum wallclk */
347 unsigned long period_wallclk; /* wallclk for period */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Takashi Iwaid01ce992007-07-27 16:52:19 +0200349 void __iomem *sd_addr; /* stream descriptor pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Takashi Iwaid01ce992007-07-27 16:52:19 +0200351 u32 sd_int_sta_mask; /* stream int status mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* pcm support */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200354 struct snd_pcm_substream *substream; /* assigned substream,
355 * set in PCM open
356 */
357 unsigned int format_val; /* format value to be set in the
358 * controller and the codec
359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 unsigned char stream_tag; /* assigned stream */
361 unsigned char index; /* stream index */
Wu Fengguangef18bed2009-12-25 13:14:27 +0800362 int device; /* last device number assigned to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Pavel Machek927fc862006-08-31 17:03:43 +0200364 unsigned int opened :1;
365 unsigned int running :1;
Takashi Iwai675f25d2008-06-10 17:53:20 +0200366 unsigned int irq_pending :1;
Joseph Chan0e153472008-08-26 14:38:03 +0200367 /*
368 * For VIA:
369 * A flag to ensure DMA position is 0
370 * when link position is not greater than FIFO size
371 */
372 unsigned int insufficient :1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
375/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100376struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 u32 *buf; /* CORB/RIRB buffer
378 * Each CORB entry is 4byte, RIRB is 8byte
379 */
380 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
381 /* for RIRB */
382 unsigned short rp, wp; /* read/write pointers */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800383 int cmds[AZX_MAX_CODECS]; /* number of pending requests */
384 u32 res[AZX_MAX_CODECS]; /* last read value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100387struct azx {
388 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct pci_dev *pci;
Takashi Iwai555e2192008-06-10 17:53:34 +0200390 int dev_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200392 /* chip type specific */
393 int driver_type;
Takashi Iwai9477c582011-05-25 09:11:37 +0200394 unsigned int driver_caps;
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200395 int playback_streams;
396 int playback_index_offset;
397 int capture_streams;
398 int capture_index_offset;
399 int num_streams;
400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /* pci resources */
402 unsigned long addr;
403 void __iomem *remap_addr;
404 int irq;
405
406 /* locks */
407 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100408 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200410 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100411 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
413 /* PCM */
Takashi Iwaic8936222010-01-28 17:08:53 +0100414 struct snd_pcm *pcm[HDA_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /* HD codec */
417 unsigned short codec_mask;
Takashi Iwaif1eaaee2009-02-13 08:16:55 +0100418 int codec_probe_mask; /* copied from probe_mask option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 struct hda_bus *bus;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100420 unsigned int beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100423 struct azx_rb corb;
424 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100426 /* CORB/RIRB and position buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct snd_dma_buffer rb;
428 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200429
430 /* flags */
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +0200431 int position_fix[2]; /* for both playback/capture streams */
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200432 int poll_count;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200433 unsigned int running :1;
Pavel Machek927fc862006-08-31 17:03:43 +0200434 unsigned int initialized :1;
435 unsigned int single_cmd :1;
436 unsigned int polling_mode :1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200437 unsigned int msi :1;
Takashi Iwaia6a950a2008-06-10 17:53:35 +0200438 unsigned int irq_pending_warned :1;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100439 unsigned int probing :1; /* codec probing phase */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200440
441 /* for debugging */
Wu Fengguangfeb27342009-08-01 19:17:14 +0800442 unsigned int last_cmd[AZX_MAX_CODECS];
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200443
444 /* for pending irqs */
445 struct work_struct irq_pending_work;
Takashi Iwai0cbf0092008-10-29 16:18:25 +0100446
447 /* reboot notifier (for mysterious hangup problem at power-down) */
448 struct notifier_block reboot_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449};
450
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200451/* driver types */
452enum {
453 AZX_DRIVER_ICH,
Seth Heasley32679f92010-02-22 17:31:09 -0800454 AZX_DRIVER_PCH,
Tobin Davis4979bca2008-01-30 08:13:55 +0100455 AZX_DRIVER_SCH,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200456 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200457 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200458 AZX_DRIVER_VIA,
459 AZX_DRIVER_SIS,
460 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200461 AZX_DRIVER_NVIDIA,
Kailang Yangf2690022008-05-27 11:44:55 +0200462 AZX_DRIVER_TERA,
Takashi Iwai14d34f12010-10-21 09:03:25 +0200463 AZX_DRIVER_CTX,
Yang, Libinc4da29c2008-11-13 11:07:07 +0100464 AZX_DRIVER_GENERIC,
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200465 AZX_NUM_DRIVERS, /* keep this as last entry */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200466};
467
Takashi Iwai9477c582011-05-25 09:11:37 +0200468/* driver quirks (capabilities) */
469/* bits 0-7 are used for indicating driver type */
470#define AZX_DCAPS_NO_TCSEL (1 << 8) /* No Intel TCSEL bit */
471#define AZX_DCAPS_NO_MSI (1 << 9) /* No MSI support */
472#define AZX_DCAPS_ATI_SNOOP (1 << 10) /* ATI snoop enable */
473#define AZX_DCAPS_NVIDIA_SNOOP (1 << 11) /* Nvidia snoop enable */
474#define AZX_DCAPS_SCH_SNOOP (1 << 12) /* SCH/PCH snoop enable */
475#define AZX_DCAPS_RIRB_DELAY (1 << 13) /* Long delay in read loop */
476#define AZX_DCAPS_RIRB_PRE_DELAY (1 << 14) /* Put a delay before read */
477#define AZX_DCAPS_CTX_WORKAROUND (1 << 15) /* X-Fi workaround */
478#define AZX_DCAPS_POSFIX_LPIB (1 << 16) /* Use LPIB as default */
479#define AZX_DCAPS_POSFIX_VIA (1 << 17) /* Use VIACOMBO as default */
480#define AZX_DCAPS_NO_64BIT (1 << 18) /* No 64bit address */
481#define AZX_DCAPS_SYNC_WRITE (1 << 19) /* sync each cmd write */
482
483/* quirks for ATI SB / AMD Hudson */
484#define AZX_DCAPS_PRESET_ATI_SB \
485 (AZX_DCAPS_ATI_SNOOP | AZX_DCAPS_NO_TCSEL | \
486 AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
487
488/* quirks for ATI/AMD HDMI */
489#define AZX_DCAPS_PRESET_ATI_HDMI \
490 (AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
491
492/* quirks for Nvidia */
493#define AZX_DCAPS_PRESET_NVIDIA \
494 (AZX_DCAPS_NVIDIA_SNOOP | AZX_DCAPS_RIRB_DELAY | AZX_DCAPS_NO_MSI)
495
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200496static char *driver_short_names[] __devinitdata = {
497 [AZX_DRIVER_ICH] = "HDA Intel",
Seth Heasley32679f92010-02-22 17:31:09 -0800498 [AZX_DRIVER_PCH] = "HDA Intel PCH",
Tobin Davis4979bca2008-01-30 08:13:55 +0100499 [AZX_DRIVER_SCH] = "HDA Intel MID",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200500 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200501 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200502 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
503 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200504 [AZX_DRIVER_ULI] = "HDA ULI M5461",
505 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Kailang Yangf2690022008-05-27 11:44:55 +0200506 [AZX_DRIVER_TERA] = "HDA Teradici",
Takashi Iwai14d34f12010-10-21 09:03:25 +0200507 [AZX_DRIVER_CTX] = "HDA Creative",
Yang, Libinc4da29c2008-11-13 11:07:07 +0100508 [AZX_DRIVER_GENERIC] = "HD-Audio Generic",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200509};
510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
512 * macros for easy use
513 */
514#define azx_writel(chip,reg,value) \
515 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
516#define azx_readl(chip,reg) \
517 readl((chip)->remap_addr + ICH6_REG_##reg)
518#define azx_writew(chip,reg,value) \
519 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
520#define azx_readw(chip,reg) \
521 readw((chip)->remap_addr + ICH6_REG_##reg)
522#define azx_writeb(chip,reg,value) \
523 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
524#define azx_readb(chip,reg) \
525 readb((chip)->remap_addr + ICH6_REG_##reg)
526
527#define azx_sd_writel(dev,reg,value) \
528 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
529#define azx_sd_readl(dev,reg) \
530 readl((dev)->sd_addr + ICH6_REG_##reg)
531#define azx_sd_writew(dev,reg,value) \
532 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
533#define azx_sd_readw(dev,reg) \
534 readw((dev)->sd_addr + ICH6_REG_##reg)
535#define azx_sd_writeb(dev,reg,value) \
536 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
537#define azx_sd_readb(dev,reg) \
538 readb((dev)->sd_addr + ICH6_REG_##reg)
539
540/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100541#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200543static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200544static int azx_send_cmd(struct hda_bus *bus, unsigned int val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545/*
546 * Interface for HD codec
547 */
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549/*
550 * CORB / RIRB interface
551 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100552static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 int err;
555
556 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200557 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
558 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 PAGE_SIZE, &chip->rb);
560 if (err < 0) {
561 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
562 return err;
563 }
564 return 0;
565}
566
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100567static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800569 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /* CORB set up */
571 chip->corb.addr = chip->rb.addr;
572 chip->corb.buf = (u32 *)chip->rb.area;
573 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200574 azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200576 /* set the corb size to 256 entries (ULI requires explicitly) */
577 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* set the corb write pointer to 0 */
579 azx_writew(chip, CORBWP, 0);
580 /* reset the corb hw read pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200581 azx_writew(chip, CORBRP, ICH6_CORBRP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /* enable corb dma */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200583 azx_writeb(chip, CORBCTL, ICH6_CORBCTL_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 /* RIRB set up */
586 chip->rirb.addr = chip->rb.addr + 2048;
587 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800588 chip->rirb.wp = chip->rirb.rp = 0;
589 memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200591 azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200593 /* set the rirb size to 256 entries (ULI requires explicitly) */
594 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* reset the rirb hw write pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200596 azx_writew(chip, RIRBWP, ICH6_RIRBWP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* set N=1, get RIRB response interrupt for new entry */
Takashi Iwai9477c582011-05-25 09:11:37 +0200598 if (chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND)
Takashi Iwai14d34f12010-10-21 09:03:25 +0200599 azx_writew(chip, RINTCNT, 0xc0);
600 else
601 azx_writew(chip, RINTCNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800604 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100607static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800609 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* disable ringbuffer DMAs */
611 azx_writeb(chip, RIRBCTL, 0);
612 azx_writeb(chip, CORBCTL, 0);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800613 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Wu Fengguangdeadff12009-08-01 18:45:16 +0800616static unsigned int azx_command_addr(u32 cmd)
617{
618 unsigned int addr = cmd >> 28;
619
620 if (addr >= AZX_MAX_CODECS) {
621 snd_BUG();
622 addr = 0;
623 }
624
625 return addr;
626}
627
628static unsigned int azx_response_addr(u32 res)
629{
630 unsigned int addr = res & 0xf;
631
632 if (addr >= AZX_MAX_CODECS) {
633 snd_BUG();
634 addr = 0;
635 }
636
637 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100641static int azx_corb_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100643 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800644 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 unsigned int wp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Wu Fengguangc32649f2009-08-01 18:48:12 +0800647 spin_lock_irq(&chip->reg_lock);
648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /* add command to corb */
650 wp = azx_readb(chip, CORBWP);
651 wp++;
652 wp %= ICH6_MAX_CORB_ENTRIES;
653
Wu Fengguangdeadff12009-08-01 18:45:16 +0800654 chip->rirb.cmds[addr]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 chip->corb.buf[wp] = cpu_to_le32(val);
656 azx_writel(chip, CORBWP, wp);
Wu Fengguangc32649f2009-08-01 18:48:12 +0800657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 spin_unlock_irq(&chip->reg_lock);
659
660 return 0;
661}
662
663#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
664
665/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100666static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
668 unsigned int rp, wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800669 unsigned int addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 u32 res, res_ex;
671
672 wp = azx_readb(chip, RIRBWP);
673 if (wp == chip->rirb.wp)
674 return;
675 chip->rirb.wp = wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 while (chip->rirb.rp != wp) {
678 chip->rirb.rp++;
679 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
680
681 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
682 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
683 res = le32_to_cpu(chip->rirb.buf[rp]);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800684 addr = azx_response_addr(res_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
686 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800687 else if (chip->rirb.cmds[addr]) {
688 chip->rirb.res[addr] = res;
Takashi Iwai2add9b92008-03-18 09:47:06 +0100689 smp_wmb();
Wu Fengguangdeadff12009-08-01 18:45:16 +0800690 chip->rirb.cmds[addr]--;
Wu Fengguange310bb02009-08-01 19:18:45 +0800691 } else
692 snd_printk(KERN_ERR SFX "spurious response %#x:%#x, "
693 "last cmd=%#08x\n",
694 res, res_ex,
695 chip->last_cmd[addr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697}
698
699/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800700static unsigned int azx_rirb_get_response(struct hda_bus *bus,
701 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100703 struct azx *chip = bus->private_data;
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200704 unsigned long timeout;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200705 int do_poll = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200707 again:
708 timeout = jiffies + msecs_to_jiffies(1000);
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100709 for (;;) {
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200710 if (chip->polling_mode || do_poll) {
Takashi Iwaie96224a2006-08-21 17:57:44 +0200711 spin_lock_irq(&chip->reg_lock);
712 azx_update_rirb(chip);
713 spin_unlock_irq(&chip->reg_lock);
714 }
Wu Fengguangdeadff12009-08-01 18:45:16 +0800715 if (!chip->rirb.cmds[addr]) {
Takashi Iwai2add9b92008-03-18 09:47:06 +0100716 smp_rmb();
Takashi Iwaib6132912009-03-24 07:36:09 +0100717 bus->rirb_error = 0;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200718
719 if (!do_poll)
720 chip->poll_count = 0;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800721 return chip->rirb.res[addr]; /* the last value */
Takashi Iwai2add9b92008-03-18 09:47:06 +0100722 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100723 if (time_after(jiffies, timeout))
724 break;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100725 if (bus->needs_damn_long_delay)
Takashi Iwai52987652008-01-16 16:09:47 +0100726 msleep(2); /* temporary workaround */
727 else {
728 udelay(10);
729 cond_resched();
730 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100731 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200732
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200733 if (!chip->polling_mode && chip->poll_count < 2) {
734 snd_printdd(SFX "azx_get_response timeout, "
735 "polling the codec once: last cmd=0x%08x\n",
736 chip->last_cmd[addr]);
737 do_poll = 1;
738 chip->poll_count++;
739 goto again;
740 }
741
742
Takashi Iwai23c4a882009-10-30 13:21:49 +0100743 if (!chip->polling_mode) {
744 snd_printk(KERN_WARNING SFX "azx_get_response timeout, "
745 "switching to polling mode: last cmd=0x%08x\n",
746 chip->last_cmd[addr]);
747 chip->polling_mode = 1;
748 goto again;
749 }
750
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200751 if (chip->msi) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200752 snd_printk(KERN_WARNING SFX "No response from codec, "
Wu Fengguangfeb27342009-08-01 19:17:14 +0800753 "disabling MSI: last cmd=0x%08x\n",
754 chip->last_cmd[addr]);
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200755 free_irq(chip->irq, chip);
756 chip->irq = -1;
757 pci_disable_msi(chip->pci);
758 chip->msi = 0;
Takashi Iwaib6132912009-03-24 07:36:09 +0100759 if (azx_acquire_irq(chip, 1) < 0) {
760 bus->rirb_error = 1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200761 return -1;
Takashi Iwaib6132912009-03-24 07:36:09 +0100762 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200763 goto again;
764 }
765
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100766 if (chip->probing) {
767 /* If this critical timeout happens during the codec probing
768 * phase, this is likely an access to a non-existing codec
769 * slot. Better to return an error and reset the system.
770 */
771 return -1;
772 }
773
Takashi Iwai8dd78332009-06-02 01:16:07 +0200774 /* a fatal communication error; need either to reset or to fallback
775 * to the single_cmd mode
776 */
Takashi Iwaib6132912009-03-24 07:36:09 +0100777 bus->rirb_error = 1;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200778 if (bus->allow_bus_reset && !bus->response_reset && !bus->in_reset) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200779 bus->response_reset = 1;
780 return -1; /* give a chance to retry */
781 }
782
783 snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
784 "switching to single_cmd mode: last cmd=0x%08x\n",
Wu Fengguangfeb27342009-08-01 19:17:14 +0800785 chip->last_cmd[addr]);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200786 chip->single_cmd = 1;
787 bus->response_reset = 0;
Takashi Iwai1a696972009-11-07 09:49:04 +0100788 /* release CORB/RIRB */
Takashi Iwai4fcd3922009-05-25 18:34:52 +0200789 azx_free_cmd_io(chip);
Takashi Iwai1a696972009-11-07 09:49:04 +0100790 /* disable unsolicited responses */
791 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200792 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795/*
796 * Use the single immediate command instead of CORB/RIRB for simplicity
797 *
798 * Note: according to Intel, this is not preferred use. The command was
799 * intended for the BIOS only, and may get confused with unsolicited
800 * responses. So, we shouldn't use it for normal operation from the
801 * driver.
802 * I left the codes, however, for debugging/testing purposes.
803 */
804
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200805/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800806static int azx_single_wait_for_response(struct azx *chip, unsigned int addr)
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200807{
808 int timeout = 50;
809
810 while (timeout--) {
811 /* check IRV busy bit */
812 if (azx_readw(chip, IRS) & ICH6_IRS_VALID) {
813 /* reuse rirb.res as the response return value */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800814 chip->rirb.res[addr] = azx_readl(chip, IR);
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200815 return 0;
816 }
817 udelay(1);
818 }
819 if (printk_ratelimit())
820 snd_printd(SFX "get_response timeout: IRS=0x%x\n",
821 azx_readw(chip, IRS));
Wu Fengguangdeadff12009-08-01 18:45:16 +0800822 chip->rirb.res[addr] = -1;
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200823 return -EIO;
824}
825
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100827static int azx_single_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100829 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800830 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 int timeout = 50;
832
Takashi Iwai8dd78332009-06-02 01:16:07 +0200833 bus->rirb_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 while (timeout--) {
835 /* check ICB busy bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200836 if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /* Clear IRV valid bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200838 azx_writew(chip, IRS, azx_readw(chip, IRS) |
839 ICH6_IRS_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 azx_writel(chip, IC, val);
Takashi Iwaid01ce992007-07-27 16:52:19 +0200841 azx_writew(chip, IRS, azx_readw(chip, IRS) |
842 ICH6_IRS_BUSY);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800843 return azx_single_wait_for_response(chip, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 }
845 udelay(1);
846 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100847 if (printk_ratelimit())
848 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
849 azx_readw(chip, IRS), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return -EIO;
851}
852
853/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800854static unsigned int azx_single_get_response(struct hda_bus *bus,
855 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100857 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800858 return chip->rirb.res[addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
Takashi Iwai111d3af2006-02-16 18:17:58 +0100861/*
862 * The below are the main callbacks from hda_codec.
863 *
864 * They are just the skeleton to call sub-callbacks according to the
865 * current setting of chip->single_cmd.
866 */
867
868/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100869static int azx_send_cmd(struct hda_bus *bus, unsigned int val)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100870{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100871 struct azx *chip = bus->private_data;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200872
Wu Fengguangfeb27342009-08-01 19:17:14 +0800873 chip->last_cmd[azx_command_addr(val)] = val;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100874 if (chip->single_cmd)
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100875 return azx_single_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100876 else
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100877 return azx_corb_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100878}
879
880/* get a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800881static unsigned int azx_get_response(struct hda_bus *bus,
882 unsigned int addr)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100883{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100884 struct azx *chip = bus->private_data;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100885 if (chip->single_cmd)
Wu Fengguangdeadff12009-08-01 18:45:16 +0800886 return azx_single_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100887 else
Wu Fengguangdeadff12009-08-01 18:45:16 +0800888 return azx_rirb_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100889}
890
Takashi Iwaicb53c622007-08-10 17:21:45 +0200891#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100892static void azx_power_notify(struct hda_bus *bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200893#endif
Takashi Iwai111d3af2006-02-16 18:17:58 +0100894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895/* reset codec link */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100896static int azx_reset(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897{
898 int count;
899
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100900 if (!full_reset)
901 goto __skip;
902
Danny Tholene8a7f132007-09-11 21:41:56 +0200903 /* clear STATESTS */
904 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 /* reset controller */
907 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
908
909 count = 50;
910 while (azx_readb(chip, GCTL) && --count)
911 msleep(1);
912
913 /* delay for >= 100us for codec PLL to settle per spec
914 * Rev 0.9 section 5.5.1
915 */
916 msleep(1);
917
918 /* Bring controller out of reset */
919 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
920
921 count = 50;
Pavel Machek927fc862006-08-31 17:03:43 +0200922 while (!azx_readb(chip, GCTL) && --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 msleep(1);
924
Pavel Machek927fc862006-08-31 17:03:43 +0200925 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 msleep(1);
927
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100928 __skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* check to see if controller is ready */
Pavel Machek927fc862006-08-31 17:03:43 +0200930 if (!azx_readb(chip, GCTL)) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200931 snd_printd(SFX "azx_reset: controller not ready!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 return -EBUSY;
933 }
934
Matt41e2fce2005-07-04 17:49:55 +0200935 /* Accept unsolicited responses */
Takashi Iwai1a696972009-11-07 09:49:04 +0100936 if (!chip->single_cmd)
937 azx_writel(chip, GCTL, azx_readl(chip, GCTL) |
938 ICH6_GCTL_UNSOL);
Matt41e2fce2005-07-04 17:49:55 +0200939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /* detect codecs */
Pavel Machek927fc862006-08-31 17:03:43 +0200941 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 chip->codec_mask = azx_readw(chip, STATESTS);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200943 snd_printdd(SFX "codec_mask = 0x%x\n", chip->codec_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
945
946 return 0;
947}
948
949
950/*
951 * Lowlevel interface
952 */
953
954/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100955static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
957 /* enable controller CIE and GIE */
958 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
959 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
960}
961
962/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100963static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 int i;
966
967 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200968 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100969 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 azx_sd_writeb(azx_dev, SD_CTL,
971 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
972 }
973
974 /* disable SIE for all streams */
975 azx_writeb(chip, INTCTL, 0);
976
977 /* disable controller CIE and GIE */
978 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
979 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
980}
981
982/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100983static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984{
985 int i;
986
987 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200988 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100989 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
991 }
992
993 /* clear STATESTS */
994 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
995
996 /* clear rirb status */
997 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
998
999 /* clear int status */
1000 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
1001}
1002
1003/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001004static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Joseph Chan0e153472008-08-26 14:38:03 +02001006 /*
1007 * Before stream start, initialize parameter
1008 */
1009 azx_dev->insufficient = 1;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /* enable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001012 azx_writel(chip, INTCTL,
1013 azx_readl(chip, INTCTL) | (1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 /* set DMA start and interrupt mask */
1015 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1016 SD_CTL_DMA_START | SD_INT_MASK);
1017}
1018
Takashi Iwai1dddab42009-03-18 15:15:37 +01001019/* stop DMA */
1020static void azx_stream_clear(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
1023 ~(SD_CTL_DMA_START | SD_INT_MASK));
1024 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
Takashi Iwai1dddab42009-03-18 15:15:37 +01001025}
1026
1027/* stop a stream */
1028static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
1029{
1030 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 /* disable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001032 azx_writel(chip, INTCTL,
1033 azx_readl(chip, INTCTL) & ~(1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034}
1035
1036
1037/*
Takashi Iwaicb53c622007-08-10 17:21:45 +02001038 * reset and start the controller registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001040static void azx_init_chip(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001042 if (chip->initialized)
1043 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 /* reset controller */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001046 azx_reset(chip, full_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 /* initialize interrupts */
1049 azx_int_clear(chip);
1050 azx_int_enable(chip);
1051
1052 /* initialize the codec command I/O */
Takashi Iwai1a696972009-11-07 09:49:04 +01001053 if (!chip->single_cmd)
1054 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001056 /* program the position buffer */
1057 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001058 azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +02001059
Takashi Iwaicb53c622007-08-10 17:21:45 +02001060 chip->initialized = 1;
1061}
1062
1063/*
1064 * initialize the PCI registers
1065 */
1066/* update bits in a PCI register byte */
1067static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
1068 unsigned char mask, unsigned char val)
1069{
1070 unsigned char data;
1071
1072 pci_read_config_byte(pci, reg, &data);
1073 data &= ~mask;
1074 data |= (val & mask);
1075 pci_write_config_byte(pci, reg, data);
1076}
1077
1078static void azx_init_pci(struct azx *chip)
1079{
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001080 unsigned short snoop;
1081
Takashi Iwaicb53c622007-08-10 17:21:45 +02001082 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
1083 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
1084 * Ensuring these bits are 0 clears playback static on some HD Audio
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001085 * codecs.
1086 * The PCI register TCSEL is defined in the Intel manuals.
Takashi Iwaicb53c622007-08-10 17:21:45 +02001087 */
Linus Torvalds46f2cc82011-05-27 19:45:28 -07001088 if (!(chip->driver_caps & AZX_DCAPS_NO_TCSEL)) {
Takashi Iwai9477c582011-05-25 09:11:37 +02001089 snd_printdd(SFX "Clearing TCSEL\n");
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001090 update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
Takashi Iwai9477c582011-05-25 09:11:37 +02001091 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02001092
Takashi Iwai9477c582011-05-25 09:11:37 +02001093 /* For ATI SB450/600/700/800/900 and AMD Hudson azalia HD audio,
1094 * we need to enable snoop.
1095 */
1096 if (chip->driver_caps & AZX_DCAPS_ATI_SNOOP) {
1097 snd_printdd(SFX "Enabling ATI snoop\n");
Takashi Iwaicb53c622007-08-10 17:21:45 +02001098 update_pci_byte(chip->pci,
1099 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
1100 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
Takashi Iwai9477c582011-05-25 09:11:37 +02001101 }
1102
1103 /* For NVIDIA HDA, enable snoop */
1104 if (chip->driver_caps & AZX_DCAPS_NVIDIA_SNOOP) {
1105 snd_printdd(SFX "Enabling Nvidia snoop\n");
Takashi Iwaicb53c622007-08-10 17:21:45 +02001106 update_pci_byte(chip->pci,
1107 NVIDIA_HDA_TRANSREG_ADDR,
1108 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
Peer Chen320dcc32008-08-20 16:43:24 -07001109 update_pci_byte(chip->pci,
1110 NVIDIA_HDA_ISTRM_COH,
1111 0x01, NVIDIA_HDA_ENABLE_COHBIT);
1112 update_pci_byte(chip->pci,
1113 NVIDIA_HDA_OSTRM_COH,
1114 0x01, NVIDIA_HDA_ENABLE_COHBIT);
Takashi Iwai9477c582011-05-25 09:11:37 +02001115 }
1116
1117 /* Enable SCH/PCH snoop if needed */
1118 if (chip->driver_caps & AZX_DCAPS_SCH_SNOOP) {
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001119 pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
1120 if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001121 pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC,
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001122 snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
1123 pci_read_config_word(chip->pci,
1124 INTEL_SCH_HDA_DEVC, &snoop);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001125 snd_printdd(SFX "HDA snoop disabled, enabling ... %s\n",
1126 (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001127 ? "Failed" : "OK");
1128 }
Vinod Gda3fca22005-09-13 18:49:12 +02001129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130}
1131
1132
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001133static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135/*
1136 * interrupt handler
1137 */
David Howells7d12e782006-10-05 14:55:46 +01001138static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001140 struct azx *chip = dev_id;
1141 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 u32 status;
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001143 u8 sd_status;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001144 int i, ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
1146 spin_lock(&chip->reg_lock);
1147
1148 status = azx_readl(chip, INTSTS);
1149 if (status == 0) {
1150 spin_unlock(&chip->reg_lock);
1151 return IRQ_NONE;
1152 }
1153
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001154 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 azx_dev = &chip->azx_dev[i];
1156 if (status & azx_dev->sd_int_sta_mask) {
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001157 sd_status = azx_sd_readb(azx_dev, SD_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001159 if (!azx_dev->substream || !azx_dev->running ||
1160 !(sd_status & SD_INT_COMPLETE))
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001161 continue;
1162 /* check whether this IRQ is really acceptable */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001163 ok = azx_position_ok(chip, azx_dev);
1164 if (ok == 1) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001165 azx_dev->irq_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 spin_unlock(&chip->reg_lock);
1167 snd_pcm_period_elapsed(azx_dev->substream);
1168 spin_lock(&chip->reg_lock);
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001169 } else if (ok == 0 && chip->bus && chip->bus->workq) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001170 /* bogus IRQ, process it later */
1171 azx_dev->irq_pending = 1;
Takashi Iwai6acaed32009-01-12 10:09:24 +01001172 queue_work(chip->bus->workq,
1173 &chip->irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 }
1175 }
1176 }
1177
1178 /* clear rirb int */
1179 status = azx_readb(chip, RIRBSTS);
1180 if (status & RIRB_INT_MASK) {
Takashi Iwai14d34f12010-10-21 09:03:25 +02001181 if (status & RIRB_INT_RESPONSE) {
Takashi Iwai9477c582011-05-25 09:11:37 +02001182 if (chip->driver_caps & AZX_DCAPS_RIRB_PRE_DELAY)
Takashi Iwai14d34f12010-10-21 09:03:25 +02001183 udelay(80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 azx_update_rirb(chip);
Takashi Iwai14d34f12010-10-21 09:03:25 +02001185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1187 }
1188
1189#if 0
1190 /* clear state status int */
1191 if (azx_readb(chip, STATESTS) & 0x04)
1192 azx_writeb(chip, STATESTS, 0x04);
1193#endif
1194 spin_unlock(&chip->reg_lock);
1195
1196 return IRQ_HANDLED;
1197}
1198
1199
1200/*
Takashi Iwai675f25d2008-06-10 17:53:20 +02001201 * set up a BDL entry
1202 */
1203static int setup_bdle(struct snd_pcm_substream *substream,
1204 struct azx_dev *azx_dev, u32 **bdlp,
1205 int ofs, int size, int with_ioc)
1206{
Takashi Iwai675f25d2008-06-10 17:53:20 +02001207 u32 *bdl = *bdlp;
1208
1209 while (size > 0) {
1210 dma_addr_t addr;
1211 int chunk;
1212
1213 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
1214 return -EINVAL;
1215
Takashi Iwai77a23f22008-08-21 13:00:13 +02001216 addr = snd_pcm_sgbuf_get_addr(substream, ofs);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001217 /* program the address field of the BDL entry */
1218 bdl[0] = cpu_to_le32((u32)addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001219 bdl[1] = cpu_to_le32(upper_32_bits(addr));
Takashi Iwai675f25d2008-06-10 17:53:20 +02001220 /* program the size field of the BDL entry */
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001221 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001222 bdl[2] = cpu_to_le32(chunk);
1223 /* program the IOC to enable interrupt
1224 * only when the whole fragment is processed
1225 */
1226 size -= chunk;
1227 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
1228 bdl += 4;
1229 azx_dev->frags++;
1230 ofs += chunk;
1231 }
1232 *bdlp = bdl;
1233 return ofs;
1234}
1235
1236/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 * set up BDL entries
1238 */
Takashi Iwai555e2192008-06-10 17:53:34 +02001239static int azx_setup_periods(struct azx *chip,
1240 struct snd_pcm_substream *substream,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001241 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001243 u32 *bdl;
1244 int i, ofs, periods, period_bytes;
Takashi Iwai555e2192008-06-10 17:53:34 +02001245 int pos_adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 /* reset BDL address */
1248 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1249 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1250
Takashi Iwai97b71c92009-03-18 15:09:13 +01001251 period_bytes = azx_dev->period_bytes;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001252 periods = azx_dev->bufsize / period_bytes;
1253
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001255 bdl = (u32 *)azx_dev->bdl.area;
1256 ofs = 0;
1257 azx_dev->frags = 0;
Takashi Iwai555e2192008-06-10 17:53:34 +02001258 pos_adj = bdl_pos_adj[chip->dev_index];
1259 if (pos_adj > 0) {
Takashi Iwai675f25d2008-06-10 17:53:20 +02001260 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001261 int pos_align = pos_adj;
Takashi Iwai555e2192008-06-10 17:53:34 +02001262 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001263 if (!pos_adj)
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001264 pos_adj = pos_align;
1265 else
1266 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
1267 pos_align;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001268 pos_adj = frames_to_bytes(runtime, pos_adj);
1269 if (pos_adj >= period_bytes) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001270 snd_printk(KERN_WARNING SFX "Too big adjustment %d\n",
Takashi Iwai555e2192008-06-10 17:53:34 +02001271 bdl_pos_adj[chip->dev_index]);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001272 pos_adj = 0;
1273 } else {
1274 ofs = setup_bdle(substream, azx_dev,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001275 &bdl, ofs, pos_adj,
1276 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001277 if (ofs < 0)
1278 goto error;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001279 }
Takashi Iwai555e2192008-06-10 17:53:34 +02001280 } else
1281 pos_adj = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001282 for (i = 0; i < periods; i++) {
1283 if (i == periods - 1 && pos_adj)
1284 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1285 period_bytes - pos_adj, 0);
1286 else
1287 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001288 period_bytes,
1289 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001290 if (ofs < 0)
1291 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001293 return 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001294
1295 error:
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001296 snd_printk(KERN_ERR SFX "Too many BDL entries: buffer=%d, period=%d\n",
Takashi Iwai675f25d2008-06-10 17:53:20 +02001297 azx_dev->bufsize, period_bytes);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001298 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299}
1300
Takashi Iwai1dddab42009-03-18 15:15:37 +01001301/* reset stream */
1302static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 unsigned char val;
1305 int timeout;
1306
Takashi Iwai1dddab42009-03-18 15:15:37 +01001307 azx_stream_clear(chip, azx_dev);
1308
Takashi Iwaid01ce992007-07-27 16:52:19 +02001309 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1310 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 udelay(3);
1312 timeout = 300;
1313 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1314 --timeout)
1315 ;
1316 val &= ~SD_CTL_STREAM_RESET;
1317 azx_sd_writeb(azx_dev, SD_CTL, val);
1318 udelay(3);
1319
1320 timeout = 300;
1321 /* waiting for hardware to report that the stream is out of reset */
1322 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1323 --timeout)
1324 ;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001325
1326 /* reset first position - may not be synced with hw at this time */
1327 *azx_dev->posbuf = 0;
Takashi Iwai1dddab42009-03-18 15:15:37 +01001328}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Takashi Iwai1dddab42009-03-18 15:15:37 +01001330/*
1331 * set up the SD for streaming
1332 */
1333static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
1334{
1335 /* make sure the run bit is zero for SD */
1336 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /* program the stream_tag */
1338 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001339 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1341
1342 /* program the length of samples in cyclic buffer */
1343 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1344
1345 /* program the stream format */
1346 /* this value needs to be the same as the one programmed */
1347 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1348
1349 /* program the stream LVI (last valid index) of the BDL */
1350 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1351
1352 /* program the BDL address */
1353 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001354 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 /* upper BDL address */
Takashi Iwai766979e2008-06-13 20:53:56 +02001356 azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001358 /* enable the position buffer */
David Henningsson4cb36312010-09-30 10:12:50 +02001359 if (chip->position_fix[0] != POS_FIX_LPIB ||
1360 chip->position_fix[1] != POS_FIX_LPIB) {
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001361 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1362 azx_writel(chip, DPLBASE,
1363 (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
1364 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001367 azx_sd_writel(azx_dev, SD_CTL,
1368 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 return 0;
1371}
1372
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001373/*
1374 * Probe the given codec address
1375 */
1376static int probe_codec(struct azx *chip, int addr)
1377{
1378 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
1379 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
1380 unsigned int res;
1381
Wu Fengguanga678cde2009-08-01 18:46:46 +08001382 mutex_lock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001383 chip->probing = 1;
1384 azx_send_cmd(chip->bus, cmd);
Wu Fengguangdeadff12009-08-01 18:45:16 +08001385 res = azx_get_response(chip->bus, addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001386 chip->probing = 0;
Wu Fengguanga678cde2009-08-01 18:46:46 +08001387 mutex_unlock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001388 if (res == -1)
1389 return -EIO;
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001390 snd_printdd(SFX "codec #%d probed OK\n", addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001391 return 0;
1392}
1393
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001394static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1395 struct hda_pcm *cpcm);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001396static void azx_stop_chip(struct azx *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Takashi Iwai8dd78332009-06-02 01:16:07 +02001398static void azx_bus_reset(struct hda_bus *bus)
1399{
1400 struct azx *chip = bus->private_data;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001401
1402 bus->in_reset = 1;
1403 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001404 azx_init_chip(chip, 1);
Alexander Beregalov65f75982009-06-04 13:46:16 +04001405#ifdef CONFIG_PM
Takashi Iwai8dd78332009-06-02 01:16:07 +02001406 if (chip->initialized) {
Alexander Beregalov65f75982009-06-04 13:46:16 +04001407 int i;
1408
Takashi Iwaic8936222010-01-28 17:08:53 +01001409 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai8dd78332009-06-02 01:16:07 +02001410 snd_pcm_suspend_all(chip->pcm[i]);
1411 snd_hda_suspend(chip->bus);
1412 snd_hda_resume(chip->bus);
1413 }
Alexander Beregalov65f75982009-06-04 13:46:16 +04001414#endif
Takashi Iwai8dd78332009-06-02 01:16:07 +02001415 bus->in_reset = 0;
1416}
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418/*
1419 * Codec initialization
1420 */
1421
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001422/* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1423static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
Wei Ni7445dfc2010-03-03 15:05:53 +08001424 [AZX_DRIVER_NVIDIA] = 8,
Kailang Yangf2690022008-05-27 11:44:55 +02001425 [AZX_DRIVER_TERA] = 1,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001426};
1427
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001428static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
1430 struct hda_bus_template bus_temp;
Takashi Iwai34c25352008-10-28 11:38:58 +01001431 int c, codecs, err;
1432 int max_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433
1434 memset(&bus_temp, 0, sizeof(bus_temp));
1435 bus_temp.private_data = chip;
1436 bus_temp.modelname = model;
1437 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001438 bus_temp.ops.command = azx_send_cmd;
1439 bus_temp.ops.get_response = azx_get_response;
Takashi Iwai176d5332008-07-30 15:01:44 +02001440 bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001441 bus_temp.ops.bus_reset = azx_bus_reset;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001442#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai11cd41b2008-11-28 07:22:18 +01001443 bus_temp.power_save = &power_save;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001444 bus_temp.ops.pm_notify = azx_power_notify;
1445#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Takashi Iwaid01ce992007-07-27 16:52:19 +02001447 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1448 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 return err;
1450
Takashi Iwai9477c582011-05-25 09:11:37 +02001451 if (chip->driver_caps & AZX_DCAPS_RIRB_DELAY) {
1452 snd_printd(SFX "Enable delay in RIRB handling\n");
Wei Nidc9c8e22008-09-26 13:55:56 +08001453 chip->bus->needs_damn_long_delay = 1;
Takashi Iwai9477c582011-05-25 09:11:37 +02001454 }
Wei Nidc9c8e22008-09-26 13:55:56 +08001455
Takashi Iwai34c25352008-10-28 11:38:58 +01001456 codecs = 0;
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001457 max_slots = azx_max_codecs[chip->driver_type];
1458 if (!max_slots)
Wei Ni7445dfc2010-03-03 15:05:53 +08001459 max_slots = AZX_DEFAULT_CODECS;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001460
1461 /* First try to probe all given codec slots */
1462 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001463 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001464 if (probe_codec(chip, c) < 0) {
1465 /* Some BIOSen give you wrong codec addresses
1466 * that don't exist
1467 */
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001468 snd_printk(KERN_WARNING SFX
1469 "Codec #%d probe error; "
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001470 "disabling it...\n", c);
1471 chip->codec_mask &= ~(1 << c);
1472 /* More badly, accessing to a non-existing
1473 * codec often screws up the controller chip,
Paul Menzel24481582010-02-08 20:37:26 +01001474 * and disturbs the further communications.
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001475 * Thus if an error occurs during probing,
1476 * better to reset the controller chip to
1477 * get back to the sanity state.
1478 */
1479 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001480 azx_init_chip(chip, 1);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001481 }
1482 }
1483 }
1484
Takashi Iwaid507cd62011-04-26 15:25:02 +02001485 /* AMD chipsets often cause the communication stalls upon certain
1486 * sequence like the pin-detection. It seems that forcing the synced
1487 * access works around the stall. Grrr...
1488 */
Takashi Iwai9477c582011-05-25 09:11:37 +02001489 if (chip->driver_caps & AZX_DCAPS_SYNC_WRITE) {
1490 snd_printd(SFX "Enable sync_write for stable communication\n");
Takashi Iwaid507cd62011-04-26 15:25:02 +02001491 chip->bus->sync_write = 1;
1492 chip->bus->allow_bus_reset = 1;
1493 }
1494
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001495 /* Then create codec instances */
Takashi Iwai34c25352008-10-28 11:38:58 +01001496 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001497 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001498 struct hda_codec *codec;
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001499 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 if (err < 0)
1501 continue;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01001502 codec->beep_mode = chip->beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 codecs++;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001504 }
1505 }
1506 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1508 return -ENXIO;
1509 }
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001510 return 0;
1511}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001513/* configure each codec instance */
1514static int __devinit azx_codec_configure(struct azx *chip)
1515{
1516 struct hda_codec *codec;
1517 list_for_each_entry(codec, &chip->bus->codec_list, list) {
1518 snd_hda_codec_configure(codec);
1519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return 0;
1521}
1522
1523
1524/*
1525 * PCM support
1526 */
1527
1528/* assign a stream for the PCM */
Wu Fengguangef18bed2009-12-25 13:14:27 +08001529static inline struct azx_dev *
1530azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001532 int dev, i, nums;
Wu Fengguangef18bed2009-12-25 13:14:27 +08001533 struct azx_dev *res = NULL;
1534
1535 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001536 dev = chip->playback_index_offset;
1537 nums = chip->playback_streams;
1538 } else {
1539 dev = chip->capture_index_offset;
1540 nums = chip->capture_streams;
1541 }
1542 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001543 if (!chip->azx_dev[dev].opened) {
Wu Fengguangef18bed2009-12-25 13:14:27 +08001544 res = &chip->azx_dev[dev];
1545 if (res->device == substream->pcm->device)
1546 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 }
Wu Fengguangef18bed2009-12-25 13:14:27 +08001548 if (res) {
1549 res->opened = 1;
1550 res->device = substream->pcm->device;
1551 }
1552 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553}
1554
1555/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001556static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557{
1558 azx_dev->opened = 0;
1559}
1560
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001561static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001562 .info = (SNDRV_PCM_INFO_MMAP |
1563 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1565 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001566 /* No full-resume yet implemented */
1567 /* SNDRV_PCM_INFO_RESUME |*/
Takashi Iwai850f0e52008-03-18 17:11:05 +01001568 SNDRV_PCM_INFO_PAUSE |
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001569 SNDRV_PCM_INFO_SYNC_START |
1570 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1572 .rates = SNDRV_PCM_RATE_48000,
1573 .rate_min = 48000,
1574 .rate_max = 48000,
1575 .channels_min = 2,
1576 .channels_max = 2,
1577 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1578 .period_bytes_min = 128,
1579 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1580 .periods_min = 2,
1581 .periods_max = AZX_MAX_FRAG,
1582 .fifo_size = 0,
1583};
1584
1585struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001586 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 struct hda_codec *codec;
1588 struct hda_pcm_stream *hinfo[2];
1589};
1590
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001591static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1594 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001595 struct azx *chip = apcm->chip;
1596 struct azx_dev *azx_dev;
1597 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 unsigned long flags;
1599 int err;
1600
Ingo Molnar62932df2006-01-16 16:34:20 +01001601 mutex_lock(&chip->open_mutex);
Wu Fengguangef18bed2009-12-25 13:14:27 +08001602 azx_dev = azx_assign_device(chip, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001604 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 return -EBUSY;
1606 }
1607 runtime->hw = azx_pcm_hw;
1608 runtime->hw.channels_min = hinfo->channels_min;
1609 runtime->hw.channels_max = hinfo->channels_max;
1610 runtime->hw.formats = hinfo->formats;
1611 runtime->hw.rates = hinfo->rates;
1612 snd_pcm_limit_hw_rates(runtime);
1613 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001614 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1615 128);
1616 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1617 128);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001618 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001619 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1620 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001622 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001623 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 return err;
1625 }
Takashi Iwai70d321e2009-07-03 23:06:45 +02001626 snd_pcm_limit_hw_rates(runtime);
Takashi Iwaiaba66532009-07-05 11:44:46 +02001627 /* sanity check */
1628 if (snd_BUG_ON(!runtime->hw.channels_min) ||
1629 snd_BUG_ON(!runtime->hw.channels_max) ||
1630 snd_BUG_ON(!runtime->hw.formats) ||
1631 snd_BUG_ON(!runtime->hw.rates)) {
1632 azx_release_device(azx_dev);
1633 hinfo->ops.close(hinfo, apcm->codec, substream);
1634 snd_hda_power_down(apcm->codec);
1635 mutex_unlock(&chip->open_mutex);
1636 return -EINVAL;
1637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 spin_lock_irqsave(&chip->reg_lock, flags);
1639 azx_dev->substream = substream;
1640 azx_dev->running = 0;
1641 spin_unlock_irqrestore(&chip->reg_lock, flags);
1642
1643 runtime->private_data = azx_dev;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001644 snd_pcm_set_sync(substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001645 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return 0;
1647}
1648
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001649static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
1651 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1652 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001653 struct azx *chip = apcm->chip;
1654 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 unsigned long flags;
1656
Ingo Molnar62932df2006-01-16 16:34:20 +01001657 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 spin_lock_irqsave(&chip->reg_lock, flags);
1659 azx_dev->substream = NULL;
1660 azx_dev->running = 0;
1661 spin_unlock_irqrestore(&chip->reg_lock, flags);
1662 azx_release_device(azx_dev);
1663 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001664 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001665 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return 0;
1667}
1668
Takashi Iwaid01ce992007-07-27 16:52:19 +02001669static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1670 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671{
Takashi Iwai97b71c92009-03-18 15:09:13 +01001672 struct azx_dev *azx_dev = get_azx_dev(substream);
1673
1674 azx_dev->bufsize = 0;
1675 azx_dev->period_bytes = 0;
1676 azx_dev->format_val = 0;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001677 return snd_pcm_lib_malloc_pages(substream,
1678 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679}
1680
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001681static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682{
1683 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001684 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1686
1687 /* reset BDL address */
1688 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1689 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1690 azx_sd_writel(azx_dev, SD_CTL, 0);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001691 azx_dev->bufsize = 0;
1692 azx_dev->period_bytes = 0;
1693 azx_dev->format_val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Takashi Iwaieb541332010-08-06 13:48:11 +02001695 snd_hda_codec_cleanup(apcm->codec, hinfo, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
1697 return snd_pcm_lib_free_pages(substream);
1698}
1699
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001700static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
1702 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001703 struct azx *chip = apcm->chip;
1704 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001706 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001707 unsigned int bufsize, period_bytes, format_val, stream_tag;
Takashi Iwai97b71c92009-03-18 15:09:13 +01001708 int err;
Stephen Warren7c9359762011-06-01 11:14:17 -06001709 struct hda_spdif_out *spdif =
1710 snd_hda_spdif_out_of_nid(apcm->codec, hinfo->nid);
1711 unsigned short ctls = spdif ? spdif->ctls : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001713 azx_stream_reset(chip, azx_dev);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001714 format_val = snd_hda_calc_stream_format(runtime->rate,
1715 runtime->channels,
1716 runtime->format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03001717 hinfo->maxbps,
Stephen Warren7c9359762011-06-01 11:14:17 -06001718 ctls);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001719 if (!format_val) {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001720 snd_printk(KERN_ERR SFX
1721 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 runtime->rate, runtime->channels, runtime->format);
1723 return -EINVAL;
1724 }
1725
Takashi Iwai97b71c92009-03-18 15:09:13 +01001726 bufsize = snd_pcm_lib_buffer_bytes(substream);
1727 period_bytes = snd_pcm_lib_period_bytes(substream);
1728
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001729 snd_printdd(SFX "azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
Takashi Iwai97b71c92009-03-18 15:09:13 +01001730 bufsize, format_val);
1731
1732 if (bufsize != azx_dev->bufsize ||
1733 period_bytes != azx_dev->period_bytes ||
1734 format_val != azx_dev->format_val) {
1735 azx_dev->bufsize = bufsize;
1736 azx_dev->period_bytes = period_bytes;
1737 azx_dev->format_val = format_val;
1738 err = azx_setup_periods(chip, substream, azx_dev);
1739 if (err < 0)
1740 return err;
1741 }
1742
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001743 /* wallclk has 24Mhz clock source */
1744 azx_dev->period_wallclk = (((runtime->period_size * 24000) /
1745 runtime->rate) * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 azx_setup_controller(chip, azx_dev);
1747 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1748 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1749 else
1750 azx_dev->fifo_size = 0;
1751
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001752 stream_tag = azx_dev->stream_tag;
1753 /* CA-IBG chips need the playback stream starting from 1 */
Takashi Iwai9477c582011-05-25 09:11:37 +02001754 if ((chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND) &&
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001755 stream_tag > chip->capture_streams)
1756 stream_tag -= chip->capture_streams;
1757 return snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag,
Takashi Iwaieb541332010-08-06 13:48:11 +02001758 azx_dev->format_val, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759}
1760
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001761static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762{
1763 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001764 struct azx *chip = apcm->chip;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001765 struct azx_dev *azx_dev;
1766 struct snd_pcm_substream *s;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001767 int rstart = 0, start, nsync = 0, sbits = 0;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001768 int nwait, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 switch (cmd) {
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001771 case SNDRV_PCM_TRIGGER_START:
1772 rstart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1774 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001775 start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 break;
1777 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001778 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001780 start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 break;
1782 default:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001783 return -EINVAL;
1784 }
1785
1786 snd_pcm_group_for_each_entry(s, substream) {
1787 if (s->pcm->card != substream->pcm->card)
1788 continue;
1789 azx_dev = get_azx_dev(s);
1790 sbits |= 1 << azx_dev->index;
1791 nsync++;
1792 snd_pcm_trigger_done(s, substream);
1793 }
1794
1795 spin_lock(&chip->reg_lock);
1796 if (nsync > 1) {
1797 /* first, set SYNC bits of corresponding streams */
1798 azx_writel(chip, SYNC, azx_readl(chip, SYNC) | sbits);
1799 }
1800 snd_pcm_group_for_each_entry(s, substream) {
1801 if (s->pcm->card != substream->pcm->card)
1802 continue;
1803 azx_dev = get_azx_dev(s);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001804 if (start) {
1805 azx_dev->start_wallclk = azx_readl(chip, WALLCLK);
1806 if (!rstart)
1807 azx_dev->start_wallclk -=
1808 azx_dev->period_wallclk;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001809 azx_stream_start(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001810 } else {
Takashi Iwai850f0e52008-03-18 17:11:05 +01001811 azx_stream_stop(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001812 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001813 azx_dev->running = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815 spin_unlock(&chip->reg_lock);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001816 if (start) {
1817 if (nsync == 1)
1818 return 0;
1819 /* wait until all FIFOs get ready */
1820 for (timeout = 5000; timeout; timeout--) {
1821 nwait = 0;
1822 snd_pcm_group_for_each_entry(s, substream) {
1823 if (s->pcm->card != substream->pcm->card)
1824 continue;
1825 azx_dev = get_azx_dev(s);
1826 if (!(azx_sd_readb(azx_dev, SD_STS) &
1827 SD_STS_FIFO_READY))
1828 nwait++;
1829 }
1830 if (!nwait)
1831 break;
1832 cpu_relax();
1833 }
1834 } else {
1835 /* wait until all RUN bits are cleared */
1836 for (timeout = 5000; timeout; timeout--) {
1837 nwait = 0;
1838 snd_pcm_group_for_each_entry(s, substream) {
1839 if (s->pcm->card != substream->pcm->card)
1840 continue;
1841 azx_dev = get_azx_dev(s);
1842 if (azx_sd_readb(azx_dev, SD_CTL) &
1843 SD_CTL_DMA_START)
1844 nwait++;
1845 }
1846 if (!nwait)
1847 break;
1848 cpu_relax();
1849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001851 if (nsync > 1) {
1852 spin_lock(&chip->reg_lock);
1853 /* reset SYNC bits */
1854 azx_writel(chip, SYNC, azx_readl(chip, SYNC) & ~sbits);
1855 spin_unlock(&chip->reg_lock);
1856 }
1857 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858}
1859
Joseph Chan0e153472008-08-26 14:38:03 +02001860/* get the current DMA position with correction on VIA chips */
1861static unsigned int azx_via_get_position(struct azx *chip,
1862 struct azx_dev *azx_dev)
1863{
1864 unsigned int link_pos, mini_pos, bound_pos;
1865 unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
1866 unsigned int fifo_size;
1867
1868 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
1869 if (azx_dev->index >= 4) {
1870 /* Playback, no problem using link position */
1871 return link_pos;
1872 }
1873
1874 /* Capture */
1875 /* For new chipset,
1876 * use mod to get the DMA position just like old chipset
1877 */
1878 mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
1879 mod_dma_pos %= azx_dev->period_bytes;
1880
1881 /* azx_dev->fifo_size can't get FIFO size of in stream.
1882 * Get from base address + offset.
1883 */
1884 fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
1885
1886 if (azx_dev->insufficient) {
1887 /* Link position never gather than FIFO size */
1888 if (link_pos <= fifo_size)
1889 return 0;
1890
1891 azx_dev->insufficient = 0;
1892 }
1893
1894 if (link_pos <= fifo_size)
1895 mini_pos = azx_dev->bufsize + link_pos - fifo_size;
1896 else
1897 mini_pos = link_pos - fifo_size;
1898
1899 /* Find nearest previous boudary */
1900 mod_mini_pos = mini_pos % azx_dev->period_bytes;
1901 mod_link_pos = link_pos % azx_dev->period_bytes;
1902 if (mod_link_pos >= fifo_size)
1903 bound_pos = link_pos - mod_link_pos;
1904 else if (mod_dma_pos >= mod_mini_pos)
1905 bound_pos = mini_pos - mod_mini_pos;
1906 else {
1907 bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
1908 if (bound_pos >= azx_dev->bufsize)
1909 bound_pos = 0;
1910 }
1911
1912 /* Calculate real DMA position we want */
1913 return bound_pos + mod_dma_pos;
1914}
1915
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001916static unsigned int azx_get_position(struct azx *chip,
1917 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 unsigned int pos;
David Henningsson4cb36312010-09-30 10:12:50 +02001920 int stream = azx_dev->substream->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
David Henningsson4cb36312010-09-30 10:12:50 +02001922 switch (chip->position_fix[stream]) {
1923 case POS_FIX_LPIB:
1924 /* read LPIB */
1925 pos = azx_sd_readl(azx_dev, SD_LPIB);
1926 break;
1927 case POS_FIX_VIACOMBO:
Joseph Chan0e153472008-08-26 14:38:03 +02001928 pos = azx_via_get_position(chip, azx_dev);
David Henningsson4cb36312010-09-30 10:12:50 +02001929 break;
1930 default:
1931 /* use the position buffer */
1932 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwaic74db862005-05-12 14:26:27 +02001933 }
David Henningsson4cb36312010-09-30 10:12:50 +02001934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (pos >= azx_dev->bufsize)
1936 pos = 0;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001937 return pos;
1938}
1939
1940static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
1941{
1942 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1943 struct azx *chip = apcm->chip;
1944 struct azx_dev *azx_dev = get_azx_dev(substream);
1945 return bytes_to_frames(substream->runtime,
1946 azx_get_position(chip, azx_dev));
1947}
1948
1949/*
1950 * Check whether the current DMA position is acceptable for updating
1951 * periods. Returns non-zero if it's OK.
1952 *
1953 * Many HD-audio controllers appear pretty inaccurate about
1954 * the update-IRQ timing. The IRQ is issued before actually the
1955 * data is processed. So, we need to process it afterwords in a
1956 * workqueue.
1957 */
1958static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
1959{
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001960 u32 wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001961 unsigned int pos;
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001962 int stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001963
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001964 wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk;
1965 if (wallclk < (azx_dev->period_wallclk * 2) / 3)
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001966 return -1; /* bogus (too early) interrupt */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001967
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001968 stream = azx_dev->substream->stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001969 pos = azx_get_position(chip, azx_dev);
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001970 if (chip->position_fix[stream] == POS_FIX_AUTO) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001971 if (!pos) {
1972 printk(KERN_WARNING
1973 "hda-intel: Invalid position buffer, "
1974 "using LPIB read method instead.\n");
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001975 chip->position_fix[stream] = POS_FIX_LPIB;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001976 pos = azx_get_position(chip, azx_dev);
1977 } else
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001978 chip->position_fix[stream] = POS_FIX_POSBUF;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001979 }
1980
Takashi Iwaid6d8bf52010-02-12 18:17:06 +01001981 if (WARN_ONCE(!azx_dev->period_bytes,
1982 "hda-intel: zero azx_dev->period_bytes"))
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001983 return -1; /* this shouldn't happen! */
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001984 if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001985 pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
1986 /* NG - it's below the first next period boundary */
1987 return bdl_pos_adj[chip->dev_index] ? 0 : -1;
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001988 azx_dev->start_wallclk += wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001989 return 1; /* OK, it's fine */
1990}
1991
1992/*
1993 * The work for pending PCM period updates.
1994 */
1995static void azx_irq_pending_work(struct work_struct *work)
1996{
1997 struct azx *chip = container_of(work, struct azx, irq_pending_work);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001998 int i, pending, ok;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001999
Takashi Iwaia6a950a2008-06-10 17:53:35 +02002000 if (!chip->irq_pending_warned) {
2001 printk(KERN_WARNING
2002 "hda-intel: IRQ timing workaround is activated "
2003 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
2004 chip->card->number);
2005 chip->irq_pending_warned = 1;
2006 }
2007
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002008 for (;;) {
2009 pending = 0;
2010 spin_lock_irq(&chip->reg_lock);
2011 for (i = 0; i < chip->num_streams; i++) {
2012 struct azx_dev *azx_dev = &chip->azx_dev[i];
2013 if (!azx_dev->irq_pending ||
2014 !azx_dev->substream ||
2015 !azx_dev->running)
2016 continue;
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002017 ok = azx_position_ok(chip, azx_dev);
2018 if (ok > 0) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002019 azx_dev->irq_pending = 0;
2020 spin_unlock(&chip->reg_lock);
2021 snd_pcm_period_elapsed(azx_dev->substream);
2022 spin_lock(&chip->reg_lock);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002023 } else if (ok < 0) {
2024 pending = 0; /* too early */
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002025 } else
2026 pending++;
2027 }
2028 spin_unlock_irq(&chip->reg_lock);
2029 if (!pending)
2030 return;
Takashi Iwai08af4952010-08-03 14:39:04 +02002031 msleep(1);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002032 }
2033}
2034
2035/* clear irq_pending flags and assure no on-going workq */
2036static void azx_clear_irq_pending(struct azx *chip)
2037{
2038 int i;
2039
2040 spin_lock_irq(&chip->reg_lock);
2041 for (i = 0; i < chip->num_streams; i++)
2042 chip->azx_dev[i].irq_pending = 0;
2043 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044}
2045
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002046static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 .open = azx_pcm_open,
2048 .close = azx_pcm_close,
2049 .ioctl = snd_pcm_lib_ioctl,
2050 .hw_params = azx_pcm_hw_params,
2051 .hw_free = azx_pcm_hw_free,
2052 .prepare = azx_pcm_prepare,
2053 .trigger = azx_pcm_trigger,
2054 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002055 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056};
2057
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002058static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059{
Takashi Iwai176d5332008-07-30 15:01:44 +02002060 struct azx_pcm *apcm = pcm->private_data;
2061 if (apcm) {
2062 apcm->chip->pcm[pcm->device] = NULL;
2063 kfree(apcm);
2064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065}
2066
Takashi Iwai176d5332008-07-30 15:01:44 +02002067static int
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002068azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
2069 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002071 struct azx *chip = bus->private_data;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002072 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 struct azx_pcm *apcm;
Takashi Iwai176d5332008-07-30 15:01:44 +02002074 int pcm_dev = cpcm->device;
2075 int s, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
Takashi Iwaic8936222010-01-28 17:08:53 +01002077 if (pcm_dev >= HDA_MAX_PCMS) {
Takashi Iwai176d5332008-07-30 15:01:44 +02002078 snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
2079 pcm_dev);
Takashi Iwaida3cec32008-08-08 17:12:14 +02002080 return -EINVAL;
Takashi Iwai176d5332008-07-30 15:01:44 +02002081 }
2082 if (chip->pcm[pcm_dev]) {
2083 snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
2084 return -EBUSY;
2085 }
2086 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
2087 cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
2088 cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 &pcm);
2090 if (err < 0)
2091 return err;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002092 strlcpy(pcm->name, cpcm->name, sizeof(pcm->name));
Takashi Iwai176d5332008-07-30 15:01:44 +02002093 apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 if (apcm == NULL)
2095 return -ENOMEM;
2096 apcm->chip = chip;
2097 apcm->codec = codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 pcm->private_data = apcm;
2099 pcm->private_free = azx_pcm_free;
Takashi Iwai176d5332008-07-30 15:01:44 +02002100 if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
2101 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
2102 chip->pcm[pcm_dev] = pcm;
2103 cpcm->pcm = pcm;
2104 for (s = 0; s < 2; s++) {
2105 apcm->hinfo[s] = &cpcm->stream[s];
2106 if (cpcm->stream[s].substreams)
2107 snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
2108 }
2109 /* buffer pre-allocation */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002110 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 snd_dma_pci_data(chip->pci),
Takashi Iwaifc4abee2008-07-30 15:13:34 +02002112 1024 * 64, 32 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return 0;
2114}
2115
2116/*
2117 * mixer creation - all stuff is implemented in hda module
2118 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002119static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120{
2121 return snd_hda_build_controls(chip->bus);
2122}
2123
2124
2125/*
2126 * initialize SD streams
2127 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002128static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
2130 int i;
2131
2132 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02002133 * assign the starting bdl address to each stream (device)
2134 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002136 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002137 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02002138 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
2140 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
2141 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
2142 azx_dev->sd_int_sta_mask = 1 << i;
2143 /* stream tag: must be non-zero and unique */
2144 azx_dev->index = i;
2145 azx_dev->stream_tag = i + 1;
2146 }
2147
2148 return 0;
2149}
2150
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002151static int azx_acquire_irq(struct azx *chip, int do_disconnect)
2152{
Takashi Iwai437a5a42006-11-21 12:14:23 +01002153 if (request_irq(chip->pci->irq, azx_interrupt,
2154 chip->msi ? 0 : IRQF_SHARED,
Maxim Levitsky94928372010-02-04 22:26:37 +02002155 "hda_intel", chip)) {
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002156 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
2157 "disabling device\n", chip->pci->irq);
2158 if (do_disconnect)
2159 snd_card_disconnect(chip->card);
2160 return -1;
2161 }
2162 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01002163 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002164 return 0;
2165}
2166
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
Takashi Iwaicb53c622007-08-10 17:21:45 +02002168static void azx_stop_chip(struct azx *chip)
2169{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002170 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002171 return;
2172
2173 /* disable interrupts */
2174 azx_int_disable(chip);
2175 azx_int_clear(chip);
2176
2177 /* disable CORB/RIRB */
2178 azx_free_cmd_io(chip);
2179
2180 /* disable position buffer */
2181 azx_writel(chip, DPLBASE, 0);
2182 azx_writel(chip, DPUBASE, 0);
2183
2184 chip->initialized = 0;
2185}
2186
2187#ifdef CONFIG_SND_HDA_POWER_SAVE
2188/* power-up/down the controller */
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002189static void azx_power_notify(struct hda_bus *bus)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002190{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002191 struct azx *chip = bus->private_data;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002192 struct hda_codec *c;
2193 int power_on = 0;
2194
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002195 list_for_each_entry(c, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002196 if (c->power_on) {
2197 power_on = 1;
2198 break;
2199 }
2200 }
2201 if (power_on)
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002202 azx_init_chip(chip, 1);
Wu Fengguang0287d972009-12-11 20:15:11 +08002203 else if (chip->running && power_save_controller &&
2204 !bus->power_keep_link_on)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002205 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002206}
Takashi Iwai5c0b9be2008-12-11 11:47:17 +01002207#endif /* CONFIG_SND_HDA_POWER_SAVE */
2208
2209#ifdef CONFIG_PM
2210/*
2211 * power management
2212 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002213
2214static int snd_hda_codecs_inuse(struct hda_bus *bus)
2215{
2216 struct hda_codec *codec;
2217
2218 list_for_each_entry(codec, &bus->codec_list, list) {
2219 if (snd_hda_codec_needs_resume(codec))
2220 return 1;
2221 }
2222 return 0;
2223}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002224
Takashi Iwai421a1252005-11-17 16:11:09 +01002225static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226{
Takashi Iwai421a1252005-11-17 16:11:09 +01002227 struct snd_card *card = pci_get_drvdata(pci);
2228 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 int i;
2230
Takashi Iwai421a1252005-11-17 16:11:09 +01002231 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002232 azx_clear_irq_pending(chip);
Takashi Iwaic8936222010-01-28 17:08:53 +01002233 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01002234 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002235 if (chip->initialized)
Takashi Iwai8dd78332009-06-02 01:16:07 +02002236 snd_hda_suspend(chip->bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002237 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002238 if (chip->irq >= 0) {
Takashi Iwai43001c92006-09-08 12:30:03 +02002239 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002240 chip->irq = -1;
2241 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002242 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02002243 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01002244 pci_disable_device(pci);
2245 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002246 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 return 0;
2248}
2249
Takashi Iwai421a1252005-11-17 16:11:09 +01002250static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
Takashi Iwai421a1252005-11-17 16:11:09 +01002252 struct snd_card *card = pci_get_drvdata(pci);
2253 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Takashi Iwaid14a7e02009-02-16 10:13:03 +01002255 pci_set_power_state(pci, PCI_D0);
2256 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002257 if (pci_enable_device(pci) < 0) {
2258 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
2259 "disabling device\n");
2260 snd_card_disconnect(card);
2261 return -EIO;
2262 }
2263 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002264 if (chip->msi)
2265 if (pci_enable_msi(pci) < 0)
2266 chip->msi = 0;
2267 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02002268 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002269 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002270
2271 if (snd_hda_codecs_inuse(chip->bus))
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002272 azx_init_chip(chip, 1);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01002275 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 return 0;
2277}
2278#endif /* CONFIG_PM */
2279
2280
2281/*
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002282 * reboot notifier for hang-up problem at power-down
2283 */
2284static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
2285{
2286 struct azx *chip = container_of(nb, struct azx, reboot_notifier);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01002287 snd_hda_bus_reboot_notify(chip->bus);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002288 azx_stop_chip(chip);
2289 return NOTIFY_OK;
2290}
2291
2292static void azx_notifier_register(struct azx *chip)
2293{
2294 chip->reboot_notifier.notifier_call = azx_halt;
2295 register_reboot_notifier(&chip->reboot_notifier);
2296}
2297
2298static void azx_notifier_unregister(struct azx *chip)
2299{
2300 if (chip->reboot_notifier.notifier_call)
2301 unregister_reboot_notifier(&chip->reboot_notifier);
2302}
2303
2304/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 * destructor
2306 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002307static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002309 int i;
2310
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002311 azx_notifier_unregister(chip);
2312
Takashi Iwaice43fba2005-05-30 20:33:44 +02002313 if (chip->initialized) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002314 azx_clear_irq_pending(chip);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002315 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002317 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 }
2319
Jeff Garzikf000fd82008-04-22 13:50:34 +02002320 if (chip->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 free_irq(chip->irq, (void*)chip);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002322 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02002323 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02002324 if (chip->remap_addr)
2325 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002327 if (chip->azx_dev) {
2328 for (i = 0; i < chip->num_streams; i++)
2329 if (chip->azx_dev[i].bdl.area)
2330 snd_dma_free_pages(&chip->azx_dev[i].bdl);
2331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 if (chip->rb.area)
2333 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 if (chip->posbuf.area)
2335 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 pci_release_regions(chip->pci);
2337 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002338 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 kfree(chip);
2340
2341 return 0;
2342}
2343
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002344static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345{
2346 return azx_free(device->device_data);
2347}
2348
2349/*
Takashi Iwai3372a152007-02-01 15:46:50 +01002350 * white/black-listing for position_fix
2351 */
Ralf Baechle623ec042007-03-13 15:29:47 +01002352static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Daniel T Chen7a68be92010-05-22 12:05:41 -04002353 SND_PCI_QUIRK(0x1025, 0x009f, "Acer Aspire 5110", POS_FIX_LPIB),
Daniel T Chendd5a0892010-12-05 08:43:14 -05002354 SND_PCI_QUIRK(0x1025, 0x026f, "Acer Aspire 5538", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002355 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
2356 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
Daniel T Chen9919c762010-03-03 18:24:26 -05002357 SND_PCI_QUIRK(0x1028, 0x01f6, "Dell Latitude 131L", POS_FIX_LPIB),
Daniel T Chene03fa052010-12-28 17:20:02 -05002358 SND_PCI_QUIRK(0x1028, 0x0470, "Dell Inspiron 1120", POS_FIX_LPIB),
Takashi Iwai2f703e72009-12-01 14:17:37 +01002359 SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002360 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
Daniel T Chendd37f8e2010-05-30 01:17:03 -04002361 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB),
Daniel T Chen9f75c1b2010-05-30 13:08:41 -04002362 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB),
David Henningssonb540afc2011-02-14 20:27:44 +01002363 SND_PCI_QUIRK(0x1043, 0x8410, "ASUS", POS_FIX_LPIB),
Daniel T Chene96d3122010-05-27 18:32:18 -04002364 SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB),
Daniel T Chen4e0938d2010-05-22 13:12:22 -04002365 SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB),
2366 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba A100-259", POS_FIX_LPIB),
Daniel T Chen61bb42c2010-05-29 11:04:11 -04002367 SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB),
Daniel T Chen9ec8dda2010-03-28 02:34:40 -04002368 SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB),
Takashi Iwai45d4ebf2009-11-30 11:58:30 +01002369 SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB),
Daniel T Chen0321b692010-03-05 09:04:49 -05002370 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar Microtech", POS_FIX_LPIB),
Takashi Iwai8815cd02010-04-15 09:02:41 +02002371 SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB),
Daniel T Chenb90c0762010-05-30 19:31:41 -04002372 SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB),
Daniel T Chen0e0280d2010-04-21 19:55:43 -04002373 SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB),
Daniel T Chen572c0e32010-03-14 23:44:03 -04002374 SND_PCI_QUIRK(0x8086, 0xd601, "eMachines T5212", POS_FIX_LPIB),
Takashi Iwai3372a152007-02-01 15:46:50 +01002375 {}
2376};
2377
2378static int __devinit check_position_fix(struct azx *chip, int fix)
2379{
2380 const struct snd_pci_quirk *q;
2381
Takashi Iwaic673ba12009-03-17 07:49:14 +01002382 switch (fix) {
2383 case POS_FIX_LPIB:
2384 case POS_FIX_POSBUF:
David Henningsson4cb36312010-09-30 10:12:50 +02002385 case POS_FIX_VIACOMBO:
Takashi Iwaic673ba12009-03-17 07:49:14 +01002386 return fix;
2387 }
2388
Takashi Iwaic673ba12009-03-17 07:49:14 +01002389 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
2390 if (q) {
2391 printk(KERN_INFO
2392 "hda_intel: position_fix set to %d "
2393 "for device %04x:%04x\n",
2394 q->value, q->subvendor, q->subdevice);
2395 return q->value;
Takashi Iwai3372a152007-02-01 15:46:50 +01002396 }
David Henningssonbdd9ef22010-10-04 12:02:14 +02002397
2398 /* Check VIA/ATI HD Audio Controller exist */
Takashi Iwai9477c582011-05-25 09:11:37 +02002399 if (chip->driver_caps & AZX_DCAPS_POSFIX_VIA) {
2400 snd_printd(SFX "Using VIACOMBO position fix\n");
David Henningssonbdd9ef22010-10-04 12:02:14 +02002401 return POS_FIX_VIACOMBO;
2402 }
Takashi Iwai9477c582011-05-25 09:11:37 +02002403 if (chip->driver_caps & AZX_DCAPS_POSFIX_LPIB) {
2404 snd_printd(SFX "Using LPIB position fix\n");
2405 return POS_FIX_LPIB;
2406 }
Takashi Iwaic673ba12009-03-17 07:49:14 +01002407 return POS_FIX_AUTO;
Takashi Iwai3372a152007-02-01 15:46:50 +01002408}
2409
2410/*
Takashi Iwai669ba272007-08-17 09:17:36 +02002411 * black-lists for probe_mask
2412 */
2413static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
2414 /* Thinkpad often breaks the controller communication when accessing
2415 * to the non-working (or non-existing) modem codec slot.
2416 */
2417 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2418 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2419 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
Takashi Iwai0edb9452008-11-07 14:53:09 +01002420 /* broken BIOS */
2421 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
Takashi Iwaief1681d2008-11-24 17:29:28 +01002422 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2423 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002424 /* forced codec slots */
Ozan Çağlayan93574842009-05-23 15:00:04 +03002425 SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002426 SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
Takashi Iwai669ba272007-08-17 09:17:36 +02002427 {}
2428};
2429
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002430#define AZX_FORCE_CODEC_MASK 0x100
2431
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002432static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02002433{
2434 const struct snd_pci_quirk *q;
2435
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002436 chip->codec_probe_mask = probe_mask[dev];
2437 if (chip->codec_probe_mask == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002438 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
2439 if (q) {
2440 printk(KERN_INFO
2441 "hda_intel: probe_mask set to 0x%x "
2442 "for device %04x:%04x\n",
2443 q->value, q->subvendor, q->subdevice);
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002444 chip->codec_probe_mask = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02002445 }
2446 }
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002447
2448 /* check forced option */
2449 if (chip->codec_probe_mask != -1 &&
2450 (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) {
2451 chip->codec_mask = chip->codec_probe_mask & 0xff;
2452 printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n",
2453 chip->codec_mask);
2454 }
Takashi Iwai669ba272007-08-17 09:17:36 +02002455}
2456
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002457/*
Takashi Iwai716238552009-09-28 13:14:04 +02002458 * white/black-list for enable_msi
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002459 */
Takashi Iwai716238552009-09-28 13:14:04 +02002460static struct snd_pci_quirk msi_black_list[] __devinitdata = {
Takashi Iwai9dc83982009-12-22 08:15:01 +01002461 SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai0a27fcf2010-02-15 17:05:28 +01002462 SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
Ralf Gerbigecd21622010-03-09 18:25:47 +01002463 SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
Michele Ballabio4193d132010-03-06 21:06:46 +01002464 SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai38155952010-04-04 12:14:03 +02002465 SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002466 {}
2467};
2468
2469static void __devinit check_msi(struct azx *chip)
2470{
2471 const struct snd_pci_quirk *q;
2472
Takashi Iwai716238552009-09-28 13:14:04 +02002473 if (enable_msi >= 0) {
2474 chip->msi = !!enable_msi;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002475 return;
Takashi Iwai716238552009-09-28 13:14:04 +02002476 }
2477 chip->msi = 1; /* enable MSI as default */
2478 q = snd_pci_quirk_lookup(chip->pci, msi_black_list);
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002479 if (q) {
2480 printk(KERN_INFO
2481 "hda_intel: msi for device %04x:%04x set to %d\n",
2482 q->subvendor, q->subdevice, q->value);
2483 chip->msi = q->value;
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002484 return;
2485 }
2486
2487 /* NVidia chipsets seem to cause troubles with MSI */
Takashi Iwai9477c582011-05-25 09:11:37 +02002488 if (chip->driver_caps & AZX_DCAPS_NO_MSI) {
2489 printk(KERN_INFO "hda_intel: Disabling MSI\n");
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002490 chip->msi = 0;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002491 }
2492}
2493
Takashi Iwai669ba272007-08-17 09:17:36 +02002494
2495/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 * constructor
2497 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002498static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai9477c582011-05-25 09:11:37 +02002499 int dev, unsigned int driver_caps,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002500 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002502 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002503 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01002504 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002505 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 .dev_free = azx_dev_free,
2507 };
2508
2509 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01002510
Pavel Machek927fc862006-08-31 17:03:43 +02002511 err = pci_enable_device(pci);
2512 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return err;
2514
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002515 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002516 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
2518 pci_disable_device(pci);
2519 return -ENOMEM;
2520 }
2521
2522 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002523 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 chip->card = card;
2525 chip->pci = pci;
2526 chip->irq = -1;
Takashi Iwai9477c582011-05-25 09:11:37 +02002527 chip->driver_caps = driver_caps;
2528 chip->driver_type = driver_caps & 0xff;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002529 check_msi(chip);
Takashi Iwai555e2192008-06-10 17:53:34 +02002530 chip->dev_index = dev;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002531 INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002533 chip->position_fix[0] = chip->position_fix[1] =
2534 check_position_fix(chip, position_fix[dev]);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002535 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01002536
Takashi Iwai27346162006-01-12 18:28:44 +01002537 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02002538
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002539 if (bdl_pos_adj[dev] < 0) {
2540 switch (chip->driver_type) {
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002541 case AZX_DRIVER_ICH:
Seth Heasley32679f92010-02-22 17:31:09 -08002542 case AZX_DRIVER_PCH:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002543 bdl_pos_adj[dev] = 1;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002544 break;
2545 default:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002546 bdl_pos_adj[dev] = 32;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002547 break;
2548 }
2549 }
2550
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002551#if BITS_PER_LONG != 64
2552 /* Fix up base address on ULI M5461 */
2553 if (chip->driver_type == AZX_DRIVER_ULI) {
2554 u16 tmp3;
2555 pci_read_config_word(pci, 0x40, &tmp3);
2556 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
2557 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
2558 }
2559#endif
2560
Pavel Machek927fc862006-08-31 17:03:43 +02002561 err = pci_request_regions(pci, "ICH HD audio");
2562 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 kfree(chip);
2564 pci_disable_device(pci);
2565 return err;
2566 }
2567
Pavel Machek927fc862006-08-31 17:03:43 +02002568 chip->addr = pci_resource_start(pci, 0);
Arjan van de Ven2f5ad542008-09-28 16:20:09 -07002569 chip->remap_addr = pci_ioremap_bar(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (chip->remap_addr == NULL) {
2571 snd_printk(KERN_ERR SFX "ioremap error\n");
2572 err = -ENXIO;
2573 goto errout;
2574 }
2575
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002576 if (chip->msi)
2577 if (pci_enable_msi(pci) < 0)
2578 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02002579
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002580 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 err = -EBUSY;
2582 goto errout;
2583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 pci_set_master(pci);
2586 synchronize_irq(chip->irq);
2587
Tobin Davisbcd72002008-01-15 11:23:55 +01002588 gcap = azx_readw(chip, GCAP);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002589 snd_printdd(SFX "chipset global capabilities = 0x%x\n", gcap);
Tobin Davisbcd72002008-01-15 11:23:55 +01002590
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002591 /* disable SB600 64bit support for safety */
Takashi Iwai9477c582011-05-25 09:11:37 +02002592 if (chip->pci->vendor == PCI_VENDOR_ID_ATI) {
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002593 struct pci_dev *p_smbus;
2594 p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
2595 PCI_DEVICE_ID_ATI_SBX00_SMBUS,
2596 NULL);
2597 if (p_smbus) {
2598 if (p_smbus->revision < 0x30)
2599 gcap &= ~ICH6_GCAP_64OK;
2600 pci_dev_put(p_smbus);
2601 }
2602 }
Takashi Iwai09240cf2009-03-17 07:47:18 +01002603
Takashi Iwai9477c582011-05-25 09:11:37 +02002604 /* disable 64bit DMA address on some devices */
2605 if (chip->driver_caps & AZX_DCAPS_NO_64BIT) {
2606 snd_printd(SFX "Disabling 64bit DMA\n");
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002607 gcap &= ~ICH6_GCAP_64OK;
Takashi Iwai9477c582011-05-25 09:11:37 +02002608 }
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002609
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002610 /* allow 64bit DMA address if supported by H/W */
Takashi Iwaib21fadb2009-05-28 12:26:15 +02002611 if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
Yang Hongyange9304382009-04-13 14:40:14 -07002612 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002613 else {
Yang Hongyange9304382009-04-13 14:40:14 -07002614 pci_set_dma_mask(pci, DMA_BIT_MASK(32));
2615 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002616 }
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002617
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002618 /* read number of streams from GCAP register instead of using
2619 * hardcoded value
2620 */
2621 chip->capture_streams = (gcap >> 8) & 0x0f;
2622 chip->playback_streams = (gcap >> 12) & 0x0f;
2623 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01002624 /* gcap didn't give any info, switching to old method */
2625
2626 switch (chip->driver_type) {
2627 case AZX_DRIVER_ULI:
2628 chip->playback_streams = ULI_NUM_PLAYBACK;
2629 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002630 break;
2631 case AZX_DRIVER_ATIHDMI:
2632 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
2633 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002634 break;
Yang, Libinc4da29c2008-11-13 11:07:07 +01002635 case AZX_DRIVER_GENERIC:
Tobin Davisbcd72002008-01-15 11:23:55 +01002636 default:
2637 chip->playback_streams = ICH6_NUM_PLAYBACK;
2638 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002639 break;
2640 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002641 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002642 chip->capture_index_offset = 0;
2643 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002644 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002645 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
2646 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002647 if (!chip->azx_dev) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002648 snd_printk(KERN_ERR SFX "cannot malloc azx_dev\n");
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002649 goto errout;
2650 }
2651
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002652 for (i = 0; i < chip->num_streams; i++) {
2653 /* allocate memory for the BDL for each stream */
2654 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2655 snd_dma_pci_data(chip->pci),
2656 BDL_SIZE, &chip->azx_dev[i].bdl);
2657 if (err < 0) {
2658 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
2659 goto errout;
2660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002662 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002663 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2664 snd_dma_pci_data(chip->pci),
2665 chip->num_streams * 8, &chip->posbuf);
2666 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002667 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
2668 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 /* allocate CORB/RIRB */
Takashi Iwai81740862009-05-26 15:22:00 +02002671 err = azx_alloc_cmd_io(chip);
2672 if (err < 0)
2673 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675 /* initialize streams */
2676 azx_init_stream(chip);
2677
2678 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002679 azx_init_pci(chip);
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002680 azx_init_chip(chip, (probe_only[dev] & 2) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02002683 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 snd_printk(KERN_ERR SFX "no codecs found!\n");
2685 err = -ENODEV;
2686 goto errout;
2687 }
2688
Takashi Iwaid01ce992007-07-27 16:52:19 +02002689 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
2690 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
2692 goto errout;
2693 }
2694
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002695 strcpy(card->driver, "HDA-Intel");
Takashi Iwai18cb7102009-04-16 10:22:24 +02002696 strlcpy(card->shortname, driver_short_names[chip->driver_type],
2697 sizeof(card->shortname));
2698 snprintf(card->longname, sizeof(card->longname),
2699 "%s at 0x%lx irq %i",
2700 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 *rchip = chip;
2703 return 0;
2704
2705 errout:
2706 azx_free(chip);
2707 return err;
2708}
2709
Takashi Iwaicb53c622007-08-10 17:21:45 +02002710static void power_down_all_codecs(struct azx *chip)
2711{
2712#ifdef CONFIG_SND_HDA_POWER_SAVE
2713 /* The codecs were powered up in snd_hda_codec_new().
2714 * Now all initialization done, so turn them down if possible
2715 */
2716 struct hda_codec *codec;
2717 list_for_each_entry(codec, &chip->bus->codec_list, list) {
2718 snd_hda_power_down(codec);
2719 }
2720#endif
2721}
2722
Takashi Iwaid01ce992007-07-27 16:52:19 +02002723static int __devinit azx_probe(struct pci_dev *pci,
2724 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002726 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002727 struct snd_card *card;
2728 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02002729 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002731 if (dev >= SNDRV_CARDS)
2732 return -ENODEV;
2733 if (!enable[dev]) {
2734 dev++;
2735 return -ENOENT;
2736 }
2737
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002738 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2739 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 snd_printk(KERN_ERR SFX "Error creating card!\n");
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002741 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 }
2743
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002744 /* set this here since it's referred in snd_hda_load_patch() */
2745 snd_card_set_dev(card, &pci->dev);
2746
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002747 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002748 if (err < 0)
2749 goto out_free;
Takashi Iwai421a1252005-11-17 16:11:09 +01002750 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01002752#ifdef CONFIG_SND_HDA_INPUT_BEEP
2753 chip->beep_mode = beep_mode[dev];
2754#endif
2755
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 /* create codec instances */
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002757 err = azx_codec_create(chip, model[dev]);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002758 if (err < 0)
2759 goto out_free;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002760#ifdef CONFIG_SND_HDA_PATCH_LOADER
Takashi Iwai41a63f12011-02-10 17:39:20 +01002761 if (patch[dev] && *patch[dev]) {
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002762 snd_printk(KERN_ERR SFX "Applying patch firmware '%s'\n",
2763 patch[dev]);
2764 err = snd_hda_load_patch(chip->bus, patch[dev]);
2765 if (err < 0)
2766 goto out_free;
2767 }
2768#endif
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002769 if ((probe_only[dev] & 1) == 0) {
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002770 err = azx_codec_configure(chip);
2771 if (err < 0)
2772 goto out_free;
2773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
2775 /* create PCM streams */
Takashi Iwai176d5332008-07-30 15:01:44 +02002776 err = snd_hda_build_pcms(chip->bus);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002777 if (err < 0)
2778 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
2780 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002781 err = azx_mixer_create(chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002782 if (err < 0)
2783 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Takashi Iwaid01ce992007-07-27 16:52:19 +02002785 err = snd_card_register(card);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002786 if (err < 0)
2787 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002790 chip->running = 1;
2791 power_down_all_codecs(chip);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002792 azx_notifier_register(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002794 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 return err;
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002796out_free:
2797 snd_card_free(card);
2798 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799}
2800
2801static void __devexit azx_remove(struct pci_dev *pci)
2802{
2803 snd_card_free(pci_get_drvdata(pci));
2804 pci_set_drvdata(pci, NULL);
2805}
2806
2807/* PCI IDs */
Alexey Dobriyancebe41d2010-02-06 00:21:03 +02002808static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -08002809 /* CPT */
Takashi Iwai9477c582011-05-25 09:11:37 +02002810 { PCI_DEVICE(0x8086, 0x1c20),
2811 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP },
Seth Heasleycea310e2010-09-10 16:29:56 -07002812 /* PBG */
Takashi Iwai9477c582011-05-25 09:11:37 +02002813 { PCI_DEVICE(0x8086, 0x1d20),
2814 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP },
Seth Heasleyd2edeb72011-04-20 10:59:57 -07002815 /* Panther Point */
Takashi Iwai9477c582011-05-25 09:11:37 +02002816 { PCI_DEVICE(0x8086, 0x1e20),
2817 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP },
Takashi Iwai87218e92008-02-21 08:13:11 +01002818 /* SCH */
Takashi Iwai9477c582011-05-25 09:11:37 +02002819 { PCI_DEVICE(0x8086, 0x811b),
2820 .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_SCH_SNOOP },
Takashi Iwaib6864532010-09-15 10:17:26 +02002821 /* Generic Intel */
2822 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
2823 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2824 .class_mask = 0xffffff,
2825 .driver_data = AZX_DRIVER_ICH },
Takashi Iwai9477c582011-05-25 09:11:37 +02002826 /* ATI SB 450/600/700/800/900 */
2827 { PCI_DEVICE(0x1002, 0x437b),
2828 .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB },
2829 { PCI_DEVICE(0x1002, 0x4383),
2830 .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB },
2831 /* AMD Hudson */
2832 { PCI_DEVICE(0x1022, 0x780d),
2833 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_SB },
Takashi Iwai87218e92008-02-21 08:13:11 +01002834 /* ATI HDMI */
Takashi Iwai9477c582011-05-25 09:11:37 +02002835 { PCI_DEVICE(0x1002, 0x793b),
2836 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2837 { PCI_DEVICE(0x1002, 0x7919),
2838 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2839 { PCI_DEVICE(0x1002, 0x960f),
2840 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2841 { PCI_DEVICE(0x1002, 0x970f),
2842 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2843 { PCI_DEVICE(0x1002, 0xaa00),
2844 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2845 { PCI_DEVICE(0x1002, 0xaa08),
2846 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2847 { PCI_DEVICE(0x1002, 0xaa10),
2848 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2849 { PCI_DEVICE(0x1002, 0xaa18),
2850 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2851 { PCI_DEVICE(0x1002, 0xaa20),
2852 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2853 { PCI_DEVICE(0x1002, 0xaa28),
2854 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2855 { PCI_DEVICE(0x1002, 0xaa30),
2856 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2857 { PCI_DEVICE(0x1002, 0xaa38),
2858 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2859 { PCI_DEVICE(0x1002, 0xaa40),
2860 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2861 { PCI_DEVICE(0x1002, 0xaa48),
2862 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
Takashi Iwai87218e92008-02-21 08:13:11 +01002863 /* VIA VT8251/VT8237A */
Takashi Iwai9477c582011-05-25 09:11:37 +02002864 { PCI_DEVICE(0x1106, 0x3288),
2865 .driver_data = AZX_DRIVER_VIA | AZX_DCAPS_POSFIX_VIA },
Takashi Iwai87218e92008-02-21 08:13:11 +01002866 /* SIS966 */
2867 { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
2868 /* ULI M5461 */
2869 { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
2870 /* NVIDIA MCP */
Takashi Iwai0c2fd1bf42009-12-18 16:41:39 +01002871 { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
2872 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2873 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002874 .driver_data = AZX_DRIVER_NVIDIA | AZX_DCAPS_PRESET_NVIDIA },
Kailang Yangf2690022008-05-27 11:44:55 +02002875 /* Teradici */
Takashi Iwai9477c582011-05-25 09:11:37 +02002876 { PCI_DEVICE(0x6549, 0x1200),
2877 .driver_data = AZX_DRIVER_TERA | AZX_DCAPS_NO_64BIT },
Takashi Iwai4e01f542009-04-16 08:53:34 +02002878 /* Creative X-Fi (CA0110-IBG) */
Takashi Iwai313f6e22009-05-18 12:40:52 +02002879#if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
2880 /* the following entry conflicts with snd-ctxfi driver,
2881 * as ctxfi driver mutates from HD-audio to native mode with
2882 * a special command sequence.
2883 */
Takashi Iwai4e01f542009-04-16 08:53:34 +02002884 { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID),
2885 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2886 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002887 .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND |
2888 AZX_DCAPS_RIRB_PRE_DELAY },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002889#else
2890 /* this entry seems still valid -- i.e. without emu20kx chip */
Takashi Iwai9477c582011-05-25 09:11:37 +02002891 { PCI_DEVICE(0x1102, 0x0009),
2892 .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND |
2893 AZX_DCAPS_RIRB_PRE_DELAY },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002894#endif
Otavio Salvadore35d4b12010-09-26 23:35:06 -03002895 /* Vortex86MX */
2896 { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
Bankim Bhavsar0f0714c52011-01-17 15:23:21 +01002897 /* VMware HDAudio */
2898 { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002899 /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
Yang, Libinc4da29c2008-11-13 11:07:07 +01002900 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
2901 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2902 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002903 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI },
Andiry Brienza9176b672009-07-17 11:32:32 +08002904 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID),
2905 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2906 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002907 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 { 0, }
2909};
2910MODULE_DEVICE_TABLE(pci, azx_ids);
2911
2912/* pci_driver definition */
2913static struct pci_driver driver = {
2914 .name = "HDA Intel",
2915 .id_table = azx_ids,
2916 .probe = azx_probe,
2917 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002918#ifdef CONFIG_PM
2919 .suspend = azx_suspend,
2920 .resume = azx_resume,
2921#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922};
2923
2924static int __init alsa_card_azx_init(void)
2925{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002926 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927}
2928
2929static void __exit alsa_card_azx_exit(void)
2930{
2931 pci_unregister_driver(&driver);
2932}
2933
2934module_init(alsa_card_azx_init)
2935module_exit(alsa_card_azx_exit)