]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - sound/pci/hda/hda_intel.c
[ALSA] intel8x0 - Suppress the codec warnings during probing
[mirror_ubuntu-artful-kernel.git] / sound / pci / hda / hda_intel.c
CommitLineData
1da177e4
LT
1/*
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>
40#include <linux/module.h>
41#include <linux/moduleparam.h>
42#include <linux/init.h>
43#include <linux/slab.h>
44#include <linux/pci.h>
45#include <sound/core.h>
46#include <sound/initval.h>
47#include "hda_codec.h"
48
49
b7fe4622
CL
50static int index = SNDRV_DEFAULT_IDX1;
51static char *id = SNDRV_DEFAULT_STR1;
52static char *model;
53static int position_fix;
1da177e4 54
b7fe4622 55module_param(index, int, 0444);
1da177e4 56MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
b7fe4622 57module_param(id, charp, 0444);
1da177e4 58MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
b7fe4622 59module_param(model, charp, 0444);
1da177e4 60MODULE_PARM_DESC(model, "Use the given board model.");
b7fe4622 61module_param(position_fix, int, 0444);
0be3b5d3 62MODULE_PARM_DESC(position_fix, "Fix DMA pointer (0 = auto, 1 = none, 2 = POSBUF, 3 = FIFO size).");
1da177e4
LT
63
64MODULE_LICENSE("GPL");
65MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
66 "{Intel, ICH6M},"
2f1b3818 67 "{Intel, ICH7},"
f5d40b30 68 "{Intel, ESB2},"
fc20a562
TI
69 "{ATI, SB450},"
70 "{VIA, VT8251},"
47672310 71 "{VIA, VT8237A},"
07e4ca50
TI
72 "{SiS, SIS966},"
73 "{ULI, M5461}}");
1da177e4
LT
74MODULE_DESCRIPTION("Intel HDA driver");
75
76#define SFX "hda-intel: "
77
78/*
79 * registers
80 */
81#define ICH6_REG_GCAP 0x00
82#define ICH6_REG_VMIN 0x02
83#define ICH6_REG_VMAJ 0x03
84#define ICH6_REG_OUTPAY 0x04
85#define ICH6_REG_INPAY 0x06
86#define ICH6_REG_GCTL 0x08
87#define ICH6_REG_WAKEEN 0x0c
88#define ICH6_REG_STATESTS 0x0e
89#define ICH6_REG_GSTS 0x10
90#define ICH6_REG_INTCTL 0x20
91#define ICH6_REG_INTSTS 0x24
92#define ICH6_REG_WALCLK 0x30
93#define ICH6_REG_SYNC 0x34
94#define ICH6_REG_CORBLBASE 0x40
95#define ICH6_REG_CORBUBASE 0x44
96#define ICH6_REG_CORBWP 0x48
97#define ICH6_REG_CORBRP 0x4A
98#define ICH6_REG_CORBCTL 0x4c
99#define ICH6_REG_CORBSTS 0x4d
100#define ICH6_REG_CORBSIZE 0x4e
101
102#define ICH6_REG_RIRBLBASE 0x50
103#define ICH6_REG_RIRBUBASE 0x54
104#define ICH6_REG_RIRBWP 0x58
105#define ICH6_REG_RINTCNT 0x5a
106#define ICH6_REG_RIRBCTL 0x5c
107#define ICH6_REG_RIRBSTS 0x5d
108#define ICH6_REG_RIRBSIZE 0x5e
109
110#define ICH6_REG_IC 0x60
111#define ICH6_REG_IR 0x64
112#define ICH6_REG_IRS 0x68
113#define ICH6_IRS_VALID (1<<1)
114#define ICH6_IRS_BUSY (1<<0)
115
116#define ICH6_REG_DPLBASE 0x70
117#define ICH6_REG_DPUBASE 0x74
118#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
119
120/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
121enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
122
123/* stream register offsets from stream base */
124#define ICH6_REG_SD_CTL 0x00
125#define ICH6_REG_SD_STS 0x03
126#define ICH6_REG_SD_LPIB 0x04
127#define ICH6_REG_SD_CBL 0x08
128#define ICH6_REG_SD_LVI 0x0c
129#define ICH6_REG_SD_FIFOW 0x0e
130#define ICH6_REG_SD_FIFOSIZE 0x10
131#define ICH6_REG_SD_FORMAT 0x12
132#define ICH6_REG_SD_BDLPL 0x18
133#define ICH6_REG_SD_BDLPU 0x1c
134
135/* PCI space */
136#define ICH6_PCIREG_TCSEL 0x44
137
138/*
139 * other constants
140 */
141
142/* max number of SDs */
07e4ca50
TI
143/* ICH, ATI and VIA have 4 playback and 4 capture */
144#define ICH6_CAPTURE_INDEX 0
145#define ICH6_NUM_CAPTURE 4
146#define ICH6_PLAYBACK_INDEX 4
147#define ICH6_NUM_PLAYBACK 4
148
149/* ULI has 6 playback and 5 capture */
150#define ULI_CAPTURE_INDEX 0
151#define ULI_NUM_CAPTURE 5
152#define ULI_PLAYBACK_INDEX 5
153#define ULI_NUM_PLAYBACK 6
154
155/* this number is statically defined for simplicity */
156#define MAX_AZX_DEV 16
157
1da177e4 158/* max number of fragments - we may use more if allocating more pages for BDL */
07e4ca50
TI
159#define BDL_SIZE PAGE_ALIGN(8192)
160#define AZX_MAX_FRAG (BDL_SIZE / (MAX_AZX_DEV * 16))
1da177e4
LT
161/* max buffer size - no h/w limit, you can increase as you like */
162#define AZX_MAX_BUF_SIZE (1024*1024*1024)
163/* max number of PCM devics per card */
ec9e1c5c
TI
164#define AZX_MAX_AUDIO_PCMS 6
165#define AZX_MAX_MODEM_PCMS 2
166#define AZX_MAX_PCMS (AZX_MAX_AUDIO_PCMS + AZX_MAX_MODEM_PCMS)
1da177e4
LT
167
168/* RIRB int mask: overrun[2], response[0] */
169#define RIRB_INT_RESPONSE 0x01
170#define RIRB_INT_OVERRUN 0x04
171#define RIRB_INT_MASK 0x05
172
173/* STATESTS int mask: SD2,SD1,SD0 */
174#define STATESTS_INT_MASK 0x07
f5d40b30 175#define AZX_MAX_CODECS 4
1da177e4
LT
176
177/* SD_CTL bits */
178#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
179#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
180#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
181#define SD_CTL_STREAM_TAG_SHIFT 20
182
183/* SD_CTL and SD_STS */
184#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
185#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
186#define SD_INT_COMPLETE 0x04 /* completion interrupt */
187#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|SD_INT_COMPLETE)
188
189/* SD_STS */
190#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
191
192/* INTCTL and INTSTS */
193#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
194#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
195#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
196
41e2fce4
M
197/* GCTL unsolicited response enable bit */
198#define ICH6_GCTL_UREN (1<<8)
199
1da177e4
LT
200/* GCTL reset bit */
201#define ICH6_GCTL_RESET (1<<0)
202
203/* CORB/RIRB control, read/write pointer */
204#define ICH6_RBCTL_DMA_EN 0x02 /* enable DMA */
205#define ICH6_RBCTL_IRQ_EN 0x01 /* enable IRQ */
206#define ICH6_RBRWP_CLR 0x8000 /* read/write pointer clear */
207/* below are so far hardcoded - should read registers in future */
208#define ICH6_MAX_CORB_ENTRIES 256
209#define ICH6_MAX_RIRB_ENTRIES 256
210
c74db86b
TI
211/* position fix mode */
212enum {
0be3b5d3 213 POS_FIX_AUTO,
c74db86b 214 POS_FIX_NONE,
0be3b5d3
TI
215 POS_FIX_POSBUF,
216 POS_FIX_FIFO,
c74db86b 217};
1da177e4 218
f5d40b30 219/* Defines for ATI HD Audio support in SB450 south bridge */
f5d40b30
FL
220#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
221#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
222
da3fca21
V
223/* Defines for Nvidia HDA support */
224#define NVIDIA_HDA_TRANSREG_ADDR 0x4e
225#define NVIDIA_HDA_ENABLE_COHBITS 0x0f
f5d40b30 226
1da177e4
LT
227/*
228 * Use CORB/RIRB for communication from/to codecs.
229 * This is the way recommended by Intel (see below).
230 */
231#define USE_CORB_RIRB
232
1da177e4
LT
233/*
234 */
235
236typedef struct snd_azx azx_t;
237typedef struct snd_azx_rb azx_rb_t;
238typedef struct snd_azx_dev azx_dev_t;
239
240struct snd_azx_dev {
241 u32 *bdl; /* virtual address of the BDL */
242 dma_addr_t bdl_addr; /* physical address of the BDL */
243 volatile u32 *posbuf; /* position buffer pointer */
244
245 unsigned int bufsize; /* size of the play buffer in bytes */
246 unsigned int fragsize; /* size of each period in bytes */
247 unsigned int frags; /* number for period in the play buffer */
248 unsigned int fifo_size; /* FIFO size */
0be3b5d3 249 unsigned int last_pos; /* last updated period position */
1da177e4
LT
250
251 void __iomem *sd_addr; /* stream descriptor pointer */
252
253 u32 sd_int_sta_mask; /* stream int status mask */
254
255 /* pcm support */
256 snd_pcm_substream_t *substream; /* assigned substream, set in PCM open */
257 unsigned int format_val; /* format value to be set in the controller and the codec */
258 unsigned char stream_tag; /* assigned stream */
259 unsigned char index; /* stream index */
260
261 unsigned int opened: 1;
262 unsigned int running: 1;
0be3b5d3 263 unsigned int period_updating: 1;
1da177e4
LT
264};
265
266/* CORB/RIRB */
267struct snd_azx_rb {
268 u32 *buf; /* CORB/RIRB buffer
269 * Each CORB entry is 4byte, RIRB is 8byte
270 */
271 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
272 /* for RIRB */
273 unsigned short rp, wp; /* read/write pointers */
274 int cmds; /* number of pending requests */
275 u32 res; /* last read value */
276};
277
278struct snd_azx {
279 snd_card_t *card;
280 struct pci_dev *pci;
281
07e4ca50
TI
282 /* chip type specific */
283 int driver_type;
284 int playback_streams;
285 int playback_index_offset;
286 int capture_streams;
287 int capture_index_offset;
288 int num_streams;
289
1da177e4
LT
290 /* pci resources */
291 unsigned long addr;
292 void __iomem *remap_addr;
293 int irq;
294
295 /* locks */
296 spinlock_t reg_lock;
297 struct semaphore open_mutex;
298
07e4ca50
TI
299 /* streams (x num_streams) */
300 azx_dev_t *azx_dev;
1da177e4
LT
301
302 /* PCM */
303 unsigned int pcm_devs;
304 snd_pcm_t *pcm[AZX_MAX_PCMS];
305
306 /* HD codec */
307 unsigned short codec_mask;
308 struct hda_bus *bus;
309
310 /* CORB/RIRB */
311 azx_rb_t corb;
312 azx_rb_t rirb;
313
314 /* BDL, CORB/RIRB and position buffers */
315 struct snd_dma_buffer bdl;
316 struct snd_dma_buffer rb;
317 struct snd_dma_buffer posbuf;
c74db86b
TI
318
319 /* flags */
320 int position_fix;
ce43fbae 321 unsigned int initialized: 1;
1da177e4
LT
322};
323
07e4ca50
TI
324/* driver types */
325enum {
326 AZX_DRIVER_ICH,
327 AZX_DRIVER_ATI,
328 AZX_DRIVER_VIA,
329 AZX_DRIVER_SIS,
330 AZX_DRIVER_ULI,
da3fca21 331 AZX_DRIVER_NVIDIA,
07e4ca50
TI
332};
333
334static char *driver_short_names[] __devinitdata = {
335 [AZX_DRIVER_ICH] = "HDA Intel",
336 [AZX_DRIVER_ATI] = "HDA ATI SB",
337 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
338 [AZX_DRIVER_SIS] = "HDA SIS966",
da3fca21
V
339 [AZX_DRIVER_ULI] = "HDA ULI M5461",
340 [AZX_DRIVER_NVIDIA] = "HDA NVidia",
07e4ca50
TI
341};
342
1da177e4
LT
343/*
344 * macros for easy use
345 */
346#define azx_writel(chip,reg,value) \
347 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
348#define azx_readl(chip,reg) \
349 readl((chip)->remap_addr + ICH6_REG_##reg)
350#define azx_writew(chip,reg,value) \
351 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
352#define azx_readw(chip,reg) \
353 readw((chip)->remap_addr + ICH6_REG_##reg)
354#define azx_writeb(chip,reg,value) \
355 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
356#define azx_readb(chip,reg) \
357 readb((chip)->remap_addr + ICH6_REG_##reg)
358
359#define azx_sd_writel(dev,reg,value) \
360 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
361#define azx_sd_readl(dev,reg) \
362 readl((dev)->sd_addr + ICH6_REG_##reg)
363#define azx_sd_writew(dev,reg,value) \
364 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
365#define azx_sd_readw(dev,reg) \
366 readw((dev)->sd_addr + ICH6_REG_##reg)
367#define azx_sd_writeb(dev,reg,value) \
368 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
369#define azx_sd_readb(dev,reg) \
370 readb((dev)->sd_addr + ICH6_REG_##reg)
371
372/* for pcm support */
373#define get_azx_dev(substream) (azx_dev_t*)(substream->runtime->private_data)
374
375/* Get the upper 32bit of the given dma_addr_t
376 * Compiler should optimize and eliminate the code if dma_addr_t is 32bit
377 */
378#define upper_32bit(addr) (sizeof(addr) > 4 ? (u32)((addr) >> 32) : (u32)0)
379
380
381/*
382 * Interface for HD codec
383 */
384
385#ifdef USE_CORB_RIRB
386/*
387 * CORB / RIRB interface
388 */
389static int azx_alloc_cmd_io(azx_t *chip)
390{
391 int err;
392
393 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
394 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
395 PAGE_SIZE, &chip->rb);
396 if (err < 0) {
397 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
398 return err;
399 }
400 return 0;
401}
402
403static void azx_init_cmd_io(azx_t *chip)
404{
405 /* CORB set up */
406 chip->corb.addr = chip->rb.addr;
407 chip->corb.buf = (u32 *)chip->rb.area;
408 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
409 azx_writel(chip, CORBUBASE, upper_32bit(chip->corb.addr));
410
07e4ca50
TI
411 /* set the corb size to 256 entries (ULI requires explicitly) */
412 azx_writeb(chip, CORBSIZE, 0x02);
1da177e4
LT
413 /* set the corb write pointer to 0 */
414 azx_writew(chip, CORBWP, 0);
415 /* reset the corb hw read pointer */
416 azx_writew(chip, CORBRP, ICH6_RBRWP_CLR);
417 /* enable corb dma */
418 azx_writeb(chip, CORBCTL, ICH6_RBCTL_DMA_EN);
419
420 /* RIRB set up */
421 chip->rirb.addr = chip->rb.addr + 2048;
422 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
423 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
424 azx_writel(chip, RIRBUBASE, upper_32bit(chip->rirb.addr));
425
07e4ca50
TI
426 /* set the rirb size to 256 entries (ULI requires explicitly) */
427 azx_writeb(chip, RIRBSIZE, 0x02);
1da177e4
LT
428 /* reset the rirb hw write pointer */
429 azx_writew(chip, RIRBWP, ICH6_RBRWP_CLR);
430 /* set N=1, get RIRB response interrupt for new entry */
431 azx_writew(chip, RINTCNT, 1);
432 /* enable rirb dma and response irq */
433#ifdef USE_CORB_RIRB
434 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
435#else
436 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN);
437#endif
438 chip->rirb.rp = chip->rirb.cmds = 0;
439}
440
441static void azx_free_cmd_io(azx_t *chip)
442{
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{
452 azx_t *chip = codec->bus->private_data;
453 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 */
479static void azx_update_rirb(azx_t *chip)
480{
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{
508 azx_t *chip = codec->bus->private_data;
509 int timeout = 50;
510
511 while (chip->rirb.cmds) {
512 if (! --timeout) {
513 snd_printk(KERN_ERR "azx_get_response timeout\n");
514 chip->rirb.rp = azx_readb(chip, RIRBWP);
515 chip->rirb.cmds = 0;
516 return -1;
517 }
518 msleep(1);
519 }
520 return chip->rirb.res; /* the last value */
521}
522
523#else
524/*
525 * Use the single immediate command instead of CORB/RIRB for simplicity
526 *
527 * Note: according to Intel, this is not preferred use. The command was
528 * intended for the BIOS only, and may get confused with unsolicited
529 * responses. So, we shouldn't use it for normal operation from the
530 * driver.
531 * I left the codes, however, for debugging/testing purposes.
532 */
533
534#define azx_alloc_cmd_io(chip) 0
535#define azx_init_cmd_io(chip)
536#define azx_free_cmd_io(chip)
537
538/* send a command */
539static int azx_send_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
540 unsigned int verb, unsigned int para)
541{
542 azx_t *chip = codec->bus->private_data;
543 u32 val;
544 int timeout = 50;
545
546 val = (u32)(codec->addr & 0x0f) << 28;
547 val |= (u32)direct << 27;
548 val |= (u32)nid << 20;
549 val |= verb << 8;
550 val |= para;
551
552 while (timeout--) {
553 /* check ICB busy bit */
554 if (! (azx_readw(chip, IRS) & ICH6_IRS_BUSY)) {
555 /* Clear IRV valid bit */
556 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_VALID);
557 azx_writel(chip, IC, val);
558 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_BUSY);
559 return 0;
560 }
561 udelay(1);
562 }
563 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n", azx_readw(chip, IRS), val);
564 return -EIO;
565}
566
567/* receive a response */
568static unsigned int azx_get_response(struct hda_codec *codec)
569{
570 azx_t *chip = codec->bus->private_data;
571 int timeout = 50;
572
573 while (timeout--) {
574 /* check IRV busy bit */
575 if (azx_readw(chip, IRS) & ICH6_IRS_VALID)
576 return azx_readl(chip, IR);
577 udelay(1);
578 }
579 snd_printd(SFX "get_response timeout: IRS=0x%x\n", azx_readw(chip, IRS));
580 return (unsigned int)-1;
581}
582
583#define azx_update_rirb(chip)
584
585#endif /* USE_CORB_RIRB */
586
587/* reset codec link */
588static int azx_reset(azx_t *chip)
589{
590 int count;
591
592 /* reset controller */
593 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
594
595 count = 50;
596 while (azx_readb(chip, GCTL) && --count)
597 msleep(1);
598
599 /* delay for >= 100us for codec PLL to settle per spec
600 * Rev 0.9 section 5.5.1
601 */
602 msleep(1);
603
604 /* Bring controller out of reset */
605 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
606
607 count = 50;
608 while (! azx_readb(chip, GCTL) && --count)
609 msleep(1);
610
611 /* Brent Chartrand said to wait >= 540us for codecs to intialize */
612 msleep(1);
613
614 /* check to see if controller is ready */
615 if (! azx_readb(chip, GCTL)) {
616 snd_printd("azx_reset: controller not ready!\n");
617 return -EBUSY;
618 }
619
41e2fce4
M
620 /* Accept unsolicited responses */
621 azx_writel(chip, GCTL, azx_readl(chip, GCTL) | ICH6_GCTL_UREN);
622
1da177e4
LT
623 /* detect codecs */
624 if (! chip->codec_mask) {
625 chip->codec_mask = azx_readw(chip, STATESTS);
626 snd_printdd("codec_mask = 0x%x\n", chip->codec_mask);
627 }
628
629 return 0;
630}
631
632
633/*
634 * Lowlevel interface
635 */
636
637/* enable interrupts */
638static void azx_int_enable(azx_t *chip)
639{
640 /* enable controller CIE and GIE */
641 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
642 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
643}
644
645/* disable interrupts */
646static void azx_int_disable(azx_t *chip)
647{
648 int i;
649
650 /* disable interrupts in stream descriptor */
07e4ca50 651 for (i = 0; i < chip->num_streams; i++) {
1da177e4
LT
652 azx_dev_t *azx_dev = &chip->azx_dev[i];
653 azx_sd_writeb(azx_dev, SD_CTL,
654 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
655 }
656
657 /* disable SIE for all streams */
658 azx_writeb(chip, INTCTL, 0);
659
660 /* disable controller CIE and GIE */
661 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
662 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
663}
664
665/* clear interrupts */
666static void azx_int_clear(azx_t *chip)
667{
668 int i;
669
670 /* clear stream status */
07e4ca50 671 for (i = 0; i < chip->num_streams; i++) {
1da177e4
LT
672 azx_dev_t *azx_dev = &chip->azx_dev[i];
673 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
674 }
675
676 /* clear STATESTS */
677 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
678
679 /* clear rirb status */
680 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
681
682 /* clear int status */
683 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
684}
685
686/* start a stream */
687static void azx_stream_start(azx_t *chip, azx_dev_t *azx_dev)
688{
689 /* enable SIE */
690 azx_writeb(chip, INTCTL,
691 azx_readb(chip, INTCTL) | (1 << azx_dev->index));
692 /* set DMA start and interrupt mask */
693 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
694 SD_CTL_DMA_START | SD_INT_MASK);
695}
696
697/* stop a stream */
698static void azx_stream_stop(azx_t *chip, azx_dev_t *azx_dev)
699{
700 /* stop DMA */
701 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
702 ~(SD_CTL_DMA_START | SD_INT_MASK));
703 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
704 /* disable SIE */
705 azx_writeb(chip, INTCTL,
706 azx_readb(chip, INTCTL) & ~(1 << azx_dev->index));
707}
708
709
710/*
711 * initialize the chip
712 */
713static void azx_init_chip(azx_t *chip)
714{
da3fca21 715 unsigned char reg;
1da177e4
LT
716
717 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
718 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
719 * Ensuring these bits are 0 clears playback static on some HD Audio codecs
720 */
da3fca21
V
721 pci_read_config_byte (chip->pci, ICH6_PCIREG_TCSEL, &reg);
722 pci_write_config_byte(chip->pci, ICH6_PCIREG_TCSEL, reg & 0xf8);
1da177e4
LT
723
724 /* reset controller */
725 azx_reset(chip);
726
727 /* initialize interrupts */
728 azx_int_clear(chip);
729 azx_int_enable(chip);
730
731 /* initialize the codec command I/O */
732 azx_init_cmd_io(chip);
733
0be3b5d3
TI
734 /* program the position buffer */
735 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
736 azx_writel(chip, DPUBASE, upper_32bit(chip->posbuf.addr));
f5d40b30 737
da3fca21
V
738 switch (chip->driver_type) {
739 case AZX_DRIVER_ATI:
740 /* For ATI SB450 azalia HD audio, we need to enable snoop */
f5d40b30 741 pci_read_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
da3fca21 742 &reg);
f5d40b30 743 pci_write_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
da3fca21
V
744 (reg & 0xf8) | ATI_SB450_HDAUDIO_ENABLE_SNOOP);
745 break;
746 case AZX_DRIVER_NVIDIA:
747 /* For NVIDIA HDA, enable snoop */
748 pci_read_config_byte(chip->pci,NVIDIA_HDA_TRANSREG_ADDR, &reg);
749 pci_write_config_byte(chip->pci,NVIDIA_HDA_TRANSREG_ADDR,
750 (reg & 0xf0) | NVIDIA_HDA_ENABLE_COHBITS);
751 break;
752 }
1da177e4
LT
753}
754
755
756/*
757 * interrupt handler
758 */
759static irqreturn_t azx_interrupt(int irq, void* dev_id, struct pt_regs *regs)
760{
761 azx_t *chip = dev_id;
762 azx_dev_t *azx_dev;
763 u32 status;
764 int i;
765
766 spin_lock(&chip->reg_lock);
767
768 status = azx_readl(chip, INTSTS);
769 if (status == 0) {
770 spin_unlock(&chip->reg_lock);
771 return IRQ_NONE;
772 }
773
07e4ca50 774 for (i = 0; i < chip->num_streams; i++) {
1da177e4
LT
775 azx_dev = &chip->azx_dev[i];
776 if (status & azx_dev->sd_int_sta_mask) {
777 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
778 if (azx_dev->substream && azx_dev->running) {
0be3b5d3 779 azx_dev->period_updating = 1;
1da177e4
LT
780 spin_unlock(&chip->reg_lock);
781 snd_pcm_period_elapsed(azx_dev->substream);
782 spin_lock(&chip->reg_lock);
0be3b5d3 783 azx_dev->period_updating = 0;
1da177e4
LT
784 }
785 }
786 }
787
788 /* clear rirb int */
789 status = azx_readb(chip, RIRBSTS);
790 if (status & RIRB_INT_MASK) {
791 if (status & RIRB_INT_RESPONSE)
792 azx_update_rirb(chip);
793 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
794 }
795
796#if 0
797 /* clear state status int */
798 if (azx_readb(chip, STATESTS) & 0x04)
799 azx_writeb(chip, STATESTS, 0x04);
800#endif
801 spin_unlock(&chip->reg_lock);
802
803 return IRQ_HANDLED;
804}
805
806
807/*
808 * set up BDL entries
809 */
810static void azx_setup_periods(azx_dev_t *azx_dev)
811{
812 u32 *bdl = azx_dev->bdl;
813 dma_addr_t dma_addr = azx_dev->substream->runtime->dma_addr;
814 int idx;
815
816 /* reset BDL address */
817 azx_sd_writel(azx_dev, SD_BDLPL, 0);
818 azx_sd_writel(azx_dev, SD_BDLPU, 0);
819
820 /* program the initial BDL entries */
821 for (idx = 0; idx < azx_dev->frags; idx++) {
822 unsigned int off = idx << 2; /* 4 dword step */
823 dma_addr_t addr = dma_addr + idx * azx_dev->fragsize;
824 /* program the address field of the BDL entry */
825 bdl[off] = cpu_to_le32((u32)addr);
826 bdl[off+1] = cpu_to_le32(upper_32bit(addr));
827
828 /* program the size field of the BDL entry */
829 bdl[off+2] = cpu_to_le32(azx_dev->fragsize);
830
831 /* program the IOC to enable interrupt when buffer completes */
832 bdl[off+3] = cpu_to_le32(0x01);
833 }
834}
835
836/*
837 * set up the SD for streaming
838 */
839static int azx_setup_controller(azx_t *chip, azx_dev_t *azx_dev)
840{
841 unsigned char val;
842 int timeout;
843
844 /* make sure the run bit is zero for SD */
845 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) & ~SD_CTL_DMA_START);
846 /* reset stream */
847 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) | SD_CTL_STREAM_RESET);
848 udelay(3);
849 timeout = 300;
850 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
851 --timeout)
852 ;
853 val &= ~SD_CTL_STREAM_RESET;
854 azx_sd_writeb(azx_dev, SD_CTL, val);
855 udelay(3);
856
857 timeout = 300;
858 /* waiting for hardware to report that the stream is out of reset */
859 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
860 --timeout)
861 ;
862
863 /* program the stream_tag */
864 azx_sd_writel(azx_dev, SD_CTL,
865 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK) |
866 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
867
868 /* program the length of samples in cyclic buffer */
869 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
870
871 /* program the stream format */
872 /* this value needs to be the same as the one programmed */
873 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
874
875 /* program the stream LVI (last valid index) of the BDL */
876 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
877
878 /* program the BDL address */
879 /* lower BDL address */
880 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl_addr);
881 /* upper BDL address */
882 azx_sd_writel(azx_dev, SD_BDLPU, upper_32bit(azx_dev->bdl_addr));
883
0be3b5d3
TI
884 /* enable the position buffer */
885 if (! (azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
886 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
c74db86b 887
1da177e4
LT
888 /* set the interrupt enable bits in the descriptor control register */
889 azx_sd_writel(azx_dev, SD_CTL, azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
890
891 return 0;
892}
893
894
895/*
896 * Codec initialization
897 */
898
899static int __devinit azx_codec_create(azx_t *chip, const char *model)
900{
901 struct hda_bus_template bus_temp;
902 int c, codecs, err;
903
904 memset(&bus_temp, 0, sizeof(bus_temp));
905 bus_temp.private_data = chip;
906 bus_temp.modelname = model;
907 bus_temp.pci = chip->pci;
908 bus_temp.ops.command = azx_send_cmd;
909 bus_temp.ops.get_response = azx_get_response;
910
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++) {
916 if (chip->codec_mask & (1 << c)) {
917 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 */
937static inline azx_dev_t *azx_assign_device(azx_t *chip, int stream)
938{
07e4ca50
TI
939 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++)
1da177e4
LT
948 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 */
956static inline void azx_release_device(azx_dev_t *azx_dev)
957{
958 azx_dev->opened = 0;
959}
960
961static snd_pcm_hardware_t azx_pcm_hw = {
962 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
963 SNDRV_PCM_INFO_BLOCK_TRANSFER |
964 SNDRV_PCM_INFO_MMAP_VALID |
47123197
JK
965 SNDRV_PCM_INFO_PAUSE /*|*/
966 /*SNDRV_PCM_INFO_RESUME*/),
1da177e4
LT
967 .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 {
982 azx_t *chip;
983 struct hda_codec *codec;
984 struct hda_pcm_stream *hinfo[2];
985};
986
987static int azx_pcm_open(snd_pcm_substream_t *substream)
988{
989 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
990 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
991 azx_t *chip = apcm->chip;
992 azx_dev_t *azx_dev;
993 snd_pcm_runtime_t *runtime = substream->runtime;
994 unsigned long flags;
995 int err;
996
997 down(&chip->open_mutex);
998 azx_dev = azx_assign_device(chip, substream->stream);
999 if (azx_dev == NULL) {
1000 up(&chip->open_mutex);
1001 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);
1012 up(&chip->open_mutex);
1013 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;
1021 up(&chip->open_mutex);
1022 return 0;
1023}
1024
1025static int azx_pcm_close(snd_pcm_substream_t *substream)
1026{
1027 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1028 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1029 azx_t *chip = apcm->chip;
1030 azx_dev_t *azx_dev = get_azx_dev(substream);
1031 unsigned long flags;
1032
1033 down(&chip->open_mutex);
1034 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);
1040 up(&chip->open_mutex);
1041 return 0;
1042}
1043
1044static int azx_pcm_hw_params(snd_pcm_substream_t *substream, snd_pcm_hw_params_t *hw_params)
1045{
1046 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
1047}
1048
1049static int azx_pcm_hw_free(snd_pcm_substream_t *substream)
1050{
1051 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1052 azx_dev_t *azx_dev = get_azx_dev(substream);
1053 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
1065static int azx_pcm_prepare(snd_pcm_substream_t *substream)
1066{
1067 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1068 azx_t *chip = apcm->chip;
1069 azx_dev_t *azx_dev = get_azx_dev(substream);
1070 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1071 snd_pcm_runtime_t *runtime = substream->runtime;
1072
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;
0be3b5d3 1094 azx_dev->last_pos = 0;
1da177e4
LT
1095
1096 return hinfo->ops.prepare(hinfo, apcm->codec, azx_dev->stream_tag,
1097 azx_dev->format_val, substream);
1098}
1099
1100static int azx_pcm_trigger(snd_pcm_substream_t *substream, int cmd)
1101{
1102 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1103 azx_dev_t *azx_dev = get_azx_dev(substream);
1104 azx_t *chip = apcm->chip;
1105 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:
47123197 1116 case SNDRV_PCM_TRIGGER_SUSPEND:
1da177e4
LT
1117 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 ||
47123197 1126 cmd == SNDRV_PCM_TRIGGER_SUSPEND ||
1da177e4
LT
1127 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
1135static snd_pcm_uframes_t azx_pcm_pointer(snd_pcm_substream_t *substream)
1136{
c74db86b
TI
1137 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1138 azx_t *chip = apcm->chip;
1da177e4
LT
1139 azx_dev_t *azx_dev = get_azx_dev(substream);
1140 unsigned int pos;
1141
c74db86b
TI
1142 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;
e8dede5a 1150#if 0 /* disabled temprarily, auto-correction doesn't work well... */
0be3b5d3
TI
1151 else if (chip->position_fix == POS_FIX_AUTO && azx_dev->period_updating) {
1152 /* check the validity of DMA position */
1153 unsigned int diff = 0;
1154 azx_dev->last_pos += azx_dev->fragsize;
1155 if (azx_dev->last_pos > pos)
1156 diff = azx_dev->last_pos - pos;
1157 if (azx_dev->last_pos >= azx_dev->bufsize) {
1158 if (pos < azx_dev->fragsize)
1159 diff = 0;
1160 azx_dev->last_pos = 0;
1161 }
1162 if (diff > 0 && diff <= azx_dev->fifo_size)
1163 pos += azx_dev->fifo_size;
1164 else {
1165 snd_printdd(KERN_INFO "hda_intel: DMA position fix %d, switching to posbuf\n", diff);
1166 chip->position_fix = POS_FIX_POSBUF;
1167 pos = *azx_dev->posbuf;
1168 }
1169 azx_dev->period_updating = 0;
1170 }
e8dede5a
TI
1171#else
1172 else if (chip->position_fix == POS_FIX_AUTO)
1173 pos += azx_dev->fifo_size;
1174#endif
c74db86b 1175 }
1da177e4
LT
1176 if (pos >= azx_dev->bufsize)
1177 pos = 0;
1178 return bytes_to_frames(substream->runtime, pos);
1179}
1180
1181static snd_pcm_ops_t azx_pcm_ops = {
1182 .open = azx_pcm_open,
1183 .close = azx_pcm_close,
1184 .ioctl = snd_pcm_lib_ioctl,
1185 .hw_params = azx_pcm_hw_params,
1186 .hw_free = azx_pcm_hw_free,
1187 .prepare = azx_pcm_prepare,
1188 .trigger = azx_pcm_trigger,
1189 .pointer = azx_pcm_pointer,
1190};
1191
1192static void azx_pcm_free(snd_pcm_t *pcm)
1193{
1194 kfree(pcm->private_data);
1195}
1196
1197static int __devinit create_codec_pcm(azx_t *chip, struct hda_codec *codec,
1198 struct hda_pcm *cpcm, int pcm_dev)
1199{
1200 int err;
1201 snd_pcm_t *pcm;
1202 struct azx_pcm *apcm;
1203
1204 snd_assert(cpcm->stream[0].substreams || cpcm->stream[1].substreams, return -EINVAL);
1205 snd_assert(cpcm->name, return -EINVAL);
1206
1207 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
1208 cpcm->stream[0].substreams, cpcm->stream[1].substreams,
1209 &pcm);
1210 if (err < 0)
1211 return err;
1212 strcpy(pcm->name, cpcm->name);
1213 apcm = kmalloc(sizeof(*apcm), GFP_KERNEL);
1214 if (apcm == NULL)
1215 return -ENOMEM;
1216 apcm->chip = chip;
1217 apcm->codec = codec;
1218 apcm->hinfo[0] = &cpcm->stream[0];
1219 apcm->hinfo[1] = &cpcm->stream[1];
1220 pcm->private_data = apcm;
1221 pcm->private_free = azx_pcm_free;
1222 if (cpcm->stream[0].substreams)
1223 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &azx_pcm_ops);
1224 if (cpcm->stream[1].substreams)
1225 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &azx_pcm_ops);
1226 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1227 snd_dma_pci_data(chip->pci),
1228 1024 * 64, 1024 * 128);
1229 chip->pcm[pcm_dev] = pcm;
47123197 1230 chip->pcm_devs = pcm_dev + 1;
1da177e4
LT
1231
1232 return 0;
1233}
1234
1235static int __devinit azx_pcm_create(azx_t *chip)
1236{
1237 struct list_head *p;
1238 struct hda_codec *codec;
1239 int c, err;
1240 int pcm_dev;
1241
1242 if ((err = snd_hda_build_pcms(chip->bus)) < 0)
1243 return err;
1244
ec9e1c5c 1245 /* create audio PCMs */
1da177e4
LT
1246 pcm_dev = 0;
1247 list_for_each(p, &chip->bus->codec_list) {
1248 codec = list_entry(p, struct hda_codec, list);
1249 for (c = 0; c < codec->num_pcms; c++) {
ec9e1c5c
TI
1250 if (codec->pcm_info[c].is_modem)
1251 continue; /* create later */
1252 if (pcm_dev >= AZX_MAX_AUDIO_PCMS) {
1253 snd_printk(KERN_ERR SFX "Too many audio PCMs\n");
1254 return -EINVAL;
1255 }
1256 err = create_codec_pcm(chip, codec, &codec->pcm_info[c], pcm_dev);
1257 if (err < 0)
1258 return err;
1259 pcm_dev++;
1260 }
1261 }
1262
1263 /* create modem PCMs */
1264 pcm_dev = AZX_MAX_AUDIO_PCMS;
1265 list_for_each(p, &chip->bus->codec_list) {
1266 codec = list_entry(p, struct hda_codec, list);
1267 for (c = 0; c < codec->num_pcms; c++) {
1268 if (! codec->pcm_info[c].is_modem)
1269 continue; /* already created */
a28f1cda 1270 if (pcm_dev >= AZX_MAX_PCMS) {
ec9e1c5c 1271 snd_printk(KERN_ERR SFX "Too many modem PCMs\n");
1da177e4
LT
1272 return -EINVAL;
1273 }
1274 err = create_codec_pcm(chip, codec, &codec->pcm_info[c], pcm_dev);
1275 if (err < 0)
1276 return err;
6632d198 1277 chip->pcm[pcm_dev]->dev_class = SNDRV_PCM_CLASS_MODEM;
1da177e4
LT
1278 pcm_dev++;
1279 }
1280 }
1281 return 0;
1282}
1283
1284/*
1285 * mixer creation - all stuff is implemented in hda module
1286 */
1287static int __devinit azx_mixer_create(azx_t *chip)
1288{
1289 return snd_hda_build_controls(chip->bus);
1290}
1291
1292
1293/*
1294 * initialize SD streams
1295 */
1296static int __devinit azx_init_stream(azx_t *chip)
1297{
1298 int i;
1299
1300 /* initialize each stream (aka device)
1301 * assign the starting bdl address to each stream (device) and initialize
1302 */
07e4ca50 1303 for (i = 0; i < chip->num_streams; i++) {
1da177e4
LT
1304 unsigned int off = sizeof(u32) * (i * AZX_MAX_FRAG * 4);
1305 azx_dev_t *azx_dev = &chip->azx_dev[i];
1306 azx_dev->bdl = (u32 *)(chip->bdl.area + off);
1307 azx_dev->bdl_addr = chip->bdl.addr + off;
0be3b5d3 1308 azx_dev->posbuf = (volatile u32 *)(chip->posbuf.area + i * 8);
1da177e4
LT
1309 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
1310 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
1311 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
1312 azx_dev->sd_int_sta_mask = 1 << i;
1313 /* stream tag: must be non-zero and unique */
1314 azx_dev->index = i;
1315 azx_dev->stream_tag = i + 1;
1316 }
1317
1318 return 0;
1319}
1320
1321
1322#ifdef CONFIG_PM
1323/*
1324 * power management
1325 */
1326static int azx_suspend(snd_card_t *card, pm_message_t state)
1327{
1328 azx_t *chip = card->pm_private_data;
1329 int i;
1330
1331 for (i = 0; i < chip->pcm_devs; i++)
1332 if (chip->pcm[i])
1333 snd_pcm_suspend_all(chip->pcm[i]);
1334 snd_hda_suspend(chip->bus, state);
1335 azx_free_cmd_io(chip);
1336 pci_disable_device(chip->pci);
1337 return 0;
1338}
1339
1340static int azx_resume(snd_card_t *card)
1341{
1342 azx_t *chip = card->pm_private_data;
1343
1344 pci_enable_device(chip->pci);
1345 pci_set_master(chip->pci);
1346 azx_init_chip(chip);
1347 snd_hda_resume(chip->bus);
1348 return 0;
1349}
1350#endif /* CONFIG_PM */
1351
1352
1353/*
1354 * destructor
1355 */
1356static int azx_free(azx_t *chip)
1357{
ce43fbae 1358 if (chip->initialized) {
1da177e4
LT
1359 int i;
1360
07e4ca50 1361 for (i = 0; i < chip->num_streams; i++)
1da177e4
LT
1362 azx_stream_stop(chip, &chip->azx_dev[i]);
1363
1364 /* disable interrupts */
1365 azx_int_disable(chip);
1366 azx_int_clear(chip);
1367
1368 /* disable CORB/RIRB */
1369 azx_free_cmd_io(chip);
1370
1371 /* disable position buffer */
1372 azx_writel(chip, DPLBASE, 0);
1373 azx_writel(chip, DPUBASE, 0);
1374
1375 /* wait a little for interrupts to finish */
1376 msleep(1);
1da177e4
LT
1377 }
1378
07e4ca50
TI
1379 if (chip->remap_addr)
1380 iounmap(chip->remap_addr);
1da177e4
LT
1381 if (chip->irq >= 0)
1382 free_irq(chip->irq, (void*)chip);
1383
1384 if (chip->bdl.area)
1385 snd_dma_free_pages(&chip->bdl);
1386 if (chip->rb.area)
1387 snd_dma_free_pages(&chip->rb);
1da177e4
LT
1388 if (chip->posbuf.area)
1389 snd_dma_free_pages(&chip->posbuf);
1da177e4
LT
1390 pci_release_regions(chip->pci);
1391 pci_disable_device(chip->pci);
07e4ca50 1392 kfree(chip->azx_dev);
1da177e4
LT
1393 kfree(chip);
1394
1395 return 0;
1396}
1397
1398static int azx_dev_free(snd_device_t *device)
1399{
1400 return azx_free(device->device_data);
1401}
1402
1403/*
1404 * constructor
1405 */
c74db86b 1406static int __devinit azx_create(snd_card_t *card, struct pci_dev *pci,
07e4ca50
TI
1407 int posfix, int driver_type,
1408 azx_t **rchip)
1da177e4
LT
1409{
1410 azx_t *chip;
1411 int err = 0;
1412 static snd_device_ops_t ops = {
1413 .dev_free = azx_dev_free,
1414 };
1415
1416 *rchip = NULL;
1417
1418 if ((err = pci_enable_device(pci)) < 0)
1419 return err;
1420
e560d8d8 1421 chip = kzalloc(sizeof(*chip), GFP_KERNEL);
1da177e4
LT
1422
1423 if (NULL == chip) {
1424 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
1425 pci_disable_device(pci);
1426 return -ENOMEM;
1427 }
1428
1429 spin_lock_init(&chip->reg_lock);
1430 init_MUTEX(&chip->open_mutex);
1431 chip->card = card;
1432 chip->pci = pci;
1433 chip->irq = -1;
07e4ca50 1434 chip->driver_type = driver_type;
1da177e4 1435
c74db86b
TI
1436 chip->position_fix = posfix;
1437
07e4ca50
TI
1438#if BITS_PER_LONG != 64
1439 /* Fix up base address on ULI M5461 */
1440 if (chip->driver_type == AZX_DRIVER_ULI) {
1441 u16 tmp3;
1442 pci_read_config_word(pci, 0x40, &tmp3);
1443 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
1444 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
1445 }
1446#endif
1447
1da177e4
LT
1448 if ((err = pci_request_regions(pci, "ICH HD audio")) < 0) {
1449 kfree(chip);
1450 pci_disable_device(pci);
1451 return err;
1452 }
1453
1454 chip->addr = pci_resource_start(pci,0);
1455 chip->remap_addr = ioremap_nocache(chip->addr, pci_resource_len(pci,0));
1456 if (chip->remap_addr == NULL) {
1457 snd_printk(KERN_ERR SFX "ioremap error\n");
1458 err = -ENXIO;
1459 goto errout;
1460 }
1461
1462 if (request_irq(pci->irq, azx_interrupt, SA_INTERRUPT|SA_SHIRQ,
1463 "HDA Intel", (void*)chip)) {
1464 snd_printk(KERN_ERR SFX "unable to grab IRQ %d\n", pci->irq);
1465 err = -EBUSY;
1466 goto errout;
1467 }
1468 chip->irq = pci->irq;
1469
1470 pci_set_master(pci);
1471 synchronize_irq(chip->irq);
1472
07e4ca50
TI
1473 switch (chip->driver_type) {
1474 case AZX_DRIVER_ULI:
1475 chip->playback_streams = ULI_NUM_PLAYBACK;
1476 chip->capture_streams = ULI_NUM_CAPTURE;
1477 chip->playback_index_offset = ULI_PLAYBACK_INDEX;
1478 chip->capture_index_offset = ULI_CAPTURE_INDEX;
1479 break;
1480 default:
1481 chip->playback_streams = ICH6_NUM_PLAYBACK;
1482 chip->capture_streams = ICH6_NUM_CAPTURE;
1483 chip->playback_index_offset = ICH6_PLAYBACK_INDEX;
1484 chip->capture_index_offset = ICH6_CAPTURE_INDEX;
1485 break;
1486 }
1487 chip->num_streams = chip->playback_streams + chip->capture_streams;
1488 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev), GFP_KERNEL);
1489 if (! chip->azx_dev) {
1490 snd_printk(KERN_ERR "cannot malloc azx_dev\n");
1491 goto errout;
1492 }
1493
1da177e4
LT
1494 /* allocate memory for the BDL for each stream */
1495 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
07e4ca50 1496 BDL_SIZE, &chip->bdl)) < 0) {
1da177e4
LT
1497 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
1498 goto errout;
1499 }
0be3b5d3
TI
1500 /* allocate memory for the position buffer */
1501 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1502 chip->num_streams * 8, &chip->posbuf)) < 0) {
1503 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
1504 goto errout;
1da177e4 1505 }
1da177e4
LT
1506 /* allocate CORB/RIRB */
1507 if ((err = azx_alloc_cmd_io(chip)) < 0)
1508 goto errout;
1509
1510 /* initialize streams */
1511 azx_init_stream(chip);
1512
1513 /* initialize chip */
1514 azx_init_chip(chip);
1515
ce43fbae
TI
1516 chip->initialized = 1;
1517
1da177e4
LT
1518 /* codec detection */
1519 if (! chip->codec_mask) {
1520 snd_printk(KERN_ERR SFX "no codecs found!\n");
1521 err = -ENODEV;
1522 goto errout;
1523 }
1524
1525 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) <0) {
1526 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
1527 goto errout;
1528 }
1529
07e4ca50
TI
1530 strcpy(card->driver, "HDA-Intel");
1531 strcpy(card->shortname, driver_short_names[chip->driver_type]);
1532 sprintf(card->longname, "%s at 0x%lx irq %i", card->shortname, chip->addr, chip->irq);
1533
1da177e4
LT
1534 *rchip = chip;
1535 return 0;
1536
1537 errout:
1538 azx_free(chip);
1539 return err;
1540}
1541
1542static int __devinit azx_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
1543{
1da177e4
LT
1544 snd_card_t *card;
1545 azx_t *chip;
1546 int err = 0;
1547
b7fe4622 1548 card = snd_card_new(index, id, THIS_MODULE, 0);
1da177e4
LT
1549 if (NULL == card) {
1550 snd_printk(KERN_ERR SFX "Error creating card!\n");
1551 return -ENOMEM;
1552 }
1553
b7fe4622 1554 if ((err = azx_create(card, pci, position_fix, pci_id->driver_data,
07e4ca50 1555 &chip)) < 0) {
1da177e4
LT
1556 snd_card_free(card);
1557 return err;
1558 }
1559
1da177e4 1560 /* create codec instances */
b7fe4622 1561 if ((err = azx_codec_create(chip, model)) < 0) {
1da177e4
LT
1562 snd_card_free(card);
1563 return err;
1564 }
1565
1566 /* create PCM streams */
1567 if ((err = azx_pcm_create(chip)) < 0) {
1568 snd_card_free(card);
1569 return err;
1570 }
1571
1572 /* create mixer controls */
1573 if ((err = azx_mixer_create(chip)) < 0) {
1574 snd_card_free(card);
1575 return err;
1576 }
1577
1578 snd_card_set_pm_callback(card, azx_suspend, azx_resume, chip);
1579 snd_card_set_dev(card, &pci->dev);
1580
1581 if ((err = snd_card_register(card)) < 0) {
1582 snd_card_free(card);
1583 return err;
1584 }
1585
1586 pci_set_drvdata(pci, card);
1da177e4
LT
1587
1588 return err;
1589}
1590
1591static void __devexit azx_remove(struct pci_dev *pci)
1592{
1593 snd_card_free(pci_get_drvdata(pci));
1594 pci_set_drvdata(pci, NULL);
1595}
1596
1597/* PCI IDs */
1598static struct pci_device_id azx_ids[] = {
07e4ca50
TI
1599 { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH6 */
1600 { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH7 */
1601 { 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ESB2 */
1602 { 0x1002, 0x437b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATI }, /* ATI SB450 */
1603 { 0x1106, 0x3288, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_VIA }, /* VIA VT8251/VT8237A */
1604 { 0x1039, 0x7502, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_SIS }, /* SIS966 */
1605 { 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ULI }, /* ULI M5461 */
da3fca21
V
1606 { 0x10de, 0x026c, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA 026c */
1607 { 0x10de, 0x0371, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_NVIDIA }, /* NVIDIA 0371 */
1da177e4
LT
1608 { 0, }
1609};
1610MODULE_DEVICE_TABLE(pci, azx_ids);
1611
1612/* pci_driver definition */
1613static struct pci_driver driver = {
1614 .name = "HDA Intel",
3bcd4649 1615 .owner = THIS_MODULE,
1da177e4
LT
1616 .id_table = azx_ids,
1617 .probe = azx_probe,
1618 .remove = __devexit_p(azx_remove),
1619 SND_PCI_PM_CALLBACKS
1620};
1621
1622static int __init alsa_card_azx_init(void)
1623{
01d25d46 1624 return pci_register_driver(&driver);
1da177e4
LT
1625}
1626
1627static void __exit alsa_card_azx_exit(void)
1628{
1629 pci_unregister_driver(&driver);
1630}
1631
1632module_init(alsa_card_azx_init)
1633module_exit(alsa_card_azx_exit)