blob: dbed2644a1920bb0eadaa82e8cc551d66aab10fa [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 *
3 * hda_intel.c - Implementation of primary alsa driver code base for Intel HD Audio.
4 *
5 * Copyright(c) 2004 Intel Corporation. All rights reserved.
6 *
7 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
8 * PeiSen Hou <pshou@realtek.com.tw>
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
14 *
15 * This program is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 * more details.
19 *
20 * You should have received a copy of the GNU General Public License along with
21 * this program; if not, write to the Free Software Foundation, Inc., 59
22 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 *
24 * CONTACTS:
25 *
26 * Matt Jared matt.jared@intel.com
27 * Andy Kopp andy.kopp@intel.com
28 * Dan Kogan dan.d.kogan@intel.com
29 *
30 * CHANGES:
31 *
32 * 2004.12.01 Major rewrite by tiwai, merged the work of pshou
33 *
34 */
35
36#include <sound/driver.h>
37#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>
42#include <linux/moduleparam.h>
43#include <linux/init.h>
44#include <linux/slab.h>
45#include <linux/pci.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010046#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <sound/core.h>
48#include <sound/initval.h>
49#include "hda_codec.h"
50
51
Clemens Ladischb7fe4622005-10-04 08:46:51 +020052static int index = SNDRV_DEFAULT_IDX1;
53static char *id = SNDRV_DEFAULT_STR1;
54static char *model;
55static int position_fix;
Matt Porter954fa192005-11-29 14:46:01 +010056static int probe_mask = -1;
Takashi Iwai27346162006-01-12 18:28:44 +010057static int single_cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Clemens Ladischb7fe4622005-10-04 08:46:51 +020059module_param(index, int, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020061module_param(id, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020063module_param(model, charp, 0444);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_PARM_DESC(model, "Use the given board model.");
Clemens Ladischb7fe4622005-10-04 08:46:51 +020065module_param(position_fix, int, 0444);
Takashi Iwai0be3b5d2005-09-05 17:11:40 +020066MODULE_PARM_DESC(position_fix, "Fix DMA pointer (0 = auto, 1 = none, 2 = POSBUF, 3 = FIFO size).");
Takashi Iwai606ad752005-11-24 16:03:40 +010067module_param(probe_mask, int, 0444);
68MODULE_PARM_DESC(probe_mask, "Bitmask to probe codecs (default = -1).");
Takashi Iwai27346162006-01-12 18:28:44 +010069module_param(single_cmd, bool, 0444);
70MODULE_PARM_DESC(single_cmd, "Use single command to communicate with codecs (for debugging only).");
Takashi Iwai606ad752005-11-24 16:03:40 +010071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
Takashi Iwai2b3e5842005-10-06 13:47:23 +020073/* just for backward compatibility */
74static int enable;
Takashi Iwai698444f2005-10-20 16:53:49 +020075module_param(enable, bool, 0444);
Takashi Iwai2b3e5842005-10-06 13:47:23 +020076
Linus Torvalds1da177e2005-04-16 15:20:36 -070077MODULE_LICENSE("GPL");
78MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
79 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -070080 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +020081 "{Intel, ESB2},"
Jason Gastond2981392006-01-10 11:07:37 +010082 "{Intel, ICH8},"
Takashi Iwaifc20a562005-05-12 15:00:41 +020083 "{ATI, SB450},"
84 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +020085 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +020086 "{SiS, SIS966},"
87 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -070088MODULE_DESCRIPTION("Intel HDA driver");
89
90#define SFX "hda-intel: "
91
92/*
93 * registers
94 */
95#define ICH6_REG_GCAP 0x00
96#define ICH6_REG_VMIN 0x02
97#define ICH6_REG_VMAJ 0x03
98#define ICH6_REG_OUTPAY 0x04
99#define ICH6_REG_INPAY 0x06
100#define ICH6_REG_GCTL 0x08
101#define ICH6_REG_WAKEEN 0x0c
102#define ICH6_REG_STATESTS 0x0e
103#define ICH6_REG_GSTS 0x10
104#define ICH6_REG_INTCTL 0x20
105#define ICH6_REG_INTSTS 0x24
106#define ICH6_REG_WALCLK 0x30
107#define ICH6_REG_SYNC 0x34
108#define ICH6_REG_CORBLBASE 0x40
109#define ICH6_REG_CORBUBASE 0x44
110#define ICH6_REG_CORBWP 0x48
111#define ICH6_REG_CORBRP 0x4A
112#define ICH6_REG_CORBCTL 0x4c
113#define ICH6_REG_CORBSTS 0x4d
114#define ICH6_REG_CORBSIZE 0x4e
115
116#define ICH6_REG_RIRBLBASE 0x50
117#define ICH6_REG_RIRBUBASE 0x54
118#define ICH6_REG_RIRBWP 0x58
119#define ICH6_REG_RINTCNT 0x5a
120#define ICH6_REG_RIRBCTL 0x5c
121#define ICH6_REG_RIRBSTS 0x5d
122#define ICH6_REG_RIRBSIZE 0x5e
123
124#define ICH6_REG_IC 0x60
125#define ICH6_REG_IR 0x64
126#define ICH6_REG_IRS 0x68
127#define ICH6_IRS_VALID (1<<1)
128#define ICH6_IRS_BUSY (1<<0)
129
130#define ICH6_REG_DPLBASE 0x70
131#define ICH6_REG_DPUBASE 0x74
132#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
133
134/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
135enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
136
137/* stream register offsets from stream base */
138#define ICH6_REG_SD_CTL 0x00
139#define ICH6_REG_SD_STS 0x03
140#define ICH6_REG_SD_LPIB 0x04
141#define ICH6_REG_SD_CBL 0x08
142#define ICH6_REG_SD_LVI 0x0c
143#define ICH6_REG_SD_FIFOW 0x0e
144#define ICH6_REG_SD_FIFOSIZE 0x10
145#define ICH6_REG_SD_FORMAT 0x12
146#define ICH6_REG_SD_BDLPL 0x18
147#define ICH6_REG_SD_BDLPU 0x1c
148
149/* PCI space */
150#define ICH6_PCIREG_TCSEL 0x44
151
152/*
153 * other constants
154 */
155
156/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200157/* ICH, ATI and VIA have 4 playback and 4 capture */
158#define ICH6_CAPTURE_INDEX 0
159#define ICH6_NUM_CAPTURE 4
160#define ICH6_PLAYBACK_INDEX 4
161#define ICH6_NUM_PLAYBACK 4
162
163/* ULI has 6 playback and 5 capture */
164#define ULI_CAPTURE_INDEX 0
165#define ULI_NUM_CAPTURE 5
166#define ULI_PLAYBACK_INDEX 5
167#define ULI_NUM_PLAYBACK 6
168
169/* this number is statically defined for simplicity */
170#define MAX_AZX_DEV 16
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200173#define BDL_SIZE PAGE_ALIGN(8192)
174#define AZX_MAX_FRAG (BDL_SIZE / (MAX_AZX_DEV * 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/* max buffer size - no h/w limit, you can increase as you like */
176#define AZX_MAX_BUF_SIZE (1024*1024*1024)
177/* max number of PCM devics per card */
Takashi Iwaiec9e1c52005-09-07 13:29:22 +0200178#define AZX_MAX_AUDIO_PCMS 6
179#define AZX_MAX_MODEM_PCMS 2
180#define AZX_MAX_PCMS (AZX_MAX_AUDIO_PCMS + AZX_MAX_MODEM_PCMS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182/* RIRB int mask: overrun[2], response[0] */
183#define RIRB_INT_RESPONSE 0x01
184#define RIRB_INT_OVERRUN 0x04
185#define RIRB_INT_MASK 0x05
186
187/* STATESTS int mask: SD2,SD1,SD0 */
188#define STATESTS_INT_MASK 0x07
Frederick Lif5d40b32005-05-12 14:55:20 +0200189#define AZX_MAX_CODECS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
191/* SD_CTL bits */
192#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
193#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
194#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
195#define SD_CTL_STREAM_TAG_SHIFT 20
196
197/* SD_CTL and SD_STS */
198#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
199#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
200#define SD_INT_COMPLETE 0x04 /* completion interrupt */
201#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|SD_INT_COMPLETE)
202
203/* SD_STS */
204#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
205
206/* INTCTL and INTSTS */
207#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
208#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
209#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
210
Matt41e2fce2005-07-04 17:49:55 +0200211/* GCTL unsolicited response enable bit */
212#define ICH6_GCTL_UREN (1<<8)
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/* GCTL reset bit */
215#define ICH6_GCTL_RESET (1<<0)
216
217/* CORB/RIRB control, read/write pointer */
218#define ICH6_RBCTL_DMA_EN 0x02 /* enable DMA */
219#define ICH6_RBCTL_IRQ_EN 0x01 /* enable IRQ */
220#define ICH6_RBRWP_CLR 0x8000 /* read/write pointer clear */
221/* below are so far hardcoded - should read registers in future */
222#define ICH6_MAX_CORB_ENTRIES 256
223#define ICH6_MAX_RIRB_ENTRIES 256
224
Takashi Iwaic74db862005-05-12 14:26:27 +0200225/* position fix mode */
226enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200227 POS_FIX_AUTO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200228 POS_FIX_NONE,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200229 POS_FIX_POSBUF,
230 POS_FIX_FIFO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200231};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Frederick Lif5d40b32005-05-12 14:55:20 +0200233/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200234#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
235#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
236
Vinod Gda3fca22005-09-13 18:49:12 +0200237/* Defines for Nvidia HDA support */
238#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
239#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Frederick Lif5d40b32005-05-12 14:55:20 +0200240
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
243
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100244struct azx_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 u32 *bdl; /* virtual address of the BDL */
246 dma_addr_t bdl_addr; /* physical address of the BDL */
247 volatile u32 *posbuf; /* position buffer pointer */
248
249 unsigned int bufsize; /* size of the play buffer in bytes */
250 unsigned int fragsize; /* size of each period in bytes */
251 unsigned int frags; /* number for period in the play buffer */
252 unsigned int fifo_size; /* FIFO size */
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200253 unsigned int last_pos; /* last updated period position */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 void __iomem *sd_addr; /* stream descriptor pointer */
256
257 u32 sd_int_sta_mask; /* stream int status mask */
258
259 /* pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100260 struct snd_pcm_substream *substream; /* assigned substream, set in PCM open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 unsigned int format_val; /* format value to be set in the controller and the codec */
262 unsigned char stream_tag; /* assigned stream */
263 unsigned char index; /* stream index */
264
265 unsigned int opened: 1;
266 unsigned int running: 1;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200267 unsigned int period_updating: 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
270/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100271struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 u32 *buf; /* CORB/RIRB buffer
273 * Each CORB entry is 4byte, RIRB is 8byte
274 */
275 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
276 /* for RIRB */
277 unsigned short rp, wp; /* read/write pointers */
278 int cmds; /* number of pending requests */
279 u32 res; /* last read value */
280};
281
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100282struct azx {
283 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 struct pci_dev *pci;
285
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200286 /* chip type specific */
287 int driver_type;
288 int playback_streams;
289 int playback_index_offset;
290 int capture_streams;
291 int capture_index_offset;
292 int num_streams;
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 /* pci resources */
295 unsigned long addr;
296 void __iomem *remap_addr;
297 int irq;
298
299 /* locks */
300 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100301 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200303 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100304 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 /* PCM */
307 unsigned int pcm_devs;
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100308 struct snd_pcm *pcm[AZX_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* HD codec */
311 unsigned short codec_mask;
312 struct hda_bus *bus;
313
314 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100315 struct azx_rb corb;
316 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /* BDL, CORB/RIRB and position buffers */
319 struct snd_dma_buffer bdl;
320 struct snd_dma_buffer rb;
321 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200322
323 /* flags */
324 int position_fix;
Takashi Iwaice43fba2005-05-30 20:33:44 +0200325 unsigned int initialized: 1;
Takashi Iwai27346162006-01-12 18:28:44 +0100326 unsigned int single_cmd: 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327};
328
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200329/* driver types */
330enum {
331 AZX_DRIVER_ICH,
332 AZX_DRIVER_ATI,
333 AZX_DRIVER_VIA,
334 AZX_DRIVER_SIS,
335 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200336 AZX_DRIVER_NVIDIA,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200337};
338
339static char *driver_short_names[] __devinitdata = {
340 [AZX_DRIVER_ICH] = "HDA Intel",
341 [AZX_DRIVER_ATI] = "HDA ATI SB",
342 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
343 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200344 [AZX_DRIVER_ULI] = "HDA ULI M5461",
345 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200346};
347
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348/*
349 * macros for easy use
350 */
351#define azx_writel(chip,reg,value) \
352 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
353#define azx_readl(chip,reg) \
354 readl((chip)->remap_addr + ICH6_REG_##reg)
355#define azx_writew(chip,reg,value) \
356 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
357#define azx_readw(chip,reg) \
358 readw((chip)->remap_addr + ICH6_REG_##reg)
359#define azx_writeb(chip,reg,value) \
360 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
361#define azx_readb(chip,reg) \
362 readb((chip)->remap_addr + ICH6_REG_##reg)
363
364#define azx_sd_writel(dev,reg,value) \
365 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
366#define azx_sd_readl(dev,reg) \
367 readl((dev)->sd_addr + ICH6_REG_##reg)
368#define azx_sd_writew(dev,reg,value) \
369 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
370#define azx_sd_readw(dev,reg) \
371 readw((dev)->sd_addr + ICH6_REG_##reg)
372#define azx_sd_writeb(dev,reg,value) \
373 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
374#define azx_sd_readb(dev,reg) \
375 readb((dev)->sd_addr + ICH6_REG_##reg)
376
377/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100378#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380/* Get the upper 32bit of the given dma_addr_t
381 * Compiler should optimize and eliminate the code if dma_addr_t is 32bit
382 */
383#define upper_32bit(addr) (sizeof(addr) > 4 ? (u32)((addr) >> 32) : (u32)0)
384
385
386/*
387 * Interface for HD codec
388 */
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/*
391 * CORB / RIRB interface
392 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100393static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 int err;
396
397 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
398 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
399 PAGE_SIZE, &chip->rb);
400 if (err < 0) {
401 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
402 return err;
403 }
404 return 0;
405}
406
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100407static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 /* CORB set up */
410 chip->corb.addr = chip->rb.addr;
411 chip->corb.buf = (u32 *)chip->rb.area;
412 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
413 azx_writel(chip, CORBUBASE, upper_32bit(chip->corb.addr));
414
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200415 /* set the corb size to 256 entries (ULI requires explicitly) */
416 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 /* set the corb write pointer to 0 */
418 azx_writew(chip, CORBWP, 0);
419 /* reset the corb hw read pointer */
420 azx_writew(chip, CORBRP, ICH6_RBRWP_CLR);
421 /* enable corb dma */
422 azx_writeb(chip, CORBCTL, ICH6_RBCTL_DMA_EN);
423
424 /* RIRB set up */
425 chip->rirb.addr = chip->rb.addr + 2048;
426 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
427 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
428 azx_writel(chip, RIRBUBASE, upper_32bit(chip->rirb.addr));
429
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200430 /* set the rirb size to 256 entries (ULI requires explicitly) */
431 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /* reset the rirb hw write pointer */
433 azx_writew(chip, RIRBWP, ICH6_RBRWP_CLR);
434 /* set N=1, get RIRB response interrupt for new entry */
435 azx_writew(chip, RINTCNT, 1);
436 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 chip->rirb.rp = chip->rirb.cmds = 0;
439}
440
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100441static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 /* disable ringbuffer DMAs */
444 azx_writeb(chip, RIRBCTL, 0);
445 azx_writeb(chip, CORBCTL, 0);
446}
447
448/* send a command */
449static int azx_send_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
450 unsigned int verb, unsigned int para)
451{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100452 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 unsigned int wp;
454 u32 val;
455
456 val = (u32)(codec->addr & 0x0f) << 28;
457 val |= (u32)direct << 27;
458 val |= (u32)nid << 20;
459 val |= verb << 8;
460 val |= para;
461
462 /* add command to corb */
463 wp = azx_readb(chip, CORBWP);
464 wp++;
465 wp %= ICH6_MAX_CORB_ENTRIES;
466
467 spin_lock_irq(&chip->reg_lock);
468 chip->rirb.cmds++;
469 chip->corb.buf[wp] = cpu_to_le32(val);
470 azx_writel(chip, CORBWP, wp);
471 spin_unlock_irq(&chip->reg_lock);
472
473 return 0;
474}
475
476#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
477
478/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100479static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 unsigned int rp, wp;
482 u32 res, res_ex;
483
484 wp = azx_readb(chip, RIRBWP);
485 if (wp == chip->rirb.wp)
486 return;
487 chip->rirb.wp = wp;
488
489 while (chip->rirb.rp != wp) {
490 chip->rirb.rp++;
491 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
492
493 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
494 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
495 res = le32_to_cpu(chip->rirb.buf[rp]);
496 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
497 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
498 else if (chip->rirb.cmds) {
499 chip->rirb.cmds--;
500 chip->rirb.res = res;
501 }
502 }
503}
504
505/* receive a response */
506static unsigned int azx_get_response(struct hda_codec *codec)
507{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100508 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 int timeout = 50;
510
511 while (chip->rirb.cmds) {
512 if (! --timeout) {
Randy Dunlap362775e2005-11-07 14:43:23 +0100513 if (printk_ratelimit())
514 snd_printk(KERN_ERR
515 "azx_get_response timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 chip->rirb.rp = azx_readb(chip, RIRBWP);
517 chip->rirb.cmds = 0;
518 return -1;
519 }
520 msleep(1);
521 }
522 return chip->rirb.res; /* the last value */
523}
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525/*
526 * Use the single immediate command instead of CORB/RIRB for simplicity
527 *
528 * Note: according to Intel, this is not preferred use. The command was
529 * intended for the BIOS only, and may get confused with unsolicited
530 * responses. So, we shouldn't use it for normal operation from the
531 * driver.
532 * I left the codes, however, for debugging/testing purposes.
533 */
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535/* send a command */
Takashi Iwai27346162006-01-12 18:28:44 +0100536static int azx_single_send_cmd(struct hda_codec *codec, hda_nid_t nid,
537 int direct, unsigned int verb,
538 unsigned int para)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100540 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 u32 val;
542 int timeout = 50;
543
544 val = (u32)(codec->addr & 0x0f) << 28;
545 val |= (u32)direct << 27;
546 val |= (u32)nid << 20;
547 val |= verb << 8;
548 val |= para;
549
550 while (timeout--) {
551 /* check ICB busy bit */
552 if (! (azx_readw(chip, IRS) & ICH6_IRS_BUSY)) {
553 /* Clear IRV valid bit */
554 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_VALID);
555 azx_writel(chip, IC, val);
556 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_BUSY);
557 return 0;
558 }
559 udelay(1);
560 }
561 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n", azx_readw(chip, IRS), val);
562 return -EIO;
563}
564
565/* receive a response */
Takashi Iwai27346162006-01-12 18:28:44 +0100566static unsigned int azx_single_get_response(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100568 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 int timeout = 50;
570
571 while (timeout--) {
572 /* check IRV busy bit */
573 if (azx_readw(chip, IRS) & ICH6_IRS_VALID)
574 return azx_readl(chip, IR);
575 udelay(1);
576 }
577 snd_printd(SFX "get_response timeout: IRS=0x%x\n", azx_readw(chip, IRS));
578 return (unsigned int)-1;
579}
580
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581/* reset codec link */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100582static int azx_reset(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
584 int count;
585
586 /* reset controller */
587 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
588
589 count = 50;
590 while (azx_readb(chip, GCTL) && --count)
591 msleep(1);
592
593 /* delay for >= 100us for codec PLL to settle per spec
594 * Rev 0.9 section 5.5.1
595 */
596 msleep(1);
597
598 /* Bring controller out of reset */
599 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
600
601 count = 50;
602 while (! azx_readb(chip, GCTL) && --count)
603 msleep(1);
604
605 /* Brent Chartrand said to wait >= 540us for codecs to intialize */
606 msleep(1);
607
608 /* check to see if controller is ready */
609 if (! azx_readb(chip, GCTL)) {
610 snd_printd("azx_reset: controller not ready!\n");
611 return -EBUSY;
612 }
613
Matt41e2fce2005-07-04 17:49:55 +0200614 /* Accept unsolicited responses */
615 azx_writel(chip, GCTL, azx_readl(chip, GCTL) | ICH6_GCTL_UREN);
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /* detect codecs */
618 if (! chip->codec_mask) {
619 chip->codec_mask = azx_readw(chip, STATESTS);
620 snd_printdd("codec_mask = 0x%x\n", chip->codec_mask);
621 }
622
623 return 0;
624}
625
626
627/*
628 * Lowlevel interface
629 */
630
631/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100632static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
634 /* enable controller CIE and GIE */
635 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
636 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
637}
638
639/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100640static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 int i;
643
644 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200645 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100646 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 azx_sd_writeb(azx_dev, SD_CTL,
648 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
649 }
650
651 /* disable SIE for all streams */
652 azx_writeb(chip, INTCTL, 0);
653
654 /* disable controller CIE and GIE */
655 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
656 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
657}
658
659/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100660static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
662 int i;
663
664 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200665 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100666 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
668 }
669
670 /* clear STATESTS */
671 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
672
673 /* clear rirb status */
674 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
675
676 /* clear int status */
677 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
678}
679
680/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100681static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 /* enable SIE */
684 azx_writeb(chip, INTCTL,
685 azx_readb(chip, INTCTL) | (1 << azx_dev->index));
686 /* set DMA start and interrupt mask */
687 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
688 SD_CTL_DMA_START | SD_INT_MASK);
689}
690
691/* stop a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100692static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
694 /* stop DMA */
695 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
696 ~(SD_CTL_DMA_START | SD_INT_MASK));
697 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
698 /* disable SIE */
699 azx_writeb(chip, INTCTL,
700 azx_readb(chip, INTCTL) & ~(1 << azx_dev->index));
701}
702
703
704/*
705 * initialize the chip
706 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100707static void azx_init_chip(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
Vinod Gda3fca22005-09-13 18:49:12 +0200709 unsigned char reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
712 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
713 * Ensuring these bits are 0 clears playback static on some HD Audio codecs
714 */
Vinod Gda3fca22005-09-13 18:49:12 +0200715 pci_read_config_byte (chip->pci, ICH6_PCIREG_TCSEL, &reg);
716 pci_write_config_byte(chip->pci, ICH6_PCIREG_TCSEL, reg & 0xf8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 /* reset controller */
719 azx_reset(chip);
720
721 /* initialize interrupts */
722 azx_int_clear(chip);
723 azx_int_enable(chip);
724
725 /* initialize the codec command I/O */
Takashi Iwai27346162006-01-12 18:28:44 +0100726 if (! chip->single_cmd)
727 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200729 /* program the position buffer */
730 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
731 azx_writel(chip, DPUBASE, upper_32bit(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +0200732
Vinod Gda3fca22005-09-13 18:49:12 +0200733 switch (chip->driver_type) {
734 case AZX_DRIVER_ATI:
735 /* For ATI SB450 azalia HD audio, we need to enable snoop */
Frederick Lif5d40b32005-05-12 14:55:20 +0200736 pci_read_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
Vinod Gda3fca22005-09-13 18:49:12 +0200737 &reg);
Frederick Lif5d40b32005-05-12 14:55:20 +0200738 pci_write_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
Vinod Gda3fca22005-09-13 18:49:12 +0200739 (reg & 0xf8) | ATI_SB450_HDAUDIO_ENABLE_SNOOP);
740 break;
741 case AZX_DRIVER_NVIDIA:
742 /* For NVIDIA HDA, enable snoop */
743 pci_read_config_byte(chip->pci,NVIDIA_HDA_TRANSREG_ADDR, &reg);
744 pci_write_config_byte(chip->pci,NVIDIA_HDA_TRANSREG_ADDR,
745 (reg & 0xf0) | NVIDIA_HDA_ENABLE_COHBITS);
746 break;
747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750
751/*
752 * interrupt handler
753 */
754static irqreturn_t azx_interrupt(int irq, void* dev_id, struct pt_regs *regs)
755{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100756 struct azx *chip = dev_id;
757 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 u32 status;
759 int i;
760
761 spin_lock(&chip->reg_lock);
762
763 status = azx_readl(chip, INTSTS);
764 if (status == 0) {
765 spin_unlock(&chip->reg_lock);
766 return IRQ_NONE;
767 }
768
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200769 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 azx_dev = &chip->azx_dev[i];
771 if (status & azx_dev->sd_int_sta_mask) {
772 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
773 if (azx_dev->substream && azx_dev->running) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200774 azx_dev->period_updating = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 spin_unlock(&chip->reg_lock);
776 snd_pcm_period_elapsed(azx_dev->substream);
777 spin_lock(&chip->reg_lock);
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200778 azx_dev->period_updating = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780 }
781 }
782
783 /* clear rirb int */
784 status = azx_readb(chip, RIRBSTS);
785 if (status & RIRB_INT_MASK) {
Takashi Iwai27346162006-01-12 18:28:44 +0100786 if (! chip->single_cmd && (status & RIRB_INT_RESPONSE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 azx_update_rirb(chip);
788 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
789 }
790
791#if 0
792 /* clear state status int */
793 if (azx_readb(chip, STATESTS) & 0x04)
794 azx_writeb(chip, STATESTS, 0x04);
795#endif
796 spin_unlock(&chip->reg_lock);
797
798 return IRQ_HANDLED;
799}
800
801
802/*
803 * set up BDL entries
804 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100805static void azx_setup_periods(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 u32 *bdl = azx_dev->bdl;
808 dma_addr_t dma_addr = azx_dev->substream->runtime->dma_addr;
809 int idx;
810
811 /* reset BDL address */
812 azx_sd_writel(azx_dev, SD_BDLPL, 0);
813 azx_sd_writel(azx_dev, SD_BDLPU, 0);
814
815 /* program the initial BDL entries */
816 for (idx = 0; idx < azx_dev->frags; idx++) {
817 unsigned int off = idx << 2; /* 4 dword step */
818 dma_addr_t addr = dma_addr + idx * azx_dev->fragsize;
819 /* program the address field of the BDL entry */
820 bdl[off] = cpu_to_le32((u32)addr);
821 bdl[off+1] = cpu_to_le32(upper_32bit(addr));
822
823 /* program the size field of the BDL entry */
824 bdl[off+2] = cpu_to_le32(azx_dev->fragsize);
825
826 /* program the IOC to enable interrupt when buffer completes */
827 bdl[off+3] = cpu_to_le32(0x01);
828 }
829}
830
831/*
832 * set up the SD for streaming
833 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100834static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 unsigned char val;
837 int timeout;
838
839 /* make sure the run bit is zero for SD */
840 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) & ~SD_CTL_DMA_START);
841 /* reset stream */
842 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) | SD_CTL_STREAM_RESET);
843 udelay(3);
844 timeout = 300;
845 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
846 --timeout)
847 ;
848 val &= ~SD_CTL_STREAM_RESET;
849 azx_sd_writeb(azx_dev, SD_CTL, val);
850 udelay(3);
851
852 timeout = 300;
853 /* waiting for hardware to report that the stream is out of reset */
854 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
855 --timeout)
856 ;
857
858 /* program the stream_tag */
859 azx_sd_writel(azx_dev, SD_CTL,
860 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK) |
861 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
862
863 /* program the length of samples in cyclic buffer */
864 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
865
866 /* program the stream format */
867 /* this value needs to be the same as the one programmed */
868 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
869
870 /* program the stream LVI (last valid index) of the BDL */
871 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
872
873 /* program the BDL address */
874 /* lower BDL address */
875 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl_addr);
876 /* upper BDL address */
877 azx_sd_writel(azx_dev, SD_BDLPU, upper_32bit(azx_dev->bdl_addr));
878
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200879 /* enable the position buffer */
880 if (! (azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
881 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
Takashi Iwaic74db862005-05-12 14:26:27 +0200882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /* set the interrupt enable bits in the descriptor control register */
884 azx_sd_writel(azx_dev, SD_CTL, azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
885
886 return 0;
887}
888
889
890/*
891 * Codec initialization
892 */
893
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100894static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 struct hda_bus_template bus_temp;
897 int c, codecs, err;
898
899 memset(&bus_temp, 0, sizeof(bus_temp));
900 bus_temp.private_data = chip;
901 bus_temp.modelname = model;
902 bus_temp.pci = chip->pci;
Takashi Iwai27346162006-01-12 18:28:44 +0100903 if (chip->single_cmd) {
904 bus_temp.ops.command = azx_single_send_cmd;
905 bus_temp.ops.get_response = azx_single_get_response;
906 } else {
907 bus_temp.ops.command = azx_send_cmd;
908 bus_temp.ops.get_response = azx_get_response;
909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
911 if ((err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus)) < 0)
912 return err;
913
914 codecs = 0;
915 for (c = 0; c < AZX_MAX_CODECS; c++) {
Takashi Iwai606ad752005-11-24 16:03:40 +0100916 if ((chip->codec_mask & (1 << c)) & probe_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 err = snd_hda_codec_new(chip->bus, c, NULL);
918 if (err < 0)
919 continue;
920 codecs++;
921 }
922 }
923 if (! codecs) {
924 snd_printk(KERN_ERR SFX "no codecs initialized\n");
925 return -ENXIO;
926 }
927
928 return 0;
929}
930
931
932/*
933 * PCM support
934 */
935
936/* assign a stream for the PCM */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100937static inline struct azx_dev *azx_assign_device(struct azx *chip, int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200939 int dev, i, nums;
940 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
941 dev = chip->playback_index_offset;
942 nums = chip->playback_streams;
943 } else {
944 dev = chip->capture_index_offset;
945 nums = chip->capture_streams;
946 }
947 for (i = 0; i < nums; i++, dev++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (! chip->azx_dev[dev].opened) {
949 chip->azx_dev[dev].opened = 1;
950 return &chip->azx_dev[dev];
951 }
952 return NULL;
953}
954
955/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100956static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
958 azx_dev->opened = 0;
959}
960
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100961static struct snd_pcm_hardware azx_pcm_hw = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
963 SNDRV_PCM_INFO_BLOCK_TRANSFER |
964 SNDRV_PCM_INFO_MMAP_VALID |
Jaroslav Kysela47123192005-08-15 20:53:07 +0200965 SNDRV_PCM_INFO_PAUSE /*|*/
966 /*SNDRV_PCM_INFO_RESUME*/),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 .formats = SNDRV_PCM_FMTBIT_S16_LE,
968 .rates = SNDRV_PCM_RATE_48000,
969 .rate_min = 48000,
970 .rate_max = 48000,
971 .channels_min = 2,
972 .channels_max = 2,
973 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
974 .period_bytes_min = 128,
975 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
976 .periods_min = 2,
977 .periods_max = AZX_MAX_FRAG,
978 .fifo_size = 0,
979};
980
981struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100982 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 struct hda_codec *codec;
984 struct hda_pcm_stream *hinfo[2];
985};
986
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100987static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
989 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
990 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100991 struct azx *chip = apcm->chip;
992 struct azx_dev *azx_dev;
993 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 unsigned long flags;
995 int err;
996
Ingo Molnar62932df2006-01-16 16:34:20 +0100997 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 azx_dev = azx_assign_device(chip, substream->stream);
999 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001000 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 return -EBUSY;
1002 }
1003 runtime->hw = azx_pcm_hw;
1004 runtime->hw.channels_min = hinfo->channels_min;
1005 runtime->hw.channels_max = hinfo->channels_max;
1006 runtime->hw.formats = hinfo->formats;
1007 runtime->hw.rates = hinfo->rates;
1008 snd_pcm_limit_hw_rates(runtime);
1009 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
1010 if ((err = hinfo->ops.open(hinfo, apcm->codec, substream)) < 0) {
1011 azx_release_device(azx_dev);
Ingo Molnar62932df2006-01-16 16:34:20 +01001012 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 return err;
1014 }
1015 spin_lock_irqsave(&chip->reg_lock, flags);
1016 azx_dev->substream = substream;
1017 azx_dev->running = 0;
1018 spin_unlock_irqrestore(&chip->reg_lock, flags);
1019
1020 runtime->private_data = azx_dev;
Ingo Molnar62932df2006-01-16 16:34:20 +01001021 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return 0;
1023}
1024
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001025static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
1027 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1028 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001029 struct azx *chip = apcm->chip;
1030 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 unsigned long flags;
1032
Ingo Molnar62932df2006-01-16 16:34:20 +01001033 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 spin_lock_irqsave(&chip->reg_lock, flags);
1035 azx_dev->substream = NULL;
1036 azx_dev->running = 0;
1037 spin_unlock_irqrestore(&chip->reg_lock, flags);
1038 azx_release_device(azx_dev);
1039 hinfo->ops.close(hinfo, apcm->codec, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001040 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 return 0;
1042}
1043
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001044static int azx_pcm_hw_params(struct snd_pcm_substream *substream, struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
1046 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
1047}
1048
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001049static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001052 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1054
1055 /* reset BDL address */
1056 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1057 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1058 azx_sd_writel(azx_dev, SD_CTL, 0);
1059
1060 hinfo->ops.cleanup(hinfo, apcm->codec, substream);
1061
1062 return snd_pcm_lib_free_pages(substream);
1063}
1064
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001065static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066{
1067 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001068 struct azx *chip = apcm->chip;
1069 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001071 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 azx_dev->bufsize = snd_pcm_lib_buffer_bytes(substream);
1074 azx_dev->fragsize = snd_pcm_lib_period_bytes(substream);
1075 azx_dev->frags = azx_dev->bufsize / azx_dev->fragsize;
1076 azx_dev->format_val = snd_hda_calc_stream_format(runtime->rate,
1077 runtime->channels,
1078 runtime->format,
1079 hinfo->maxbps);
1080 if (! azx_dev->format_val) {
1081 snd_printk(KERN_ERR SFX "invalid format_val, rate=%d, ch=%d, format=%d\n",
1082 runtime->rate, runtime->channels, runtime->format);
1083 return -EINVAL;
1084 }
1085
1086 snd_printdd("azx_pcm_prepare: bufsize=0x%x, fragsize=0x%x, format=0x%x\n",
1087 azx_dev->bufsize, azx_dev->fragsize, azx_dev->format_val);
1088 azx_setup_periods(azx_dev);
1089 azx_setup_controller(chip, azx_dev);
1090 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1091 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1092 else
1093 azx_dev->fifo_size = 0;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001094 azx_dev->last_pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 return hinfo->ops.prepare(hinfo, apcm->codec, azx_dev->stream_tag,
1097 azx_dev->format_val, substream);
1098}
1099
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001100static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101{
1102 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001103 struct azx_dev *azx_dev = get_azx_dev(substream);
1104 struct azx *chip = apcm->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 int err = 0;
1106
1107 spin_lock(&chip->reg_lock);
1108 switch (cmd) {
1109 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1110 case SNDRV_PCM_TRIGGER_RESUME:
1111 case SNDRV_PCM_TRIGGER_START:
1112 azx_stream_start(chip, azx_dev);
1113 azx_dev->running = 1;
1114 break;
1115 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001116 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 case SNDRV_PCM_TRIGGER_STOP:
1118 azx_stream_stop(chip, azx_dev);
1119 azx_dev->running = 0;
1120 break;
1121 default:
1122 err = -EINVAL;
1123 }
1124 spin_unlock(&chip->reg_lock);
1125 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH ||
Jaroslav Kysela47123192005-08-15 20:53:07 +02001126 cmd == SNDRV_PCM_TRIGGER_SUSPEND ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 cmd == SNDRV_PCM_TRIGGER_STOP) {
1128 int timeout = 5000;
1129 while (azx_sd_readb(azx_dev, SD_CTL) & SD_CTL_DMA_START && --timeout)
1130 ;
1131 }
1132 return err;
1133}
1134
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001135static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Takashi Iwaic74db862005-05-12 14:26:27 +02001137 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001138 struct azx *chip = apcm->chip;
1139 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 unsigned int pos;
1141
Takashi Iwaic74db862005-05-12 14:26:27 +02001142 if (chip->position_fix == POS_FIX_POSBUF) {
1143 /* use the position buffer */
1144 pos = *azx_dev->posbuf;
1145 } else {
1146 /* read LPIB */
1147 pos = azx_sd_readl(azx_dev, SD_LPIB);
1148 if (chip->position_fix == POS_FIX_FIFO)
1149 pos += azx_dev->fifo_size;
1150 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (pos >= azx_dev->bufsize)
1152 pos = 0;
1153 return bytes_to_frames(substream->runtime, pos);
1154}
1155
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001156static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 .open = azx_pcm_open,
1158 .close = azx_pcm_close,
1159 .ioctl = snd_pcm_lib_ioctl,
1160 .hw_params = azx_pcm_hw_params,
1161 .hw_free = azx_pcm_hw_free,
1162 .prepare = azx_pcm_prepare,
1163 .trigger = azx_pcm_trigger,
1164 .pointer = azx_pcm_pointer,
1165};
1166
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001167static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
1169 kfree(pcm->private_data);
1170}
1171
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001172static int __devinit create_codec_pcm(struct azx *chip, struct hda_codec *codec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 struct hda_pcm *cpcm, int pcm_dev)
1174{
1175 int err;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001176 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 struct azx_pcm *apcm;
1178
1179 snd_assert(cpcm->stream[0].substreams || cpcm->stream[1].substreams, return -EINVAL);
1180 snd_assert(cpcm->name, return -EINVAL);
1181
1182 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
1183 cpcm->stream[0].substreams, cpcm->stream[1].substreams,
1184 &pcm);
1185 if (err < 0)
1186 return err;
1187 strcpy(pcm->name, cpcm->name);
1188 apcm = kmalloc(sizeof(*apcm), GFP_KERNEL);
1189 if (apcm == NULL)
1190 return -ENOMEM;
1191 apcm->chip = chip;
1192 apcm->codec = codec;
1193 apcm->hinfo[0] = &cpcm->stream[0];
1194 apcm->hinfo[1] = &cpcm->stream[1];
1195 pcm->private_data = apcm;
1196 pcm->private_free = azx_pcm_free;
1197 if (cpcm->stream[0].substreams)
1198 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &azx_pcm_ops);
1199 if (cpcm->stream[1].substreams)
1200 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &azx_pcm_ops);
1201 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1202 snd_dma_pci_data(chip->pci),
1203 1024 * 64, 1024 * 128);
1204 chip->pcm[pcm_dev] = pcm;
Jaroslav Kysela47123192005-08-15 20:53:07 +02001205 chip->pcm_devs = pcm_dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 return 0;
1208}
1209
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001210static int __devinit azx_pcm_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
1212 struct list_head *p;
1213 struct hda_codec *codec;
1214 int c, err;
1215 int pcm_dev;
1216
1217 if ((err = snd_hda_build_pcms(chip->bus)) < 0)
1218 return err;
1219
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001220 /* create audio PCMs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 pcm_dev = 0;
1222 list_for_each(p, &chip->bus->codec_list) {
1223 codec = list_entry(p, struct hda_codec, list);
1224 for (c = 0; c < codec->num_pcms; c++) {
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001225 if (codec->pcm_info[c].is_modem)
1226 continue; /* create later */
1227 if (pcm_dev >= AZX_MAX_AUDIO_PCMS) {
1228 snd_printk(KERN_ERR SFX "Too many audio PCMs\n");
1229 return -EINVAL;
1230 }
1231 err = create_codec_pcm(chip, codec, &codec->pcm_info[c], pcm_dev);
1232 if (err < 0)
1233 return err;
1234 pcm_dev++;
1235 }
1236 }
1237
1238 /* create modem PCMs */
1239 pcm_dev = AZX_MAX_AUDIO_PCMS;
1240 list_for_each(p, &chip->bus->codec_list) {
1241 codec = list_entry(p, struct hda_codec, list);
1242 for (c = 0; c < codec->num_pcms; c++) {
1243 if (! codec->pcm_info[c].is_modem)
1244 continue; /* already created */
Takashi Iwaia28f1cd2005-09-07 15:26:56 +02001245 if (pcm_dev >= AZX_MAX_PCMS) {
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001246 snd_printk(KERN_ERR SFX "Too many modem PCMs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return -EINVAL;
1248 }
1249 err = create_codec_pcm(chip, codec, &codec->pcm_info[c], pcm_dev);
1250 if (err < 0)
1251 return err;
Sasha Khapyorsky6632d192005-09-29 11:48:17 +02001252 chip->pcm[pcm_dev]->dev_class = SNDRV_PCM_CLASS_MODEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 pcm_dev++;
1254 }
1255 }
1256 return 0;
1257}
1258
1259/*
1260 * mixer creation - all stuff is implemented in hda module
1261 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001262static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263{
1264 return snd_hda_build_controls(chip->bus);
1265}
1266
1267
1268/*
1269 * initialize SD streams
1270 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001271static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272{
1273 int i;
1274
1275 /* initialize each stream (aka device)
1276 * assign the starting bdl address to each stream (device) and initialize
1277 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001278 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 unsigned int off = sizeof(u32) * (i * AZX_MAX_FRAG * 4);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001280 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 azx_dev->bdl = (u32 *)(chip->bdl.area + off);
1282 azx_dev->bdl_addr = chip->bdl.addr + off;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001283 azx_dev->posbuf = (volatile u32 *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
1285 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
1286 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
1287 azx_dev->sd_int_sta_mask = 1 << i;
1288 /* stream tag: must be non-zero and unique */
1289 azx_dev->index = i;
1290 azx_dev->stream_tag = i + 1;
1291 }
1292
1293 return 0;
1294}
1295
1296
1297#ifdef CONFIG_PM
1298/*
1299 * power management
1300 */
Takashi Iwai421a1252005-11-17 16:11:09 +01001301static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Takashi Iwai421a1252005-11-17 16:11:09 +01001303 struct snd_card *card = pci_get_drvdata(pci);
1304 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 int i;
1306
Takashi Iwai421a1252005-11-17 16:11:09 +01001307 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 for (i = 0; i < chip->pcm_devs; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01001309 snd_pcm_suspend_all(chip->pcm[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 snd_hda_suspend(chip->bus, state);
Takashi Iwai27346162006-01-12 18:28:44 +01001311 if (! chip->single_cmd)
1312 azx_free_cmd_io(chip);
Takashi Iwai421a1252005-11-17 16:11:09 +01001313 pci_disable_device(pci);
1314 pci_save_state(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return 0;
1316}
1317
Takashi Iwai421a1252005-11-17 16:11:09 +01001318static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Takashi Iwai421a1252005-11-17 16:11:09 +01001320 struct snd_card *card = pci_get_drvdata(pci);
1321 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Takashi Iwai421a1252005-11-17 16:11:09 +01001323 pci_restore_state(pci);
1324 pci_enable_device(pci);
1325 pci_set_master(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 azx_init_chip(chip);
1327 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01001328 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return 0;
1330}
1331#endif /* CONFIG_PM */
1332
1333
1334/*
1335 * destructor
1336 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001337static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
Takashi Iwaice43fba2005-05-30 20:33:44 +02001339 if (chip->initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 int i;
1341
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001342 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 azx_stream_stop(chip, &chip->azx_dev[i]);
1344
1345 /* disable interrupts */
1346 azx_int_disable(chip);
1347 azx_int_clear(chip);
1348
1349 /* disable CORB/RIRB */
Takashi Iwai27346162006-01-12 18:28:44 +01001350 if (! chip->single_cmd)
1351 azx_free_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
1353 /* disable position buffer */
1354 azx_writel(chip, DPLBASE, 0);
1355 azx_writel(chip, DPUBASE, 0);
1356
1357 /* wait a little for interrupts to finish */
1358 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
1360
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001361 if (chip->remap_addr)
1362 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 if (chip->irq >= 0)
1364 free_irq(chip->irq, (void*)chip);
1365
1366 if (chip->bdl.area)
1367 snd_dma_free_pages(&chip->bdl);
1368 if (chip->rb.area)
1369 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 if (chip->posbuf.area)
1371 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 pci_release_regions(chip->pci);
1373 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001374 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 kfree(chip);
1376
1377 return 0;
1378}
1379
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001380static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
1382 return azx_free(device->device_data);
1383}
1384
1385/*
1386 * constructor
1387 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001388static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai606ad752005-11-24 16:03:40 +01001389 int driver_type,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001390 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001392 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 int err = 0;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001394 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 .dev_free = azx_dev_free,
1396 };
1397
1398 *rchip = NULL;
1399
1400 if ((err = pci_enable_device(pci)) < 0)
1401 return err;
1402
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001403 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404
1405 if (NULL == chip) {
1406 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
1407 pci_disable_device(pci);
1408 return -ENOMEM;
1409 }
1410
1411 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01001412 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 chip->card = card;
1414 chip->pci = pci;
1415 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001416 chip->driver_type = driver_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Takashi Iwai606ad752005-11-24 16:03:40 +01001418 chip->position_fix = position_fix ? position_fix : POS_FIX_POSBUF;
Takashi Iwai27346162006-01-12 18:28:44 +01001419 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02001420
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001421#if BITS_PER_LONG != 64
1422 /* Fix up base address on ULI M5461 */
1423 if (chip->driver_type == AZX_DRIVER_ULI) {
1424 u16 tmp3;
1425 pci_read_config_word(pci, 0x40, &tmp3);
1426 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
1427 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
1428 }
1429#endif
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if ((err = pci_request_regions(pci, "ICH HD audio")) < 0) {
1432 kfree(chip);
1433 pci_disable_device(pci);
1434 return err;
1435 }
1436
1437 chip->addr = pci_resource_start(pci,0);
1438 chip->remap_addr = ioremap_nocache(chip->addr, pci_resource_len(pci,0));
1439 if (chip->remap_addr == NULL) {
1440 snd_printk(KERN_ERR SFX "ioremap error\n");
1441 err = -ENXIO;
1442 goto errout;
1443 }
1444
1445 if (request_irq(pci->irq, azx_interrupt, SA_INTERRUPT|SA_SHIRQ,
1446 "HDA Intel", (void*)chip)) {
1447 snd_printk(KERN_ERR SFX "unable to grab IRQ %d\n", pci->irq);
1448 err = -EBUSY;
1449 goto errout;
1450 }
1451 chip->irq = pci->irq;
1452
1453 pci_set_master(pci);
1454 synchronize_irq(chip->irq);
1455
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001456 switch (chip->driver_type) {
1457 case AZX_DRIVER_ULI:
1458 chip->playback_streams = ULI_NUM_PLAYBACK;
1459 chip->capture_streams = ULI_NUM_CAPTURE;
1460 chip->playback_index_offset = ULI_PLAYBACK_INDEX;
1461 chip->capture_index_offset = ULI_CAPTURE_INDEX;
1462 break;
1463 default:
1464 chip->playback_streams = ICH6_NUM_PLAYBACK;
1465 chip->capture_streams = ICH6_NUM_CAPTURE;
1466 chip->playback_index_offset = ICH6_PLAYBACK_INDEX;
1467 chip->capture_index_offset = ICH6_CAPTURE_INDEX;
1468 break;
1469 }
1470 chip->num_streams = chip->playback_streams + chip->capture_streams;
1471 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev), GFP_KERNEL);
1472 if (! chip->azx_dev) {
1473 snd_printk(KERN_ERR "cannot malloc azx_dev\n");
1474 goto errout;
1475 }
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 /* allocate memory for the BDL for each stream */
1478 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001479 BDL_SIZE, &chip->bdl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
1481 goto errout;
1482 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001483 /* allocate memory for the position buffer */
1484 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1485 chip->num_streams * 8, &chip->posbuf)) < 0) {
1486 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
1487 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 /* allocate CORB/RIRB */
Takashi Iwai27346162006-01-12 18:28:44 +01001490 if (! chip->single_cmd)
1491 if ((err = azx_alloc_cmd_io(chip)) < 0)
1492 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
1494 /* initialize streams */
1495 azx_init_stream(chip);
1496
1497 /* initialize chip */
1498 azx_init_chip(chip);
1499
Takashi Iwaice43fba2005-05-30 20:33:44 +02001500 chip->initialized = 1;
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 /* codec detection */
1503 if (! chip->codec_mask) {
1504 snd_printk(KERN_ERR SFX "no codecs found!\n");
1505 err = -ENODEV;
1506 goto errout;
1507 }
1508
1509 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) <0) {
1510 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
1511 goto errout;
1512 }
1513
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001514 strcpy(card->driver, "HDA-Intel");
1515 strcpy(card->shortname, driver_short_names[chip->driver_type]);
1516 sprintf(card->longname, "%s at 0x%lx irq %i", card->shortname, chip->addr, chip->irq);
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 *rchip = chip;
1519 return 0;
1520
1521 errout:
1522 azx_free(chip);
1523 return err;
1524}
1525
1526static int __devinit azx_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
1527{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001528 struct snd_card *card;
1529 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 int err = 0;
1531
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001532 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 if (NULL == card) {
1534 snd_printk(KERN_ERR SFX "Error creating card!\n");
1535 return -ENOMEM;
1536 }
1537
Takashi Iwai606ad752005-11-24 16:03:40 +01001538 if ((err = azx_create(card, pci, pci_id->driver_data,
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001539 &chip)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 snd_card_free(card);
1541 return err;
1542 }
Takashi Iwai421a1252005-11-17 16:11:09 +01001543 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 /* create codec instances */
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001546 if ((err = azx_codec_create(chip, model)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 snd_card_free(card);
1548 return err;
1549 }
1550
1551 /* create PCM streams */
1552 if ((err = azx_pcm_create(chip)) < 0) {
1553 snd_card_free(card);
1554 return err;
1555 }
1556
1557 /* create mixer controls */
1558 if ((err = azx_mixer_create(chip)) < 0) {
1559 snd_card_free(card);
1560 return err;
1561 }
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 snd_card_set_dev(card, &pci->dev);
1564
1565 if ((err = snd_card_register(card)) < 0) {
1566 snd_card_free(card);
1567 return err;
1568 }
1569
1570 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
1572 return err;
1573}
1574
1575static void __devexit azx_remove(struct pci_dev *pci)
1576{
1577 snd_card_free(pci_get_drvdata(pci));
1578 pci_set_drvdata(pci, NULL);
1579}
1580
1581/* PCI IDs */
1582static struct pci_device_id azx_ids[] = {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001583 { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH6 */
1584 { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH7 */
1585 { 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ESB2 */
Jason Gastond2981392006-01-10 11:07:37 +01001586 { 0x8086, 0x284b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH8 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001587 { 0x1002, 0x437b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATI }, /* ATI SB450 */
1588 { 0x1106, 0x3288, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_VIA }, /* VIA VT8251/VT8237A */
1589 { 0x1039, 0x7502, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_SIS }, /* SIS966 */
1590 { 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ULI }, /* ULI M5461 */
Vinod Gda3fca22005-09-13 18:49:12 +02001591 { 0x10de, 0x026c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA 026c */
1592 { 0x10de, 0x0371, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA 0371 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 { 0, }
1594};
1595MODULE_DEVICE_TABLE(pci, azx_ids);
1596
1597/* pci_driver definition */
1598static struct pci_driver driver = {
1599 .name = "HDA Intel",
1600 .id_table = azx_ids,
1601 .probe = azx_probe,
1602 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01001603#ifdef CONFIG_PM
1604 .suspend = azx_suspend,
1605 .resume = azx_resume,
1606#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607};
1608
1609static int __init alsa_card_azx_init(void)
1610{
Takashi Iwai01d25d42005-04-11 16:58:24 +02001611 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
1614static void __exit alsa_card_azx_exit(void)
1615{
1616 pci_unregister_driver(&driver);
1617}
1618
1619module_init(alsa_card_azx_init)
1620module_exit(alsa_card_azx_exit)