blob: 2a8bed94d4fa934bbee04465e2f4524d446865b0 [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
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -0500119static int align_buffer_size = 1;
120module_param(align_buffer_size, bool, 0644);
121MODULE_PARM_DESC(align_buffer_size,
122 "Force buffer and period sizes to be multiple of 128 bytes.");
123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124MODULE_LICENSE("GPL");
125MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
126 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -0700127 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +0200128 "{Intel, ESB2},"
Jason Gastond2981392006-01-10 11:07:37 +0100129 "{Intel, ICH8},"
Jason Gastonf9cc8a82006-11-22 11:53:52 +0100130 "{Intel, ICH9},"
Jason Gastonc34f5a02008-01-29 12:38:49 +0100131 "{Intel, ICH10},"
Seth Heasleyb29c2362008-08-08 15:56:39 -0700132 "{Intel, PCH},"
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -0800133 "{Intel, CPT},"
Seth Heasleyd2edeb72011-04-20 10:59:57 -0700134 "{Intel, PPT},"
Seth Heasleycea310e2010-09-10 16:29:56 -0700135 "{Intel, PBG},"
Tobin Davis4979bca2008-01-30 08:13:55 +0100136 "{Intel, SCH},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200137 "{ATI, SB450},"
Felix Kuehling89be83f2006-03-31 12:33:59 +0200138 "{ATI, SB600},"
Felix Kuehling778b6e12006-05-17 11:22:21 +0200139 "{ATI, RS600},"
Felix Kuehling5b15c952006-10-16 12:49:47 +0200140 "{ATI, RS690},"
Wolke Liue6db1112007-04-27 12:20:57 +0200141 "{ATI, RS780},"
142 "{ATI, R600},"
Herton Ronaldo Krzesinski2797f722007-11-05 18:21:56 +0100143 "{ATI, RV630},"
144 "{ATI, RV610},"
Wolke Liu27da1832007-11-16 11:06:30 +0100145 "{ATI, RV670},"
146 "{ATI, RV635},"
147 "{ATI, RV620},"
148 "{ATI, RV770},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200149 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +0200150 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200151 "{SiS, SIS966},"
152 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153MODULE_DESCRIPTION("Intel HDA driver");
154
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200155#ifdef CONFIG_SND_VERBOSE_PRINTK
156#define SFX /* nop */
157#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#define SFX "hda-intel: "
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200159#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +0200160
161/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * registers
163 */
164#define ICH6_REG_GCAP 0x00
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200165#define ICH6_GCAP_64OK (1 << 0) /* 64bit address support */
166#define ICH6_GCAP_NSDO (3 << 1) /* # of serial data out signals */
167#define ICH6_GCAP_BSS (31 << 3) /* # of bidirectional streams */
168#define ICH6_GCAP_ISS (15 << 8) /* # of input streams */
169#define ICH6_GCAP_OSS (15 << 12) /* # of output streams */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170#define ICH6_REG_VMIN 0x02
171#define ICH6_REG_VMAJ 0x03
172#define ICH6_REG_OUTPAY 0x04
173#define ICH6_REG_INPAY 0x06
174#define ICH6_REG_GCTL 0x08
Takashi Iwai8a933ec2009-05-31 09:28:12 +0200175#define ICH6_GCTL_RESET (1 << 0) /* controller reset */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200176#define ICH6_GCTL_FCNTRL (1 << 1) /* flush control */
177#define ICH6_GCTL_UNSOL (1 << 8) /* accept unsol. response enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#define ICH6_REG_WAKEEN 0x0c
179#define ICH6_REG_STATESTS 0x0e
180#define ICH6_REG_GSTS 0x10
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200181#define ICH6_GSTS_FSTS (1 << 1) /* flush status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#define ICH6_REG_INTCTL 0x20
183#define ICH6_REG_INTSTS 0x24
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200184#define ICH6_REG_WALLCLK 0x30 /* 24Mhz source */
Takashi Iwai8b0bd222011-06-10 14:56:26 +0200185#define ICH6_REG_OLD_SSYNC 0x34 /* SSYNC for old ICH */
186#define ICH6_REG_SSYNC 0x38
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187#define ICH6_REG_CORBLBASE 0x40
188#define ICH6_REG_CORBUBASE 0x44
189#define ICH6_REG_CORBWP 0x48
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200190#define ICH6_REG_CORBRP 0x4a
191#define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192#define ICH6_REG_CORBCTL 0x4c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200193#define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */
194#define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195#define ICH6_REG_CORBSTS 0x4d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200196#define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define ICH6_REG_CORBSIZE 0x4e
198
199#define ICH6_REG_RIRBLBASE 0x50
200#define ICH6_REG_RIRBUBASE 0x54
201#define ICH6_REG_RIRBWP 0x58
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200202#define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203#define ICH6_REG_RINTCNT 0x5a
204#define ICH6_REG_RIRBCTL 0x5c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200205#define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */
206#define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */
207#define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#define ICH6_REG_RIRBSTS 0x5d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200209#define ICH6_RBSTS_IRQ (1 << 0) /* response irq */
210#define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#define ICH6_REG_RIRBSIZE 0x5e
212
213#define ICH6_REG_IC 0x60
214#define ICH6_REG_IR 0x64
215#define ICH6_REG_IRS 0x68
216#define ICH6_IRS_VALID (1<<1)
217#define ICH6_IRS_BUSY (1<<0)
218
219#define ICH6_REG_DPLBASE 0x70
220#define ICH6_REG_DPUBASE 0x74
221#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
222
223/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
224enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
225
226/* stream register offsets from stream base */
227#define ICH6_REG_SD_CTL 0x00
228#define ICH6_REG_SD_STS 0x03
229#define ICH6_REG_SD_LPIB 0x04
230#define ICH6_REG_SD_CBL 0x08
231#define ICH6_REG_SD_LVI 0x0c
232#define ICH6_REG_SD_FIFOW 0x0e
233#define ICH6_REG_SD_FIFOSIZE 0x10
234#define ICH6_REG_SD_FORMAT 0x12
235#define ICH6_REG_SD_BDLPL 0x18
236#define ICH6_REG_SD_BDLPU 0x1c
237
238/* PCI space */
239#define ICH6_PCIREG_TCSEL 0x44
240
241/*
242 * other constants
243 */
244
245/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200246/* ICH, ATI and VIA have 4 playback and 4 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200247#define ICH6_NUM_CAPTURE 4
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200248#define ICH6_NUM_PLAYBACK 4
249
250/* ULI has 6 playback and 5 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200251#define ULI_NUM_CAPTURE 5
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200252#define ULI_NUM_PLAYBACK 6
253
Felix Kuehling778b6e12006-05-17 11:22:21 +0200254/* ATI HDMI has 1 playback and 0 capture */
Felix Kuehling778b6e12006-05-17 11:22:21 +0200255#define ATIHDMI_NUM_CAPTURE 0
Felix Kuehling778b6e12006-05-17 11:22:21 +0200256#define ATIHDMI_NUM_PLAYBACK 1
257
Kailang Yangf2690022008-05-27 11:44:55 +0200258/* TERA has 4 playback and 3 capture */
259#define TERA_NUM_CAPTURE 3
260#define TERA_NUM_PLAYBACK 4
261
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200262/* this number is statically defined for simplicity */
263#define MAX_AZX_DEV 16
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100266#define BDL_SIZE 4096
267#define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
268#define AZX_MAX_FRAG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269/* max buffer size - no h/w limit, you can increase as you like */
270#define AZX_MAX_BUF_SIZE (1024*1024*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272/* RIRB int mask: overrun[2], response[0] */
273#define RIRB_INT_RESPONSE 0x01
274#define RIRB_INT_OVERRUN 0x04
275#define RIRB_INT_MASK 0x05
276
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200277/* STATESTS int mask: S3,SD2,SD1,SD0 */
Wei Ni7445dfc2010-03-03 15:05:53 +0800278#define AZX_MAX_CODECS 8
279#define AZX_DEFAULT_CODECS 4
Wu Fengguangdeadff12009-08-01 18:45:16 +0800280#define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282/* SD_CTL bits */
283#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
284#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
Takashi Iwai850f0e52008-03-18 17:11:05 +0100285#define SD_CTL_STRIPE (3 << 16) /* stripe control */
286#define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
287#define SD_CTL_DIR (1 << 19) /* bi-directional stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
289#define SD_CTL_STREAM_TAG_SHIFT 20
290
291/* SD_CTL and SD_STS */
292#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
293#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
294#define SD_INT_COMPLETE 0x04 /* completion interrupt */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200295#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
296 SD_INT_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298/* SD_STS */
299#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
300
301/* INTCTL and INTSTS */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200302#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
303#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
304#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306/* below are so far hardcoded - should read registers in future */
307#define ICH6_MAX_CORB_ENTRIES 256
308#define ICH6_MAX_RIRB_ENTRIES 256
309
Takashi Iwaic74db862005-05-12 14:26:27 +0200310/* position fix mode */
311enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200312 POS_FIX_AUTO,
Takashi Iwaid2e1c972008-06-10 17:53:34 +0200313 POS_FIX_LPIB,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200314 POS_FIX_POSBUF,
David Henningsson4cb36312010-09-30 10:12:50 +0200315 POS_FIX_VIACOMBO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200316};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Frederick Lif5d40b32005-05-12 14:55:20 +0200318/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200319#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
320#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
321
Vinod Gda3fca22005-09-13 18:49:12 +0200322/* Defines for Nvidia HDA support */
323#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
324#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Peer Chen320dcc32008-08-20 16:43:24 -0700325#define NVIDIA_HDA_ISTRM_COH 0x4d
326#define NVIDIA_HDA_OSTRM_COH 0x4c
327#define NVIDIA_HDA_ENABLE_COHBIT 0x01
Frederick Lif5d40b32005-05-12 14:55:20 +0200328
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100329/* Defines for Intel SCH HDA snoop control */
330#define INTEL_SCH_HDA_DEVC 0x78
331#define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
332
Joseph Chan0e153472008-08-26 14:38:03 +0200333/* Define IN stream 0 FIFO size offset in VIA controller */
334#define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
335/* Define VIA HD Audio Device ID*/
336#define VIA_HDAC_DEVICE_ID 0x3288
337
Yang, Libinc4da29c2008-11-13 11:07:07 +0100338/* HD Audio class code */
339#define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
343
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100344struct azx_dev {
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100345 struct snd_dma_buffer bdl; /* BDL buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200346 u32 *posbuf; /* position buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Takashi Iwaid01ce992007-07-27 16:52:19 +0200348 unsigned int bufsize; /* size of the play buffer in bytes */
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200349 unsigned int period_bytes; /* size of the period in bytes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200350 unsigned int frags; /* number for period in the play buffer */
351 unsigned int fifo_size; /* FIFO size */
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200352 unsigned long start_wallclk; /* start + minimum wallclk */
353 unsigned long period_wallclk; /* wallclk for period */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Takashi Iwaid01ce992007-07-27 16:52:19 +0200355 void __iomem *sd_addr; /* stream descriptor pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Takashi Iwaid01ce992007-07-27 16:52:19 +0200357 u32 sd_int_sta_mask; /* stream int status mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358
359 /* pcm support */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200360 struct snd_pcm_substream *substream; /* assigned substream,
361 * set in PCM open
362 */
363 unsigned int format_val; /* format value to be set in the
364 * controller and the codec
365 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 unsigned char stream_tag; /* assigned stream */
367 unsigned char index; /* stream index */
Wu Fengguangef18bed2009-12-25 13:14:27 +0800368 int device; /* last device number assigned to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Pavel Machek927fc862006-08-31 17:03:43 +0200370 unsigned int opened :1;
371 unsigned int running :1;
Takashi Iwai675f25d2008-06-10 17:53:20 +0200372 unsigned int irq_pending :1;
Joseph Chan0e153472008-08-26 14:38:03 +0200373 /*
374 * For VIA:
375 * A flag to ensure DMA position is 0
376 * when link position is not greater than FIFO size
377 */
378 unsigned int insufficient :1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379};
380
381/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100382struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 u32 *buf; /* CORB/RIRB buffer
384 * Each CORB entry is 4byte, RIRB is 8byte
385 */
386 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
387 /* for RIRB */
388 unsigned short rp, wp; /* read/write pointers */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800389 int cmds[AZX_MAX_CODECS]; /* number of pending requests */
390 u32 res[AZX_MAX_CODECS]; /* last read value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391};
392
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100393struct azx {
394 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 struct pci_dev *pci;
Takashi Iwai555e2192008-06-10 17:53:34 +0200396 int dev_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200398 /* chip type specific */
399 int driver_type;
Takashi Iwai9477c582011-05-25 09:11:37 +0200400 unsigned int driver_caps;
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200401 int playback_streams;
402 int playback_index_offset;
403 int capture_streams;
404 int capture_index_offset;
405 int num_streams;
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /* pci resources */
408 unsigned long addr;
409 void __iomem *remap_addr;
410 int irq;
411
412 /* locks */
413 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100414 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200416 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100417 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 /* PCM */
Takashi Iwaic8936222010-01-28 17:08:53 +0100420 struct snd_pcm *pcm[HDA_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /* HD codec */
423 unsigned short codec_mask;
Takashi Iwaif1eaaee2009-02-13 08:16:55 +0100424 int codec_probe_mask; /* copied from probe_mask option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct hda_bus *bus;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100426 unsigned int beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100429 struct azx_rb corb;
430 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100432 /* CORB/RIRB and position buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 struct snd_dma_buffer rb;
434 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200435
436 /* flags */
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +0200437 int position_fix[2]; /* for both playback/capture streams */
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200438 int poll_count;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200439 unsigned int running :1;
Pavel Machek927fc862006-08-31 17:03:43 +0200440 unsigned int initialized :1;
441 unsigned int single_cmd :1;
442 unsigned int polling_mode :1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200443 unsigned int msi :1;
Takashi Iwaia6a950a2008-06-10 17:53:35 +0200444 unsigned int irq_pending_warned :1;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100445 unsigned int probing :1; /* codec probing phase */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200446
447 /* for debugging */
Wu Fengguangfeb27342009-08-01 19:17:14 +0800448 unsigned int last_cmd[AZX_MAX_CODECS];
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200449
450 /* for pending irqs */
451 struct work_struct irq_pending_work;
Takashi Iwai0cbf0092008-10-29 16:18:25 +0100452
453 /* reboot notifier (for mysterious hangup problem at power-down) */
454 struct notifier_block reboot_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455};
456
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200457/* driver types */
458enum {
459 AZX_DRIVER_ICH,
Seth Heasley32679f92010-02-22 17:31:09 -0800460 AZX_DRIVER_PCH,
Tobin Davis4979bca2008-01-30 08:13:55 +0100461 AZX_DRIVER_SCH,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200462 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200463 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200464 AZX_DRIVER_VIA,
465 AZX_DRIVER_SIS,
466 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200467 AZX_DRIVER_NVIDIA,
Kailang Yangf2690022008-05-27 11:44:55 +0200468 AZX_DRIVER_TERA,
Takashi Iwai14d34f12010-10-21 09:03:25 +0200469 AZX_DRIVER_CTX,
Yang, Libinc4da29c2008-11-13 11:07:07 +0100470 AZX_DRIVER_GENERIC,
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200471 AZX_NUM_DRIVERS, /* keep this as last entry */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200472};
473
Takashi Iwai9477c582011-05-25 09:11:37 +0200474/* driver quirks (capabilities) */
475/* bits 0-7 are used for indicating driver type */
476#define AZX_DCAPS_NO_TCSEL (1 << 8) /* No Intel TCSEL bit */
477#define AZX_DCAPS_NO_MSI (1 << 9) /* No MSI support */
478#define AZX_DCAPS_ATI_SNOOP (1 << 10) /* ATI snoop enable */
479#define AZX_DCAPS_NVIDIA_SNOOP (1 << 11) /* Nvidia snoop enable */
480#define AZX_DCAPS_SCH_SNOOP (1 << 12) /* SCH/PCH snoop enable */
481#define AZX_DCAPS_RIRB_DELAY (1 << 13) /* Long delay in read loop */
482#define AZX_DCAPS_RIRB_PRE_DELAY (1 << 14) /* Put a delay before read */
483#define AZX_DCAPS_CTX_WORKAROUND (1 << 15) /* X-Fi workaround */
484#define AZX_DCAPS_POSFIX_LPIB (1 << 16) /* Use LPIB as default */
485#define AZX_DCAPS_POSFIX_VIA (1 << 17) /* Use VIACOMBO as default */
486#define AZX_DCAPS_NO_64BIT (1 << 18) /* No 64bit address */
487#define AZX_DCAPS_SYNC_WRITE (1 << 19) /* sync each cmd write */
Takashi Iwai8b0bd222011-06-10 14:56:26 +0200488#define AZX_DCAPS_OLD_SSYNC (1 << 20) /* Old SSYNC reg for ICH */
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -0500489#define AZX_DCAPS_BUFSIZE (1 << 21) /* no buffer size alignment */
Takashi Iwai9477c582011-05-25 09:11:37 +0200490
491/* quirks for ATI SB / AMD Hudson */
492#define AZX_DCAPS_PRESET_ATI_SB \
493 (AZX_DCAPS_ATI_SNOOP | AZX_DCAPS_NO_TCSEL | \
494 AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
495
496/* quirks for ATI/AMD HDMI */
497#define AZX_DCAPS_PRESET_ATI_HDMI \
498 (AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
499
500/* quirks for Nvidia */
501#define AZX_DCAPS_PRESET_NVIDIA \
502 (AZX_DCAPS_NVIDIA_SNOOP | AZX_DCAPS_RIRB_DELAY | AZX_DCAPS_NO_MSI)
503
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200504static char *driver_short_names[] __devinitdata = {
505 [AZX_DRIVER_ICH] = "HDA Intel",
Seth Heasley32679f92010-02-22 17:31:09 -0800506 [AZX_DRIVER_PCH] = "HDA Intel PCH",
Tobin Davis4979bca2008-01-30 08:13:55 +0100507 [AZX_DRIVER_SCH] = "HDA Intel MID",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200508 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200509 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200510 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
511 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200512 [AZX_DRIVER_ULI] = "HDA ULI M5461",
513 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Kailang Yangf2690022008-05-27 11:44:55 +0200514 [AZX_DRIVER_TERA] = "HDA Teradici",
Takashi Iwai14d34f12010-10-21 09:03:25 +0200515 [AZX_DRIVER_CTX] = "HDA Creative",
Yang, Libinc4da29c2008-11-13 11:07:07 +0100516 [AZX_DRIVER_GENERIC] = "HD-Audio Generic",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200517};
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/*
520 * macros for easy use
521 */
522#define azx_writel(chip,reg,value) \
523 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
524#define azx_readl(chip,reg) \
525 readl((chip)->remap_addr + ICH6_REG_##reg)
526#define azx_writew(chip,reg,value) \
527 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
528#define azx_readw(chip,reg) \
529 readw((chip)->remap_addr + ICH6_REG_##reg)
530#define azx_writeb(chip,reg,value) \
531 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
532#define azx_readb(chip,reg) \
533 readb((chip)->remap_addr + ICH6_REG_##reg)
534
535#define azx_sd_writel(dev,reg,value) \
536 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
537#define azx_sd_readl(dev,reg) \
538 readl((dev)->sd_addr + ICH6_REG_##reg)
539#define azx_sd_writew(dev,reg,value) \
540 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
541#define azx_sd_readw(dev,reg) \
542 readw((dev)->sd_addr + ICH6_REG_##reg)
543#define azx_sd_writeb(dev,reg,value) \
544 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
545#define azx_sd_readb(dev,reg) \
546 readb((dev)->sd_addr + ICH6_REG_##reg)
547
548/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100549#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200551static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200552static int azx_send_cmd(struct hda_bus *bus, unsigned int val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553/*
554 * Interface for HD codec
555 */
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557/*
558 * CORB / RIRB interface
559 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100560static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 int err;
563
564 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200565 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
566 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 PAGE_SIZE, &chip->rb);
568 if (err < 0) {
569 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
570 return err;
571 }
572 return 0;
573}
574
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100575static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800577 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 /* CORB set up */
579 chip->corb.addr = chip->rb.addr;
580 chip->corb.buf = (u32 *)chip->rb.area;
581 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200582 azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200584 /* set the corb size to 256 entries (ULI requires explicitly) */
585 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 /* set the corb write pointer to 0 */
587 azx_writew(chip, CORBWP, 0);
588 /* reset the corb hw read pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200589 azx_writew(chip, CORBRP, ICH6_CORBRP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 /* enable corb dma */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200591 azx_writeb(chip, CORBCTL, ICH6_CORBCTL_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 /* RIRB set up */
594 chip->rirb.addr = chip->rb.addr + 2048;
595 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800596 chip->rirb.wp = chip->rirb.rp = 0;
597 memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200599 azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200601 /* set the rirb size to 256 entries (ULI requires explicitly) */
602 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /* reset the rirb hw write pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200604 azx_writew(chip, RIRBWP, ICH6_RIRBWP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 /* set N=1, get RIRB response interrupt for new entry */
Takashi Iwai9477c582011-05-25 09:11:37 +0200606 if (chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND)
Takashi Iwai14d34f12010-10-21 09:03:25 +0200607 azx_writew(chip, RINTCNT, 0xc0);
608 else
609 azx_writew(chip, RINTCNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800612 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613}
614
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100615static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800617 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 /* disable ringbuffer DMAs */
619 azx_writeb(chip, RIRBCTL, 0);
620 azx_writeb(chip, CORBCTL, 0);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800621 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622}
623
Wu Fengguangdeadff12009-08-01 18:45:16 +0800624static unsigned int azx_command_addr(u32 cmd)
625{
626 unsigned int addr = cmd >> 28;
627
628 if (addr >= AZX_MAX_CODECS) {
629 snd_BUG();
630 addr = 0;
631 }
632
633 return addr;
634}
635
636static unsigned int azx_response_addr(u32 res)
637{
638 unsigned int addr = res & 0xf;
639
640 if (addr >= AZX_MAX_CODECS) {
641 snd_BUG();
642 addr = 0;
643 }
644
645 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646}
647
648/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100649static int azx_corb_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100651 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800652 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 unsigned int wp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Wu Fengguangc32649f2009-08-01 18:48:12 +0800655 spin_lock_irq(&chip->reg_lock);
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 /* add command to corb */
658 wp = azx_readb(chip, CORBWP);
659 wp++;
660 wp %= ICH6_MAX_CORB_ENTRIES;
661
Wu Fengguangdeadff12009-08-01 18:45:16 +0800662 chip->rirb.cmds[addr]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 chip->corb.buf[wp] = cpu_to_le32(val);
664 azx_writel(chip, CORBWP, wp);
Wu Fengguangc32649f2009-08-01 18:48:12 +0800665
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 spin_unlock_irq(&chip->reg_lock);
667
668 return 0;
669}
670
671#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
672
673/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100674static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
676 unsigned int rp, wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800677 unsigned int addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 u32 res, res_ex;
679
680 wp = azx_readb(chip, RIRBWP);
681 if (wp == chip->rirb.wp)
682 return;
683 chip->rirb.wp = wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 while (chip->rirb.rp != wp) {
686 chip->rirb.rp++;
687 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
688
689 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
690 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
691 res = le32_to_cpu(chip->rirb.buf[rp]);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800692 addr = azx_response_addr(res_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
694 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800695 else if (chip->rirb.cmds[addr]) {
696 chip->rirb.res[addr] = res;
Takashi Iwai2add9b92008-03-18 09:47:06 +0100697 smp_wmb();
Wu Fengguangdeadff12009-08-01 18:45:16 +0800698 chip->rirb.cmds[addr]--;
Wu Fengguange310bb02009-08-01 19:18:45 +0800699 } else
700 snd_printk(KERN_ERR SFX "spurious response %#x:%#x, "
701 "last cmd=%#08x\n",
702 res, res_ex,
703 chip->last_cmd[addr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 }
705}
706
707/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800708static unsigned int azx_rirb_get_response(struct hda_bus *bus,
709 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100711 struct azx *chip = bus->private_data;
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200712 unsigned long timeout;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200713 int do_poll = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200715 again:
716 timeout = jiffies + msecs_to_jiffies(1000);
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100717 for (;;) {
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200718 if (chip->polling_mode || do_poll) {
Takashi Iwaie96224a2006-08-21 17:57:44 +0200719 spin_lock_irq(&chip->reg_lock);
720 azx_update_rirb(chip);
721 spin_unlock_irq(&chip->reg_lock);
722 }
Wu Fengguangdeadff12009-08-01 18:45:16 +0800723 if (!chip->rirb.cmds[addr]) {
Takashi Iwai2add9b92008-03-18 09:47:06 +0100724 smp_rmb();
Takashi Iwaib6132912009-03-24 07:36:09 +0100725 bus->rirb_error = 0;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200726
727 if (!do_poll)
728 chip->poll_count = 0;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800729 return chip->rirb.res[addr]; /* the last value */
Takashi Iwai2add9b92008-03-18 09:47:06 +0100730 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100731 if (time_after(jiffies, timeout))
732 break;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100733 if (bus->needs_damn_long_delay)
Takashi Iwai52987652008-01-16 16:09:47 +0100734 msleep(2); /* temporary workaround */
735 else {
736 udelay(10);
737 cond_resched();
738 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100739 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200740
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200741 if (!chip->polling_mode && chip->poll_count < 2) {
742 snd_printdd(SFX "azx_get_response timeout, "
743 "polling the codec once: last cmd=0x%08x\n",
744 chip->last_cmd[addr]);
745 do_poll = 1;
746 chip->poll_count++;
747 goto again;
748 }
749
750
Takashi Iwai23c4a882009-10-30 13:21:49 +0100751 if (!chip->polling_mode) {
752 snd_printk(KERN_WARNING SFX "azx_get_response timeout, "
753 "switching to polling mode: last cmd=0x%08x\n",
754 chip->last_cmd[addr]);
755 chip->polling_mode = 1;
756 goto again;
757 }
758
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200759 if (chip->msi) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200760 snd_printk(KERN_WARNING SFX "No response from codec, "
Wu Fengguangfeb27342009-08-01 19:17:14 +0800761 "disabling MSI: last cmd=0x%08x\n",
762 chip->last_cmd[addr]);
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200763 free_irq(chip->irq, chip);
764 chip->irq = -1;
765 pci_disable_msi(chip->pci);
766 chip->msi = 0;
Takashi Iwaib6132912009-03-24 07:36:09 +0100767 if (azx_acquire_irq(chip, 1) < 0) {
768 bus->rirb_error = 1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200769 return -1;
Takashi Iwaib6132912009-03-24 07:36:09 +0100770 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200771 goto again;
772 }
773
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100774 if (chip->probing) {
775 /* If this critical timeout happens during the codec probing
776 * phase, this is likely an access to a non-existing codec
777 * slot. Better to return an error and reset the system.
778 */
779 return -1;
780 }
781
Takashi Iwai8dd78332009-06-02 01:16:07 +0200782 /* a fatal communication error; need either to reset or to fallback
783 * to the single_cmd mode
784 */
Takashi Iwaib6132912009-03-24 07:36:09 +0100785 bus->rirb_error = 1;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200786 if (bus->allow_bus_reset && !bus->response_reset && !bus->in_reset) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200787 bus->response_reset = 1;
788 return -1; /* give a chance to retry */
789 }
790
791 snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
792 "switching to single_cmd mode: last cmd=0x%08x\n",
Wu Fengguangfeb27342009-08-01 19:17:14 +0800793 chip->last_cmd[addr]);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200794 chip->single_cmd = 1;
795 bus->response_reset = 0;
Takashi Iwai1a696972009-11-07 09:49:04 +0100796 /* release CORB/RIRB */
Takashi Iwai4fcd3922009-05-25 18:34:52 +0200797 azx_free_cmd_io(chip);
Takashi Iwai1a696972009-11-07 09:49:04 +0100798 /* disable unsolicited responses */
799 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200800 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/*
804 * Use the single immediate command instead of CORB/RIRB for simplicity
805 *
806 * Note: according to Intel, this is not preferred use. The command was
807 * intended for the BIOS only, and may get confused with unsolicited
808 * responses. So, we shouldn't use it for normal operation from the
809 * driver.
810 * I left the codes, however, for debugging/testing purposes.
811 */
812
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200813/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800814static int azx_single_wait_for_response(struct azx *chip, unsigned int addr)
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200815{
816 int timeout = 50;
817
818 while (timeout--) {
819 /* check IRV busy bit */
820 if (azx_readw(chip, IRS) & ICH6_IRS_VALID) {
821 /* reuse rirb.res as the response return value */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800822 chip->rirb.res[addr] = azx_readl(chip, IR);
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200823 return 0;
824 }
825 udelay(1);
826 }
827 if (printk_ratelimit())
828 snd_printd(SFX "get_response timeout: IRS=0x%x\n",
829 azx_readw(chip, IRS));
Wu Fengguangdeadff12009-08-01 18:45:16 +0800830 chip->rirb.res[addr] = -1;
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200831 return -EIO;
832}
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100835static int azx_single_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100837 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800838 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 int timeout = 50;
840
Takashi Iwai8dd78332009-06-02 01:16:07 +0200841 bus->rirb_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 while (timeout--) {
843 /* check ICB busy bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200844 if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /* Clear IRV valid bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200846 azx_writew(chip, IRS, azx_readw(chip, IRS) |
847 ICH6_IRS_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 azx_writel(chip, IC, val);
Takashi Iwaid01ce992007-07-27 16:52:19 +0200849 azx_writew(chip, IRS, azx_readw(chip, IRS) |
850 ICH6_IRS_BUSY);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800851 return azx_single_wait_for_response(chip, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
853 udelay(1);
854 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100855 if (printk_ratelimit())
856 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
857 azx_readw(chip, IRS), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return -EIO;
859}
860
861/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800862static unsigned int azx_single_get_response(struct hda_bus *bus,
863 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100865 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800866 return chip->rirb.res[addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
Takashi Iwai111d3af2006-02-16 18:17:58 +0100869/*
870 * The below are the main callbacks from hda_codec.
871 *
872 * They are just the skeleton to call sub-callbacks according to the
873 * current setting of chip->single_cmd.
874 */
875
876/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100877static int azx_send_cmd(struct hda_bus *bus, unsigned int val)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100878{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100879 struct azx *chip = bus->private_data;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200880
Wu Fengguangfeb27342009-08-01 19:17:14 +0800881 chip->last_cmd[azx_command_addr(val)] = val;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100882 if (chip->single_cmd)
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100883 return azx_single_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100884 else
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100885 return azx_corb_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100886}
887
888/* get a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800889static unsigned int azx_get_response(struct hda_bus *bus,
890 unsigned int addr)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100891{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100892 struct azx *chip = bus->private_data;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100893 if (chip->single_cmd)
Wu Fengguangdeadff12009-08-01 18:45:16 +0800894 return azx_single_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100895 else
Wu Fengguangdeadff12009-08-01 18:45:16 +0800896 return azx_rirb_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100897}
898
Takashi Iwaicb53c622007-08-10 17:21:45 +0200899#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100900static void azx_power_notify(struct hda_bus *bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200901#endif
Takashi Iwai111d3af2006-02-16 18:17:58 +0100902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/* reset codec link */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100904static int azx_reset(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
906 int count;
907
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100908 if (!full_reset)
909 goto __skip;
910
Danny Tholene8a7f132007-09-11 21:41:56 +0200911 /* clear STATESTS */
912 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 /* reset controller */
915 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
916
917 count = 50;
918 while (azx_readb(chip, GCTL) && --count)
919 msleep(1);
920
921 /* delay for >= 100us for codec PLL to settle per spec
922 * Rev 0.9 section 5.5.1
923 */
924 msleep(1);
925
926 /* Bring controller out of reset */
927 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
928
929 count = 50;
Pavel Machek927fc862006-08-31 17:03:43 +0200930 while (!azx_readb(chip, GCTL) && --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 msleep(1);
932
Pavel Machek927fc862006-08-31 17:03:43 +0200933 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 msleep(1);
935
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100936 __skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 /* check to see if controller is ready */
Pavel Machek927fc862006-08-31 17:03:43 +0200938 if (!azx_readb(chip, GCTL)) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200939 snd_printd(SFX "azx_reset: controller not ready!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return -EBUSY;
941 }
942
Matt41e2fce2005-07-04 17:49:55 +0200943 /* Accept unsolicited responses */
Takashi Iwai1a696972009-11-07 09:49:04 +0100944 if (!chip->single_cmd)
945 azx_writel(chip, GCTL, azx_readl(chip, GCTL) |
946 ICH6_GCTL_UNSOL);
Matt41e2fce2005-07-04 17:49:55 +0200947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* detect codecs */
Pavel Machek927fc862006-08-31 17:03:43 +0200949 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 chip->codec_mask = azx_readw(chip, STATESTS);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200951 snd_printdd(SFX "codec_mask = 0x%x\n", chip->codec_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 }
953
954 return 0;
955}
956
957
958/*
959 * Lowlevel interface
960 */
961
962/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100963static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
965 /* enable controller CIE and GIE */
966 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
967 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
968}
969
970/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100971static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
973 int i;
974
975 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200976 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100977 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 azx_sd_writeb(azx_dev, SD_CTL,
979 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
980 }
981
982 /* disable SIE for all streams */
983 azx_writeb(chip, INTCTL, 0);
984
985 /* disable controller CIE and GIE */
986 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
987 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
988}
989
990/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100991static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
993 int i;
994
995 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200996 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100997 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
999 }
1000
1001 /* clear STATESTS */
1002 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
1003
1004 /* clear rirb status */
1005 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1006
1007 /* clear int status */
1008 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
1009}
1010
1011/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001012static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Joseph Chan0e153472008-08-26 14:38:03 +02001014 /*
1015 * Before stream start, initialize parameter
1016 */
1017 azx_dev->insufficient = 1;
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 /* enable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001020 azx_writel(chip, INTCTL,
1021 azx_readl(chip, INTCTL) | (1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 /* set DMA start and interrupt mask */
1023 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1024 SD_CTL_DMA_START | SD_INT_MASK);
1025}
1026
Takashi Iwai1dddab42009-03-18 15:15:37 +01001027/* stop DMA */
1028static void azx_stream_clear(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
1031 ~(SD_CTL_DMA_START | SD_INT_MASK));
1032 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
Takashi Iwai1dddab42009-03-18 15:15:37 +01001033}
1034
1035/* stop a stream */
1036static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
1037{
1038 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /* disable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001040 azx_writel(chip, INTCTL,
1041 azx_readl(chip, INTCTL) & ~(1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042}
1043
1044
1045/*
Takashi Iwaicb53c622007-08-10 17:21:45 +02001046 * reset and start the controller registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001048static void azx_init_chip(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001050 if (chip->initialized)
1051 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /* reset controller */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001054 azx_reset(chip, full_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 /* initialize interrupts */
1057 azx_int_clear(chip);
1058 azx_int_enable(chip);
1059
1060 /* initialize the codec command I/O */
Takashi Iwai1a696972009-11-07 09:49:04 +01001061 if (!chip->single_cmd)
1062 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001064 /* program the position buffer */
1065 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001066 azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +02001067
Takashi Iwaicb53c622007-08-10 17:21:45 +02001068 chip->initialized = 1;
1069}
1070
1071/*
1072 * initialize the PCI registers
1073 */
1074/* update bits in a PCI register byte */
1075static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
1076 unsigned char mask, unsigned char val)
1077{
1078 unsigned char data;
1079
1080 pci_read_config_byte(pci, reg, &data);
1081 data &= ~mask;
1082 data |= (val & mask);
1083 pci_write_config_byte(pci, reg, data);
1084}
1085
1086static void azx_init_pci(struct azx *chip)
1087{
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001088 unsigned short snoop;
1089
Takashi Iwaicb53c622007-08-10 17:21:45 +02001090 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
1091 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
1092 * Ensuring these bits are 0 clears playback static on some HD Audio
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001093 * codecs.
1094 * The PCI register TCSEL is defined in the Intel manuals.
Takashi Iwaicb53c622007-08-10 17:21:45 +02001095 */
Linus Torvalds46f2cc82011-05-27 19:45:28 -07001096 if (!(chip->driver_caps & AZX_DCAPS_NO_TCSEL)) {
Takashi Iwai9477c582011-05-25 09:11:37 +02001097 snd_printdd(SFX "Clearing TCSEL\n");
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001098 update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
Takashi Iwai9477c582011-05-25 09:11:37 +02001099 }
Takashi Iwaicb53c622007-08-10 17:21:45 +02001100
Takashi Iwai9477c582011-05-25 09:11:37 +02001101 /* For ATI SB450/600/700/800/900 and AMD Hudson azalia HD audio,
1102 * we need to enable snoop.
1103 */
1104 if (chip->driver_caps & AZX_DCAPS_ATI_SNOOP) {
1105 snd_printdd(SFX "Enabling ATI snoop\n");
Takashi Iwaicb53c622007-08-10 17:21:45 +02001106 update_pci_byte(chip->pci,
1107 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
1108 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
Takashi Iwai9477c582011-05-25 09:11:37 +02001109 }
1110
1111 /* For NVIDIA HDA, enable snoop */
1112 if (chip->driver_caps & AZX_DCAPS_NVIDIA_SNOOP) {
1113 snd_printdd(SFX "Enabling Nvidia snoop\n");
Takashi Iwaicb53c622007-08-10 17:21:45 +02001114 update_pci_byte(chip->pci,
1115 NVIDIA_HDA_TRANSREG_ADDR,
1116 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
Peer Chen320dcc32008-08-20 16:43:24 -07001117 update_pci_byte(chip->pci,
1118 NVIDIA_HDA_ISTRM_COH,
1119 0x01, NVIDIA_HDA_ENABLE_COHBIT);
1120 update_pci_byte(chip->pci,
1121 NVIDIA_HDA_OSTRM_COH,
1122 0x01, NVIDIA_HDA_ENABLE_COHBIT);
Takashi Iwai9477c582011-05-25 09:11:37 +02001123 }
1124
1125 /* Enable SCH/PCH snoop if needed */
1126 if (chip->driver_caps & AZX_DCAPS_SCH_SNOOP) {
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001127 pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
1128 if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001129 pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC,
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001130 snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
1131 pci_read_config_word(chip->pci,
1132 INTEL_SCH_HDA_DEVC, &snoop);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001133 snd_printdd(SFX "HDA snoop disabled, enabling ... %s\n",
1134 (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001135 ? "Failed" : "OK");
1136 }
Vinod Gda3fca22005-09-13 18:49:12 +02001137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138}
1139
1140
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001141static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
1142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143/*
1144 * interrupt handler
1145 */
David Howells7d12e782006-10-05 14:55:46 +01001146static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001148 struct azx *chip = dev_id;
1149 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 u32 status;
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001151 u8 sd_status;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001152 int i, ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 spin_lock(&chip->reg_lock);
1155
1156 status = azx_readl(chip, INTSTS);
1157 if (status == 0) {
1158 spin_unlock(&chip->reg_lock);
1159 return IRQ_NONE;
1160 }
1161
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001162 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 azx_dev = &chip->azx_dev[i];
1164 if (status & azx_dev->sd_int_sta_mask) {
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001165 sd_status = azx_sd_readb(azx_dev, SD_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001167 if (!azx_dev->substream || !azx_dev->running ||
1168 !(sd_status & SD_INT_COMPLETE))
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001169 continue;
1170 /* check whether this IRQ is really acceptable */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001171 ok = azx_position_ok(chip, azx_dev);
1172 if (ok == 1) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001173 azx_dev->irq_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 spin_unlock(&chip->reg_lock);
1175 snd_pcm_period_elapsed(azx_dev->substream);
1176 spin_lock(&chip->reg_lock);
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001177 } else if (ok == 0 && chip->bus && chip->bus->workq) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001178 /* bogus IRQ, process it later */
1179 azx_dev->irq_pending = 1;
Takashi Iwai6acaed32009-01-12 10:09:24 +01001180 queue_work(chip->bus->workq,
1181 &chip->irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 }
1183 }
1184 }
1185
1186 /* clear rirb int */
1187 status = azx_readb(chip, RIRBSTS);
1188 if (status & RIRB_INT_MASK) {
Takashi Iwai14d34f12010-10-21 09:03:25 +02001189 if (status & RIRB_INT_RESPONSE) {
Takashi Iwai9477c582011-05-25 09:11:37 +02001190 if (chip->driver_caps & AZX_DCAPS_RIRB_PRE_DELAY)
Takashi Iwai14d34f12010-10-21 09:03:25 +02001191 udelay(80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 azx_update_rirb(chip);
Takashi Iwai14d34f12010-10-21 09:03:25 +02001193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1195 }
1196
1197#if 0
1198 /* clear state status int */
1199 if (azx_readb(chip, STATESTS) & 0x04)
1200 azx_writeb(chip, STATESTS, 0x04);
1201#endif
1202 spin_unlock(&chip->reg_lock);
1203
1204 return IRQ_HANDLED;
1205}
1206
1207
1208/*
Takashi Iwai675f25d2008-06-10 17:53:20 +02001209 * set up a BDL entry
1210 */
1211static int setup_bdle(struct snd_pcm_substream *substream,
1212 struct azx_dev *azx_dev, u32 **bdlp,
1213 int ofs, int size, int with_ioc)
1214{
Takashi Iwai675f25d2008-06-10 17:53:20 +02001215 u32 *bdl = *bdlp;
1216
1217 while (size > 0) {
1218 dma_addr_t addr;
1219 int chunk;
1220
1221 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
1222 return -EINVAL;
1223
Takashi Iwai77a23f22008-08-21 13:00:13 +02001224 addr = snd_pcm_sgbuf_get_addr(substream, ofs);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001225 /* program the address field of the BDL entry */
1226 bdl[0] = cpu_to_le32((u32)addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001227 bdl[1] = cpu_to_le32(upper_32_bits(addr));
Takashi Iwai675f25d2008-06-10 17:53:20 +02001228 /* program the size field of the BDL entry */
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001229 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001230 bdl[2] = cpu_to_le32(chunk);
1231 /* program the IOC to enable interrupt
1232 * only when the whole fragment is processed
1233 */
1234 size -= chunk;
1235 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
1236 bdl += 4;
1237 azx_dev->frags++;
1238 ofs += chunk;
1239 }
1240 *bdlp = bdl;
1241 return ofs;
1242}
1243
1244/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * set up BDL entries
1246 */
Takashi Iwai555e2192008-06-10 17:53:34 +02001247static int azx_setup_periods(struct azx *chip,
1248 struct snd_pcm_substream *substream,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001249 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001251 u32 *bdl;
1252 int i, ofs, periods, period_bytes;
Takashi Iwai555e2192008-06-10 17:53:34 +02001253 int pos_adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 /* reset BDL address */
1256 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1257 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1258
Takashi Iwai97b71c92009-03-18 15:09:13 +01001259 period_bytes = azx_dev->period_bytes;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001260 periods = azx_dev->bufsize / period_bytes;
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001263 bdl = (u32 *)azx_dev->bdl.area;
1264 ofs = 0;
1265 azx_dev->frags = 0;
Takashi Iwai555e2192008-06-10 17:53:34 +02001266 pos_adj = bdl_pos_adj[chip->dev_index];
1267 if (pos_adj > 0) {
Takashi Iwai675f25d2008-06-10 17:53:20 +02001268 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001269 int pos_align = pos_adj;
Takashi Iwai555e2192008-06-10 17:53:34 +02001270 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001271 if (!pos_adj)
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001272 pos_adj = pos_align;
1273 else
1274 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
1275 pos_align;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001276 pos_adj = frames_to_bytes(runtime, pos_adj);
1277 if (pos_adj >= period_bytes) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001278 snd_printk(KERN_WARNING SFX "Too big adjustment %d\n",
Takashi Iwai555e2192008-06-10 17:53:34 +02001279 bdl_pos_adj[chip->dev_index]);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001280 pos_adj = 0;
1281 } else {
1282 ofs = setup_bdle(substream, azx_dev,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001283 &bdl, ofs, pos_adj,
1284 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001285 if (ofs < 0)
1286 goto error;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001287 }
Takashi Iwai555e2192008-06-10 17:53:34 +02001288 } else
1289 pos_adj = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001290 for (i = 0; i < periods; i++) {
1291 if (i == periods - 1 && pos_adj)
1292 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1293 period_bytes - pos_adj, 0);
1294 else
1295 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001296 period_bytes,
1297 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001298 if (ofs < 0)
1299 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001301 return 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001302
1303 error:
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001304 snd_printk(KERN_ERR SFX "Too many BDL entries: buffer=%d, period=%d\n",
Takashi Iwai675f25d2008-06-10 17:53:20 +02001305 azx_dev->bufsize, period_bytes);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001306 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307}
1308
Takashi Iwai1dddab42009-03-18 15:15:37 +01001309/* reset stream */
1310static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
1312 unsigned char val;
1313 int timeout;
1314
Takashi Iwai1dddab42009-03-18 15:15:37 +01001315 azx_stream_clear(chip, azx_dev);
1316
Takashi Iwaid01ce992007-07-27 16:52:19 +02001317 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1318 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 udelay(3);
1320 timeout = 300;
1321 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1322 --timeout)
1323 ;
1324 val &= ~SD_CTL_STREAM_RESET;
1325 azx_sd_writeb(azx_dev, SD_CTL, val);
1326 udelay(3);
1327
1328 timeout = 300;
1329 /* waiting for hardware to report that the stream is out of reset */
1330 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1331 --timeout)
1332 ;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001333
1334 /* reset first position - may not be synced with hw at this time */
1335 *azx_dev->posbuf = 0;
Takashi Iwai1dddab42009-03-18 15:15:37 +01001336}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Takashi Iwai1dddab42009-03-18 15:15:37 +01001338/*
1339 * set up the SD for streaming
1340 */
1341static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
1342{
1343 /* make sure the run bit is zero for SD */
1344 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 /* program the stream_tag */
1346 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001347 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1349
1350 /* program the length of samples in cyclic buffer */
1351 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1352
1353 /* program the stream format */
1354 /* this value needs to be the same as the one programmed */
1355 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1356
1357 /* program the stream LVI (last valid index) of the BDL */
1358 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1359
1360 /* program the BDL address */
1361 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001362 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /* upper BDL address */
Takashi Iwai766979e2008-06-13 20:53:56 +02001364 azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001366 /* enable the position buffer */
David Henningsson4cb36312010-09-30 10:12:50 +02001367 if (chip->position_fix[0] != POS_FIX_LPIB ||
1368 chip->position_fix[1] != POS_FIX_LPIB) {
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001369 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1370 azx_writel(chip, DPLBASE,
1371 (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
1372 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001373
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001375 azx_sd_writel(azx_dev, SD_CTL,
1376 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 return 0;
1379}
1380
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001381/*
1382 * Probe the given codec address
1383 */
1384static int probe_codec(struct azx *chip, int addr)
1385{
1386 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
1387 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
1388 unsigned int res;
1389
Wu Fengguanga678cde2009-08-01 18:46:46 +08001390 mutex_lock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001391 chip->probing = 1;
1392 azx_send_cmd(chip->bus, cmd);
Wu Fengguangdeadff12009-08-01 18:45:16 +08001393 res = azx_get_response(chip->bus, addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001394 chip->probing = 0;
Wu Fengguanga678cde2009-08-01 18:46:46 +08001395 mutex_unlock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001396 if (res == -1)
1397 return -EIO;
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001398 snd_printdd(SFX "codec #%d probed OK\n", addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001399 return 0;
1400}
1401
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001402static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1403 struct hda_pcm *cpcm);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001404static void azx_stop_chip(struct azx *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Takashi Iwai8dd78332009-06-02 01:16:07 +02001406static void azx_bus_reset(struct hda_bus *bus)
1407{
1408 struct azx *chip = bus->private_data;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001409
1410 bus->in_reset = 1;
1411 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001412 azx_init_chip(chip, 1);
Alexander Beregalov65f75982009-06-04 13:46:16 +04001413#ifdef CONFIG_PM
Takashi Iwai8dd78332009-06-02 01:16:07 +02001414 if (chip->initialized) {
Alexander Beregalov65f75982009-06-04 13:46:16 +04001415 int i;
1416
Takashi Iwaic8936222010-01-28 17:08:53 +01001417 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai8dd78332009-06-02 01:16:07 +02001418 snd_pcm_suspend_all(chip->pcm[i]);
1419 snd_hda_suspend(chip->bus);
1420 snd_hda_resume(chip->bus);
1421 }
Alexander Beregalov65f75982009-06-04 13:46:16 +04001422#endif
Takashi Iwai8dd78332009-06-02 01:16:07 +02001423 bus->in_reset = 0;
1424}
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426/*
1427 * Codec initialization
1428 */
1429
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001430/* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1431static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
Wei Ni7445dfc2010-03-03 15:05:53 +08001432 [AZX_DRIVER_NVIDIA] = 8,
Kailang Yangf2690022008-05-27 11:44:55 +02001433 [AZX_DRIVER_TERA] = 1,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001434};
1435
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001436static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437{
1438 struct hda_bus_template bus_temp;
Takashi Iwai34c25352008-10-28 11:38:58 +01001439 int c, codecs, err;
1440 int max_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 memset(&bus_temp, 0, sizeof(bus_temp));
1443 bus_temp.private_data = chip;
1444 bus_temp.modelname = model;
1445 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001446 bus_temp.ops.command = azx_send_cmd;
1447 bus_temp.ops.get_response = azx_get_response;
Takashi Iwai176d5332008-07-30 15:01:44 +02001448 bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001449 bus_temp.ops.bus_reset = azx_bus_reset;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001450#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai11cd41b2008-11-28 07:22:18 +01001451 bus_temp.power_save = &power_save;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001452 bus_temp.ops.pm_notify = azx_power_notify;
1453#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Takashi Iwaid01ce992007-07-27 16:52:19 +02001455 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1456 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 return err;
1458
Takashi Iwai9477c582011-05-25 09:11:37 +02001459 if (chip->driver_caps & AZX_DCAPS_RIRB_DELAY) {
1460 snd_printd(SFX "Enable delay in RIRB handling\n");
Wei Nidc9c8e22008-09-26 13:55:56 +08001461 chip->bus->needs_damn_long_delay = 1;
Takashi Iwai9477c582011-05-25 09:11:37 +02001462 }
Wei Nidc9c8e22008-09-26 13:55:56 +08001463
Takashi Iwai34c25352008-10-28 11:38:58 +01001464 codecs = 0;
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001465 max_slots = azx_max_codecs[chip->driver_type];
1466 if (!max_slots)
Wei Ni7445dfc2010-03-03 15:05:53 +08001467 max_slots = AZX_DEFAULT_CODECS;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001468
1469 /* First try to probe all given codec slots */
1470 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001471 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001472 if (probe_codec(chip, c) < 0) {
1473 /* Some BIOSen give you wrong codec addresses
1474 * that don't exist
1475 */
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001476 snd_printk(KERN_WARNING SFX
1477 "Codec #%d probe error; "
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001478 "disabling it...\n", c);
1479 chip->codec_mask &= ~(1 << c);
1480 /* More badly, accessing to a non-existing
1481 * codec often screws up the controller chip,
Paul Menzel24481582010-02-08 20:37:26 +01001482 * and disturbs the further communications.
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001483 * Thus if an error occurs during probing,
1484 * better to reset the controller chip to
1485 * get back to the sanity state.
1486 */
1487 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001488 azx_init_chip(chip, 1);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001489 }
1490 }
1491 }
1492
Takashi Iwaid507cd62011-04-26 15:25:02 +02001493 /* AMD chipsets often cause the communication stalls upon certain
1494 * sequence like the pin-detection. It seems that forcing the synced
1495 * access works around the stall. Grrr...
1496 */
Takashi Iwai9477c582011-05-25 09:11:37 +02001497 if (chip->driver_caps & AZX_DCAPS_SYNC_WRITE) {
1498 snd_printd(SFX "Enable sync_write for stable communication\n");
Takashi Iwaid507cd62011-04-26 15:25:02 +02001499 chip->bus->sync_write = 1;
1500 chip->bus->allow_bus_reset = 1;
1501 }
1502
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001503 /* Then create codec instances */
Takashi Iwai34c25352008-10-28 11:38:58 +01001504 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001505 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001506 struct hda_codec *codec;
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001507 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 if (err < 0)
1509 continue;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01001510 codec->beep_mode = chip->beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 codecs++;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001512 }
1513 }
1514 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1516 return -ENXIO;
1517 }
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001518 return 0;
1519}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001521/* configure each codec instance */
1522static int __devinit azx_codec_configure(struct azx *chip)
1523{
1524 struct hda_codec *codec;
1525 list_for_each_entry(codec, &chip->bus->codec_list, list) {
1526 snd_hda_codec_configure(codec);
1527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return 0;
1529}
1530
1531
1532/*
1533 * PCM support
1534 */
1535
1536/* assign a stream for the PCM */
Wu Fengguangef18bed2009-12-25 13:14:27 +08001537static inline struct azx_dev *
1538azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001540 int dev, i, nums;
Wu Fengguangef18bed2009-12-25 13:14:27 +08001541 struct azx_dev *res = NULL;
1542
1543 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001544 dev = chip->playback_index_offset;
1545 nums = chip->playback_streams;
1546 } else {
1547 dev = chip->capture_index_offset;
1548 nums = chip->capture_streams;
1549 }
1550 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001551 if (!chip->azx_dev[dev].opened) {
Wu Fengguangef18bed2009-12-25 13:14:27 +08001552 res = &chip->azx_dev[dev];
1553 if (res->device == substream->pcm->device)
1554 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 }
Wu Fengguangef18bed2009-12-25 13:14:27 +08001556 if (res) {
1557 res->opened = 1;
1558 res->device = substream->pcm->device;
1559 }
1560 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
1563/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001564static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
1566 azx_dev->opened = 0;
1567}
1568
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001569static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001570 .info = (SNDRV_PCM_INFO_MMAP |
1571 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1573 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001574 /* No full-resume yet implemented */
1575 /* SNDRV_PCM_INFO_RESUME |*/
Takashi Iwai850f0e52008-03-18 17:11:05 +01001576 SNDRV_PCM_INFO_PAUSE |
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001577 SNDRV_PCM_INFO_SYNC_START |
1578 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1580 .rates = SNDRV_PCM_RATE_48000,
1581 .rate_min = 48000,
1582 .rate_max = 48000,
1583 .channels_min = 2,
1584 .channels_max = 2,
1585 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1586 .period_bytes_min = 128,
1587 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1588 .periods_min = 2,
1589 .periods_max = AZX_MAX_FRAG,
1590 .fifo_size = 0,
1591};
1592
1593struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001594 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 struct hda_codec *codec;
1596 struct hda_pcm_stream *hinfo[2];
1597};
1598
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001599static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600{
1601 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1602 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001603 struct azx *chip = apcm->chip;
1604 struct azx_dev *azx_dev;
1605 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 unsigned long flags;
1607 int err;
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05001608 int buff_step;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Ingo Molnar62932df2006-01-16 16:34:20 +01001610 mutex_lock(&chip->open_mutex);
Wu Fengguangef18bed2009-12-25 13:14:27 +08001611 azx_dev = azx_assign_device(chip, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001613 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return -EBUSY;
1615 }
1616 runtime->hw = azx_pcm_hw;
1617 runtime->hw.channels_min = hinfo->channels_min;
1618 runtime->hw.channels_max = hinfo->channels_max;
1619 runtime->hw.formats = hinfo->formats;
1620 runtime->hw.rates = hinfo->rates;
1621 snd_pcm_limit_hw_rates(runtime);
1622 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05001623 if (align_buffer_size)
1624 /* constrain buffer sizes to be multiple of 128
1625 bytes. This is more efficient in terms of memory
1626 access but isn't required by the HDA spec and
1627 prevents users from specifying exact period/buffer
1628 sizes. For example for 44.1kHz, a period size set
1629 to 20ms will be rounded to 19.59ms. */
1630 buff_step = 128;
1631 else
1632 /* Don't enforce steps on buffer sizes, still need to
1633 be multiple of 4 bytes (HDA spec). Tested on Intel
1634 HDA controllers, may not work on all devices where
1635 option needs to be disabled */
1636 buff_step = 4;
1637
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001638 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05001639 buff_step);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001640 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05001641 buff_step);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001642 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001643 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1644 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001646 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001647 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return err;
1649 }
Takashi Iwai70d321e2009-07-03 23:06:45 +02001650 snd_pcm_limit_hw_rates(runtime);
Takashi Iwaiaba66532009-07-05 11:44:46 +02001651 /* sanity check */
1652 if (snd_BUG_ON(!runtime->hw.channels_min) ||
1653 snd_BUG_ON(!runtime->hw.channels_max) ||
1654 snd_BUG_ON(!runtime->hw.formats) ||
1655 snd_BUG_ON(!runtime->hw.rates)) {
1656 azx_release_device(azx_dev);
1657 hinfo->ops.close(hinfo, apcm->codec, substream);
1658 snd_hda_power_down(apcm->codec);
1659 mutex_unlock(&chip->open_mutex);
1660 return -EINVAL;
1661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 spin_lock_irqsave(&chip->reg_lock, flags);
1663 azx_dev->substream = substream;
1664 azx_dev->running = 0;
1665 spin_unlock_irqrestore(&chip->reg_lock, flags);
1666
1667 runtime->private_data = azx_dev;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001668 snd_pcm_set_sync(substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001669 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return 0;
1671}
1672
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001673static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
1675 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1676 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001677 struct azx *chip = apcm->chip;
1678 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 unsigned long flags;
1680
Ingo Molnar62932df2006-01-16 16:34:20 +01001681 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 spin_lock_irqsave(&chip->reg_lock, flags);
1683 azx_dev->substream = NULL;
1684 azx_dev->running = 0;
1685 spin_unlock_irqrestore(&chip->reg_lock, flags);
1686 azx_release_device(azx_dev);
1687 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001688 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001689 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return 0;
1691}
1692
Takashi Iwaid01ce992007-07-27 16:52:19 +02001693static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1694 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Takashi Iwai97b71c92009-03-18 15:09:13 +01001696 struct azx_dev *azx_dev = get_azx_dev(substream);
1697
1698 azx_dev->bufsize = 0;
1699 azx_dev->period_bytes = 0;
1700 azx_dev->format_val = 0;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001701 return snd_pcm_lib_malloc_pages(substream,
1702 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001705static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
1707 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001708 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1710
1711 /* reset BDL address */
1712 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1713 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1714 azx_sd_writel(azx_dev, SD_CTL, 0);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001715 azx_dev->bufsize = 0;
1716 azx_dev->period_bytes = 0;
1717 azx_dev->format_val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Takashi Iwaieb541332010-08-06 13:48:11 +02001719 snd_hda_codec_cleanup(apcm->codec, hinfo, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
1721 return snd_pcm_lib_free_pages(substream);
1722}
1723
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001724static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
1726 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001727 struct azx *chip = apcm->chip;
1728 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001730 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001731 unsigned int bufsize, period_bytes, format_val, stream_tag;
Takashi Iwai97b71c92009-03-18 15:09:13 +01001732 int err;
Stephen Warren7c935972011-06-01 11:14:17 -06001733 struct hda_spdif_out *spdif =
1734 snd_hda_spdif_out_of_nid(apcm->codec, hinfo->nid);
1735 unsigned short ctls = spdif ? spdif->ctls : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001737 azx_stream_reset(chip, azx_dev);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001738 format_val = snd_hda_calc_stream_format(runtime->rate,
1739 runtime->channels,
1740 runtime->format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03001741 hinfo->maxbps,
Stephen Warren7c935972011-06-01 11:14:17 -06001742 ctls);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001743 if (!format_val) {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001744 snd_printk(KERN_ERR SFX
1745 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 runtime->rate, runtime->channels, runtime->format);
1747 return -EINVAL;
1748 }
1749
Takashi Iwai97b71c92009-03-18 15:09:13 +01001750 bufsize = snd_pcm_lib_buffer_bytes(substream);
1751 period_bytes = snd_pcm_lib_period_bytes(substream);
1752
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001753 snd_printdd(SFX "azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
Takashi Iwai97b71c92009-03-18 15:09:13 +01001754 bufsize, format_val);
1755
1756 if (bufsize != azx_dev->bufsize ||
1757 period_bytes != azx_dev->period_bytes ||
1758 format_val != azx_dev->format_val) {
1759 azx_dev->bufsize = bufsize;
1760 azx_dev->period_bytes = period_bytes;
1761 azx_dev->format_val = format_val;
1762 err = azx_setup_periods(chip, substream, azx_dev);
1763 if (err < 0)
1764 return err;
1765 }
1766
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001767 /* wallclk has 24Mhz clock source */
1768 azx_dev->period_wallclk = (((runtime->period_size * 24000) /
1769 runtime->rate) * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 azx_setup_controller(chip, azx_dev);
1771 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1772 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1773 else
1774 azx_dev->fifo_size = 0;
1775
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001776 stream_tag = azx_dev->stream_tag;
1777 /* CA-IBG chips need the playback stream starting from 1 */
Takashi Iwai9477c582011-05-25 09:11:37 +02001778 if ((chip->driver_caps & AZX_DCAPS_CTX_WORKAROUND) &&
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001779 stream_tag > chip->capture_streams)
1780 stream_tag -= chip->capture_streams;
1781 return snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag,
Takashi Iwaieb541332010-08-06 13:48:11 +02001782 azx_dev->format_val, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
1784
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001785static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
1787 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001788 struct azx *chip = apcm->chip;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001789 struct azx_dev *azx_dev;
1790 struct snd_pcm_substream *s;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001791 int rstart = 0, start, nsync = 0, sbits = 0;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001792 int nwait, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 switch (cmd) {
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001795 case SNDRV_PCM_TRIGGER_START:
1796 rstart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1798 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001799 start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 break;
1801 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001802 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001804 start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 break;
1806 default:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001807 return -EINVAL;
1808 }
1809
1810 snd_pcm_group_for_each_entry(s, substream) {
1811 if (s->pcm->card != substream->pcm->card)
1812 continue;
1813 azx_dev = get_azx_dev(s);
1814 sbits |= 1 << azx_dev->index;
1815 nsync++;
1816 snd_pcm_trigger_done(s, substream);
1817 }
1818
1819 spin_lock(&chip->reg_lock);
1820 if (nsync > 1) {
1821 /* first, set SYNC bits of corresponding streams */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02001822 if (chip->driver_caps & AZX_DCAPS_OLD_SSYNC)
1823 azx_writel(chip, OLD_SSYNC,
1824 azx_readl(chip, OLD_SSYNC) | sbits);
1825 else
1826 azx_writel(chip, SSYNC, azx_readl(chip, SSYNC) | sbits);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001827 }
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);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001832 if (start) {
1833 azx_dev->start_wallclk = azx_readl(chip, WALLCLK);
1834 if (!rstart)
1835 azx_dev->start_wallclk -=
1836 azx_dev->period_wallclk;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001837 azx_stream_start(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001838 } else {
Takashi Iwai850f0e52008-03-18 17:11:05 +01001839 azx_stream_stop(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001840 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001841 azx_dev->running = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843 spin_unlock(&chip->reg_lock);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001844 if (start) {
1845 if (nsync == 1)
1846 return 0;
1847 /* wait until all FIFOs get ready */
1848 for (timeout = 5000; timeout; timeout--) {
1849 nwait = 0;
1850 snd_pcm_group_for_each_entry(s, substream) {
1851 if (s->pcm->card != substream->pcm->card)
1852 continue;
1853 azx_dev = get_azx_dev(s);
1854 if (!(azx_sd_readb(azx_dev, SD_STS) &
1855 SD_STS_FIFO_READY))
1856 nwait++;
1857 }
1858 if (!nwait)
1859 break;
1860 cpu_relax();
1861 }
1862 } else {
1863 /* wait until all RUN bits are cleared */
1864 for (timeout = 5000; timeout; timeout--) {
1865 nwait = 0;
1866 snd_pcm_group_for_each_entry(s, substream) {
1867 if (s->pcm->card != substream->pcm->card)
1868 continue;
1869 azx_dev = get_azx_dev(s);
1870 if (azx_sd_readb(azx_dev, SD_CTL) &
1871 SD_CTL_DMA_START)
1872 nwait++;
1873 }
1874 if (!nwait)
1875 break;
1876 cpu_relax();
1877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001879 if (nsync > 1) {
1880 spin_lock(&chip->reg_lock);
1881 /* reset SYNC bits */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02001882 if (chip->driver_caps & AZX_DCAPS_OLD_SSYNC)
1883 azx_writel(chip, OLD_SSYNC,
1884 azx_readl(chip, OLD_SSYNC) & ~sbits);
1885 else
1886 azx_writel(chip, SSYNC, azx_readl(chip, SSYNC) & ~sbits);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001887 spin_unlock(&chip->reg_lock);
1888 }
1889 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890}
1891
Joseph Chan0e153472008-08-26 14:38:03 +02001892/* get the current DMA position with correction on VIA chips */
1893static unsigned int azx_via_get_position(struct azx *chip,
1894 struct azx_dev *azx_dev)
1895{
1896 unsigned int link_pos, mini_pos, bound_pos;
1897 unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
1898 unsigned int fifo_size;
1899
1900 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
Takashi Iwaib4a655e2011-06-07 12:26:56 +02001901 if (azx_dev->substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Joseph Chan0e153472008-08-26 14:38:03 +02001902 /* Playback, no problem using link position */
1903 return link_pos;
1904 }
1905
1906 /* Capture */
1907 /* For new chipset,
1908 * use mod to get the DMA position just like old chipset
1909 */
1910 mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
1911 mod_dma_pos %= azx_dev->period_bytes;
1912
1913 /* azx_dev->fifo_size can't get FIFO size of in stream.
1914 * Get from base address + offset.
1915 */
1916 fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
1917
1918 if (azx_dev->insufficient) {
1919 /* Link position never gather than FIFO size */
1920 if (link_pos <= fifo_size)
1921 return 0;
1922
1923 azx_dev->insufficient = 0;
1924 }
1925
1926 if (link_pos <= fifo_size)
1927 mini_pos = azx_dev->bufsize + link_pos - fifo_size;
1928 else
1929 mini_pos = link_pos - fifo_size;
1930
1931 /* Find nearest previous boudary */
1932 mod_mini_pos = mini_pos % azx_dev->period_bytes;
1933 mod_link_pos = link_pos % azx_dev->period_bytes;
1934 if (mod_link_pos >= fifo_size)
1935 bound_pos = link_pos - mod_link_pos;
1936 else if (mod_dma_pos >= mod_mini_pos)
1937 bound_pos = mini_pos - mod_mini_pos;
1938 else {
1939 bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
1940 if (bound_pos >= azx_dev->bufsize)
1941 bound_pos = 0;
1942 }
1943
1944 /* Calculate real DMA position we want */
1945 return bound_pos + mod_dma_pos;
1946}
1947
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001948static unsigned int azx_get_position(struct azx *chip,
1949 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 unsigned int pos;
David Henningsson4cb36312010-09-30 10:12:50 +02001952 int stream = azx_dev->substream->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
David Henningsson4cb36312010-09-30 10:12:50 +02001954 switch (chip->position_fix[stream]) {
1955 case POS_FIX_LPIB:
1956 /* read LPIB */
1957 pos = azx_sd_readl(azx_dev, SD_LPIB);
1958 break;
1959 case POS_FIX_VIACOMBO:
Joseph Chan0e153472008-08-26 14:38:03 +02001960 pos = azx_via_get_position(chip, azx_dev);
David Henningsson4cb36312010-09-30 10:12:50 +02001961 break;
1962 default:
1963 /* use the position buffer */
1964 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwaia8103642011-06-07 12:23:23 +02001965 if (chip->position_fix[stream] == POS_FIX_AUTO) {
1966 if (!pos || pos == (u32)-1) {
1967 printk(KERN_WARNING
1968 "hda-intel: Invalid position buffer, "
1969 "using LPIB read method instead.\n");
1970 chip->position_fix[stream] = POS_FIX_LPIB;
1971 pos = azx_sd_readl(azx_dev, SD_LPIB);
1972 } else
1973 chip->position_fix[stream] = POS_FIX_POSBUF;
1974 }
1975 break;
Takashi Iwaic74db862005-05-12 14:26:27 +02001976 }
David Henningsson4cb36312010-09-30 10:12:50 +02001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (pos >= azx_dev->bufsize)
1979 pos = 0;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001980 return pos;
1981}
1982
1983static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
1984{
1985 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1986 struct azx *chip = apcm->chip;
1987 struct azx_dev *azx_dev = get_azx_dev(substream);
1988 return bytes_to_frames(substream->runtime,
1989 azx_get_position(chip, azx_dev));
1990}
1991
1992/*
1993 * Check whether the current DMA position is acceptable for updating
1994 * periods. Returns non-zero if it's OK.
1995 *
1996 * Many HD-audio controllers appear pretty inaccurate about
1997 * the update-IRQ timing. The IRQ is issued before actually the
1998 * data is processed. So, we need to process it afterwords in a
1999 * workqueue.
2000 */
2001static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
2002{
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002003 u32 wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002004 unsigned int pos;
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002005 int stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002006
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02002007 wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk;
2008 if (wallclk < (azx_dev->period_wallclk * 2) / 3)
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02002009 return -1; /* bogus (too early) interrupt */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02002010
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002011 stream = azx_dev->substream->stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002012 pos = azx_get_position(chip, azx_dev);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002013
Takashi Iwaid6d8bf52010-02-12 18:17:06 +01002014 if (WARN_ONCE(!azx_dev->period_bytes,
2015 "hda-intel: zero azx_dev->period_bytes"))
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02002016 return -1; /* this shouldn't happen! */
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02002017 if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02002018 pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
2019 /* NG - it's below the first next period boundary */
2020 return bdl_pos_adj[chip->dev_index] ? 0 : -1;
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02002021 azx_dev->start_wallclk += wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002022 return 1; /* OK, it's fine */
2023}
2024
2025/*
2026 * The work for pending PCM period updates.
2027 */
2028static void azx_irq_pending_work(struct work_struct *work)
2029{
2030 struct azx *chip = container_of(work, struct azx, irq_pending_work);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002031 int i, pending, ok;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002032
Takashi Iwaia6a950a2008-06-10 17:53:35 +02002033 if (!chip->irq_pending_warned) {
2034 printk(KERN_WARNING
2035 "hda-intel: IRQ timing workaround is activated "
2036 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
2037 chip->card->number);
2038 chip->irq_pending_warned = 1;
2039 }
2040
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002041 for (;;) {
2042 pending = 0;
2043 spin_lock_irq(&chip->reg_lock);
2044 for (i = 0; i < chip->num_streams; i++) {
2045 struct azx_dev *azx_dev = &chip->azx_dev[i];
2046 if (!azx_dev->irq_pending ||
2047 !azx_dev->substream ||
2048 !azx_dev->running)
2049 continue;
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002050 ok = azx_position_ok(chip, azx_dev);
2051 if (ok > 0) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002052 azx_dev->irq_pending = 0;
2053 spin_unlock(&chip->reg_lock);
2054 snd_pcm_period_elapsed(azx_dev->substream);
2055 spin_lock(&chip->reg_lock);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02002056 } else if (ok < 0) {
2057 pending = 0; /* too early */
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002058 } else
2059 pending++;
2060 }
2061 spin_unlock_irq(&chip->reg_lock);
2062 if (!pending)
2063 return;
Takashi Iwai08af4952010-08-03 14:39:04 +02002064 msleep(1);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002065 }
2066}
2067
2068/* clear irq_pending flags and assure no on-going workq */
2069static void azx_clear_irq_pending(struct azx *chip)
2070{
2071 int i;
2072
2073 spin_lock_irq(&chip->reg_lock);
2074 for (i = 0; i < chip->num_streams; i++)
2075 chip->azx_dev[i].irq_pending = 0;
2076 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077}
2078
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002079static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 .open = azx_pcm_open,
2081 .close = azx_pcm_close,
2082 .ioctl = snd_pcm_lib_ioctl,
2083 .hw_params = azx_pcm_hw_params,
2084 .hw_free = azx_pcm_hw_free,
2085 .prepare = azx_pcm_prepare,
2086 .trigger = azx_pcm_trigger,
2087 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002088 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089};
2090
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002091static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
Takashi Iwai176d5332008-07-30 15:01:44 +02002093 struct azx_pcm *apcm = pcm->private_data;
2094 if (apcm) {
2095 apcm->chip->pcm[pcm->device] = NULL;
2096 kfree(apcm);
2097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098}
2099
Takashi Iwaiacfa6342011-07-12 17:27:46 +02002100#define MAX_PREALLOC_SIZE (32 * 1024 * 1024)
2101
Takashi Iwai176d5332008-07-30 15:01:44 +02002102static int
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002103azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
2104 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002106 struct azx *chip = bus->private_data;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002107 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 struct azx_pcm *apcm;
Takashi Iwai176d5332008-07-30 15:01:44 +02002109 int pcm_dev = cpcm->device;
Takashi Iwaiacfa6342011-07-12 17:27:46 +02002110 unsigned int size;
Takashi Iwai176d5332008-07-30 15:01:44 +02002111 int s, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
Takashi Iwaic8936222010-01-28 17:08:53 +01002113 if (pcm_dev >= HDA_MAX_PCMS) {
Takashi Iwai176d5332008-07-30 15:01:44 +02002114 snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
2115 pcm_dev);
Takashi Iwaida3cec32008-08-08 17:12:14 +02002116 return -EINVAL;
Takashi Iwai176d5332008-07-30 15:01:44 +02002117 }
2118 if (chip->pcm[pcm_dev]) {
2119 snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
2120 return -EBUSY;
2121 }
2122 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
2123 cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
2124 cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 &pcm);
2126 if (err < 0)
2127 return err;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002128 strlcpy(pcm->name, cpcm->name, sizeof(pcm->name));
Takashi Iwai176d5332008-07-30 15:01:44 +02002129 apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 if (apcm == NULL)
2131 return -ENOMEM;
2132 apcm->chip = chip;
2133 apcm->codec = codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 pcm->private_data = apcm;
2135 pcm->private_free = azx_pcm_free;
Takashi Iwai176d5332008-07-30 15:01:44 +02002136 if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
2137 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
2138 chip->pcm[pcm_dev] = pcm;
2139 cpcm->pcm = pcm;
2140 for (s = 0; s < 2; s++) {
2141 apcm->hinfo[s] = &cpcm->stream[s];
2142 if (cpcm->stream[s].substreams)
2143 snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
2144 }
2145 /* buffer pre-allocation */
Takashi Iwaiacfa6342011-07-12 17:27:46 +02002146 size = CONFIG_SND_HDA_PREALLOC_SIZE * 1024;
2147 if (size > MAX_PREALLOC_SIZE)
2148 size = MAX_PREALLOC_SIZE;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002149 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 snd_dma_pci_data(chip->pci),
Takashi Iwaiacfa6342011-07-12 17:27:46 +02002151 size, MAX_PREALLOC_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 return 0;
2153}
2154
2155/*
2156 * mixer creation - all stuff is implemented in hda module
2157 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002158static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
2160 return snd_hda_build_controls(chip->bus);
2161}
2162
2163
2164/*
2165 * initialize SD streams
2166 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002167static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 int i;
2170
2171 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02002172 * assign the starting bdl address to each stream (device)
2173 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002175 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002176 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02002177 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
2179 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
2180 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
2181 azx_dev->sd_int_sta_mask = 1 << i;
2182 /* stream tag: must be non-zero and unique */
2183 azx_dev->index = i;
2184 azx_dev->stream_tag = i + 1;
2185 }
2186
2187 return 0;
2188}
2189
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002190static int azx_acquire_irq(struct azx *chip, int do_disconnect)
2191{
Takashi Iwai437a5a42006-11-21 12:14:23 +01002192 if (request_irq(chip->pci->irq, azx_interrupt,
2193 chip->msi ? 0 : IRQF_SHARED,
Takashi Iwai934c2b62011-06-10 16:36:37 +02002194 KBUILD_MODNAME, chip)) {
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002195 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
2196 "disabling device\n", chip->pci->irq);
2197 if (do_disconnect)
2198 snd_card_disconnect(chip->card);
2199 return -1;
2200 }
2201 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01002202 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002203 return 0;
2204}
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Takashi Iwaicb53c622007-08-10 17:21:45 +02002207static void azx_stop_chip(struct azx *chip)
2208{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002209 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002210 return;
2211
2212 /* disable interrupts */
2213 azx_int_disable(chip);
2214 azx_int_clear(chip);
2215
2216 /* disable CORB/RIRB */
2217 azx_free_cmd_io(chip);
2218
2219 /* disable position buffer */
2220 azx_writel(chip, DPLBASE, 0);
2221 azx_writel(chip, DPUBASE, 0);
2222
2223 chip->initialized = 0;
2224}
2225
2226#ifdef CONFIG_SND_HDA_POWER_SAVE
2227/* power-up/down the controller */
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002228static void azx_power_notify(struct hda_bus *bus)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002229{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002230 struct azx *chip = bus->private_data;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002231 struct hda_codec *c;
2232 int power_on = 0;
2233
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002234 list_for_each_entry(c, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002235 if (c->power_on) {
2236 power_on = 1;
2237 break;
2238 }
2239 }
2240 if (power_on)
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002241 azx_init_chip(chip, 1);
Wu Fengguang0287d972009-12-11 20:15:11 +08002242 else if (chip->running && power_save_controller &&
2243 !bus->power_keep_link_on)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002244 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002245}
Takashi Iwai5c0b9be2008-12-11 11:47:17 +01002246#endif /* CONFIG_SND_HDA_POWER_SAVE */
2247
2248#ifdef CONFIG_PM
2249/*
2250 * power management
2251 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002252
2253static int snd_hda_codecs_inuse(struct hda_bus *bus)
2254{
2255 struct hda_codec *codec;
2256
2257 list_for_each_entry(codec, &bus->codec_list, list) {
2258 if (snd_hda_codec_needs_resume(codec))
2259 return 1;
2260 }
2261 return 0;
2262}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002263
Takashi Iwai421a1252005-11-17 16:11:09 +01002264static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265{
Takashi Iwai421a1252005-11-17 16:11:09 +01002266 struct snd_card *card = pci_get_drvdata(pci);
2267 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 int i;
2269
Takashi Iwai421a1252005-11-17 16:11:09 +01002270 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002271 azx_clear_irq_pending(chip);
Takashi Iwaic8936222010-01-28 17:08:53 +01002272 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01002273 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002274 if (chip->initialized)
Takashi Iwai8dd78332009-06-02 01:16:07 +02002275 snd_hda_suspend(chip->bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002276 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002277 if (chip->irq >= 0) {
Takashi Iwai43001c92006-09-08 12:30:03 +02002278 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002279 chip->irq = -1;
2280 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002281 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02002282 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01002283 pci_disable_device(pci);
2284 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002285 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 return 0;
2287}
2288
Takashi Iwai421a1252005-11-17 16:11:09 +01002289static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
Takashi Iwai421a1252005-11-17 16:11:09 +01002291 struct snd_card *card = pci_get_drvdata(pci);
2292 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Takashi Iwaid14a7e02009-02-16 10:13:03 +01002294 pci_set_power_state(pci, PCI_D0);
2295 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002296 if (pci_enable_device(pci) < 0) {
2297 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
2298 "disabling device\n");
2299 snd_card_disconnect(card);
2300 return -EIO;
2301 }
2302 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002303 if (chip->msi)
2304 if (pci_enable_msi(pci) < 0)
2305 chip->msi = 0;
2306 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02002307 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002308 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002309
2310 if (snd_hda_codecs_inuse(chip->bus))
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002311 azx_init_chip(chip, 1);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002312
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01002314 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 return 0;
2316}
2317#endif /* CONFIG_PM */
2318
2319
2320/*
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002321 * reboot notifier for hang-up problem at power-down
2322 */
2323static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
2324{
2325 struct azx *chip = container_of(nb, struct azx, reboot_notifier);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01002326 snd_hda_bus_reboot_notify(chip->bus);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002327 azx_stop_chip(chip);
2328 return NOTIFY_OK;
2329}
2330
2331static void azx_notifier_register(struct azx *chip)
2332{
2333 chip->reboot_notifier.notifier_call = azx_halt;
2334 register_reboot_notifier(&chip->reboot_notifier);
2335}
2336
2337static void azx_notifier_unregister(struct azx *chip)
2338{
2339 if (chip->reboot_notifier.notifier_call)
2340 unregister_reboot_notifier(&chip->reboot_notifier);
2341}
2342
2343/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 * destructor
2345 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002346static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002348 int i;
2349
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002350 azx_notifier_unregister(chip);
2351
Takashi Iwaice43fba2005-05-30 20:33:44 +02002352 if (chip->initialized) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002353 azx_clear_irq_pending(chip);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002354 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002356 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 }
2358
Jeff Garzikf000fd82008-04-22 13:50:34 +02002359 if (chip->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 free_irq(chip->irq, (void*)chip);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002361 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02002362 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02002363 if (chip->remap_addr)
2364 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002366 if (chip->azx_dev) {
2367 for (i = 0; i < chip->num_streams; i++)
2368 if (chip->azx_dev[i].bdl.area)
2369 snd_dma_free_pages(&chip->azx_dev[i].bdl);
2370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 if (chip->rb.area)
2372 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (chip->posbuf.area)
2374 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 pci_release_regions(chip->pci);
2376 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002377 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 kfree(chip);
2379
2380 return 0;
2381}
2382
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002383static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384{
2385 return azx_free(device->device_data);
2386}
2387
2388/*
Takashi Iwai3372a152007-02-01 15:46:50 +01002389 * white/black-listing for position_fix
2390 */
Ralf Baechle623ec042007-03-13 15:29:47 +01002391static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002392 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
2393 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
Takashi Iwai2f703e72009-12-01 14:17:37 +01002394 SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002395 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
Daniel T Chendd37f8e2010-05-30 01:17:03 -04002396 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB),
Daniel T Chen9f75c1b2010-05-30 13:08:41 -04002397 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB),
Daniel T Chene96d3122010-05-27 18:32:18 -04002398 SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB),
Daniel T Chen4e0938d2010-05-22 13:12:22 -04002399 SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB),
Daniel T Chen61bb42c2010-05-29 11:04:11 -04002400 SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB),
Daniel T Chen9ec8dda2010-03-28 02:34:40 -04002401 SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB),
Takashi Iwai45d4ebf2009-11-30 11:58:30 +01002402 SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB),
Takashi Iwai8815cd02010-04-15 09:02:41 +02002403 SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB),
Daniel T Chenb90c0762010-05-30 19:31:41 -04002404 SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB),
Daniel T Chen0e0280d2010-04-21 19:55:43 -04002405 SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB),
Takashi Iwai3372a152007-02-01 15:46:50 +01002406 {}
2407};
2408
2409static int __devinit check_position_fix(struct azx *chip, int fix)
2410{
2411 const struct snd_pci_quirk *q;
2412
Takashi Iwaic673ba12009-03-17 07:49:14 +01002413 switch (fix) {
2414 case POS_FIX_LPIB:
2415 case POS_FIX_POSBUF:
David Henningsson4cb36312010-09-30 10:12:50 +02002416 case POS_FIX_VIACOMBO:
Takashi Iwaic673ba12009-03-17 07:49:14 +01002417 return fix;
2418 }
2419
Takashi Iwaic673ba12009-03-17 07:49:14 +01002420 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
2421 if (q) {
2422 printk(KERN_INFO
2423 "hda_intel: position_fix set to %d "
2424 "for device %04x:%04x\n",
2425 q->value, q->subvendor, q->subdevice);
2426 return q->value;
Takashi Iwai3372a152007-02-01 15:46:50 +01002427 }
David Henningssonbdd9ef22010-10-04 12:02:14 +02002428
2429 /* Check VIA/ATI HD Audio Controller exist */
Takashi Iwai9477c582011-05-25 09:11:37 +02002430 if (chip->driver_caps & AZX_DCAPS_POSFIX_VIA) {
2431 snd_printd(SFX "Using VIACOMBO position fix\n");
David Henningssonbdd9ef22010-10-04 12:02:14 +02002432 return POS_FIX_VIACOMBO;
2433 }
Takashi Iwai9477c582011-05-25 09:11:37 +02002434 if (chip->driver_caps & AZX_DCAPS_POSFIX_LPIB) {
2435 snd_printd(SFX "Using LPIB position fix\n");
2436 return POS_FIX_LPIB;
2437 }
Takashi Iwaic673ba12009-03-17 07:49:14 +01002438 return POS_FIX_AUTO;
Takashi Iwai3372a152007-02-01 15:46:50 +01002439}
2440
2441/*
Takashi Iwai669ba272007-08-17 09:17:36 +02002442 * black-lists for probe_mask
2443 */
2444static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
2445 /* Thinkpad often breaks the controller communication when accessing
2446 * to the non-working (or non-existing) modem codec slot.
2447 */
2448 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2449 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2450 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
Takashi Iwai0edb9452008-11-07 14:53:09 +01002451 /* broken BIOS */
2452 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
Takashi Iwaief1681d2008-11-24 17:29:28 +01002453 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2454 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002455 /* forced codec slots */
Ozan Çağlayan93574842009-05-23 15:00:04 +03002456 SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002457 SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
Takashi Iwai669ba272007-08-17 09:17:36 +02002458 {}
2459};
2460
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002461#define AZX_FORCE_CODEC_MASK 0x100
2462
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002463static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02002464{
2465 const struct snd_pci_quirk *q;
2466
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002467 chip->codec_probe_mask = probe_mask[dev];
2468 if (chip->codec_probe_mask == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002469 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
2470 if (q) {
2471 printk(KERN_INFO
2472 "hda_intel: probe_mask set to 0x%x "
2473 "for device %04x:%04x\n",
2474 q->value, q->subvendor, q->subdevice);
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002475 chip->codec_probe_mask = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02002476 }
2477 }
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002478
2479 /* check forced option */
2480 if (chip->codec_probe_mask != -1 &&
2481 (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) {
2482 chip->codec_mask = chip->codec_probe_mask & 0xff;
2483 printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n",
2484 chip->codec_mask);
2485 }
Takashi Iwai669ba272007-08-17 09:17:36 +02002486}
2487
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002488/*
Takashi Iwai716238552009-09-28 13:14:04 +02002489 * white/black-list for enable_msi
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002490 */
Takashi Iwai716238552009-09-28 13:14:04 +02002491static struct snd_pci_quirk msi_black_list[] __devinitdata = {
Takashi Iwai9dc83982009-12-22 08:15:01 +01002492 SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai0a27fcf2010-02-15 17:05:28 +01002493 SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
Ralf Gerbigecd21622010-03-09 18:25:47 +01002494 SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
Michele Ballabio4193d132010-03-06 21:06:46 +01002495 SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai38155952010-04-04 12:14:03 +02002496 SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002497 {}
2498};
2499
2500static void __devinit check_msi(struct azx *chip)
2501{
2502 const struct snd_pci_quirk *q;
2503
Takashi Iwai716238552009-09-28 13:14:04 +02002504 if (enable_msi >= 0) {
2505 chip->msi = !!enable_msi;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002506 return;
Takashi Iwai716238552009-09-28 13:14:04 +02002507 }
2508 chip->msi = 1; /* enable MSI as default */
2509 q = snd_pci_quirk_lookup(chip->pci, msi_black_list);
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002510 if (q) {
2511 printk(KERN_INFO
2512 "hda_intel: msi for device %04x:%04x set to %d\n",
2513 q->subvendor, q->subdevice, q->value);
2514 chip->msi = q->value;
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002515 return;
2516 }
2517
2518 /* NVidia chipsets seem to cause troubles with MSI */
Takashi Iwai9477c582011-05-25 09:11:37 +02002519 if (chip->driver_caps & AZX_DCAPS_NO_MSI) {
2520 printk(KERN_INFO "hda_intel: Disabling MSI\n");
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002521 chip->msi = 0;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002522 }
2523}
2524
Takashi Iwai669ba272007-08-17 09:17:36 +02002525
2526/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 * constructor
2528 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002529static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai9477c582011-05-25 09:11:37 +02002530 int dev, unsigned int driver_caps,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002531 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002533 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002534 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01002535 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002536 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 .dev_free = azx_dev_free,
2538 };
2539
2540 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01002541
Pavel Machek927fc862006-08-31 17:03:43 +02002542 err = pci_enable_device(pci);
2543 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 return err;
2545
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002546 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002547 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
2549 pci_disable_device(pci);
2550 return -ENOMEM;
2551 }
2552
2553 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002554 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 chip->card = card;
2556 chip->pci = pci;
2557 chip->irq = -1;
Takashi Iwai9477c582011-05-25 09:11:37 +02002558 chip->driver_caps = driver_caps;
2559 chip->driver_type = driver_caps & 0xff;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002560 check_msi(chip);
Takashi Iwai555e2192008-06-10 17:53:34 +02002561 chip->dev_index = dev;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002562 INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002564 chip->position_fix[0] = chip->position_fix[1] =
2565 check_position_fix(chip, position_fix[dev]);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002566 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01002567
Takashi Iwai27346162006-01-12 18:28:44 +01002568 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02002569
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002570 if (bdl_pos_adj[dev] < 0) {
2571 switch (chip->driver_type) {
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002572 case AZX_DRIVER_ICH:
Seth Heasley32679f92010-02-22 17:31:09 -08002573 case AZX_DRIVER_PCH:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002574 bdl_pos_adj[dev] = 1;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002575 break;
2576 default:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002577 bdl_pos_adj[dev] = 32;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002578 break;
2579 }
2580 }
2581
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002582#if BITS_PER_LONG != 64
2583 /* Fix up base address on ULI M5461 */
2584 if (chip->driver_type == AZX_DRIVER_ULI) {
2585 u16 tmp3;
2586 pci_read_config_word(pci, 0x40, &tmp3);
2587 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
2588 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
2589 }
2590#endif
2591
Pavel Machek927fc862006-08-31 17:03:43 +02002592 err = pci_request_regions(pci, "ICH HD audio");
2593 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 kfree(chip);
2595 pci_disable_device(pci);
2596 return err;
2597 }
2598
Pavel Machek927fc862006-08-31 17:03:43 +02002599 chip->addr = pci_resource_start(pci, 0);
Arjan van de Ven2f5ad542008-09-28 16:20:09 -07002600 chip->remap_addr = pci_ioremap_bar(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (chip->remap_addr == NULL) {
2602 snd_printk(KERN_ERR SFX "ioremap error\n");
2603 err = -ENXIO;
2604 goto errout;
2605 }
2606
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002607 if (chip->msi)
2608 if (pci_enable_msi(pci) < 0)
2609 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02002610
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002611 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 err = -EBUSY;
2613 goto errout;
2614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616 pci_set_master(pci);
2617 synchronize_irq(chip->irq);
2618
Tobin Davisbcd72002008-01-15 11:23:55 +01002619 gcap = azx_readw(chip, GCAP);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002620 snd_printdd(SFX "chipset global capabilities = 0x%x\n", gcap);
Tobin Davisbcd72002008-01-15 11:23:55 +01002621
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002622 /* disable SB600 64bit support for safety */
Takashi Iwai9477c582011-05-25 09:11:37 +02002623 if (chip->pci->vendor == PCI_VENDOR_ID_ATI) {
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002624 struct pci_dev *p_smbus;
2625 p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
2626 PCI_DEVICE_ID_ATI_SBX00_SMBUS,
2627 NULL);
2628 if (p_smbus) {
2629 if (p_smbus->revision < 0x30)
2630 gcap &= ~ICH6_GCAP_64OK;
2631 pci_dev_put(p_smbus);
2632 }
2633 }
Takashi Iwai09240cf2009-03-17 07:47:18 +01002634
Takashi Iwai9477c582011-05-25 09:11:37 +02002635 /* disable 64bit DMA address on some devices */
2636 if (chip->driver_caps & AZX_DCAPS_NO_64BIT) {
2637 snd_printd(SFX "Disabling 64bit DMA\n");
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002638 gcap &= ~ICH6_GCAP_64OK;
Takashi Iwai9477c582011-05-25 09:11:37 +02002639 }
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002640
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002641 /* disable buffer size rounding to 128-byte multiples if supported */
2642 if (chip->driver_caps & AZX_DCAPS_BUFSIZE)
2643 align_buffer_size = 0;
2644
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002645 /* allow 64bit DMA address if supported by H/W */
Takashi Iwaib21fadb2009-05-28 12:26:15 +02002646 if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
Yang Hongyange9304382009-04-13 14:40:14 -07002647 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002648 else {
Yang Hongyange9304382009-04-13 14:40:14 -07002649 pci_set_dma_mask(pci, DMA_BIT_MASK(32));
2650 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002651 }
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002652
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002653 /* read number of streams from GCAP register instead of using
2654 * hardcoded value
2655 */
2656 chip->capture_streams = (gcap >> 8) & 0x0f;
2657 chip->playback_streams = (gcap >> 12) & 0x0f;
2658 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01002659 /* gcap didn't give any info, switching to old method */
2660
2661 switch (chip->driver_type) {
2662 case AZX_DRIVER_ULI:
2663 chip->playback_streams = ULI_NUM_PLAYBACK;
2664 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002665 break;
2666 case AZX_DRIVER_ATIHDMI:
2667 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
2668 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002669 break;
Yang, Libinc4da29c2008-11-13 11:07:07 +01002670 case AZX_DRIVER_GENERIC:
Tobin Davisbcd72002008-01-15 11:23:55 +01002671 default:
2672 chip->playback_streams = ICH6_NUM_PLAYBACK;
2673 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002674 break;
2675 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002676 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002677 chip->capture_index_offset = 0;
2678 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002679 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002680 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
2681 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002682 if (!chip->azx_dev) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002683 snd_printk(KERN_ERR SFX "cannot malloc azx_dev\n");
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002684 goto errout;
2685 }
2686
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002687 for (i = 0; i < chip->num_streams; i++) {
2688 /* allocate memory for the BDL for each stream */
2689 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2690 snd_dma_pci_data(chip->pci),
2691 BDL_SIZE, &chip->azx_dev[i].bdl);
2692 if (err < 0) {
2693 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
2694 goto errout;
2695 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002697 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002698 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2699 snd_dma_pci_data(chip->pci),
2700 chip->num_streams * 8, &chip->posbuf);
2701 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002702 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
2703 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 /* allocate CORB/RIRB */
Takashi Iwai817408612009-05-26 15:22:00 +02002706 err = azx_alloc_cmd_io(chip);
2707 if (err < 0)
2708 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
2710 /* initialize streams */
2711 azx_init_stream(chip);
2712
2713 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002714 azx_init_pci(chip);
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002715 azx_init_chip(chip, (probe_only[dev] & 2) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
2717 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02002718 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 snd_printk(KERN_ERR SFX "no codecs found!\n");
2720 err = -ENODEV;
2721 goto errout;
2722 }
2723
Takashi Iwaid01ce992007-07-27 16:52:19 +02002724 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
2725 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
2727 goto errout;
2728 }
2729
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002730 strcpy(card->driver, "HDA-Intel");
Takashi Iwai18cb7102009-04-16 10:22:24 +02002731 strlcpy(card->shortname, driver_short_names[chip->driver_type],
2732 sizeof(card->shortname));
2733 snprintf(card->longname, sizeof(card->longname),
2734 "%s at 0x%lx irq %i",
2735 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 *rchip = chip;
2738 return 0;
2739
2740 errout:
2741 azx_free(chip);
2742 return err;
2743}
2744
Takashi Iwaicb53c622007-08-10 17:21:45 +02002745static void power_down_all_codecs(struct azx *chip)
2746{
2747#ifdef CONFIG_SND_HDA_POWER_SAVE
2748 /* The codecs were powered up in snd_hda_codec_new().
2749 * Now all initialization done, so turn them down if possible
2750 */
2751 struct hda_codec *codec;
2752 list_for_each_entry(codec, &chip->bus->codec_list, list) {
2753 snd_hda_power_down(codec);
2754 }
2755#endif
2756}
2757
Takashi Iwaid01ce992007-07-27 16:52:19 +02002758static int __devinit azx_probe(struct pci_dev *pci,
2759 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002761 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002762 struct snd_card *card;
2763 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02002764 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002766 if (dev >= SNDRV_CARDS)
2767 return -ENODEV;
2768 if (!enable[dev]) {
2769 dev++;
2770 return -ENOENT;
2771 }
2772
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002773 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2774 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 snd_printk(KERN_ERR SFX "Error creating card!\n");
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002776 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 }
2778
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002779 /* set this here since it's referred in snd_hda_load_patch() */
2780 snd_card_set_dev(card, &pci->dev);
2781
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002782 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002783 if (err < 0)
2784 goto out_free;
Takashi Iwai421a1252005-11-17 16:11:09 +01002785 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01002787#ifdef CONFIG_SND_HDA_INPUT_BEEP
2788 chip->beep_mode = beep_mode[dev];
2789#endif
2790
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 /* create codec instances */
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002792 err = azx_codec_create(chip, model[dev]);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002793 if (err < 0)
2794 goto out_free;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002795#ifdef CONFIG_SND_HDA_PATCH_LOADER
Takashi Iwai41a63f12011-02-10 17:39:20 +01002796 if (patch[dev] && *patch[dev]) {
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002797 snd_printk(KERN_ERR SFX "Applying patch firmware '%s'\n",
2798 patch[dev]);
2799 err = snd_hda_load_patch(chip->bus, patch[dev]);
2800 if (err < 0)
2801 goto out_free;
2802 }
2803#endif
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002804 if ((probe_only[dev] & 1) == 0) {
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002805 err = azx_codec_configure(chip);
2806 if (err < 0)
2807 goto out_free;
2808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
2810 /* create PCM streams */
Takashi Iwai176d5332008-07-30 15:01:44 +02002811 err = snd_hda_build_pcms(chip->bus);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002812 if (err < 0)
2813 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
2815 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002816 err = azx_mixer_create(chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002817 if (err < 0)
2818 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Takashi Iwaid01ce992007-07-27 16:52:19 +02002820 err = snd_card_register(card);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002821 if (err < 0)
2822 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
2824 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002825 chip->running = 1;
2826 power_down_all_codecs(chip);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002827 azx_notifier_register(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002829 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 return err;
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002831out_free:
2832 snd_card_free(card);
2833 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834}
2835
2836static void __devexit azx_remove(struct pci_dev *pci)
2837{
2838 snd_card_free(pci_get_drvdata(pci));
2839 pci_set_drvdata(pci, NULL);
2840}
2841
2842/* PCI IDs */
Alexey Dobriyancebe41d2010-02-06 00:21:03 +02002843static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -08002844 /* CPT */
Takashi Iwai9477c582011-05-25 09:11:37 +02002845 { PCI_DEVICE(0x8086, 0x1c20),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002846 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP |
2847 AZX_DCAPS_BUFSIZE },
Seth Heasleycea310e2010-09-10 16:29:56 -07002848 /* PBG */
Takashi Iwai9477c582011-05-25 09:11:37 +02002849 { PCI_DEVICE(0x8086, 0x1d20),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002850 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP |
2851 AZX_DCAPS_BUFSIZE},
Seth Heasleyd2edeb72011-04-20 10:59:57 -07002852 /* Panther Point */
Takashi Iwai9477c582011-05-25 09:11:37 +02002853 { PCI_DEVICE(0x8086, 0x1e20),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002854 .driver_data = AZX_DRIVER_PCH | AZX_DCAPS_SCH_SNOOP |
2855 AZX_DCAPS_BUFSIZE},
Takashi Iwai87218e92008-02-21 08:13:11 +01002856 /* SCH */
Takashi Iwai9477c582011-05-25 09:11:37 +02002857 { PCI_DEVICE(0x8086, 0x811b),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002858 .driver_data = AZX_DRIVER_SCH | AZX_DCAPS_SCH_SNOOP |
2859 AZX_DCAPS_BUFSIZE},
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002860 { PCI_DEVICE(0x8086, 0x2668),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002861 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2862 AZX_DCAPS_BUFSIZE }, /* ICH6 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002863 { PCI_DEVICE(0x8086, 0x27d8),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002864 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2865 AZX_DCAPS_BUFSIZE }, /* ICH7 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002866 { PCI_DEVICE(0x8086, 0x269a),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002867 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2868 AZX_DCAPS_BUFSIZE }, /* ESB2 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002869 { PCI_DEVICE(0x8086, 0x284b),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002870 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2871 AZX_DCAPS_BUFSIZE }, /* ICH8 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002872 { PCI_DEVICE(0x8086, 0x293e),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002873 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2874 AZX_DCAPS_BUFSIZE }, /* ICH9 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002875 { PCI_DEVICE(0x8086, 0x293f),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002876 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2877 AZX_DCAPS_BUFSIZE }, /* ICH9 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002878 { PCI_DEVICE(0x8086, 0x3a3e),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002879 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2880 AZX_DCAPS_BUFSIZE }, /* ICH10 */
Takashi Iwai8b0bd222011-06-10 14:56:26 +02002881 { PCI_DEVICE(0x8086, 0x3a6e),
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002882 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_OLD_SSYNC |
2883 AZX_DCAPS_BUFSIZE }, /* ICH10 */
Takashi Iwaib6864532010-09-15 10:17:26 +02002884 /* Generic Intel */
2885 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
2886 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2887 .class_mask = 0xffffff,
Pierre-Louis Bossart2ae66c22011-08-04 10:12:56 -05002888 .driver_data = AZX_DRIVER_ICH | AZX_DCAPS_BUFSIZE },
Takashi Iwai9477c582011-05-25 09:11:37 +02002889 /* ATI SB 450/600/700/800/900 */
2890 { PCI_DEVICE(0x1002, 0x437b),
2891 .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB },
2892 { PCI_DEVICE(0x1002, 0x4383),
2893 .driver_data = AZX_DRIVER_ATI | AZX_DCAPS_PRESET_ATI_SB },
2894 /* AMD Hudson */
2895 { PCI_DEVICE(0x1022, 0x780d),
2896 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_SB },
Takashi Iwai87218e92008-02-21 08:13:11 +01002897 /* ATI HDMI */
Takashi Iwai9477c582011-05-25 09:11:37 +02002898 { PCI_DEVICE(0x1002, 0x793b),
2899 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2900 { PCI_DEVICE(0x1002, 0x7919),
2901 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2902 { PCI_DEVICE(0x1002, 0x960f),
2903 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2904 { PCI_DEVICE(0x1002, 0x970f),
2905 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2906 { PCI_DEVICE(0x1002, 0xaa00),
2907 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2908 { PCI_DEVICE(0x1002, 0xaa08),
2909 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2910 { PCI_DEVICE(0x1002, 0xaa10),
2911 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2912 { PCI_DEVICE(0x1002, 0xaa18),
2913 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2914 { PCI_DEVICE(0x1002, 0xaa20),
2915 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2916 { PCI_DEVICE(0x1002, 0xaa28),
2917 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2918 { PCI_DEVICE(0x1002, 0xaa30),
2919 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2920 { PCI_DEVICE(0x1002, 0xaa38),
2921 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2922 { PCI_DEVICE(0x1002, 0xaa40),
2923 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
2924 { PCI_DEVICE(0x1002, 0xaa48),
2925 .driver_data = AZX_DRIVER_ATIHDMI | AZX_DCAPS_PRESET_ATI_HDMI },
Takashi Iwai87218e92008-02-21 08:13:11 +01002926 /* VIA VT8251/VT8237A */
Takashi Iwai9477c582011-05-25 09:11:37 +02002927 { PCI_DEVICE(0x1106, 0x3288),
2928 .driver_data = AZX_DRIVER_VIA | AZX_DCAPS_POSFIX_VIA },
Takashi Iwai87218e92008-02-21 08:13:11 +01002929 /* SIS966 */
2930 { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
2931 /* ULI M5461 */
2932 { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
2933 /* NVIDIA MCP */
Takashi Iwai0c2fd1bf42009-12-18 16:41:39 +01002934 { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
2935 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2936 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002937 .driver_data = AZX_DRIVER_NVIDIA | AZX_DCAPS_PRESET_NVIDIA },
Kailang Yangf2690022008-05-27 11:44:55 +02002938 /* Teradici */
Takashi Iwai9477c582011-05-25 09:11:37 +02002939 { PCI_DEVICE(0x6549, 0x1200),
2940 .driver_data = AZX_DRIVER_TERA | AZX_DCAPS_NO_64BIT },
Takashi Iwai4e01f542009-04-16 08:53:34 +02002941 /* Creative X-Fi (CA0110-IBG) */
Takashi Iwai313f6e22009-05-18 12:40:52 +02002942#if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
2943 /* the following entry conflicts with snd-ctxfi driver,
2944 * as ctxfi driver mutates from HD-audio to native mode with
2945 * a special command sequence.
2946 */
Takashi Iwai4e01f542009-04-16 08:53:34 +02002947 { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID),
2948 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2949 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002950 .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND |
2951 AZX_DCAPS_RIRB_PRE_DELAY },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002952#else
2953 /* this entry seems still valid -- i.e. without emu20kx chip */
Takashi Iwai9477c582011-05-25 09:11:37 +02002954 { PCI_DEVICE(0x1102, 0x0009),
2955 .driver_data = AZX_DRIVER_CTX | AZX_DCAPS_CTX_WORKAROUND |
2956 AZX_DCAPS_RIRB_PRE_DELAY },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002957#endif
Otavio Salvadore35d4b12010-09-26 23:35:06 -03002958 /* Vortex86MX */
2959 { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
Bankim Bhavsar0f0714c52011-01-17 15:23:21 +01002960 /* VMware HDAudio */
2961 { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002962 /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
Yang, Libinc4da29c2008-11-13 11:07:07 +01002963 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
2964 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2965 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002966 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI },
Andiry Brienza9176b672009-07-17 11:32:32 +08002967 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID),
2968 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2969 .class_mask = 0xffffff,
Takashi Iwai9477c582011-05-25 09:11:37 +02002970 .driver_data = AZX_DRIVER_GENERIC | AZX_DCAPS_PRESET_ATI_HDMI },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 { 0, }
2972};
2973MODULE_DEVICE_TABLE(pci, azx_ids);
2974
2975/* pci_driver definition */
2976static struct pci_driver driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +02002977 .name = KBUILD_MODNAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 .id_table = azx_ids,
2979 .probe = azx_probe,
2980 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002981#ifdef CONFIG_PM
2982 .suspend = azx_suspend,
2983 .resume = azx_resume,
2984#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985};
2986
2987static int __init alsa_card_azx_init(void)
2988{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002989 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990}
2991
2992static void __exit alsa_card_azx_exit(void)
2993{
2994 pci_unregister_driver(&driver);
2995}
2996
2997module_init(alsa_card_azx_init)
2998module_exit(alsa_card_azx_exit)