blob: 0154389bf95b93a81ad491f9f30ce052fddd129d [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},"
Felix Kuehling89be83f2006-03-31 12:33:59 +020084 "{ATI, SB600},"
Felix Kuehling778b6e12006-05-17 11:22:21 +020085 "{ATI, RS600},"
Takashi Iwaifc20a562005-05-12 15:00:41 +020086 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +020087 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +020088 "{SiS, SIS966},"
89 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090MODULE_DESCRIPTION("Intel HDA driver");
91
92#define SFX "hda-intel: "
93
94/*
95 * registers
96 */
97#define ICH6_REG_GCAP 0x00
98#define ICH6_REG_VMIN 0x02
99#define ICH6_REG_VMAJ 0x03
100#define ICH6_REG_OUTPAY 0x04
101#define ICH6_REG_INPAY 0x06
102#define ICH6_REG_GCTL 0x08
103#define ICH6_REG_WAKEEN 0x0c
104#define ICH6_REG_STATESTS 0x0e
105#define ICH6_REG_GSTS 0x10
106#define ICH6_REG_INTCTL 0x20
107#define ICH6_REG_INTSTS 0x24
108#define ICH6_REG_WALCLK 0x30
109#define ICH6_REG_SYNC 0x34
110#define ICH6_REG_CORBLBASE 0x40
111#define ICH6_REG_CORBUBASE 0x44
112#define ICH6_REG_CORBWP 0x48
113#define ICH6_REG_CORBRP 0x4A
114#define ICH6_REG_CORBCTL 0x4c
115#define ICH6_REG_CORBSTS 0x4d
116#define ICH6_REG_CORBSIZE 0x4e
117
118#define ICH6_REG_RIRBLBASE 0x50
119#define ICH6_REG_RIRBUBASE 0x54
120#define ICH6_REG_RIRBWP 0x58
121#define ICH6_REG_RINTCNT 0x5a
122#define ICH6_REG_RIRBCTL 0x5c
123#define ICH6_REG_RIRBSTS 0x5d
124#define ICH6_REG_RIRBSIZE 0x5e
125
126#define ICH6_REG_IC 0x60
127#define ICH6_REG_IR 0x64
128#define ICH6_REG_IRS 0x68
129#define ICH6_IRS_VALID (1<<1)
130#define ICH6_IRS_BUSY (1<<0)
131
132#define ICH6_REG_DPLBASE 0x70
133#define ICH6_REG_DPUBASE 0x74
134#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
135
136/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
137enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
138
139/* stream register offsets from stream base */
140#define ICH6_REG_SD_CTL 0x00
141#define ICH6_REG_SD_STS 0x03
142#define ICH6_REG_SD_LPIB 0x04
143#define ICH6_REG_SD_CBL 0x08
144#define ICH6_REG_SD_LVI 0x0c
145#define ICH6_REG_SD_FIFOW 0x0e
146#define ICH6_REG_SD_FIFOSIZE 0x10
147#define ICH6_REG_SD_FORMAT 0x12
148#define ICH6_REG_SD_BDLPL 0x18
149#define ICH6_REG_SD_BDLPU 0x1c
150
151/* PCI space */
152#define ICH6_PCIREG_TCSEL 0x44
153
154/*
155 * other constants
156 */
157
158/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200159/* ICH, ATI and VIA have 4 playback and 4 capture */
160#define ICH6_CAPTURE_INDEX 0
161#define ICH6_NUM_CAPTURE 4
162#define ICH6_PLAYBACK_INDEX 4
163#define ICH6_NUM_PLAYBACK 4
164
165/* ULI has 6 playback and 5 capture */
166#define ULI_CAPTURE_INDEX 0
167#define ULI_NUM_CAPTURE 5
168#define ULI_PLAYBACK_INDEX 5
169#define ULI_NUM_PLAYBACK 6
170
Felix Kuehling778b6e12006-05-17 11:22:21 +0200171/* ATI HDMI has 1 playback and 0 capture */
172#define ATIHDMI_CAPTURE_INDEX 0
173#define ATIHDMI_NUM_CAPTURE 0
174#define ATIHDMI_PLAYBACK_INDEX 0
175#define ATIHDMI_NUM_PLAYBACK 1
176
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200177/* this number is statically defined for simplicity */
178#define MAX_AZX_DEV 16
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200181#define BDL_SIZE PAGE_ALIGN(8192)
182#define AZX_MAX_FRAG (BDL_SIZE / (MAX_AZX_DEV * 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/* max buffer size - no h/w limit, you can increase as you like */
184#define AZX_MAX_BUF_SIZE (1024*1024*1024)
185/* max number of PCM devics per card */
Takashi Iwaiec9e1c52005-09-07 13:29:22 +0200186#define AZX_MAX_AUDIO_PCMS 6
187#define AZX_MAX_MODEM_PCMS 2
188#define AZX_MAX_PCMS (AZX_MAX_AUDIO_PCMS + AZX_MAX_MODEM_PCMS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190/* RIRB int mask: overrun[2], response[0] */
191#define RIRB_INT_RESPONSE 0x01
192#define RIRB_INT_OVERRUN 0x04
193#define RIRB_INT_MASK 0x05
194
195/* STATESTS int mask: SD2,SD1,SD0 */
196#define STATESTS_INT_MASK 0x07
Frederick Lif5d40b32005-05-12 14:55:20 +0200197#define AZX_MAX_CODECS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199/* SD_CTL bits */
200#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
201#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
202#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
203#define SD_CTL_STREAM_TAG_SHIFT 20
204
205/* SD_CTL and SD_STS */
206#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
207#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
208#define SD_INT_COMPLETE 0x04 /* completion interrupt */
209#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|SD_INT_COMPLETE)
210
211/* SD_STS */
212#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
213
214/* INTCTL and INTSTS */
215#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
216#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
217#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
218
Matt41e2fce2005-07-04 17:49:55 +0200219/* GCTL unsolicited response enable bit */
220#define ICH6_GCTL_UREN (1<<8)
221
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222/* GCTL reset bit */
223#define ICH6_GCTL_RESET (1<<0)
224
225/* CORB/RIRB control, read/write pointer */
226#define ICH6_RBCTL_DMA_EN 0x02 /* enable DMA */
227#define ICH6_RBCTL_IRQ_EN 0x01 /* enable IRQ */
228#define ICH6_RBRWP_CLR 0x8000 /* read/write pointer clear */
229/* below are so far hardcoded - should read registers in future */
230#define ICH6_MAX_CORB_ENTRIES 256
231#define ICH6_MAX_RIRB_ENTRIES 256
232
Takashi Iwaic74db862005-05-12 14:26:27 +0200233/* position fix mode */
234enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200235 POS_FIX_AUTO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200236 POS_FIX_NONE,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200237 POS_FIX_POSBUF,
238 POS_FIX_FIFO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200239};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Frederick Lif5d40b32005-05-12 14:55:20 +0200241/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200242#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
243#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
244
Vinod Gda3fca22005-09-13 18:49:12 +0200245/* Defines for Nvidia HDA support */
246#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
247#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
Frederick Lif5d40b32005-05-12 14:55:20 +0200248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 */
251
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100252struct azx_dev {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 u32 *bdl; /* virtual address of the BDL */
254 dma_addr_t bdl_addr; /* physical address of the BDL */
255 volatile u32 *posbuf; /* position buffer pointer */
256
257 unsigned int bufsize; /* size of the play buffer in bytes */
258 unsigned int fragsize; /* size of each period in bytes */
259 unsigned int frags; /* number for period in the play buffer */
260 unsigned int fifo_size; /* FIFO size */
261
262 void __iomem *sd_addr; /* stream descriptor pointer */
263
264 u32 sd_int_sta_mask; /* stream int status mask */
265
266 /* pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100267 struct snd_pcm_substream *substream; /* assigned substream, set in PCM open */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 unsigned int format_val; /* format value to be set in the controller and the codec */
269 unsigned char stream_tag; /* assigned stream */
270 unsigned char index; /* stream index */
Takashi Iwai1a56f8d2006-02-16 19:51:10 +0100271 /* for sanity check of position buffer */
272 unsigned int period_intr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
274 unsigned int opened: 1;
275 unsigned int running: 1;
276};
277
278/* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100279struct azx_rb {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 u32 *buf; /* CORB/RIRB buffer
281 * Each CORB entry is 4byte, RIRB is 8byte
282 */
283 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
284 /* for RIRB */
285 unsigned short rp, wp; /* read/write pointers */
286 int cmds; /* number of pending requests */
287 u32 res; /* last read value */
288};
289
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100290struct azx {
291 struct snd_card *card;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 struct pci_dev *pci;
293
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200294 /* chip type specific */
295 int driver_type;
296 int playback_streams;
297 int playback_index_offset;
298 int capture_streams;
299 int capture_index_offset;
300 int num_streams;
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 /* pci resources */
303 unsigned long addr;
304 void __iomem *remap_addr;
305 int irq;
306
307 /* locks */
308 spinlock_t reg_lock;
Ingo Molnar62932df2006-01-16 16:34:20 +0100309 struct mutex open_mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200311 /* streams (x num_streams) */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100312 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* PCM */
315 unsigned int pcm_devs;
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100316 struct snd_pcm *pcm[AZX_MAX_PCMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 /* HD codec */
319 unsigned short codec_mask;
320 struct hda_bus *bus;
321
322 /* CORB/RIRB */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100323 struct azx_rb corb;
324 struct azx_rb rirb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /* BDL, CORB/RIRB and position buffers */
327 struct snd_dma_buffer bdl;
328 struct snd_dma_buffer rb;
329 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200330
331 /* flags */
332 int position_fix;
Takashi Iwaice43fba2005-05-30 20:33:44 +0200333 unsigned int initialized: 1;
Takashi Iwai27346162006-01-12 18:28:44 +0100334 unsigned int single_cmd: 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335};
336
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200337/* driver types */
338enum {
339 AZX_DRIVER_ICH,
340 AZX_DRIVER_ATI,
Felix Kuehling778b6e12006-05-17 11:22:21 +0200341 AZX_DRIVER_ATIHDMI,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200342 AZX_DRIVER_VIA,
343 AZX_DRIVER_SIS,
344 AZX_DRIVER_ULI,
Vinod Gda3fca22005-09-13 18:49:12 +0200345 AZX_DRIVER_NVIDIA,
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200346};
347
348static char *driver_short_names[] __devinitdata = {
349 [AZX_DRIVER_ICH] = "HDA Intel",
350 [AZX_DRIVER_ATI] = "HDA ATI SB",
Felix Kuehling778b6e12006-05-17 11:22:21 +0200351 [AZX_DRIVER_ATIHDMI] = "HDA ATI HDMI",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200352 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
353 [AZX_DRIVER_SIS] = "HDA SIS966",
Vinod Gda3fca22005-09-13 18:49:12 +0200354 [AZX_DRIVER_ULI] = "HDA ULI M5461",
355 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200356};
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358/*
359 * macros for easy use
360 */
361#define azx_writel(chip,reg,value) \
362 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
363#define azx_readl(chip,reg) \
364 readl((chip)->remap_addr + ICH6_REG_##reg)
365#define azx_writew(chip,reg,value) \
366 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
367#define azx_readw(chip,reg) \
368 readw((chip)->remap_addr + ICH6_REG_##reg)
369#define azx_writeb(chip,reg,value) \
370 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
371#define azx_readb(chip,reg) \
372 readb((chip)->remap_addr + ICH6_REG_##reg)
373
374#define azx_sd_writel(dev,reg,value) \
375 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
376#define azx_sd_readl(dev,reg) \
377 readl((dev)->sd_addr + ICH6_REG_##reg)
378#define azx_sd_writew(dev,reg,value) \
379 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
380#define azx_sd_readw(dev,reg) \
381 readw((dev)->sd_addr + ICH6_REG_##reg)
382#define azx_sd_writeb(dev,reg,value) \
383 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
384#define azx_sd_readb(dev,reg) \
385 readb((dev)->sd_addr + ICH6_REG_##reg)
386
387/* for pcm support */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100388#define get_azx_dev(substream) (substream->runtime->private_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390/* Get the upper 32bit of the given dma_addr_t
391 * Compiler should optimize and eliminate the code if dma_addr_t is 32bit
392 */
393#define upper_32bit(addr) (sizeof(addr) > 4 ? (u32)((addr) >> 32) : (u32)0)
394
395
396/*
397 * Interface for HD codec
398 */
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400/*
401 * CORB / RIRB interface
402 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100403static int azx_alloc_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404{
405 int err;
406
407 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
408 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
409 PAGE_SIZE, &chip->rb);
410 if (err < 0) {
411 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
412 return err;
413 }
414 return 0;
415}
416
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100417static void azx_init_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 /* CORB set up */
420 chip->corb.addr = chip->rb.addr;
421 chip->corb.buf = (u32 *)chip->rb.area;
422 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
423 azx_writel(chip, CORBUBASE, upper_32bit(chip->corb.addr));
424
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200425 /* set the corb size to 256 entries (ULI requires explicitly) */
426 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /* set the corb write pointer to 0 */
428 azx_writew(chip, CORBWP, 0);
429 /* reset the corb hw read pointer */
430 azx_writew(chip, CORBRP, ICH6_RBRWP_CLR);
431 /* enable corb dma */
432 azx_writeb(chip, CORBCTL, ICH6_RBCTL_DMA_EN);
433
434 /* RIRB set up */
435 chip->rirb.addr = chip->rb.addr + 2048;
436 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
437 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
438 azx_writel(chip, RIRBUBASE, upper_32bit(chip->rirb.addr));
439
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200440 /* set the rirb size to 256 entries (ULI requires explicitly) */
441 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /* reset the rirb hw write pointer */
443 azx_writew(chip, RIRBWP, ICH6_RBRWP_CLR);
444 /* set N=1, get RIRB response interrupt for new entry */
445 azx_writew(chip, RINTCNT, 1);
446 /* enable rirb dma and response irq */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 chip->rirb.rp = chip->rirb.cmds = 0;
449}
450
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100451static void azx_free_cmd_io(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 /* disable ringbuffer DMAs */
454 azx_writeb(chip, RIRBCTL, 0);
455 azx_writeb(chip, CORBCTL, 0);
456}
457
458/* send a command */
Takashi Iwai111d3af2006-02-16 18:17:58 +0100459static int azx_corb_send_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
460 unsigned int verb, unsigned int para)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100462 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 unsigned int wp;
464 u32 val;
465
466 val = (u32)(codec->addr & 0x0f) << 28;
467 val |= (u32)direct << 27;
468 val |= (u32)nid << 20;
469 val |= verb << 8;
470 val |= para;
471
472 /* add command to corb */
473 wp = azx_readb(chip, CORBWP);
474 wp++;
475 wp %= ICH6_MAX_CORB_ENTRIES;
476
477 spin_lock_irq(&chip->reg_lock);
478 chip->rirb.cmds++;
479 chip->corb.buf[wp] = cpu_to_le32(val);
480 azx_writel(chip, CORBWP, wp);
481 spin_unlock_irq(&chip->reg_lock);
482
483 return 0;
484}
485
486#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
487
488/* retrieve RIRB entry - called from interrupt handler */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100489static void azx_update_rirb(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 unsigned int rp, wp;
492 u32 res, res_ex;
493
494 wp = azx_readb(chip, RIRBWP);
495 if (wp == chip->rirb.wp)
496 return;
497 chip->rirb.wp = wp;
498
499 while (chip->rirb.rp != wp) {
500 chip->rirb.rp++;
501 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
502
503 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
504 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
505 res = le32_to_cpu(chip->rirb.buf[rp]);
506 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
507 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
508 else if (chip->rirb.cmds) {
509 chip->rirb.cmds--;
510 chip->rirb.res = res;
511 }
512 }
513}
514
515/* receive a response */
Takashi Iwai111d3af2006-02-16 18:17:58 +0100516static unsigned int azx_rirb_get_response(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100518 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 int timeout = 50;
520
521 while (chip->rirb.cmds) {
522 if (! --timeout) {
Takashi Iwai111d3af2006-02-16 18:17:58 +0100523 snd_printk(KERN_ERR
524 "hda_intel: azx_get_response timeout, "
525 "switching to single_cmd mode...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 chip->rirb.rp = azx_readb(chip, RIRBWP);
527 chip->rirb.cmds = 0;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100528 /* switch to single_cmd mode */
529 chip->single_cmd = 1;
530 azx_free_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return -1;
532 }
533 msleep(1);
534 }
535 return chip->rirb.res; /* the last value */
536}
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538/*
539 * Use the single immediate command instead of CORB/RIRB for simplicity
540 *
541 * Note: according to Intel, this is not preferred use. The command was
542 * intended for the BIOS only, and may get confused with unsolicited
543 * responses. So, we shouldn't use it for normal operation from the
544 * driver.
545 * I left the codes, however, for debugging/testing purposes.
546 */
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/* send a command */
Takashi Iwai27346162006-01-12 18:28:44 +0100549static int azx_single_send_cmd(struct hda_codec *codec, hda_nid_t nid,
550 int direct, unsigned int verb,
551 unsigned int para)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100553 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 u32 val;
555 int timeout = 50;
556
557 val = (u32)(codec->addr & 0x0f) << 28;
558 val |= (u32)direct << 27;
559 val |= (u32)nid << 20;
560 val |= verb << 8;
561 val |= para;
562
563 while (timeout--) {
564 /* check ICB busy bit */
565 if (! (azx_readw(chip, IRS) & ICH6_IRS_BUSY)) {
566 /* Clear IRV valid bit */
567 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_VALID);
568 azx_writel(chip, IC, val);
569 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_BUSY);
570 return 0;
571 }
572 udelay(1);
573 }
574 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n", azx_readw(chip, IRS), val);
575 return -EIO;
576}
577
578/* receive a response */
Takashi Iwai27346162006-01-12 18:28:44 +0100579static unsigned int azx_single_get_response(struct hda_codec *codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100581 struct azx *chip = codec->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 int timeout = 50;
583
584 while (timeout--) {
585 /* check IRV busy bit */
586 if (azx_readw(chip, IRS) & ICH6_IRS_VALID)
587 return azx_readl(chip, IR);
588 udelay(1);
589 }
590 snd_printd(SFX "get_response timeout: IRS=0x%x\n", azx_readw(chip, IRS));
591 return (unsigned int)-1;
592}
593
Takashi Iwai111d3af2006-02-16 18:17:58 +0100594/*
595 * The below are the main callbacks from hda_codec.
596 *
597 * They are just the skeleton to call sub-callbacks according to the
598 * current setting of chip->single_cmd.
599 */
600
601/* send a command */
602static int azx_send_cmd(struct hda_codec *codec, hda_nid_t nid,
603 int direct, unsigned int verb,
604 unsigned int para)
605{
606 struct azx *chip = codec->bus->private_data;
607 if (chip->single_cmd)
608 return azx_single_send_cmd(codec, nid, direct, verb, para);
609 else
610 return azx_corb_send_cmd(codec, nid, direct, verb, para);
611}
612
613/* get a response */
614static unsigned int azx_get_response(struct hda_codec *codec)
615{
616 struct azx *chip = codec->bus->private_data;
617 if (chip->single_cmd)
618 return azx_single_get_response(codec);
619 else
620 return azx_rirb_get_response(codec);
621}
622
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624/* reset codec link */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100625static int azx_reset(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
627 int count;
628
629 /* reset controller */
630 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
631
632 count = 50;
633 while (azx_readb(chip, GCTL) && --count)
634 msleep(1);
635
636 /* delay for >= 100us for codec PLL to settle per spec
637 * Rev 0.9 section 5.5.1
638 */
639 msleep(1);
640
641 /* Bring controller out of reset */
642 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
643
644 count = 50;
645 while (! azx_readb(chip, GCTL) && --count)
646 msleep(1);
647
648 /* Brent Chartrand said to wait >= 540us for codecs to intialize */
649 msleep(1);
650
651 /* check to see if controller is ready */
652 if (! azx_readb(chip, GCTL)) {
653 snd_printd("azx_reset: controller not ready!\n");
654 return -EBUSY;
655 }
656
Matt41e2fce2005-07-04 17:49:55 +0200657 /* Accept unsolicited responses */
658 azx_writel(chip, GCTL, azx_readl(chip, GCTL) | ICH6_GCTL_UREN);
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /* detect codecs */
661 if (! chip->codec_mask) {
662 chip->codec_mask = azx_readw(chip, STATESTS);
663 snd_printdd("codec_mask = 0x%x\n", chip->codec_mask);
664 }
665
666 return 0;
667}
668
669
670/*
671 * Lowlevel interface
672 */
673
674/* enable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100675static void azx_int_enable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 /* enable controller CIE and GIE */
678 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
679 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
680}
681
682/* disable interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100683static void azx_int_disable(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 int i;
686
687 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200688 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100689 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 azx_sd_writeb(azx_dev, SD_CTL,
691 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
692 }
693
694 /* disable SIE for all streams */
695 azx_writeb(chip, INTCTL, 0);
696
697 /* disable controller CIE and GIE */
698 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
699 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
700}
701
702/* clear interrupts */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100703static void azx_int_clear(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 int i;
706
707 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200708 for (i = 0; i < chip->num_streams; i++) {
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100709 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
711 }
712
713 /* clear STATESTS */
714 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
715
716 /* clear rirb status */
717 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
718
719 /* clear int status */
720 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
721}
722
723/* start a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100724static void azx_stream_start(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 /* enable SIE */
727 azx_writeb(chip, INTCTL,
728 azx_readb(chip, INTCTL) | (1 << azx_dev->index));
729 /* set DMA start and interrupt mask */
730 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
731 SD_CTL_DMA_START | SD_INT_MASK);
732}
733
734/* stop a stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100735static void azx_stream_stop(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
737 /* stop DMA */
738 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
739 ~(SD_CTL_DMA_START | SD_INT_MASK));
740 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
741 /* disable SIE */
742 azx_writeb(chip, INTCTL,
743 azx_readb(chip, INTCTL) & ~(1 << azx_dev->index));
744}
745
746
747/*
748 * initialize the chip
749 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100750static void azx_init_chip(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Vinod Gda3fca22005-09-13 18:49:12 +0200752 unsigned char reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
755 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
756 * Ensuring these bits are 0 clears playback static on some HD Audio codecs
757 */
Vinod Gda3fca22005-09-13 18:49:12 +0200758 pci_read_config_byte (chip->pci, ICH6_PCIREG_TCSEL, &reg);
759 pci_write_config_byte(chip->pci, ICH6_PCIREG_TCSEL, reg & 0xf8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760
761 /* reset controller */
762 azx_reset(chip);
763
764 /* initialize interrupts */
765 azx_int_clear(chip);
766 azx_int_enable(chip);
767
768 /* initialize the codec command I/O */
Takashi Iwai27346162006-01-12 18:28:44 +0100769 if (! chip->single_cmd)
770 azx_init_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200772 /* program the position buffer */
773 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
774 azx_writel(chip, DPUBASE, upper_32bit(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +0200775
Vinod Gda3fca22005-09-13 18:49:12 +0200776 switch (chip->driver_type) {
777 case AZX_DRIVER_ATI:
778 /* For ATI SB450 azalia HD audio, we need to enable snoop */
Frederick Lif5d40b32005-05-12 14:55:20 +0200779 pci_read_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
Vinod Gda3fca22005-09-13 18:49:12 +0200780 &reg);
Frederick Lif5d40b32005-05-12 14:55:20 +0200781 pci_write_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
Vinod Gda3fca22005-09-13 18:49:12 +0200782 (reg & 0xf8) | ATI_SB450_HDAUDIO_ENABLE_SNOOP);
783 break;
784 case AZX_DRIVER_NVIDIA:
785 /* For NVIDIA HDA, enable snoop */
786 pci_read_config_byte(chip->pci,NVIDIA_HDA_TRANSREG_ADDR, &reg);
787 pci_write_config_byte(chip->pci,NVIDIA_HDA_TRANSREG_ADDR,
788 (reg & 0xf0) | NVIDIA_HDA_ENABLE_COHBITS);
789 break;
790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
792
793
794/*
795 * interrupt handler
796 */
797static irqreturn_t azx_interrupt(int irq, void* dev_id, struct pt_regs *regs)
798{
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100799 struct azx *chip = dev_id;
800 struct azx_dev *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 u32 status;
802 int i;
803
804 spin_lock(&chip->reg_lock);
805
806 status = azx_readl(chip, INTSTS);
807 if (status == 0) {
808 spin_unlock(&chip->reg_lock);
809 return IRQ_NONE;
810 }
811
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200812 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 azx_dev = &chip->azx_dev[i];
814 if (status & azx_dev->sd_int_sta_mask) {
815 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
816 if (azx_dev->substream && azx_dev->running) {
Takashi Iwai1a56f8d2006-02-16 19:51:10 +0100817 azx_dev->period_intr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 spin_unlock(&chip->reg_lock);
819 snd_pcm_period_elapsed(azx_dev->substream);
820 spin_lock(&chip->reg_lock);
821 }
822 }
823 }
824
825 /* clear rirb int */
826 status = azx_readb(chip, RIRBSTS);
827 if (status & RIRB_INT_MASK) {
Takashi Iwai27346162006-01-12 18:28:44 +0100828 if (! chip->single_cmd && (status & RIRB_INT_RESPONSE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 azx_update_rirb(chip);
830 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
831 }
832
833#if 0
834 /* clear state status int */
835 if (azx_readb(chip, STATESTS) & 0x04)
836 azx_writeb(chip, STATESTS, 0x04);
837#endif
838 spin_unlock(&chip->reg_lock);
839
840 return IRQ_HANDLED;
841}
842
843
844/*
845 * set up BDL entries
846 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100847static void azx_setup_periods(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
849 u32 *bdl = azx_dev->bdl;
850 dma_addr_t dma_addr = azx_dev->substream->runtime->dma_addr;
851 int idx;
852
853 /* reset BDL address */
854 azx_sd_writel(azx_dev, SD_BDLPL, 0);
855 azx_sd_writel(azx_dev, SD_BDLPU, 0);
856
857 /* program the initial BDL entries */
858 for (idx = 0; idx < azx_dev->frags; idx++) {
859 unsigned int off = idx << 2; /* 4 dword step */
860 dma_addr_t addr = dma_addr + idx * azx_dev->fragsize;
861 /* program the address field of the BDL entry */
862 bdl[off] = cpu_to_le32((u32)addr);
863 bdl[off+1] = cpu_to_le32(upper_32bit(addr));
864
865 /* program the size field of the BDL entry */
866 bdl[off+2] = cpu_to_le32(azx_dev->fragsize);
867
868 /* program the IOC to enable interrupt when buffer completes */
869 bdl[off+3] = cpu_to_le32(0x01);
870 }
871}
872
873/*
874 * set up the SD for streaming
875 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100876static int azx_setup_controller(struct azx *chip, struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
878 unsigned char val;
879 int timeout;
880
881 /* make sure the run bit is zero for SD */
882 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) & ~SD_CTL_DMA_START);
883 /* reset stream */
884 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) | SD_CTL_STREAM_RESET);
885 udelay(3);
886 timeout = 300;
887 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
888 --timeout)
889 ;
890 val &= ~SD_CTL_STREAM_RESET;
891 azx_sd_writeb(azx_dev, SD_CTL, val);
892 udelay(3);
893
894 timeout = 300;
895 /* waiting for hardware to report that the stream is out of reset */
896 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
897 --timeout)
898 ;
899
900 /* program the stream_tag */
901 azx_sd_writel(azx_dev, SD_CTL,
902 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK) |
903 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
904
905 /* program the length of samples in cyclic buffer */
906 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
907
908 /* program the stream format */
909 /* this value needs to be the same as the one programmed */
910 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
911
912 /* program the stream LVI (last valid index) of the BDL */
913 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
914
915 /* program the BDL address */
916 /* lower BDL address */
917 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl_addr);
918 /* upper BDL address */
919 azx_sd_writel(azx_dev, SD_BDLPU, upper_32bit(azx_dev->bdl_addr));
920
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200921 /* enable the position buffer */
922 if (! (azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
923 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
Takashi Iwaic74db862005-05-12 14:26:27 +0200924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /* set the interrupt enable bits in the descriptor control register */
926 azx_sd_writel(azx_dev, SD_CTL, azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
927
928 return 0;
929}
930
931
932/*
933 * Codec initialization
934 */
935
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100936static int __devinit azx_codec_create(struct azx *chip, const char *model)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 struct hda_bus_template bus_temp;
939 int c, codecs, err;
940
941 memset(&bus_temp, 0, sizeof(bus_temp));
942 bus_temp.private_data = chip;
943 bus_temp.modelname = model;
944 bus_temp.pci = chip->pci;
Takashi Iwai111d3af2006-02-16 18:17:58 +0100945 bus_temp.ops.command = azx_send_cmd;
946 bus_temp.ops.get_response = azx_get_response;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 if ((err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus)) < 0)
949 return err;
950
951 codecs = 0;
952 for (c = 0; c < AZX_MAX_CODECS; c++) {
Takashi Iwai606ad752005-11-24 16:03:40 +0100953 if ((chip->codec_mask & (1 << c)) & probe_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 err = snd_hda_codec_new(chip->bus, c, NULL);
955 if (err < 0)
956 continue;
957 codecs++;
958 }
959 }
960 if (! codecs) {
961 snd_printk(KERN_ERR SFX "no codecs initialized\n");
962 return -ENXIO;
963 }
964
965 return 0;
966}
967
968
969/*
970 * PCM support
971 */
972
973/* assign a stream for the PCM */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100974static inline struct azx_dev *azx_assign_device(struct azx *chip, int stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975{
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200976 int dev, i, nums;
977 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
978 dev = chip->playback_index_offset;
979 nums = chip->playback_streams;
980 } else {
981 dev = chip->capture_index_offset;
982 nums = chip->capture_streams;
983 }
984 for (i = 0; i < nums; i++, dev++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (! chip->azx_dev[dev].opened) {
986 chip->azx_dev[dev].opened = 1;
987 return &chip->azx_dev[dev];
988 }
989 return NULL;
990}
991
992/* release the assigned stream */
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100993static inline void azx_release_device(struct azx_dev *azx_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
995 azx_dev->opened = 0;
996}
997
Takashi Iwaia98f90f2005-11-17 14:59:02 +0100998static struct snd_pcm_hardware azx_pcm_hw = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1000 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1001 SNDRV_PCM_INFO_MMAP_VALID |
Jaroslav Kysela47123192005-08-15 20:53:07 +02001002 SNDRV_PCM_INFO_PAUSE /*|*/
1003 /*SNDRV_PCM_INFO_RESUME*/),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 .formats = SNDRV_PCM_FMTBIT_S16_LE,
1005 .rates = SNDRV_PCM_RATE_48000,
1006 .rate_min = 48000,
1007 .rate_max = 48000,
1008 .channels_min = 2,
1009 .channels_max = 2,
1010 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
1011 .period_bytes_min = 128,
1012 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
1013 .periods_min = 2,
1014 .periods_max = AZX_MAX_FRAG,
1015 .fifo_size = 0,
1016};
1017
1018struct azx_pcm {
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001019 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 struct hda_codec *codec;
1021 struct hda_pcm_stream *hinfo[2];
1022};
1023
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001024static int azx_pcm_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
1026 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1027 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001028 struct azx *chip = apcm->chip;
1029 struct azx_dev *azx_dev;
1030 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 unsigned long flags;
1032 int err;
1033
Ingo Molnar62932df2006-01-16 16:34:20 +01001034 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 azx_dev = azx_assign_device(chip, substream->stream);
1036 if (azx_dev == NULL) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001037 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return -EBUSY;
1039 }
1040 runtime->hw = azx_pcm_hw;
1041 runtime->hw.channels_min = hinfo->channels_min;
1042 runtime->hw.channels_max = hinfo->channels_max;
1043 runtime->hw.formats = hinfo->formats;
1044 runtime->hw.rates = hinfo->rates;
1045 snd_pcm_limit_hw_rates(runtime);
1046 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
1047 if ((err = hinfo->ops.open(hinfo, apcm->codec, substream)) < 0) {
1048 azx_release_device(azx_dev);
Ingo Molnar62932df2006-01-16 16:34:20 +01001049 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return err;
1051 }
1052 spin_lock_irqsave(&chip->reg_lock, flags);
1053 azx_dev->substream = substream;
1054 azx_dev->running = 0;
1055 spin_unlock_irqrestore(&chip->reg_lock, flags);
1056
1057 runtime->private_data = azx_dev;
Ingo Molnar62932df2006-01-16 16:34:20 +01001058 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 return 0;
1060}
1061
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001062static int azx_pcm_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1065 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001066 struct azx *chip = apcm->chip;
1067 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 unsigned long flags;
1069
Ingo Molnar62932df2006-01-16 16:34:20 +01001070 mutex_lock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 spin_lock_irqsave(&chip->reg_lock, flags);
1072 azx_dev->substream = NULL;
1073 azx_dev->running = 0;
1074 spin_unlock_irqrestore(&chip->reg_lock, flags);
1075 azx_release_device(azx_dev);
1076 hinfo->ops.close(hinfo, apcm->codec, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001077 mutex_unlock(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return 0;
1079}
1080
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001081static int azx_pcm_hw_params(struct snd_pcm_substream *substream, struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
1084}
1085
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001086static int azx_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
1088 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001089 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1091
1092 /* reset BDL address */
1093 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1094 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1095 azx_sd_writel(azx_dev, SD_CTL, 0);
1096
1097 hinfo->ops.cleanup(hinfo, apcm->codec, substream);
1098
1099 return snd_pcm_lib_free_pages(substream);
1100}
1101
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001102static int azx_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001105 struct azx *chip = apcm->chip;
1106 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001108 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 azx_dev->bufsize = snd_pcm_lib_buffer_bytes(substream);
1111 azx_dev->fragsize = snd_pcm_lib_period_bytes(substream);
1112 azx_dev->frags = azx_dev->bufsize / azx_dev->fragsize;
1113 azx_dev->format_val = snd_hda_calc_stream_format(runtime->rate,
1114 runtime->channels,
1115 runtime->format,
1116 hinfo->maxbps);
1117 if (! azx_dev->format_val) {
1118 snd_printk(KERN_ERR SFX "invalid format_val, rate=%d, ch=%d, format=%d\n",
1119 runtime->rate, runtime->channels, runtime->format);
1120 return -EINVAL;
1121 }
1122
1123 snd_printdd("azx_pcm_prepare: bufsize=0x%x, fragsize=0x%x, format=0x%x\n",
1124 azx_dev->bufsize, azx_dev->fragsize, azx_dev->format_val);
1125 azx_setup_periods(azx_dev);
1126 azx_setup_controller(chip, azx_dev);
1127 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1128 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1129 else
1130 azx_dev->fifo_size = 0;
1131
1132 return hinfo->ops.prepare(hinfo, apcm->codec, azx_dev->stream_tag,
1133 azx_dev->format_val, substream);
1134}
1135
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001136static int azx_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
1138 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001139 struct azx_dev *azx_dev = get_azx_dev(substream);
1140 struct azx *chip = apcm->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 int err = 0;
1142
1143 spin_lock(&chip->reg_lock);
1144 switch (cmd) {
1145 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1146 case SNDRV_PCM_TRIGGER_RESUME:
1147 case SNDRV_PCM_TRIGGER_START:
1148 azx_stream_start(chip, azx_dev);
1149 azx_dev->running = 1;
1150 break;
1151 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001152 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 case SNDRV_PCM_TRIGGER_STOP:
1154 azx_stream_stop(chip, azx_dev);
1155 azx_dev->running = 0;
1156 break;
1157 default:
1158 err = -EINVAL;
1159 }
1160 spin_unlock(&chip->reg_lock);
1161 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH ||
Jaroslav Kysela47123192005-08-15 20:53:07 +02001162 cmd == SNDRV_PCM_TRIGGER_SUSPEND ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 cmd == SNDRV_PCM_TRIGGER_STOP) {
1164 int timeout = 5000;
1165 while (azx_sd_readb(azx_dev, SD_CTL) & SD_CTL_DMA_START && --timeout)
1166 ;
1167 }
1168 return err;
1169}
1170
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001171static snd_pcm_uframes_t azx_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Takashi Iwaic74db862005-05-12 14:26:27 +02001173 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001174 struct azx *chip = apcm->chip;
1175 struct azx_dev *azx_dev = get_azx_dev(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 unsigned int pos;
1177
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001178 if (chip->position_fix == POS_FIX_POSBUF ||
1179 chip->position_fix == POS_FIX_AUTO) {
Takashi Iwaic74db862005-05-12 14:26:27 +02001180 /* use the position buffer */
1181 pos = *azx_dev->posbuf;
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001182 if (chip->position_fix == POS_FIX_AUTO &&
1183 azx_dev->period_intr == 1 && ! pos) {
1184 printk(KERN_WARNING
1185 "hda-intel: Invalid position buffer, "
1186 "using LPIB read method instead.\n");
1187 chip->position_fix = POS_FIX_NONE;
1188 goto read_lpib;
1189 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001190 } else {
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001191 read_lpib:
Takashi Iwaic74db862005-05-12 14:26:27 +02001192 /* read LPIB */
1193 pos = azx_sd_readl(azx_dev, SD_LPIB);
1194 if (chip->position_fix == POS_FIX_FIFO)
1195 pos += azx_dev->fifo_size;
1196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 if (pos >= azx_dev->bufsize)
1198 pos = 0;
1199 return bytes_to_frames(substream->runtime, pos);
1200}
1201
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001202static struct snd_pcm_ops azx_pcm_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 .open = azx_pcm_open,
1204 .close = azx_pcm_close,
1205 .ioctl = snd_pcm_lib_ioctl,
1206 .hw_params = azx_pcm_hw_params,
1207 .hw_free = azx_pcm_hw_free,
1208 .prepare = azx_pcm_prepare,
1209 .trigger = azx_pcm_trigger,
1210 .pointer = azx_pcm_pointer,
1211};
1212
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001213static void azx_pcm_free(struct snd_pcm *pcm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
1215 kfree(pcm->private_data);
1216}
1217
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001218static int __devinit create_codec_pcm(struct azx *chip, struct hda_codec *codec,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 struct hda_pcm *cpcm, int pcm_dev)
1220{
1221 int err;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001222 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct azx_pcm *apcm;
1224
1225 snd_assert(cpcm->stream[0].substreams || cpcm->stream[1].substreams, return -EINVAL);
1226 snd_assert(cpcm->name, return -EINVAL);
1227
1228 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
1229 cpcm->stream[0].substreams, cpcm->stream[1].substreams,
1230 &pcm);
1231 if (err < 0)
1232 return err;
1233 strcpy(pcm->name, cpcm->name);
1234 apcm = kmalloc(sizeof(*apcm), GFP_KERNEL);
1235 if (apcm == NULL)
1236 return -ENOMEM;
1237 apcm->chip = chip;
1238 apcm->codec = codec;
1239 apcm->hinfo[0] = &cpcm->stream[0];
1240 apcm->hinfo[1] = &cpcm->stream[1];
1241 pcm->private_data = apcm;
1242 pcm->private_free = azx_pcm_free;
1243 if (cpcm->stream[0].substreams)
1244 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &azx_pcm_ops);
1245 if (cpcm->stream[1].substreams)
1246 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &azx_pcm_ops);
1247 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1248 snd_dma_pci_data(chip->pci),
1249 1024 * 64, 1024 * 128);
1250 chip->pcm[pcm_dev] = pcm;
Jaroslav Kysela47123192005-08-15 20:53:07 +02001251 chip->pcm_devs = pcm_dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 return 0;
1254}
1255
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001256static int __devinit azx_pcm_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
1258 struct list_head *p;
1259 struct hda_codec *codec;
1260 int c, err;
1261 int pcm_dev;
1262
1263 if ((err = snd_hda_build_pcms(chip->bus)) < 0)
1264 return err;
1265
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001266 /* create audio PCMs */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 pcm_dev = 0;
1268 list_for_each(p, &chip->bus->codec_list) {
1269 codec = list_entry(p, struct hda_codec, list);
1270 for (c = 0; c < codec->num_pcms; c++) {
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001271 if (codec->pcm_info[c].is_modem)
1272 continue; /* create later */
1273 if (pcm_dev >= AZX_MAX_AUDIO_PCMS) {
1274 snd_printk(KERN_ERR SFX "Too many audio PCMs\n");
1275 return -EINVAL;
1276 }
1277 err = create_codec_pcm(chip, codec, &codec->pcm_info[c], pcm_dev);
1278 if (err < 0)
1279 return err;
1280 pcm_dev++;
1281 }
1282 }
1283
1284 /* create modem PCMs */
1285 pcm_dev = AZX_MAX_AUDIO_PCMS;
1286 list_for_each(p, &chip->bus->codec_list) {
1287 codec = list_entry(p, struct hda_codec, list);
1288 for (c = 0; c < codec->num_pcms; c++) {
1289 if (! codec->pcm_info[c].is_modem)
1290 continue; /* already created */
Takashi Iwaia28f1cd2005-09-07 15:26:56 +02001291 if (pcm_dev >= AZX_MAX_PCMS) {
Takashi Iwaiec9e1c52005-09-07 13:29:22 +02001292 snd_printk(KERN_ERR SFX "Too many modem PCMs\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 return -EINVAL;
1294 }
1295 err = create_codec_pcm(chip, codec, &codec->pcm_info[c], pcm_dev);
1296 if (err < 0)
1297 return err;
Sasha Khapyorsky6632d192005-09-29 11:48:17 +02001298 chip->pcm[pcm_dev]->dev_class = SNDRV_PCM_CLASS_MODEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 pcm_dev++;
1300 }
1301 }
1302 return 0;
1303}
1304
1305/*
1306 * mixer creation - all stuff is implemented in hda module
1307 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001308static int __devinit azx_mixer_create(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309{
1310 return snd_hda_build_controls(chip->bus);
1311}
1312
1313
1314/*
1315 * initialize SD streams
1316 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001317static int __devinit azx_init_stream(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 int i;
1320
1321 /* initialize each stream (aka device)
1322 * assign the starting bdl address to each stream (device) and initialize
1323 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001324 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 unsigned int off = sizeof(u32) * (i * AZX_MAX_FRAG * 4);
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001326 struct azx_dev *azx_dev = &chip->azx_dev[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 azx_dev->bdl = (u32 *)(chip->bdl.area + off);
1328 azx_dev->bdl_addr = chip->bdl.addr + off;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001329 azx_dev->posbuf = (volatile u32 *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
1331 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
1332 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
1333 azx_dev->sd_int_sta_mask = 1 << i;
1334 /* stream tag: must be non-zero and unique */
1335 azx_dev->index = i;
1336 azx_dev->stream_tag = i + 1;
1337 }
1338
1339 return 0;
1340}
1341
1342
1343#ifdef CONFIG_PM
1344/*
1345 * power management
1346 */
Takashi Iwai421a1252005-11-17 16:11:09 +01001347static int azx_suspend(struct pci_dev *pci, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348{
Takashi Iwai421a1252005-11-17 16:11:09 +01001349 struct snd_card *card = pci_get_drvdata(pci);
1350 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 int i;
1352
Takashi Iwai421a1252005-11-17 16:11:09 +01001353 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 for (i = 0; i < chip->pcm_devs; i++)
Takashi Iwai421a1252005-11-17 16:11:09 +01001355 snd_pcm_suspend_all(chip->pcm[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 snd_hda_suspend(chip->bus, state);
Takashi Iwai111d3af2006-02-16 18:17:58 +01001357 azx_free_cmd_io(chip);
Takashi Iwai421a1252005-11-17 16:11:09 +01001358 pci_disable_device(pci);
1359 pci_save_state(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 return 0;
1361}
1362
Takashi Iwai421a1252005-11-17 16:11:09 +01001363static int azx_resume(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364{
Takashi Iwai421a1252005-11-17 16:11:09 +01001365 struct snd_card *card = pci_get_drvdata(pci);
1366 struct azx *chip = card->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Takashi Iwai421a1252005-11-17 16:11:09 +01001368 pci_restore_state(pci);
1369 pci_enable_device(pci);
1370 pci_set_master(pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 azx_init_chip(chip);
1372 snd_hda_resume(chip->bus);
Takashi Iwai421a1252005-11-17 16:11:09 +01001373 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 return 0;
1375}
1376#endif /* CONFIG_PM */
1377
1378
1379/*
1380 * destructor
1381 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001382static int azx_free(struct azx *chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
Takashi Iwaice43fba2005-05-30 20:33:44 +02001384 if (chip->initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 int i;
1386
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001387 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 azx_stream_stop(chip, &chip->azx_dev[i]);
1389
1390 /* disable interrupts */
1391 azx_int_disable(chip);
1392 azx_int_clear(chip);
1393
1394 /* disable CORB/RIRB */
Takashi Iwai111d3af2006-02-16 18:17:58 +01001395 azx_free_cmd_io(chip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
1397 /* disable position buffer */
1398 azx_writel(chip, DPLBASE, 0);
1399 azx_writel(chip, DPUBASE, 0);
1400
1401 /* wait a little for interrupts to finish */
1402 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001405 if (chip->remap_addr)
1406 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (chip->irq >= 0)
1408 free_irq(chip->irq, (void*)chip);
1409
1410 if (chip->bdl.area)
1411 snd_dma_free_pages(&chip->bdl);
1412 if (chip->rb.area)
1413 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (chip->posbuf.area)
1415 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 pci_release_regions(chip->pci);
1417 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001418 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 kfree(chip);
1420
1421 return 0;
1422}
1423
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001424static int azx_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425{
1426 return azx_free(device->device_data);
1427}
1428
1429/*
1430 * constructor
1431 */
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001432static int __devinit azx_create(struct snd_card *card, struct pci_dev *pci,
Takashi Iwai606ad752005-11-24 16:03:40 +01001433 int driver_type,
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001434 struct azx **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001436 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 int err = 0;
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001438 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 .dev_free = azx_dev_free,
1440 };
1441
1442 *rchip = NULL;
1443
1444 if ((err = pci_enable_device(pci)) < 0)
1445 return err;
1446
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001447 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 if (NULL == chip) {
1450 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
1451 pci_disable_device(pci);
1452 return -ENOMEM;
1453 }
1454
1455 spin_lock_init(&chip->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01001456 mutex_init(&chip->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 chip->card = card;
1458 chip->pci = pci;
1459 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001460 chip->driver_type = driver_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Takashi Iwai1a56f8d2006-02-16 19:51:10 +01001462 chip->position_fix = position_fix;
Takashi Iwai27346162006-01-12 18:28:44 +01001463 chip->single_cmd = single_cmd;
Takashi Iwaic74db862005-05-12 14:26:27 +02001464
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001465#if BITS_PER_LONG != 64
1466 /* Fix up base address on ULI M5461 */
1467 if (chip->driver_type == AZX_DRIVER_ULI) {
1468 u16 tmp3;
1469 pci_read_config_word(pci, 0x40, &tmp3);
1470 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
1471 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
1472 }
1473#endif
1474
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 if ((err = pci_request_regions(pci, "ICH HD audio")) < 0) {
1476 kfree(chip);
1477 pci_disable_device(pci);
1478 return err;
1479 }
1480
1481 chip->addr = pci_resource_start(pci,0);
1482 chip->remap_addr = ioremap_nocache(chip->addr, pci_resource_len(pci,0));
1483 if (chip->remap_addr == NULL) {
1484 snd_printk(KERN_ERR SFX "ioremap error\n");
1485 err = -ENXIO;
1486 goto errout;
1487 }
1488
1489 if (request_irq(pci->irq, azx_interrupt, SA_INTERRUPT|SA_SHIRQ,
1490 "HDA Intel", (void*)chip)) {
1491 snd_printk(KERN_ERR SFX "unable to grab IRQ %d\n", pci->irq);
1492 err = -EBUSY;
1493 goto errout;
1494 }
1495 chip->irq = pci->irq;
1496
1497 pci_set_master(pci);
1498 synchronize_irq(chip->irq);
1499
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001500 switch (chip->driver_type) {
1501 case AZX_DRIVER_ULI:
1502 chip->playback_streams = ULI_NUM_PLAYBACK;
1503 chip->capture_streams = ULI_NUM_CAPTURE;
1504 chip->playback_index_offset = ULI_PLAYBACK_INDEX;
1505 chip->capture_index_offset = ULI_CAPTURE_INDEX;
1506 break;
Felix Kuehling778b6e12006-05-17 11:22:21 +02001507 case AZX_DRIVER_ATIHDMI:
1508 chip->playback_streams = ATIHDMI_NUM_PLAYBACK;
1509 chip->capture_streams = ATIHDMI_NUM_CAPTURE;
1510 chip->playback_index_offset = ATIHDMI_PLAYBACK_INDEX;
1511 chip->capture_index_offset = ATIHDMI_CAPTURE_INDEX;
1512 break;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001513 default:
1514 chip->playback_streams = ICH6_NUM_PLAYBACK;
1515 chip->capture_streams = ICH6_NUM_CAPTURE;
1516 chip->playback_index_offset = ICH6_PLAYBACK_INDEX;
1517 chip->capture_index_offset = ICH6_CAPTURE_INDEX;
1518 break;
1519 }
1520 chip->num_streams = chip->playback_streams + chip->capture_streams;
1521 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev), GFP_KERNEL);
1522 if (! chip->azx_dev) {
1523 snd_printk(KERN_ERR "cannot malloc azx_dev\n");
1524 goto errout;
1525 }
1526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 /* allocate memory for the BDL for each stream */
1528 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001529 BDL_SIZE, &chip->bdl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
1531 goto errout;
1532 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001533 /* allocate memory for the position buffer */
1534 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1535 chip->num_streams * 8, &chip->posbuf)) < 0) {
1536 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
1537 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 /* allocate CORB/RIRB */
Takashi Iwai27346162006-01-12 18:28:44 +01001540 if (! chip->single_cmd)
1541 if ((err = azx_alloc_cmd_io(chip)) < 0)
1542 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 /* initialize streams */
1545 azx_init_stream(chip);
1546
1547 /* initialize chip */
1548 azx_init_chip(chip);
1549
Takashi Iwaice43fba2005-05-30 20:33:44 +02001550 chip->initialized = 1;
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 /* codec detection */
1553 if (! chip->codec_mask) {
1554 snd_printk(KERN_ERR SFX "no codecs found!\n");
1555 err = -ENODEV;
1556 goto errout;
1557 }
1558
1559 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) <0) {
1560 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
1561 goto errout;
1562 }
1563
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001564 strcpy(card->driver, "HDA-Intel");
1565 strcpy(card->shortname, driver_short_names[chip->driver_type]);
1566 sprintf(card->longname, "%s at 0x%lx irq %i", card->shortname, chip->addr, chip->irq);
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 *rchip = chip;
1569 return 0;
1570
1571 errout:
1572 azx_free(chip);
1573 return err;
1574}
1575
1576static int __devinit azx_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
1577{
Takashi Iwaia98f90f2005-11-17 14:59:02 +01001578 struct snd_card *card;
1579 struct azx *chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 int err = 0;
1581
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001582 card = snd_card_new(index, id, THIS_MODULE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 if (NULL == card) {
1584 snd_printk(KERN_ERR SFX "Error creating card!\n");
1585 return -ENOMEM;
1586 }
1587
Takashi Iwai606ad752005-11-24 16:03:40 +01001588 if ((err = azx_create(card, pci, pci_id->driver_data,
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001589 &chip)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 snd_card_free(card);
1591 return err;
1592 }
Takashi Iwai421a1252005-11-17 16:11:09 +01001593 card->private_data = chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 /* create codec instances */
Clemens Ladischb7fe4622005-10-04 08:46:51 +02001596 if ((err = azx_codec_create(chip, model)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 snd_card_free(card);
1598 return err;
1599 }
1600
1601 /* create PCM streams */
1602 if ((err = azx_pcm_create(chip)) < 0) {
1603 snd_card_free(card);
1604 return err;
1605 }
1606
1607 /* create mixer controls */
1608 if ((err = azx_mixer_create(chip)) < 0) {
1609 snd_card_free(card);
1610 return err;
1611 }
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 snd_card_set_dev(card, &pci->dev);
1614
1615 if ((err = snd_card_register(card)) < 0) {
1616 snd_card_free(card);
1617 return err;
1618 }
1619
1620 pci_set_drvdata(pci, card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621
1622 return err;
1623}
1624
1625static void __devexit azx_remove(struct pci_dev *pci)
1626{
1627 snd_card_free(pci_get_drvdata(pci));
1628 pci_set_drvdata(pci, NULL);
1629}
1630
1631/* PCI IDs */
Henrik Kretzschmar396c9b92006-04-24 15:59:04 +02001632static struct pci_device_id azx_ids[] __devinitdata = {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001633 { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH6 */
1634 { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH7 */
1635 { 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ESB2 */
Jason Gastond2981392006-01-10 11:07:37 +01001636 { 0x8086, 0x284b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH8 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001637 { 0x1002, 0x437b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATI }, /* ATI SB450 */
Felix Kuehling89be83f2006-03-31 12:33:59 +02001638 { 0x1002, 0x4383, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATI }, /* ATI SB600 */
Felix Kuehling778b6e12006-05-17 11:22:21 +02001639 { 0x1002, 0x793b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATIHDMI }, /* ATI RS600 HDMI */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001640 { 0x1106, 0x3288, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_VIA }, /* VIA VT8251/VT8237A */
1641 { 0x1039, 0x7502, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_SIS }, /* SIS966 */
1642 { 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ULI }, /* ULI M5461 */
Vinod Gda3fca22005-09-13 18:49:12 +02001643 { 0x10de, 0x026c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA 026c */
1644 { 0x10de, 0x0371, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA 0371 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 { 0, }
1646};
1647MODULE_DEVICE_TABLE(pci, azx_ids);
1648
1649/* pci_driver definition */
1650static struct pci_driver driver = {
1651 .name = "HDA Intel",
1652 .id_table = azx_ids,
1653 .probe = azx_probe,
1654 .remove = __devexit_p(azx_remove),
Takashi Iwai421a1252005-11-17 16:11:09 +01001655#ifdef CONFIG_PM
1656 .suspend = azx_suspend,
1657 .resume = azx_resume,
1658#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659};
1660
1661static int __init alsa_card_azx_init(void)
1662{
Takashi Iwai01d25d42005-04-11 16:58:24 +02001663 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
1665
1666static void __exit alsa_card_azx_exit(void)
1667{
1668 pci_unregister_driver(&driver);
1669}
1670
1671module_init(alsa_card_azx_init)
1672module_exit(alsa_card_azx_exit)