blob: 6f891ee82a7c9161e2332bfc73c1280d6268a14c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
Takashi Iwaid01ce992007-07-27 16:52:19 +02003 * hda_intel.c - Implementation of primary alsa driver code base
4 * for Intel HD Audio.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright(c) 2004 Intel Corporation. All rights reserved.
7 *
8 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
9 * PeiSen Hou <pshou@realtek.com.tw>
10 *
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
14 * any later version.
15 *
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
19 * more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 *
25 * CONTACTS:
26 *
27 * Matt Jared matt.jared@intel.com
28 * Andy Kopp andy.kopp@intel.com
29 * Dan Kogan dan.d.kogan@intel.com
30 *
31 * CHANGES:
32 *
33 * 2004.12.01 Major rewrite by tiwai, merged the work of pshou
34 *
35 */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/io.h>
38#include <linux/delay.h>
39#include <linux/interrupt.h>
Randy Dunlap362775e2005-11-07 14:43:23 +010040#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/module.h>
Andrew Morton24982c52008-03-04 10:08:58 +010042#include <linux/dma-mapping.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <linux/moduleparam.h>
44#include <linux/init.h>
45#include <linux/slab.h>
46#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010047#include <linux/mutex.h>
Takashi Iwai0cbf0092008-10-29 16:18:25 +010048#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include <sound/core.h>
50#include <sound/initval.h>
51#include "hda_codec.h"
52
53
Takashi Iwai5aba4f82008-01-07 15:16:37 +010054static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
55static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
56static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
57static char *model[SNDRV_CARDS];
58static int position_fix[SNDRV_CARDS];
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +020059static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwai5aba4f82008-01-07 15:16:37 +010060static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1};
Takashi Iwaid4d9cd032008-12-19 15:19:11 +010061static int probe_only[SNDRV_CARDS];
Takashi Iwai27346162006-01-12 18:28:44 +010062static int single_cmd;
Takashi Iwai716238552009-09-28 13:14:04 +020063static int enable_msi = -1;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +020064#ifdef CONFIG_SND_HDA_PATCH_LOADER
65static char *patch[SNDRV_CARDS];
66#endif
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +010067#ifdef CONFIG_SND_HDA_INPUT_BEEP
68static int beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] =
69 CONFIG_SND_HDA_INPUT_BEEP_MODE};
70#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Takashi Iwai5aba4f82008-01-07 15:16:37 +010072module_param_array(index, int, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010074module_param_array(id, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010076module_param_array(enable, bool, NULL, 0444);
77MODULE_PARM_DESC(enable, "Enable Intel HD audio interface.");
78module_param_array(model, charp, NULL, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079MODULE_PARM_DESC(model, "Use the given board model.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010080module_param_array(position_fix, int, NULL, 0444);
David Henningsson4cb36312010-09-30 10:12:50 +020081MODULE_PARM_DESC(position_fix, "DMA pointer read method."
82 "(0 = auto, 1 = LPIB, 2 = POSBUF, 3 = VIACOMBO).");
Takashi Iwai555e2192008-06-10 17:53:34 +020083module_param_array(bdl_pos_adj, int, NULL, 0644);
84MODULE_PARM_DESC(bdl_pos_adj, "BDL position adjustment offset.");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010085module_param_array(probe_mask, int, NULL, 0444);
Takashi Iwai606ad752005-11-24 16:03:40 +010086MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1).");
Jaroslav Kysela079e6832010-03-26 11:16:59 +010087module_param_array(probe_only, int, NULL, 0444);
Takashi Iwaid4d9cd032008-12-19 15:19:11 +010088MODULE_PARM_DESC(probe_only, "Only probing and no codec initialization.");
Takashi Iwai27346162006-01-12 18:28:44 +010089module_param(single_cmd, bool, 0444);
Takashi Iwaid01ce992007-07-27 16:52:19 +020090MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs "
91 "(for debugging only).");
Takashi Iwai5aba4f82008-01-07 15:16:37 +010092module_param(enable_msi, int, 0444);
Takashi Iwai134a11f2006-11-10 12:08:37 +010093MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)");
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +020094#ifdef CONFIG_SND_HDA_PATCH_LOADER
95module_param_array(patch, charp, NULL, 0444);
96MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface.");
97#endif
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +010098#ifdef CONFIG_SND_HDA_INPUT_BEEP
99module_param_array(beep_mode, int, NULL, 0444);
100MODULE_PARM_DESC(beep_mode, "Select HDA Beep registration mode "
101 "(0=off, 1=on, 2=mute switch on/off) (default=1).");
102#endif
Takashi Iwai606ad752005-11-24 16:03:40 +0100103
Takashi Iwaidee1b662007-08-13 16:10:30 +0200104#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwaifee2fba2008-11-27 12:43:28 +0100105static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT;
106module_param(power_save, int, 0644);
107MODULE_PARM_DESC(power_save, "Automatic power-saving timeout "
108 "(in second, 0 = disable).");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Takashi Iwaidee1b662007-08-13 16:10:30 +0200110/* reset the HD-audio controller in power save mode.
111 * this may give more power-saving, but will take longer time to
112 * wake up.
113 */
114static int power_save_controller = 1;
115module_param(power_save_controller, bool, 0644);
116MODULE_PARM_DESC(power_save_controller, "Reset controller in power save mode.");
117#endif
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119MODULE_LICENSE("GPL");
120MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
121 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -0700122 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +0200123 "{Intel, ESB2},"
Jason Gastond2981392006-01-10 11:07:37 +0100124 "{Intel, ICH8},"
Jason Gastonf9cc8a82006-11-22 11:53:52 +0100125 "{Intel, ICH9},"
Jason Gastonc34f5a02008-01-29 12:38:49 +0100126 "{Intel, ICH10},"
Seth Heasleyb29c2362008-08-08 15:56:39 -0700127 "{Intel, PCH},"
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -0800128 "{Intel, CPT},"
Seth Heasleyd2edeb72011-04-20 10:59:57 -0700129 "{Intel, PPT},"
Seth Heasleycea310e2010-09-10 16:29:56 -0700130 "{Intel, PBG},"
Tobin Davis4979bca2008-01-30 08:13:55 +0100131 "{Intel, SCH},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200132 "{ATI, SB450},"
Felix Kuehling89be83f2006-03-31 12:33:59 +0200133 "{ATI, SB600},"
Felix Kuehling778b6e12006-05-17 11:22:21 +0200134 "{ATI, RS600},"
Felix Kuehling5b15c952006-10-16 12:49:47 +0200135 "{ATI, RS690},"
Wolke Liue6db1112007-04-27 12:20:57 +0200136 "{ATI, RS780},"
137 "{ATI, R600},"
Herton Ronaldo Krzesinski2797f722007-11-05 18:21:56 +0100138 "{ATI, RV630},"
139 "{ATI, RV610},"
Wolke Liu27da1832007-11-16 11:06:30 +0100140 "{ATI, RV670},"
141 "{ATI, RV635},"
142 "{ATI, RV620},"
143 "{ATI, RV770},"
Takashi Iwaifc20a562005-05-12 15:00:41 +0200144 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +0200145 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200146 "{SiS, SIS966},"
147 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148MODULE_DESCRIPTION("Intel HDA driver");
149
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200150#ifdef CONFIG_SND_VERBOSE_PRINTK
151#define SFX /* nop */
152#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#define SFX "hda-intel: "
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200154#endif
Takashi Iwaicb53c622007-08-10 17:21:45 +0200155
156/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * registers
158 */
159#define ICH6_REG_GCAP 0x00
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200160#define ICH6_GCAP_64OK (1 << 0) /* 64bit address support */
161#define ICH6_GCAP_NSDO (3 << 1) /* # of serial data out signals */
162#define ICH6_GCAP_BSS (31 << 3) /* # of bidirectional streams */
163#define ICH6_GCAP_ISS (15 << 8) /* # of input streams */
164#define ICH6_GCAP_OSS (15 << 12) /* # of output streams */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#define ICH6_REG_VMIN 0x02
166#define ICH6_REG_VMAJ 0x03
167#define ICH6_REG_OUTPAY 0x04
168#define ICH6_REG_INPAY 0x06
169#define ICH6_REG_GCTL 0x08
Takashi Iwai8a933ec2009-05-31 09:28:12 +0200170#define ICH6_GCTL_RESET (1 << 0) /* controller reset */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200171#define ICH6_GCTL_FCNTRL (1 << 1) /* flush control */
172#define ICH6_GCTL_UNSOL (1 << 8) /* accept unsol. response enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173#define ICH6_REG_WAKEEN 0x0c
174#define ICH6_REG_STATESTS 0x0e
175#define ICH6_REG_GSTS 0x10
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200176#define ICH6_GSTS_FSTS (1 << 1) /* flush status */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177#define ICH6_REG_INTCTL 0x20
178#define ICH6_REG_INTSTS 0x24
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200179#define ICH6_REG_WALLCLK 0x30 /* 24Mhz source */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#define ICH6_REG_SYNC 0x34
181#define ICH6_REG_CORBLBASE 0x40
182#define ICH6_REG_CORBUBASE 0x44
183#define ICH6_REG_CORBWP 0x48
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200184#define ICH6_REG_CORBRP 0x4a
185#define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define ICH6_REG_CORBCTL 0x4c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200187#define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */
188#define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#define ICH6_REG_CORBSTS 0x4d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200190#define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#define ICH6_REG_CORBSIZE 0x4e
192
193#define ICH6_REG_RIRBLBASE 0x50
194#define ICH6_REG_RIRBUBASE 0x54
195#define ICH6_REG_RIRBWP 0x58
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200196#define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#define ICH6_REG_RINTCNT 0x5a
198#define ICH6_REG_RIRBCTL 0x5c
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200199#define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */
200#define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */
201#define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202#define ICH6_REG_RIRBSTS 0x5d
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200203#define ICH6_RBSTS_IRQ (1 << 0) /* response irq */
204#define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define ICH6_REG_RIRBSIZE 0x5e
206
207#define ICH6_REG_IC 0x60
208#define ICH6_REG_IR 0x64
209#define ICH6_REG_IRS 0x68
210#define ICH6_IRS_VALID (1<<1)
211#define ICH6_IRS_BUSY (1<<0)
212
213#define ICH6_REG_DPLBASE 0x70
214#define ICH6_REG_DPUBASE 0x74
215#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
216
217/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
218enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
219
220/* stream register offsets from stream base */
221#define ICH6_REG_SD_CTL 0x00
222#define ICH6_REG_SD_STS 0x03
223#define ICH6_REG_SD_LPIB 0x04
224#define ICH6_REG_SD_CBL 0x08
225#define ICH6_REG_SD_LVI 0x0c
226#define ICH6_REG_SD_FIFOW 0x0e
227#define ICH6_REG_SD_FIFOSIZE 0x10
228#define ICH6_REG_SD_FORMAT 0x12
229#define ICH6_REG_SD_BDLPL 0x18
230#define ICH6_REG_SD_BDLPU 0x1c
231
232/* PCI space */
233#define ICH6_PCIREG_TCSEL 0x44
234
235/*
236 * other constants
237 */
238
239/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200240/* ICH, ATI and VIA have 4 playback and 4 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200241#define ICH6_NUM_CAPTURE 4
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200242#define ICH6_NUM_PLAYBACK 4
243
244/* ULI has 6 playback and 5 capture */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200245#define ULI_NUM_CAPTURE 5
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200246#define ULI_NUM_PLAYBACK 6
247
Felix Kuehling778b6e12006-05-17 11:22:21 +0200248/* ATI HDMI has 1 playback and 0 capture */
Felix Kuehling778b6e12006-05-17 11:22:21 +0200249#define ATIHDMI_NUM_CAPTURE 0
Felix Kuehling778b6e12006-05-17 11:22:21 +0200250#define ATIHDMI_NUM_PLAYBACK 1
251
Kailang Yangf2690022008-05-27 11:44:55 +0200252/* TERA has 4 playback and 3 capture */
253#define TERA_NUM_CAPTURE 3
254#define TERA_NUM_PLAYBACK 4
255
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200256/* this number is statically defined for simplicity */
257#define MAX_AZX_DEV 16
258
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100260#define BDL_SIZE 4096
261#define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
262#define AZX_MAX_FRAG 32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/* max buffer size - no h/w limit, you can increase as you like */
264#define AZX_MAX_BUF_SIZE (1024*1024*1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266/* RIRB int mask: overrun[2], response[0] */
267#define RIRB_INT_RESPONSE 0x01
268#define RIRB_INT_OVERRUN 0x04
269#define RIRB_INT_MASK 0x05
270
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200271/* STATESTS int mask: S3,SD2,SD1,SD0 */
Wei Ni7445dfc2010-03-03 15:05:53 +0800272#define AZX_MAX_CODECS 8
273#define AZX_DEFAULT_CODECS 4
Wu Fengguangdeadff12009-08-01 18:45:16 +0800274#define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276/* SD_CTL bits */
277#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
278#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
Takashi Iwai850f0e52008-03-18 17:11:05 +0100279#define SD_CTL_STRIPE (3 << 16) /* stripe control */
280#define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
281#define SD_CTL_DIR (1 << 19) /* bi-directional stream */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
283#define SD_CTL_STREAM_TAG_SHIFT 20
284
285/* SD_CTL and SD_STS */
286#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
287#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
288#define SD_INT_COMPLETE 0x04 /* completion interrupt */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200289#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
290 SD_INT_COMPLETE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292/* SD_STS */
293#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
294
295/* INTCTL and INTSTS */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200296#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
297#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
298#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/* below are so far hardcoded - should read registers in future */
301#define ICH6_MAX_CORB_ENTRIES 256
302#define ICH6_MAX_RIRB_ENTRIES 256
303
Takashi Iwaic74db862005-05-12 14:26:27 +0200304/* position fix mode */
305enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200306 POS_FIX_AUTO,
Takashi Iwaid2e1c972008-06-10 17:53:34 +0200307 POS_FIX_LPIB,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200308 POS_FIX_POSBUF,
David Henningsson4cb36312010-09-30 10:12:50 +0200309 POS_FIX_VIACOMBO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200310};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Frederick Lif5d40b32005-05-12 14:55:20 +0200312/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200313#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
314#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
315
Vinod Gda3fca22005-09-13 18:49:12 +0200316/* Defines for Nvidia HDA support */
317#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
318#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Peer Chen320dcc32008-08-20 16:43:24 -0700319#define NVIDIA_HDA_ISTRM_COH 0x4d
320#define NVIDIA_HDA_OSTRM_COH 0x4c
321#define NVIDIA_HDA_ENABLE_COHBIT 0x01
Frederick Lif5d40b32005-05-12 14:55:20 +0200322
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100323/* Defines for Intel SCH HDA snoop control */
324#define INTEL_SCH_HDA_DEVC 0x78
325#define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
326
Joseph Chan0e153472008-08-26 14:38:03 +0200327/* Define IN stream 0 FIFO size offset in VIA controller */
328#define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
329/* Define VIA HD Audio Device ID*/
330#define VIA_HDAC_DEVICE_ID 0x3288
331
Yang, Libinc4da29c2008-11-13 11:07:07 +0100332/* HD Audio class code */
333#define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
Takashi Iwai90a5ad52008-02-22 18:36:22 +0100334
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 */
337
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100338struct azx_dev {
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100339 struct snd_dma_buffer bdl; /* BDL buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200340 u32 *posbuf; /* position buffer pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Takashi Iwaid01ce992007-07-27 16:52:19 +0200342 unsigned int bufsize; /* size of the play buffer in bytes */
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200343 unsigned int period_bytes; /* size of the period in bytes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200344 unsigned int frags; /* number for period in the play buffer */
345 unsigned int fifo_size; /* FIFO size */
Jaroslav Kyselae5463722010-05-11 10:21:46 +0200346 unsigned long start_wallclk; /* start + minimum wallclk */
347 unsigned long period_wallclk; /* wallclk for period */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Takashi Iwaid01ce992007-07-27 16:52:19 +0200349 void __iomem *sd_addr; /* stream descriptor pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Takashi Iwaid01ce992007-07-27 16:52:19 +0200351 u32 sd_int_sta_mask; /* stream int status mask */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /* pcm support */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200354 struct snd_pcm_substream *substream; /* assigned substream,
355 * set in PCM open
356 */
357 unsigned int format_val; /* format value to be set in the
358 * controller and the codec
359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 unsigned char stream_tag; /* assigned stream */
361 unsigned char index; /* stream index */
Wu Fengguangef18bed2009-12-25 13:14:27 +0800362 int device; /* last device number assigned to */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Pavel Machek927fc862006-08-31 17:03:43 +0200364 unsigned int opened :1;
365 unsigned int running :1;
Takashi Iwai675f25d2008-06-10 17:53:20 +0200366 unsigned int irq_pending :1;
Joseph Chan0e153472008-08-26 14:38:03 +0200367 /*
368 * For VIA:
369 * A flag to ensure DMA position is 0
370 * when link position is not greater than FIFO size
371 */
372 unsigned int insufficient :1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373};
374
375/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100376struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 u32 *buf; /* CORB/RIRB buffer
378 * Each CORB entry is 4byte, RIRB is 8byte
379 */
380 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
381 /* for RIRB */
382 unsigned short rp, wp; /* read/write pointers */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800383 int cmds[AZX_MAX_CODECS]; /* number of pending requests */
384 u32 res[AZX_MAX_CODECS]; /* last read value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
386
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100387struct azx {
388 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 struct pci_dev *pci;
Takashi Iwai555e2192008-06-10 17:53:34 +0200390 int dev_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200392 /* chip type specific */
393 int driver_type;
394 int playback_streams;
395 int playback_index_offset;
396 int capture_streams;
397 int capture_index_offset;
398 int num_streams;
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /* pci resources */
401 unsigned long addr;
402 void __iomem *remap_addr;
403 int irq;
404
405 /* locks */
406 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100407 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200409 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100410 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* PCM */
Takashi Iwaic8936222010-01-28 17:08:53 +0100413 struct snd_pcm *pcm[HDA_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 /* HD codec */
416 unsigned short codec_mask;
Takashi Iwaif1eaaee2009-02-13 08:16:55 +0100417 int codec_probe_mask; /* copied from probe_mask option */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 struct hda_bus *bus;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +0100419 unsigned int beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100422 struct azx_rb corb;
423 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Takashi Iwai4ce107b2008-02-06 14:50:19 +0100425 /* CORB/RIRB and position buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 struct snd_dma_buffer rb;
427 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200428
429 /* flags */
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +0200430 int position_fix[2]; /* for both playback/capture streams */
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200431 int poll_count;
Takashi Iwaicb53c622007-08-10 17:21:45 +0200432 unsigned int running :1;
Pavel Machek927fc862006-08-31 17:03:43 +0200433 unsigned int initialized :1;
434 unsigned int single_cmd :1;
435 unsigned int polling_mode :1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200436 unsigned int msi :1;
Takashi Iwaia6a950a2008-06-10 17:53:35 +0200437 unsigned int irq_pending_warned :1;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100438 unsigned int probing :1; /* codec probing phase */
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200439
440 /* for debugging */
Wu Fengguangfeb27342009-08-01 19:17:14 +0800441 unsigned int last_cmd[AZX_MAX_CODECS];
Takashi Iwai9ad593f2008-05-16 12:34:47 +0200442
443 /* for pending irqs */
444 struct work_struct irq_pending_work;
Takashi Iwai0cbf0092008-10-29 16:18:25 +0100445
446 /* reboot notifier (for mysterious hangup problem at power-down) */
447 struct notifier_block reboot_notifier;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448};
449
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200450/* driver types */
451enum {
452 AZX_DRIVER_ICH,
Seth Heasley32679f92010-02-22 17:31:09 -0800453 AZX_DRIVER_PCH,
Tobin Davis4979bca2008-01-30 08:13:55 +0100454 AZX_DRIVER_SCH,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200455 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200456 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200457 AZX_DRIVER_VIA,
458 AZX_DRIVER_SIS,
459 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200460 AZX_DRIVER_NVIDIA,
Kailang Yangf2690022008-05-27 11:44:55 +0200461 AZX_DRIVER_TERA,
Takashi Iwai14d34f12010-10-21 09:03:25 +0200462 AZX_DRIVER_CTX,
Yang, Libinc4da29c2008-11-13 11:07:07 +0100463 AZX_DRIVER_GENERIC,
Takashi Iwai2f5983f2008-09-03 16:00:44 +0200464 AZX_NUM_DRIVERS, /* keep this as last entry */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200465};
466
467static char *driver_short_names[] __devinitdata = {
468 [AZX_DRIVER_ICH] = "HDA Intel",
Seth Heasley32679f92010-02-22 17:31:09 -0800469 [AZX_DRIVER_PCH] = "HDA Intel PCH",
Tobin Davis4979bca2008-01-30 08:13:55 +0100470 [AZX_DRIVER_SCH] = "HDA Intel MID",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200471 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200472 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200473 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
474 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200475 [AZX_DRIVER_ULI] = "HDA ULI M5461",
476 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Kailang Yangf2690022008-05-27 11:44:55 +0200477 [AZX_DRIVER_TERA] = "HDA Teradici",
Takashi Iwai14d34f12010-10-21 09:03:25 +0200478 [AZX_DRIVER_CTX] = "HDA Creative",
Yang, Libinc4da29c2008-11-13 11:07:07 +0100479 [AZX_DRIVER_GENERIC] = "HD-Audio Generic",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200480};
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482/*
483 * macros for easy use
484 */
485#define azx_writel(chip,reg,value) \
486 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
487#define azx_readl(chip,reg) \
488 readl((chip)->remap_addr + ICH6_REG_##reg)
489#define azx_writew(chip,reg,value) \
490 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
491#define azx_readw(chip,reg) \
492 readw((chip)->remap_addr + ICH6_REG_##reg)
493#define azx_writeb(chip,reg,value) \
494 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
495#define azx_readb(chip,reg) \
496 readb((chip)->remap_addr + ICH6_REG_##reg)
497
498#define azx_sd_writel(dev,reg,value) \
499 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
500#define azx_sd_readl(dev,reg) \
501 readl((dev)->sd_addr + ICH6_REG_##reg)
502#define azx_sd_writew(dev,reg,value) \
503 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
504#define azx_sd_readw(dev,reg) \
505 readw((dev)->sd_addr + ICH6_REG_##reg)
506#define azx_sd_writeb(dev,reg,value) \
507 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
508#define azx_sd_readb(dev,reg) \
509 readb((dev)->sd_addr + ICH6_REG_##reg)
510
511/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100512#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200514static int azx_acquire_irq(struct azx *chip, int do_disconnect);
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200515static int azx_send_cmd(struct hda_bus *bus, unsigned int val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516/*
517 * Interface for HD codec
518 */
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*
521 * CORB / RIRB interface
522 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100523static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 int err;
526
527 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200528 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
529 snd_dma_pci_data(chip->pci),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 PAGE_SIZE, &chip->rb);
531 if (err < 0) {
532 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
533 return err;
534 }
535 return 0;
536}
537
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100538static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800540 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 /* CORB set up */
542 chip->corb.addr = chip->rb.addr;
543 chip->corb.buf = (u32 *)chip->rb.area;
544 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200545 azx_writel(chip, CORBUBASE, upper_32_bits(chip->corb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200547 /* set the corb size to 256 entries (ULI requires explicitly) */
548 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 /* set the corb write pointer to 0 */
550 azx_writew(chip, CORBWP, 0);
551 /* reset the corb hw read pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200552 azx_writew(chip, CORBRP, ICH6_CORBRP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* enable corb dma */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200554 azx_writeb(chip, CORBCTL, ICH6_CORBCTL_RUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556 /* RIRB set up */
557 chip->rirb.addr = chip->rb.addr + 2048;
558 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800559 chip->rirb.wp = chip->rirb.rp = 0;
560 memset(chip->rirb.cmds, 0, sizeof(chip->rirb.cmds));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +0200562 azx_writel(chip, RIRBUBASE, upper_32_bits(chip->rirb.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200564 /* set the rirb size to 256 entries (ULI requires explicitly) */
565 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /* reset the rirb hw write pointer */
Takashi Iwaib21fadb2009-05-28 12:26:15 +0200567 azx_writew(chip, RIRBWP, ICH6_RIRBWP_RST);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 /* set N=1, get RIRB response interrupt for new entry */
Takashi Iwai14d34f12010-10-21 09:03:25 +0200569 if (chip->driver_type == AZX_DRIVER_CTX)
570 azx_writew(chip, RINTCNT, 0xc0);
571 else
572 azx_writew(chip, RINTCNT, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800575 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100578static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800580 spin_lock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 /* disable ringbuffer DMAs */
582 azx_writeb(chip, RIRBCTL, 0);
583 azx_writeb(chip, CORBCTL, 0);
Wu Fengguangcdb1fbf2009-08-01 18:47:41 +0800584 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
Wu Fengguangdeadff12009-08-01 18:45:16 +0800587static unsigned int azx_command_addr(u32 cmd)
588{
589 unsigned int addr = cmd >> 28;
590
591 if (addr >= AZX_MAX_CODECS) {
592 snd_BUG();
593 addr = 0;
594 }
595
596 return addr;
597}
598
599static unsigned int azx_response_addr(u32 res)
600{
601 unsigned int addr = res & 0xf;
602
603 if (addr >= AZX_MAX_CODECS) {
604 snd_BUG();
605 addr = 0;
606 }
607
608 return addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
610
611/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100612static int azx_corb_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100614 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800615 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 unsigned int wp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
Wu Fengguangc32649f2009-08-01 18:48:12 +0800618 spin_lock_irq(&chip->reg_lock);
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 /* add command to corb */
621 wp = azx_readb(chip, CORBWP);
622 wp++;
623 wp %= ICH6_MAX_CORB_ENTRIES;
624
Wu Fengguangdeadff12009-08-01 18:45:16 +0800625 chip->rirb.cmds[addr]++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 chip->corb.buf[wp] = cpu_to_le32(val);
627 azx_writel(chip, CORBWP, wp);
Wu Fengguangc32649f2009-08-01 18:48:12 +0800628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 spin_unlock_irq(&chip->reg_lock);
630
631 return 0;
632}
633
634#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
635
636/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100637static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
639 unsigned int rp, wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800640 unsigned int addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 u32 res, res_ex;
642
643 wp = azx_readb(chip, RIRBWP);
644 if (wp == chip->rirb.wp)
645 return;
646 chip->rirb.wp = wp;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 while (chip->rirb.rp != wp) {
649 chip->rirb.rp++;
650 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
651
652 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
653 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
654 res = le32_to_cpu(chip->rirb.buf[rp]);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800655 addr = azx_response_addr(res_ex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
657 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800658 else if (chip->rirb.cmds[addr]) {
659 chip->rirb.res[addr] = res;
Takashi Iwai2add9b92008-03-18 09:47:06 +0100660 smp_wmb();
Wu Fengguangdeadff12009-08-01 18:45:16 +0800661 chip->rirb.cmds[addr]--;
Wu Fengguange310bb02009-08-01 19:18:45 +0800662 } else
663 snd_printk(KERN_ERR SFX "spurious response %#x:%#x, "
664 "last cmd=%#08x\n",
665 res, res_ex,
666 chip->last_cmd[addr]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 }
668}
669
670/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800671static unsigned int azx_rirb_get_response(struct hda_bus *bus,
672 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100674 struct azx *chip = bus->private_data;
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200675 unsigned long timeout;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200676 int do_poll = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200678 again:
679 timeout = jiffies + msecs_to_jiffies(1000);
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100680 for (;;) {
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200681 if (chip->polling_mode || do_poll) {
Takashi Iwaie96224a2006-08-21 17:57:44 +0200682 spin_lock_irq(&chip->reg_lock);
683 azx_update_rirb(chip);
684 spin_unlock_irq(&chip->reg_lock);
685 }
Wu Fengguangdeadff12009-08-01 18:45:16 +0800686 if (!chip->rirb.cmds[addr]) {
Takashi Iwai2add9b92008-03-18 09:47:06 +0100687 smp_rmb();
Takashi Iwaib6132912009-03-24 07:36:09 +0100688 bus->rirb_error = 0;
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200689
690 if (!do_poll)
691 chip->poll_count = 0;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800692 return chip->rirb.res[addr]; /* the last value */
Takashi Iwai2add9b92008-03-18 09:47:06 +0100693 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100694 if (time_after(jiffies, timeout))
695 break;
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100696 if (bus->needs_damn_long_delay)
Takashi Iwai52987652008-01-16 16:09:47 +0100697 msleep(2); /* temporary workaround */
698 else {
699 udelay(10);
700 cond_resched();
701 }
Takashi Iwai28a0d9d2008-01-18 15:32:32 +0100702 }
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200703
Maxim Levitsky1eb6dc72010-02-04 22:21:47 +0200704 if (!chip->polling_mode && chip->poll_count < 2) {
705 snd_printdd(SFX "azx_get_response timeout, "
706 "polling the codec once: last cmd=0x%08x\n",
707 chip->last_cmd[addr]);
708 do_poll = 1;
709 chip->poll_count++;
710 goto again;
711 }
712
713
Takashi Iwai23c4a882009-10-30 13:21:49 +0100714 if (!chip->polling_mode) {
715 snd_printk(KERN_WARNING SFX "azx_get_response timeout, "
716 "switching to polling mode: last cmd=0x%08x\n",
717 chip->last_cmd[addr]);
718 chip->polling_mode = 1;
719 goto again;
720 }
721
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200722 if (chip->msi) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200723 snd_printk(KERN_WARNING SFX "No response from codec, "
Wu Fengguangfeb27342009-08-01 19:17:14 +0800724 "disabling MSI: last cmd=0x%08x\n",
725 chip->last_cmd[addr]);
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200726 free_irq(chip->irq, chip);
727 chip->irq = -1;
728 pci_disable_msi(chip->pci);
729 chip->msi = 0;
Takashi Iwaib6132912009-03-24 07:36:09 +0100730 if (azx_acquire_irq(chip, 1) < 0) {
731 bus->rirb_error = 1;
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200732 return -1;
Takashi Iwaib6132912009-03-24 07:36:09 +0100733 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +0200734 goto again;
735 }
736
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +0100737 if (chip->probing) {
738 /* If this critical timeout happens during the codec probing
739 * phase, this is likely an access to a non-existing codec
740 * slot. Better to return an error and reset the system.
741 */
742 return -1;
743 }
744
Takashi Iwai8dd78332009-06-02 01:16:07 +0200745 /* a fatal communication error; need either to reset or to fallback
746 * to the single_cmd mode
747 */
Takashi Iwaib6132912009-03-24 07:36:09 +0100748 bus->rirb_error = 1;
Takashi Iwaib20f3b82009-06-02 01:20:22 +0200749 if (bus->allow_bus_reset && !bus->response_reset && !bus->in_reset) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200750 bus->response_reset = 1;
751 return -1; /* give a chance to retry */
752 }
753
754 snd_printk(KERN_ERR "hda_intel: azx_get_response timeout, "
755 "switching to single_cmd mode: last cmd=0x%08x\n",
Wu Fengguangfeb27342009-08-01 19:17:14 +0800756 chip->last_cmd[addr]);
Takashi Iwai8dd78332009-06-02 01:16:07 +0200757 chip->single_cmd = 1;
758 bus->response_reset = 0;
Takashi Iwai1a696972009-11-07 09:49:04 +0100759 /* release CORB/RIRB */
Takashi Iwai4fcd3922009-05-25 18:34:52 +0200760 azx_free_cmd_io(chip);
Takashi Iwai1a696972009-11-07 09:49:04 +0100761 /* disable unsolicited responses */
762 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL);
Takashi Iwai5c79b1f2006-09-21 13:34:13 +0200763 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/*
767 * Use the single immediate command instead of CORB/RIRB for simplicity
768 *
769 * Note: according to Intel, this is not preferred use. The command was
770 * intended for the BIOS only, and may get confused with unsolicited
771 * responses. So, we shouldn't use it for normal operation from the
772 * driver.
773 * I left the codes, however, for debugging/testing purposes.
774 */
775
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200776/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800777static int azx_single_wait_for_response(struct azx *chip, unsigned int addr)
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200778{
779 int timeout = 50;
780
781 while (timeout--) {
782 /* check IRV busy bit */
783 if (azx_readw(chip, IRS) & ICH6_IRS_VALID) {
784 /* reuse rirb.res as the response return value */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800785 chip->rirb.res[addr] = azx_readl(chip, IR);
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200786 return 0;
787 }
788 udelay(1);
789 }
790 if (printk_ratelimit())
791 snd_printd(SFX "get_response timeout: IRS=0x%x\n",
792 azx_readw(chip, IRS));
Wu Fengguangdeadff12009-08-01 18:45:16 +0800793 chip->rirb.res[addr] = -1;
Takashi Iwaib05a7d42009-05-28 11:59:12 +0200794 return -EIO;
795}
796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100798static int azx_single_send_cmd(struct hda_bus *bus, u32 val)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100800 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800801 unsigned int addr = azx_command_addr(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 int timeout = 50;
803
Takashi Iwai8dd78332009-06-02 01:16:07 +0200804 bus->rirb_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 while (timeout--) {
806 /* check ICB busy bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200807 if (!((azx_readw(chip, IRS) & ICH6_IRS_BUSY))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /* Clear IRV valid bit */
Takashi Iwaid01ce992007-07-27 16:52:19 +0200809 azx_writew(chip, IRS, azx_readw(chip, IRS) |
810 ICH6_IRS_VALID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 azx_writel(chip, IC, val);
Takashi Iwaid01ce992007-07-27 16:52:19 +0200812 azx_writew(chip, IRS, azx_readw(chip, IRS) |
813 ICH6_IRS_BUSY);
Wu Fengguangdeadff12009-08-01 18:45:16 +0800814 return azx_single_wait_for_response(chip, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816 udelay(1);
817 }
Marc Boucher1cfd52b2008-01-22 15:29:26 +0100818 if (printk_ratelimit())
819 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n",
820 azx_readw(chip, IRS), val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return -EIO;
822}
823
824/* receive a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800825static unsigned int azx_single_get_response(struct hda_bus *bus,
826 unsigned int addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100828 struct azx *chip = bus->private_data;
Wu Fengguangdeadff12009-08-01 18:45:16 +0800829 return chip->rirb.res[addr];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830}
831
Takashi Iwai111d3af2006-02-16 18:17:58 +0100832/*
833 * The below are the main callbacks from hda_codec.
834 *
835 * They are just the skeleton to call sub-callbacks according to the
836 * current setting of chip->single_cmd.
837 */
838
839/* send a command */
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100840static int azx_send_cmd(struct hda_bus *bus, unsigned int val)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100841{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100842 struct azx *chip = bus->private_data;
Takashi Iwai43bbb6c2007-07-06 20:22:05 +0200843
Wu Fengguangfeb27342009-08-01 19:17:14 +0800844 chip->last_cmd[azx_command_addr(val)] = val;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100845 if (chip->single_cmd)
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100846 return azx_single_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100847 else
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100848 return azx_corb_send_cmd(bus, val);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100849}
850
851/* get a response */
Wu Fengguangdeadff12009-08-01 18:45:16 +0800852static unsigned int azx_get_response(struct hda_bus *bus,
853 unsigned int addr)
Takashi Iwai111d3af2006-02-16 18:17:58 +0100854{
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100855 struct azx *chip = bus->private_data;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100856 if (chip->single_cmd)
Wu Fengguangdeadff12009-08-01 18:45:16 +0800857 return azx_single_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100858 else
Wu Fengguangdeadff12009-08-01 18:45:16 +0800859 return azx_rirb_get_response(bus, addr);
Takashi Iwai111d3af2006-02-16 18:17:58 +0100860}
861
Takashi Iwaicb53c622007-08-10 17:21:45 +0200862#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100863static void azx_power_notify(struct hda_bus *bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +0200864#endif
Takashi Iwai111d3af2006-02-16 18:17:58 +0100865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866/* reset codec link */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100867static int azx_reset(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
869 int count;
870
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100871 if (!full_reset)
872 goto __skip;
873
Danny Tholene8a7f132007-09-11 21:41:56 +0200874 /* clear STATESTS */
875 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /* reset controller */
878 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
879
880 count = 50;
881 while (azx_readb(chip, GCTL) && --count)
882 msleep(1);
883
884 /* delay for >= 100us for codec PLL to settle per spec
885 * Rev 0.9 section 5.5.1
886 */
887 msleep(1);
888
889 /* Bring controller out of reset */
890 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
891
892 count = 50;
Pavel Machek927fc862006-08-31 17:03:43 +0200893 while (!azx_readb(chip, GCTL) && --count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 msleep(1);
895
Pavel Machek927fc862006-08-31 17:03:43 +0200896 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 msleep(1);
898
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +0100899 __skip:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /* check to see if controller is ready */
Pavel Machek927fc862006-08-31 17:03:43 +0200901 if (!azx_readb(chip, GCTL)) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200902 snd_printd(SFX "azx_reset: controller not ready!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return -EBUSY;
904 }
905
Matt41e2fce2005-07-04 17:49:55 +0200906 /* Accept unsolicited responses */
Takashi Iwai1a696972009-11-07 09:49:04 +0100907 if (!chip->single_cmd)
908 azx_writel(chip, GCTL, azx_readl(chip, GCTL) |
909 ICH6_GCTL_UNSOL);
Matt41e2fce2005-07-04 17:49:55 +0200910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* detect codecs */
Pavel Machek927fc862006-08-31 17:03:43 +0200912 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 chip->codec_mask = azx_readw(chip, STATESTS);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +0200914 snd_printdd(SFX "codec_mask = 0x%x\n", chip->codec_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 }
916
917 return 0;
918}
919
920
921/*
922 * Lowlevel interface
923 */
924
925/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100926static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 /* enable controller CIE and GIE */
929 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
930 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
931}
932
933/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100934static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935{
936 int i;
937
938 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200939 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100940 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 azx_sd_writeb(azx_dev, SD_CTL,
942 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
943 }
944
945 /* disable SIE for all streams */
946 azx_writeb(chip, INTCTL, 0);
947
948 /* disable controller CIE and GIE */
949 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
950 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
951}
952
953/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100954static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
956 int i;
957
958 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200959 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100960 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
962 }
963
964 /* clear STATESTS */
965 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
966
967 /* clear rirb status */
968 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
969
970 /* clear int status */
971 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
972}
973
974/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100975static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976{
Joseph Chan0e153472008-08-26 14:38:03 +0200977 /*
978 * Before stream start, initialize parameter
979 */
980 azx_dev->insufficient = 1;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /* enable SIE */
Wei Niccc5df02010-01-26 15:59:33 +0800983 azx_writel(chip, INTCTL,
984 azx_readl(chip, INTCTL) | (1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /* set DMA start and interrupt mask */
986 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
987 SD_CTL_DMA_START | SD_INT_MASK);
988}
989
Takashi Iwai1dddab42009-03-18 15:15:37 +0100990/* stop DMA */
991static void azx_stream_clear(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
994 ~(SD_CTL_DMA_START | SD_INT_MASK));
995 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
Takashi Iwai1dddab42009-03-18 15:15:37 +0100996}
997
998/* stop a stream */
999static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
1000{
1001 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /* disable SIE */
Wei Niccc5df02010-01-26 15:59:33 +08001003 azx_writel(chip, INTCTL,
1004 azx_readl(chip, INTCTL) & ~(1 << azx_dev->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
1007
1008/*
Takashi Iwaicb53c622007-08-10 17:21:45 +02001009 * reset and start the controller registers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001011static void azx_init_chip(struct azx *chip, int full_reset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Takashi Iwaicb53c622007-08-10 17:21:45 +02001013 if (chip->initialized)
1014 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 /* reset controller */
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001017 azx_reset(chip, full_reset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 /* initialize interrupts */
1020 azx_int_clear(chip);
1021 azx_int_enable(chip);
1022
1023 /* initialize the codec command I/O */
Takashi Iwai1a696972009-11-07 09:49:04 +01001024 if (!chip->single_cmd)
1025 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001027 /* program the position buffer */
1028 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001029 azx_writel(chip, DPUBASE, upper_32_bits(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +02001030
Takashi Iwaicb53c622007-08-10 17:21:45 +02001031 chip->initialized = 1;
1032}
1033
1034/*
1035 * initialize the PCI registers
1036 */
1037/* update bits in a PCI register byte */
1038static void update_pci_byte(struct pci_dev *pci, unsigned int reg,
1039 unsigned char mask, unsigned char val)
1040{
1041 unsigned char data;
1042
1043 pci_read_config_byte(pci, reg, &data);
1044 data &= ~mask;
1045 data |= (val & mask);
1046 pci_write_config_byte(pci, reg, data);
1047}
1048
1049static void azx_init_pci(struct azx *chip)
1050{
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001051 unsigned short snoop;
1052
Takashi Iwaicb53c622007-08-10 17:21:45 +02001053 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
1054 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
1055 * Ensuring these bits are 0 clears playback static on some HD Audio
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001056 * codecs.
1057 * The PCI register TCSEL is defined in the Intel manuals.
Takashi Iwaicb53c622007-08-10 17:21:45 +02001058 */
Adam Lackorzynskia09e89f2011-03-10 17:41:56 +01001059 if (chip->driver_type != AZX_DRIVER_ATI &&
1060 chip->driver_type != AZX_DRIVER_ATIHDMI)
1061 update_pci_byte(chip->pci, ICH6_PCIREG_TCSEL, 0x07, 0);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001062
Vinod Gda3fca22005-09-13 18:49:12 +02001063 switch (chip->driver_type) {
1064 case AZX_DRIVER_ATI:
1065 /* For ATI SB450 azalia HD audio, we need to enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +02001066 update_pci_byte(chip->pci,
1067 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
1068 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP);
Vinod Gda3fca22005-09-13 18:49:12 +02001069 break;
1070 case AZX_DRIVER_NVIDIA:
1071 /* For NVIDIA HDA, enable snoop */
Takashi Iwaicb53c622007-08-10 17:21:45 +02001072 update_pci_byte(chip->pci,
1073 NVIDIA_HDA_TRANSREG_ADDR,
1074 0x0f, NVIDIA_HDA_ENABLE_COHBITS);
Peer Chen320dcc32008-08-20 16:43:24 -07001075 update_pci_byte(chip->pci,
1076 NVIDIA_HDA_ISTRM_COH,
1077 0x01, NVIDIA_HDA_ENABLE_COHBIT);
1078 update_pci_byte(chip->pci,
1079 NVIDIA_HDA_OSTRM_COH,
1080 0x01, NVIDIA_HDA_ENABLE_COHBIT);
Vinod Gda3fca22005-09-13 18:49:12 +02001081 break;
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001082 case AZX_DRIVER_SCH:
Seth Heasley32679f92010-02-22 17:31:09 -08001083 case AZX_DRIVER_PCH:
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001084 pci_read_config_word(chip->pci, INTEL_SCH_HDA_DEVC, &snoop);
1085 if (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001086 pci_write_config_word(chip->pci, INTEL_SCH_HDA_DEVC,
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001087 snoop & (~INTEL_SCH_HDA_DEVC_NOSNOOP));
1088 pci_read_config_word(chip->pci,
1089 INTEL_SCH_HDA_DEVC, &snoop);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001090 snd_printdd(SFX "HDA snoop disabled, enabling ... %s\n",
1091 (snoop & INTEL_SCH_HDA_DEVC_NOSNOOP)
Takashi Iwai90a5ad52008-02-22 18:36:22 +01001092 ? "Failed" : "OK");
1093 }
1094 break;
1095
Vinod Gda3fca22005-09-13 18:49:12 +02001096 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
1098
1099
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001100static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102/*
1103 * interrupt handler
1104 */
David Howells7d12e782006-10-05 14:55:46 +01001105static irqreturn_t azx_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001107 struct azx *chip = dev_id;
1108 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 u32 status;
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001110 u8 sd_status;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001111 int i, ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 spin_lock(&chip->reg_lock);
1114
1115 status = azx_readl(chip, INTSTS);
1116 if (status == 0) {
1117 spin_unlock(&chip->reg_lock);
1118 return IRQ_NONE;
1119 }
1120
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001121 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 azx_dev = &chip->azx_dev[i];
1123 if (status & azx_dev->sd_int_sta_mask) {
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001124 sd_status = azx_sd_readb(azx_dev, SD_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
Clemens Ladisch9ef04062010-05-25 09:03:40 +02001126 if (!azx_dev->substream || !azx_dev->running ||
1127 !(sd_status & SD_INT_COMPLETE))
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001128 continue;
1129 /* check whether this IRQ is really acceptable */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001130 ok = azx_position_ok(chip, azx_dev);
1131 if (ok == 1) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001132 azx_dev->irq_pending = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 spin_unlock(&chip->reg_lock);
1134 snd_pcm_period_elapsed(azx_dev->substream);
1135 spin_lock(&chip->reg_lock);
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001136 } else if (ok == 0 && chip->bus && chip->bus->workq) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001137 /* bogus IRQ, process it later */
1138 azx_dev->irq_pending = 1;
Takashi Iwai6acaed32009-01-12 10:09:24 +01001139 queue_work(chip->bus->workq,
1140 &chip->irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
1142 }
1143 }
1144
1145 /* clear rirb int */
1146 status = azx_readb(chip, RIRBSTS);
1147 if (status & RIRB_INT_MASK) {
Takashi Iwai14d34f12010-10-21 09:03:25 +02001148 if (status & RIRB_INT_RESPONSE) {
1149 if (chip->driver_type == AZX_DRIVER_CTX)
1150 udelay(80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 azx_update_rirb(chip);
Takashi Iwai14d34f12010-10-21 09:03:25 +02001152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
1154 }
1155
1156#if 0
1157 /* clear state status int */
1158 if (azx_readb(chip, STATESTS) & 0x04)
1159 azx_writeb(chip, STATESTS, 0x04);
1160#endif
1161 spin_unlock(&chip->reg_lock);
1162
1163 return IRQ_HANDLED;
1164}
1165
1166
1167/*
Takashi Iwai675f25d2008-06-10 17:53:20 +02001168 * set up a BDL entry
1169 */
1170static int setup_bdle(struct snd_pcm_substream *substream,
1171 struct azx_dev *azx_dev, u32 **bdlp,
1172 int ofs, int size, int with_ioc)
1173{
Takashi Iwai675f25d2008-06-10 17:53:20 +02001174 u32 *bdl = *bdlp;
1175
1176 while (size > 0) {
1177 dma_addr_t addr;
1178 int chunk;
1179
1180 if (azx_dev->frags >= AZX_MAX_BDL_ENTRIES)
1181 return -EINVAL;
1182
Takashi Iwai77a23f22008-08-21 13:00:13 +02001183 addr = snd_pcm_sgbuf_get_addr(substream, ofs);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001184 /* program the address field of the BDL entry */
1185 bdl[0] = cpu_to_le32((u32)addr);
Takashi Iwai766979e2008-06-13 20:53:56 +02001186 bdl[1] = cpu_to_le32(upper_32_bits(addr));
Takashi Iwai675f25d2008-06-10 17:53:20 +02001187 /* program the size field of the BDL entry */
Takashi Iwaifc4abee2008-07-30 15:13:34 +02001188 chunk = snd_pcm_sgbuf_get_chunk_size(substream, ofs, size);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001189 bdl[2] = cpu_to_le32(chunk);
1190 /* program the IOC to enable interrupt
1191 * only when the whole fragment is processed
1192 */
1193 size -= chunk;
1194 bdl[3] = (size || !with_ioc) ? 0 : cpu_to_le32(0x01);
1195 bdl += 4;
1196 azx_dev->frags++;
1197 ofs += chunk;
1198 }
1199 *bdlp = bdl;
1200 return ofs;
1201}
1202
1203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 * set up BDL entries
1205 */
Takashi Iwai555e2192008-06-10 17:53:34 +02001206static int azx_setup_periods(struct azx *chip,
1207 struct snd_pcm_substream *substream,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001208 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001210 u32 *bdl;
1211 int i, ofs, periods, period_bytes;
Takashi Iwai555e2192008-06-10 17:53:34 +02001212 int pos_adj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 /* reset BDL address */
1215 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1216 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1217
Takashi Iwai97b71c92009-03-18 15:09:13 +01001218 period_bytes = azx_dev->period_bytes;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001219 periods = azx_dev->bufsize / period_bytes;
1220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /* program the initial BDL entries */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001222 bdl = (u32 *)azx_dev->bdl.area;
1223 ofs = 0;
1224 azx_dev->frags = 0;
Takashi Iwai555e2192008-06-10 17:53:34 +02001225 pos_adj = bdl_pos_adj[chip->dev_index];
1226 if (pos_adj > 0) {
Takashi Iwai675f25d2008-06-10 17:53:20 +02001227 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001228 int pos_align = pos_adj;
Takashi Iwai555e2192008-06-10 17:53:34 +02001229 pos_adj = (pos_adj * runtime->rate + 47999) / 48000;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001230 if (!pos_adj)
Takashi Iwaie785d3d2008-07-15 16:28:43 +02001231 pos_adj = pos_align;
1232 else
1233 pos_adj = ((pos_adj + pos_align - 1) / pos_align) *
1234 pos_align;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001235 pos_adj = frames_to_bytes(runtime, pos_adj);
1236 if (pos_adj >= period_bytes) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001237 snd_printk(KERN_WARNING SFX "Too big adjustment %d\n",
Takashi Iwai555e2192008-06-10 17:53:34 +02001238 bdl_pos_adj[chip->dev_index]);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001239 pos_adj = 0;
1240 } else {
1241 ofs = setup_bdle(substream, azx_dev,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001242 &bdl, ofs, pos_adj,
1243 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001244 if (ofs < 0)
1245 goto error;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001246 }
Takashi Iwai555e2192008-06-10 17:53:34 +02001247 } else
1248 pos_adj = 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001249 for (i = 0; i < periods; i++) {
1250 if (i == periods - 1 && pos_adj)
1251 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
1252 period_bytes - pos_adj, 0);
1253 else
1254 ofs = setup_bdle(substream, azx_dev, &bdl, ofs,
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001255 period_bytes,
1256 !substream->runtime->no_period_wakeup);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001257 if (ofs < 0)
1258 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 }
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001260 return 0;
Takashi Iwai675f25d2008-06-10 17:53:20 +02001261
1262 error:
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001263 snd_printk(KERN_ERR SFX "Too many BDL entries: buffer=%d, period=%d\n",
Takashi Iwai675f25d2008-06-10 17:53:20 +02001264 azx_dev->bufsize, period_bytes);
Takashi Iwai675f25d2008-06-10 17:53:20 +02001265 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266}
1267
Takashi Iwai1dddab42009-03-18 15:15:37 +01001268/* reset stream */
1269static void azx_stream_reset(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
1271 unsigned char val;
1272 int timeout;
1273
Takashi Iwai1dddab42009-03-18 15:15:37 +01001274 azx_stream_clear(chip, azx_dev);
1275
Takashi Iwaid01ce992007-07-27 16:52:19 +02001276 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
1277 SD_CTL_STREAM_RESET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 udelay(3);
1279 timeout = 300;
1280 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1281 --timeout)
1282 ;
1283 val &= ~SD_CTL_STREAM_RESET;
1284 azx_sd_writeb(azx_dev, SD_CTL, val);
1285 udelay(3);
1286
1287 timeout = 300;
1288 /* waiting for hardware to report that the stream is out of reset */
1289 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
1290 --timeout)
1291 ;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001292
1293 /* reset first position - may not be synced with hw at this time */
1294 *azx_dev->posbuf = 0;
Takashi Iwai1dddab42009-03-18 15:15:37 +01001295}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Takashi Iwai1dddab42009-03-18 15:15:37 +01001297/*
1298 * set up the SD for streaming
1299 */
1300static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
1301{
1302 /* make sure the run bit is zero for SD */
1303 azx_stream_clear(chip, azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /* program the stream_tag */
1305 azx_sd_writel(azx_dev, SD_CTL,
Takashi Iwaid01ce992007-07-27 16:52:19 +02001306 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK)|
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
1308
1309 /* program the length of samples in cyclic buffer */
1310 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
1311
1312 /* program the stream format */
1313 /* this value needs to be the same as the one programmed */
1314 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
1315
1316 /* program the stream LVI (last valid index) of the BDL */
1317 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
1318
1319 /* program the BDL address */
1320 /* lower BDL address */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01001321 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl.addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 /* upper BDL address */
Takashi Iwai766979e2008-06-13 20:53:56 +02001323 azx_sd_writel(azx_dev, SD_BDLPU, upper_32_bits(azx_dev->bdl.addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001325 /* enable the position buffer */
David Henningsson4cb36312010-09-30 10:12:50 +02001326 if (chip->position_fix[0] != POS_FIX_LPIB ||
1327 chip->position_fix[1] != POS_FIX_LPIB) {
Takashi Iwaiee9d6b92008-03-14 15:52:20 +01001328 if (!(azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
1329 azx_writel(chip, DPLBASE,
1330 (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
1331 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 /* set the interrupt enable bits in the descriptor control register */
Takashi Iwaid01ce992007-07-27 16:52:19 +02001334 azx_sd_writel(azx_dev, SD_CTL,
1335 azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 return 0;
1338}
1339
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001340/*
1341 * Probe the given codec address
1342 */
1343static int probe_codec(struct azx *chip, int addr)
1344{
1345 unsigned int cmd = (addr << 28) | (AC_NODE_ROOT << 20) |
1346 (AC_VERB_PARAMETERS << 8) | AC_PAR_VENDOR_ID;
1347 unsigned int res;
1348
Wu Fengguanga678cde2009-08-01 18:46:46 +08001349 mutex_lock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001350 chip->probing = 1;
1351 azx_send_cmd(chip->bus, cmd);
Wu Fengguangdeadff12009-08-01 18:45:16 +08001352 res = azx_get_response(chip->bus, addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001353 chip->probing = 0;
Wu Fengguanga678cde2009-08-01 18:46:46 +08001354 mutex_unlock(&chip->bus->cmd_mutex);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001355 if (res == -1)
1356 return -EIO;
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001357 snd_printdd(SFX "codec #%d probed OK\n", addr);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001358 return 0;
1359}
1360
Takashi Iwai33fa35e2008-11-06 16:50:40 +01001361static int azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
1362 struct hda_pcm *cpcm);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001363static void azx_stop_chip(struct azx *chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Takashi Iwai8dd78332009-06-02 01:16:07 +02001365static void azx_bus_reset(struct hda_bus *bus)
1366{
1367 struct azx *chip = bus->private_data;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001368
1369 bus->in_reset = 1;
1370 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001371 azx_init_chip(chip, 1);
Alexander Beregalov65f75982009-06-04 13:46:16 +04001372#ifdef CONFIG_PM
Takashi Iwai8dd78332009-06-02 01:16:07 +02001373 if (chip->initialized) {
Alexander Beregalov65f75982009-06-04 13:46:16 +04001374 int i;
1375
Takashi Iwaic8936222010-01-28 17:08:53 +01001376 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai8dd78332009-06-02 01:16:07 +02001377 snd_pcm_suspend_all(chip->pcm[i]);
1378 snd_hda_suspend(chip->bus);
1379 snd_hda_resume(chip->bus);
1380 }
Alexander Beregalov65f75982009-06-04 13:46:16 +04001381#endif
Takashi Iwai8dd78332009-06-02 01:16:07 +02001382 bus->in_reset = 0;
1383}
1384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385/*
1386 * Codec initialization
1387 */
1388
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001389/* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1390static unsigned int azx_max_codecs[AZX_NUM_DRIVERS] __devinitdata = {
Wei Ni7445dfc2010-03-03 15:05:53 +08001391 [AZX_DRIVER_NVIDIA] = 8,
Kailang Yangf2690022008-05-27 11:44:55 +02001392 [AZX_DRIVER_TERA] = 1,
Takashi Iwaia9995a32007-03-12 21:30:46 +01001393};
1394
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001395static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
1397 struct hda_bus_template bus_temp;
Takashi Iwai34c25352008-10-28 11:38:58 +01001398 int c, codecs, err;
1399 int max_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 memset(&bus_temp, 0, sizeof(bus_temp));
1402 bus_temp.private_data = chip;
1403 bus_temp.modelname = model;
1404 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +01001405 bus_temp.ops.command = azx_send_cmd;
1406 bus_temp.ops.get_response = azx_get_response;
Takashi Iwai176d5332008-07-30 15:01:44 +02001407 bus_temp.ops.attach_pcm = azx_attach_pcm_stream;
Takashi Iwai8dd78332009-06-02 01:16:07 +02001408 bus_temp.ops.bus_reset = azx_bus_reset;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001409#ifdef CONFIG_SND_HDA_POWER_SAVE
Takashi Iwai11cd41b2008-11-28 07:22:18 +01001410 bus_temp.power_save = &power_save;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001411 bus_temp.ops.pm_notify = azx_power_notify;
1412#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Takashi Iwaid01ce992007-07-27 16:52:19 +02001414 err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus);
1415 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return err;
1417
Wei Nidc9c8e22008-09-26 13:55:56 +08001418 if (chip->driver_type == AZX_DRIVER_NVIDIA)
1419 chip->bus->needs_damn_long_delay = 1;
1420
Takashi Iwai34c25352008-10-28 11:38:58 +01001421 codecs = 0;
Takashi Iwai2f5983f2008-09-03 16:00:44 +02001422 max_slots = azx_max_codecs[chip->driver_type];
1423 if (!max_slots)
Wei Ni7445dfc2010-03-03 15:05:53 +08001424 max_slots = AZX_DEFAULT_CODECS;
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001425
1426 /* First try to probe all given codec slots */
1427 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001428 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001429 if (probe_codec(chip, c) < 0) {
1430 /* Some BIOSen give you wrong codec addresses
1431 * that don't exist
1432 */
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001433 snd_printk(KERN_WARNING SFX
1434 "Codec #%d probe error; "
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001435 "disabling it...\n", c);
1436 chip->codec_mask &= ~(1 << c);
1437 /* More badly, accessing to a non-existing
1438 * codec often screws up the controller chip,
Paul Menzel24481582010-02-08 20:37:26 +01001439 * and disturbs the further communications.
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001440 * Thus if an error occurs during probing,
1441 * better to reset the controller chip to
1442 * get back to the sanity state.
1443 */
1444 azx_stop_chip(chip);
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01001445 azx_init_chip(chip, 1);
Takashi Iwai6ce4a3b2008-11-06 17:11:10 +01001446 }
1447 }
1448 }
1449
1450 /* Then create codec instances */
Takashi Iwai34c25352008-10-28 11:38:58 +01001451 for (c = 0; c < max_slots; c++) {
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01001452 if ((chip->codec_mask & (1 << c)) & chip->codec_probe_mask) {
Takashi Iwaibccad142007-04-24 12:23:53 +02001453 struct hda_codec *codec;
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001454 err = snd_hda_codec_new(chip->bus, c, &codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (err < 0)
1456 continue;
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01001457 codec->beep_mode = chip->beep_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 codecs++;
Takashi Iwai19a982b2007-03-21 15:14:35 +01001459 }
1460 }
1461 if (!codecs) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 snd_printk(KERN_ERR SFX "no codecs initialized\n");
1463 return -ENXIO;
1464 }
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001465 return 0;
1466}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Takashi Iwaia1e21c92009-06-17 09:33:52 +02001468/* configure each codec instance */
1469static int __devinit azx_codec_configure(struct azx *chip)
1470{
1471 struct hda_codec *codec;
1472 list_for_each_entry(codec, &chip->bus->codec_list, list) {
1473 snd_hda_codec_configure(codec);
1474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 return 0;
1476}
1477
1478
1479/*
1480 * PCM support
1481 */
1482
1483/* assign a stream for the PCM */
Wu Fengguangef18bed2009-12-25 13:14:27 +08001484static inline struct azx_dev *
1485azx_assign_device(struct azx *chip, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001487 int dev, i, nums;
Wu Fengguangef18bed2009-12-25 13:14:27 +08001488 struct azx_dev *res = NULL;
1489
1490 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001491 dev = chip->playback_index_offset;
1492 nums = chip->playback_streams;
1493 } else {
1494 dev = chip->capture_index_offset;
1495 nums = chip->capture_streams;
1496 }
1497 for (i = 0; i < nums; i++, dev++)
Takashi Iwaid01ce992007-07-27 16:52:19 +02001498 if (!chip->azx_dev[dev].opened) {
Wu Fengguangef18bed2009-12-25 13:14:27 +08001499 res = &chip->azx_dev[dev];
1500 if (res->device == substream->pcm->device)
1501 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 }
Wu Fengguangef18bed2009-12-25 13:14:27 +08001503 if (res) {
1504 res->opened = 1;
1505 res->device = substream->pcm->device;
1506 }
1507 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
1510/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001511static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512{
1513 azx_dev->opened = 0;
1514}
1515
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001516static struct snd_pcm_hardware azx_pcm_hw = {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001517 .info = (SNDRV_PCM_INFO_MMAP |
1518 SNDRV_PCM_INFO_INTERLEAVED |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1520 SNDRV_PCM_INFO_MMAP_VALID |
Pavel Machek927fc862006-08-31 17:03:43 +02001521 /* No full-resume yet implemented */
1522 /* SNDRV_PCM_INFO_RESUME |*/
Takashi Iwai850f0e52008-03-18 17:11:05 +01001523 SNDRV_PCM_INFO_PAUSE |
Clemens Ladisch7bb8fb72010-11-15 10:49:47 +01001524 SNDRV_PCM_INFO_SYNC_START |
1525 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1527 .rates = SNDRV_PCM_RATE_48000,
1528 .rate_min = 48000,
1529 .rate_max = 48000,
1530 .channels_min = 2,
1531 .channels_max = 2,
1532 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1533 .period_bytes_min = 128,
1534 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1535 .periods_min = 2,
1536 .periods_max = AZX_MAX_FRAG,
1537 .fifo_size = 0,
1538};
1539
1540struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001541 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 struct hda_codec *codec;
1543 struct hda_pcm_stream *hinfo[2];
1544};
1545
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001546static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
1548 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1549 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001550 struct azx *chip = apcm->chip;
1551 struct azx_dev *azx_dev;
1552 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 unsigned long flags;
1554 int err;
1555
Ingo Molnar62932df2006-01-16 16:34:20 +01001556 mutex_lock(&chip->open_mutex);
Wu Fengguangef18bed2009-12-25 13:14:27 +08001557 azx_dev = azx_assign_device(chip, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001559 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return -EBUSY;
1561 }
1562 runtime->hw = azx_pcm_hw;
1563 runtime->hw.channels_min = hinfo->channels_min;
1564 runtime->hw.channels_max = hinfo->channels_max;
1565 runtime->hw.formats = hinfo->formats;
1566 runtime->hw.rates = hinfo->rates;
1567 snd_pcm_limit_hw_rates(runtime);
1568 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
Joachim Deguara5f1545b2007-03-16 15:01:36 +01001569 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1570 128);
1571 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1572 128);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001573 snd_hda_power_up(apcm->codec);
Takashi Iwaid01ce992007-07-27 16:52:19 +02001574 err = hinfo->ops.open(hinfo, apcm->codec, substream);
1575 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 azx_release_device(azx_dev);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001577 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001578 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return err;
1580 }
Takashi Iwai70d321e2009-07-03 23:06:45 +02001581 snd_pcm_limit_hw_rates(runtime);
Takashi Iwaiaba66532009-07-05 11:44:46 +02001582 /* sanity check */
1583 if (snd_BUG_ON(!runtime->hw.channels_min) ||
1584 snd_BUG_ON(!runtime->hw.channels_max) ||
1585 snd_BUG_ON(!runtime->hw.formats) ||
1586 snd_BUG_ON(!runtime->hw.rates)) {
1587 azx_release_device(azx_dev);
1588 hinfo->ops.close(hinfo, apcm->codec, substream);
1589 snd_hda_power_down(apcm->codec);
1590 mutex_unlock(&chip->open_mutex);
1591 return -EINVAL;
1592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 spin_lock_irqsave(&chip->reg_lock, flags);
1594 azx_dev->substream = substream;
1595 azx_dev->running = 0;
1596 spin_unlock_irqrestore(&chip->reg_lock, flags);
1597
1598 runtime->private_data = azx_dev;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001599 snd_pcm_set_sync(substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001600 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 return 0;
1602}
1603
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001604static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1607 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001608 struct azx *chip = apcm->chip;
1609 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 unsigned long flags;
1611
Ingo Molnar62932df2006-01-16 16:34:20 +01001612 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 spin_lock_irqsave(&chip->reg_lock, flags);
1614 azx_dev->substream = NULL;
1615 azx_dev->running = 0;
1616 spin_unlock_irqrestore(&chip->reg_lock, flags);
1617 azx_release_device(azx_dev);
1618 hinfo->ops.close(hinfo, apcm->codec, substream);
Takashi Iwaicb53c622007-08-10 17:21:45 +02001619 snd_hda_power_down(apcm->codec);
Ingo Molnar62932df2006-01-16 16:34:20 +01001620 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return 0;
1622}
1623
Takashi Iwaid01ce992007-07-27 16:52:19 +02001624static int azx_pcm_hw_params(struct snd_pcm_substream *substream,
1625 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Takashi Iwai97b71c92009-03-18 15:09:13 +01001627 struct azx_dev *azx_dev = get_azx_dev(substream);
1628
1629 azx_dev->bufsize = 0;
1630 azx_dev->period_bytes = 0;
1631 azx_dev->format_val = 0;
Takashi Iwaid01ce992007-07-27 16:52:19 +02001632 return snd_pcm_lib_malloc_pages(substream,
1633 params_buffer_bytes(hw_params));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001636static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637{
1638 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001639 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1641
1642 /* reset BDL address */
1643 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1644 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1645 azx_sd_writel(azx_dev, SD_CTL, 0);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001646 azx_dev->bufsize = 0;
1647 azx_dev->period_bytes = 0;
1648 azx_dev->format_val = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
Takashi Iwaieb541332010-08-06 13:48:11 +02001650 snd_hda_codec_cleanup(apcm->codec, hinfo, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 return snd_pcm_lib_free_pages(substream);
1653}
1654
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001655static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
1657 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001658 struct azx *chip = apcm->chip;
1659 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001661 struct snd_pcm_runtime *runtime = substream->runtime;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001662 unsigned int bufsize, period_bytes, format_val, stream_tag;
Takashi Iwai97b71c92009-03-18 15:09:13 +01001663 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001665 azx_stream_reset(chip, azx_dev);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001666 format_val = snd_hda_calc_stream_format(runtime->rate,
1667 runtime->channels,
1668 runtime->format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03001669 hinfo->maxbps,
1670 apcm->codec->spdif_ctls);
Takashi Iwai97b71c92009-03-18 15:09:13 +01001671 if (!format_val) {
Takashi Iwaid01ce992007-07-27 16:52:19 +02001672 snd_printk(KERN_ERR SFX
1673 "invalid format_val, rate=%d, ch=%d, format=%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 runtime->rate, runtime->channels, runtime->format);
1675 return -EINVAL;
1676 }
1677
Takashi Iwai97b71c92009-03-18 15:09:13 +01001678 bufsize = snd_pcm_lib_buffer_bytes(substream);
1679 period_bytes = snd_pcm_lib_period_bytes(substream);
1680
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02001681 snd_printdd(SFX "azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
Takashi Iwai97b71c92009-03-18 15:09:13 +01001682 bufsize, format_val);
1683
1684 if (bufsize != azx_dev->bufsize ||
1685 period_bytes != azx_dev->period_bytes ||
1686 format_val != azx_dev->format_val) {
1687 azx_dev->bufsize = bufsize;
1688 azx_dev->period_bytes = period_bytes;
1689 azx_dev->format_val = format_val;
1690 err = azx_setup_periods(chip, substream, azx_dev);
1691 if (err < 0)
1692 return err;
1693 }
1694
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001695 /* wallclk has 24Mhz clock source */
1696 azx_dev->period_wallclk = (((runtime->period_size * 24000) /
1697 runtime->rate) * 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 azx_setup_controller(chip, azx_dev);
1699 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1700 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1701 else
1702 azx_dev->fifo_size = 0;
1703
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001704 stream_tag = azx_dev->stream_tag;
1705 /* CA-IBG chips need the playback stream starting from 1 */
1706 if (chip->driver_type == AZX_DRIVER_CTX &&
1707 stream_tag > chip->capture_streams)
1708 stream_tag -= chip->capture_streams;
1709 return snd_hda_codec_prepare(apcm->codec, hinfo, stream_tag,
Takashi Iwaieb541332010-08-06 13:48:11 +02001710 azx_dev->format_val, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001713static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
1715 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001716 struct azx *chip = apcm->chip;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001717 struct azx_dev *azx_dev;
1718 struct snd_pcm_substream *s;
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001719 int rstart = 0, start, nsync = 0, sbits = 0;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001720 int nwait, timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 switch (cmd) {
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001723 case SNDRV_PCM_TRIGGER_START:
1724 rstart = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1726 case SNDRV_PCM_TRIGGER_RESUME:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001727 start = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 break;
1729 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001730 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 case SNDRV_PCM_TRIGGER_STOP:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001732 start = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 break;
1734 default:
Takashi Iwai850f0e52008-03-18 17:11:05 +01001735 return -EINVAL;
1736 }
1737
1738 snd_pcm_group_for_each_entry(s, substream) {
1739 if (s->pcm->card != substream->pcm->card)
1740 continue;
1741 azx_dev = get_azx_dev(s);
1742 sbits |= 1 << azx_dev->index;
1743 nsync++;
1744 snd_pcm_trigger_done(s, substream);
1745 }
1746
1747 spin_lock(&chip->reg_lock);
1748 if (nsync > 1) {
1749 /* first, set SYNC bits of corresponding streams */
1750 azx_writel(chip, SYNC, azx_readl(chip, SYNC) | sbits);
1751 }
1752 snd_pcm_group_for_each_entry(s, substream) {
1753 if (s->pcm->card != substream->pcm->card)
1754 continue;
1755 azx_dev = get_azx_dev(s);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001756 if (start) {
1757 azx_dev->start_wallclk = azx_readl(chip, WALLCLK);
1758 if (!rstart)
1759 azx_dev->start_wallclk -=
1760 azx_dev->period_wallclk;
Takashi Iwai850f0e52008-03-18 17:11:05 +01001761 azx_stream_start(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001762 } else {
Takashi Iwai850f0e52008-03-18 17:11:05 +01001763 azx_stream_stop(chip, azx_dev);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001764 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001765 azx_dev->running = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767 spin_unlock(&chip->reg_lock);
Takashi Iwai850f0e52008-03-18 17:11:05 +01001768 if (start) {
1769 if (nsync == 1)
1770 return 0;
1771 /* wait until all FIFOs get ready */
1772 for (timeout = 5000; timeout; timeout--) {
1773 nwait = 0;
1774 snd_pcm_group_for_each_entry(s, substream) {
1775 if (s->pcm->card != substream->pcm->card)
1776 continue;
1777 azx_dev = get_azx_dev(s);
1778 if (!(azx_sd_readb(azx_dev, SD_STS) &
1779 SD_STS_FIFO_READY))
1780 nwait++;
1781 }
1782 if (!nwait)
1783 break;
1784 cpu_relax();
1785 }
1786 } else {
1787 /* wait until all RUN bits are cleared */
1788 for (timeout = 5000; timeout; timeout--) {
1789 nwait = 0;
1790 snd_pcm_group_for_each_entry(s, substream) {
1791 if (s->pcm->card != substream->pcm->card)
1792 continue;
1793 azx_dev = get_azx_dev(s);
1794 if (azx_sd_readb(azx_dev, SD_CTL) &
1795 SD_CTL_DMA_START)
1796 nwait++;
1797 }
1798 if (!nwait)
1799 break;
1800 cpu_relax();
1801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Takashi Iwai850f0e52008-03-18 17:11:05 +01001803 if (nsync > 1) {
1804 spin_lock(&chip->reg_lock);
1805 /* reset SYNC bits */
1806 azx_writel(chip, SYNC, azx_readl(chip, SYNC) & ~sbits);
1807 spin_unlock(&chip->reg_lock);
1808 }
1809 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810}
1811
Joseph Chan0e153472008-08-26 14:38:03 +02001812/* get the current DMA position with correction on VIA chips */
1813static unsigned int azx_via_get_position(struct azx *chip,
1814 struct azx_dev *azx_dev)
1815{
1816 unsigned int link_pos, mini_pos, bound_pos;
1817 unsigned int mod_link_pos, mod_dma_pos, mod_mini_pos;
1818 unsigned int fifo_size;
1819
1820 link_pos = azx_sd_readl(azx_dev, SD_LPIB);
1821 if (azx_dev->index >= 4) {
1822 /* Playback, no problem using link position */
1823 return link_pos;
1824 }
1825
1826 /* Capture */
1827 /* For new chipset,
1828 * use mod to get the DMA position just like old chipset
1829 */
1830 mod_dma_pos = le32_to_cpu(*azx_dev->posbuf);
1831 mod_dma_pos %= azx_dev->period_bytes;
1832
1833 /* azx_dev->fifo_size can't get FIFO size of in stream.
1834 * Get from base address + offset.
1835 */
1836 fifo_size = readw(chip->remap_addr + VIA_IN_STREAM0_FIFO_SIZE_OFFSET);
1837
1838 if (azx_dev->insufficient) {
1839 /* Link position never gather than FIFO size */
1840 if (link_pos <= fifo_size)
1841 return 0;
1842
1843 azx_dev->insufficient = 0;
1844 }
1845
1846 if (link_pos <= fifo_size)
1847 mini_pos = azx_dev->bufsize + link_pos - fifo_size;
1848 else
1849 mini_pos = link_pos - fifo_size;
1850
1851 /* Find nearest previous boudary */
1852 mod_mini_pos = mini_pos % azx_dev->period_bytes;
1853 mod_link_pos = link_pos % azx_dev->period_bytes;
1854 if (mod_link_pos >= fifo_size)
1855 bound_pos = link_pos - mod_link_pos;
1856 else if (mod_dma_pos >= mod_mini_pos)
1857 bound_pos = mini_pos - mod_mini_pos;
1858 else {
1859 bound_pos = mini_pos - mod_mini_pos + azx_dev->period_bytes;
1860 if (bound_pos >= azx_dev->bufsize)
1861 bound_pos = 0;
1862 }
1863
1864 /* Calculate real DMA position we want */
1865 return bound_pos + mod_dma_pos;
1866}
1867
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001868static unsigned int azx_get_position(struct azx *chip,
1869 struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 unsigned int pos;
David Henningsson4cb36312010-09-30 10:12:50 +02001872 int stream = azx_dev->substream->stream;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
David Henningsson4cb36312010-09-30 10:12:50 +02001874 switch (chip->position_fix[stream]) {
1875 case POS_FIX_LPIB:
1876 /* read LPIB */
1877 pos = azx_sd_readl(azx_dev, SD_LPIB);
1878 break;
1879 case POS_FIX_VIACOMBO:
Joseph Chan0e153472008-08-26 14:38:03 +02001880 pos = azx_via_get_position(chip, azx_dev);
David Henningsson4cb36312010-09-30 10:12:50 +02001881 break;
1882 default:
1883 /* use the position buffer */
1884 pos = le32_to_cpu(*azx_dev->posbuf);
Takashi Iwaic74db862005-05-12 14:26:27 +02001885 }
David Henningsson4cb36312010-09-30 10:12:50 +02001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (pos >= azx_dev->bufsize)
1888 pos = 0;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001889 return pos;
1890}
1891
1892static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
1893{
1894 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1895 struct azx *chip = apcm->chip;
1896 struct azx_dev *azx_dev = get_azx_dev(substream);
1897 return bytes_to_frames(substream->runtime,
1898 azx_get_position(chip, azx_dev));
1899}
1900
1901/*
1902 * Check whether the current DMA position is acceptable for updating
1903 * periods. Returns non-zero if it's OK.
1904 *
1905 * Many HD-audio controllers appear pretty inaccurate about
1906 * the update-IRQ timing. The IRQ is issued before actually the
1907 * data is processed. So, we need to process it afterwords in a
1908 * workqueue.
1909 */
1910static int azx_position_ok(struct azx *chip, struct azx_dev *azx_dev)
1911{
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001912 u32 wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001913 unsigned int pos;
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001914 int stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001915
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001916 wallclk = azx_readl(chip, WALLCLK) - azx_dev->start_wallclk;
1917 if (wallclk < (azx_dev->period_wallclk * 2) / 3)
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001918 return -1; /* bogus (too early) interrupt */
Jaroslav Kyselafa00e042009-04-10 12:20:45 +02001919
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001920 stream = azx_dev->substream->stream;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001921 pos = azx_get_position(chip, azx_dev);
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001922 if (chip->position_fix[stream] == POS_FIX_AUTO) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001923 if (!pos) {
1924 printk(KERN_WARNING
1925 "hda-intel: Invalid position buffer, "
1926 "using LPIB read method instead.\n");
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001927 chip->position_fix[stream] = POS_FIX_LPIB;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001928 pos = azx_get_position(chip, azx_dev);
1929 } else
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02001930 chip->position_fix[stream] = POS_FIX_POSBUF;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001931 }
1932
Takashi Iwaid6d8bf52010-02-12 18:17:06 +01001933 if (WARN_ONCE(!azx_dev->period_bytes,
1934 "hda-intel: zero azx_dev->period_bytes"))
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001935 return -1; /* this shouldn't happen! */
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001936 if (wallclk < (azx_dev->period_wallclk * 5) / 4 &&
Jaroslav Kyselaf48f6062010-05-11 12:10:47 +02001937 pos % azx_dev->period_bytes > azx_dev->period_bytes / 2)
1938 /* NG - it's below the first next period boundary */
1939 return bdl_pos_adj[chip->dev_index] ? 0 : -1;
Jaroslav Kyselaedb39932010-06-02 13:29:17 +02001940 azx_dev->start_wallclk += wallclk;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001941 return 1; /* OK, it's fine */
1942}
1943
1944/*
1945 * The work for pending PCM period updates.
1946 */
1947static void azx_irq_pending_work(struct work_struct *work)
1948{
1949 struct azx *chip = container_of(work, struct azx, irq_pending_work);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001950 int i, pending, ok;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001951
Takashi Iwaia6a950a2008-06-10 17:53:35 +02001952 if (!chip->irq_pending_warned) {
1953 printk(KERN_WARNING
1954 "hda-intel: IRQ timing workaround is activated "
1955 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
1956 chip->card->number);
1957 chip->irq_pending_warned = 1;
1958 }
1959
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001960 for (;;) {
1961 pending = 0;
1962 spin_lock_irq(&chip->reg_lock);
1963 for (i = 0; i < chip->num_streams; i++) {
1964 struct azx_dev *azx_dev = &chip->azx_dev[i];
1965 if (!azx_dev->irq_pending ||
1966 !azx_dev->substream ||
1967 !azx_dev->running)
1968 continue;
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001969 ok = azx_position_ok(chip, azx_dev);
1970 if (ok > 0) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001971 azx_dev->irq_pending = 0;
1972 spin_unlock(&chip->reg_lock);
1973 snd_pcm_period_elapsed(azx_dev->substream);
1974 spin_lock(&chip->reg_lock);
Jaroslav Kyselae5463722010-05-11 10:21:46 +02001975 } else if (ok < 0) {
1976 pending = 0; /* too early */
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001977 } else
1978 pending++;
1979 }
1980 spin_unlock_irq(&chip->reg_lock);
1981 if (!pending)
1982 return;
Takashi Iwai08af4952010-08-03 14:39:04 +02001983 msleep(1);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02001984 }
1985}
1986
1987/* clear irq_pending flags and assure no on-going workq */
1988static void azx_clear_irq_pending(struct azx *chip)
1989{
1990 int i;
1991
1992 spin_lock_irq(&chip->reg_lock);
1993 for (i = 0; i < chip->num_streams; i++)
1994 chip->azx_dev[i].irq_pending = 0;
1995 spin_unlock_irq(&chip->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001998static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 .open = azx_pcm_open,
2000 .close = azx_pcm_close,
2001 .ioctl = snd_pcm_lib_ioctl,
2002 .hw_params = azx_pcm_hw_params,
2003 .hw_free = azx_pcm_hw_free,
2004 .prepare = azx_pcm_prepare,
2005 .trigger = azx_pcm_trigger,
2006 .pointer = azx_pcm_pointer,
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002007 .page = snd_pcm_sgbuf_ops_page,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008};
2009
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002010static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011{
Takashi Iwai176d5332008-07-30 15:01:44 +02002012 struct azx_pcm *apcm = pcm->private_data;
2013 if (apcm) {
2014 apcm->chip->pcm[pcm->device] = NULL;
2015 kfree(apcm);
2016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017}
2018
Takashi Iwai176d5332008-07-30 15:01:44 +02002019static int
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002020azx_attach_pcm_stream(struct hda_bus *bus, struct hda_codec *codec,
2021 struct hda_pcm *cpcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002023 struct azx *chip = bus->private_data;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002024 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 struct azx_pcm *apcm;
Takashi Iwai176d5332008-07-30 15:01:44 +02002026 int pcm_dev = cpcm->device;
2027 int s, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Takashi Iwaic8936222010-01-28 17:08:53 +01002029 if (pcm_dev >= HDA_MAX_PCMS) {
Takashi Iwai176d5332008-07-30 15:01:44 +02002030 snd_printk(KERN_ERR SFX "Invalid PCM device number %d\n",
2031 pcm_dev);
Takashi Iwaida3cec32008-08-08 17:12:14 +02002032 return -EINVAL;
Takashi Iwai176d5332008-07-30 15:01:44 +02002033 }
2034 if (chip->pcm[pcm_dev]) {
2035 snd_printk(KERN_ERR SFX "PCM %d already exists\n", pcm_dev);
2036 return -EBUSY;
2037 }
2038 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
2039 cpcm->stream[SNDRV_PCM_STREAM_PLAYBACK].substreams,
2040 cpcm->stream[SNDRV_PCM_STREAM_CAPTURE].substreams,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 &pcm);
2042 if (err < 0)
2043 return err;
Takashi Iwai18cb7102009-04-16 10:22:24 +02002044 strlcpy(pcm->name, cpcm->name, sizeof(pcm->name));
Takashi Iwai176d5332008-07-30 15:01:44 +02002045 apcm = kzalloc(sizeof(*apcm), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (apcm == NULL)
2047 return -ENOMEM;
2048 apcm->chip = chip;
2049 apcm->codec = codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 pcm->private_data = apcm;
2051 pcm->private_free = azx_pcm_free;
Takashi Iwai176d5332008-07-30 15:01:44 +02002052 if (cpcm->pcm_type == HDA_PCM_TYPE_MODEM)
2053 pcm->dev_class = SNDRV_PCM_CLASS_MODEM;
2054 chip->pcm[pcm_dev] = pcm;
2055 cpcm->pcm = pcm;
2056 for (s = 0; s < 2; s++) {
2057 apcm->hinfo[s] = &cpcm->stream[s];
2058 if (cpcm->stream[s].substreams)
2059 snd_pcm_set_ops(pcm, s, &azx_pcm_ops);
2060 }
2061 /* buffer pre-allocation */
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002062 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV_SG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 snd_dma_pci_data(chip->pci),
Takashi Iwaifc4abee2008-07-30 15:13:34 +02002064 1024 * 64, 32 * 1024 * 1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 return 0;
2066}
2067
2068/*
2069 * mixer creation - all stuff is implemented in hda module
2070 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002071static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 return snd_hda_build_controls(chip->bus);
2074}
2075
2076
2077/*
2078 * initialize SD streams
2079 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002080static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
2082 int i;
2083
2084 /* initialize each stream (aka device)
Takashi Iwaid01ce992007-07-27 16:52:19 +02002085 * assign the starting bdl address to each stream (device)
2086 * and initialize
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002088 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002089 struct azx_dev *azx_dev = &chip->azx_dev[i];
Takashi Iwai929861c2006-08-31 16:55:40 +02002090 azx_dev->posbuf = (u32 __iomem *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
2092 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
2093 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
2094 azx_dev->sd_int_sta_mask = 1 << i;
2095 /* stream tag: must be non-zero and unique */
2096 azx_dev->index = i;
2097 azx_dev->stream_tag = i + 1;
2098 }
2099
2100 return 0;
2101}
2102
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002103static int azx_acquire_irq(struct azx *chip, int do_disconnect)
2104{
Takashi Iwai437a5a42006-11-21 12:14:23 +01002105 if (request_irq(chip->pci->irq, azx_interrupt,
2106 chip->msi ? 0 : IRQF_SHARED,
Maxim Levitsky94928372010-02-04 22:26:37 +02002107 "hda_intel", chip)) {
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002108 printk(KERN_ERR "hda-intel: unable to grab IRQ %d, "
2109 "disabling device\n", chip->pci->irq);
2110 if (do_disconnect)
2111 snd_card_disconnect(chip->card);
2112 return -1;
2113 }
2114 chip->irq = chip->pci->irq;
Takashi Iwai69e13412006-11-21 12:10:55 +01002115 pci_intx(chip->pci, !chip->msi);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002116 return 0;
2117}
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
Takashi Iwaicb53c622007-08-10 17:21:45 +02002120static void azx_stop_chip(struct azx *chip)
2121{
Takashi Iwai95e99fd2007-08-13 15:29:04 +02002122 if (!chip->initialized)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002123 return;
2124
2125 /* disable interrupts */
2126 azx_int_disable(chip);
2127 azx_int_clear(chip);
2128
2129 /* disable CORB/RIRB */
2130 azx_free_cmd_io(chip);
2131
2132 /* disable position buffer */
2133 azx_writel(chip, DPLBASE, 0);
2134 azx_writel(chip, DPUBASE, 0);
2135
2136 chip->initialized = 0;
2137}
2138
2139#ifdef CONFIG_SND_HDA_POWER_SAVE
2140/* power-up/down the controller */
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002141static void azx_power_notify(struct hda_bus *bus)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002142{
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002143 struct azx *chip = bus->private_data;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002144 struct hda_codec *c;
2145 int power_on = 0;
2146
Takashi Iwai33fa35e2008-11-06 16:50:40 +01002147 list_for_each_entry(c, &bus->codec_list, list) {
Takashi Iwaicb53c622007-08-10 17:21:45 +02002148 if (c->power_on) {
2149 power_on = 1;
2150 break;
2151 }
2152 }
2153 if (power_on)
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002154 azx_init_chip(chip, 1);
Wu Fengguang0287d972009-12-11 20:15:11 +08002155 else if (chip->running && power_save_controller &&
2156 !bus->power_keep_link_on)
Takashi Iwaicb53c622007-08-10 17:21:45 +02002157 azx_stop_chip(chip);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002158}
Takashi Iwai5c0b9be2008-12-11 11:47:17 +01002159#endif /* CONFIG_SND_HDA_POWER_SAVE */
2160
2161#ifdef CONFIG_PM
2162/*
2163 * power management
2164 */
Takashi Iwai986862bd2008-11-27 12:40:13 +01002165
2166static int snd_hda_codecs_inuse(struct hda_bus *bus)
2167{
2168 struct hda_codec *codec;
2169
2170 list_for_each_entry(codec, &bus->codec_list, list) {
2171 if (snd_hda_codec_needs_resume(codec))
2172 return 1;
2173 }
2174 return 0;
2175}
Takashi Iwaicb53c622007-08-10 17:21:45 +02002176
Takashi Iwai421a1252005-11-17 16:11:09 +01002177static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Takashi Iwai421a1252005-11-17 16:11:09 +01002179 struct snd_card *card = pci_get_drvdata(pci);
2180 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 int i;
2182
Takashi Iwai421a1252005-11-17 16:11:09 +01002183 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002184 azx_clear_irq_pending(chip);
Takashi Iwaic8936222010-01-28 17:08:53 +01002185 for (i = 0; i < HDA_MAX_PCMS; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01002186 snd_pcm_suspend_all(chip->pcm[i]);
Takashi Iwai0b7a2e92007-08-14 15:18:26 +02002187 if (chip->initialized)
Takashi Iwai8dd78332009-06-02 01:16:07 +02002188 snd_hda_suspend(chip->bus);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002189 azx_stop_chip(chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002190 if (chip->irq >= 0) {
Takashi Iwai43001c92006-09-08 12:30:03 +02002191 free_irq(chip->irq, chip);
Takashi Iwai30b35392006-10-11 18:52:53 +02002192 chip->irq = -1;
2193 }
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002194 if (chip->msi)
Takashi Iwai43001c92006-09-08 12:30:03 +02002195 pci_disable_msi(chip->pci);
Takashi Iwai421a1252005-11-17 16:11:09 +01002196 pci_disable_device(pci);
2197 pci_save_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002198 pci_set_power_state(pci, pci_choose_state(pci, state));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 return 0;
2200}
2201
Takashi Iwai421a1252005-11-17 16:11:09 +01002202static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Takashi Iwai421a1252005-11-17 16:11:09 +01002204 struct snd_card *card = pci_get_drvdata(pci);
2205 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
Takashi Iwaid14a7e02009-02-16 10:13:03 +01002207 pci_set_power_state(pci, PCI_D0);
2208 pci_restore_state(pci);
Takashi Iwai30b35392006-10-11 18:52:53 +02002209 if (pci_enable_device(pci) < 0) {
2210 printk(KERN_ERR "hda-intel: pci_enable_device failed, "
2211 "disabling device\n");
2212 snd_card_disconnect(card);
2213 return -EIO;
2214 }
2215 pci_set_master(pci);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002216 if (chip->msi)
2217 if (pci_enable_msi(pci) < 0)
2218 chip->msi = 0;
2219 if (azx_acquire_irq(chip, 1) < 0)
Takashi Iwai30b35392006-10-11 18:52:53 +02002220 return -EIO;
Takashi Iwaicb53c622007-08-10 17:21:45 +02002221 azx_init_pci(chip);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002222
2223 if (snd_hda_codecs_inuse(chip->bus))
Jaroslav Kyselacd508fe2010-03-26 10:28:46 +01002224 azx_init_chip(chip, 1);
Maxim Levitskyd804ad92007-09-03 15:28:04 +02002225
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01002227 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 return 0;
2229}
2230#endif /* CONFIG_PM */
2231
2232
2233/*
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002234 * reboot notifier for hang-up problem at power-down
2235 */
2236static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf)
2237{
2238 struct azx *chip = container_of(nb, struct azx, reboot_notifier);
Takashi Iwaifb8d1a32009-11-10 16:02:29 +01002239 snd_hda_bus_reboot_notify(chip->bus);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002240 azx_stop_chip(chip);
2241 return NOTIFY_OK;
2242}
2243
2244static void azx_notifier_register(struct azx *chip)
2245{
2246 chip->reboot_notifier.notifier_call = azx_halt;
2247 register_reboot_notifier(&chip->reboot_notifier);
2248}
2249
2250static void azx_notifier_unregister(struct azx *chip)
2251{
2252 if (chip->reboot_notifier.notifier_call)
2253 unregister_reboot_notifier(&chip->reboot_notifier);
2254}
2255
2256/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 * destructor
2258 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002259static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260{
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002261 int i;
2262
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002263 azx_notifier_unregister(chip);
2264
Takashi Iwaice43fba2005-05-30 20:33:44 +02002265 if (chip->initialized) {
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002266 azx_clear_irq_pending(chip);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002267 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 azx_stream_stop(chip, &chip->azx_dev[i]);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002269 azx_stop_chip(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 }
2271
Jeff Garzikf000fd82008-04-22 13:50:34 +02002272 if (chip->irq >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 free_irq(chip->irq, (void*)chip);
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002274 if (chip->msi)
Takashi Iwai30b35392006-10-11 18:52:53 +02002275 pci_disable_msi(chip->pci);
Takashi Iwaif079c252006-06-01 11:42:14 +02002276 if (chip->remap_addr)
2277 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002279 if (chip->azx_dev) {
2280 for (i = 0; i < chip->num_streams; i++)
2281 if (chip->azx_dev[i].bdl.area)
2282 snd_dma_free_pages(&chip->azx_dev[i].bdl);
2283 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (chip->rb.area)
2285 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (chip->posbuf.area)
2287 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 pci_release_regions(chip->pci);
2289 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002290 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 kfree(chip);
2292
2293 return 0;
2294}
2295
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002296static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
2298 return azx_free(device->device_data);
2299}
2300
2301/*
Takashi Iwai3372a152007-02-01 15:46:50 +01002302 * white/black-listing for position_fix
2303 */
Ralf Baechle623ec042007-03-13 15:29:47 +01002304static struct snd_pci_quirk position_fix_list[] __devinitdata = {
Daniel T Chen7a68be92010-05-22 12:05:41 -04002305 SND_PCI_QUIRK(0x1025, 0x009f, "Acer Aspire 5110", POS_FIX_LPIB),
Daniel T Chendd5a0892010-12-05 08:43:14 -05002306 SND_PCI_QUIRK(0x1025, 0x026f, "Acer Aspire 5538", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002307 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB),
2308 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB),
Daniel T Chen9919c762010-03-03 18:24:26 -05002309 SND_PCI_QUIRK(0x1028, 0x01f6, "Dell Latitude 131L", POS_FIX_LPIB),
Daniel T Chene03fa052010-12-28 17:20:02 -05002310 SND_PCI_QUIRK(0x1028, 0x0470, "Dell Inspiron 1120", POS_FIX_LPIB),
Takashi Iwai2f703e72009-12-01 14:17:37 +01002311 SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB),
Takashi Iwaid2e1c972008-06-10 17:53:34 +02002312 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB),
Daniel T Chendd37f8e2010-05-30 01:17:03 -04002313 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB),
Daniel T Chen9f75c1b2010-05-30 13:08:41 -04002314 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB),
David Henningssonb540afc2011-02-14 20:27:44 +01002315 SND_PCI_QUIRK(0x1043, 0x8410, "ASUS", POS_FIX_LPIB),
Daniel T Chene96d3122010-05-27 18:32:18 -04002316 SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB),
Daniel T Chen4e0938d2010-05-22 13:12:22 -04002317 SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB),
2318 SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba A100-259", POS_FIX_LPIB),
Daniel T Chen61bb42c2010-05-29 11:04:11 -04002319 SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB),
Daniel T Chen9ec8dda2010-03-28 02:34:40 -04002320 SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB),
Takashi Iwai45d4ebf2009-11-30 11:58:30 +01002321 SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB),
Daniel T Chen0321b692010-03-05 09:04:49 -05002322 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar Microtech", POS_FIX_LPIB),
Takashi Iwai8815cd02010-04-15 09:02:41 +02002323 SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB),
Daniel T Chenb90c0762010-05-30 19:31:41 -04002324 SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB),
Daniel T Chen0e0280d2010-04-21 19:55:43 -04002325 SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB),
Daniel T Chen572c0e32010-03-14 23:44:03 -04002326 SND_PCI_QUIRK(0x8086, 0xd601, "eMachines T5212", POS_FIX_LPIB),
Takashi Iwai3372a152007-02-01 15:46:50 +01002327 {}
2328};
2329
2330static int __devinit check_position_fix(struct azx *chip, int fix)
2331{
2332 const struct snd_pci_quirk *q;
2333
Takashi Iwaic673ba12009-03-17 07:49:14 +01002334 switch (fix) {
2335 case POS_FIX_LPIB:
2336 case POS_FIX_POSBUF:
David Henningsson4cb36312010-09-30 10:12:50 +02002337 case POS_FIX_VIACOMBO:
Takashi Iwaic673ba12009-03-17 07:49:14 +01002338 return fix;
2339 }
2340
Takashi Iwaic673ba12009-03-17 07:49:14 +01002341 q = snd_pci_quirk_lookup(chip->pci, position_fix_list);
2342 if (q) {
2343 printk(KERN_INFO
2344 "hda_intel: position_fix set to %d "
2345 "for device %04x:%04x\n",
2346 q->value, q->subvendor, q->subdevice);
2347 return q->value;
Takashi Iwai3372a152007-02-01 15:46:50 +01002348 }
David Henningssonbdd9ef22010-10-04 12:02:14 +02002349
2350 /* Check VIA/ATI HD Audio Controller exist */
2351 switch (chip->driver_type) {
2352 case AZX_DRIVER_VIA:
2353 case AZX_DRIVER_ATI:
2354 /* Use link position directly, avoid any transfer problem. */
2355 return POS_FIX_VIACOMBO;
2356 }
2357
Takashi Iwaic673ba12009-03-17 07:49:14 +01002358 return POS_FIX_AUTO;
Takashi Iwai3372a152007-02-01 15:46:50 +01002359}
2360
2361/*
Takashi Iwai669ba272007-08-17 09:17:36 +02002362 * black-lists for probe_mask
2363 */
2364static struct snd_pci_quirk probe_mask_list[] __devinitdata = {
2365 /* Thinkpad often breaks the controller communication when accessing
2366 * to the non-working (or non-existing) modem codec slot.
2367 */
2368 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2369 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2370 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
Takashi Iwai0edb9452008-11-07 14:53:09 +01002371 /* broken BIOS */
2372 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
Takashi Iwaief1681d2008-11-24 17:29:28 +01002373 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2374 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002375 /* forced codec slots */
Ozan Çağlayan93574842009-05-23 15:00:04 +03002376 SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
Takashi Iwai20db7cb2009-02-13 08:18:48 +01002377 SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
Takashi Iwai669ba272007-08-17 09:17:36 +02002378 {}
2379};
2380
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002381#define AZX_FORCE_CODEC_MASK 0x100
2382
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002383static void __devinit check_probe_mask(struct azx *chip, int dev)
Takashi Iwai669ba272007-08-17 09:17:36 +02002384{
2385 const struct snd_pci_quirk *q;
2386
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002387 chip->codec_probe_mask = probe_mask[dev];
2388 if (chip->codec_probe_mask == -1) {
Takashi Iwai669ba272007-08-17 09:17:36 +02002389 q = snd_pci_quirk_lookup(chip->pci, probe_mask_list);
2390 if (q) {
2391 printk(KERN_INFO
2392 "hda_intel: probe_mask set to 0x%x "
2393 "for device %04x:%04x\n",
2394 q->value, q->subvendor, q->subdevice);
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002395 chip->codec_probe_mask = q->value;
Takashi Iwai669ba272007-08-17 09:17:36 +02002396 }
2397 }
Takashi Iwaif1eaaee2009-02-13 08:16:55 +01002398
2399 /* check forced option */
2400 if (chip->codec_probe_mask != -1 &&
2401 (chip->codec_probe_mask & AZX_FORCE_CODEC_MASK)) {
2402 chip->codec_mask = chip->codec_probe_mask & 0xff;
2403 printk(KERN_INFO "hda_intel: codec_mask forced to 0x%x\n",
2404 chip->codec_mask);
2405 }
Takashi Iwai669ba272007-08-17 09:17:36 +02002406}
2407
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002408/*
Takashi Iwai716238552009-09-28 13:14:04 +02002409 * white/black-list for enable_msi
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002410 */
Takashi Iwai716238552009-09-28 13:14:04 +02002411static struct snd_pci_quirk msi_black_list[] __devinitdata = {
Takashi Iwai9dc83982009-12-22 08:15:01 +01002412 SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai0a27fcf2010-02-15 17:05:28 +01002413 SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
Ralf Gerbigecd21622010-03-09 18:25:47 +01002414 SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
Michele Ballabio4193d132010-03-06 21:06:46 +01002415 SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
Takashi Iwai38155952010-04-04 12:14:03 +02002416 SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002417 {}
2418};
2419
2420static void __devinit check_msi(struct azx *chip)
2421{
2422 const struct snd_pci_quirk *q;
2423
Takashi Iwai716238552009-09-28 13:14:04 +02002424 if (enable_msi >= 0) {
2425 chip->msi = !!enable_msi;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002426 return;
Takashi Iwai716238552009-09-28 13:14:04 +02002427 }
2428 chip->msi = 1; /* enable MSI as default */
2429 q = snd_pci_quirk_lookup(chip->pci, msi_black_list);
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002430 if (q) {
2431 printk(KERN_INFO
2432 "hda_intel: msi for device %04x:%04x set to %d\n",
2433 q->subvendor, q->subdevice, q->value);
2434 chip->msi = q->value;
Takashi Iwai80c43ed2010-03-15 15:51:53 +01002435 return;
2436 }
2437
2438 /* NVidia chipsets seem to cause troubles with MSI */
2439 if (chip->driver_type == AZX_DRIVER_NVIDIA) {
2440 printk(KERN_INFO "hda_intel: Disable MSI for Nvidia chipset\n");
2441 chip->msi = 0;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002442 }
2443}
2444
Takashi Iwai669ba272007-08-17 09:17:36 +02002445
2446/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 * constructor
2448 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002449static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002450 int dev, int driver_type,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002451 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002453 struct azx *chip;
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002454 int i, err;
Tobin Davisbcd72002008-01-15 11:23:55 +01002455 unsigned short gcap;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002456 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 .dev_free = azx_dev_free,
2458 };
2459
2460 *rchip = NULL;
Tobin Davisbcd72002008-01-15 11:23:55 +01002461
Pavel Machek927fc862006-08-31 17:03:43 +02002462 err = pci_enable_device(pci);
2463 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 return err;
2465
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002466 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002467 if (!chip) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
2469 pci_disable_device(pci);
2470 return -ENOMEM;
2471 }
2472
2473 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002474 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 chip->card = card;
2476 chip->pci = pci;
2477 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002478 chip->driver_type = driver_type;
Takashi Iwai4d8e22e2009-08-11 14:21:26 +02002479 check_msi(chip);
Takashi Iwai555e2192008-06-10 17:53:34 +02002480 chip->dev_index = dev;
Takashi Iwai9ad593f2008-05-16 12:34:47 +02002481 INIT_WORK(&chip->irq_pending_work, azx_irq_pending_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Shahin Ghazinouribeaffc32010-05-11 08:19:55 +02002483 chip->position_fix[0] = chip->position_fix[1] =
2484 check_position_fix(chip, position_fix[dev]);
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002485 check_probe_mask(chip, dev);
Takashi Iwai3372a152007-02-01 15:46:50 +01002486
Takashi Iwai27346162006-01-12 18:28:44 +01002487 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02002488
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002489 if (bdl_pos_adj[dev] < 0) {
2490 switch (chip->driver_type) {
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002491 case AZX_DRIVER_ICH:
Seth Heasley32679f92010-02-22 17:31:09 -08002492 case AZX_DRIVER_PCH:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002493 bdl_pos_adj[dev] = 1;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002494 break;
2495 default:
Takashi Iwai0c6341a2008-06-13 20:50:27 +02002496 bdl_pos_adj[dev] = 32;
Takashi Iwai5c0d7bc2008-06-10 17:53:35 +02002497 break;
2498 }
2499 }
2500
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002501#if BITS_PER_LONG != 64
2502 /* Fix up base address on ULI M5461 */
2503 if (chip->driver_type == AZX_DRIVER_ULI) {
2504 u16 tmp3;
2505 pci_read_config_word(pci, 0x40, &tmp3);
2506 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
2507 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
2508 }
2509#endif
2510
Pavel Machek927fc862006-08-31 17:03:43 +02002511 err = pci_request_regions(pci, "ICH HD audio");
2512 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 kfree(chip);
2514 pci_disable_device(pci);
2515 return err;
2516 }
2517
Pavel Machek927fc862006-08-31 17:03:43 +02002518 chip->addr = pci_resource_start(pci, 0);
Arjan van de Ven2f5ad542008-09-28 16:20:09 -07002519 chip->remap_addr = pci_ioremap_bar(pci, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 if (chip->remap_addr == NULL) {
2521 snd_printk(KERN_ERR SFX "ioremap error\n");
2522 err = -ENXIO;
2523 goto errout;
2524 }
2525
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002526 if (chip->msi)
2527 if (pci_enable_msi(pci) < 0)
2528 chip->msi = 0;
Stephen Hemminger7376d012006-08-21 19:17:46 +02002529
Takashi Iwai68e7fff2006-10-23 13:40:59 +02002530 if (azx_acquire_irq(chip, 0) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 err = -EBUSY;
2532 goto errout;
2533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
2535 pci_set_master(pci);
2536 synchronize_irq(chip->irq);
2537
Tobin Davisbcd72002008-01-15 11:23:55 +01002538 gcap = azx_readw(chip, GCAP);
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002539 snd_printdd(SFX "chipset global capabilities = 0x%x\n", gcap);
Tobin Davisbcd72002008-01-15 11:23:55 +01002540
Andiry Brienzadc4c2e62009-07-08 13:55:31 +08002541 /* disable SB600 64bit support for safety */
2542 if ((chip->driver_type == AZX_DRIVER_ATI) ||
2543 (chip->driver_type == AZX_DRIVER_ATIHDMI)) {
2544 struct pci_dev *p_smbus;
2545 p_smbus = pci_get_device(PCI_VENDOR_ID_ATI,
2546 PCI_DEVICE_ID_ATI_SBX00_SMBUS,
2547 NULL);
2548 if (p_smbus) {
2549 if (p_smbus->revision < 0x30)
2550 gcap &= ~ICH6_GCAP_64OK;
2551 pci_dev_put(p_smbus);
2552 }
2553 }
Takashi Iwai09240cf2009-03-17 07:47:18 +01002554
Jaroslav Kysela396087e2009-12-09 10:44:47 +01002555 /* disable 64bit DMA address for Teradici */
2556 /* it does not work with device 6549:1200 subsys e4a2:040b */
2557 if (chip->driver_type == AZX_DRIVER_TERA)
2558 gcap &= ~ICH6_GCAP_64OK;
2559
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002560 /* allow 64bit DMA address if supported by H/W */
Takashi Iwaib21fadb2009-05-28 12:26:15 +02002561 if ((gcap & ICH6_GCAP_64OK) && !pci_set_dma_mask(pci, DMA_BIT_MASK(64)))
Yang Hongyange9304382009-04-13 14:40:14 -07002562 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(64));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002563 else {
Yang Hongyange9304382009-04-13 14:40:14 -07002564 pci_set_dma_mask(pci, DMA_BIT_MASK(32));
2565 pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(32));
Takashi Iwai09240cf2009-03-17 07:47:18 +01002566 }
Takashi Iwaicf7aaca2008-02-06 15:05:57 +01002567
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002568 /* read number of streams from GCAP register instead of using
2569 * hardcoded value
2570 */
2571 chip->capture_streams = (gcap >> 8) & 0x0f;
2572 chip->playback_streams = (gcap >> 12) & 0x0f;
2573 if (!chip->playback_streams && !chip->capture_streams) {
Tobin Davisbcd72002008-01-15 11:23:55 +01002574 /* gcap didn't give any info, switching to old method */
2575
2576 switch (chip->driver_type) {
2577 case AZX_DRIVER_ULI:
2578 chip->playback_streams = ULI_NUM_PLAYBACK;
2579 chip->capture_streams = ULI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002580 break;
2581 case AZX_DRIVER_ATIHDMI:
2582 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
2583 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002584 break;
Yang, Libinc4da29c2008-11-13 11:07:07 +01002585 case AZX_DRIVER_GENERIC:
Tobin Davisbcd72002008-01-15 11:23:55 +01002586 default:
2587 chip->playback_streams = ICH6_NUM_PLAYBACK;
2588 chip->capture_streams = ICH6_NUM_CAPTURE;
Tobin Davisbcd72002008-01-15 11:23:55 +01002589 break;
2590 }
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002591 }
Takashi Iwai8b6ed8e2008-02-19 11:36:35 +01002592 chip->capture_index_offset = 0;
2593 chip->playback_index_offset = chip->capture_streams;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002594 chip->num_streams = chip->playback_streams + chip->capture_streams;
Takashi Iwaid01ce992007-07-27 16:52:19 +02002595 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev),
2596 GFP_KERNEL);
Pavel Machek927fc862006-08-31 17:03:43 +02002597 if (!chip->azx_dev) {
Takashi Iwai4abc1cc2009-05-19 12:16:46 +02002598 snd_printk(KERN_ERR SFX "cannot malloc azx_dev\n");
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002599 goto errout;
2600 }
2601
Takashi Iwai4ce107b2008-02-06 14:50:19 +01002602 for (i = 0; i < chip->num_streams; i++) {
2603 /* allocate memory for the BDL for each stream */
2604 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2605 snd_dma_pci_data(chip->pci),
2606 BDL_SIZE, &chip->azx_dev[i].bdl);
2607 if (err < 0) {
2608 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
2609 goto errout;
2610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002612 /* allocate memory for the position buffer */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002613 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV,
2614 snd_dma_pci_data(chip->pci),
2615 chip->num_streams * 8, &chip->posbuf);
2616 if (err < 0) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02002617 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
2618 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 /* allocate CORB/RIRB */
Takashi Iwai81740862009-05-26 15:22:00 +02002621 err = azx_alloc_cmd_io(chip);
2622 if (err < 0)
2623 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
2625 /* initialize streams */
2626 azx_init_stream(chip);
2627
2628 /* initialize chip */
Takashi Iwaicb53c622007-08-10 17:21:45 +02002629 azx_init_pci(chip);
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002630 azx_init_chip(chip, (probe_only[dev] & 2) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
2632 /* codec detection */
Pavel Machek927fc862006-08-31 17:03:43 +02002633 if (!chip->codec_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 snd_printk(KERN_ERR SFX "no codecs found!\n");
2635 err = -ENODEV;
2636 goto errout;
2637 }
2638
Takashi Iwaid01ce992007-07-27 16:52:19 +02002639 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops);
2640 if (err <0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
2642 goto errout;
2643 }
2644
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002645 strcpy(card->driver, "HDA-Intel");
Takashi Iwai18cb7102009-04-16 10:22:24 +02002646 strlcpy(card->shortname, driver_short_names[chip->driver_type],
2647 sizeof(card->shortname));
2648 snprintf(card->longname, sizeof(card->longname),
2649 "%s at 0x%lx irq %i",
2650 card->shortname, chip->addr, chip->irq);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02002651
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 *rchip = chip;
2653 return 0;
2654
2655 errout:
2656 azx_free(chip);
2657 return err;
2658}
2659
Takashi Iwaicb53c622007-08-10 17:21:45 +02002660static void power_down_all_codecs(struct azx *chip)
2661{
2662#ifdef CONFIG_SND_HDA_POWER_SAVE
2663 /* The codecs were powered up in snd_hda_codec_new().
2664 * Now all initialization done, so turn them down if possible
2665 */
2666 struct hda_codec *codec;
2667 list_for_each_entry(codec, &chip->bus->codec_list, list) {
2668 snd_hda_power_down(codec);
2669 }
2670#endif
2671}
2672
Takashi Iwaid01ce992007-07-27 16:52:19 +02002673static int __devinit azx_probe(struct pci_dev *pci,
2674 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002676 static int dev;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01002677 struct snd_card *card;
2678 struct azx *chip;
Pavel Machek927fc862006-08-31 17:03:43 +02002679 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002681 if (dev >= SNDRV_CARDS)
2682 return -ENODEV;
2683 if (!enable[dev]) {
2684 dev++;
2685 return -ENOENT;
2686 }
2687
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002688 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2689 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 snd_printk(KERN_ERR SFX "Error creating card!\n");
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002691 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 }
2693
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002694 /* set this here since it's referred in snd_hda_load_patch() */
2695 snd_card_set_dev(card, &pci->dev);
2696
Takashi Iwai5aba4f82008-01-07 15:16:37 +01002697 err = azx_create(card, pci, dev, pci_id->driver_data, &chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002698 if (err < 0)
2699 goto out_free;
Takashi Iwai421a1252005-11-17 16:11:09 +01002700 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Jaroslav Kysela2dca0bb2009-11-13 18:41:52 +01002702#ifdef CONFIG_SND_HDA_INPUT_BEEP
2703 chip->beep_mode = beep_mode[dev];
2704#endif
2705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 /* create codec instances */
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002707 err = azx_codec_create(chip, model[dev]);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002708 if (err < 0)
2709 goto out_free;
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002710#ifdef CONFIG_SND_HDA_PATCH_LOADER
Takashi Iwai41a63f12011-02-10 17:39:20 +01002711 if (patch[dev] && *patch[dev]) {
Takashi Iwai4ea6fbc2009-06-17 09:52:54 +02002712 snd_printk(KERN_ERR SFX "Applying patch firmware '%s'\n",
2713 patch[dev]);
2714 err = snd_hda_load_patch(chip->bus, patch[dev]);
2715 if (err < 0)
2716 goto out_free;
2717 }
2718#endif
Jaroslav Kysela10e77dd2010-03-26 11:04:38 +01002719 if ((probe_only[dev] & 1) == 0) {
Takashi Iwaia1e21c92009-06-17 09:33:52 +02002720 err = azx_codec_configure(chip);
2721 if (err < 0)
2722 goto out_free;
2723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
2725 /* create PCM streams */
Takashi Iwai176d5332008-07-30 15:01:44 +02002726 err = snd_hda_build_pcms(chip->bus);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002727 if (err < 0)
2728 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 /* create mixer controls */
Takashi Iwaid01ce992007-07-27 16:52:19 +02002731 err = azx_mixer_create(chip);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002732 if (err < 0)
2733 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
Takashi Iwaid01ce992007-07-27 16:52:19 +02002735 err = snd_card_register(card);
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002736 if (err < 0)
2737 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
2739 pci_set_drvdata(pci, card);
Takashi Iwaicb53c622007-08-10 17:21:45 +02002740 chip->running = 1;
2741 power_down_all_codecs(chip);
Takashi Iwai0cbf0092008-10-29 16:18:25 +01002742 azx_notifier_register(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
Andrew Paprockie25bcdb2008-01-13 11:57:17 +01002744 dev++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 return err;
Wu Fengguang41dda0f2008-11-20 09:24:52 +08002746out_free:
2747 snd_card_free(card);
2748 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749}
2750
2751static void __devexit azx_remove(struct pci_dev *pci)
2752{
2753 snd_card_free(pci_get_drvdata(pci));
2754 pci_set_drvdata(pci, NULL);
2755}
2756
2757/* PCI IDs */
Alexey Dobriyancebe41d2010-02-06 00:21:03 +02002758static DEFINE_PCI_DEVICE_TABLE(azx_ids) = {
Seth Heasleyd2f2fcd2010-01-12 17:03:35 -08002759 /* CPT */
Seth Heasley32679f92010-02-22 17:31:09 -08002760 { PCI_DEVICE(0x8086, 0x1c20), .driver_data = AZX_DRIVER_PCH },
Seth Heasleycea310e2010-09-10 16:29:56 -07002761 /* PBG */
2762 { PCI_DEVICE(0x8086, 0x1d20), .driver_data = AZX_DRIVER_PCH },
Seth Heasleyd2edeb72011-04-20 10:59:57 -07002763 /* Panther Point */
2764 { PCI_DEVICE(0x8086, 0x1e20), .driver_data = AZX_DRIVER_PCH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002765 /* SCH */
2766 { PCI_DEVICE(0x8086, 0x811b), .driver_data = AZX_DRIVER_SCH },
Takashi Iwaib6864532010-09-15 10:17:26 +02002767 /* Generic Intel */
2768 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_ANY_ID),
2769 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2770 .class_mask = 0xffffff,
2771 .driver_data = AZX_DRIVER_ICH },
Takashi Iwai87218e92008-02-21 08:13:11 +01002772 /* ATI SB 450/600 */
2773 { PCI_DEVICE(0x1002, 0x437b), .driver_data = AZX_DRIVER_ATI },
2774 { PCI_DEVICE(0x1002, 0x4383), .driver_data = AZX_DRIVER_ATI },
2775 /* ATI HDMI */
2776 { PCI_DEVICE(0x1002, 0x793b), .driver_data = AZX_DRIVER_ATIHDMI },
2777 { PCI_DEVICE(0x1002, 0x7919), .driver_data = AZX_DRIVER_ATIHDMI },
2778 { PCI_DEVICE(0x1002, 0x960f), .driver_data = AZX_DRIVER_ATIHDMI },
Libin Yang9e6dd472008-08-12 12:25:46 +02002779 { PCI_DEVICE(0x1002, 0x970f), .driver_data = AZX_DRIVER_ATIHDMI },
Takashi Iwai87218e92008-02-21 08:13:11 +01002780 { PCI_DEVICE(0x1002, 0xaa00), .driver_data = AZX_DRIVER_ATIHDMI },
2781 { PCI_DEVICE(0x1002, 0xaa08), .driver_data = AZX_DRIVER_ATIHDMI },
2782 { PCI_DEVICE(0x1002, 0xaa10), .driver_data = AZX_DRIVER_ATIHDMI },
2783 { PCI_DEVICE(0x1002, 0xaa18), .driver_data = AZX_DRIVER_ATIHDMI },
2784 { PCI_DEVICE(0x1002, 0xaa20), .driver_data = AZX_DRIVER_ATIHDMI },
2785 { PCI_DEVICE(0x1002, 0xaa28), .driver_data = AZX_DRIVER_ATIHDMI },
2786 { PCI_DEVICE(0x1002, 0xaa30), .driver_data = AZX_DRIVER_ATIHDMI },
2787 { PCI_DEVICE(0x1002, 0xaa38), .driver_data = AZX_DRIVER_ATIHDMI },
2788 { PCI_DEVICE(0x1002, 0xaa40), .driver_data = AZX_DRIVER_ATIHDMI },
2789 { PCI_DEVICE(0x1002, 0xaa48), .driver_data = AZX_DRIVER_ATIHDMI },
2790 /* VIA VT8251/VT8237A */
2791 { PCI_DEVICE(0x1106, 0x3288), .driver_data = AZX_DRIVER_VIA },
2792 /* SIS966 */
2793 { PCI_DEVICE(0x1039, 0x7502), .driver_data = AZX_DRIVER_SIS },
2794 /* ULI M5461 */
2795 { PCI_DEVICE(0x10b9, 0x5461), .driver_data = AZX_DRIVER_ULI },
2796 /* NVIDIA MCP */
Takashi Iwai0c2fd1bf42009-12-18 16:41:39 +01002797 { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID),
2798 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2799 .class_mask = 0xffffff,
2800 .driver_data = AZX_DRIVER_NVIDIA },
Kailang Yangf2690022008-05-27 11:44:55 +02002801 /* Teradici */
2802 { PCI_DEVICE(0x6549, 0x1200), .driver_data = AZX_DRIVER_TERA },
Takashi Iwai4e01f542009-04-16 08:53:34 +02002803 /* Creative X-Fi (CA0110-IBG) */
Takashi Iwai313f6e22009-05-18 12:40:52 +02002804#if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
2805 /* the following entry conflicts with snd-ctxfi driver,
2806 * as ctxfi driver mutates from HD-audio to native mode with
2807 * a special command sequence.
2808 */
Takashi Iwai4e01f542009-04-16 08:53:34 +02002809 { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE, PCI_ANY_ID),
2810 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2811 .class_mask = 0xffffff,
Takashi Iwai14d34f12010-10-21 09:03:25 +02002812 .driver_data = AZX_DRIVER_CTX },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002813#else
2814 /* this entry seems still valid -- i.e. without emu20kx chip */
Takashi Iwai14d34f12010-10-21 09:03:25 +02002815 { PCI_DEVICE(0x1102, 0x0009), .driver_data = AZX_DRIVER_CTX },
Takashi Iwai313f6e22009-05-18 12:40:52 +02002816#endif
Otavio Salvadore35d4b12010-09-26 23:35:06 -03002817 /* Vortex86MX */
2818 { PCI_DEVICE(0x17f3, 0x3010), .driver_data = AZX_DRIVER_GENERIC },
Bankim Bhavsar0f0714c52011-01-17 15:23:21 +01002819 /* VMware HDAudio */
2820 { PCI_DEVICE(0x15ad, 0x1977), .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002821 /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
Yang, Libinc4da29c2008-11-13 11:07:07 +01002822 { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_ANY_ID),
2823 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2824 .class_mask = 0xffffff,
2825 .driver_data = AZX_DRIVER_GENERIC },
Andiry Brienza9176b672009-07-17 11:32:32 +08002826 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_ANY_ID),
2827 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO << 8,
2828 .class_mask = 0xffffff,
2829 .driver_data = AZX_DRIVER_GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 { 0, }
2831};
2832MODULE_DEVICE_TABLE(pci, azx_ids);
2833
2834/* pci_driver definition */
2835static struct pci_driver driver = {
2836 .name = "HDA Intel",
2837 .id_table = azx_ids,
2838 .probe = azx_probe,
2839 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01002840#ifdef CONFIG_PM
2841 .suspend = azx_suspend,
2842 .resume = azx_resume,
2843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844};
2845
2846static int __init alsa_card_azx_init(void)
2847{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002848 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849}
2850
2851static void __exit alsa_card_azx_exit(void)
2852{
2853 pci_unregister_driver(&driver);
2854}
2855
2856module_init(alsa_card_azx_init)
2857module_exit(alsa_card_azx_exit)