blob: 81bd3b33a15f9fa30e543d234fb882c9882dfc8f [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 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +0200180#define ICH6_REG_OLD_SSYNC 0x34 /* SSYNC for old ICH */
181#define ICH6_REG_SSYNC 0x38
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#define ICH6_REG_CORBLBASE 0x40
183#define ICH6_REG_CORBUBASE 0x44
184#define ICH6_REG_CORBWP 0x48
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200185#define ICH6_REG_CORBRP 0x4a
186#define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define ICH6_REG_CORBCTL 0x4c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200188#define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */
189#define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#define ICH6_REG_CORBSTS 0x4d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200191#define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#define ICH6_REG_CORBSIZE 0x4e
193
194#define ICH6_REG_RIRBLBASE 0x50
195#define ICH6_REG_RIRBUBASE 0x54
196#define ICH6_REG_RIRBWP 0x58
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200197#define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#define ICH6_REG_RINTCNT 0x5a
199#define ICH6_REG_RIRBCTL 0x5c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200200#define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */
201#define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */
202#define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#define ICH6_REG_RIRBSTS 0x5d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200204#define ICH6_RBSTS_IRQ (1 << 0) /* response irq */
205#define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206#define ICH6_REG_RIRBSIZE 0x5e
207
208#define ICH6_REG_IC 0x60
209#define ICH6_REG_IR 0x64
210#define ICH6_REG_IRS 0x68
211#define ICH6_IRS_VALID (1<<1)
212#define ICH6_IRS_BUSY (1<<0)
213
214#define ICH6_REG_DPLBASE 0x70
215#define ICH6_REG_DPUBASE 0x74
216#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
217
218/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
219enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
220
221/* stream register offsets from stream base */
222#define ICH6_REG_SD_CTL 0x00
223#define ICH6_REG_SD_STS 0x03
224#define ICH6_REG_SD_LPIB 0x04
225#define ICH6_REG_SD_CBL 0x08
226#define ICH6_REG_SD_LVI 0x0c
227#define ICH6_REG_SD_FIFOW 0x0e
228#define ICH6_REG_SD_FIFOSIZE 0x10
229#define ICH6_REG_SD_FORMAT 0x12
230#define ICH6_REG_SD_BDLPL 0x18
231#define ICH6_REG_SD_BDLPU 0x1c
232
233/* PCI space */
234#define ICH6_PCIREG_TCSEL 0x44
235
236/*
237 * other constants
238 */
239
240/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200241/* ICH, ATI and VIA have 4 playback and 4 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200242#define ICH6_NUM_CAPTURE 4
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200243#define ICH6_NUM_PLAYBACK 4
244
245/* ULI has 6 playback and 5 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200246#define ULI_NUM_CAPTURE 5
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200247#define ULI_NUM_PLAYBACK 6
248
Felix Kuehling778b6e12006-05-17 11:22:21 +0200249/* ATI HDMI has 1 playback and 0 capture */
Felix Kuehling778b6e12006-05-17 11:22:21 +0200250#define ATIHDMI_NUM_CAPTURE 0
Felix Kuehling778b6e12006-05-17 11:22:21 +0200251#define ATIHDMI_NUM_PLAYBACK 1
252
Kailang Yangf2690022008-05-27 11:44:55 +0200253/* TERA has 4 playback and 3 capture */
254#define TERA_NUM_CAPTURE 3
255#define TERA_NUM_PLAYBACK 4
256
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200257/* this number is statically defined for simplicity */
258#define MAX_AZX_DEV 16
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100261#define BDL_SIZE 4096
262#define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
263#define AZX_MAX_FRAG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/* max buffer size - no h/w limit, you can increase as you like */
265#define AZX_MAX_BUF_SIZE (1024*1024*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/* RIRB int mask: overrun[2], response[0] */
268#define RIRB_INT_RESPONSE 0x01
269#define RIRB_INT_OVERRUN 0x04
270#define RIRB_INT_MASK 0x05
271
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200272/* STATESTS int mask: S3,SD2,SD1,SD0 */
Wei Ni7445dfc2010-03-03 15:05:53 +0800273#define AZX_MAX_CODECS 8
274#define AZX_DEFAULT_CODECS 4
Wu Fengguangdeadff12009-08-01 18:45:16 +0800275#define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277/* SD_CTL bits */
278#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
279#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
Takashi Iwai850f0e52008-03-18 17:11:05 +0100280#define SD_CTL_STRIPE (3 << 16) /* stripe control */
281#define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
282#define SD_CTL_DIR (1 << 19) /* bi-directional stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
284#define SD_CTL_STREAM_TAG_SHIFT 20
285
286/* SD_CTL and SD_STS */
287#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
288#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
289#define SD_INT_COMPLETE 0x04 /* completion interrupt */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200290#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
291 SD_INT_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293/* SD_STS */
294#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
295
296/* INTCTL and INTSTS */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200297#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
298#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
299#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/* below are so far hardcoded - should read registers in future */
302#define ICH6_MAX_CORB_ENTRIES 256
303#define ICH6_MAX_RIRB_ENTRIES 256
304
Takashi Iwaic74db862005-05-12 14:26:27 +0200305/* position fix mode */
306enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200307 POS_FIX_AUTO,
Takashi Iwaid2e1c972008-06-10 17:53:34 +0200308 POS_FIX_LPIB,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200309 POS_FIX_POSBUF,
David Henningsson4cb36312010-09-30 10:12:50 +0200310 POS_FIX_VIACOMBO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200311};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Frederick Lif5d40b32005-05-12 14:55:20 +0200313/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200314#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
315#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
316
Vinod Gda3fca22005-09-13 18:49:12 +0200317/* Defines for Nvidia HDA support */
318#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
319#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Peer Chen320dcc32008-08-20 16:43:24 -0700320#define NVIDIA_HDA_ISTRM_COH 0x4d
321#define NVIDIA_HDA_OSTRM_COH 0x4c
322#define NVIDIA_HDA_ENABLE_COHBIT 0x01
Frederick Lif5d40b32005-05-12 14:55:20 +0200323
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100324/* Defines for Intel SCH HDA snoop control */
325#define INTEL_SCH_HDA_DEVC 0x78
326#define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
327
Joseph Chan0e153472008-08-26 14:38:03 +0200328/* Define IN stream 0 FIFO size offset in VIA controller */
329#define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
330/* Define VIA HD Audio Device ID*/
331#define VIA_HDAC_DEVICE_ID 0x3288
332
Yang, Libinc4da29c2008-11-13 11:07:07 +0100333/* HD Audio class code */
334#define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
338
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100339struct azx_dev {
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100340 struct snd_dma_buffer bdl; /* BDL buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200341 u32 *posbuf; /* position buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Takashi Iwaid01ce992007-07-27 16:52:19 +0200343 unsigned int bufsize; /* size of the play buffer in bytes */
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200344 unsigned int period_bytes; /* size of the period in bytes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200345 unsigned int frags; /* number for period in the play buffer */
346 unsigned int fifo_size; /* FIFO size */
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200347 unsigned long start_wallclk; /* start + minimum wallclk */
348 unsigned long period_wallclk; /* wallclk for period */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Takashi Iwaid01ce992007-07-27 16:52:19 +0200350 void __iomem *sd_addr; /* stream descriptor pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Takashi Iwaid01ce992007-07-27 16:52:19 +0200352 u32 sd_int_sta_mask; /* stream int status mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 /* pcm support */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200355 struct snd_pcm_substream *substream; /* assigned substream,
356 * set in PCM open
357 */
358 unsigned int format_val; /* format value to be set in the
359 * controller and the codec
360 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 unsigned char stream_tag; /* assigned stream */
362 unsigned char index; /* stream index */
Wu Fengguangef18bed2009-12-25 13:14:27 +0800363 int device; /* last device number assigned to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Pavel Machek927fc862006-08-31 17:03:43 +0200365 unsigned int opened :1;
366 unsigned int running :1;
Takashi Iwai675f25d2008-06-10 17:53:20 +0200367 unsigned int irq_pending :1;
Joseph Chan0e153472008-08-26 14:38:03 +0200368 /*
369 * For VIA:
370 * A flag to ensure DMA position is 0
371 * when link position is not greater than FIFO size
372 */
373 unsigned int insufficient :1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374};
375
376/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100377struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 u32 *buf; /* CORB/RIRB buffer
379 * Each CORB entry is 4byte, RIRB is 8byte
380 */
381 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
382 /* for RIRB */
383 unsigned short rp, wp; /* read/write pointers */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800384 int cmds[AZX_MAX_CODECS]; /* number of pending requests */
385 u32 res[AZX_MAX_CODECS]; /* last read value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386};
387
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100388struct azx {
389 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 struct pci_dev *pci;
Takashi Iwai555e2192008-06-10 17:53:34 +0200391 int dev_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200393 /* chip type specific */
394 int driver_type;
Takashi Iwai9477c582011-05-25 09:11:37 +0200395 unsigned int driver_caps;
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200396 int playback_streams;
397 int playback_index_offset;
398 int capture_streams;
399 int capture_index_offset;
400 int num_streams;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 /* pci resources */
403 unsigned long addr;
404 void __iomem *remap_addr;
405 int irq;
406
407 /* locks */
408 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100409 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200411 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100412 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
414 /* PCM */
Takashi Iwaic8936222010-01-28 17:08:53 +0100415 struct snd_pcm *pcm[HDA_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* HD codec */
418 unsigned short codec_mask;
Takashi Iwaif1eaaee2009-02-13 08:16:55 +0100419 int codec_probe_mask; /* copied from probe_mask option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 struct hda_bus *bus;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100421 unsigned int beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
423 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100424 struct azx_rb corb;
425 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100427 /* CORB/RIRB and position buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 struct snd_dma_buffer rb;
429 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200430
431 /* flags */
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +0200432 int position_fix[2]; /* for both playback/capture streams */
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200433 int poll_count;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200434 unsigned int running :1;
Pavel Machek927fc862006-08-31 17:03:43 +0200435 unsigned int initialized :1;
436 unsigned int single_cmd :1;
437 unsigned int polling_mode :1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200438 unsigned int msi :1;
Takashi Iwaia6a950a2008-06-10 17:53:35 +0200439 unsigned int irq_pending_warned :1;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100440 unsigned int probing :1; /* codec probing phase */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200441
442 /* for debugging */
Wu Fengguangfeb27342009-08-01 19:17:14 +0800443 unsigned int last_cmd[AZX_MAX_CODECS];
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200444
445 /* for pending irqs */
446 struct work_struct irq_pending_work;
Takashi Iwai0cbf0092008-10-29 16:18:25 +0100447
448 /* reboot notifier (for mysterious hangup problem at power-down) */
449 struct notifier_block reboot_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450};
451
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200452/* driver types */
453enum {
454 AZX_DRIVER_ICH,
Seth Heasley32679f92010-02-22 17:31:09 -0800455 AZX_DRIVER_PCH,
Tobin Davis4979bca2008-01-30 08:13:55 +0100456 AZX_DRIVER_SCH,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200457 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200458 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200459 AZX_DRIVER_VIA,
460 AZX_DRIVER_SIS,
461 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200462 AZX_DRIVER_NVIDIA,
Kailang Yangf2690022008-05-27 11:44:55 +0200463 AZX_DRIVER_TERA,
Takashi Iwai14d34f12010-10-21 09:03:25 +0200464 AZX_DRIVER_CTX,
Yang, Libinc4da29c2008-11-13 11:07:07 +0100465 AZX_DRIVER_GENERIC,
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200466 AZX_NUM_DRIVERS, /* keep this as last entry */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200467};
468
Takashi Iwai9477c582011-05-25 09:11:37 +0200469/* driver quirks (capabilities) */
470/* bits 0-7 are used for indicating driver type */
471#define AZX_DCAPS_NO_TCSEL (1 << 8) /* No Intel TCSEL bit */
472#define AZX_DCAPS_NO_MSI (1 << 9) /* No MSI support */
473#define AZX_DCAPS_ATI_SNOOP (1 << 10) /* ATI snoop enable */
474#define AZX_DCAPS_NVIDIA_SNOOP (1 << 11) /* Nvidia snoop enable */
475#define AZX_DCAPS_SCH_SNOOP (1 << 12) /* SCH/PCH snoop enable */
476#define AZX_DCAPS_RIRB_DELAY (1 << 13) /* Long delay in read loop */
477#define AZX_DCAPS_RIRB_PRE_DELAY (1 << 14) /* Put a delay before read */
478#define AZX_DCAPS_CTX_WORKAROUND (1 << 15) /* X-Fi workaround */
479#define AZX_DCAPS_POSFIX_LPIB (1 << 16) /* Use LPIB as default */
480#define AZX_DCAPS_POSFIX_VIA (1 << 17) /* Use VIACOMBO as default */
481#define AZX_DCAPS_NO_64BIT (1 << 18) /* No 64bit address */
482#define AZX_DCAPS_SYNC_WRITE (1 << 19) /* sync each cmd write */
Takashi Iwai8b0bd222011-06-10 14:56:26 +0200483#define AZX_DCAPS_OLD_SSYNC (1 << 20) /* Old SSYNC reg for ICH */
Takashi Iwai9477c582011-05-25 09:11:37 +0200484
485/* quirks for ATI SB / AMD Hudson */
486#define AZX_DCAPS_PRESET_ATI_SB \
487 (AZX_DCAPS_ATI_SNOOP | AZX_DCAPS_NO_TCSEL | \
488 AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
489
490/* quirks for ATI/AMD HDMI */
491#define AZX_DCAPS_PRESET_ATI_HDMI \
492 (AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
493
494/* quirks for Nvidia */
495#define AZX_DCAPS_PRESET_NVIDIA \
496 (AZX_DCAPS_NVIDIA_SNOOP | AZX_DCAPS_RIRB_DELAY | AZX_DCAPS_NO_MSI)
497
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200498static char *driver_short_names[] __devinitdata = {
499 [AZX_DRIVER_ICH] = "HDA Intel",
Seth Heasley32679f92010-02-22 17:31:09 -0800500 [AZX_DRIVER_PCH] = "HDA Intel PCH",
Tobin Davis4979bca2008-01-30 08:13:55 +0100501 [AZX_DRIVER_SCH] = "HDA Intel MID",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200502 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200503 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200504 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
505 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200506 [AZX_DRIVER_ULI] = "HDA ULI M5461",
507 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Kailang Yangf2690022008-05-27 11:44:55 +0200508 [AZX_DRIVER_TERA] = "HDA Teradici",
Takashi Iwai14d34f12010-10-21 09:03:25 +0200509 [AZX_DRIVER_CTX] = "HDA Creative",
Yang, Libinc4da29c2008-11-13 11:07:07 +0100510 [AZX_DRIVER_GENERIC] = "HD-Audio Generic",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200511};
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/*
514 * macros for easy use
515 */
516#define azx_writel(chip,reg,value) \
517 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
518#define azx_readl(chip,reg) \
519 readl((chip)->remap_addr + ICH6_REG_##reg)
520#define azx_writew(chip,reg,value) \
521 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
522#define azx_readw(chip,reg) \
523 readw((chip)->remap_addr + ICH6_REG_##reg)
524#define azx_writeb(chip,reg,value) \
525 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
526#define azx_readb(chip,reg) \
527 readb((chip)->remap_addr + ICH6_REG_##reg)
528
529#define azx_sd_writel(dev,reg,value) \
530 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
531#define azx_sd_readl(dev,reg) \
532 readl((dev)->sd_addr + ICH6_REG_##reg)
533#define azx_sd_writew(dev,reg,value) \
534 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
535#define azx_sd_readw(dev,reg) \
536 readw((dev)->sd_addr + ICH6_REG_##reg)
537#define azx_sd_writeb(dev,reg,value) \
538 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
539#define azx_sd_readb(dev,reg) \
540 readb((dev)->sd_addr + ICH6_REG_##reg)
541
542/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100543#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200545static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200546static int azx_send_cmd(struct hda_bus *bus, unsigned int val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547/*
548 * Interface for HD codec
549 */
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*
552 * CORB / RIRB interface
553 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100554static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 int err;
557
558 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200559 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
560 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 PAGE_SIZE, &chip->rb);
562 if (err < 0) {
563 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
564 return err;
565 }
566 return 0;
567}
568
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100569static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800571 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /* CORB set up */
573 chip->corb.addr = chip->rb.addr;
574 chip->corb.buf = (u32 *)chip->rb.area;
575 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200576 azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200578 /* set the corb size to 256 entries (ULI requires explicitly) */
579 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 /* set the corb write pointer to 0 */
581 azx_writew(chip, CORBWP, 0);
582 /* reset the corb hw read pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200583 azx_writew(chip, CORBRP, ICH6_CORBRP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 /* enable corb dma */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200585 azx_writeb(chip, CORBCTL, ICH6_CORBCTL_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 /* RIRB set up */
588 chip->rirb.addr = chip->rb.addr + 2048;
589 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800590 chip->rirb.wp = chip->rirb.rp = 0;
591 memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200593 azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200595 /* set the rirb size to 256 entries (ULI requires explicitly) */
596 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /* reset the rirb hw write pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200598 azx_writew(chip, RIRBWP, ICH6_RIRBWP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /* set N=1, get RIRB response interrupt for new entry */
Takashi Iwai9477c582011-05-25 09:11:37 +0200600 if (chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND)
Takashi Iwai14d34f12010-10-21 09:03:25 +0200601 azx_writew(chip, RINTCNT, 0xc0);
602 else
603 azx_writew(chip, RINTCNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800606 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100609static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800611 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /* disable ringbuffer DMAs */
613 azx_writeb(chip, RIRBCTL, 0);
614 azx_writeb(chip, CORBCTL, 0);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800615 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Wu Fengguangdeadff12009-08-01 18:45:16 +0800618static unsigned int azx_command_addr(u32 cmd)
619{
620 unsigned int addr = cmd >> 28;
621
622 if (addr >= AZX_MAX_CODECS) {
623 snd_BUG();
624 addr = 0;
625 }
626
627 return addr;
628}
629
630static unsigned int azx_response_addr(u32 res)
631{
632 unsigned int addr = res & 0xf;
633
634 if (addr >= AZX_MAX_CODECS) {
635 snd_BUG();
636 addr = 0;
637 }
638
639 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
641
642/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100643static int azx_corb_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100645 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800646 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 unsigned int wp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648
Wu Fengguangc32649f2009-08-01 18:48:12 +0800649 spin_lock_irq(&chip->reg_lock);
650
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 /* add command to corb */
652 wp = azx_readb(chip, CORBWP);
653 wp++;
654 wp %= ICH6_MAX_CORB_ENTRIES;
655
Wu Fengguangdeadff12009-08-01 18:45:16 +0800656 chip->rirb.cmds[addr]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 chip->corb.buf[wp] = cpu_to_le32(val);
658 azx_writel(chip, CORBWP, wp);
Wu Fengguangc32649f2009-08-01 18:48:12 +0800659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 spin_unlock_irq(&chip->reg_lock);
661
662 return 0;
663}
664
665#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
666
667/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100668static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 unsigned int rp, wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800671 unsigned int addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 u32 res, res_ex;
673
674 wp = azx_readb(chip, RIRBWP);
675 if (wp == chip->rirb.wp)
676 return;
677 chip->rirb.wp = wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 while (chip->rirb.rp != wp) {
680 chip->rirb.rp++;
681 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
682
683 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
684 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
685 res = le32_to_cpu(chip->rirb.buf[rp]);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800686 addr = azx_response_addr(res_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
688 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800689 else if (chip->rirb.cmds[addr]) {
690 chip->rirb.res[addr] = res;
Takashi Iwai2add9b92008-03-18 09:47:06 +0100691 smp_wmb();
Wu Fengguangdeadff12009-08-01 18:45:16 +0800692 chip->rirb.cmds[addr]--;
Wu Fengguange310bb02009-08-01 19:18:45 +0800693 } else
694 snd_printk(KERN_ERR SFX "spurious response %#x:%#x, "
695 "last cmd=%#08x\n",
696 res, res_ex,
697 chip->last_cmd[addr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
699}
700
701/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800702static unsigned int azx_rirb_get_response(struct hda_bus *bus,
703 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100705 struct azx *chip = bus->private_data;
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200706 unsigned long timeout;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200707 int do_poll = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200709 again:
710 timeout = jiffies + msecs_to_jiffies(1000);
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100711 for (;;) {
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200712 if (chip->polling_mode || do_poll) {
Takashi Iwaie96224a2006-08-21 17:57:44 +0200713 spin_lock_irq(&chip->reg_lock);
714 azx_update_rirb(chip);
715 spin_unlock_irq(&chip->reg_lock);
716 }
Wu Fengguangdeadff12009-08-01 18:45:16 +0800717 if (!chip->rirb.cmds[addr]) {
Takashi Iwai2add9b92008-03-18 09:47:06 +0100718 smp_rmb();
Takashi Iwaib6132912009-03-24 07:36:09 +0100719 bus->rirb_error = 0;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200720
721 if (!do_poll)
722 chip->poll_count = 0;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800723 return chip->rirb.res[addr]; /* the last value */
Takashi Iwai2add9b92008-03-18 09:47:06 +0100724 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100725 if (time_after(jiffies, timeout))
726 break;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100727 if (bus->needs_damn_long_delay)
Takashi Iwai52987652008-01-16 16:09:47 +0100728 msleep(2); /* temporary workaround */
729 else {
730 udelay(10);
731 cond_resched();
732 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100733 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200734
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200735 if (!chip->polling_mode && chip->poll_count < 2) {
736 snd_printdd(SFX "azx_get_response timeout, "
737 "polling the codec once: last cmd=0x%08x\n",
738 chip->last_cmd[addr]);
739 do_poll = 1;
740 chip->poll_count++;
741 goto again;
742 }
743
744
Takashi Iwai23c4a882009-10-30 13:21:49 +0100745 if (!chip->polling_mode) {
746 snd_printk(KERN_WARNING SFX "azx_get_response timeout, "
747 "switching to polling mode: last cmd=0x%08x\n",
748 chip->last_cmd[addr]);
749 chip->polling_mode = 1;
750 goto again;
751 }
752
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200753 if (chip->msi) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200754 snd_printk(KERN_WARNING SFX "No response from codec, "
Wu Fengguangfeb27342009-08-01 19:17:14 +0800755 "disabling MSI: last cmd=0x%08x\n",
756 chip->last_cmd[addr]);
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200757 free_irq(chip->irq, chip);
758 chip->irq = -1;
759 pci_disable_msi(chip->pci);
760 chip->msi = 0;
Takashi Iwaib6132912009-03-24 07:36:09 +0100761 if (azx_acquire_irq(chip, 1) < 0) {
762 bus->rirb_error = 1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200763 return -1;
Takashi Iwaib6132912009-03-24 07:36:09 +0100764 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200765 goto again;
766 }
767
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100768 if (chip->probing) {
769 /* If this critical timeout happens during the codec probing
770 * phase, this is likely an access to a non-existing codec
771 * slot. Better to return an error and reset the system.
772 */
773 return -1;
774 }
775
Takashi Iwai8dd78332009-06-02 01:16:07 +0200776 /* a fatal communication error; need either to reset or to fallback
777 * to the single_cmd mode
778 */
Takashi Iwaib6132912009-03-24 07:36:09 +0100779 bus->rirb_error = 1;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200780 if (bus->allow_bus_reset && !bus->response_reset && !bus->in_reset) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200781 bus->response_reset = 1;
782 return -1; /* give a chance to retry */
783 }
784
785 snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
786 "switching to single_cmd mode: last cmd=0x%08x\n",
Wu Fengguangfeb27342009-08-01 19:17:14 +0800787 chip->last_cmd[addr]);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200788 chip->single_cmd = 1;
789 bus->response_reset = 0;
Takashi Iwai1a696972009-11-07 09:49:04 +0100790 /* release CORB/RIRB */
Takashi Iwai4fcd3922009-05-25 18:34:52 +0200791 azx_free_cmd_io(chip);
Takashi Iwai1a696972009-11-07 09:49:04 +0100792 /* disable unsolicited responses */
793 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200794 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/*
798 * Use the single immediate command instead of CORB/RIRB for simplicity
799 *
800 * Note: according to Intel, this is not preferred use. The command was
801 * intended for the BIOS only, and may get confused with unsolicited
802 * responses. So, we shouldn't use it for normal operation from the
803 * driver.
804 * I left the codes, however, for debugging/testing purposes.
805 */
806
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200807/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800808static int azx_single_wait_for_response(struct azx *chip, unsigned int addr)
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200809{
810 int timeout = 50;
811
812 while (timeout--) {
813 /* check IRV busy bit */
814 if (azx_readw(chip, IRS) & ICH6_IRS_VALID) {
815 /* reuse rirb.res as the response return value */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800816 chip->rirb.res[addr] = azx_readl(chip, IR);
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200817 return 0;
818 }
819 udelay(1);
820 }
821 if (printk_ratelimit())
822 snd_printd(SFX "get_response timeout: IRS=0x%x\n",
823 azx_readw(chip, IRS));
Wu Fengguangdeadff12009-08-01 18:45:16 +0800824 chip->rirb.res[addr] = -1;
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200825 return -EIO;
826}
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100829static int azx_single_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100831 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800832 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 int timeout = 50;
834
Takashi Iwai8dd78332009-06-02 01:16:07 +0200835 bus->rirb_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 while (timeout--) {
837 /* check ICB busy bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200838 if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /* Clear IRV valid bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200840 azx_writew(chip, IRS, azx_readw(chip, IRS) |
841 ICH6_IRS_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 azx_writel(chip, IC, val);
Takashi Iwaid01ce992007-07-27 16:52:19 +0200843 azx_writew(chip, IRS, azx_readw(chip, IRS) |
844 ICH6_IRS_BUSY);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800845 return azx_single_wait_for_response(chip, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 udelay(1);
848 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100849 if (printk_ratelimit())
850 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
851 azx_readw(chip, IRS), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return -EIO;
853}
854
855/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800856static unsigned int azx_single_get_response(struct hda_bus *bus,
857 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100859 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800860 return chip->rirb.res[addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
Takashi Iwai111d3af2006-02-16 18:17:58 +0100863/*
864 * The below are the main callbacks from hda_codec.
865 *
866 * They are just the skeleton to call sub-callbacks according to the
867 * current setting of chip->single_cmd.
868 */
869
870/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100871static int azx_send_cmd(struct hda_bus *bus, unsigned int val)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100872{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100873 struct azx *chip = bus->private_data;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200874
Wu Fengguangfeb27342009-08-01 19:17:14 +0800875 chip->last_cmd[azx_command_addr(val)] = val;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100876 if (chip->single_cmd)
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100877 return azx_single_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100878 else
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100879 return azx_corb_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100880}
881
882/* get a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800883static unsigned int azx_get_response(struct hda_bus *bus,
884 unsigned int addr)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100885{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100886 struct azx *chip = bus->private_data;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100887 if (chip->single_cmd)
Wu Fengguangdeadff12009-08-01 18:45:16 +0800888 return azx_single_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100889 else
Wu Fengguangdeadff12009-08-01 18:45:16 +0800890 return azx_rirb_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100891}
892
Takashi Iwaicb53c622007-08-10 17:21:45 +0200893#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100894static void azx_power_notify(struct hda_bus *bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200895#endif
Takashi Iwai111d3af2006-02-16 18:17:58 +0100896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897/* reset codec link */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100898static int azx_reset(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 int count;
901
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100902 if (!full_reset)
903 goto __skip;
904
Danny Tholene8a7f132007-09-11 21:41:56 +0200905 /* clear STATESTS */
906 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 /* reset controller */
909 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
910
911 count = 50;
912 while (azx_readb(chip, GCTL) && --count)
913 msleep(1);
914
915 /* delay for >= 100us for codec PLL to settle per spec
916 * Rev 0.9 section 5.5.1
917 */
918 msleep(1);
919
920 /* Bring controller out of reset */
921 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
922
923 count = 50;
Pavel Machek927fc862006-08-31 17:03:43 +0200924 while (!azx_readb(chip, GCTL) && --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 msleep(1);
926
Pavel Machek927fc862006-08-31 17:03:43 +0200927 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 msleep(1);
929
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100930 __skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 /* check to see if controller is ready */
Pavel Machek927fc862006-08-31 17:03:43 +0200932 if (!azx_readb(chip, GCTL)) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200933 snd_printd(SFX "azx_reset: controller not ready!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 return -EBUSY;
935 }
936
Matt41e2fce2005-07-04 17:49:55 +0200937 /* Accept unsolicited responses */
Takashi Iwai1a696972009-11-07 09:49:04 +0100938 if (!chip->single_cmd)
939 azx_writel(chip, GCTL, azx_readl(chip, GCTL) |
940 ICH6_GCTL_UNSOL);
Matt41e2fce2005-07-04 17:49:55 +0200941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* detect codecs */
Pavel Machek927fc862006-08-31 17:03:43 +0200943 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 chip->codec_mask = azx_readw(chip, STATESTS);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200945 snd_printdd(SFX "codec_mask = 0x%x\n", chip->codec_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
947
948 return 0;
949}
950
951
952/*
953 * Lowlevel interface
954 */
955
956/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100957static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958{
959 /* enable controller CIE and GIE */
960 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
961 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
962}
963
964/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100965static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
967 int i;
968
969 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200970 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100971 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 azx_sd_writeb(azx_dev, SD_CTL,
973 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
974 }
975
976 /* disable SIE for all streams */
977 azx_writeb(chip, INTCTL, 0);
978
979 /* disable controller CIE and GIE */
980 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
981 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
982}
983
984/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100985static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 int i;
988
989 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200990 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100991 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
993 }
994
995 /* clear STATESTS */
996 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
997
998 /* clear rirb status */
999 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1000
1001 /* clear int status */
1002 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
1003}
1004
1005/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001006static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007{
Joseph Chan0e153472008-08-26 14:38:03 +02001008 /*
1009 * Before stream start, initialize parameter
1010 */
1011 azx_dev->insufficient = 1;
1012
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* enable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001014 azx_writel(chip, INTCTL,
1015 azx_readl(chip, INTCTL) | (1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /* set DMA start and interrupt mask */
1017 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1018 SD_CTL_DMA_START | SD_INT_MASK);
1019}
1020
Takashi Iwai1dddab42009-03-18 15:15:37 +01001021/* stop DMA */
1022static void azx_stream_clear(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
1025 ~(SD_CTL_DMA_START | SD_INT_MASK));
1026 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
Takashi Iwai1dddab42009-03-18 15:15:37 +01001027}
1028
1029/* stop a stream */
1030static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
1031{
1032 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* disable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001034 azx_writel(chip, INTCTL,
1035 azx_readl(chip, INTCTL) & ~(1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
1038
1039/*
Takashi Iwaicb53c622007-08-10 17:21:45 +02001040 * reset and start the controller registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001042static void azx_init_chip(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001044 if (chip->initialized)
1045 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
1047 /* reset controller */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001048 azx_reset(chip, full_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 /* initialize interrupts */
1051 azx_int_clear(chip);
1052 azx_int_enable(chip);
1053
1054 /* initialize the codec command I/O */
Takashi Iwai1a696972009-11-07 09:49:04 +01001055 if (!chip->single_cmd)
1056 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001058 /* program the position buffer */
1059 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001060 azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +02001061
Takashi Iwaicb53c622007-08-10 17:21:45 +02001062 chip->initialized = 1;
1063}
1064
1065/*
1066 * initialize the PCI registers
1067 */
1068/* update bits in a PCI register byte */
1069static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
1070 unsigned char mask, unsigned char val)
1071{
1072 unsigned char data;
1073
1074 pci_read_config_byte(pci, reg, &data);
1075 data &= ~mask;
1076 data |= (val & mask);
1077 pci_write_config_byte(pci, reg, data);
1078}
1079
1080static void azx_init_pci(struct azx *chip)
1081{
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001082 unsigned short snoop;
1083
Takashi Iwaicb53c622007-08-10 17:21:45 +02001084 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
1085 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
1086 * Ensuring these bits are 0 clears playback static on some HD Audio
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001087 * codecs.
1088 * The PCI register TCSEL is defined in the Intel manuals.
Takashi Iwaicb53c622007-08-10 17:21:45 +02001089 */
Linus Torvalds46f2cc82011-05-27 19:45:28 -07001090 if (!(chip->driver_caps & AZX_DCAPS_NO_TCSEL)) {
Takashi Iwai9477c582011-05-25 09:11:37 +02001091 snd_printdd(SFX "Clearing TCSEL\n");
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001092 update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
Takashi Iwai9477c582011-05-25 09:11:37 +02001093 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02001094
Takashi Iwai9477c582011-05-25 09:11:37 +02001095 /* For ATI SB450/600/700/800/900 and AMD Hudson azalia HD audio,
1096 * we need to enable snoop.
1097 */
1098 if (chip->driver_caps & AZX_DCAPS_ATI_SNOOP) {
1099 snd_printdd(SFX "Enabling ATI snoop\n");
Takashi Iwaicb53c622007-08-10 17:21:45 +02001100 update_pci_byte(chip->pci,
1101 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
1102 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
Takashi Iwai9477c582011-05-25 09:11:37 +02001103 }
1104
1105 /* For NVIDIA HDA, enable snoop */
1106 if (chip->driver_caps & AZX_DCAPS_NVIDIA_SNOOP) {
1107 snd_printdd(SFX "Enabling Nvidia snoop\n");
Takashi Iwaicb53c622007-08-10 17:21:45 +02001108 update_pci_byte(chip->pci,
1109 NVIDIA_HDA_TRANSREG_ADDR,
1110 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
Peer Chen320dcc32008-08-20 16:43:24 -07001111 update_pci_byte(chip->pci,
1112 NVIDIA_HDA_ISTRM_COH,
1113 0x01, NVIDIA_HDA_ENABLE_COHBIT);
1114 update_pci_byte(chip->pci,
1115 NVIDIA_HDA_OSTRM_COH,
1116 0x01, NVIDIA_HDA_ENABLE_COHBIT);
Takashi Iwai9477c582011-05-25 09:11:37 +02001117 }
1118
1119 /* Enable SCH/PCH snoop if needed */
1120 if (chip->driver_caps & AZX_DCAPS_SCH_SNOOP) {
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001121 pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
1122 if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001123 pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC,
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001124 snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
1125 pci_read_config_word(chip->pci,
1126 INTEL_SCH_HDA_DEVC, &snoop);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001127 snd_printdd(SFX "HDA snoop disabled, enabling ... %s\n",
1128 (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001129 ? "Failed" : "OK");
1130 }
Vinod Gda3fca22005-09-13 18:49:12 +02001131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001135static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
1136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137/*
1138 * interrupt handler
1139 */
David Howells7d12e782006-10-05 14:55:46 +01001140static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001142 struct azx *chip = dev_id;
1143 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 u32 status;
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001145 u8 sd_status;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001146 int i, ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148 spin_lock(&chip->reg_lock);
1149
1150 status = azx_readl(chip, INTSTS);
1151 if (status == 0) {
1152 spin_unlock(&chip->reg_lock);
1153 return IRQ_NONE;
1154 }
1155
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001156 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 azx_dev = &chip->azx_dev[i];
1158 if (status & azx_dev->sd_int_sta_mask) {
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001159 sd_status = azx_sd_readb(azx_dev, SD_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001161 if (!azx_dev->substream || !azx_dev->running ||
1162 !(sd_status & SD_INT_COMPLETE))
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001163 continue;
1164 /* check whether this IRQ is really acceptable */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001165 ok = azx_position_ok(chip, azx_dev);
1166 if (ok == 1) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001167 azx_dev->irq_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 spin_unlock(&chip->reg_lock);
1169 snd_pcm_period_elapsed(azx_dev->substream);
1170 spin_lock(&chip->reg_lock);
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001171 } else if (ok == 0 && chip->bus && chip->bus->workq) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001172 /* bogus IRQ, process it later */
1173 azx_dev->irq_pending = 1;
Takashi Iwai6acaed32009-01-12 10:09:24 +01001174 queue_work(chip->bus->workq,
1175 &chip->irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
1177 }
1178 }
1179
1180 /* clear rirb int */
1181 status = azx_readb(chip, RIRBSTS);
1182 if (status & RIRB_INT_MASK) {
Takashi Iwai14d34f12010-10-21 09:03:25 +02001183 if (status & RIRB_INT_RESPONSE) {
Takashi Iwai9477c582011-05-25 09:11:37 +02001184 if (chip->driver_caps & AZX_DCAPS_RIRB_PRE_DELAY)
Takashi Iwai14d34f12010-10-21 09:03:25 +02001185 udelay(80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 azx_update_rirb(chip);
Takashi Iwai14d34f12010-10-21 09:03:25 +02001187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1189 }
1190
1191#if 0
1192 /* clear state status int */
1193 if (azx_readb(chip, STATESTS) & 0x04)
1194 azx_writeb(chip, STATESTS, 0x04);
1195#endif
1196 spin_unlock(&chip->reg_lock);
1197
1198 return IRQ_HANDLED;
1199}
1200
1201
1202/*
Takashi Iwai675f25d2008-06-10 17:53:20 +02001203 * set up a BDL entry
1204 */
1205static int setup_bdle(struct snd_pcm_substream *substream,
1206 struct azx_dev *azx_dev, u32 **bdlp,
1207 int ofs, int size, int with_ioc)
1208{
Takashi Iwai675f25d2008-06-10 17:53:20 +02001209 u32 *bdl = *bdlp;
1210
1211 while (size > 0) {
1212 dma_addr_t addr;
1213 int chunk;
1214
1215 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
1216 return -EINVAL;
1217
Takashi Iwai77a23f22008-08-21 13:00:13 +02001218 addr = snd_pcm_sgbuf_get_addr(substream, ofs);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001219 /* program the address field of the BDL entry */
1220 bdl[0] = cpu_to_le32((u32)addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001221 bdl[1] = cpu_to_le32(upper_32_bits(addr));
Takashi Iwai675f25d2008-06-10 17:53:20 +02001222 /* program the size field of the BDL entry */
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001223 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001224 bdl[2] = cpu_to_le32(chunk);
1225 /* program the IOC to enable interrupt
1226 * only when the whole fragment is processed
1227 */
1228 size -= chunk;
1229 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
1230 bdl += 4;
1231 azx_dev->frags++;
1232 ofs += chunk;
1233 }
1234 *bdlp = bdl;
1235 return ofs;
1236}
1237
1238/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 * set up BDL entries
1240 */
Takashi Iwai555e2192008-06-10 17:53:34 +02001241static int azx_setup_periods(struct azx *chip,
1242 struct snd_pcm_substream *substream,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001243 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001245 u32 *bdl;
1246 int i, ofs, periods, period_bytes;
Takashi Iwai555e2192008-06-10 17:53:34 +02001247 int pos_adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 /* reset BDL address */
1250 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1251 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1252
Takashi Iwai97b71c92009-03-18 15:09:13 +01001253 period_bytes = azx_dev->period_bytes;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001254 periods = azx_dev->bufsize / period_bytes;
1255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001257 bdl = (u32 *)azx_dev->bdl.area;
1258 ofs = 0;
1259 azx_dev->frags = 0;
Takashi Iwai555e2192008-06-10 17:53:34 +02001260 pos_adj = bdl_pos_adj[chip->dev_index];
1261 if (pos_adj > 0) {
Takashi Iwai675f25d2008-06-10 17:53:20 +02001262 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001263 int pos_align = pos_adj;
Takashi Iwai555e2192008-06-10 17:53:34 +02001264 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001265 if (!pos_adj)
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001266 pos_adj = pos_align;
1267 else
1268 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
1269 pos_align;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001270 pos_adj = frames_to_bytes(runtime, pos_adj);
1271 if (pos_adj >= period_bytes) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001272 snd_printk(KERN_WARNING SFX "Too big adjustment %d\n",
Takashi Iwai555e2192008-06-10 17:53:34 +02001273 bdl_pos_adj[chip->dev_index]);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001274 pos_adj = 0;
1275 } else {
1276 ofs = setup_bdle(substream, azx_dev,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001277 &bdl, ofs, pos_adj,
1278 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001279 if (ofs < 0)
1280 goto error;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001281 }
Takashi Iwai555e2192008-06-10 17:53:34 +02001282 } else
1283 pos_adj = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001284 for (i = 0; i < periods; i++) {
1285 if (i == periods - 1 && pos_adj)
1286 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1287 period_bytes - pos_adj, 0);
1288 else
1289 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001290 period_bytes,
1291 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001292 if (ofs < 0)
1293 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001295 return 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001296
1297 error:
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001298 snd_printk(KERN_ERR SFX "Too many BDL entries: buffer=%d, period=%d\n",
Takashi Iwai675f25d2008-06-10 17:53:20 +02001299 azx_dev->bufsize, period_bytes);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001300 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
Takashi Iwai1dddab42009-03-18 15:15:37 +01001303/* reset stream */
1304static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
1306 unsigned char val;
1307 int timeout;
1308
Takashi Iwai1dddab42009-03-18 15:15:37 +01001309 azx_stream_clear(chip, azx_dev);
1310
Takashi Iwaid01ce992007-07-27 16:52:19 +02001311 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1312 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 udelay(3);
1314 timeout = 300;
1315 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1316 --timeout)
1317 ;
1318 val &= ~SD_CTL_STREAM_RESET;
1319 azx_sd_writeb(azx_dev, SD_CTL, val);
1320 udelay(3);
1321
1322 timeout = 300;
1323 /* waiting for hardware to report that the stream is out of reset */
1324 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1325 --timeout)
1326 ;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001327
1328 /* reset first position - may not be synced with hw at this time */
1329 *azx_dev->posbuf = 0;
Takashi Iwai1dddab42009-03-18 15:15:37 +01001330}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Takashi Iwai1dddab42009-03-18 15:15:37 +01001332/*
1333 * set up the SD for streaming
1334 */
1335static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
1336{
1337 /* make sure the run bit is zero for SD */
1338 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 /* program the stream_tag */
1340 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001341 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1343
1344 /* program the length of samples in cyclic buffer */
1345 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1346
1347 /* program the stream format */
1348 /* this value needs to be the same as the one programmed */
1349 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1350
1351 /* program the stream LVI (last valid index) of the BDL */
1352 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1353
1354 /* program the BDL address */
1355 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001356 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 /* upper BDL address */
Takashi Iwai766979e2008-06-13 20:53:56 +02001358 azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001360 /* enable the position buffer */
David Henningsson4cb36312010-09-30 10:12:50 +02001361 if (chip->position_fix[0] != POS_FIX_LPIB ||
1362 chip->position_fix[1] != POS_FIX_LPIB) {
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001363 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1364 azx_writel(chip, DPLBASE,
1365 (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
1366 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001369 azx_sd_writel(azx_dev, SD_CTL,
1370 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 return 0;
1373}
1374
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001375/*
1376 * Probe the given codec address
1377 */
1378static int probe_codec(struct azx *chip, int addr)
1379{
1380 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
1381 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
1382 unsigned int res;
1383
Wu Fengguanga678cde2009-08-01 18:46:46 +08001384 mutex_lock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001385 chip->probing = 1;
1386 azx_send_cmd(chip->bus, cmd);
Wu Fengguangdeadff12009-08-01 18:45:16 +08001387 res = azx_get_response(chip->bus, addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001388 chip->probing = 0;
Wu Fengguanga678cde2009-08-01 18:46:46 +08001389 mutex_unlock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001390 if (res == -1)
1391 return -EIO;
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001392 snd_printdd(SFX "codec #%d probed OK\n", addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001393 return 0;
1394}
1395
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001396static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1397 struct hda_pcm *cpcm);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001398static void azx_stop_chip(struct azx *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Takashi Iwai8dd78332009-06-02 01:16:07 +02001400static void azx_bus_reset(struct hda_bus *bus)
1401{
1402 struct azx *chip = bus->private_data;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001403
1404 bus->in_reset = 1;
1405 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001406 azx_init_chip(chip, 1);
Alexander Beregalov65f75982009-06-04 13:46:16 +04001407#ifdef CONFIG_PM
Takashi Iwai8dd78332009-06-02 01:16:07 +02001408 if (chip->initialized) {
Alexander Beregalov65f75982009-06-04 13:46:16 +04001409 int i;
1410
Takashi Iwaic8936222010-01-28 17:08:53 +01001411 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai8dd78332009-06-02 01:16:07 +02001412 snd_pcm_suspend_all(chip->pcm[i]);
1413 snd_hda_suspend(chip->bus);
1414 snd_hda_resume(chip->bus);
1415 }
Alexander Beregalov65f75982009-06-04 13:46:16 +04001416#endif
Takashi Iwai8dd78332009-06-02 01:16:07 +02001417 bus->in_reset = 0;
1418}
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420/*
1421 * Codec initialization
1422 */
1423
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001424/* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1425static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
Wei Ni7445dfc2010-03-03 15:05:53 +08001426 [AZX_DRIVER_NVIDIA] = 8,
Kailang Yangf2690022008-05-27 11:44:55 +02001427 [AZX_DRIVER_TERA] = 1,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001428};
1429
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001430static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
1432 struct hda_bus_template bus_temp;
Takashi Iwai34c25352008-10-28 11:38:58 +01001433 int c, codecs, err;
1434 int max_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
1436 memset(&bus_temp, 0, sizeof(bus_temp));
1437 bus_temp.private_data = chip;
1438 bus_temp.modelname = model;
1439 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001440 bus_temp.ops.command = azx_send_cmd;
1441 bus_temp.ops.get_response = azx_get_response;
Takashi Iwai176d5332008-07-30 15:01:44 +02001442 bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001443 bus_temp.ops.bus_reset = azx_bus_reset;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001444#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai11cd41b2008-11-28 07:22:18 +01001445 bus_temp.power_save = &power_save;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001446 bus_temp.ops.pm_notify = azx_power_notify;
1447#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Takashi Iwaid01ce992007-07-27 16:52:19 +02001449 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1450 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 return err;
1452
Takashi Iwai9477c582011-05-25 09:11:37 +02001453 if (chip->driver_caps & AZX_DCAPS_RIRB_DELAY) {
1454 snd_printd(SFX "Enable delay in RIRB handling\n");
Wei Nidc9c8e22008-09-26 13:55:56 +08001455 chip->bus->needs_damn_long_delay = 1;
Takashi Iwai9477c582011-05-25 09:11:37 +02001456 }
Wei Nidc9c8e22008-09-26 13:55:56 +08001457
Takashi Iwai34c25352008-10-28 11:38:58 +01001458 codecs = 0;
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001459 max_slots = azx_max_codecs[chip->driver_type];
1460 if (!max_slots)
Wei Ni7445dfc2010-03-03 15:05:53 +08001461 max_slots = AZX_DEFAULT_CODECS;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001462
1463 /* First try to probe all given codec slots */
1464 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001465 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001466 if (probe_codec(chip, c) < 0) {
1467 /* Some BIOSen give you wrong codec addresses
1468 * that don't exist
1469 */
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001470 snd_printk(KERN_WARNING SFX
1471 "Codec #%d probe error; "
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001472 "disabling it...\n", c);
1473 chip->codec_mask &= ~(1 << c);
1474 /* More badly, accessing to a non-existing
1475 * codec often screws up the controller chip,
Paul Menzel24481582010-02-08 20:37:26 +01001476 * and disturbs the further communications.
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001477 * Thus if an error occurs during probing,
1478 * better to reset the controller chip to
1479 * get back to the sanity state.
1480 */
1481 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001482 azx_init_chip(chip, 1);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001483 }
1484 }
1485 }
1486
Takashi Iwaid507cd62011-04-26 15:25:02 +02001487 /* AMD chipsets often cause the communication stalls upon certain
1488 * sequence like the pin-detection. It seems that forcing the synced
1489 * access works around the stall. Grrr...
1490 */
Takashi Iwai9477c582011-05-25 09:11:37 +02001491 if (chip->driver_caps & AZX_DCAPS_SYNC_WRITE) {
1492 snd_printd(SFX "Enable sync_write for stable communication\n");
Takashi Iwaid507cd62011-04-26 15:25:02 +02001493 chip->bus->sync_write = 1;
1494 chip->bus->allow_bus_reset = 1;
1495 }
1496
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001497 /* Then create codec instances */
Takashi Iwai34c25352008-10-28 11:38:58 +01001498 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001499 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001500 struct hda_codec *codec;
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001501 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (err < 0)
1503 continue;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01001504 codec->beep_mode = chip->beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 codecs++;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001506 }
1507 }
1508 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1510 return -ENXIO;
1511 }
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001512 return 0;
1513}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001515/* configure each codec instance */
1516static int __devinit azx_codec_configure(struct azx *chip)
1517{
1518 struct hda_codec *codec;
1519 list_for_each_entry(codec, &chip->bus->codec_list, list) {
1520 snd_hda_codec_configure(codec);
1521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return 0;
1523}
1524
1525
1526/*
1527 * PCM support
1528 */
1529
1530/* assign a stream for the PCM */
Wu Fengguangef18bed2009-12-25 13:14:27 +08001531static inline struct azx_dev *
1532azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001534 int dev, i, nums;
Wu Fengguangef18bed2009-12-25 13:14:27 +08001535 struct azx_dev *res = NULL;
1536
1537 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001538 dev = chip->playback_index_offset;
1539 nums = chip->playback_streams;
1540 } else {
1541 dev = chip->capture_index_offset;
1542 nums = chip->capture_streams;
1543 }
1544 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001545 if (!chip->azx_dev[dev].opened) {
Wu Fengguangef18bed2009-12-25 13:14:27 +08001546 res = &chip->azx_dev[dev];
1547 if (res->device == substream->pcm->device)
1548 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
Wu Fengguangef18bed2009-12-25 13:14:27 +08001550 if (res) {
1551 res->opened = 1;
1552 res->device = substream->pcm->device;
1553 }
1554 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
1557/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001558static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
1560 azx_dev->opened = 0;
1561}
1562
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001563static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001564 .info = (SNDRV_PCM_INFO_MMAP |
1565 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1567 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001568 /* No full-resume yet implemented */
1569 /* SNDRV_PCM_INFO_RESUME |*/
Takashi Iwai850f0e52008-03-18 17:11:05 +01001570 SNDRV_PCM_INFO_PAUSE |
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001571 SNDRV_PCM_INFO_SYNC_START |
1572 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1574 .rates = SNDRV_PCM_RATE_48000,
1575 .rate_min = 48000,
1576 .rate_max = 48000,
1577 .channels_min = 2,
1578 .channels_max = 2,
1579 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1580 .period_bytes_min = 128,
1581 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1582 .periods_min = 2,
1583 .periods_max = AZX_MAX_FRAG,
1584 .fifo_size = 0,
1585};
1586
1587struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001588 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 struct hda_codec *codec;
1590 struct hda_pcm_stream *hinfo[2];
1591};
1592
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001593static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
1595 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1596 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001597 struct azx *chip = apcm->chip;
1598 struct azx_dev *azx_dev;
1599 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 unsigned long flags;
1601 int err;
1602
Ingo Molnar62932df2006-01-16 16:34:20 +01001603 mutex_lock(&chip->open_mutex);
Wu Fengguangef18bed2009-12-25 13:14:27 +08001604 azx_dev = azx_assign_device(chip, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001606 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return -EBUSY;
1608 }
1609 runtime->hw = azx_pcm_hw;
1610 runtime->hw.channels_min = hinfo->channels_min;
1611 runtime->hw.channels_max = hinfo->channels_max;
1612 runtime->hw.formats = hinfo->formats;
1613 runtime->hw.rates = hinfo->rates;
1614 snd_pcm_limit_hw_rates(runtime);
1615 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001616 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1617 128);
1618 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1619 128);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001620 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001621 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1622 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001624 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001625 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 return err;
1627 }
Takashi Iwai70d321e2009-07-03 23:06:45 +02001628 snd_pcm_limit_hw_rates(runtime);
Takashi Iwaiaba66532009-07-05 11:44:46 +02001629 /* sanity check */
1630 if (snd_BUG_ON(!runtime->hw.channels_min) ||
1631 snd_BUG_ON(!runtime->hw.channels_max) ||
1632 snd_BUG_ON(!runtime->hw.formats) ||
1633 snd_BUG_ON(!runtime->hw.rates)) {
1634 azx_release_device(azx_dev);
1635 hinfo->ops.close(hinfo, apcm->codec, substream);
1636 snd_hda_power_down(apcm->codec);
1637 mutex_unlock(&chip->open_mutex);
1638 return -EINVAL;
1639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 spin_lock_irqsave(&chip->reg_lock, flags);
1641 azx_dev->substream = substream;
1642 azx_dev->running = 0;
1643 spin_unlock_irqrestore(&chip->reg_lock, flags);
1644
1645 runtime->private_data = azx_dev;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001646 snd_pcm_set_sync(substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001647 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return 0;
1649}
1650
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001651static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
1653 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1654 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001655 struct azx *chip = apcm->chip;
1656 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 unsigned long flags;
1658
Ingo Molnar62932df2006-01-16 16:34:20 +01001659 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 spin_lock_irqsave(&chip->reg_lock, flags);
1661 azx_dev->substream = NULL;
1662 azx_dev->running = 0;
1663 spin_unlock_irqrestore(&chip->reg_lock, flags);
1664 azx_release_device(azx_dev);
1665 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001666 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001667 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 return 0;
1669}
1670
Takashi Iwaid01ce992007-07-27 16:52:19 +02001671static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1672 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
Takashi Iwai97b71c92009-03-18 15:09:13 +01001674 struct azx_dev *azx_dev = get_azx_dev(substream);
1675
1676 azx_dev->bufsize = 0;
1677 azx_dev->period_bytes = 0;
1678 azx_dev->format_val = 0;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001679 return snd_pcm_lib_malloc_pages(substream,
1680 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681}
1682
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001683static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
1685 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001686 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1688
1689 /* reset BDL address */
1690 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1691 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1692 azx_sd_writel(azx_dev, SD_CTL, 0);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001693 azx_dev->bufsize = 0;
1694 azx_dev->period_bytes = 0;
1695 azx_dev->format_val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696
Takashi Iwaieb541332010-08-06 13:48:11 +02001697 snd_hda_codec_cleanup(apcm->codec, hinfo, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 return snd_pcm_lib_free_pages(substream);
1700}
1701
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001702static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
1704 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001705 struct azx *chip = apcm->chip;
1706 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001708 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001709 unsigned int bufsize, period_bytes, format_val, stream_tag;
Takashi Iwai97b71c92009-03-18 15:09:13 +01001710 int err;
Stephen Warren7c9359762011-06-01 11:14:17 -06001711 struct hda_spdif_out *spdif =
1712 snd_hda_spdif_out_of_nid(apcm->codec, hinfo->nid);
1713 unsigned short ctls = spdif ? spdif->ctls : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001715 azx_stream_reset(chip, azx_dev);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001716 format_val = snd_hda_calc_stream_format(runtime->rate,
1717 runtime->channels,
1718 runtime->format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03001719 hinfo->maxbps,
Stephen Warren7c9359762011-06-01 11:14:17 -06001720 ctls);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001721 if (!format_val) {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001722 snd_printk(KERN_ERR SFX
1723 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 runtime->rate, runtime->channels, runtime->format);
1725 return -EINVAL;
1726 }
1727
Takashi Iwai97b71c92009-03-18 15:09:13 +01001728 bufsize = snd_pcm_lib_buffer_bytes(substream);
1729 period_bytes = snd_pcm_lib_period_bytes(substream);
1730
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001731 snd_printdd(SFX "azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
Takashi Iwai97b71c92009-03-18 15:09:13 +01001732 bufsize, format_val);
1733
1734 if (bufsize != azx_dev->bufsize ||
1735 period_bytes != azx_dev->period_bytes ||
1736 format_val != azx_dev->format_val) {
1737 azx_dev->bufsize = bufsize;
1738 azx_dev->period_bytes = period_bytes;
1739 azx_dev->format_val = format_val;
1740 err = azx_setup_periods(chip, substream, azx_dev);
1741 if (err < 0)
1742 return err;
1743 }
1744
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001745 /* wallclk has 24Mhz clock source */
1746 azx_dev->period_wallclk = (((runtime->period_size * 24000) /
1747 runtime->rate) * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 azx_setup_controller(chip, azx_dev);
1749 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1750 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1751 else
1752 azx_dev->fifo_size = 0;
1753
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001754 stream_tag = azx_dev->stream_tag;
1755 /* CA-IBG chips need the playback stream starting from 1 */
Takashi Iwai9477c582011-05-25 09:11:37 +02001756 if ((chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND) &&
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001757 stream_tag > chip->capture_streams)
1758 stream_tag -= chip->capture_streams;
1759 return snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag,
Takashi Iwaieb541332010-08-06 13:48:11 +02001760 azx_dev->format_val, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001763static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
1765 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001766 struct azx *chip = apcm->chip;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001767 struct azx_dev *azx_dev;
1768 struct snd_pcm_substream *s;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001769 int rstart = 0, start, nsync = 0, sbits = 0;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001770 int nwait, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 switch (cmd) {
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001773 case SNDRV_PCM_TRIGGER_START:
1774 rstart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1776 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001777 start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 break;
1779 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001780 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001782 start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 break;
1784 default:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001785 return -EINVAL;
1786 }
1787
1788 snd_pcm_group_for_each_entry(s, substream) {
1789 if (s->pcm->card != substream->pcm->card)
1790 continue;
1791 azx_dev = get_azx_dev(s);
1792 sbits |= 1 << azx_dev->index;
1793 nsync++;
1794 snd_pcm_trigger_done(s, substream);
1795 }
1796
1797 spin_lock(&chip->reg_lock);
1798 if (nsync > 1) {
1799 /* first, set SYNC bits of corresponding streams */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02001800 if (chip->driver_caps & AZX_DCAPS_OLD_SSYNC)
1801 azx_writel(chip, OLD_SSYNC,
1802 azx_readl(chip, OLD_SSYNC) | sbits);
1803 else
1804 azx_writel(chip, SSYNC, azx_readl(chip, SSYNC) | sbits);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001805 }
1806 snd_pcm_group_for_each_entry(s, substream) {
1807 if (s->pcm->card != substream->pcm->card)
1808 continue;
1809 azx_dev = get_azx_dev(s);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001810 if (start) {
1811 azx_dev->start_wallclk = azx_readl(chip, WALLCLK);
1812 if (!rstart)
1813 azx_dev->start_wallclk -=
1814 azx_dev->period_wallclk;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001815 azx_stream_start(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001816 } else {
Takashi Iwai850f0e52008-03-18 17:11:05 +01001817 azx_stream_stop(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001818 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001819 azx_dev->running = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 }
1821 spin_unlock(&chip->reg_lock);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001822 if (start) {
1823 if (nsync == 1)
1824 return 0;
1825 /* wait until all FIFOs get ready */
1826 for (timeout = 5000; timeout; timeout--) {
1827 nwait = 0;
1828 snd_pcm_group_for_each_entry(s, substream) {
1829 if (s->pcm->card != substream->pcm->card)
1830 continue;
1831 azx_dev = get_azx_dev(s);
1832 if (!(azx_sd_readb(azx_dev, SD_STS) &
1833 SD_STS_FIFO_READY))
1834 nwait++;
1835 }
1836 if (!nwait)
1837 break;
1838 cpu_relax();
1839 }
1840 } else {
1841 /* wait until all RUN bits are cleared */
1842 for (timeout = 5000; timeout; timeout--) {
1843 nwait = 0;
1844 snd_pcm_group_for_each_entry(s, substream) {
1845 if (s->pcm->card != substream->pcm->card)
1846 continue;
1847 azx_dev = get_azx_dev(s);
1848 if (azx_sd_readb(azx_dev, SD_CTL) &
1849 SD_CTL_DMA_START)
1850 nwait++;
1851 }
1852 if (!nwait)
1853 break;
1854 cpu_relax();
1855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001857 if (nsync > 1) {
1858 spin_lock(&chip->reg_lock);
1859 /* reset SYNC bits */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02001860 if (chip->driver_caps & AZX_DCAPS_OLD_SSYNC)
1861 azx_writel(chip, OLD_SSYNC,
1862 azx_readl(chip, OLD_SSYNC) & ~sbits);
1863 else
1864 azx_writel(chip, SSYNC, azx_readl(chip, SSYNC) & ~sbits);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001865 spin_unlock(&chip->reg_lock);
1866 }
1867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
Joseph Chan0e153472008-08-26 14:38:03 +02001870/* get the current DMA position with correction on VIA chips */
1871static unsigned int azx_via_get_position(struct azx *chip,
1872 struct azx_dev *azx_dev)
1873{
1874 unsigned int link_pos, mini_pos, bound_pos;
1875 unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
1876 unsigned int fifo_size;
1877
1878 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
Takashi Iwaib4a655e2011-06-07 12:26:56 +02001879 if (azx_dev->substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Joseph Chan0e153472008-08-26 14:38:03 +02001880 /* Playback, no problem using link position */
1881 return link_pos;
1882 }
1883
1884 /* Capture */
1885 /* For new chipset,
1886 * use mod to get the DMA position just like old chipset
1887 */
1888 mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
1889 mod_dma_pos %= azx_dev->period_bytes;
1890
1891 /* azx_dev->fifo_size can't get FIFO size of in stream.
1892 * Get from base address + offset.
1893 */
1894 fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
1895
1896 if (azx_dev->insufficient) {
1897 /* Link position never gather than FIFO size */
1898 if (link_pos <= fifo_size)
1899 return 0;
1900
1901 azx_dev->insufficient = 0;
1902 }
1903
1904 if (link_pos <= fifo_size)
1905 mini_pos = azx_dev->bufsize + link_pos - fifo_size;
1906 else
1907 mini_pos = link_pos - fifo_size;
1908
1909 /* Find nearest previous boudary */
1910 mod_mini_pos = mini_pos % azx_dev->period_bytes;
1911 mod_link_pos = link_pos % azx_dev->period_bytes;
1912 if (mod_link_pos >= fifo_size)
1913 bound_pos = link_pos - mod_link_pos;
1914 else if (mod_dma_pos >= mod_mini_pos)
1915 bound_pos = mini_pos - mod_mini_pos;
1916 else {
1917 bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
1918 if (bound_pos >= azx_dev->bufsize)
1919 bound_pos = 0;
1920 }
1921
1922 /* Calculate real DMA position we want */
1923 return bound_pos + mod_dma_pos;
1924}
1925
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001926static unsigned int azx_get_position(struct azx *chip,
1927 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 unsigned int pos;
David Henningsson4cb36312010-09-30 10:12:50 +02001930 int stream = azx_dev->substream->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
David Henningsson4cb36312010-09-30 10:12:50 +02001932 switch (chip->position_fix[stream]) {
1933 case POS_FIX_LPIB:
1934 /* read LPIB */
1935 pos = azx_sd_readl(azx_dev, SD_LPIB);
1936 break;
1937 case POS_FIX_VIACOMBO:
Joseph Chan0e153472008-08-26 14:38:03 +02001938 pos = azx_via_get_position(chip, azx_dev);
David Henningsson4cb36312010-09-30 10:12:50 +02001939 break;
1940 default:
1941 /* use the position buffer */
1942 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwaia8103642011-06-07 12:23:23 +02001943 if (chip->position_fix[stream] == POS_FIX_AUTO) {
1944 if (!pos || pos == (u32)-1) {
1945 printk(KERN_WARNING
1946 "hda-intel: Invalid position buffer, "
1947 "using LPIB read method instead.\n");
1948 chip->position_fix[stream] = POS_FIX_LPIB;
1949 pos = azx_sd_readl(azx_dev, SD_LPIB);
1950 } else
1951 chip->position_fix[stream] = POS_FIX_POSBUF;
1952 }
1953 break;
Takashi Iwaic74db862005-05-12 14:26:27 +02001954 }
David Henningsson4cb36312010-09-30 10:12:50 +02001955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (pos >= azx_dev->bufsize)
1957 pos = 0;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001958 return pos;
1959}
1960
1961static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
1962{
1963 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1964 struct azx *chip = apcm->chip;
1965 struct azx_dev *azx_dev = get_azx_dev(substream);
1966 return bytes_to_frames(substream->runtime,
1967 azx_get_position(chip, azx_dev));
1968}
1969
1970/*
1971 * Check whether the current DMA position is acceptable for updating
1972 * periods. Returns non-zero if it's OK.
1973 *
1974 * Many HD-audio controllers appear pretty inaccurate about
1975 * the update-IRQ timing. The IRQ is issued before actually the
1976 * data is processed. So, we need to process it afterwords in a
1977 * workqueue.
1978 */
1979static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
1980{
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001981 u32 wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001982 unsigned int pos;
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001983 int stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001984
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001985 wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk;
1986 if (wallclk < (azx_dev->period_wallclk * 2) / 3)
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001987 return -1; /* bogus (too early) interrupt */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001988
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001989 stream = azx_dev->substream->stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001990 pos = azx_get_position(chip, azx_dev);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001991
Takashi Iwaid6d8bf52010-02-12 18:17:06 +01001992 if (WARN_ONCE(!azx_dev->period_bytes,
1993 "hda-intel: zero azx_dev->period_bytes"))
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001994 return -1; /* this shouldn't happen! */
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001995 if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001996 pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
1997 /* NG - it's below the first next period boundary */
1998 return bdl_pos_adj[chip->dev_index] ? 0 : -1;
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001999 azx_dev->start_wallclk += wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002000 return 1; /* OK, it's fine */
2001}
2002
2003/*
2004 * The work for pending PCM period updates.
2005 */
2006static void azx_irq_pending_work(struct work_struct *work)
2007{
2008 struct azx *chip = container_of(work, struct azx, irq_pending_work);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002009 int i, pending, ok;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002010
Takashi Iwaia6a950a2008-06-10 17:53:35 +02002011 if (!chip->irq_pending_warned) {
2012 printk(KERN_WARNING
2013 "hda-intel: IRQ timing workaround is activated "
2014 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
2015 chip->card->number);
2016 chip->irq_pending_warned = 1;
2017 }
2018
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002019 for (;;) {
2020 pending = 0;
2021 spin_lock_irq(&chip->reg_lock);
2022 for (i = 0; i < chip->num_streams; i++) {
2023 struct azx_dev *azx_dev = &chip->azx_dev[i];
2024 if (!azx_dev->irq_pending ||
2025 !azx_dev->substream ||
2026 !azx_dev->running)
2027 continue;
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002028 ok = azx_position_ok(chip, azx_dev);
2029 if (ok > 0) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002030 azx_dev->irq_pending = 0;
2031 spin_unlock(&chip->reg_lock);
2032 snd_pcm_period_elapsed(azx_dev->substream);
2033 spin_lock(&chip->reg_lock);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002034 } else if (ok < 0) {
2035 pending = 0; /* too early */
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002036 } else
2037 pending++;
2038 }
2039 spin_unlock_irq(&chip->reg_lock);
2040 if (!pending)
2041 return;
Takashi Iwai08af4952010-08-03 14:39:04 +02002042 msleep(1);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002043 }
2044}
2045
2046/* clear irq_pending flags and assure no on-going workq */
2047static void azx_clear_irq_pending(struct azx *chip)
2048{
2049 int i;
2050
2051 spin_lock_irq(&chip->reg_lock);
2052 for (i = 0; i < chip->num_streams; i++)
2053 chip->azx_dev[i].irq_pending = 0;
2054 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
2056
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002057static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 .open = azx_pcm_open,
2059 .close = azx_pcm_close,
2060 .ioctl = snd_pcm_lib_ioctl,
2061 .hw_params = azx_pcm_hw_params,
2062 .hw_free = azx_pcm_hw_free,
2063 .prepare = azx_pcm_prepare,
2064 .trigger = azx_pcm_trigger,
2065 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002066 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067};
2068
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002069static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Takashi Iwai176d5332008-07-30 15:01:44 +02002071 struct azx_pcm *apcm = pcm->private_data;
2072 if (apcm) {
2073 apcm->chip->pcm[pcm->device] = NULL;
2074 kfree(apcm);
2075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
Takashi Iwai176d5332008-07-30 15:01:44 +02002078static int
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002079azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
2080 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002082 struct azx *chip = bus->private_data;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002083 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 struct azx_pcm *apcm;
Takashi Iwai176d5332008-07-30 15:01:44 +02002085 int pcm_dev = cpcm->device;
2086 int s, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087
Takashi Iwaic8936222010-01-28 17:08:53 +01002088 if (pcm_dev >= HDA_MAX_PCMS) {
Takashi Iwai176d5332008-07-30 15:01:44 +02002089 snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
2090 pcm_dev);
Takashi Iwaida3cec32008-08-08 17:12:14 +02002091 return -EINVAL;
Takashi Iwai176d5332008-07-30 15:01:44 +02002092 }
2093 if (chip->pcm[pcm_dev]) {
2094 snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
2095 return -EBUSY;
2096 }
2097 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
2098 cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
2099 cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 &pcm);
2101 if (err < 0)
2102 return err;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002103 strlcpy(pcm->name, cpcm->name, sizeof(pcm->name));
Takashi Iwai176d5332008-07-30 15:01:44 +02002104 apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 if (apcm == NULL)
2106 return -ENOMEM;
2107 apcm->chip = chip;
2108 apcm->codec = codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 pcm->private_data = apcm;
2110 pcm->private_free = azx_pcm_free;
Takashi Iwai176d5332008-07-30 15:01:44 +02002111 if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
2112 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
2113 chip->pcm[pcm_dev] = pcm;
2114 cpcm->pcm = pcm;
2115 for (s = 0; s < 2; s++) {
2116 apcm->hinfo[s] = &cpcm->stream[s];
2117 if (cpcm->stream[s].substreams)
2118 snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
2119 }
2120 /* buffer pre-allocation */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002121 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 snd_dma_pci_data(chip->pci),
Takashi Iwaifc4abee2008-07-30 15:13:34 +02002123 1024 * 64, 32 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return 0;
2125}
2126
2127/*
2128 * mixer creation - all stuff is implemented in hda module
2129 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002130static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
2132 return snd_hda_build_controls(chip->bus);
2133}
2134
2135
2136/*
2137 * initialize SD streams
2138 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002139static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
2141 int i;
2142
2143 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02002144 * assign the starting bdl address to each stream (device)
2145 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002147 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002148 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02002149 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
2151 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
2152 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
2153 azx_dev->sd_int_sta_mask = 1 << i;
2154 /* stream tag: must be non-zero and unique */
2155 azx_dev->index = i;
2156 azx_dev->stream_tag = i + 1;
2157 }
2158
2159 return 0;
2160}
2161
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002162static int azx_acquire_irq(struct azx *chip, int do_disconnect)
2163{
Takashi Iwai437a5a42006-11-21 12:14:23 +01002164 if (request_irq(chip->pci->irq, azx_interrupt,
2165 chip->msi ? 0 : IRQF_SHARED,
Maxim Levitsky94928372010-02-04 22:26:37 +02002166 "hda_intel", chip)) {
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002167 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
2168 "disabling device\n", chip->pci->irq);
2169 if (do_disconnect)
2170 snd_card_disconnect(chip->card);
2171 return -1;
2172 }
2173 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01002174 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002175 return 0;
2176}
2177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
Takashi Iwaicb53c622007-08-10 17:21:45 +02002179static void azx_stop_chip(struct azx *chip)
2180{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002181 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002182 return;
2183
2184 /* disable interrupts */
2185 azx_int_disable(chip);
2186 azx_int_clear(chip);
2187
2188 /* disable CORB/RIRB */
2189 azx_free_cmd_io(chip);
2190
2191 /* disable position buffer */
2192 azx_writel(chip, DPLBASE, 0);
2193 azx_writel(chip, DPUBASE, 0);
2194
2195 chip->initialized = 0;
2196}
2197
2198#ifdef CONFIG_SND_HDA_POWER_SAVE
2199/* power-up/down the controller */
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002200static void azx_power_notify(struct hda_bus *bus)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002201{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002202 struct azx *chip = bus->private_data;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002203 struct hda_codec *c;
2204 int power_on = 0;
2205
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002206 list_for_each_entry(c, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002207 if (c->power_on) {
2208 power_on = 1;
2209 break;
2210 }
2211 }
2212 if (power_on)
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002213 azx_init_chip(chip, 1);
Wu Fengguang0287d972009-12-11 20:15:11 +08002214 else if (chip->running && power_save_controller &&
2215 !bus->power_keep_link_on)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002216 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002217}
Takashi Iwai5c0b9be2008-12-11 11:47:17 +01002218#endif /* CONFIG_SND_HDA_POWER_SAVE */
2219
2220#ifdef CONFIG_PM
2221/*
2222 * power management
2223 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002224
2225static int snd_hda_codecs_inuse(struct hda_bus *bus)
2226{
2227 struct hda_codec *codec;
2228
2229 list_for_each_entry(codec, &bus->codec_list, list) {
2230 if (snd_hda_codec_needs_resume(codec))
2231 return 1;
2232 }
2233 return 0;
2234}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002235
Takashi Iwai421a1252005-11-17 16:11:09 +01002236static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237{
Takashi Iwai421a1252005-11-17 16:11:09 +01002238 struct snd_card *card = pci_get_drvdata(pci);
2239 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 int i;
2241
Takashi Iwai421a1252005-11-17 16:11:09 +01002242 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002243 azx_clear_irq_pending(chip);
Takashi Iwaic8936222010-01-28 17:08:53 +01002244 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01002245 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002246 if (chip->initialized)
Takashi Iwai8dd78332009-06-02 01:16:07 +02002247 snd_hda_suspend(chip->bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002248 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002249 if (chip->irq >= 0) {
Takashi Iwai43001c92006-09-08 12:30:03 +02002250 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002251 chip->irq = -1;
2252 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002253 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02002254 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01002255 pci_disable_device(pci);
2256 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002257 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 return 0;
2259}
2260
Takashi Iwai421a1252005-11-17 16:11:09 +01002261static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
Takashi Iwai421a1252005-11-17 16:11:09 +01002263 struct snd_card *card = pci_get_drvdata(pci);
2264 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Takashi Iwaid14a7e02009-02-16 10:13:03 +01002266 pci_set_power_state(pci, PCI_D0);
2267 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002268 if (pci_enable_device(pci) < 0) {
2269 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
2270 "disabling device\n");
2271 snd_card_disconnect(card);
2272 return -EIO;
2273 }
2274 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002275 if (chip->msi)
2276 if (pci_enable_msi(pci) < 0)
2277 chip->msi = 0;
2278 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02002279 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002280 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002281
2282 if (snd_hda_codecs_inuse(chip->bus))
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002283 azx_init_chip(chip, 1);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002284
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01002286 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 return 0;
2288}
2289#endif /* CONFIG_PM */
2290
2291
2292/*
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002293 * reboot notifier for hang-up problem at power-down
2294 */
2295static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
2296{
2297 struct azx *chip = container_of(nb, struct azx, reboot_notifier);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01002298 snd_hda_bus_reboot_notify(chip->bus);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002299 azx_stop_chip(chip);
2300 return NOTIFY_OK;
2301}
2302
2303static void azx_notifier_register(struct azx *chip)
2304{
2305 chip->reboot_notifier.notifier_call = azx_halt;
2306 register_reboot_notifier(&chip->reboot_notifier);
2307}
2308
2309static void azx_notifier_unregister(struct azx *chip)
2310{
2311 if (chip->reboot_notifier.notifier_call)
2312 unregister_reboot_notifier(&chip->reboot_notifier);
2313}
2314
2315/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 * destructor
2317 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002318static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002320 int i;
2321
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002322 azx_notifier_unregister(chip);
2323
Takashi Iwaice43fba2005-05-30 20:33:44 +02002324 if (chip->initialized) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002325 azx_clear_irq_pending(chip);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002326 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002328 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
2330
Jeff Garzikf000fd82008-04-22 13:50:34 +02002331 if (chip->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 free_irq(chip->irq, (void*)chip);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002333 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02002334 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02002335 if (chip->remap_addr)
2336 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002338 if (chip->azx_dev) {
2339 for (i = 0; i < chip->num_streams; i++)
2340 if (chip->azx_dev[i].bdl.area)
2341 snd_dma_free_pages(&chip->azx_dev[i].bdl);
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 if (chip->rb.area)
2344 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 if (chip->posbuf.area)
2346 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 pci_release_regions(chip->pci);
2348 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002349 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 kfree(chip);
2351
2352 return 0;
2353}
2354
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002355static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
2357 return azx_free(device->device_data);
2358}
2359
2360/*
Takashi Iwai3372a152007-02-01 15:46:50 +01002361 * white/black-listing for position_fix
2362 */
Ralf Baechle623ec042007-03-13 15:29:47 +01002363static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Daniel T Chen7a68be92010-05-22 12:05:41 -04002364 SND_PCI_QUIRK(0x1025, 0x009f, "Acer Aspire 5110", POS_FIX_LPIB),
Daniel T Chendd5a0892010-12-05 08:43:14 -05002365 SND_PCI_QUIRK(0x1025, 0x026f, "Acer Aspire 5538", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002366 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
2367 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
Daniel T Chen9919c762010-03-03 18:24:26 -05002368 SND_PCI_QUIRK(0x1028, 0x01f6, "Dell Latitude 131L", POS_FIX_LPIB),
Daniel T Chene03fa052010-12-28 17:20:02 -05002369 SND_PCI_QUIRK(0x1028, 0x0470, "Dell Inspiron 1120", POS_FIX_LPIB),
Takashi Iwai2f703e72009-12-01 14:17:37 +01002370 SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002371 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
Daniel T Chendd37f8e2010-05-30 01:17:03 -04002372 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB),
Daniel T Chen9f75c1b2010-05-30 13:08:41 -04002373 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB),
David Henningssonb540afc2011-02-14 20:27:44 +01002374 SND_PCI_QUIRK(0x1043, 0x8410, "ASUS", POS_FIX_LPIB),
Daniel T Chene96d3122010-05-27 18:32:18 -04002375 SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB),
Daniel T Chen4e0938d2010-05-22 13:12:22 -04002376 SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB),
2377 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba A100-259", POS_FIX_LPIB),
Daniel T Chen61bb42c2010-05-29 11:04:11 -04002378 SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB),
Daniel T Chen9ec8dda2010-03-28 02:34:40 -04002379 SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB),
Takashi Iwai45d4ebf2009-11-30 11:58:30 +01002380 SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB),
Daniel T Chen0321b692010-03-05 09:04:49 -05002381 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar Microtech", POS_FIX_LPIB),
Takashi Iwai8815cd02010-04-15 09:02:41 +02002382 SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB),
Daniel T Chenb90c0762010-05-30 19:31:41 -04002383 SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB),
Daniel T Chen0e0280d2010-04-21 19:55:43 -04002384 SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB),
Daniel T Chen572c0e32010-03-14 23:44:03 -04002385 SND_PCI_QUIRK(0x8086, 0xd601, "eMachines T5212", POS_FIX_LPIB),
Takashi Iwai3372a152007-02-01 15:46:50 +01002386 {}
2387};
2388
2389static int __devinit check_position_fix(struct azx *chip, int fix)
2390{
2391 const struct snd_pci_quirk *q;
2392
Takashi Iwaic673ba12009-03-17 07:49:14 +01002393 switch (fix) {
2394 case POS_FIX_LPIB:
2395 case POS_FIX_POSBUF:
David Henningsson4cb36312010-09-30 10:12:50 +02002396 case POS_FIX_VIACOMBO:
Takashi Iwaic673ba12009-03-17 07:49:14 +01002397 return fix;
2398 }
2399
Takashi Iwaic673ba12009-03-17 07:49:14 +01002400 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
2401 if (q) {
2402 printk(KERN_INFO
2403 "hda_intel: position_fix set to %d "
2404 "for device %04x:%04x\n",
2405 q->value, q->subvendor, q->subdevice);
2406 return q->value;
Takashi Iwai3372a152007-02-01 15:46:50 +01002407 }
David Henningssonbdd9ef22010-10-04 12:02:14 +02002408
2409 /* Check VIA/ATI HD Audio Controller exist */
Takashi Iwai9477c582011-05-25 09:11:37 +02002410 if (chip->driver_caps & AZX_DCAPS_POSFIX_VIA) {
2411 snd_printd(SFX "Using VIACOMBO position fix\n");
David Henningssonbdd9ef22010-10-04 12:02:14 +02002412 return POS_FIX_VIACOMBO;
2413 }
Takashi Iwai9477c582011-05-25 09:11:37 +02002414 if (chip->driver_caps & AZX_DCAPS_POSFIX_LPIB) {
2415 snd_printd(SFX "Using LPIB position fix\n");
2416 return POS_FIX_LPIB;
2417 }
Takashi Iwaic673ba12009-03-17 07:49:14 +01002418 return POS_FIX_AUTO;
Takashi Iwai3372a152007-02-01 15:46:50 +01002419}
2420
2421/*
Takashi Iwai669ba272007-08-17 09:17:36 +02002422 * black-lists for probe_mask
2423 */
2424static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
2425 /* Thinkpad often breaks the controller communication when accessing
2426 * to the non-working (or non-existing) modem codec slot.
2427 */
2428 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2429 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2430 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
Takashi Iwai0edb9452008-11-07 14:53:09 +01002431 /* broken BIOS */
2432 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
Takashi Iwaief1681d2008-11-24 17:29:28 +01002433 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2434 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002435 /* forced codec slots */
Ozan Çağlayan93574842009-05-23 15:00:04 +03002436 SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002437 SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
Takashi Iwai669ba272007-08-17 09:17:36 +02002438 {}
2439};
2440
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002441#define AZX_FORCE_CODEC_MASK 0x100
2442
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002443static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02002444{
2445 const struct snd_pci_quirk *q;
2446
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002447 chip->codec_probe_mask = probe_mask[dev];
2448 if (chip->codec_probe_mask == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002449 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
2450 if (q) {
2451 printk(KERN_INFO
2452 "hda_intel: probe_mask set to 0x%x "
2453 "for device %04x:%04x\n",
2454 q->value, q->subvendor, q->subdevice);
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002455 chip->codec_probe_mask = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02002456 }
2457 }
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002458
2459 /* check forced option */
2460 if (chip->codec_probe_mask != -1 &&
2461 (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) {
2462 chip->codec_mask = chip->codec_probe_mask & 0xff;
2463 printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n",
2464 chip->codec_mask);
2465 }
Takashi Iwai669ba272007-08-17 09:17:36 +02002466}
2467
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002468/*
Takashi Iwai716238552009-09-28 13:14:04 +02002469 * white/black-list for enable_msi
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002470 */
Takashi Iwai716238552009-09-28 13:14:04 +02002471static struct snd_pci_quirk msi_black_list[] __devinitdata = {
Takashi Iwai9dc83982009-12-22 08:15:01 +01002472 SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai0a27fcf2010-02-15 17:05:28 +01002473 SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
Ralf Gerbigecd21622010-03-09 18:25:47 +01002474 SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
Michele Ballabio4193d132010-03-06 21:06:46 +01002475 SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai38155952010-04-04 12:14:03 +02002476 SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002477 {}
2478};
2479
2480static void __devinit check_msi(struct azx *chip)
2481{
2482 const struct snd_pci_quirk *q;
2483
Takashi Iwai716238552009-09-28 13:14:04 +02002484 if (enable_msi >= 0) {
2485 chip->msi = !!enable_msi;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002486 return;
Takashi Iwai716238552009-09-28 13:14:04 +02002487 }
2488 chip->msi = 1; /* enable MSI as default */
2489 q = snd_pci_quirk_lookup(chip->pci, msi_black_list);
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002490 if (q) {
2491 printk(KERN_INFO
2492 "hda_intel: msi for device %04x:%04x set to %d\n",
2493 q->subvendor, q->subdevice, q->value);
2494 chip->msi = q->value;
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002495 return;
2496 }
2497
2498 /* NVidia chipsets seem to cause troubles with MSI */
Takashi Iwai9477c582011-05-25 09:11:37 +02002499 if (chip->driver_caps & AZX_DCAPS_NO_MSI) {
2500 printk(KERN_INFO "hda_intel: Disabling MSI\n");
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002501 chip->msi = 0;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002502 }
2503}
2504
Takashi Iwai669ba272007-08-17 09:17:36 +02002505
2506/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 * constructor
2508 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002509static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai9477c582011-05-25 09:11:37 +02002510 int dev, unsigned int driver_caps,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002511 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002513 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002514 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01002515 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002516 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 .dev_free = azx_dev_free,
2518 };
2519
2520 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01002521
Pavel Machek927fc862006-08-31 17:03:43 +02002522 err = pci_enable_device(pci);
2523 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return err;
2525
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002526 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002527 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
2529 pci_disable_device(pci);
2530 return -ENOMEM;
2531 }
2532
2533 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002534 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 chip->card = card;
2536 chip->pci = pci;
2537 chip->irq = -1;
Takashi Iwai9477c582011-05-25 09:11:37 +02002538 chip->driver_caps = driver_caps;
2539 chip->driver_type = driver_caps & 0xff;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002540 check_msi(chip);
Takashi Iwai555e2192008-06-10 17:53:34 +02002541 chip->dev_index = dev;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002542 INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002544 chip->position_fix[0] = chip->position_fix[1] =
2545 check_position_fix(chip, position_fix[dev]);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002546 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01002547
Takashi Iwai27346162006-01-12 18:28:44 +01002548 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02002549
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002550 if (bdl_pos_adj[dev] < 0) {
2551 switch (chip->driver_type) {
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002552 case AZX_DRIVER_ICH:
Seth Heasley32679f92010-02-22 17:31:09 -08002553 case AZX_DRIVER_PCH:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002554 bdl_pos_adj[dev] = 1;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002555 break;
2556 default:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002557 bdl_pos_adj[dev] = 32;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002558 break;
2559 }
2560 }
2561
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002562#if BITS_PER_LONG != 64
2563 /* Fix up base address on ULI M5461 */
2564 if (chip->driver_type == AZX_DRIVER_ULI) {
2565 u16 tmp3;
2566 pci_read_config_word(pci, 0x40, &tmp3);
2567 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
2568 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
2569 }
2570#endif
2571
Pavel Machek927fc862006-08-31 17:03:43 +02002572 err = pci_request_regions(pci, "ICH HD audio");
2573 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 kfree(chip);
2575 pci_disable_device(pci);
2576 return err;
2577 }
2578
Pavel Machek927fc862006-08-31 17:03:43 +02002579 chip->addr = pci_resource_start(pci, 0);
Arjan van de Ven2f5ad542008-09-28 16:20:09 -07002580 chip->remap_addr = pci_ioremap_bar(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 if (chip->remap_addr == NULL) {
2582 snd_printk(KERN_ERR SFX "ioremap error\n");
2583 err = -ENXIO;
2584 goto errout;
2585 }
2586
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002587 if (chip->msi)
2588 if (pci_enable_msi(pci) < 0)
2589 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02002590
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002591 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 err = -EBUSY;
2593 goto errout;
2594 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
2596 pci_set_master(pci);
2597 synchronize_irq(chip->irq);
2598
Tobin Davisbcd72002008-01-15 11:23:55 +01002599 gcap = azx_readw(chip, GCAP);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002600 snd_printdd(SFX "chipset global capabilities = 0x%x\n", gcap);
Tobin Davisbcd72002008-01-15 11:23:55 +01002601
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002602 /* disable SB600 64bit support for safety */
Takashi Iwai9477c582011-05-25 09:11:37 +02002603 if (chip->pci->vendor == PCI_VENDOR_ID_ATI) {
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002604 struct pci_dev *p_smbus;
2605 p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
2606 PCI_DEVICE_ID_ATI_SBX00_SMBUS,
2607 NULL);
2608 if (p_smbus) {
2609 if (p_smbus->revision < 0x30)
2610 gcap &= ~ICH6_GCAP_64OK;
2611 pci_dev_put(p_smbus);
2612 }
2613 }
Takashi Iwai09240cf2009-03-17 07:47:18 +01002614
Takashi Iwai9477c582011-05-25 09:11:37 +02002615 /* disable 64bit DMA address on some devices */
2616 if (chip->driver_caps & AZX_DCAPS_NO_64BIT) {
2617 snd_printd(SFX "Disabling 64bit DMA\n");
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002618 gcap &= ~ICH6_GCAP_64OK;
Takashi Iwai9477c582011-05-25 09:11:37 +02002619 }
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002620
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002621 /* allow 64bit DMA address if supported by H/W */
Takashi Iwaib21fadb2009-05-28 12:26:15 +02002622 if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
Yang Hongyange9304382009-04-13 14:40:14 -07002623 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002624 else {
Yang Hongyange9304382009-04-13 14:40:14 -07002625 pci_set_dma_mask(pci, DMA_BIT_MASK(32));
2626 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002627 }
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002628
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002629 /* read number of streams from GCAP register instead of using
2630 * hardcoded value
2631 */
2632 chip->capture_streams = (gcap >> 8) & 0x0f;
2633 chip->playback_streams = (gcap >> 12) & 0x0f;
2634 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01002635 /* gcap didn't give any info, switching to old method */
2636
2637 switch (chip->driver_type) {
2638 case AZX_DRIVER_ULI:
2639 chip->playback_streams = ULI_NUM_PLAYBACK;
2640 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002641 break;
2642 case AZX_DRIVER_ATIHDMI:
2643 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
2644 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002645 break;
Yang, Libinc4da29c2008-11-13 11:07:07 +01002646 case AZX_DRIVER_GENERIC:
Tobin Davisbcd72002008-01-15 11:23:55 +01002647 default:
2648 chip->playback_streams = ICH6_NUM_PLAYBACK;
2649 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002650 break;
2651 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002652 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002653 chip->capture_index_offset = 0;
2654 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002655 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002656 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
2657 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002658 if (!chip->azx_dev) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002659 snd_printk(KERN_ERR SFX "cannot malloc azx_dev\n");
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002660 goto errout;
2661 }
2662
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002663 for (i = 0; i < chip->num_streams; i++) {
2664 /* allocate memory for the BDL for each stream */
2665 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2666 snd_dma_pci_data(chip->pci),
2667 BDL_SIZE, &chip->azx_dev[i].bdl);
2668 if (err < 0) {
2669 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
2670 goto errout;
2671 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002673 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002674 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2675 snd_dma_pci_data(chip->pci),
2676 chip->num_streams * 8, &chip->posbuf);
2677 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002678 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
2679 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 /* allocate CORB/RIRB */
Takashi Iwai81740862009-05-26 15:22:00 +02002682 err = azx_alloc_cmd_io(chip);
2683 if (err < 0)
2684 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686 /* initialize streams */
2687 azx_init_stream(chip);
2688
2689 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002690 azx_init_pci(chip);
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002691 azx_init_chip(chip, (probe_only[dev] & 2) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
2693 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02002694 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 snd_printk(KERN_ERR SFX "no codecs found!\n");
2696 err = -ENODEV;
2697 goto errout;
2698 }
2699
Takashi Iwaid01ce992007-07-27 16:52:19 +02002700 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
2701 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
2703 goto errout;
2704 }
2705
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002706 strcpy(card->driver, "HDA-Intel");
Takashi Iwai18cb7102009-04-16 10:22:24 +02002707 strlcpy(card->shortname, driver_short_names[chip->driver_type],
2708 sizeof(card->shortname));
2709 snprintf(card->longname, sizeof(card->longname),
2710 "%s at 0x%lx irq %i",
2711 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002712
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 *rchip = chip;
2714 return 0;
2715
2716 errout:
2717 azx_free(chip);
2718 return err;
2719}
2720
Takashi Iwaicb53c622007-08-10 17:21:45 +02002721static void power_down_all_codecs(struct azx *chip)
2722{
2723#ifdef CONFIG_SND_HDA_POWER_SAVE
2724 /* The codecs were powered up in snd_hda_codec_new().
2725 * Now all initialization done, so turn them down if possible
2726 */
2727 struct hda_codec *codec;
2728 list_for_each_entry(codec, &chip->bus->codec_list, list) {
2729 snd_hda_power_down(codec);
2730 }
2731#endif
2732}
2733
Takashi Iwaid01ce992007-07-27 16:52:19 +02002734static int __devinit azx_probe(struct pci_dev *pci,
2735 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002737 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002738 struct snd_card *card;
2739 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02002740 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002742 if (dev >= SNDRV_CARDS)
2743 return -ENODEV;
2744 if (!enable[dev]) {
2745 dev++;
2746 return -ENOENT;
2747 }
2748
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002749 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2750 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 snd_printk(KERN_ERR SFX "Error creating card!\n");
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002752 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 }
2754
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002755 /* set this here since it's referred in snd_hda_load_patch() */
2756 snd_card_set_dev(card, &pci->dev);
2757
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002758 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002759 if (err < 0)
2760 goto out_free;
Takashi Iwai421a1252005-11-17 16:11:09 +01002761 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01002763#ifdef CONFIG_SND_HDA_INPUT_BEEP
2764 chip->beep_mode = beep_mode[dev];
2765#endif
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 /* create codec instances */
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002768 err = azx_codec_create(chip, model[dev]);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002769 if (err < 0)
2770 goto out_free;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002771#ifdef CONFIG_SND_HDA_PATCH_LOADER
Takashi Iwai41a63f12011-02-10 17:39:20 +01002772 if (patch[dev] && *patch[dev]) {
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002773 snd_printk(KERN_ERR SFX "Applying patch firmware '%s'\n",
2774 patch[dev]);
2775 err = snd_hda_load_patch(chip->bus, patch[dev]);
2776 if (err < 0)
2777 goto out_free;
2778 }
2779#endif
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002780 if ((probe_only[dev] & 1) == 0) {
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002781 err = azx_codec_configure(chip);
2782 if (err < 0)
2783 goto out_free;
2784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 /* create PCM streams */
Takashi Iwai176d5332008-07-30 15:01:44 +02002787 err = snd_hda_build_pcms(chip->bus);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002788 if (err < 0)
2789 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
2791 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002792 err = azx_mixer_create(chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002793 if (err < 0)
2794 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Takashi Iwaid01ce992007-07-27 16:52:19 +02002796 err = snd_card_register(card);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002797 if (err < 0)
2798 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
2800 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002801 chip->running = 1;
2802 power_down_all_codecs(chip);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002803 azx_notifier_register(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002805 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return err;
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002807out_free:
2808 snd_card_free(card);
2809 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
2812static void __devexit azx_remove(struct pci_dev *pci)
2813{
2814 snd_card_free(pci_get_drvdata(pci));
2815 pci_set_drvdata(pci, NULL);
2816}
2817
2818/* PCI IDs */
Alexey Dobriyancebe41d2010-02-06 00:21:03 +02002819static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -08002820 /* CPT */
Takashi Iwai9477c582011-05-25 09:11:37 +02002821 { PCI_DEVICE(0x8086, 0x1c20),
2822 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP },
Seth Heasleycea310e2010-09-10 16:29:56 -07002823 /* PBG */
Takashi Iwai9477c582011-05-25 09:11:37 +02002824 { PCI_DEVICE(0x8086, 0x1d20),
2825 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP },
Seth Heasleyd2edeb72011-04-20 10:59:57 -07002826 /* Panther Point */
Takashi Iwai9477c582011-05-25 09:11:37 +02002827 { PCI_DEVICE(0x8086, 0x1e20),
2828 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP },
Takashi Iwai87218e92008-02-21 08:13:11 +01002829 /* SCH */
Takashi Iwai9477c582011-05-25 09:11:37 +02002830 { PCI_DEVICE(0x8086, 0x811b),
2831 .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_SCH_SNOOP },
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002832 { PCI_DEVICE(0x8086, 0x2668),
2833 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ICH6 */
2834 { PCI_DEVICE(0x8086, 0x27d8),
2835 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ICH7 */
2836 { PCI_DEVICE(0x8086, 0x269a),
2837 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ESB2 */
2838 { PCI_DEVICE(0x8086, 0x284b),
2839 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ICH8 */
2840 { PCI_DEVICE(0x8086, 0x293e),
2841 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ICH9 */
2842 { PCI_DEVICE(0x8086, 0x293f),
2843 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ICH9 */
2844 { PCI_DEVICE(0x8086, 0x3a3e),
2845 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ICH10 */
2846 { PCI_DEVICE(0x8086, 0x3a6e),
2847 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC }, /* ICH10 */
Takashi Iwaib6864532010-09-15 10:17:26 +02002848 /* Generic Intel */
2849 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
2850 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2851 .class_mask = 0xffffff,
2852 .driver_data = AZX_DRIVER_ICH },
Takashi Iwai9477c582011-05-25 09:11:37 +02002853 /* ATI SB 450/600/700/800/900 */
2854 { PCI_DEVICE(0x1002, 0x437b),
2855 .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB },
2856 { PCI_DEVICE(0x1002, 0x4383),
2857 .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB },
2858 /* AMD Hudson */
2859 { PCI_DEVICE(0x1022, 0x780d),
2860 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_SB },
Takashi Iwai87218e92008-02-21 08:13:11 +01002861 /* ATI HDMI */
Takashi Iwai9477c582011-05-25 09:11:37 +02002862 { PCI_DEVICE(0x1002, 0x793b),
2863 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2864 { PCI_DEVICE(0x1002, 0x7919),
2865 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2866 { PCI_DEVICE(0x1002, 0x960f),
2867 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2868 { PCI_DEVICE(0x1002, 0x970f),
2869 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2870 { PCI_DEVICE(0x1002, 0xaa00),
2871 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2872 { PCI_DEVICE(0x1002, 0xaa08),
2873 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2874 { PCI_DEVICE(0x1002, 0xaa10),
2875 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2876 { PCI_DEVICE(0x1002, 0xaa18),
2877 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2878 { PCI_DEVICE(0x1002, 0xaa20),
2879 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2880 { PCI_DEVICE(0x1002, 0xaa28),
2881 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2882 { PCI_DEVICE(0x1002, 0xaa30),
2883 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2884 { PCI_DEVICE(0x1002, 0xaa38),
2885 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2886 { PCI_DEVICE(0x1002, 0xaa40),
2887 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2888 { PCI_DEVICE(0x1002, 0xaa48),
2889 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
Takashi Iwai87218e92008-02-21 08:13:11 +01002890 /* VIA VT8251/VT8237A */
Takashi Iwai9477c582011-05-25 09:11:37 +02002891 { PCI_DEVICE(0x1106, 0x3288),
2892 .driver_data = AZX_DRIVER_VIA | AZX_DCAPS_POSFIX_VIA },
Takashi Iwai87218e92008-02-21 08:13:11 +01002893 /* SIS966 */
2894 { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
2895 /* ULI M5461 */
2896 { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
2897 /* NVIDIA MCP */
Takashi Iwai0c2fd1bf42009-12-18 16:41:39 +01002898 { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
2899 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2900 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002901 .driver_data = AZX_DRIVER_NVIDIA | AZX_DCAPS_PRESET_NVIDIA },
Kailang Yangf2690022008-05-27 11:44:55 +02002902 /* Teradici */
Takashi Iwai9477c582011-05-25 09:11:37 +02002903 { PCI_DEVICE(0x6549, 0x1200),
2904 .driver_data = AZX_DRIVER_TERA | AZX_DCAPS_NO_64BIT },
Takashi Iwai4e01f542009-04-16 08:53:34 +02002905 /* Creative X-Fi (CA0110-IBG) */
Takashi Iwai313f6e22009-05-18 12:40:52 +02002906#if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
2907 /* the following entry conflicts with snd-ctxfi driver,
2908 * as ctxfi driver mutates from HD-audio to native mode with
2909 * a special command sequence.
2910 */
Takashi Iwai4e01f542009-04-16 08:53:34 +02002911 { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID),
2912 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2913 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002914 .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND |
2915 AZX_DCAPS_RIRB_PRE_DELAY },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002916#else
2917 /* this entry seems still valid -- i.e. without emu20kx chip */
Takashi Iwai9477c582011-05-25 09:11:37 +02002918 { PCI_DEVICE(0x1102, 0x0009),
2919 .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND |
2920 AZX_DCAPS_RIRB_PRE_DELAY },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002921#endif
Otavio Salvadore35d4b12010-09-26 23:35:06 -03002922 /* Vortex86MX */
2923 { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
Bankim Bhavsar0f0714c52011-01-17 15:23:21 +01002924 /* VMware HDAudio */
2925 { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002926 /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
Yang, Libinc4da29c2008-11-13 11:07:07 +01002927 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
2928 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2929 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002930 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI },
Andiry Brienza9176b672009-07-17 11:32:32 +08002931 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID),
2932 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2933 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002934 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 { 0, }
2936};
2937MODULE_DEVICE_TABLE(pci, azx_ids);
2938
2939/* pci_driver definition */
2940static struct pci_driver driver = {
2941 .name = "HDA Intel",
2942 .id_table = azx_ids,
2943 .probe = azx_probe,
2944 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002945#ifdef CONFIG_PM
2946 .suspend = azx_suspend,
2947 .resume = azx_resume,
2948#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949};
2950
2951static int __init alsa_card_azx_init(void)
2952{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002953 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
2956static void __exit alsa_card_azx_exit(void)
2957{
2958 pci_unregister_driver(&driver);
2959}
2960
2961module_init(alsa_card_azx_init)
2962module_exit(alsa_card_azx_exit)