blob: 43a036716d259af107b0b8b7cad7eb05768117aa [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;
Takashi Iwai20c304e2011-05-17 18:41:25 +02001095 default:
1096 /* AMD Hudson needs the similar snoop, as it seems... */
1097 if (chip->pci->vendor == PCI_VENDOR_ID_AMD)
1098 update_pci_byte(chip->pci,
1099 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
1100 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
1101 break;
Vinod Gda3fca22005-09-13 18:49:12 +02001102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103}
1104
1105
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001106static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108/*
1109 * interrupt handler
1110 */
David Howells7d12e782006-10-05 14:55:46 +01001111static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001113 struct azx *chip = dev_id;
1114 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 u32 status;
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001116 u8 sd_status;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001117 int i, ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 spin_lock(&chip->reg_lock);
1120
1121 status = azx_readl(chip, INTSTS);
1122 if (status == 0) {
1123 spin_unlock(&chip->reg_lock);
1124 return IRQ_NONE;
1125 }
1126
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001127 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 azx_dev = &chip->azx_dev[i];
1129 if (status & azx_dev->sd_int_sta_mask) {
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001130 sd_status = azx_sd_readb(azx_dev, SD_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001132 if (!azx_dev->substream || !azx_dev->running ||
1133 !(sd_status & SD_INT_COMPLETE))
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001134 continue;
1135 /* check whether this IRQ is really acceptable */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001136 ok = azx_position_ok(chip, azx_dev);
1137 if (ok == 1) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001138 azx_dev->irq_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 spin_unlock(&chip->reg_lock);
1140 snd_pcm_period_elapsed(azx_dev->substream);
1141 spin_lock(&chip->reg_lock);
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001142 } else if (ok == 0 && chip->bus && chip->bus->workq) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001143 /* bogus IRQ, process it later */
1144 azx_dev->irq_pending = 1;
Takashi Iwai6acaed32009-01-12 10:09:24 +01001145 queue_work(chip->bus->workq,
1146 &chip->irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 }
1148 }
1149 }
1150
1151 /* clear rirb int */
1152 status = azx_readb(chip, RIRBSTS);
1153 if (status & RIRB_INT_MASK) {
Takashi Iwai14d34f12010-10-21 09:03:25 +02001154 if (status & RIRB_INT_RESPONSE) {
1155 if (chip->driver_type == AZX_DRIVER_CTX)
1156 udelay(80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 azx_update_rirb(chip);
Takashi Iwai14d34f12010-10-21 09:03:25 +02001158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1160 }
1161
1162#if 0
1163 /* clear state status int */
1164 if (azx_readb(chip, STATESTS) & 0x04)
1165 azx_writeb(chip, STATESTS, 0x04);
1166#endif
1167 spin_unlock(&chip->reg_lock);
1168
1169 return IRQ_HANDLED;
1170}
1171
1172
1173/*
Takashi Iwai675f25d2008-06-10 17:53:20 +02001174 * set up a BDL entry
1175 */
1176static int setup_bdle(struct snd_pcm_substream *substream,
1177 struct azx_dev *azx_dev, u32 **bdlp,
1178 int ofs, int size, int with_ioc)
1179{
Takashi Iwai675f25d2008-06-10 17:53:20 +02001180 u32 *bdl = *bdlp;
1181
1182 while (size > 0) {
1183 dma_addr_t addr;
1184 int chunk;
1185
1186 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
1187 return -EINVAL;
1188
Takashi Iwai77a23f22008-08-21 13:00:13 +02001189 addr = snd_pcm_sgbuf_get_addr(substream, ofs);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001190 /* program the address field of the BDL entry */
1191 bdl[0] = cpu_to_le32((u32)addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001192 bdl[1] = cpu_to_le32(upper_32_bits(addr));
Takashi Iwai675f25d2008-06-10 17:53:20 +02001193 /* program the size field of the BDL entry */
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001194 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001195 bdl[2] = cpu_to_le32(chunk);
1196 /* program the IOC to enable interrupt
1197 * only when the whole fragment is processed
1198 */
1199 size -= chunk;
1200 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
1201 bdl += 4;
1202 azx_dev->frags++;
1203 ofs += chunk;
1204 }
1205 *bdlp = bdl;
1206 return ofs;
1207}
1208
1209/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 * set up BDL entries
1211 */
Takashi Iwai555e2192008-06-10 17:53:34 +02001212static int azx_setup_periods(struct azx *chip,
1213 struct snd_pcm_substream *substream,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001214 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001216 u32 *bdl;
1217 int i, ofs, periods, period_bytes;
Takashi Iwai555e2192008-06-10 17:53:34 +02001218 int pos_adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
1220 /* reset BDL address */
1221 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1222 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1223
Takashi Iwai97b71c92009-03-18 15:09:13 +01001224 period_bytes = azx_dev->period_bytes;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001225 periods = azx_dev->bufsize / period_bytes;
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001228 bdl = (u32 *)azx_dev->bdl.area;
1229 ofs = 0;
1230 azx_dev->frags = 0;
Takashi Iwai555e2192008-06-10 17:53:34 +02001231 pos_adj = bdl_pos_adj[chip->dev_index];
1232 if (pos_adj > 0) {
Takashi Iwai675f25d2008-06-10 17:53:20 +02001233 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001234 int pos_align = pos_adj;
Takashi Iwai555e2192008-06-10 17:53:34 +02001235 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001236 if (!pos_adj)
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001237 pos_adj = pos_align;
1238 else
1239 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
1240 pos_align;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001241 pos_adj = frames_to_bytes(runtime, pos_adj);
1242 if (pos_adj >= period_bytes) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001243 snd_printk(KERN_WARNING SFX "Too big adjustment %d\n",
Takashi Iwai555e2192008-06-10 17:53:34 +02001244 bdl_pos_adj[chip->dev_index]);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001245 pos_adj = 0;
1246 } else {
1247 ofs = setup_bdle(substream, azx_dev,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001248 &bdl, ofs, pos_adj,
1249 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001250 if (ofs < 0)
1251 goto error;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001252 }
Takashi Iwai555e2192008-06-10 17:53:34 +02001253 } else
1254 pos_adj = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001255 for (i = 0; i < periods; i++) {
1256 if (i == periods - 1 && pos_adj)
1257 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1258 period_bytes - pos_adj, 0);
1259 else
1260 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001261 period_bytes,
1262 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001263 if (ofs < 0)
1264 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001266 return 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001267
1268 error:
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001269 snd_printk(KERN_ERR SFX "Too many BDL entries: buffer=%d, period=%d\n",
Takashi Iwai675f25d2008-06-10 17:53:20 +02001270 azx_dev->bufsize, period_bytes);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001271 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272}
1273
Takashi Iwai1dddab42009-03-18 15:15:37 +01001274/* reset stream */
1275static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276{
1277 unsigned char val;
1278 int timeout;
1279
Takashi Iwai1dddab42009-03-18 15:15:37 +01001280 azx_stream_clear(chip, azx_dev);
1281
Takashi Iwaid01ce992007-07-27 16:52:19 +02001282 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1283 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 udelay(3);
1285 timeout = 300;
1286 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1287 --timeout)
1288 ;
1289 val &= ~SD_CTL_STREAM_RESET;
1290 azx_sd_writeb(azx_dev, SD_CTL, val);
1291 udelay(3);
1292
1293 timeout = 300;
1294 /* waiting for hardware to report that the stream is out of reset */
1295 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1296 --timeout)
1297 ;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001298
1299 /* reset first position - may not be synced with hw at this time */
1300 *azx_dev->posbuf = 0;
Takashi Iwai1dddab42009-03-18 15:15:37 +01001301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Takashi Iwai1dddab42009-03-18 15:15:37 +01001303/*
1304 * set up the SD for streaming
1305 */
1306static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
1307{
1308 /* make sure the run bit is zero for SD */
1309 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 /* program the stream_tag */
1311 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001312 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1314
1315 /* program the length of samples in cyclic buffer */
1316 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1317
1318 /* program the stream format */
1319 /* this value needs to be the same as the one programmed */
1320 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1321
1322 /* program the stream LVI (last valid index) of the BDL */
1323 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1324
1325 /* program the BDL address */
1326 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001327 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /* upper BDL address */
Takashi Iwai766979e2008-06-13 20:53:56 +02001329 azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001331 /* enable the position buffer */
David Henningsson4cb36312010-09-30 10:12:50 +02001332 if (chip->position_fix[0] != POS_FIX_LPIB ||
1333 chip->position_fix[1] != POS_FIX_LPIB) {
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001334 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1335 azx_writel(chip, DPLBASE,
1336 (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
1337 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001340 azx_sd_writel(azx_dev, SD_CTL,
1341 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 return 0;
1344}
1345
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001346/*
1347 * Probe the given codec address
1348 */
1349static int probe_codec(struct azx *chip, int addr)
1350{
1351 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
1352 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
1353 unsigned int res;
1354
Wu Fengguanga678cde2009-08-01 18:46:46 +08001355 mutex_lock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001356 chip->probing = 1;
1357 azx_send_cmd(chip->bus, cmd);
Wu Fengguangdeadff12009-08-01 18:45:16 +08001358 res = azx_get_response(chip->bus, addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001359 chip->probing = 0;
Wu Fengguanga678cde2009-08-01 18:46:46 +08001360 mutex_unlock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001361 if (res == -1)
1362 return -EIO;
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001363 snd_printdd(SFX "codec #%d probed OK\n", addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001364 return 0;
1365}
1366
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001367static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1368 struct hda_pcm *cpcm);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001369static void azx_stop_chip(struct azx *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Takashi Iwai8dd78332009-06-02 01:16:07 +02001371static void azx_bus_reset(struct hda_bus *bus)
1372{
1373 struct azx *chip = bus->private_data;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001374
1375 bus->in_reset = 1;
1376 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001377 azx_init_chip(chip, 1);
Alexander Beregalov65f75982009-06-04 13:46:16 +04001378#ifdef CONFIG_PM
Takashi Iwai8dd78332009-06-02 01:16:07 +02001379 if (chip->initialized) {
Alexander Beregalov65f75982009-06-04 13:46:16 +04001380 int i;
1381
Takashi Iwaic8936222010-01-28 17:08:53 +01001382 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai8dd78332009-06-02 01:16:07 +02001383 snd_pcm_suspend_all(chip->pcm[i]);
1384 snd_hda_suspend(chip->bus);
1385 snd_hda_resume(chip->bus);
1386 }
Alexander Beregalov65f75982009-06-04 13:46:16 +04001387#endif
Takashi Iwai8dd78332009-06-02 01:16:07 +02001388 bus->in_reset = 0;
1389}
1390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391/*
1392 * Codec initialization
1393 */
1394
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001395/* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1396static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
Wei Ni7445dfc2010-03-03 15:05:53 +08001397 [AZX_DRIVER_NVIDIA] = 8,
Kailang Yangf2690022008-05-27 11:44:55 +02001398 [AZX_DRIVER_TERA] = 1,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001399};
1400
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001401static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
1403 struct hda_bus_template bus_temp;
Takashi Iwai34c25352008-10-28 11:38:58 +01001404 int c, codecs, err;
1405 int max_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 memset(&bus_temp, 0, sizeof(bus_temp));
1408 bus_temp.private_data = chip;
1409 bus_temp.modelname = model;
1410 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001411 bus_temp.ops.command = azx_send_cmd;
1412 bus_temp.ops.get_response = azx_get_response;
Takashi Iwai176d5332008-07-30 15:01:44 +02001413 bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001414 bus_temp.ops.bus_reset = azx_bus_reset;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001415#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai11cd41b2008-11-28 07:22:18 +01001416 bus_temp.power_save = &power_save;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001417 bus_temp.ops.pm_notify = azx_power_notify;
1418#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
Takashi Iwaid01ce992007-07-27 16:52:19 +02001420 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1421 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 return err;
1423
Wei Nidc9c8e22008-09-26 13:55:56 +08001424 if (chip->driver_type == AZX_DRIVER_NVIDIA)
1425 chip->bus->needs_damn_long_delay = 1;
1426
Takashi Iwai34c25352008-10-28 11:38:58 +01001427 codecs = 0;
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001428 max_slots = azx_max_codecs[chip->driver_type];
1429 if (!max_slots)
Wei Ni7445dfc2010-03-03 15:05:53 +08001430 max_slots = AZX_DEFAULT_CODECS;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001431
1432 /* First try to probe all given codec slots */
1433 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001434 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001435 if (probe_codec(chip, c) < 0) {
1436 /* Some BIOSen give you wrong codec addresses
1437 * that don't exist
1438 */
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001439 snd_printk(KERN_WARNING SFX
1440 "Codec #%d probe error; "
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001441 "disabling it...\n", c);
1442 chip->codec_mask &= ~(1 << c);
1443 /* More badly, accessing to a non-existing
1444 * codec often screws up the controller chip,
Paul Menzel24481582010-02-08 20:37:26 +01001445 * and disturbs the further communications.
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001446 * Thus if an error occurs during probing,
1447 * better to reset the controller chip to
1448 * get back to the sanity state.
1449 */
1450 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001451 azx_init_chip(chip, 1);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001452 }
1453 }
1454 }
1455
Takashi Iwaid507cd62011-04-26 15:25:02 +02001456 /* AMD chipsets often cause the communication stalls upon certain
1457 * sequence like the pin-detection. It seems that forcing the synced
1458 * access works around the stall. Grrr...
1459 */
1460 if (chip->pci->vendor == PCI_VENDOR_ID_AMD ||
1461 chip->pci->vendor == PCI_VENDOR_ID_ATI) {
1462 snd_printk(KERN_INFO SFX "Enable sync_write for AMD chipset\n");
1463 chip->bus->sync_write = 1;
1464 chip->bus->allow_bus_reset = 1;
1465 }
1466
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001467 /* Then create codec instances */
Takashi Iwai34c25352008-10-28 11:38:58 +01001468 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001469 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001470 struct hda_codec *codec;
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001471 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (err < 0)
1473 continue;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01001474 codec->beep_mode = chip->beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 codecs++;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001476 }
1477 }
1478 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1480 return -ENXIO;
1481 }
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001482 return 0;
1483}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001485/* configure each codec instance */
1486static int __devinit azx_codec_configure(struct azx *chip)
1487{
1488 struct hda_codec *codec;
1489 list_for_each_entry(codec, &chip->bus->codec_list, list) {
1490 snd_hda_codec_configure(codec);
1491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 return 0;
1493}
1494
1495
1496/*
1497 * PCM support
1498 */
1499
1500/* assign a stream for the PCM */
Wu Fengguangef18bed2009-12-25 13:14:27 +08001501static inline struct azx_dev *
1502azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001504 int dev, i, nums;
Wu Fengguangef18bed2009-12-25 13:14:27 +08001505 struct azx_dev *res = NULL;
1506
1507 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001508 dev = chip->playback_index_offset;
1509 nums = chip->playback_streams;
1510 } else {
1511 dev = chip->capture_index_offset;
1512 nums = chip->capture_streams;
1513 }
1514 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001515 if (!chip->azx_dev[dev].opened) {
Wu Fengguangef18bed2009-12-25 13:14:27 +08001516 res = &chip->azx_dev[dev];
1517 if (res->device == substream->pcm->device)
1518 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 }
Wu Fengguangef18bed2009-12-25 13:14:27 +08001520 if (res) {
1521 res->opened = 1;
1522 res->device = substream->pcm->device;
1523 }
1524 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525}
1526
1527/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001528static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
1530 azx_dev->opened = 0;
1531}
1532
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001533static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001534 .info = (SNDRV_PCM_INFO_MMAP |
1535 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1537 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001538 /* No full-resume yet implemented */
1539 /* SNDRV_PCM_INFO_RESUME |*/
Takashi Iwai850f0e52008-03-18 17:11:05 +01001540 SNDRV_PCM_INFO_PAUSE |
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001541 SNDRV_PCM_INFO_SYNC_START |
1542 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1544 .rates = SNDRV_PCM_RATE_48000,
1545 .rate_min = 48000,
1546 .rate_max = 48000,
1547 .channels_min = 2,
1548 .channels_max = 2,
1549 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1550 .period_bytes_min = 128,
1551 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1552 .periods_min = 2,
1553 .periods_max = AZX_MAX_FRAG,
1554 .fifo_size = 0,
1555};
1556
1557struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001558 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 struct hda_codec *codec;
1560 struct hda_pcm_stream *hinfo[2];
1561};
1562
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001563static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
1565 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1566 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001567 struct azx *chip = apcm->chip;
1568 struct azx_dev *azx_dev;
1569 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 unsigned long flags;
1571 int err;
1572
Ingo Molnar62932df2006-01-16 16:34:20 +01001573 mutex_lock(&chip->open_mutex);
Wu Fengguangef18bed2009-12-25 13:14:27 +08001574 azx_dev = azx_assign_device(chip, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001576 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 return -EBUSY;
1578 }
1579 runtime->hw = azx_pcm_hw;
1580 runtime->hw.channels_min = hinfo->channels_min;
1581 runtime->hw.channels_max = hinfo->channels_max;
1582 runtime->hw.formats = hinfo->formats;
1583 runtime->hw.rates = hinfo->rates;
1584 snd_pcm_limit_hw_rates(runtime);
1585 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001586 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1587 128);
1588 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1589 128);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001590 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001591 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1592 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001594 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001595 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 return err;
1597 }
Takashi Iwai70d321e2009-07-03 23:06:45 +02001598 snd_pcm_limit_hw_rates(runtime);
Takashi Iwaiaba66532009-07-05 11:44:46 +02001599 /* sanity check */
1600 if (snd_BUG_ON(!runtime->hw.channels_min) ||
1601 snd_BUG_ON(!runtime->hw.channels_max) ||
1602 snd_BUG_ON(!runtime->hw.formats) ||
1603 snd_BUG_ON(!runtime->hw.rates)) {
1604 azx_release_device(azx_dev);
1605 hinfo->ops.close(hinfo, apcm->codec, substream);
1606 snd_hda_power_down(apcm->codec);
1607 mutex_unlock(&chip->open_mutex);
1608 return -EINVAL;
1609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 spin_lock_irqsave(&chip->reg_lock, flags);
1611 azx_dev->substream = substream;
1612 azx_dev->running = 0;
1613 spin_unlock_irqrestore(&chip->reg_lock, flags);
1614
1615 runtime->private_data = azx_dev;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001616 snd_pcm_set_sync(substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001617 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return 0;
1619}
1620
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001621static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
1623 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1624 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001625 struct azx *chip = apcm->chip;
1626 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 unsigned long flags;
1628
Ingo Molnar62932df2006-01-16 16:34:20 +01001629 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 spin_lock_irqsave(&chip->reg_lock, flags);
1631 azx_dev->substream = NULL;
1632 azx_dev->running = 0;
1633 spin_unlock_irqrestore(&chip->reg_lock, flags);
1634 azx_release_device(azx_dev);
1635 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001636 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001637 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return 0;
1639}
1640
Takashi Iwaid01ce992007-07-27 16:52:19 +02001641static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1642 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643{
Takashi Iwai97b71c92009-03-18 15:09:13 +01001644 struct azx_dev *azx_dev = get_azx_dev(substream);
1645
1646 azx_dev->bufsize = 0;
1647 azx_dev->period_bytes = 0;
1648 azx_dev->format_val = 0;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001649 return snd_pcm_lib_malloc_pages(substream,
1650 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001653static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
1655 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001656 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1658
1659 /* reset BDL address */
1660 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1661 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1662 azx_sd_writel(azx_dev, SD_CTL, 0);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001663 azx_dev->bufsize = 0;
1664 azx_dev->period_bytes = 0;
1665 azx_dev->format_val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
Takashi Iwaieb541332010-08-06 13:48:11 +02001667 snd_hda_codec_cleanup(apcm->codec, hinfo, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
1669 return snd_pcm_lib_free_pages(substream);
1670}
1671
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001672static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673{
1674 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001675 struct azx *chip = apcm->chip;
1676 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001678 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001679 unsigned int bufsize, period_bytes, format_val, stream_tag;
Takashi Iwai97b71c92009-03-18 15:09:13 +01001680 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001682 azx_stream_reset(chip, azx_dev);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001683 format_val = snd_hda_calc_stream_format(runtime->rate,
1684 runtime->channels,
1685 runtime->format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03001686 hinfo->maxbps,
1687 apcm->codec->spdif_ctls);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001688 if (!format_val) {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001689 snd_printk(KERN_ERR SFX
1690 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 runtime->rate, runtime->channels, runtime->format);
1692 return -EINVAL;
1693 }
1694
Takashi Iwai97b71c92009-03-18 15:09:13 +01001695 bufsize = snd_pcm_lib_buffer_bytes(substream);
1696 period_bytes = snd_pcm_lib_period_bytes(substream);
1697
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001698 snd_printdd(SFX "azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
Takashi Iwai97b71c92009-03-18 15:09:13 +01001699 bufsize, format_val);
1700
1701 if (bufsize != azx_dev->bufsize ||
1702 period_bytes != azx_dev->period_bytes ||
1703 format_val != azx_dev->format_val) {
1704 azx_dev->bufsize = bufsize;
1705 azx_dev->period_bytes = period_bytes;
1706 azx_dev->format_val = format_val;
1707 err = azx_setup_periods(chip, substream, azx_dev);
1708 if (err < 0)
1709 return err;
1710 }
1711
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001712 /* wallclk has 24Mhz clock source */
1713 azx_dev->period_wallclk = (((runtime->period_size * 24000) /
1714 runtime->rate) * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 azx_setup_controller(chip, azx_dev);
1716 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1717 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1718 else
1719 azx_dev->fifo_size = 0;
1720
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001721 stream_tag = azx_dev->stream_tag;
1722 /* CA-IBG chips need the playback stream starting from 1 */
1723 if (chip->driver_type == AZX_DRIVER_CTX &&
1724 stream_tag > chip->capture_streams)
1725 stream_tag -= chip->capture_streams;
1726 return snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag,
Takashi Iwaieb541332010-08-06 13:48:11 +02001727 azx_dev->format_val, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728}
1729
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001730static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731{
1732 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001733 struct azx *chip = apcm->chip;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001734 struct azx_dev *azx_dev;
1735 struct snd_pcm_substream *s;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001736 int rstart = 0, start, nsync = 0, sbits = 0;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001737 int nwait, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 switch (cmd) {
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001740 case SNDRV_PCM_TRIGGER_START:
1741 rstart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1743 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001744 start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 break;
1746 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001747 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001749 start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 break;
1751 default:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001752 return -EINVAL;
1753 }
1754
1755 snd_pcm_group_for_each_entry(s, substream) {
1756 if (s->pcm->card != substream->pcm->card)
1757 continue;
1758 azx_dev = get_azx_dev(s);
1759 sbits |= 1 << azx_dev->index;
1760 nsync++;
1761 snd_pcm_trigger_done(s, substream);
1762 }
1763
1764 spin_lock(&chip->reg_lock);
1765 if (nsync > 1) {
1766 /* first, set SYNC bits of corresponding streams */
1767 azx_writel(chip, SYNC, azx_readl(chip, SYNC) | sbits);
1768 }
1769 snd_pcm_group_for_each_entry(s, substream) {
1770 if (s->pcm->card != substream->pcm->card)
1771 continue;
1772 azx_dev = get_azx_dev(s);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001773 if (start) {
1774 azx_dev->start_wallclk = azx_readl(chip, WALLCLK);
1775 if (!rstart)
1776 azx_dev->start_wallclk -=
1777 azx_dev->period_wallclk;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001778 azx_stream_start(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001779 } else {
Takashi Iwai850f0e52008-03-18 17:11:05 +01001780 azx_stream_stop(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001781 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001782 azx_dev->running = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784 spin_unlock(&chip->reg_lock);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001785 if (start) {
1786 if (nsync == 1)
1787 return 0;
1788 /* wait until all FIFOs get ready */
1789 for (timeout = 5000; timeout; timeout--) {
1790 nwait = 0;
1791 snd_pcm_group_for_each_entry(s, substream) {
1792 if (s->pcm->card != substream->pcm->card)
1793 continue;
1794 azx_dev = get_azx_dev(s);
1795 if (!(azx_sd_readb(azx_dev, SD_STS) &
1796 SD_STS_FIFO_READY))
1797 nwait++;
1798 }
1799 if (!nwait)
1800 break;
1801 cpu_relax();
1802 }
1803 } else {
1804 /* wait until all RUN bits are cleared */
1805 for (timeout = 5000; timeout; timeout--) {
1806 nwait = 0;
1807 snd_pcm_group_for_each_entry(s, substream) {
1808 if (s->pcm->card != substream->pcm->card)
1809 continue;
1810 azx_dev = get_azx_dev(s);
1811 if (azx_sd_readb(azx_dev, SD_CTL) &
1812 SD_CTL_DMA_START)
1813 nwait++;
1814 }
1815 if (!nwait)
1816 break;
1817 cpu_relax();
1818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001820 if (nsync > 1) {
1821 spin_lock(&chip->reg_lock);
1822 /* reset SYNC bits */
1823 azx_writel(chip, SYNC, azx_readl(chip, SYNC) & ~sbits);
1824 spin_unlock(&chip->reg_lock);
1825 }
1826 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827}
1828
Joseph Chan0e153472008-08-26 14:38:03 +02001829/* get the current DMA position with correction on VIA chips */
1830static unsigned int azx_via_get_position(struct azx *chip,
1831 struct azx_dev *azx_dev)
1832{
1833 unsigned int link_pos, mini_pos, bound_pos;
1834 unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
1835 unsigned int fifo_size;
1836
1837 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
1838 if (azx_dev->index >= 4) {
1839 /* Playback, no problem using link position */
1840 return link_pos;
1841 }
1842
1843 /* Capture */
1844 /* For new chipset,
1845 * use mod to get the DMA position just like old chipset
1846 */
1847 mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
1848 mod_dma_pos %= azx_dev->period_bytes;
1849
1850 /* azx_dev->fifo_size can't get FIFO size of in stream.
1851 * Get from base address + offset.
1852 */
1853 fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
1854
1855 if (azx_dev->insufficient) {
1856 /* Link position never gather than FIFO size */
1857 if (link_pos <= fifo_size)
1858 return 0;
1859
1860 azx_dev->insufficient = 0;
1861 }
1862
1863 if (link_pos <= fifo_size)
1864 mini_pos = azx_dev->bufsize + link_pos - fifo_size;
1865 else
1866 mini_pos = link_pos - fifo_size;
1867
1868 /* Find nearest previous boudary */
1869 mod_mini_pos = mini_pos % azx_dev->period_bytes;
1870 mod_link_pos = link_pos % azx_dev->period_bytes;
1871 if (mod_link_pos >= fifo_size)
1872 bound_pos = link_pos - mod_link_pos;
1873 else if (mod_dma_pos >= mod_mini_pos)
1874 bound_pos = mini_pos - mod_mini_pos;
1875 else {
1876 bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
1877 if (bound_pos >= azx_dev->bufsize)
1878 bound_pos = 0;
1879 }
1880
1881 /* Calculate real DMA position we want */
1882 return bound_pos + mod_dma_pos;
1883}
1884
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001885static unsigned int azx_get_position(struct azx *chip,
1886 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 unsigned int pos;
David Henningsson4cb36312010-09-30 10:12:50 +02001889 int stream = azx_dev->substream->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
David Henningsson4cb36312010-09-30 10:12:50 +02001891 switch (chip->position_fix[stream]) {
1892 case POS_FIX_LPIB:
1893 /* read LPIB */
1894 pos = azx_sd_readl(azx_dev, SD_LPIB);
1895 break;
1896 case POS_FIX_VIACOMBO:
Joseph Chan0e153472008-08-26 14:38:03 +02001897 pos = azx_via_get_position(chip, azx_dev);
David Henningsson4cb36312010-09-30 10:12:50 +02001898 break;
1899 default:
1900 /* use the position buffer */
1901 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwaic74db862005-05-12 14:26:27 +02001902 }
David Henningsson4cb36312010-09-30 10:12:50 +02001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (pos >= azx_dev->bufsize)
1905 pos = 0;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001906 return pos;
1907}
1908
1909static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
1910{
1911 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1912 struct azx *chip = apcm->chip;
1913 struct azx_dev *azx_dev = get_azx_dev(substream);
1914 return bytes_to_frames(substream->runtime,
1915 azx_get_position(chip, azx_dev));
1916}
1917
1918/*
1919 * Check whether the current DMA position is acceptable for updating
1920 * periods. Returns non-zero if it's OK.
1921 *
1922 * Many HD-audio controllers appear pretty inaccurate about
1923 * the update-IRQ timing. The IRQ is issued before actually the
1924 * data is processed. So, we need to process it afterwords in a
1925 * workqueue.
1926 */
1927static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
1928{
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001929 u32 wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001930 unsigned int pos;
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001931 int stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001932
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001933 wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk;
1934 if (wallclk < (azx_dev->period_wallclk * 2) / 3)
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001935 return -1; /* bogus (too early) interrupt */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001936
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001937 stream = azx_dev->substream->stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001938 pos = azx_get_position(chip, azx_dev);
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001939 if (chip->position_fix[stream] == POS_FIX_AUTO) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001940 if (!pos) {
1941 printk(KERN_WARNING
1942 "hda-intel: Invalid position buffer, "
1943 "using LPIB read method instead.\n");
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001944 chip->position_fix[stream] = POS_FIX_LPIB;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001945 pos = azx_get_position(chip, azx_dev);
1946 } else
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001947 chip->position_fix[stream] = POS_FIX_POSBUF;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001948 }
1949
Takashi Iwaid6d8bf52010-02-12 18:17:06 +01001950 if (WARN_ONCE(!azx_dev->period_bytes,
1951 "hda-intel: zero azx_dev->period_bytes"))
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001952 return -1; /* this shouldn't happen! */
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001953 if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001954 pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
1955 /* NG - it's below the first next period boundary */
1956 return bdl_pos_adj[chip->dev_index] ? 0 : -1;
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001957 azx_dev->start_wallclk += wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001958 return 1; /* OK, it's fine */
1959}
1960
1961/*
1962 * The work for pending PCM period updates.
1963 */
1964static void azx_irq_pending_work(struct work_struct *work)
1965{
1966 struct azx *chip = container_of(work, struct azx, irq_pending_work);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001967 int i, pending, ok;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001968
Takashi Iwaia6a950a2008-06-10 17:53:35 +02001969 if (!chip->irq_pending_warned) {
1970 printk(KERN_WARNING
1971 "hda-intel: IRQ timing workaround is activated "
1972 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
1973 chip->card->number);
1974 chip->irq_pending_warned = 1;
1975 }
1976
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001977 for (;;) {
1978 pending = 0;
1979 spin_lock_irq(&chip->reg_lock);
1980 for (i = 0; i < chip->num_streams; i++) {
1981 struct azx_dev *azx_dev = &chip->azx_dev[i];
1982 if (!azx_dev->irq_pending ||
1983 !azx_dev->substream ||
1984 !azx_dev->running)
1985 continue;
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001986 ok = azx_position_ok(chip, azx_dev);
1987 if (ok > 0) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001988 azx_dev->irq_pending = 0;
1989 spin_unlock(&chip->reg_lock);
1990 snd_pcm_period_elapsed(azx_dev->substream);
1991 spin_lock(&chip->reg_lock);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001992 } else if (ok < 0) {
1993 pending = 0; /* too early */
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001994 } else
1995 pending++;
1996 }
1997 spin_unlock_irq(&chip->reg_lock);
1998 if (!pending)
1999 return;
Takashi Iwai08af4952010-08-03 14:39:04 +02002000 msleep(1);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002001 }
2002}
2003
2004/* clear irq_pending flags and assure no on-going workq */
2005static void azx_clear_irq_pending(struct azx *chip)
2006{
2007 int i;
2008
2009 spin_lock_irq(&chip->reg_lock);
2010 for (i = 0; i < chip->num_streams; i++)
2011 chip->azx_dev[i].irq_pending = 0;
2012 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013}
2014
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002015static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 .open = azx_pcm_open,
2017 .close = azx_pcm_close,
2018 .ioctl = snd_pcm_lib_ioctl,
2019 .hw_params = azx_pcm_hw_params,
2020 .hw_free = azx_pcm_hw_free,
2021 .prepare = azx_pcm_prepare,
2022 .trigger = azx_pcm_trigger,
2023 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002024 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025};
2026
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002027static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Takashi Iwai176d5332008-07-30 15:01:44 +02002029 struct azx_pcm *apcm = pcm->private_data;
2030 if (apcm) {
2031 apcm->chip->pcm[pcm->device] = NULL;
2032 kfree(apcm);
2033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034}
2035
Takashi Iwai176d5332008-07-30 15:01:44 +02002036static int
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002037azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
2038 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002040 struct azx *chip = bus->private_data;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002041 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 struct azx_pcm *apcm;
Takashi Iwai176d5332008-07-30 15:01:44 +02002043 int pcm_dev = cpcm->device;
2044 int s, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Takashi Iwaic8936222010-01-28 17:08:53 +01002046 if (pcm_dev >= HDA_MAX_PCMS) {
Takashi Iwai176d5332008-07-30 15:01:44 +02002047 snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
2048 pcm_dev);
Takashi Iwaida3cec32008-08-08 17:12:14 +02002049 return -EINVAL;
Takashi Iwai176d5332008-07-30 15:01:44 +02002050 }
2051 if (chip->pcm[pcm_dev]) {
2052 snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
2053 return -EBUSY;
2054 }
2055 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
2056 cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
2057 cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 &pcm);
2059 if (err < 0)
2060 return err;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002061 strlcpy(pcm->name, cpcm->name, sizeof(pcm->name));
Takashi Iwai176d5332008-07-30 15:01:44 +02002062 apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (apcm == NULL)
2064 return -ENOMEM;
2065 apcm->chip = chip;
2066 apcm->codec = codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 pcm->private_data = apcm;
2068 pcm->private_free = azx_pcm_free;
Takashi Iwai176d5332008-07-30 15:01:44 +02002069 if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
2070 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
2071 chip->pcm[pcm_dev] = pcm;
2072 cpcm->pcm = pcm;
2073 for (s = 0; s < 2; s++) {
2074 apcm->hinfo[s] = &cpcm->stream[s];
2075 if (cpcm->stream[s].substreams)
2076 snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
2077 }
2078 /* buffer pre-allocation */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002079 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 snd_dma_pci_data(chip->pci),
Takashi Iwaifc4abee2008-07-30 15:13:34 +02002081 1024 * 64, 32 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return 0;
2083}
2084
2085/*
2086 * mixer creation - all stuff is implemented in hda module
2087 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002088static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
2090 return snd_hda_build_controls(chip->bus);
2091}
2092
2093
2094/*
2095 * initialize SD streams
2096 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002097static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
2099 int i;
2100
2101 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02002102 * assign the starting bdl address to each stream (device)
2103 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002105 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002106 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02002107 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
2109 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
2110 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
2111 azx_dev->sd_int_sta_mask = 1 << i;
2112 /* stream tag: must be non-zero and unique */
2113 azx_dev->index = i;
2114 azx_dev->stream_tag = i + 1;
2115 }
2116
2117 return 0;
2118}
2119
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002120static int azx_acquire_irq(struct azx *chip, int do_disconnect)
2121{
Takashi Iwai437a5a42006-11-21 12:14:23 +01002122 if (request_irq(chip->pci->irq, azx_interrupt,
2123 chip->msi ? 0 : IRQF_SHARED,
Maxim Levitsky94928372010-02-04 22:26:37 +02002124 "hda_intel", chip)) {
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002125 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
2126 "disabling device\n", chip->pci->irq);
2127 if (do_disconnect)
2128 snd_card_disconnect(chip->card);
2129 return -1;
2130 }
2131 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01002132 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002133 return 0;
2134}
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Takashi Iwaicb53c622007-08-10 17:21:45 +02002137static void azx_stop_chip(struct azx *chip)
2138{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002139 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002140 return;
2141
2142 /* disable interrupts */
2143 azx_int_disable(chip);
2144 azx_int_clear(chip);
2145
2146 /* disable CORB/RIRB */
2147 azx_free_cmd_io(chip);
2148
2149 /* disable position buffer */
2150 azx_writel(chip, DPLBASE, 0);
2151 azx_writel(chip, DPUBASE, 0);
2152
2153 chip->initialized = 0;
2154}
2155
2156#ifdef CONFIG_SND_HDA_POWER_SAVE
2157/* power-up/down the controller */
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002158static void azx_power_notify(struct hda_bus *bus)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002159{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002160 struct azx *chip = bus->private_data;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002161 struct hda_codec *c;
2162 int power_on = 0;
2163
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002164 list_for_each_entry(c, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002165 if (c->power_on) {
2166 power_on = 1;
2167 break;
2168 }
2169 }
2170 if (power_on)
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002171 azx_init_chip(chip, 1);
Wu Fengguang0287d972009-12-11 20:15:11 +08002172 else if (chip->running && power_save_controller &&
2173 !bus->power_keep_link_on)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002174 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002175}
Takashi Iwai5c0b9be2008-12-11 11:47:17 +01002176#endif /* CONFIG_SND_HDA_POWER_SAVE */
2177
2178#ifdef CONFIG_PM
2179/*
2180 * power management
2181 */
Takashi Iwai986862b2008-11-27 12:40:13 +01002182
2183static int snd_hda_codecs_inuse(struct hda_bus *bus)
2184{
2185 struct hda_codec *codec;
2186
2187 list_for_each_entry(codec, &bus->codec_list, list) {
2188 if (snd_hda_codec_needs_resume(codec))
2189 return 1;
2190 }
2191 return 0;
2192}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002193
Takashi Iwai421a1252005-11-17 16:11:09 +01002194static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
Takashi Iwai421a1252005-11-17 16:11:09 +01002196 struct snd_card *card = pci_get_drvdata(pci);
2197 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 int i;
2199
Takashi Iwai421a1252005-11-17 16:11:09 +01002200 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002201 azx_clear_irq_pending(chip);
Takashi Iwaic8936222010-01-28 17:08:53 +01002202 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01002203 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002204 if (chip->initialized)
Takashi Iwai8dd78332009-06-02 01:16:07 +02002205 snd_hda_suspend(chip->bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002206 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002207 if (chip->irq >= 0) {
Takashi Iwai43001c92006-09-08 12:30:03 +02002208 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002209 chip->irq = -1;
2210 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002211 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02002212 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01002213 pci_disable_device(pci);
2214 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002215 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return 0;
2217}
2218
Takashi Iwai421a1252005-11-17 16:11:09 +01002219static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220{
Takashi Iwai421a1252005-11-17 16:11:09 +01002221 struct snd_card *card = pci_get_drvdata(pci);
2222 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Takashi Iwaid14a7e02009-02-16 10:13:03 +01002224 pci_set_power_state(pci, PCI_D0);
2225 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002226 if (pci_enable_device(pci) < 0) {
2227 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
2228 "disabling device\n");
2229 snd_card_disconnect(card);
2230 return -EIO;
2231 }
2232 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002233 if (chip->msi)
2234 if (pci_enable_msi(pci) < 0)
2235 chip->msi = 0;
2236 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02002237 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002238 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002239
2240 if (snd_hda_codecs_inuse(chip->bus))
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002241 azx_init_chip(chip, 1);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002242
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01002244 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 return 0;
2246}
2247#endif /* CONFIG_PM */
2248
2249
2250/*
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002251 * reboot notifier for hang-up problem at power-down
2252 */
2253static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
2254{
2255 struct azx *chip = container_of(nb, struct azx, reboot_notifier);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01002256 snd_hda_bus_reboot_notify(chip->bus);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002257 azx_stop_chip(chip);
2258 return NOTIFY_OK;
2259}
2260
2261static void azx_notifier_register(struct azx *chip)
2262{
2263 chip->reboot_notifier.notifier_call = azx_halt;
2264 register_reboot_notifier(&chip->reboot_notifier);
2265}
2266
2267static void azx_notifier_unregister(struct azx *chip)
2268{
2269 if (chip->reboot_notifier.notifier_call)
2270 unregister_reboot_notifier(&chip->reboot_notifier);
2271}
2272
2273/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 * destructor
2275 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002276static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002278 int i;
2279
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002280 azx_notifier_unregister(chip);
2281
Takashi Iwaice43fba2005-05-30 20:33:44 +02002282 if (chip->initialized) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002283 azx_clear_irq_pending(chip);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002284 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002286 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 }
2288
Jeff Garzikf000fd82008-04-22 13:50:34 +02002289 if (chip->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 free_irq(chip->irq, (void*)chip);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002291 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02002292 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02002293 if (chip->remap_addr)
2294 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002296 if (chip->azx_dev) {
2297 for (i = 0; i < chip->num_streams; i++)
2298 if (chip->azx_dev[i].bdl.area)
2299 snd_dma_free_pages(&chip->azx_dev[i].bdl);
2300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if (chip->rb.area)
2302 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 if (chip->posbuf.area)
2304 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 pci_release_regions(chip->pci);
2306 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002307 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 kfree(chip);
2309
2310 return 0;
2311}
2312
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002313static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314{
2315 return azx_free(device->device_data);
2316}
2317
2318/*
Takashi Iwai3372a152007-02-01 15:46:50 +01002319 * white/black-listing for position_fix
2320 */
Ralf Baechle623ec042007-03-13 15:29:47 +01002321static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Daniel T Chen7a68be92010-05-22 12:05:41 -04002322 SND_PCI_QUIRK(0x1025, 0x009f, "Acer Aspire 5110", POS_FIX_LPIB),
Daniel T Chendd5a0892010-12-05 08:43:14 -05002323 SND_PCI_QUIRK(0x1025, 0x026f, "Acer Aspire 5538", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002324 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
2325 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
Daniel T Chen9919c762010-03-03 18:24:26 -05002326 SND_PCI_QUIRK(0x1028, 0x01f6, "Dell Latitude 131L", POS_FIX_LPIB),
Daniel T Chene03fa052010-12-28 17:20:02 -05002327 SND_PCI_QUIRK(0x1028, 0x0470, "Dell Inspiron 1120", POS_FIX_LPIB),
Takashi Iwai2f703e72009-12-01 14:17:37 +01002328 SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002329 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
Daniel T Chendd37f8e2010-05-30 01:17:03 -04002330 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB),
Daniel T Chen9f75c1b2010-05-30 13:08:41 -04002331 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB),
David Henningssonb540afc2011-02-14 20:27:44 +01002332 SND_PCI_QUIRK(0x1043, 0x8410, "ASUS", POS_FIX_LPIB),
Daniel T Chene96d3122010-05-27 18:32:18 -04002333 SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB),
Daniel T Chen4e0938d2010-05-22 13:12:22 -04002334 SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB),
2335 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba A100-259", POS_FIX_LPIB),
Daniel T Chen61bb42c2010-05-29 11:04:11 -04002336 SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB),
Daniel T Chen9ec8dda2010-03-28 02:34:40 -04002337 SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB),
Takashi Iwai45d4ebf2009-11-30 11:58:30 +01002338 SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB),
Daniel T Chen0321b692010-03-05 09:04:49 -05002339 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar Microtech", POS_FIX_LPIB),
Takashi Iwai8815cd02010-04-15 09:02:41 +02002340 SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB),
Daniel T Chenb90c0762010-05-30 19:31:41 -04002341 SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB),
Daniel T Chen0e0280d2010-04-21 19:55:43 -04002342 SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB),
Daniel T Chen572c0e32010-03-14 23:44:03 -04002343 SND_PCI_QUIRK(0x8086, 0xd601, "eMachines T5212", POS_FIX_LPIB),
Takashi Iwai3372a152007-02-01 15:46:50 +01002344 {}
2345};
2346
2347static int __devinit check_position_fix(struct azx *chip, int fix)
2348{
2349 const struct snd_pci_quirk *q;
2350
Takashi Iwaic673ba12009-03-17 07:49:14 +01002351 switch (fix) {
2352 case POS_FIX_LPIB:
2353 case POS_FIX_POSBUF:
David Henningsson4cb36312010-09-30 10:12:50 +02002354 case POS_FIX_VIACOMBO:
Takashi Iwaic673ba12009-03-17 07:49:14 +01002355 return fix;
2356 }
2357
Takashi Iwaic673ba12009-03-17 07:49:14 +01002358 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
2359 if (q) {
2360 printk(KERN_INFO
2361 "hda_intel: position_fix set to %d "
2362 "for device %04x:%04x\n",
2363 q->value, q->subvendor, q->subdevice);
2364 return q->value;
Takashi Iwai3372a152007-02-01 15:46:50 +01002365 }
David Henningssonbdd9ef22010-10-04 12:02:14 +02002366
2367 /* Check VIA/ATI HD Audio Controller exist */
2368 switch (chip->driver_type) {
2369 case AZX_DRIVER_VIA:
David Henningssonbdd9ef22010-10-04 12:02:14 +02002370 /* Use link position directly, avoid any transfer problem. */
2371 return POS_FIX_VIACOMBO;
Takashi Iwai50e3bbf2011-05-20 16:29:09 +02002372 case AZX_DRIVER_ATI:
2373 /* ATI chipsets don't work well with position-buffer */
2374 return POS_FIX_LPIB;
2375 case AZX_DRIVER_GENERIC:
2376 /* AMD chipsets also don't work with position-buffer */
2377 if (chip->pci->vendor == PCI_VENDOR_ID_AMD)
2378 return POS_FIX_LPIB;
2379 break;
David Henningssonbdd9ef22010-10-04 12:02:14 +02002380 }
2381
Takashi Iwaic673ba12009-03-17 07:49:14 +01002382 return POS_FIX_AUTO;
Takashi Iwai3372a152007-02-01 15:46:50 +01002383}
2384
2385/*
Takashi Iwai669ba272007-08-17 09:17:36 +02002386 * black-lists for probe_mask
2387 */
2388static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
2389 /* Thinkpad often breaks the controller communication when accessing
2390 * to the non-working (or non-existing) modem codec slot.
2391 */
2392 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2393 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2394 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
Takashi Iwai0edb9452008-11-07 14:53:09 +01002395 /* broken BIOS */
2396 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
Takashi Iwaief1681d2008-11-24 17:29:28 +01002397 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2398 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002399 /* forced codec slots */
Ozan Çağlayan93574842009-05-23 15:00:04 +03002400 SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002401 SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
Takashi Iwai669ba272007-08-17 09:17:36 +02002402 {}
2403};
2404
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002405#define AZX_FORCE_CODEC_MASK 0x100
2406
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002407static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02002408{
2409 const struct snd_pci_quirk *q;
2410
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002411 chip->codec_probe_mask = probe_mask[dev];
2412 if (chip->codec_probe_mask == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002413 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
2414 if (q) {
2415 printk(KERN_INFO
2416 "hda_intel: probe_mask set to 0x%x "
2417 "for device %04x:%04x\n",
2418 q->value, q->subvendor, q->subdevice);
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002419 chip->codec_probe_mask = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02002420 }
2421 }
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002422
2423 /* check forced option */
2424 if (chip->codec_probe_mask != -1 &&
2425 (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) {
2426 chip->codec_mask = chip->codec_probe_mask & 0xff;
2427 printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n",
2428 chip->codec_mask);
2429 }
Takashi Iwai669ba272007-08-17 09:17:36 +02002430}
2431
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002432/*
Takashi Iwai716238552009-09-28 13:14:04 +02002433 * white/black-list for enable_msi
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002434 */
Takashi Iwai716238552009-09-28 13:14:04 +02002435static struct snd_pci_quirk msi_black_list[] __devinitdata = {
Takashi Iwai9dc83982009-12-22 08:15:01 +01002436 SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai0a27fcf2010-02-15 17:05:28 +01002437 SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
Ralf Gerbigecd21622010-03-09 18:25:47 +01002438 SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
Michele Ballabio4193d132010-03-06 21:06:46 +01002439 SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai38155952010-04-04 12:14:03 +02002440 SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002441 {}
2442};
2443
2444static void __devinit check_msi(struct azx *chip)
2445{
2446 const struct snd_pci_quirk *q;
2447
Takashi Iwai716238552009-09-28 13:14:04 +02002448 if (enable_msi >= 0) {
2449 chip->msi = !!enable_msi;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002450 return;
Takashi Iwai716238552009-09-28 13:14:04 +02002451 }
2452 chip->msi = 1; /* enable MSI as default */
2453 q = snd_pci_quirk_lookup(chip->pci, msi_black_list);
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002454 if (q) {
2455 printk(KERN_INFO
2456 "hda_intel: msi for device %04x:%04x set to %d\n",
2457 q->subvendor, q->subdevice, q->value);
2458 chip->msi = q->value;
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002459 return;
2460 }
2461
2462 /* NVidia chipsets seem to cause troubles with MSI */
2463 if (chip->driver_type == AZX_DRIVER_NVIDIA) {
2464 printk(KERN_INFO "hda_intel: Disable MSI for Nvidia chipset\n");
2465 chip->msi = 0;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002466 }
2467}
2468
Takashi Iwai669ba272007-08-17 09:17:36 +02002469
2470/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 * constructor
2472 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002473static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002474 int dev, int driver_type,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002475 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002477 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002478 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01002479 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002480 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 .dev_free = azx_dev_free,
2482 };
2483
2484 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01002485
Pavel Machek927fc862006-08-31 17:03:43 +02002486 err = pci_enable_device(pci);
2487 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 return err;
2489
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002490 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002491 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
2493 pci_disable_device(pci);
2494 return -ENOMEM;
2495 }
2496
2497 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002498 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 chip->card = card;
2500 chip->pci = pci;
2501 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002502 chip->driver_type = driver_type;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002503 check_msi(chip);
Takashi Iwai555e2192008-06-10 17:53:34 +02002504 chip->dev_index = dev;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002505 INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002507 chip->position_fix[0] = chip->position_fix[1] =
2508 check_position_fix(chip, position_fix[dev]);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002509 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01002510
Takashi Iwai27346162006-01-12 18:28:44 +01002511 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02002512
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002513 if (bdl_pos_adj[dev] < 0) {
2514 switch (chip->driver_type) {
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002515 case AZX_DRIVER_ICH:
Seth Heasley32679f92010-02-22 17:31:09 -08002516 case AZX_DRIVER_PCH:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002517 bdl_pos_adj[dev] = 1;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002518 break;
2519 default:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002520 bdl_pos_adj[dev] = 32;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002521 break;
2522 }
2523 }
2524
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002525#if BITS_PER_LONG != 64
2526 /* Fix up base address on ULI M5461 */
2527 if (chip->driver_type == AZX_DRIVER_ULI) {
2528 u16 tmp3;
2529 pci_read_config_word(pci, 0x40, &tmp3);
2530 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
2531 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
2532 }
2533#endif
2534
Pavel Machek927fc862006-08-31 17:03:43 +02002535 err = pci_request_regions(pci, "ICH HD audio");
2536 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 kfree(chip);
2538 pci_disable_device(pci);
2539 return err;
2540 }
2541
Pavel Machek927fc862006-08-31 17:03:43 +02002542 chip->addr = pci_resource_start(pci, 0);
Arjan van de Ven2f5ad542008-09-28 16:20:09 -07002543 chip->remap_addr = pci_ioremap_bar(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 if (chip->remap_addr == NULL) {
2545 snd_printk(KERN_ERR SFX "ioremap error\n");
2546 err = -ENXIO;
2547 goto errout;
2548 }
2549
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002550 if (chip->msi)
2551 if (pci_enable_msi(pci) < 0)
2552 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02002553
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002554 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 err = -EBUSY;
2556 goto errout;
2557 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
2559 pci_set_master(pci);
2560 synchronize_irq(chip->irq);
2561
Tobin Davisbcd72002008-01-15 11:23:55 +01002562 gcap = azx_readw(chip, GCAP);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002563 snd_printdd(SFX "chipset global capabilities = 0x%x\n", gcap);
Tobin Davisbcd72002008-01-15 11:23:55 +01002564
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002565 /* disable SB600 64bit support for safety */
2566 if ((chip->driver_type == AZX_DRIVER_ATI) ||
2567 (chip->driver_type == AZX_DRIVER_ATIHDMI)) {
2568 struct pci_dev *p_smbus;
2569 p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
2570 PCI_DEVICE_ID_ATI_SBX00_SMBUS,
2571 NULL);
2572 if (p_smbus) {
2573 if (p_smbus->revision < 0x30)
2574 gcap &= ~ICH6_GCAP_64OK;
2575 pci_dev_put(p_smbus);
2576 }
Takashi Iwai20c304e2011-05-17 18:41:25 +02002577 } else {
2578 /* FIXME: not sure whether this is really needed, but
2579 * Hudson isn't stable enough for allowing everything...
2580 * let's check later again.
2581 */
2582 if (chip->pci->vendor == PCI_VENDOR_ID_AMD)
2583 gcap &= ~ICH6_GCAP_64OK;
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002584 }
Takashi Iwai09240cf2009-03-17 07:47:18 +01002585
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002586 /* disable 64bit DMA address for Teradici */
2587 /* it does not work with device 6549:1200 subsys e4a2:040b */
2588 if (chip->driver_type == AZX_DRIVER_TERA)
2589 gcap &= ~ICH6_GCAP_64OK;
2590
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002591 /* allow 64bit DMA address if supported by H/W */
Takashi Iwaib21fadb2009-05-28 12:26:15 +02002592 if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
Yang Hongyange9304382009-04-13 14:40:14 -07002593 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002594 else {
Yang Hongyange9304382009-04-13 14:40:14 -07002595 pci_set_dma_mask(pci, DMA_BIT_MASK(32));
2596 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002597 }
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002598
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002599 /* read number of streams from GCAP register instead of using
2600 * hardcoded value
2601 */
2602 chip->capture_streams = (gcap >> 8) & 0x0f;
2603 chip->playback_streams = (gcap >> 12) & 0x0f;
2604 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01002605 /* gcap didn't give any info, switching to old method */
2606
2607 switch (chip->driver_type) {
2608 case AZX_DRIVER_ULI:
2609 chip->playback_streams = ULI_NUM_PLAYBACK;
2610 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002611 break;
2612 case AZX_DRIVER_ATIHDMI:
2613 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
2614 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002615 break;
Yang, Libinc4da29c2008-11-13 11:07:07 +01002616 case AZX_DRIVER_GENERIC:
Tobin Davisbcd72002008-01-15 11:23:55 +01002617 default:
2618 chip->playback_streams = ICH6_NUM_PLAYBACK;
2619 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002620 break;
2621 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002622 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002623 chip->capture_index_offset = 0;
2624 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002625 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002626 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
2627 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002628 if (!chip->azx_dev) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002629 snd_printk(KERN_ERR SFX "cannot malloc azx_dev\n");
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002630 goto errout;
2631 }
2632
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002633 for (i = 0; i < chip->num_streams; i++) {
2634 /* allocate memory for the BDL for each stream */
2635 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2636 snd_dma_pci_data(chip->pci),
2637 BDL_SIZE, &chip->azx_dev[i].bdl);
2638 if (err < 0) {
2639 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
2640 goto errout;
2641 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002643 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002644 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2645 snd_dma_pci_data(chip->pci),
2646 chip->num_streams * 8, &chip->posbuf);
2647 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002648 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
2649 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 /* allocate CORB/RIRB */
Takashi Iwai81740862009-05-26 15:22:00 +02002652 err = azx_alloc_cmd_io(chip);
2653 if (err < 0)
2654 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656 /* initialize streams */
2657 azx_init_stream(chip);
2658
2659 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002660 azx_init_pci(chip);
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002661 azx_init_chip(chip, (probe_only[dev] & 2) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02002664 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 snd_printk(KERN_ERR SFX "no codecs found!\n");
2666 err = -ENODEV;
2667 goto errout;
2668 }
2669
Takashi Iwaid01ce992007-07-27 16:52:19 +02002670 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
2671 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
2673 goto errout;
2674 }
2675
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002676 strcpy(card->driver, "HDA-Intel");
Takashi Iwai18cb7102009-04-16 10:22:24 +02002677 strlcpy(card->shortname, driver_short_names[chip->driver_type],
2678 sizeof(card->shortname));
2679 snprintf(card->longname, sizeof(card->longname),
2680 "%s at 0x%lx irq %i",
2681 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 *rchip = chip;
2684 return 0;
2685
2686 errout:
2687 azx_free(chip);
2688 return err;
2689}
2690
Takashi Iwaicb53c622007-08-10 17:21:45 +02002691static void power_down_all_codecs(struct azx *chip)
2692{
2693#ifdef CONFIG_SND_HDA_POWER_SAVE
2694 /* The codecs were powered up in snd_hda_codec_new().
2695 * Now all initialization done, so turn them down if possible
2696 */
2697 struct hda_codec *codec;
2698 list_for_each_entry(codec, &chip->bus->codec_list, list) {
2699 snd_hda_power_down(codec);
2700 }
2701#endif
2702}
2703
Takashi Iwaid01ce992007-07-27 16:52:19 +02002704static int __devinit azx_probe(struct pci_dev *pci,
2705 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002707 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002708 struct snd_card *card;
2709 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02002710 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002712 if (dev >= SNDRV_CARDS)
2713 return -ENODEV;
2714 if (!enable[dev]) {
2715 dev++;
2716 return -ENOENT;
2717 }
2718
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002719 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2720 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 snd_printk(KERN_ERR SFX "Error creating card!\n");
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002722 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 }
2724
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002725 /* set this here since it's referred in snd_hda_load_patch() */
2726 snd_card_set_dev(card, &pci->dev);
2727
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002728 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002729 if (err < 0)
2730 goto out_free;
Takashi Iwai421a1252005-11-17 16:11:09 +01002731 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01002733#ifdef CONFIG_SND_HDA_INPUT_BEEP
2734 chip->beep_mode = beep_mode[dev];
2735#endif
2736
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 /* create codec instances */
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002738 err = azx_codec_create(chip, model[dev]);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002739 if (err < 0)
2740 goto out_free;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002741#ifdef CONFIG_SND_HDA_PATCH_LOADER
Takashi Iwai41a63f12011-02-10 17:39:20 +01002742 if (patch[dev] && *patch[dev]) {
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002743 snd_printk(KERN_ERR SFX "Applying patch firmware '%s'\n",
2744 patch[dev]);
2745 err = snd_hda_load_patch(chip->bus, patch[dev]);
2746 if (err < 0)
2747 goto out_free;
2748 }
2749#endif
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002750 if ((probe_only[dev] & 1) == 0) {
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002751 err = azx_codec_configure(chip);
2752 if (err < 0)
2753 goto out_free;
2754 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 /* create PCM streams */
Takashi Iwai176d5332008-07-30 15:01:44 +02002757 err = snd_hda_build_pcms(chip->bus);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002758 if (err < 0)
2759 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002762 err = azx_mixer_create(chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002763 if (err < 0)
2764 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Takashi Iwaid01ce992007-07-27 16:52:19 +02002766 err = snd_card_register(card);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002767 if (err < 0)
2768 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
2770 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002771 chip->running = 1;
2772 power_down_all_codecs(chip);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002773 azx_notifier_register(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002775 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 return err;
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002777out_free:
2778 snd_card_free(card);
2779 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
2782static void __devexit azx_remove(struct pci_dev *pci)
2783{
2784 snd_card_free(pci_get_drvdata(pci));
2785 pci_set_drvdata(pci, NULL);
2786}
2787
2788/* PCI IDs */
Alexey Dobriyancebe41d2010-02-06 00:21:03 +02002789static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -08002790 /* CPT */
Seth Heasley32679f92010-02-22 17:31:09 -08002791 { PCI_DEVICE(0x8086, 0x1c20), .driver_data = AZX_DRIVER_PCH },
Seth Heasleycea310e2010-09-10 16:29:56 -07002792 /* PBG */
2793 { PCI_DEVICE(0x8086, 0x1d20), .driver_data = AZX_DRIVER_PCH },
Seth Heasleyd2edeb72011-04-20 10:59:57 -07002794 /* Panther Point */
2795 { PCI_DEVICE(0x8086, 0x1e20), .driver_data = AZX_DRIVER_PCH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002796 /* SCH */
2797 { PCI_DEVICE(0x8086, 0x811b), .driver_data = AZX_DRIVER_SCH },
Takashi Iwaib6864532010-09-15 10:17:26 +02002798 /* Generic Intel */
2799 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
2800 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2801 .class_mask = 0xffffff,
2802 .driver_data = AZX_DRIVER_ICH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002803 /* ATI SB 450/600 */
2804 { PCI_DEVICE(0x1002, 0x437b), .driver_data = AZX_DRIVER_ATI },
2805 { PCI_DEVICE(0x1002, 0x4383), .driver_data = AZX_DRIVER_ATI },
2806 /* ATI HDMI */
2807 { PCI_DEVICE(0x1002, 0x793b), .driver_data = AZX_DRIVER_ATIHDMI },
2808 { PCI_DEVICE(0x1002, 0x7919), .driver_data = AZX_DRIVER_ATIHDMI },
2809 { PCI_DEVICE(0x1002, 0x960f), .driver_data = AZX_DRIVER_ATIHDMI },
Libin Yang9e6dd472008-08-12 12:25:46 +02002810 { PCI_DEVICE(0x1002, 0x970f), .driver_data = AZX_DRIVER_ATIHDMI },
Takashi Iwai87218e92008-02-21 08:13:11 +01002811 { PCI_DEVICE(0x1002, 0xaa00), .driver_data = AZX_DRIVER_ATIHDMI },
2812 { PCI_DEVICE(0x1002, 0xaa08), .driver_data = AZX_DRIVER_ATIHDMI },
2813 { PCI_DEVICE(0x1002, 0xaa10), .driver_data = AZX_DRIVER_ATIHDMI },
2814 { PCI_DEVICE(0x1002, 0xaa18), .driver_data = AZX_DRIVER_ATIHDMI },
2815 { PCI_DEVICE(0x1002, 0xaa20), .driver_data = AZX_DRIVER_ATIHDMI },
2816 { PCI_DEVICE(0x1002, 0xaa28), .driver_data = AZX_DRIVER_ATIHDMI },
2817 { PCI_DEVICE(0x1002, 0xaa30), .driver_data = AZX_DRIVER_ATIHDMI },
2818 { PCI_DEVICE(0x1002, 0xaa38), .driver_data = AZX_DRIVER_ATIHDMI },
2819 { PCI_DEVICE(0x1002, 0xaa40), .driver_data = AZX_DRIVER_ATIHDMI },
2820 { PCI_DEVICE(0x1002, 0xaa48), .driver_data = AZX_DRIVER_ATIHDMI },
2821 /* VIA VT8251/VT8237A */
2822 { PCI_DEVICE(0x1106, 0x3288), .driver_data = AZX_DRIVER_VIA },
2823 /* SIS966 */
2824 { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
2825 /* ULI M5461 */
2826 { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
2827 /* NVIDIA MCP */
Takashi Iwai0c2fd1bf42009-12-18 16:41:39 +01002828 { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
2829 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2830 .class_mask = 0xffffff,
2831 .driver_data = AZX_DRIVER_NVIDIA },
Kailang Yangf2690022008-05-27 11:44:55 +02002832 /* Teradici */
2833 { PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
Takashi Iwai4e01f542009-04-16 08:53:34 +02002834 /* Creative X-Fi (CA0110-IBG) */
Takashi Iwai313f6e22009-05-18 12:40:52 +02002835#if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
2836 /* the following entry conflicts with snd-ctxfi driver,
2837 * as ctxfi driver mutates from HD-audio to native mode with
2838 * a special command sequence.
2839 */
Takashi Iwai4e01f542009-04-16 08:53:34 +02002840 { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID),
2841 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2842 .class_mask = 0xffffff,
Takashi Iwai14d34f12010-10-21 09:03:25 +02002843 .driver_data = AZX_DRIVER_CTX },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002844#else
2845 /* this entry seems still valid -- i.e. without emu20kx chip */
Takashi Iwai14d34f12010-10-21 09:03:25 +02002846 { PCI_DEVICE(0x1102, 0x0009), .driver_data = AZX_DRIVER_CTX },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002847#endif
Otavio Salvadore35d4b12010-09-26 23:35:06 -03002848 /* Vortex86MX */
2849 { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
Bankim Bhavsar0f0714c52011-01-17 15:23:21 +01002850 /* VMware HDAudio */
2851 { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002852 /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
Yang, Libinc4da29c2008-11-13 11:07:07 +01002853 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
2854 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2855 .class_mask = 0xffffff,
2856 .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002857 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID),
2858 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2859 .class_mask = 0xffffff,
2860 .driver_data = AZX_DRIVER_GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 { 0, }
2862};
2863MODULE_DEVICE_TABLE(pci, azx_ids);
2864
2865/* pci_driver definition */
2866static struct pci_driver driver = {
2867 .name = "HDA Intel",
2868 .id_table = azx_ids,
2869 .probe = azx_probe,
2870 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002871#ifdef CONFIG_PM
2872 .suspend = azx_suspend,
2873 .resume = azx_resume,
2874#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875};
2876
2877static int __init alsa_card_azx_init(void)
2878{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002879 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880}
2881
2882static void __exit alsa_card_azx_exit(void)
2883{
2884 pci_unregister_driver(&driver);
2885}
2886
2887module_init(alsa_card_azx_init)
2888module_exit(alsa_card_azx_exit)