blob: f95ff6e029a990785db34a80981c120f7c4a2f32 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
Takashi Iwaid01ce992007-07-27 16:52:19 +02003 * hda_intel.c - Implementation of primary alsa driver code base
4 * for Intel HD Audio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright(c) 2004 Intel Corporation. All rights reserved.
7 *
8 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
9 * PeiSen Hou <pshou@realtek.com.tw>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 * CONTACTS:
26 *
27 * Matt Jared matt.jared@intel.com
28 * Andy Kopp andy.kopp@intel.com
29 * Dan Kogan dan.d.kogan@intel.com
30 *
31 * CHANGES:
32 *
33 * 2004.12.01 Major rewrite by tiwai, merged the work of pshou
34 *
35 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/io.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
Randy Dunlap362775e2005-11-07 14:43:23 +010040#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
Andrew Morton24982c52008-03-04 10:08:58 +010042#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/moduleparam.h>
44#include <linux/init.h>
45#include <linux/slab.h>
46#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010047#include <linux/mutex.h>
Takashi Iwai0cbf0092008-10-29 16:18:25 +010048#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <sound/core.h>
50#include <sound/initval.h>
51#include "hda_codec.h"
52
53
Takashi Iwai5aba4f82008-01-07 15:16:37 +010054static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
55static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
56static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
57static char *model[SNDRV_CARDS];
58static int position_fix[SNDRV_CARDS];
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +020059static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwai5aba4f82008-01-07 15:16:37 +010060static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwaid4d9cd032008-12-19 15:19:11 +010061static int probe_only[SNDRV_CARDS];
Takashi Iwai27346162006-01-12 18:28:44 +010062static int single_cmd;
Takashi Iwai716238552009-09-28 13:14:04 +020063static int enable_msi = -1;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +020064#ifdef CONFIG_SND_HDA_PATCH_LOADER
65static char *patch[SNDRV_CARDS];
66#endif
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +010067#ifdef CONFIG_SND_HDA_INPUT_BEEP
68static int beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] =
69 CONFIG_SND_HDA_INPUT_BEEP_MODE};
70#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Takashi Iwai5aba4f82008-01-07 15:16:37 +010072module_param_array(index, int, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010074module_param_array(id, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010076module_param_array(enable, bool, NULL, 0444);
77MODULE_PARM_DESC(enable, "Enable Intel HD audio interface.");
78module_param_array(model, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_PARM_DESC(model, "Use the given board model.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010080module_param_array(position_fix, int, NULL, 0444);
David Henningsson4cb36312010-09-30 10:12:50 +020081MODULE_PARM_DESC(position_fix, "DMA pointer read method."
82 "(0 = auto, 1 = LPIB, 2 = POSBUF, 3 = VIACOMBO).");
Takashi Iwai555e2192008-06-10 17:53:34 +020083module_param_array(bdl_pos_adj, int, NULL, 0644);
84MODULE_PARM_DESC(bdl_pos_adj, "BDL position adjustment offset.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010085module_param_array(probe_mask, int, NULL, 0444);
Takashi Iwai606ad752005-11-24 16:03:40 +010086MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1).");
Jaroslav Kysela079e6832010-03-26 11:16:59 +010087module_param_array(probe_only, int, NULL, 0444);
Takashi Iwaid4d9cd032008-12-19 15:19:11 +010088MODULE_PARM_DESC(probe_only, "Only probing and no codec initialization.");
Takashi Iwai27346162006-01-12 18:28:44 +010089module_param(single_cmd, bool, 0444);
Takashi Iwaid01ce992007-07-27 16:52:19 +020090MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs "
91 "(for debugging only).");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010092module_param(enable_msi, int, 0444);
Takashi Iwai134a11f2006-11-10 12:08:37 +010093MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)");
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +020094#ifdef CONFIG_SND_HDA_PATCH_LOADER
95module_param_array(patch, charp, NULL, 0444);
96MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface.");
97#endif
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +010098#ifdef CONFIG_SND_HDA_INPUT_BEEP
99module_param_array(beep_mode, int, NULL, 0444);
100MODULE_PARM_DESC(beep_mode, "Select HDA Beep registration mode "
101 "(0=off, 1=on, 2=mute switch on/off) (default=1).");
102#endif
Takashi Iwai606ad752005-11-24 16:03:40 +0100103
Takashi Iwaidee1b662007-08-13 16:10:30 +0200104#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100105static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
106module_param(power_save, int, 0644);
107MODULE_PARM_DESC(power_save, "Automatic power-saving timeout "
108 "(in second, 0 = disable).");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Takashi Iwaidee1b662007-08-13 16:10:30 +0200110/* reset the HD-audio controller in power save mode.
111 * this may give more power-saving, but will take longer time to
112 * wake up.
113 */
114static int power_save_controller = 1;
115module_param(power_save_controller, bool, 0644);
116MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode.");
117#endif
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119MODULE_LICENSE("GPL");
120MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
121 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -0700122 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +0200123 "{Intel, ESB2},"
Jason Gastond2981392006-01-10 11:07:37 +0100124 "{Intel, ICH8},"
Jason Gastonf9cc8a82006-11-22 11:53:52 +0100125 "{Intel, ICH9},"
Jason Gastonc34f5a02008-01-29 12:38:49 +0100126 "{Intel, ICH10},"
Seth Heasleyb29c2362008-08-08 15:56:39 -0700127 "{Intel, PCH},"
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -0800128 "{Intel, CPT},"
Seth Heasleyd2edeb72011-04-20 10:59:57 -0700129 "{Intel, PPT},"
Seth Heasleycea310e2010-09-10 16:29:56 -0700130 "{Intel, PBG},"
Tobin Davis4979bca2008-01-30 08:13:55 +0100131 "{Intel, SCH},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200132 "{ATI, SB450},"
Felix Kuehling89be83f2006-03-31 12:33:59 +0200133 "{ATI, SB600},"
Felix Kuehling778b6e12006-05-17 11:22:21 +0200134 "{ATI, RS600},"
Felix Kuehling5b15c952006-10-16 12:49:47 +0200135 "{ATI, RS690},"
Wolke Liue6db1112007-04-27 12:20:57 +0200136 "{ATI, RS780},"
137 "{ATI, R600},"
Herton Ronaldo Krzesinski2797f722007-11-05 18:21:56 +0100138 "{ATI, RV630},"
139 "{ATI, RV610},"
Wolke Liu27da1832007-11-16 11:06:30 +0100140 "{ATI, RV670},"
141 "{ATI, RV635},"
142 "{ATI, RV620},"
143 "{ATI, RV770},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200144 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +0200145 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200146 "{SiS, SIS966},"
147 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148MODULE_DESCRIPTION("Intel HDA driver");
149
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200150#ifdef CONFIG_SND_VERBOSE_PRINTK
151#define SFX /* nop */
152#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define SFX "hda-intel: "
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200154#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +0200155
156/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * registers
158 */
159#define ICH6_REG_GCAP 0x00
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200160#define ICH6_GCAP_64OK (1 << 0) /* 64bit address support */
161#define ICH6_GCAP_NSDO (3 << 1) /* # of serial data out signals */
162#define ICH6_GCAP_BSS (31 << 3) /* # of bidirectional streams */
163#define ICH6_GCAP_ISS (15 << 8) /* # of input streams */
164#define ICH6_GCAP_OSS (15 << 12) /* # of output streams */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#define ICH6_REG_VMIN 0x02
166#define ICH6_REG_VMAJ 0x03
167#define ICH6_REG_OUTPAY 0x04
168#define ICH6_REG_INPAY 0x06
169#define ICH6_REG_GCTL 0x08
Takashi Iwai8a933ec2009-05-31 09:28:12 +0200170#define ICH6_GCTL_RESET (1 << 0) /* controller reset */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200171#define ICH6_GCTL_FCNTRL (1 << 1) /* flush control */
172#define ICH6_GCTL_UNSOL (1 << 8) /* accept unsol. response enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define ICH6_REG_WAKEEN 0x0c
174#define ICH6_REG_STATESTS 0x0e
175#define ICH6_REG_GSTS 0x10
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200176#define ICH6_GSTS_FSTS (1 << 1) /* flush status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#define ICH6_REG_INTCTL 0x20
178#define ICH6_REG_INTSTS 0x24
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200179#define ICH6_REG_WALLCLK 0x30 /* 24Mhz source */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define ICH6_REG_SYNC 0x34
181#define ICH6_REG_CORBLBASE 0x40
182#define ICH6_REG_CORBUBASE 0x44
183#define ICH6_REG_CORBWP 0x48
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200184#define ICH6_REG_CORBRP 0x4a
185#define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define ICH6_REG_CORBCTL 0x4c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200187#define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */
188#define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#define ICH6_REG_CORBSTS 0x4d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200190#define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#define ICH6_REG_CORBSIZE 0x4e
192
193#define ICH6_REG_RIRBLBASE 0x50
194#define ICH6_REG_RIRBUBASE 0x54
195#define ICH6_REG_RIRBWP 0x58
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200196#define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define ICH6_REG_RINTCNT 0x5a
198#define ICH6_REG_RIRBCTL 0x5c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200199#define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */
200#define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */
201#define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define ICH6_REG_RIRBSTS 0x5d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200203#define ICH6_RBSTS_IRQ (1 << 0) /* response irq */
204#define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define ICH6_REG_RIRBSIZE 0x5e
206
207#define ICH6_REG_IC 0x60
208#define ICH6_REG_IR 0x64
209#define ICH6_REG_IRS 0x68
210#define ICH6_IRS_VALID (1<<1)
211#define ICH6_IRS_BUSY (1<<0)
212
213#define ICH6_REG_DPLBASE 0x70
214#define ICH6_REG_DPUBASE 0x74
215#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
216
217/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
218enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
219
220/* stream register offsets from stream base */
221#define ICH6_REG_SD_CTL 0x00
222#define ICH6_REG_SD_STS 0x03
223#define ICH6_REG_SD_LPIB 0x04
224#define ICH6_REG_SD_CBL 0x08
225#define ICH6_REG_SD_LVI 0x0c
226#define ICH6_REG_SD_FIFOW 0x0e
227#define ICH6_REG_SD_FIFOSIZE 0x10
228#define ICH6_REG_SD_FORMAT 0x12
229#define ICH6_REG_SD_BDLPL 0x18
230#define ICH6_REG_SD_BDLPU 0x1c
231
232/* PCI space */
233#define ICH6_PCIREG_TCSEL 0x44
234
235/*
236 * other constants
237 */
238
239/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200240/* ICH, ATI and VIA have 4 playback and 4 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200241#define ICH6_NUM_CAPTURE 4
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200242#define ICH6_NUM_PLAYBACK 4
243
244/* ULI has 6 playback and 5 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200245#define ULI_NUM_CAPTURE 5
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200246#define ULI_NUM_PLAYBACK 6
247
Felix Kuehling778b6e12006-05-17 11:22:21 +0200248/* ATI HDMI has 1 playback and 0 capture */
Felix Kuehling778b6e12006-05-17 11:22:21 +0200249#define ATIHDMI_NUM_CAPTURE 0
Felix Kuehling778b6e12006-05-17 11:22:21 +0200250#define ATIHDMI_NUM_PLAYBACK 1
251
Kailang Yangf2690022008-05-27 11:44:55 +0200252/* TERA has 4 playback and 3 capture */
253#define TERA_NUM_CAPTURE 3
254#define TERA_NUM_PLAYBACK 4
255
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200256/* this number is statically defined for simplicity */
257#define MAX_AZX_DEV 16
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100260#define BDL_SIZE 4096
261#define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
262#define AZX_MAX_FRAG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/* max buffer size - no h/w limit, you can increase as you like */
264#define AZX_MAX_BUF_SIZE (1024*1024*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/* RIRB int mask: overrun[2], response[0] */
267#define RIRB_INT_RESPONSE 0x01
268#define RIRB_INT_OVERRUN 0x04
269#define RIRB_INT_MASK 0x05
270
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200271/* STATESTS int mask: S3,SD2,SD1,SD0 */
Wei Ni7445dfc2010-03-03 15:05:53 +0800272#define AZX_MAX_CODECS 8
273#define AZX_DEFAULT_CODECS 4
Wu Fengguangdeadff12009-08-01 18:45:16 +0800274#define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/* SD_CTL bits */
277#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
278#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
Takashi Iwai850f0e52008-03-18 17:11:05 +0100279#define SD_CTL_STRIPE (3 << 16) /* stripe control */
280#define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
281#define SD_CTL_DIR (1 << 19) /* bi-directional stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
283#define SD_CTL_STREAM_TAG_SHIFT 20
284
285/* SD_CTL and SD_STS */
286#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
287#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
288#define SD_INT_COMPLETE 0x04 /* completion interrupt */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200289#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
290 SD_INT_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292/* SD_STS */
293#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
294
295/* INTCTL and INTSTS */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200296#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
297#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
298#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/* below are so far hardcoded - should read registers in future */
301#define ICH6_MAX_CORB_ENTRIES 256
302#define ICH6_MAX_RIRB_ENTRIES 256
303
Takashi Iwaic74db862005-05-12 14:26:27 +0200304/* position fix mode */
305enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200306 POS_FIX_AUTO,
Takashi Iwaid2e1c972008-06-10 17:53:34 +0200307 POS_FIX_LPIB,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200308 POS_FIX_POSBUF,
David Henningsson4cb36312010-09-30 10:12:50 +0200309 POS_FIX_VIACOMBO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200310};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Frederick Lif5d40b32005-05-12 14:55:20 +0200312/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200313#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
314#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
315
Vinod Gda3fca22005-09-13 18:49:12 +0200316/* Defines for Nvidia HDA support */
317#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
318#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Peer Chen320dcc32008-08-20 16:43:24 -0700319#define NVIDIA_HDA_ISTRM_COH 0x4d
320#define NVIDIA_HDA_OSTRM_COH 0x4c
321#define NVIDIA_HDA_ENABLE_COHBIT 0x01
Frederick Lif5d40b32005-05-12 14:55:20 +0200322
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100323/* Defines for Intel SCH HDA snoop control */
324#define INTEL_SCH_HDA_DEVC 0x78
325#define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
326
Joseph Chan0e153472008-08-26 14:38:03 +0200327/* Define IN stream 0 FIFO size offset in VIA controller */
328#define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
329/* Define VIA HD Audio Device ID*/
330#define VIA_HDAC_DEVICE_ID 0x3288
331
Yang, Libinc4da29c2008-11-13 11:07:07 +0100332/* HD Audio class code */
333#define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100338struct azx_dev {
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100339 struct snd_dma_buffer bdl; /* BDL buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200340 u32 *posbuf; /* position buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Takashi Iwaid01ce992007-07-27 16:52:19 +0200342 unsigned int bufsize; /* size of the play buffer in bytes */
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200343 unsigned int period_bytes; /* size of the period in bytes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200344 unsigned int frags; /* number for period in the play buffer */
345 unsigned int fifo_size; /* FIFO size */
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200346 unsigned long start_wallclk; /* start + minimum wallclk */
347 unsigned long period_wallclk; /* wallclk for period */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Takashi Iwaid01ce992007-07-27 16:52:19 +0200349 void __iomem *sd_addr; /* stream descriptor pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Takashi Iwaid01ce992007-07-27 16:52:19 +0200351 u32 sd_int_sta_mask; /* stream int status mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* pcm support */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200354 struct snd_pcm_substream *substream; /* assigned substream,
355 * set in PCM open
356 */
357 unsigned int format_val; /* format value to be set in the
358 * controller and the codec
359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 unsigned char stream_tag; /* assigned stream */
361 unsigned char index; /* stream index */
Wu Fengguangef18bed2009-12-25 13:14:27 +0800362 int device; /* last device number assigned to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Pavel Machek927fc862006-08-31 17:03:43 +0200364 unsigned int opened :1;
365 unsigned int running :1;
Takashi Iwai675f25d2008-06-10 17:53:20 +0200366 unsigned int irq_pending :1;
Joseph Chan0e153472008-08-26 14:38:03 +0200367 /*
368 * For VIA:
369 * A flag to ensure DMA position is 0
370 * when link position is not greater than FIFO size
371 */
372 unsigned int insufficient :1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
375/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100376struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 u32 *buf; /* CORB/RIRB buffer
378 * Each CORB entry is 4byte, RIRB is 8byte
379 */
380 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
381 /* for RIRB */
382 unsigned short rp, wp; /* read/write pointers */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800383 int cmds[AZX_MAX_CODECS]; /* number of pending requests */
384 u32 res[AZX_MAX_CODECS]; /* last read value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100387struct azx {
388 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct pci_dev *pci;
Takashi Iwai555e2192008-06-10 17:53:34 +0200390 int dev_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200392 /* chip type specific */
393 int driver_type;
394 int playback_streams;
395 int playback_index_offset;
396 int capture_streams;
397 int capture_index_offset;
398 int num_streams;
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /* pci resources */
401 unsigned long addr;
402 void __iomem *remap_addr;
403 int irq;
404
405 /* locks */
406 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100407 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200409 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100410 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* PCM */
Takashi Iwaic8936222010-01-28 17:08:53 +0100413 struct snd_pcm *pcm[HDA_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* HD codec */
416 unsigned short codec_mask;
Takashi Iwaif1eaaee2009-02-13 08:16:55 +0100417 int codec_probe_mask; /* copied from probe_mask option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct hda_bus *bus;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100419 unsigned int beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100422 struct azx_rb corb;
423 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100425 /* CORB/RIRB and position buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct snd_dma_buffer rb;
427 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200428
429 /* flags */
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +0200430 int position_fix[2]; /* for both playback/capture streams */
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200431 int poll_count;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200432 unsigned int running :1;
Pavel Machek927fc862006-08-31 17:03:43 +0200433 unsigned int initialized :1;
434 unsigned int single_cmd :1;
435 unsigned int polling_mode :1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200436 unsigned int msi :1;
Takashi Iwaia6a950a2008-06-10 17:53:35 +0200437 unsigned int irq_pending_warned :1;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100438 unsigned int probing :1; /* codec probing phase */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200439
440 /* for debugging */
Wu Fengguangfeb27342009-08-01 19:17:14 +0800441 unsigned int last_cmd[AZX_MAX_CODECS];
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200442
443 /* for pending irqs */
444 struct work_struct irq_pending_work;
Takashi Iwai0cbf0092008-10-29 16:18:25 +0100445
446 /* reboot notifier (for mysterious hangup problem at power-down) */
447 struct notifier_block reboot_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448};
449
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200450/* driver types */
451enum {
452 AZX_DRIVER_ICH,
Seth Heasley32679f92010-02-22 17:31:09 -0800453 AZX_DRIVER_PCH,
Tobin Davis4979bca2008-01-30 08:13:55 +0100454 AZX_DRIVER_SCH,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200455 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200456 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200457 AZX_DRIVER_VIA,
458 AZX_DRIVER_SIS,
459 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200460 AZX_DRIVER_NVIDIA,
Kailang Yangf2690022008-05-27 11:44:55 +0200461 AZX_DRIVER_TERA,
Takashi Iwai14d34f12010-10-21 09:03:25 +0200462 AZX_DRIVER_CTX,
Yang, Libinc4da29c2008-11-13 11:07:07 +0100463 AZX_DRIVER_GENERIC,
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200464 AZX_NUM_DRIVERS, /* keep this as last entry */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200465};
466
467static char *driver_short_names[] __devinitdata = {
468 [AZX_DRIVER_ICH] = "HDA Intel",
Seth Heasley32679f92010-02-22 17:31:09 -0800469 [AZX_DRIVER_PCH] = "HDA Intel PCH",
Tobin Davis4979bca2008-01-30 08:13:55 +0100470 [AZX_DRIVER_SCH] = "HDA Intel MID",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200471 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200472 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200473 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
474 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200475 [AZX_DRIVER_ULI] = "HDA ULI M5461",
476 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Kailang Yangf2690022008-05-27 11:44:55 +0200477 [AZX_DRIVER_TERA] = "HDA Teradici",
Takashi Iwai14d34f12010-10-21 09:03:25 +0200478 [AZX_DRIVER_CTX] = "HDA Creative",
Yang, Libinc4da29c2008-11-13 11:07:07 +0100479 [AZX_DRIVER_GENERIC] = "HD-Audio Generic",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200480};
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
483 * macros for easy use
484 */
485#define azx_writel(chip,reg,value) \
486 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
487#define azx_readl(chip,reg) \
488 readl((chip)->remap_addr + ICH6_REG_##reg)
489#define azx_writew(chip,reg,value) \
490 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
491#define azx_readw(chip,reg) \
492 readw((chip)->remap_addr + ICH6_REG_##reg)
493#define azx_writeb(chip,reg,value) \
494 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
495#define azx_readb(chip,reg) \
496 readb((chip)->remap_addr + ICH6_REG_##reg)
497
498#define azx_sd_writel(dev,reg,value) \
499 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
500#define azx_sd_readl(dev,reg) \
501 readl((dev)->sd_addr + ICH6_REG_##reg)
502#define azx_sd_writew(dev,reg,value) \
503 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
504#define azx_sd_readw(dev,reg) \
505 readw((dev)->sd_addr + ICH6_REG_##reg)
506#define azx_sd_writeb(dev,reg,value) \
507 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
508#define azx_sd_readb(dev,reg) \
509 readb((dev)->sd_addr + ICH6_REG_##reg)
510
511/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100512#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200514static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200515static int azx_send_cmd(struct hda_bus *bus, unsigned int val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/*
517 * Interface for HD codec
518 */
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*
521 * CORB / RIRB interface
522 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100523static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 int err;
526
527 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200528 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
529 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 PAGE_SIZE, &chip->rb);
531 if (err < 0) {
532 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
533 return err;
534 }
535 return 0;
536}
537
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100538static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800540 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* CORB set up */
542 chip->corb.addr = chip->rb.addr;
543 chip->corb.buf = (u32 *)chip->rb.area;
544 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200545 azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200547 /* set the corb size to 256 entries (ULI requires explicitly) */
548 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* set the corb write pointer to 0 */
550 azx_writew(chip, CORBWP, 0);
551 /* reset the corb hw read pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200552 azx_writew(chip, CORBRP, ICH6_CORBRP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* enable corb dma */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200554 azx_writeb(chip, CORBCTL, ICH6_CORBCTL_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 /* RIRB set up */
557 chip->rirb.addr = chip->rb.addr + 2048;
558 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800559 chip->rirb.wp = chip->rirb.rp = 0;
560 memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200562 azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200564 /* set the rirb size to 256 entries (ULI requires explicitly) */
565 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /* reset the rirb hw write pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200567 azx_writew(chip, RIRBWP, ICH6_RIRBWP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* set N=1, get RIRB response interrupt for new entry */
Takashi Iwai14d34f12010-10-21 09:03:25 +0200569 if (chip->driver_type == AZX_DRIVER_CTX)
570 azx_writew(chip, RINTCNT, 0xc0);
571 else
572 azx_writew(chip, RINTCNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800575 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100578static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800580 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* disable ringbuffer DMAs */
582 azx_writeb(chip, RIRBCTL, 0);
583 azx_writeb(chip, CORBCTL, 0);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800584 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Wu Fengguangdeadff12009-08-01 18:45:16 +0800587static unsigned int azx_command_addr(u32 cmd)
588{
589 unsigned int addr = cmd >> 28;
590
591 if (addr >= AZX_MAX_CODECS) {
592 snd_BUG();
593 addr = 0;
594 }
595
596 return addr;
597}
598
599static unsigned int azx_response_addr(u32 res)
600{
601 unsigned int addr = res & 0xf;
602
603 if (addr >= AZX_MAX_CODECS) {
604 snd_BUG();
605 addr = 0;
606 }
607
608 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100612static int azx_corb_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100614 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800615 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 unsigned int wp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Wu Fengguangc32649f2009-08-01 18:48:12 +0800618 spin_lock_irq(&chip->reg_lock);
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* add command to corb */
621 wp = azx_readb(chip, CORBWP);
622 wp++;
623 wp %= ICH6_MAX_CORB_ENTRIES;
624
Wu Fengguangdeadff12009-08-01 18:45:16 +0800625 chip->rirb.cmds[addr]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 chip->corb.buf[wp] = cpu_to_le32(val);
627 azx_writel(chip, CORBWP, wp);
Wu Fengguangc32649f2009-08-01 18:48:12 +0800628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 spin_unlock_irq(&chip->reg_lock);
630
631 return 0;
632}
633
634#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
635
636/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100637static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 unsigned int rp, wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800640 unsigned int addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 u32 res, res_ex;
642
643 wp = azx_readb(chip, RIRBWP);
644 if (wp == chip->rirb.wp)
645 return;
646 chip->rirb.wp = wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 while (chip->rirb.rp != wp) {
649 chip->rirb.rp++;
650 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
651
652 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
653 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
654 res = le32_to_cpu(chip->rirb.buf[rp]);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800655 addr = azx_response_addr(res_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
657 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800658 else if (chip->rirb.cmds[addr]) {
659 chip->rirb.res[addr] = res;
Takashi Iwai2add9b92008-03-18 09:47:06 +0100660 smp_wmb();
Wu Fengguangdeadff12009-08-01 18:45:16 +0800661 chip->rirb.cmds[addr]--;
Wu Fengguange310bb02009-08-01 19:18:45 +0800662 } else
663 snd_printk(KERN_ERR SFX "spurious response %#x:%#x, "
664 "last cmd=%#08x\n",
665 res, res_ex,
666 chip->last_cmd[addr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668}
669
670/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800671static unsigned int azx_rirb_get_response(struct hda_bus *bus,
672 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100674 struct azx *chip = bus->private_data;
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200675 unsigned long timeout;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200676 int do_poll = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200678 again:
679 timeout = jiffies + msecs_to_jiffies(1000);
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100680 for (;;) {
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200681 if (chip->polling_mode || do_poll) {
Takashi Iwaie96224a2006-08-21 17:57:44 +0200682 spin_lock_irq(&chip->reg_lock);
683 azx_update_rirb(chip);
684 spin_unlock_irq(&chip->reg_lock);
685 }
Wu Fengguangdeadff12009-08-01 18:45:16 +0800686 if (!chip->rirb.cmds[addr]) {
Takashi Iwai2add9b92008-03-18 09:47:06 +0100687 smp_rmb();
Takashi Iwaib6132912009-03-24 07:36:09 +0100688 bus->rirb_error = 0;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200689
690 if (!do_poll)
691 chip->poll_count = 0;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800692 return chip->rirb.res[addr]; /* the last value */
Takashi Iwai2add9b92008-03-18 09:47:06 +0100693 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100694 if (time_after(jiffies, timeout))
695 break;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100696 if (bus->needs_damn_long_delay)
Takashi Iwai52987652008-01-16 16:09:47 +0100697 msleep(2); /* temporary workaround */
698 else {
699 udelay(10);
700 cond_resched();
701 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100702 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200703
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200704 if (!chip->polling_mode && chip->poll_count < 2) {
705 snd_printdd(SFX "azx_get_response timeout, "
706 "polling the codec once: last cmd=0x%08x\n",
707 chip->last_cmd[addr]);
708 do_poll = 1;
709 chip->poll_count++;
710 goto again;
711 }
712
713
Takashi Iwai23c4a882009-10-30 13:21:49 +0100714 if (!chip->polling_mode) {
715 snd_printk(KERN_WARNING SFX "azx_get_response timeout, "
716 "switching to polling mode: last cmd=0x%08x\n",
717 chip->last_cmd[addr]);
718 chip->polling_mode = 1;
719 goto again;
720 }
721
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200722 if (chip->msi) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200723 snd_printk(KERN_WARNING SFX "No response from codec, "
Wu Fengguangfeb27342009-08-01 19:17:14 +0800724 "disabling MSI: last cmd=0x%08x\n",
725 chip->last_cmd[addr]);
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200726 free_irq(chip->irq, chip);
727 chip->irq = -1;
728 pci_disable_msi(chip->pci);
729 chip->msi = 0;
Takashi Iwaib6132912009-03-24 07:36:09 +0100730 if (azx_acquire_irq(chip, 1) < 0) {
731 bus->rirb_error = 1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200732 return -1;
Takashi Iwaib6132912009-03-24 07:36:09 +0100733 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200734 goto again;
735 }
736
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100737 if (chip->probing) {
738 /* If this critical timeout happens during the codec probing
739 * phase, this is likely an access to a non-existing codec
740 * slot. Better to return an error and reset the system.
741 */
742 return -1;
743 }
744
Takashi Iwai8dd78332009-06-02 01:16:07 +0200745 /* a fatal communication error; need either to reset or to fallback
746 * to the single_cmd mode
747 */
Takashi Iwaib6132912009-03-24 07:36:09 +0100748 bus->rirb_error = 1;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200749 if (bus->allow_bus_reset && !bus->response_reset && !bus->in_reset) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200750 bus->response_reset = 1;
751 return -1; /* give a chance to retry */
752 }
753
754 snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
755 "switching to single_cmd mode: last cmd=0x%08x\n",
Wu Fengguangfeb27342009-08-01 19:17:14 +0800756 chip->last_cmd[addr]);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200757 chip->single_cmd = 1;
758 bus->response_reset = 0;
Takashi Iwai1a696972009-11-07 09:49:04 +0100759 /* release CORB/RIRB */
Takashi Iwai4fcd3922009-05-25 18:34:52 +0200760 azx_free_cmd_io(chip);
Takashi Iwai1a696972009-11-07 09:49:04 +0100761 /* disable unsolicited responses */
762 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200763 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/*
767 * Use the single immediate command instead of CORB/RIRB for simplicity
768 *
769 * Note: according to Intel, this is not preferred use. The command was
770 * intended for the BIOS only, and may get confused with unsolicited
771 * responses. So, we shouldn't use it for normal operation from the
772 * driver.
773 * I left the codes, however, for debugging/testing purposes.
774 */
775
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200776/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800777static int azx_single_wait_for_response(struct azx *chip, unsigned int addr)
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200778{
779 int timeout = 50;
780
781 while (timeout--) {
782 /* check IRV busy bit */
783 if (azx_readw(chip, IRS) & ICH6_IRS_VALID) {
784 /* reuse rirb.res as the response return value */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800785 chip->rirb.res[addr] = azx_readl(chip, IR);
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200786 return 0;
787 }
788 udelay(1);
789 }
790 if (printk_ratelimit())
791 snd_printd(SFX "get_response timeout: IRS=0x%x\n",
792 azx_readw(chip, IRS));
Wu Fengguangdeadff12009-08-01 18:45:16 +0800793 chip->rirb.res[addr] = -1;
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200794 return -EIO;
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100798static int azx_single_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100800 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800801 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int timeout = 50;
803
Takashi Iwai8dd78332009-06-02 01:16:07 +0200804 bus->rirb_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 while (timeout--) {
806 /* check ICB busy bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200807 if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* Clear IRV valid bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200809 azx_writew(chip, IRS, azx_readw(chip, IRS) |
810 ICH6_IRS_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 azx_writel(chip, IC, val);
Takashi Iwaid01ce992007-07-27 16:52:19 +0200812 azx_writew(chip, IRS, azx_readw(chip, IRS) |
813 ICH6_IRS_BUSY);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800814 return azx_single_wait_for_response(chip, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816 udelay(1);
817 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100818 if (printk_ratelimit())
819 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
820 azx_readw(chip, IRS), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return -EIO;
822}
823
824/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800825static unsigned int azx_single_get_response(struct hda_bus *bus,
826 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100828 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800829 return chip->rirb.res[addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Takashi Iwai111d3af2006-02-16 18:17:58 +0100832/*
833 * The below are the main callbacks from hda_codec.
834 *
835 * They are just the skeleton to call sub-callbacks according to the
836 * current setting of chip->single_cmd.
837 */
838
839/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100840static int azx_send_cmd(struct hda_bus *bus, unsigned int val)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100841{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100842 struct azx *chip = bus->private_data;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200843
Wu Fengguangfeb27342009-08-01 19:17:14 +0800844 chip->last_cmd[azx_command_addr(val)] = val;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100845 if (chip->single_cmd)
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100846 return azx_single_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100847 else
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100848 return azx_corb_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100849}
850
851/* get a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800852static unsigned int azx_get_response(struct hda_bus *bus,
853 unsigned int addr)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100854{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100855 struct azx *chip = bus->private_data;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100856 if (chip->single_cmd)
Wu Fengguangdeadff12009-08-01 18:45:16 +0800857 return azx_single_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100858 else
Wu Fengguangdeadff12009-08-01 18:45:16 +0800859 return azx_rirb_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100860}
861
Takashi Iwaicb53c622007-08-10 17:21:45 +0200862#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100863static void azx_power_notify(struct hda_bus *bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200864#endif
Takashi Iwai111d3af2006-02-16 18:17:58 +0100865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866/* reset codec link */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100867static int azx_reset(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 int count;
870
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100871 if (!full_reset)
872 goto __skip;
873
Danny Tholene8a7f132007-09-11 21:41:56 +0200874 /* clear STATESTS */
875 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /* reset controller */
878 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
879
880 count = 50;
881 while (azx_readb(chip, GCTL) && --count)
882 msleep(1);
883
884 /* delay for >= 100us for codec PLL to settle per spec
885 * Rev 0.9 section 5.5.1
886 */
887 msleep(1);
888
889 /* Bring controller out of reset */
890 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
891
892 count = 50;
Pavel Machek927fc862006-08-31 17:03:43 +0200893 while (!azx_readb(chip, GCTL) && --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 msleep(1);
895
Pavel Machek927fc862006-08-31 17:03:43 +0200896 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 msleep(1);
898
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100899 __skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* check to see if controller is ready */
Pavel Machek927fc862006-08-31 17:03:43 +0200901 if (!azx_readb(chip, GCTL)) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200902 snd_printd(SFX "azx_reset: controller not ready!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return -EBUSY;
904 }
905
Matt41e2fce2005-07-04 17:49:55 +0200906 /* Accept unsolicited responses */
Takashi Iwai1a696972009-11-07 09:49:04 +0100907 if (!chip->single_cmd)
908 azx_writel(chip, GCTL, azx_readl(chip, GCTL) |
909 ICH6_GCTL_UNSOL);
Matt41e2fce2005-07-04 17:49:55 +0200910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* detect codecs */
Pavel Machek927fc862006-08-31 17:03:43 +0200912 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 chip->codec_mask = azx_readw(chip, STATESTS);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200914 snd_printdd(SFX "codec_mask = 0x%x\n", chip->codec_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
917 return 0;
918}
919
920
921/*
922 * Lowlevel interface
923 */
924
925/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100926static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 /* enable controller CIE and GIE */
929 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
930 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
931}
932
933/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100934static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
936 int i;
937
938 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200939 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100940 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 azx_sd_writeb(azx_dev, SD_CTL,
942 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
943 }
944
945 /* disable SIE for all streams */
946 azx_writeb(chip, INTCTL, 0);
947
948 /* disable controller CIE and GIE */
949 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
950 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
951}
952
953/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100954static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 int i;
957
958 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200959 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100960 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
962 }
963
964 /* clear STATESTS */
965 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
966
967 /* clear rirb status */
968 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
969
970 /* clear int status */
971 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
972}
973
974/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100975static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Joseph Chan0e153472008-08-26 14:38:03 +0200977 /*
978 * Before stream start, initialize parameter
979 */
980 azx_dev->insufficient = 1;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /* enable SIE */
Wei Niccc5df02010-01-26 15:59:33 +0800983 azx_writel(chip, INTCTL,
984 azx_readl(chip, INTCTL) | (1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /* set DMA start and interrupt mask */
986 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
987 SD_CTL_DMA_START | SD_INT_MASK);
988}
989
Takashi Iwai1dddab42009-03-18 15:15:37 +0100990/* stop DMA */
991static void azx_stream_clear(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
994 ~(SD_CTL_DMA_START | SD_INT_MASK));
995 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
Takashi Iwai1dddab42009-03-18 15:15:37 +0100996}
997
998/* stop a stream */
999static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
1000{
1001 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* disable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001003 azx_writel(chip, INTCTL,
1004 azx_readl(chip, INTCTL) & ~(1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
1007
1008/*
Takashi Iwaicb53c622007-08-10 17:21:45 +02001009 * reset and start the controller registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001011static void azx_init_chip(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001013 if (chip->initialized)
1014 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 /* reset controller */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001017 azx_reset(chip, full_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 /* initialize interrupts */
1020 azx_int_clear(chip);
1021 azx_int_enable(chip);
1022
1023 /* initialize the codec command I/O */
Takashi Iwai1a696972009-11-07 09:49:04 +01001024 if (!chip->single_cmd)
1025 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001027 /* program the position buffer */
1028 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001029 azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +02001030
Takashi Iwaicb53c622007-08-10 17:21:45 +02001031 chip->initialized = 1;
1032}
1033
1034/*
1035 * initialize the PCI registers
1036 */
1037/* update bits in a PCI register byte */
1038static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
1039 unsigned char mask, unsigned char val)
1040{
1041 unsigned char data;
1042
1043 pci_read_config_byte(pci, reg, &data);
1044 data &= ~mask;
1045 data |= (val & mask);
1046 pci_write_config_byte(pci, reg, data);
1047}
1048
1049static void azx_init_pci(struct azx *chip)
1050{
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001051 unsigned short snoop;
1052
Takashi Iwaicb53c622007-08-10 17:21:45 +02001053 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
1054 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
1055 * Ensuring these bits are 0 clears playback static on some HD Audio
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001056 * codecs.
1057 * The PCI register TCSEL is defined in the Intel manuals.
Takashi Iwaicb53c622007-08-10 17:21:45 +02001058 */
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001059 if (chip->driver_type != AZX_DRIVER_ATI &&
1060 chip->driver_type != AZX_DRIVER_ATIHDMI)
1061 update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001062
Vinod Gda3fca22005-09-13 18:49:12 +02001063 switch (chip->driver_type) {
1064 case AZX_DRIVER_ATI:
1065 /* For ATI SB450 azalia HD audio, we need to enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +02001066 update_pci_byte(chip->pci,
1067 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
1068 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
Vinod Gda3fca22005-09-13 18:49:12 +02001069 break;
1070 case AZX_DRIVER_NVIDIA:
1071 /* For NVIDIA HDA, enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +02001072 update_pci_byte(chip->pci,
1073 NVIDIA_HDA_TRANSREG_ADDR,
1074 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
Peer Chen320dcc32008-08-20 16:43:24 -07001075 update_pci_byte(chip->pci,
1076 NVIDIA_HDA_ISTRM_COH,
1077 0x01, NVIDIA_HDA_ENABLE_COHBIT);
1078 update_pci_byte(chip->pci,
1079 NVIDIA_HDA_OSTRM_COH,
1080 0x01, NVIDIA_HDA_ENABLE_COHBIT);
Vinod Gda3fca22005-09-13 18:49:12 +02001081 break;
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001082 case AZX_DRIVER_SCH:
Seth Heasley32679f92010-02-22 17:31:09 -08001083 case AZX_DRIVER_PCH:
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001084 pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
1085 if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001086 pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC,
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001087 snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
1088 pci_read_config_word(chip->pci,
1089 INTEL_SCH_HDA_DEVC, &snoop);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001090 snd_printdd(SFX "HDA snoop disabled, enabling ... %s\n",
1091 (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001092 ? "Failed" : "OK");
1093 }
1094 break;
1095
Vinod Gda3fca22005-09-13 18:49:12 +02001096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
1099
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001100static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/*
1103 * interrupt handler
1104 */
David Howells7d12e782006-10-05 14:55:46 +01001105static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001107 struct azx *chip = dev_id;
1108 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 u32 status;
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001110 u8 sd_status;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001111 int i, ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 spin_lock(&chip->reg_lock);
1114
1115 status = azx_readl(chip, INTSTS);
1116 if (status == 0) {
1117 spin_unlock(&chip->reg_lock);
1118 return IRQ_NONE;
1119 }
1120
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001121 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 azx_dev = &chip->azx_dev[i];
1123 if (status & azx_dev->sd_int_sta_mask) {
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001124 sd_status = azx_sd_readb(azx_dev, SD_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001126 if (!azx_dev->substream || !azx_dev->running ||
1127 !(sd_status & SD_INT_COMPLETE))
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001128 continue;
1129 /* check whether this IRQ is really acceptable */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001130 ok = azx_position_ok(chip, azx_dev);
1131 if (ok == 1) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001132 azx_dev->irq_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 spin_unlock(&chip->reg_lock);
1134 snd_pcm_period_elapsed(azx_dev->substream);
1135 spin_lock(&chip->reg_lock);
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001136 } else if (ok == 0 && chip->bus && chip->bus->workq) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001137 /* bogus IRQ, process it later */
1138 azx_dev->irq_pending = 1;
Takashi Iwai6acaed32009-01-12 10:09:24 +01001139 queue_work(chip->bus->workq,
1140 &chip->irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142 }
1143 }
1144
1145 /* clear rirb int */
1146 status = azx_readb(chip, RIRBSTS);
1147 if (status & RIRB_INT_MASK) {
Takashi Iwai14d34f12010-10-21 09:03:25 +02001148 if (status & RIRB_INT_RESPONSE) {
1149 if (chip->driver_type == AZX_DRIVER_CTX)
1150 udelay(80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 azx_update_rirb(chip);
Takashi Iwai14d34f12010-10-21 09:03:25 +02001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1154 }
1155
1156#if 0
1157 /* clear state status int */
1158 if (azx_readb(chip, STATESTS) & 0x04)
1159 azx_writeb(chip, STATESTS, 0x04);
1160#endif
1161 spin_unlock(&chip->reg_lock);
1162
1163 return IRQ_HANDLED;
1164}
1165
1166
1167/*
Takashi Iwai675f25d2008-06-10 17:53:20 +02001168 * set up a BDL entry
1169 */
1170static int setup_bdle(struct snd_pcm_substream *substream,
1171 struct azx_dev *azx_dev, u32 **bdlp,
1172 int ofs, int size, int with_ioc)
1173{
Takashi Iwai675f25d2008-06-10 17:53:20 +02001174 u32 *bdl = *bdlp;
1175
1176 while (size > 0) {
1177 dma_addr_t addr;
1178 int chunk;
1179
1180 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
1181 return -EINVAL;
1182
Takashi Iwai77a23f22008-08-21 13:00:13 +02001183 addr = snd_pcm_sgbuf_get_addr(substream, ofs);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001184 /* program the address field of the BDL entry */
1185 bdl[0] = cpu_to_le32((u32)addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001186 bdl[1] = cpu_to_le32(upper_32_bits(addr));
Takashi Iwai675f25d2008-06-10 17:53:20 +02001187 /* program the size field of the BDL entry */
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001188 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001189 bdl[2] = cpu_to_le32(chunk);
1190 /* program the IOC to enable interrupt
1191 * only when the whole fragment is processed
1192 */
1193 size -= chunk;
1194 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
1195 bdl += 4;
1196 azx_dev->frags++;
1197 ofs += chunk;
1198 }
1199 *bdlp = bdl;
1200 return ofs;
1201}
1202
1203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 * set up BDL entries
1205 */
Takashi Iwai555e2192008-06-10 17:53:34 +02001206static int azx_setup_periods(struct azx *chip,
1207 struct snd_pcm_substream *substream,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001208 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001210 u32 *bdl;
1211 int i, ofs, periods, period_bytes;
Takashi Iwai555e2192008-06-10 17:53:34 +02001212 int pos_adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 /* reset BDL address */
1215 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1216 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1217
Takashi Iwai97b71c92009-03-18 15:09:13 +01001218 period_bytes = azx_dev->period_bytes;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001219 periods = azx_dev->bufsize / period_bytes;
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001222 bdl = (u32 *)azx_dev->bdl.area;
1223 ofs = 0;
1224 azx_dev->frags = 0;
Takashi Iwai555e2192008-06-10 17:53:34 +02001225 pos_adj = bdl_pos_adj[chip->dev_index];
1226 if (pos_adj > 0) {
Takashi Iwai675f25d2008-06-10 17:53:20 +02001227 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001228 int pos_align = pos_adj;
Takashi Iwai555e2192008-06-10 17:53:34 +02001229 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001230 if (!pos_adj)
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001231 pos_adj = pos_align;
1232 else
1233 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
1234 pos_align;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001235 pos_adj = frames_to_bytes(runtime, pos_adj);
1236 if (pos_adj >= period_bytes) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001237 snd_printk(KERN_WARNING SFX "Too big adjustment %d\n",
Takashi Iwai555e2192008-06-10 17:53:34 +02001238 bdl_pos_adj[chip->dev_index]);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001239 pos_adj = 0;
1240 } else {
1241 ofs = setup_bdle(substream, azx_dev,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001242 &bdl, ofs, pos_adj,
1243 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001244 if (ofs < 0)
1245 goto error;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001246 }
Takashi Iwai555e2192008-06-10 17:53:34 +02001247 } else
1248 pos_adj = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001249 for (i = 0; i < periods; i++) {
1250 if (i == periods - 1 && pos_adj)
1251 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1252 period_bytes - pos_adj, 0);
1253 else
1254 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001255 period_bytes,
1256 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001257 if (ofs < 0)
1258 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001260 return 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001261
1262 error:
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001263 snd_printk(KERN_ERR SFX "Too many BDL entries: buffer=%d, period=%d\n",
Takashi Iwai675f25d2008-06-10 17:53:20 +02001264 azx_dev->bufsize, period_bytes);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001265 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
Takashi Iwai1dddab42009-03-18 15:15:37 +01001268/* reset stream */
1269static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 unsigned char val;
1272 int timeout;
1273
Takashi Iwai1dddab42009-03-18 15:15:37 +01001274 azx_stream_clear(chip, azx_dev);
1275
Takashi Iwaid01ce992007-07-27 16:52:19 +02001276 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1277 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 udelay(3);
1279 timeout = 300;
1280 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1281 --timeout)
1282 ;
1283 val &= ~SD_CTL_STREAM_RESET;
1284 azx_sd_writeb(azx_dev, SD_CTL, val);
1285 udelay(3);
1286
1287 timeout = 300;
1288 /* waiting for hardware to report that the stream is out of reset */
1289 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1290 --timeout)
1291 ;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001292
1293 /* reset first position - may not be synced with hw at this time */
1294 *azx_dev->posbuf = 0;
Takashi Iwai1dddab42009-03-18 15:15:37 +01001295}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Takashi Iwai1dddab42009-03-18 15:15:37 +01001297/*
1298 * set up the SD for streaming
1299 */
1300static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
1301{
1302 /* make sure the run bit is zero for SD */
1303 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /* program the stream_tag */
1305 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001306 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1308
1309 /* program the length of samples in cyclic buffer */
1310 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1311
1312 /* program the stream format */
1313 /* this value needs to be the same as the one programmed */
1314 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1315
1316 /* program the stream LVI (last valid index) of the BDL */
1317 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1318
1319 /* program the BDL address */
1320 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001321 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 /* upper BDL address */
Takashi Iwai766979e2008-06-13 20:53:56 +02001323 azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001325 /* enable the position buffer */
David Henningsson4cb36312010-09-30 10:12:50 +02001326 if (chip->position_fix[0] != POS_FIX_LPIB ||
1327 chip->position_fix[1] != POS_FIX_LPIB) {
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001328 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1329 azx_writel(chip, DPLBASE,
1330 (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
1331 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001334 azx_sd_writel(azx_dev, SD_CTL,
1335 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 return 0;
1338}
1339
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001340/*
1341 * Probe the given codec address
1342 */
1343static int probe_codec(struct azx *chip, int addr)
1344{
1345 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
1346 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
1347 unsigned int res;
1348
Wu Fengguanga678cde2009-08-01 18:46:46 +08001349 mutex_lock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001350 chip->probing = 1;
1351 azx_send_cmd(chip->bus, cmd);
Wu Fengguangdeadff12009-08-01 18:45:16 +08001352 res = azx_get_response(chip->bus, addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001353 chip->probing = 0;
Wu Fengguanga678cde2009-08-01 18:46:46 +08001354 mutex_unlock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001355 if (res == -1)
1356 return -EIO;
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001357 snd_printdd(SFX "codec #%d probed OK\n", addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001358 return 0;
1359}
1360
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001361static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1362 struct hda_pcm *cpcm);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001363static void azx_stop_chip(struct azx *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Takashi Iwai8dd78332009-06-02 01:16:07 +02001365static void azx_bus_reset(struct hda_bus *bus)
1366{
1367 struct azx *chip = bus->private_data;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001368
1369 bus->in_reset = 1;
1370 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001371 azx_init_chip(chip, 1);
Alexander Beregalov65f75982009-06-04 13:46:16 +04001372#ifdef CONFIG_PM
Takashi Iwai8dd78332009-06-02 01:16:07 +02001373 if (chip->initialized) {
Alexander Beregalov65f75982009-06-04 13:46:16 +04001374 int i;
1375
Takashi Iwaic8936222010-01-28 17:08:53 +01001376 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai8dd78332009-06-02 01:16:07 +02001377 snd_pcm_suspend_all(chip->pcm[i]);
1378 snd_hda_suspend(chip->bus);
1379 snd_hda_resume(chip->bus);
1380 }
Alexander Beregalov65f75982009-06-04 13:46:16 +04001381#endif
Takashi Iwai8dd78332009-06-02 01:16:07 +02001382 bus->in_reset = 0;
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385/*
1386 * Codec initialization
1387 */
1388
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001389/* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1390static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
Wei Ni7445dfc2010-03-03 15:05:53 +08001391 [AZX_DRIVER_NVIDIA] = 8,
Kailang Yangf2690022008-05-27 11:44:55 +02001392 [AZX_DRIVER_TERA] = 1,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001393};
1394
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001395static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 struct hda_bus_template bus_temp;
Takashi Iwai34c25352008-10-28 11:38:58 +01001398 int c, codecs, err;
1399 int max_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 memset(&bus_temp, 0, sizeof(bus_temp));
1402 bus_temp.private_data = chip;
1403 bus_temp.modelname = model;
1404 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001405 bus_temp.ops.command = azx_send_cmd;
1406 bus_temp.ops.get_response = azx_get_response;
Takashi Iwai176d5332008-07-30 15:01:44 +02001407 bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001408 bus_temp.ops.bus_reset = azx_bus_reset;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001409#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai11cd41b2008-11-28 07:22:18 +01001410 bus_temp.power_save = &power_save;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001411 bus_temp.ops.pm_notify = azx_power_notify;
1412#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Takashi Iwaid01ce992007-07-27 16:52:19 +02001414 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1415 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return err;
1417
Wei Nidc9c8e22008-09-26 13:55:56 +08001418 if (chip->driver_type == AZX_DRIVER_NVIDIA)
1419 chip->bus->needs_damn_long_delay = 1;
1420
Takashi Iwai34c25352008-10-28 11:38:58 +01001421 codecs = 0;
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001422 max_slots = azx_max_codecs[chip->driver_type];
1423 if (!max_slots)
Wei Ni7445dfc2010-03-03 15:05:53 +08001424 max_slots = AZX_DEFAULT_CODECS;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001425
1426 /* First try to probe all given codec slots */
1427 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001428 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001429 if (probe_codec(chip, c) < 0) {
1430 /* Some BIOSen give you wrong codec addresses
1431 * that don't exist
1432 */
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001433 snd_printk(KERN_WARNING SFX
1434 "Codec #%d probe error; "
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001435 "disabling it...\n", c);
1436 chip->codec_mask &= ~(1 << c);
1437 /* More badly, accessing to a non-existing
1438 * codec often screws up the controller chip,
Paul Menzel24481582010-02-08 20:37:26 +01001439 * and disturbs the further communications.
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001440 * Thus if an error occurs during probing,
1441 * better to reset the controller chip to
1442 * get back to the sanity state.
1443 */
1444 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001445 azx_init_chip(chip, 1);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001446 }
1447 }
1448 }
1449
Takashi Iwaid507cd62011-04-26 15:25:02 +02001450 /* AMD chipsets often cause the communication stalls upon certain
1451 * sequence like the pin-detection. It seems that forcing the synced
1452 * access works around the stall. Grrr...
1453 */
1454 if (chip->pci->vendor == PCI_VENDOR_ID_AMD ||
1455 chip->pci->vendor == PCI_VENDOR_ID_ATI) {
1456 snd_printk(KERN_INFO SFX "Enable sync_write for AMD chipset\n");
1457 chip->bus->sync_write = 1;
1458 chip->bus->allow_bus_reset = 1;
1459 }
1460
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001461 /* Then create codec instances */
Takashi Iwai34c25352008-10-28 11:38:58 +01001462 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001463 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001464 struct hda_codec *codec;
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001465 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (err < 0)
1467 continue;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01001468 codec->beep_mode = chip->beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 codecs++;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001470 }
1471 }
1472 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1474 return -ENXIO;
1475 }
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001476 return 0;
1477}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001479/* configure each codec instance */
1480static int __devinit azx_codec_configure(struct azx *chip)
1481{
1482 struct hda_codec *codec;
1483 list_for_each_entry(codec, &chip->bus->codec_list, list) {
1484 snd_hda_codec_configure(codec);
1485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return 0;
1487}
1488
1489
1490/*
1491 * PCM support
1492 */
1493
1494/* assign a stream for the PCM */
Wu Fengguangef18bed2009-12-25 13:14:27 +08001495static inline struct azx_dev *
1496azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001498 int dev, i, nums;
Wu Fengguangef18bed2009-12-25 13:14:27 +08001499 struct azx_dev *res = NULL;
1500
1501 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001502 dev = chip->playback_index_offset;
1503 nums = chip->playback_streams;
1504 } else {
1505 dev = chip->capture_index_offset;
1506 nums = chip->capture_streams;
1507 }
1508 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001509 if (!chip->azx_dev[dev].opened) {
Wu Fengguangef18bed2009-12-25 13:14:27 +08001510 res = &chip->azx_dev[dev];
1511 if (res->device == substream->pcm->device)
1512 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 }
Wu Fengguangef18bed2009-12-25 13:14:27 +08001514 if (res) {
1515 res->opened = 1;
1516 res->device = substream->pcm->device;
1517 }
1518 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519}
1520
1521/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001522static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523{
1524 azx_dev->opened = 0;
1525}
1526
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001527static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001528 .info = (SNDRV_PCM_INFO_MMAP |
1529 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1531 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001532 /* No full-resume yet implemented */
1533 /* SNDRV_PCM_INFO_RESUME |*/
Takashi Iwai850f0e52008-03-18 17:11:05 +01001534 SNDRV_PCM_INFO_PAUSE |
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001535 SNDRV_PCM_INFO_SYNC_START |
1536 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1538 .rates = SNDRV_PCM_RATE_48000,
1539 .rate_min = 48000,
1540 .rate_max = 48000,
1541 .channels_min = 2,
1542 .channels_max = 2,
1543 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1544 .period_bytes_min = 128,
1545 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1546 .periods_min = 2,
1547 .periods_max = AZX_MAX_FRAG,
1548 .fifo_size = 0,
1549};
1550
1551struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001552 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct hda_codec *codec;
1554 struct hda_pcm_stream *hinfo[2];
1555};
1556
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001557static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1560 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001561 struct azx *chip = apcm->chip;
1562 struct azx_dev *azx_dev;
1563 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 unsigned long flags;
1565 int err;
1566
Ingo Molnar62932df2006-01-16 16:34:20 +01001567 mutex_lock(&chip->open_mutex);
Wu Fengguangef18bed2009-12-25 13:14:27 +08001568 azx_dev = azx_assign_device(chip, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001570 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 return -EBUSY;
1572 }
1573 runtime->hw = azx_pcm_hw;
1574 runtime->hw.channels_min = hinfo->channels_min;
1575 runtime->hw.channels_max = hinfo->channels_max;
1576 runtime->hw.formats = hinfo->formats;
1577 runtime->hw.rates = hinfo->rates;
1578 snd_pcm_limit_hw_rates(runtime);
1579 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001580 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1581 128);
1582 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1583 128);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001584 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001585 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1586 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001588 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001589 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 return err;
1591 }
Takashi Iwai70d321e2009-07-03 23:06:45 +02001592 snd_pcm_limit_hw_rates(runtime);
Takashi Iwaiaba66532009-07-05 11:44:46 +02001593 /* sanity check */
1594 if (snd_BUG_ON(!runtime->hw.channels_min) ||
1595 snd_BUG_ON(!runtime->hw.channels_max) ||
1596 snd_BUG_ON(!runtime->hw.formats) ||
1597 snd_BUG_ON(!runtime->hw.rates)) {
1598 azx_release_device(azx_dev);
1599 hinfo->ops.close(hinfo, apcm->codec, substream);
1600 snd_hda_power_down(apcm->codec);
1601 mutex_unlock(&chip->open_mutex);
1602 return -EINVAL;
1603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 spin_lock_irqsave(&chip->reg_lock, flags);
1605 azx_dev->substream = substream;
1606 azx_dev->running = 0;
1607 spin_unlock_irqrestore(&chip->reg_lock, flags);
1608
1609 runtime->private_data = azx_dev;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001610 snd_pcm_set_sync(substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001611 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return 0;
1613}
1614
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001615static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
1617 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1618 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001619 struct azx *chip = apcm->chip;
1620 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 unsigned long flags;
1622
Ingo Molnar62932df2006-01-16 16:34:20 +01001623 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 spin_lock_irqsave(&chip->reg_lock, flags);
1625 azx_dev->substream = NULL;
1626 azx_dev->running = 0;
1627 spin_unlock_irqrestore(&chip->reg_lock, flags);
1628 azx_release_device(azx_dev);
1629 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001630 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001631 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return 0;
1633}
1634
Takashi Iwaid01ce992007-07-27 16:52:19 +02001635static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1636 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
Takashi Iwai97b71c92009-03-18 15:09:13 +01001638 struct azx_dev *azx_dev = get_azx_dev(substream);
1639
1640 azx_dev->bufsize = 0;
1641 azx_dev->period_bytes = 0;
1642 azx_dev->format_val = 0;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001643 return snd_pcm_lib_malloc_pages(substream,
1644 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001647static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
1649 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001650 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1652
1653 /* reset BDL address */
1654 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1655 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1656 azx_sd_writel(azx_dev, SD_CTL, 0);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001657 azx_dev->bufsize = 0;
1658 azx_dev->period_bytes = 0;
1659 azx_dev->format_val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Takashi Iwaieb541332010-08-06 13:48:11 +02001661 snd_hda_codec_cleanup(apcm->codec, hinfo, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663 return snd_pcm_lib_free_pages(substream);
1664}
1665
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001666static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
1668 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001669 struct azx *chip = apcm->chip;
1670 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001672 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001673 unsigned int bufsize, period_bytes, format_val, stream_tag;
Takashi Iwai97b71c92009-03-18 15:09:13 +01001674 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001676 azx_stream_reset(chip, azx_dev);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001677 format_val = snd_hda_calc_stream_format(runtime->rate,
1678 runtime->channels,
1679 runtime->format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03001680 hinfo->maxbps,
1681 apcm->codec->spdif_ctls);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001682 if (!format_val) {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001683 snd_printk(KERN_ERR SFX
1684 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 runtime->rate, runtime->channels, runtime->format);
1686 return -EINVAL;
1687 }
1688
Takashi Iwai97b71c92009-03-18 15:09:13 +01001689 bufsize = snd_pcm_lib_buffer_bytes(substream);
1690 period_bytes = snd_pcm_lib_period_bytes(substream);
1691
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001692 snd_printdd(SFX "azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
Takashi Iwai97b71c92009-03-18 15:09:13 +01001693 bufsize, format_val);
1694
1695 if (bufsize != azx_dev->bufsize ||
1696 period_bytes != azx_dev->period_bytes ||
1697 format_val != azx_dev->format_val) {
1698 azx_dev->bufsize = bufsize;
1699 azx_dev->period_bytes = period_bytes;
1700 azx_dev->format_val = format_val;
1701 err = azx_setup_periods(chip, substream, azx_dev);
1702 if (err < 0)
1703 return err;
1704 }
1705
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001706 /* wallclk has 24Mhz clock source */
1707 azx_dev->period_wallclk = (((runtime->period_size * 24000) /
1708 runtime->rate) * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 azx_setup_controller(chip, azx_dev);
1710 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1711 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1712 else
1713 azx_dev->fifo_size = 0;
1714
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001715 stream_tag = azx_dev->stream_tag;
1716 /* CA-IBG chips need the playback stream starting from 1 */
1717 if (chip->driver_type == AZX_DRIVER_CTX &&
1718 stream_tag > chip->capture_streams)
1719 stream_tag -= chip->capture_streams;
1720 return snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag,
Takashi Iwaieb541332010-08-06 13:48:11 +02001721 azx_dev->format_val, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001724static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
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;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001728 struct azx_dev *azx_dev;
1729 struct snd_pcm_substream *s;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001730 int rstart = 0, start, nsync = 0, sbits = 0;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001731 int nwait, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 switch (cmd) {
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001734 case SNDRV_PCM_TRIGGER_START:
1735 rstart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1737 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001738 start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 break;
1740 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001741 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001743 start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 break;
1745 default:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001746 return -EINVAL;
1747 }
1748
1749 snd_pcm_group_for_each_entry(s, substream) {
1750 if (s->pcm->card != substream->pcm->card)
1751 continue;
1752 azx_dev = get_azx_dev(s);
1753 sbits |= 1 << azx_dev->index;
1754 nsync++;
1755 snd_pcm_trigger_done(s, substream);
1756 }
1757
1758 spin_lock(&chip->reg_lock);
1759 if (nsync > 1) {
1760 /* first, set SYNC bits of corresponding streams */
1761 azx_writel(chip, SYNC, azx_readl(chip, SYNC) | sbits);
1762 }
1763 snd_pcm_group_for_each_entry(s, substream) {
1764 if (s->pcm->card != substream->pcm->card)
1765 continue;
1766 azx_dev = get_azx_dev(s);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001767 if (start) {
1768 azx_dev->start_wallclk = azx_readl(chip, WALLCLK);
1769 if (!rstart)
1770 azx_dev->start_wallclk -=
1771 azx_dev->period_wallclk;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001772 azx_stream_start(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001773 } else {
Takashi Iwai850f0e52008-03-18 17:11:05 +01001774 azx_stream_stop(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001775 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001776 azx_dev->running = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 }
1778 spin_unlock(&chip->reg_lock);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001779 if (start) {
1780 if (nsync == 1)
1781 return 0;
1782 /* wait until all FIFOs get ready */
1783 for (timeout = 5000; timeout; timeout--) {
1784 nwait = 0;
1785 snd_pcm_group_for_each_entry(s, substream) {
1786 if (s->pcm->card != substream->pcm->card)
1787 continue;
1788 azx_dev = get_azx_dev(s);
1789 if (!(azx_sd_readb(azx_dev, SD_STS) &
1790 SD_STS_FIFO_READY))
1791 nwait++;
1792 }
1793 if (!nwait)
1794 break;
1795 cpu_relax();
1796 }
1797 } else {
1798 /* wait until all RUN bits are cleared */
1799 for (timeout = 5000; timeout; timeout--) {
1800 nwait = 0;
1801 snd_pcm_group_for_each_entry(s, substream) {
1802 if (s->pcm->card != substream->pcm->card)
1803 continue;
1804 azx_dev = get_azx_dev(s);
1805 if (azx_sd_readb(azx_dev, SD_CTL) &
1806 SD_CTL_DMA_START)
1807 nwait++;
1808 }
1809 if (!nwait)
1810 break;
1811 cpu_relax();
1812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001814 if (nsync > 1) {
1815 spin_lock(&chip->reg_lock);
1816 /* reset SYNC bits */
1817 azx_writel(chip, SYNC, azx_readl(chip, SYNC) & ~sbits);
1818 spin_unlock(&chip->reg_lock);
1819 }
1820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Joseph Chan0e153472008-08-26 14:38:03 +02001823/* get the current DMA position with correction on VIA chips */
1824static unsigned int azx_via_get_position(struct azx *chip,
1825 struct azx_dev *azx_dev)
1826{
1827 unsigned int link_pos, mini_pos, bound_pos;
1828 unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
1829 unsigned int fifo_size;
1830
1831 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
1832 if (azx_dev->index >= 4) {
1833 /* Playback, no problem using link position */
1834 return link_pos;
1835 }
1836
1837 /* Capture */
1838 /* For new chipset,
1839 * use mod to get the DMA position just like old chipset
1840 */
1841 mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
1842 mod_dma_pos %= azx_dev->period_bytes;
1843
1844 /* azx_dev->fifo_size can't get FIFO size of in stream.
1845 * Get from base address + offset.
1846 */
1847 fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
1848
1849 if (azx_dev->insufficient) {
1850 /* Link position never gather than FIFO size */
1851 if (link_pos <= fifo_size)
1852 return 0;
1853
1854 azx_dev->insufficient = 0;
1855 }
1856
1857 if (link_pos <= fifo_size)
1858 mini_pos = azx_dev->bufsize + link_pos - fifo_size;
1859 else
1860 mini_pos = link_pos - fifo_size;
1861
1862 /* Find nearest previous boudary */
1863 mod_mini_pos = mini_pos % azx_dev->period_bytes;
1864 mod_link_pos = link_pos % azx_dev->period_bytes;
1865 if (mod_link_pos >= fifo_size)
1866 bound_pos = link_pos - mod_link_pos;
1867 else if (mod_dma_pos >= mod_mini_pos)
1868 bound_pos = mini_pos - mod_mini_pos;
1869 else {
1870 bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
1871 if (bound_pos >= azx_dev->bufsize)
1872 bound_pos = 0;
1873 }
1874
1875 /* Calculate real DMA position we want */
1876 return bound_pos + mod_dma_pos;
1877}
1878
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001879static unsigned int azx_get_position(struct azx *chip,
1880 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 unsigned int pos;
David Henningsson4cb36312010-09-30 10:12:50 +02001883 int stream = azx_dev->substream->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
David Henningsson4cb36312010-09-30 10:12:50 +02001885 switch (chip->position_fix[stream]) {
1886 case POS_FIX_LPIB:
1887 /* read LPIB */
1888 pos = azx_sd_readl(azx_dev, SD_LPIB);
1889 break;
1890 case POS_FIX_VIACOMBO:
Joseph Chan0e153472008-08-26 14:38:03 +02001891 pos = azx_via_get_position(chip, azx_dev);
David Henningsson4cb36312010-09-30 10:12:50 +02001892 break;
1893 default:
1894 /* use the position buffer */
1895 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwaic74db862005-05-12 14:26:27 +02001896 }
David Henningsson4cb36312010-09-30 10:12:50 +02001897
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 if (pos >= azx_dev->bufsize)
1899 pos = 0;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001900 return pos;
1901}
1902
1903static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
1904{
1905 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1906 struct azx *chip = apcm->chip;
1907 struct azx_dev *azx_dev = get_azx_dev(substream);
1908 return bytes_to_frames(substream->runtime,
1909 azx_get_position(chip, azx_dev));
1910}
1911
1912/*
1913 * Check whether the current DMA position is acceptable for updating
1914 * periods. Returns non-zero if it's OK.
1915 *
1916 * Many HD-audio controllers appear pretty inaccurate about
1917 * the update-IRQ timing. The IRQ is issued before actually the
1918 * data is processed. So, we need to process it afterwords in a
1919 * workqueue.
1920 */
1921static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
1922{
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001923 u32 wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001924 unsigned int pos;
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001925 int stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001926
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001927 wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk;
1928 if (wallclk < (azx_dev->period_wallclk * 2) / 3)
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001929 return -1; /* bogus (too early) interrupt */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001930
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001931 stream = azx_dev->substream->stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001932 pos = azx_get_position(chip, azx_dev);
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001933 if (chip->position_fix[stream] == POS_FIX_AUTO) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001934 if (!pos) {
1935 printk(KERN_WARNING
1936 "hda-intel: Invalid position buffer, "
1937 "using LPIB read method instead.\n");
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001938 chip->position_fix[stream] = POS_FIX_LPIB;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001939 pos = azx_get_position(chip, azx_dev);
1940 } else
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001941 chip->position_fix[stream] = POS_FIX_POSBUF;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001942 }
1943
Takashi Iwaid6d8bf52010-02-12 18:17:06 +01001944 if (WARN_ONCE(!azx_dev->period_bytes,
1945 "hda-intel: zero azx_dev->period_bytes"))
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001946 return -1; /* this shouldn't happen! */
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001947 if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001948 pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
1949 /* NG - it's below the first next period boundary */
1950 return bdl_pos_adj[chip->dev_index] ? 0 : -1;
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001951 azx_dev->start_wallclk += wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001952 return 1; /* OK, it's fine */
1953}
1954
1955/*
1956 * The work for pending PCM period updates.
1957 */
1958static void azx_irq_pending_work(struct work_struct *work)
1959{
1960 struct azx *chip = container_of(work, struct azx, irq_pending_work);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001961 int i, pending, ok;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001962
Takashi Iwaia6a950a2008-06-10 17:53:35 +02001963 if (!chip->irq_pending_warned) {
1964 printk(KERN_WARNING
1965 "hda-intel: IRQ timing workaround is activated "
1966 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
1967 chip->card->number);
1968 chip->irq_pending_warned = 1;
1969 }
1970
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001971 for (;;) {
1972 pending = 0;
1973 spin_lock_irq(&chip->reg_lock);
1974 for (i = 0; i < chip->num_streams; i++) {
1975 struct azx_dev *azx_dev = &chip->azx_dev[i];
1976 if (!azx_dev->irq_pending ||
1977 !azx_dev->substream ||
1978 !azx_dev->running)
1979 continue;
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001980 ok = azx_position_ok(chip, azx_dev);
1981 if (ok > 0) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001982 azx_dev->irq_pending = 0;
1983 spin_unlock(&chip->reg_lock);
1984 snd_pcm_period_elapsed(azx_dev->substream);
1985 spin_lock(&chip->reg_lock);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001986 } else if (ok < 0) {
1987 pending = 0; /* too early */
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001988 } else
1989 pending++;
1990 }
1991 spin_unlock_irq(&chip->reg_lock);
1992 if (!pending)
1993 return;
Takashi Iwai08af4952010-08-03 14:39:04 +02001994 msleep(1);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001995 }
1996}
1997
1998/* clear irq_pending flags and assure no on-going workq */
1999static void azx_clear_irq_pending(struct azx *chip)
2000{
2001 int i;
2002
2003 spin_lock_irq(&chip->reg_lock);
2004 for (i = 0; i < chip->num_streams; i++)
2005 chip->azx_dev[i].irq_pending = 0;
2006 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002009static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 .open = azx_pcm_open,
2011 .close = azx_pcm_close,
2012 .ioctl = snd_pcm_lib_ioctl,
2013 .hw_params = azx_pcm_hw_params,
2014 .hw_free = azx_pcm_hw_free,
2015 .prepare = azx_pcm_prepare,
2016 .trigger = azx_pcm_trigger,
2017 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002018 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019};
2020
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002021static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Takashi Iwai176d5332008-07-30 15:01:44 +02002023 struct azx_pcm *apcm = pcm->private_data;
2024 if (apcm) {
2025 apcm->chip->pcm[pcm->device] = NULL;
2026 kfree(apcm);
2027 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
Takashi Iwai176d5332008-07-30 15:01:44 +02002030static int
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002031azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
2032 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002034 struct azx *chip = bus->private_data;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002035 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 struct azx_pcm *apcm;
Takashi Iwai176d5332008-07-30 15:01:44 +02002037 int pcm_dev = cpcm->device;
2038 int s, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Takashi Iwaic8936222010-01-28 17:08:53 +01002040 if (pcm_dev >= HDA_MAX_PCMS) {
Takashi Iwai176d5332008-07-30 15:01:44 +02002041 snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
2042 pcm_dev);
Takashi Iwaida3cec32008-08-08 17:12:14 +02002043 return -EINVAL;
Takashi Iwai176d5332008-07-30 15:01:44 +02002044 }
2045 if (chip->pcm[pcm_dev]) {
2046 snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
2047 return -EBUSY;
2048 }
2049 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
2050 cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
2051 cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 &pcm);
2053 if (err < 0)
2054 return err;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002055 strlcpy(pcm->name, cpcm->name, sizeof(pcm->name));
Takashi Iwai176d5332008-07-30 15:01:44 +02002056 apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 if (apcm == NULL)
2058 return -ENOMEM;
2059 apcm->chip = chip;
2060 apcm->codec = codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 pcm->private_data = apcm;
2062 pcm->private_free = azx_pcm_free;
Takashi Iwai176d5332008-07-30 15:01:44 +02002063 if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
2064 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
2065 chip->pcm[pcm_dev] = pcm;
2066 cpcm->pcm = pcm;
2067 for (s = 0; s < 2; s++) {
2068 apcm->hinfo[s] = &cpcm->stream[s];
2069 if (cpcm->stream[s].substreams)
2070 snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
2071 }
2072 /* buffer pre-allocation */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002073 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 snd_dma_pci_data(chip->pci),
Takashi Iwaifc4abee2008-07-30 15:13:34 +02002075 1024 * 64, 32 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 return 0;
2077}
2078
2079/*
2080 * mixer creation - all stuff is implemented in hda module
2081 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002082static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
2084 return snd_hda_build_controls(chip->bus);
2085}
2086
2087
2088/*
2089 * initialize SD streams
2090 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002091static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
2093 int i;
2094
2095 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02002096 * assign the starting bdl address to each stream (device)
2097 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002099 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002100 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02002101 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
2103 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
2104 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
2105 azx_dev->sd_int_sta_mask = 1 << i;
2106 /* stream tag: must be non-zero and unique */
2107 azx_dev->index = i;
2108 azx_dev->stream_tag = i + 1;
2109 }
2110
2111 return 0;
2112}
2113
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002114static int azx_acquire_irq(struct azx *chip, int do_disconnect)
2115{
Takashi Iwai437a5a42006-11-21 12:14:23 +01002116 if (request_irq(chip->pci->irq, azx_interrupt,
2117 chip->msi ? 0 : IRQF_SHARED,
Maxim Levitsky94928372010-02-04 22:26:37 +02002118 "hda_intel", chip)) {
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002119 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
2120 "disabling device\n", chip->pci->irq);
2121 if (do_disconnect)
2122 snd_card_disconnect(chip->card);
2123 return -1;
2124 }
2125 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01002126 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002127 return 0;
2128}
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
Takashi Iwaicb53c622007-08-10 17:21:45 +02002131static void azx_stop_chip(struct azx *chip)
2132{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002133 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002134 return;
2135
2136 /* disable interrupts */
2137 azx_int_disable(chip);
2138 azx_int_clear(chip);
2139
2140 /* disable CORB/RIRB */
2141 azx_free_cmd_io(chip);
2142
2143 /* disable position buffer */
2144 azx_writel(chip, DPLBASE, 0);
2145 azx_writel(chip, DPUBASE, 0);
2146
2147 chip->initialized = 0;
2148}
2149
2150#ifdef CONFIG_SND_HDA_POWER_SAVE
2151/* power-up/down the controller */
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002152static void azx_power_notify(struct hda_bus *bus)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002153{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002154 struct azx *chip = bus->private_data;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002155 struct hda_codec *c;
2156 int power_on = 0;
2157
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002158 list_for_each_entry(c, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002159 if (c->power_on) {
2160 power_on = 1;
2161 break;
2162 }
2163 }
2164 if (power_on)
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002165 azx_init_chip(chip, 1);
Wu Fengguang0287d972009-12-11 20:15:11 +08002166 else if (chip->running && power_save_controller &&
2167 !bus->power_keep_link_on)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002168 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002169}
Takashi Iwai5c0b9be2008-12-11 11:47:17 +01002170#endif /* CONFIG_SND_HDA_POWER_SAVE */
2171
2172#ifdef CONFIG_PM
2173/*
2174 * power management
2175 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002176
2177static int snd_hda_codecs_inuse(struct hda_bus *bus)
2178{
2179 struct hda_codec *codec;
2180
2181 list_for_each_entry(codec, &bus->codec_list, list) {
2182 if (snd_hda_codec_needs_resume(codec))
2183 return 1;
2184 }
2185 return 0;
2186}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002187
Takashi Iwai421a1252005-11-17 16:11:09 +01002188static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189{
Takashi Iwai421a1252005-11-17 16:11:09 +01002190 struct snd_card *card = pci_get_drvdata(pci);
2191 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 int i;
2193
Takashi Iwai421a1252005-11-17 16:11:09 +01002194 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002195 azx_clear_irq_pending(chip);
Takashi Iwaic8936222010-01-28 17:08:53 +01002196 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01002197 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002198 if (chip->initialized)
Takashi Iwai8dd78332009-06-02 01:16:07 +02002199 snd_hda_suspend(chip->bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002200 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002201 if (chip->irq >= 0) {
Takashi Iwai43001c92006-09-08 12:30:03 +02002202 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002203 chip->irq = -1;
2204 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002205 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02002206 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01002207 pci_disable_device(pci);
2208 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002209 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 return 0;
2211}
2212
Takashi Iwai421a1252005-11-17 16:11:09 +01002213static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Takashi Iwai421a1252005-11-17 16:11:09 +01002215 struct snd_card *card = pci_get_drvdata(pci);
2216 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217
Takashi Iwaid14a7e02009-02-16 10:13:03 +01002218 pci_set_power_state(pci, PCI_D0);
2219 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002220 if (pci_enable_device(pci) < 0) {
2221 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
2222 "disabling device\n");
2223 snd_card_disconnect(card);
2224 return -EIO;
2225 }
2226 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002227 if (chip->msi)
2228 if (pci_enable_msi(pci) < 0)
2229 chip->msi = 0;
2230 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02002231 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002232 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002233
2234 if (snd_hda_codecs_inuse(chip->bus))
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002235 azx_init_chip(chip, 1);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01002238 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 return 0;
2240}
2241#endif /* CONFIG_PM */
2242
2243
2244/*
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002245 * reboot notifier for hang-up problem at power-down
2246 */
2247static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
2248{
2249 struct azx *chip = container_of(nb, struct azx, reboot_notifier);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01002250 snd_hda_bus_reboot_notify(chip->bus);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002251 azx_stop_chip(chip);
2252 return NOTIFY_OK;
2253}
2254
2255static void azx_notifier_register(struct azx *chip)
2256{
2257 chip->reboot_notifier.notifier_call = azx_halt;
2258 register_reboot_notifier(&chip->reboot_notifier);
2259}
2260
2261static void azx_notifier_unregister(struct azx *chip)
2262{
2263 if (chip->reboot_notifier.notifier_call)
2264 unregister_reboot_notifier(&chip->reboot_notifier);
2265}
2266
2267/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 * destructor
2269 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002270static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002272 int i;
2273
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002274 azx_notifier_unregister(chip);
2275
Takashi Iwaice43fba2005-05-30 20:33:44 +02002276 if (chip->initialized) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002277 azx_clear_irq_pending(chip);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002278 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002280 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 }
2282
Jeff Garzikf000fd82008-04-22 13:50:34 +02002283 if (chip->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 free_irq(chip->irq, (void*)chip);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002285 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02002286 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02002287 if (chip->remap_addr)
2288 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002290 if (chip->azx_dev) {
2291 for (i = 0; i < chip->num_streams; i++)
2292 if (chip->azx_dev[i].bdl.area)
2293 snd_dma_free_pages(&chip->azx_dev[i].bdl);
2294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 if (chip->rb.area)
2296 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 if (chip->posbuf.area)
2298 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 pci_release_regions(chip->pci);
2300 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002301 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 kfree(chip);
2303
2304 return 0;
2305}
2306
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002307static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308{
2309 return azx_free(device->device_data);
2310}
2311
2312/*
Takashi Iwai3372a152007-02-01 15:46:50 +01002313 * white/black-listing for position_fix
2314 */
Ralf Baechle623ec042007-03-13 15:29:47 +01002315static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Daniel T Chen7a68be92010-05-22 12:05:41 -04002316 SND_PCI_QUIRK(0x1025, 0x009f, "Acer Aspire 5110", POS_FIX_LPIB),
Daniel T Chendd5a0892010-12-05 08:43:14 -05002317 SND_PCI_QUIRK(0x1025, 0x026f, "Acer Aspire 5538", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002318 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
2319 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
Daniel T Chen9919c762010-03-03 18:24:26 -05002320 SND_PCI_QUIRK(0x1028, 0x01f6, "Dell Latitude 131L", POS_FIX_LPIB),
Daniel T Chene03fa052010-12-28 17:20:02 -05002321 SND_PCI_QUIRK(0x1028, 0x0470, "Dell Inspiron 1120", POS_FIX_LPIB),
Takashi Iwai2f703e72009-12-01 14:17:37 +01002322 SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002323 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
Daniel T Chendd37f8e2010-05-30 01:17:03 -04002324 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB),
Daniel T Chen9f75c1b2010-05-30 13:08:41 -04002325 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB),
David Henningssonb540afc2011-02-14 20:27:44 +01002326 SND_PCI_QUIRK(0x1043, 0x8410, "ASUS", POS_FIX_LPIB),
Daniel T Chene96d3122010-05-27 18:32:18 -04002327 SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB),
Daniel T Chen4e0938d2010-05-22 13:12:22 -04002328 SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB),
2329 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba A100-259", POS_FIX_LPIB),
Daniel T Chen61bb42c2010-05-29 11:04:11 -04002330 SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB),
Daniel T Chen9ec8dda2010-03-28 02:34:40 -04002331 SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB),
Takashi Iwai45d4ebf2009-11-30 11:58:30 +01002332 SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB),
Daniel T Chen0321b692010-03-05 09:04:49 -05002333 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar Microtech", POS_FIX_LPIB),
Takashi Iwai8815cd02010-04-15 09:02:41 +02002334 SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB),
Daniel T Chenb90c0762010-05-30 19:31:41 -04002335 SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB),
Daniel T Chen0e0280d2010-04-21 19:55:43 -04002336 SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB),
Daniel T Chen572c0e32010-03-14 23:44:03 -04002337 SND_PCI_QUIRK(0x8086, 0xd601, "eMachines T5212", POS_FIX_LPIB),
Takashi Iwai3372a152007-02-01 15:46:50 +01002338 {}
2339};
2340
2341static int __devinit check_position_fix(struct azx *chip, int fix)
2342{
2343 const struct snd_pci_quirk *q;
2344
Takashi Iwaic673ba12009-03-17 07:49:14 +01002345 switch (fix) {
2346 case POS_FIX_LPIB:
2347 case POS_FIX_POSBUF:
David Henningsson4cb36312010-09-30 10:12:50 +02002348 case POS_FIX_VIACOMBO:
Takashi Iwaic673ba12009-03-17 07:49:14 +01002349 return fix;
2350 }
2351
Takashi Iwaic673ba12009-03-17 07:49:14 +01002352 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
2353 if (q) {
2354 printk(KERN_INFO
2355 "hda_intel: position_fix set to %d "
2356 "for device %04x:%04x\n",
2357 q->value, q->subvendor, q->subdevice);
2358 return q->value;
Takashi Iwai3372a152007-02-01 15:46:50 +01002359 }
David Henningssonbdd9ef22010-10-04 12:02:14 +02002360
2361 /* Check VIA/ATI HD Audio Controller exist */
2362 switch (chip->driver_type) {
2363 case AZX_DRIVER_VIA:
2364 case AZX_DRIVER_ATI:
2365 /* Use link position directly, avoid any transfer problem. */
2366 return POS_FIX_VIACOMBO;
2367 }
2368
Takashi Iwaic673ba12009-03-17 07:49:14 +01002369 return POS_FIX_AUTO;
Takashi Iwai3372a152007-02-01 15:46:50 +01002370}
2371
2372/*
Takashi Iwai669ba272007-08-17 09:17:36 +02002373 * black-lists for probe_mask
2374 */
2375static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
2376 /* Thinkpad often breaks the controller communication when accessing
2377 * to the non-working (or non-existing) modem codec slot.
2378 */
2379 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2380 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2381 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
Takashi Iwai0edb9452008-11-07 14:53:09 +01002382 /* broken BIOS */
2383 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
Takashi Iwaief1681d2008-11-24 17:29:28 +01002384 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2385 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002386 /* forced codec slots */
Ozan Çağlayan93574842009-05-23 15:00:04 +03002387 SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002388 SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
Takashi Iwai669ba272007-08-17 09:17:36 +02002389 {}
2390};
2391
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002392#define AZX_FORCE_CODEC_MASK 0x100
2393
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002394static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02002395{
2396 const struct snd_pci_quirk *q;
2397
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002398 chip->codec_probe_mask = probe_mask[dev];
2399 if (chip->codec_probe_mask == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002400 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
2401 if (q) {
2402 printk(KERN_INFO
2403 "hda_intel: probe_mask set to 0x%x "
2404 "for device %04x:%04x\n",
2405 q->value, q->subvendor, q->subdevice);
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002406 chip->codec_probe_mask = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02002407 }
2408 }
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002409
2410 /* check forced option */
2411 if (chip->codec_probe_mask != -1 &&
2412 (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) {
2413 chip->codec_mask = chip->codec_probe_mask & 0xff;
2414 printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n",
2415 chip->codec_mask);
2416 }
Takashi Iwai669ba272007-08-17 09:17:36 +02002417}
2418
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002419/*
Takashi Iwai716238552009-09-28 13:14:04 +02002420 * white/black-list for enable_msi
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002421 */
Takashi Iwai716238552009-09-28 13:14:04 +02002422static struct snd_pci_quirk msi_black_list[] __devinitdata = {
Takashi Iwai9dc83982009-12-22 08:15:01 +01002423 SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai0a27fcf2010-02-15 17:05:28 +01002424 SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
Ralf Gerbigecd21622010-03-09 18:25:47 +01002425 SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
Michele Ballabio4193d132010-03-06 21:06:46 +01002426 SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai38155952010-04-04 12:14:03 +02002427 SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002428 {}
2429};
2430
2431static void __devinit check_msi(struct azx *chip)
2432{
2433 const struct snd_pci_quirk *q;
2434
Takashi Iwai716238552009-09-28 13:14:04 +02002435 if (enable_msi >= 0) {
2436 chip->msi = !!enable_msi;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002437 return;
Takashi Iwai716238552009-09-28 13:14:04 +02002438 }
2439 chip->msi = 1; /* enable MSI as default */
2440 q = snd_pci_quirk_lookup(chip->pci, msi_black_list);
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002441 if (q) {
2442 printk(KERN_INFO
2443 "hda_intel: msi for device %04x:%04x set to %d\n",
2444 q->subvendor, q->subdevice, q->value);
2445 chip->msi = q->value;
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002446 return;
2447 }
2448
2449 /* NVidia chipsets seem to cause troubles with MSI */
2450 if (chip->driver_type == AZX_DRIVER_NVIDIA) {
2451 printk(KERN_INFO "hda_intel: Disable MSI for Nvidia chipset\n");
2452 chip->msi = 0;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002453 }
2454}
2455
Takashi Iwai669ba272007-08-17 09:17:36 +02002456
2457/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 * constructor
2459 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002460static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002461 int dev, int driver_type,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002462 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002464 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002465 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01002466 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002467 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 .dev_free = azx_dev_free,
2469 };
2470
2471 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01002472
Pavel Machek927fc862006-08-31 17:03:43 +02002473 err = pci_enable_device(pci);
2474 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 return err;
2476
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002477 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002478 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
2480 pci_disable_device(pci);
2481 return -ENOMEM;
2482 }
2483
2484 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002485 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 chip->card = card;
2487 chip->pci = pci;
2488 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002489 chip->driver_type = driver_type;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002490 check_msi(chip);
Takashi Iwai555e2192008-06-10 17:53:34 +02002491 chip->dev_index = dev;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002492 INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002494 chip->position_fix[0] = chip->position_fix[1] =
2495 check_position_fix(chip, position_fix[dev]);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002496 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01002497
Takashi Iwai27346162006-01-12 18:28:44 +01002498 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02002499
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002500 if (bdl_pos_adj[dev] < 0) {
2501 switch (chip->driver_type) {
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002502 case AZX_DRIVER_ICH:
Seth Heasley32679f92010-02-22 17:31:09 -08002503 case AZX_DRIVER_PCH:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002504 bdl_pos_adj[dev] = 1;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002505 break;
2506 default:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002507 bdl_pos_adj[dev] = 32;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002508 break;
2509 }
2510 }
2511
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002512#if BITS_PER_LONG != 64
2513 /* Fix up base address on ULI M5461 */
2514 if (chip->driver_type == AZX_DRIVER_ULI) {
2515 u16 tmp3;
2516 pci_read_config_word(pci, 0x40, &tmp3);
2517 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
2518 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
2519 }
2520#endif
2521
Pavel Machek927fc862006-08-31 17:03:43 +02002522 err = pci_request_regions(pci, "ICH HD audio");
2523 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 kfree(chip);
2525 pci_disable_device(pci);
2526 return err;
2527 }
2528
Pavel Machek927fc862006-08-31 17:03:43 +02002529 chip->addr = pci_resource_start(pci, 0);
Arjan van de Ven2f5ad542008-09-28 16:20:09 -07002530 chip->remap_addr = pci_ioremap_bar(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 if (chip->remap_addr == NULL) {
2532 snd_printk(KERN_ERR SFX "ioremap error\n");
2533 err = -ENXIO;
2534 goto errout;
2535 }
2536
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002537 if (chip->msi)
2538 if (pci_enable_msi(pci) < 0)
2539 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02002540
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002541 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 err = -EBUSY;
2543 goto errout;
2544 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 pci_set_master(pci);
2547 synchronize_irq(chip->irq);
2548
Tobin Davisbcd72002008-01-15 11:23:55 +01002549 gcap = azx_readw(chip, GCAP);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002550 snd_printdd(SFX "chipset global capabilities = 0x%x\n", gcap);
Tobin Davisbcd72002008-01-15 11:23:55 +01002551
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002552 /* disable SB600 64bit support for safety */
2553 if ((chip->driver_type == AZX_DRIVER_ATI) ||
2554 (chip->driver_type == AZX_DRIVER_ATIHDMI)) {
2555 struct pci_dev *p_smbus;
2556 p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
2557 PCI_DEVICE_ID_ATI_SBX00_SMBUS,
2558 NULL);
2559 if (p_smbus) {
2560 if (p_smbus->revision < 0x30)
2561 gcap &= ~ICH6_GCAP_64OK;
2562 pci_dev_put(p_smbus);
2563 }
2564 }
Takashi Iwai09240cf2009-03-17 07:47:18 +01002565
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002566 /* disable 64bit DMA address for Teradici */
2567 /* it does not work with device 6549:1200 subsys e4a2:040b */
2568 if (chip->driver_type == AZX_DRIVER_TERA)
2569 gcap &= ~ICH6_GCAP_64OK;
2570
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002571 /* allow 64bit DMA address if supported by H/W */
Takashi Iwaib21fadb2009-05-28 12:26:15 +02002572 if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
Yang Hongyange9304382009-04-13 14:40:14 -07002573 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002574 else {
Yang Hongyange9304382009-04-13 14:40:14 -07002575 pci_set_dma_mask(pci, DMA_BIT_MASK(32));
2576 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002577 }
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002578
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002579 /* read number of streams from GCAP register instead of using
2580 * hardcoded value
2581 */
2582 chip->capture_streams = (gcap >> 8) & 0x0f;
2583 chip->playback_streams = (gcap >> 12) & 0x0f;
2584 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01002585 /* gcap didn't give any info, switching to old method */
2586
2587 switch (chip->driver_type) {
2588 case AZX_DRIVER_ULI:
2589 chip->playback_streams = ULI_NUM_PLAYBACK;
2590 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002591 break;
2592 case AZX_DRIVER_ATIHDMI:
2593 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
2594 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002595 break;
Yang, Libinc4da29c2008-11-13 11:07:07 +01002596 case AZX_DRIVER_GENERIC:
Tobin Davisbcd72002008-01-15 11:23:55 +01002597 default:
2598 chip->playback_streams = ICH6_NUM_PLAYBACK;
2599 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002600 break;
2601 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002602 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002603 chip->capture_index_offset = 0;
2604 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002605 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002606 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
2607 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002608 if (!chip->azx_dev) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002609 snd_printk(KERN_ERR SFX "cannot malloc azx_dev\n");
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002610 goto errout;
2611 }
2612
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002613 for (i = 0; i < chip->num_streams; i++) {
2614 /* allocate memory for the BDL for each stream */
2615 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2616 snd_dma_pci_data(chip->pci),
2617 BDL_SIZE, &chip->azx_dev[i].bdl);
2618 if (err < 0) {
2619 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
2620 goto errout;
2621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002623 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002624 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2625 snd_dma_pci_data(chip->pci),
2626 chip->num_streams * 8, &chip->posbuf);
2627 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002628 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
2629 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 /* allocate CORB/RIRB */
Takashi Iwai81740862009-05-26 15:22:00 +02002632 err = azx_alloc_cmd_io(chip);
2633 if (err < 0)
2634 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 /* initialize streams */
2637 azx_init_stream(chip);
2638
2639 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002640 azx_init_pci(chip);
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002641 azx_init_chip(chip, (probe_only[dev] & 2) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
2643 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02002644 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 snd_printk(KERN_ERR SFX "no codecs found!\n");
2646 err = -ENODEV;
2647 goto errout;
2648 }
2649
Takashi Iwaid01ce992007-07-27 16:52:19 +02002650 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
2651 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
2653 goto errout;
2654 }
2655
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002656 strcpy(card->driver, "HDA-Intel");
Takashi Iwai18cb7102009-04-16 10:22:24 +02002657 strlcpy(card->shortname, driver_short_names[chip->driver_type],
2658 sizeof(card->shortname));
2659 snprintf(card->longname, sizeof(card->longname),
2660 "%s at 0x%lx irq %i",
2661 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 *rchip = chip;
2664 return 0;
2665
2666 errout:
2667 azx_free(chip);
2668 return err;
2669}
2670
Takashi Iwaicb53c622007-08-10 17:21:45 +02002671static void power_down_all_codecs(struct azx *chip)
2672{
2673#ifdef CONFIG_SND_HDA_POWER_SAVE
2674 /* The codecs were powered up in snd_hda_codec_new().
2675 * Now all initialization done, so turn them down if possible
2676 */
2677 struct hda_codec *codec;
2678 list_for_each_entry(codec, &chip->bus->codec_list, list) {
2679 snd_hda_power_down(codec);
2680 }
2681#endif
2682}
2683
Takashi Iwaid01ce992007-07-27 16:52:19 +02002684static int __devinit azx_probe(struct pci_dev *pci,
2685 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002687 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002688 struct snd_card *card;
2689 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02002690 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002692 if (dev >= SNDRV_CARDS)
2693 return -ENODEV;
2694 if (!enable[dev]) {
2695 dev++;
2696 return -ENOENT;
2697 }
2698
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002699 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2700 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 snd_printk(KERN_ERR SFX "Error creating card!\n");
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002702 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 }
2704
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002705 /* set this here since it's referred in snd_hda_load_patch() */
2706 snd_card_set_dev(card, &pci->dev);
2707
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002708 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002709 if (err < 0)
2710 goto out_free;
Takashi Iwai421a1252005-11-17 16:11:09 +01002711 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01002713#ifdef CONFIG_SND_HDA_INPUT_BEEP
2714 chip->beep_mode = beep_mode[dev];
2715#endif
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 /* create codec instances */
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002718 err = azx_codec_create(chip, model[dev]);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002719 if (err < 0)
2720 goto out_free;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002721#ifdef CONFIG_SND_HDA_PATCH_LOADER
Takashi Iwai41a63f12011-02-10 17:39:20 +01002722 if (patch[dev] && *patch[dev]) {
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002723 snd_printk(KERN_ERR SFX "Applying patch firmware '%s'\n",
2724 patch[dev]);
2725 err = snd_hda_load_patch(chip->bus, patch[dev]);
2726 if (err < 0)
2727 goto out_free;
2728 }
2729#endif
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002730 if ((probe_only[dev] & 1) == 0) {
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002731 err = azx_codec_configure(chip);
2732 if (err < 0)
2733 goto out_free;
2734 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
2736 /* create PCM streams */
Takashi Iwai176d5332008-07-30 15:01:44 +02002737 err = snd_hda_build_pcms(chip->bus);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002738 if (err < 0)
2739 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
2741 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002742 err = azx_mixer_create(chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002743 if (err < 0)
2744 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Takashi Iwaid01ce992007-07-27 16:52:19 +02002746 err = snd_card_register(card);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002747 if (err < 0)
2748 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002751 chip->running = 1;
2752 power_down_all_codecs(chip);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002753 azx_notifier_register(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002755 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 return err;
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002757out_free:
2758 snd_card_free(card);
2759 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760}
2761
2762static void __devexit azx_remove(struct pci_dev *pci)
2763{
2764 snd_card_free(pci_get_drvdata(pci));
2765 pci_set_drvdata(pci, NULL);
2766}
2767
2768/* PCI IDs */
Alexey Dobriyancebe41d2010-02-06 00:21:03 +02002769static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -08002770 /* CPT */
Seth Heasley32679f92010-02-22 17:31:09 -08002771 { PCI_DEVICE(0x8086, 0x1c20), .driver_data = AZX_DRIVER_PCH },
Seth Heasleycea310e2010-09-10 16:29:56 -07002772 /* PBG */
2773 { PCI_DEVICE(0x8086, 0x1d20), .driver_data = AZX_DRIVER_PCH },
Seth Heasleyd2edeb72011-04-20 10:59:57 -07002774 /* Panther Point */
2775 { PCI_DEVICE(0x8086, 0x1e20), .driver_data = AZX_DRIVER_PCH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002776 /* SCH */
2777 { PCI_DEVICE(0x8086, 0x811b), .driver_data = AZX_DRIVER_SCH },
Takashi Iwaib6864532010-09-15 10:17:26 +02002778 /* Generic Intel */
2779 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
2780 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2781 .class_mask = 0xffffff,
2782 .driver_data = AZX_DRIVER_ICH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002783 /* ATI SB 450/600 */
2784 { PCI_DEVICE(0x1002, 0x437b), .driver_data = AZX_DRIVER_ATI },
2785 { PCI_DEVICE(0x1002, 0x4383), .driver_data = AZX_DRIVER_ATI },
2786 /* ATI HDMI */
2787 { PCI_DEVICE(0x1002, 0x793b), .driver_data = AZX_DRIVER_ATIHDMI },
2788 { PCI_DEVICE(0x1002, 0x7919), .driver_data = AZX_DRIVER_ATIHDMI },
2789 { PCI_DEVICE(0x1002, 0x960f), .driver_data = AZX_DRIVER_ATIHDMI },
Libin Yang9e6dd472008-08-12 12:25:46 +02002790 { PCI_DEVICE(0x1002, 0x970f), .driver_data = AZX_DRIVER_ATIHDMI },
Takashi Iwai87218e92008-02-21 08:13:11 +01002791 { PCI_DEVICE(0x1002, 0xaa00), .driver_data = AZX_DRIVER_ATIHDMI },
2792 { PCI_DEVICE(0x1002, 0xaa08), .driver_data = AZX_DRIVER_ATIHDMI },
2793 { PCI_DEVICE(0x1002, 0xaa10), .driver_data = AZX_DRIVER_ATIHDMI },
2794 { PCI_DEVICE(0x1002, 0xaa18), .driver_data = AZX_DRIVER_ATIHDMI },
2795 { PCI_DEVICE(0x1002, 0xaa20), .driver_data = AZX_DRIVER_ATIHDMI },
2796 { PCI_DEVICE(0x1002, 0xaa28), .driver_data = AZX_DRIVER_ATIHDMI },
2797 { PCI_DEVICE(0x1002, 0xaa30), .driver_data = AZX_DRIVER_ATIHDMI },
2798 { PCI_DEVICE(0x1002, 0xaa38), .driver_data = AZX_DRIVER_ATIHDMI },
2799 { PCI_DEVICE(0x1002, 0xaa40), .driver_data = AZX_DRIVER_ATIHDMI },
2800 { PCI_DEVICE(0x1002, 0xaa48), .driver_data = AZX_DRIVER_ATIHDMI },
2801 /* VIA VT8251/VT8237A */
2802 { PCI_DEVICE(0x1106, 0x3288), .driver_data = AZX_DRIVER_VIA },
2803 /* SIS966 */
2804 { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
2805 /* ULI M5461 */
2806 { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
2807 /* NVIDIA MCP */
Takashi Iwai0c2fd1bf42009-12-18 16:41:39 +01002808 { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
2809 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2810 .class_mask = 0xffffff,
2811 .driver_data = AZX_DRIVER_NVIDIA },
Kailang Yangf2690022008-05-27 11:44:55 +02002812 /* Teradici */
2813 { PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
Takashi Iwai4e01f542009-04-16 08:53:34 +02002814 /* Creative X-Fi (CA0110-IBG) */
Takashi Iwai313f6e22009-05-18 12:40:52 +02002815#if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
2816 /* the following entry conflicts with snd-ctxfi driver,
2817 * as ctxfi driver mutates from HD-audio to native mode with
2818 * a special command sequence.
2819 */
Takashi Iwai4e01f542009-04-16 08:53:34 +02002820 { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID),
2821 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2822 .class_mask = 0xffffff,
Takashi Iwai14d34f12010-10-21 09:03:25 +02002823 .driver_data = AZX_DRIVER_CTX },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002824#else
2825 /* this entry seems still valid -- i.e. without emu20kx chip */
Takashi Iwai14d34f12010-10-21 09:03:25 +02002826 { PCI_DEVICE(0x1102, 0x0009), .driver_data = AZX_DRIVER_CTX },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002827#endif
Otavio Salvadore35d4b12010-09-26 23:35:06 -03002828 /* Vortex86MX */
2829 { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
Bankim Bhavsar0f0714c52011-01-17 15:23:21 +01002830 /* VMware HDAudio */
2831 { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002832 /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
Yang, Libinc4da29c2008-11-13 11:07:07 +01002833 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
2834 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2835 .class_mask = 0xffffff,
2836 .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002837 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID),
2838 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2839 .class_mask = 0xffffff,
2840 .driver_data = AZX_DRIVER_GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 { 0, }
2842};
2843MODULE_DEVICE_TABLE(pci, azx_ids);
2844
2845/* pci_driver definition */
2846static struct pci_driver driver = {
2847 .name = "HDA Intel",
2848 .id_table = azx_ids,
2849 .probe = azx_probe,
2850 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002851#ifdef CONFIG_PM
2852 .suspend = azx_suspend,
2853 .resume = azx_resume,
2854#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855};
2856
2857static int __init alsa_card_azx_init(void)
2858{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002859 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860}
2861
2862static void __exit alsa_card_azx_exit(void)
2863{
2864 pci_unregister_driver(&driver);
2865}
2866
2867module_init(alsa_card_azx_init)
2868module_exit(alsa_card_azx_exit)