blob: 96f9e8729192ad74aa2bf548ea46ac6519c83e73 [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>
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
50static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
51static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
52static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
53static char *model[SNDRV_CARDS];
Takashi Iwaic74db862005-05-12 14:26:27 +020054static int position_fix[SNDRV_CARDS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56module_param_array(index, int, NULL, 0444);
57MODULE_PARM_DESC(index, "Index value for Intel HD audio interface.");
58module_param_array(id, charp, NULL, 0444);
59MODULE_PARM_DESC(id, "ID string for Intel HD audio interface.");
60module_param_array(enable, bool, NULL, 0444);
61MODULE_PARM_DESC(enable, "Enable Intel HD audio interface.");
62module_param_array(model, charp, NULL, 0444);
63MODULE_PARM_DESC(model, "Use the given board model.");
Takashi Iwai9bc533f2005-05-13 16:44:27 +020064module_param_array(position_fix, int, NULL, 0444);
Takashi Iwai0be3b5d2005-09-05 17:11:40 +020065MODULE_PARM_DESC(position_fix, "Fix DMA pointer (0 = auto, 1 = none, 2 = POSBUF, 3 = FIFO size).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67MODULE_LICENSE("GPL");
68MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
69 "{Intel, ICH6M},"
Jason Gaston2f1b3812005-05-01 08:58:50 -070070 "{Intel, ICH7},"
Frederick Lif5d40b32005-05-12 14:55:20 +020071 "{Intel, ESB2},"
Takashi Iwaifc20a562005-05-12 15:00:41 +020072 "{ATI, SB450},"
73 "{VIA, VT8251},"
Takashi Iwai47672312005-08-12 16:44:04 +020074 "{VIA, VT8237A},"
Takashi Iwai07e4ca52005-08-24 14:14:57 +020075 "{SiS, SIS966},"
76 "{ULI, M5461}}");
Linus Torvalds1da177e2005-04-16 15:20:36 -070077MODULE_DESCRIPTION("Intel HDA driver");
78
79#define SFX "hda-intel: "
80
81/*
82 * registers
83 */
84#define ICH6_REG_GCAP 0x00
85#define ICH6_REG_VMIN 0x02
86#define ICH6_REG_VMAJ 0x03
87#define ICH6_REG_OUTPAY 0x04
88#define ICH6_REG_INPAY 0x06
89#define ICH6_REG_GCTL 0x08
90#define ICH6_REG_WAKEEN 0x0c
91#define ICH6_REG_STATESTS 0x0e
92#define ICH6_REG_GSTS 0x10
93#define ICH6_REG_INTCTL 0x20
94#define ICH6_REG_INTSTS 0x24
95#define ICH6_REG_WALCLK 0x30
96#define ICH6_REG_SYNC 0x34
97#define ICH6_REG_CORBLBASE 0x40
98#define ICH6_REG_CORBUBASE 0x44
99#define ICH6_REG_CORBWP 0x48
100#define ICH6_REG_CORBRP 0x4A
101#define ICH6_REG_CORBCTL 0x4c
102#define ICH6_REG_CORBSTS 0x4d
103#define ICH6_REG_CORBSIZE 0x4e
104
105#define ICH6_REG_RIRBLBASE 0x50
106#define ICH6_REG_RIRBUBASE 0x54
107#define ICH6_REG_RIRBWP 0x58
108#define ICH6_REG_RINTCNT 0x5a
109#define ICH6_REG_RIRBCTL 0x5c
110#define ICH6_REG_RIRBSTS 0x5d
111#define ICH6_REG_RIRBSIZE 0x5e
112
113#define ICH6_REG_IC 0x60
114#define ICH6_REG_IR 0x64
115#define ICH6_REG_IRS 0x68
116#define ICH6_IRS_VALID (1<<1)
117#define ICH6_IRS_BUSY (1<<0)
118
119#define ICH6_REG_DPLBASE 0x70
120#define ICH6_REG_DPUBASE 0x74
121#define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
122
123/* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
124enum { SDI0, SDI1, SDI2, SDI3, SDO0, SDO1, SDO2, SDO3 };
125
126/* stream register offsets from stream base */
127#define ICH6_REG_SD_CTL 0x00
128#define ICH6_REG_SD_STS 0x03
129#define ICH6_REG_SD_LPIB 0x04
130#define ICH6_REG_SD_CBL 0x08
131#define ICH6_REG_SD_LVI 0x0c
132#define ICH6_REG_SD_FIFOW 0x0e
133#define ICH6_REG_SD_FIFOSIZE 0x10
134#define ICH6_REG_SD_FORMAT 0x12
135#define ICH6_REG_SD_BDLPL 0x18
136#define ICH6_REG_SD_BDLPU 0x1c
137
138/* PCI space */
139#define ICH6_PCIREG_TCSEL 0x44
140
141/*
142 * other constants
143 */
144
145/* max number of SDs */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200146/* ICH, ATI and VIA have 4 playback and 4 capture */
147#define ICH6_CAPTURE_INDEX 0
148#define ICH6_NUM_CAPTURE 4
149#define ICH6_PLAYBACK_INDEX 4
150#define ICH6_NUM_PLAYBACK 4
151
152/* ULI has 6 playback and 5 capture */
153#define ULI_CAPTURE_INDEX 0
154#define ULI_NUM_CAPTURE 5
155#define ULI_PLAYBACK_INDEX 5
156#define ULI_NUM_PLAYBACK 6
157
158/* this number is statically defined for simplicity */
159#define MAX_AZX_DEV 16
160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/* max number of fragments - we may use more if allocating more pages for BDL */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200162#define BDL_SIZE PAGE_ALIGN(8192)
163#define AZX_MAX_FRAG (BDL_SIZE / (MAX_AZX_DEV * 16))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/* max buffer size - no h/w limit, you can increase as you like */
165#define AZX_MAX_BUF_SIZE (1024*1024*1024)
166/* max number of PCM devics per card */
167#define AZX_MAX_PCMS 8
168
169/* RIRB int mask: overrun[2], response[0] */
170#define RIRB_INT_RESPONSE 0x01
171#define RIRB_INT_OVERRUN 0x04
172#define RIRB_INT_MASK 0x05
173
174/* STATESTS int mask: SD2,SD1,SD0 */
175#define STATESTS_INT_MASK 0x07
Frederick Lif5d40b32005-05-12 14:55:20 +0200176#define AZX_MAX_CODECS 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178/* SD_CTL bits */
179#define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
180#define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
181#define SD_CTL_STREAM_TAG_MASK (0xf << 20)
182#define SD_CTL_STREAM_TAG_SHIFT 20
183
184/* SD_CTL and SD_STS */
185#define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
186#define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
187#define SD_INT_COMPLETE 0x04 /* completion interrupt */
188#define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|SD_INT_COMPLETE)
189
190/* SD_STS */
191#define SD_STS_FIFO_READY 0x20 /* FIFO ready */
192
193/* INTCTL and INTSTS */
194#define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
195#define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
196#define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
197
Matt41e2fce2005-07-04 17:49:55 +0200198/* GCTL unsolicited response enable bit */
199#define ICH6_GCTL_UREN (1<<8)
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201/* GCTL reset bit */
202#define ICH6_GCTL_RESET (1<<0)
203
204/* CORB/RIRB control, read/write pointer */
205#define ICH6_RBCTL_DMA_EN 0x02 /* enable DMA */
206#define ICH6_RBCTL_IRQ_EN 0x01 /* enable IRQ */
207#define ICH6_RBRWP_CLR 0x8000 /* read/write pointer clear */
208/* below are so far hardcoded - should read registers in future */
209#define ICH6_MAX_CORB_ENTRIES 256
210#define ICH6_MAX_RIRB_ENTRIES 256
211
Takashi Iwaic74db862005-05-12 14:26:27 +0200212/* position fix mode */
213enum {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200214 POS_FIX_AUTO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200215 POS_FIX_NONE,
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200216 POS_FIX_POSBUF,
217 POS_FIX_FIFO,
Takashi Iwaic74db862005-05-12 14:26:27 +0200218};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Frederick Lif5d40b32005-05-12 14:55:20 +0200220/* Defines for ATI HD Audio support in SB450 south bridge */
Frederick Lif5d40b32005-05-12 14:55:20 +0200221#define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
222#define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
223
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/*
226 * Use CORB/RIRB for communication from/to codecs.
227 * This is the way recommended by Intel (see below).
228 */
229#define USE_CORB_RIRB
230
231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
233
234typedef struct snd_azx azx_t;
235typedef struct snd_azx_rb azx_rb_t;
236typedef struct snd_azx_dev azx_dev_t;
237
238struct snd_azx_dev {
239 u32 *bdl; /* virtual address of the BDL */
240 dma_addr_t bdl_addr; /* physical address of the BDL */
241 volatile u32 *posbuf; /* position buffer pointer */
242
243 unsigned int bufsize; /* size of the play buffer in bytes */
244 unsigned int fragsize; /* size of each period in bytes */
245 unsigned int frags; /* number for period in the play buffer */
246 unsigned int fifo_size; /* FIFO size */
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200247 unsigned int last_pos; /* last updated period position */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 void __iomem *sd_addr; /* stream descriptor pointer */
250
251 u32 sd_int_sta_mask; /* stream int status mask */
252
253 /* pcm support */
254 snd_pcm_substream_t *substream; /* assigned substream, set in PCM open */
255 unsigned int format_val; /* format value to be set in the controller and the codec */
256 unsigned char stream_tag; /* assigned stream */
257 unsigned char index; /* stream index */
258
259 unsigned int opened: 1;
260 unsigned int running: 1;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200261 unsigned int period_updating: 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262};
263
264/* CORB/RIRB */
265struct snd_azx_rb {
266 u32 *buf; /* CORB/RIRB buffer
267 * Each CORB entry is 4byte, RIRB is 8byte
268 */
269 dma_addr_t addr; /* physical address of CORB/RIRB buffer */
270 /* for RIRB */
271 unsigned short rp, wp; /* read/write pointers */
272 int cmds; /* number of pending requests */
273 u32 res; /* last read value */
274};
275
276struct snd_azx {
277 snd_card_t *card;
278 struct pci_dev *pci;
279
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200280 /* chip type specific */
281 int driver_type;
282 int playback_streams;
283 int playback_index_offset;
284 int capture_streams;
285 int capture_index_offset;
286 int num_streams;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 /* pci resources */
289 unsigned long addr;
290 void __iomem *remap_addr;
291 int irq;
292
293 /* locks */
294 spinlock_t reg_lock;
295 struct semaphore open_mutex;
296
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200297 /* streams (x num_streams) */
298 azx_dev_t *azx_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /* PCM */
301 unsigned int pcm_devs;
302 snd_pcm_t *pcm[AZX_MAX_PCMS];
303
304 /* HD codec */
305 unsigned short codec_mask;
306 struct hda_bus *bus;
307
308 /* CORB/RIRB */
309 azx_rb_t corb;
310 azx_rb_t rirb;
311
312 /* BDL, CORB/RIRB and position buffers */
313 struct snd_dma_buffer bdl;
314 struct snd_dma_buffer rb;
315 struct snd_dma_buffer posbuf;
Takashi Iwaic74db862005-05-12 14:26:27 +0200316
317 /* flags */
318 int position_fix;
Takashi Iwaice43fba2005-05-30 20:33:44 +0200319 unsigned int initialized: 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200322/* driver types */
323enum {
324 AZX_DRIVER_ICH,
325 AZX_DRIVER_ATI,
326 AZX_DRIVER_VIA,
327 AZX_DRIVER_SIS,
328 AZX_DRIVER_ULI,
329};
330
331static char *driver_short_names[] __devinitdata = {
332 [AZX_DRIVER_ICH] = "HDA Intel",
333 [AZX_DRIVER_ATI] = "HDA ATI SB",
334 [AZX_DRIVER_VIA] = "HDA VIA VT82xx",
335 [AZX_DRIVER_SIS] = "HDA SIS966",
336 [AZX_DRIVER_ULI] = "HDA ULI M5461"
337};
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339/*
340 * macros for easy use
341 */
342#define azx_writel(chip,reg,value) \
343 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
344#define azx_readl(chip,reg) \
345 readl((chip)->remap_addr + ICH6_REG_##reg)
346#define azx_writew(chip,reg,value) \
347 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
348#define azx_readw(chip,reg) \
349 readw((chip)->remap_addr + ICH6_REG_##reg)
350#define azx_writeb(chip,reg,value) \
351 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
352#define azx_readb(chip,reg) \
353 readb((chip)->remap_addr + ICH6_REG_##reg)
354
355#define azx_sd_writel(dev,reg,value) \
356 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
357#define azx_sd_readl(dev,reg) \
358 readl((dev)->sd_addr + ICH6_REG_##reg)
359#define azx_sd_writew(dev,reg,value) \
360 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
361#define azx_sd_readw(dev,reg) \
362 readw((dev)->sd_addr + ICH6_REG_##reg)
363#define azx_sd_writeb(dev,reg,value) \
364 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
365#define azx_sd_readb(dev,reg) \
366 readb((dev)->sd_addr + ICH6_REG_##reg)
367
368/* for pcm support */
369#define get_azx_dev(substream) (azx_dev_t*)(substream->runtime->private_data)
370
371/* Get the upper 32bit of the given dma_addr_t
372 * Compiler should optimize and eliminate the code if dma_addr_t is 32bit
373 */
374#define upper_32bit(addr) (sizeof(addr) > 4 ? (u32)((addr) >> 32) : (u32)0)
375
376
377/*
378 * Interface for HD codec
379 */
380
381#ifdef USE_CORB_RIRB
382/*
383 * CORB / RIRB interface
384 */
385static int azx_alloc_cmd_io(azx_t *chip)
386{
387 int err;
388
389 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
390 err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
391 PAGE_SIZE, &chip->rb);
392 if (err < 0) {
393 snd_printk(KERN_ERR SFX "cannot allocate CORB/RIRB\n");
394 return err;
395 }
396 return 0;
397}
398
399static void azx_init_cmd_io(azx_t *chip)
400{
401 /* CORB set up */
402 chip->corb.addr = chip->rb.addr;
403 chip->corb.buf = (u32 *)chip->rb.area;
404 azx_writel(chip, CORBLBASE, (u32)chip->corb.addr);
405 azx_writel(chip, CORBUBASE, upper_32bit(chip->corb.addr));
406
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200407 /* set the corb size to 256 entries (ULI requires explicitly) */
408 azx_writeb(chip, CORBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /* set the corb write pointer to 0 */
410 azx_writew(chip, CORBWP, 0);
411 /* reset the corb hw read pointer */
412 azx_writew(chip, CORBRP, ICH6_RBRWP_CLR);
413 /* enable corb dma */
414 azx_writeb(chip, CORBCTL, ICH6_RBCTL_DMA_EN);
415
416 /* RIRB set up */
417 chip->rirb.addr = chip->rb.addr + 2048;
418 chip->rirb.buf = (u32 *)(chip->rb.area + 2048);
419 azx_writel(chip, RIRBLBASE, (u32)chip->rirb.addr);
420 azx_writel(chip, RIRBUBASE, upper_32bit(chip->rirb.addr));
421
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200422 /* set the rirb size to 256 entries (ULI requires explicitly) */
423 azx_writeb(chip, RIRBSIZE, 0x02);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 /* reset the rirb hw write pointer */
425 azx_writew(chip, RIRBWP, ICH6_RBRWP_CLR);
426 /* set N=1, get RIRB response interrupt for new entry */
427 azx_writew(chip, RINTCNT, 1);
428 /* enable rirb dma and response irq */
429#ifdef USE_CORB_RIRB
430 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN | ICH6_RBCTL_IRQ_EN);
431#else
432 azx_writeb(chip, RIRBCTL, ICH6_RBCTL_DMA_EN);
433#endif
434 chip->rirb.rp = chip->rirb.cmds = 0;
435}
436
437static void azx_free_cmd_io(azx_t *chip)
438{
439 /* disable ringbuffer DMAs */
440 azx_writeb(chip, RIRBCTL, 0);
441 azx_writeb(chip, CORBCTL, 0);
442}
443
444/* send a command */
445static int azx_send_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
446 unsigned int verb, unsigned int para)
447{
448 azx_t *chip = codec->bus->private_data;
449 unsigned int wp;
450 u32 val;
451
452 val = (u32)(codec->addr & 0x0f) << 28;
453 val |= (u32)direct << 27;
454 val |= (u32)nid << 20;
455 val |= verb << 8;
456 val |= para;
457
458 /* add command to corb */
459 wp = azx_readb(chip, CORBWP);
460 wp++;
461 wp %= ICH6_MAX_CORB_ENTRIES;
462
463 spin_lock_irq(&chip->reg_lock);
464 chip->rirb.cmds++;
465 chip->corb.buf[wp] = cpu_to_le32(val);
466 azx_writel(chip, CORBWP, wp);
467 spin_unlock_irq(&chip->reg_lock);
468
469 return 0;
470}
471
472#define ICH6_RIRB_EX_UNSOL_EV (1<<4)
473
474/* retrieve RIRB entry - called from interrupt handler */
475static void azx_update_rirb(azx_t *chip)
476{
477 unsigned int rp, wp;
478 u32 res, res_ex;
479
480 wp = azx_readb(chip, RIRBWP);
481 if (wp == chip->rirb.wp)
482 return;
483 chip->rirb.wp = wp;
484
485 while (chip->rirb.rp != wp) {
486 chip->rirb.rp++;
487 chip->rirb.rp %= ICH6_MAX_RIRB_ENTRIES;
488
489 rp = chip->rirb.rp << 1; /* an RIRB entry is 8-bytes */
490 res_ex = le32_to_cpu(chip->rirb.buf[rp + 1]);
491 res = le32_to_cpu(chip->rirb.buf[rp]);
492 if (res_ex & ICH6_RIRB_EX_UNSOL_EV)
493 snd_hda_queue_unsol_event(chip->bus, res, res_ex);
494 else if (chip->rirb.cmds) {
495 chip->rirb.cmds--;
496 chip->rirb.res = res;
497 }
498 }
499}
500
501/* receive a response */
502static unsigned int azx_get_response(struct hda_codec *codec)
503{
504 azx_t *chip = codec->bus->private_data;
505 int timeout = 50;
506
507 while (chip->rirb.cmds) {
508 if (! --timeout) {
509 snd_printk(KERN_ERR "azx_get_response timeout\n");
510 chip->rirb.rp = azx_readb(chip, RIRBWP);
511 chip->rirb.cmds = 0;
512 return -1;
513 }
514 msleep(1);
515 }
516 return chip->rirb.res; /* the last value */
517}
518
519#else
520/*
521 * Use the single immediate command instead of CORB/RIRB for simplicity
522 *
523 * Note: according to Intel, this is not preferred use. The command was
524 * intended for the BIOS only, and may get confused with unsolicited
525 * responses. So, we shouldn't use it for normal operation from the
526 * driver.
527 * I left the codes, however, for debugging/testing purposes.
528 */
529
530#define azx_alloc_cmd_io(chip) 0
531#define azx_init_cmd_io(chip)
532#define azx_free_cmd_io(chip)
533
534/* send a command */
535static int azx_send_cmd(struct hda_codec *codec, hda_nid_t nid, int direct,
536 unsigned int verb, unsigned int para)
537{
538 azx_t *chip = codec->bus->private_data;
539 u32 val;
540 int timeout = 50;
541
542 val = (u32)(codec->addr & 0x0f) << 28;
543 val |= (u32)direct << 27;
544 val |= (u32)nid << 20;
545 val |= verb << 8;
546 val |= para;
547
548 while (timeout--) {
549 /* check ICB busy bit */
550 if (! (azx_readw(chip, IRS) & ICH6_IRS_BUSY)) {
551 /* Clear IRV valid bit */
552 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_VALID);
553 azx_writel(chip, IC, val);
554 azx_writew(chip, IRS, azx_readw(chip, IRS) | ICH6_IRS_BUSY);
555 return 0;
556 }
557 udelay(1);
558 }
559 snd_printd(SFX "send_cmd timeout: IRS=0x%x, val=0x%x\n", azx_readw(chip, IRS), val);
560 return -EIO;
561}
562
563/* receive a response */
564static unsigned int azx_get_response(struct hda_codec *codec)
565{
566 azx_t *chip = codec->bus->private_data;
567 int timeout = 50;
568
569 while (timeout--) {
570 /* check IRV busy bit */
571 if (azx_readw(chip, IRS) & ICH6_IRS_VALID)
572 return azx_readl(chip, IR);
573 udelay(1);
574 }
575 snd_printd(SFX "get_response timeout: IRS=0x%x\n", azx_readw(chip, IRS));
576 return (unsigned int)-1;
577}
578
579#define azx_update_rirb(chip)
580
581#endif /* USE_CORB_RIRB */
582
583/* reset codec link */
584static int azx_reset(azx_t *chip)
585{
586 int count;
587
588 /* reset controller */
589 azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_RESET);
590
591 count = 50;
592 while (azx_readb(chip, GCTL) && --count)
593 msleep(1);
594
595 /* delay for >= 100us for codec PLL to settle per spec
596 * Rev 0.9 section 5.5.1
597 */
598 msleep(1);
599
600 /* Bring controller out of reset */
601 azx_writeb(chip, GCTL, azx_readb(chip, GCTL) | ICH6_GCTL_RESET);
602
603 count = 50;
604 while (! azx_readb(chip, GCTL) && --count)
605 msleep(1);
606
607 /* Brent Chartrand said to wait >= 540us for codecs to intialize */
608 msleep(1);
609
610 /* check to see if controller is ready */
611 if (! azx_readb(chip, GCTL)) {
612 snd_printd("azx_reset: controller not ready!\n");
613 return -EBUSY;
614 }
615
Matt41e2fce2005-07-04 17:49:55 +0200616 /* Accept unsolicited responses */
617 azx_writel(chip, GCTL, azx_readl(chip, GCTL) | ICH6_GCTL_UREN);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /* detect codecs */
620 if (! chip->codec_mask) {
621 chip->codec_mask = azx_readw(chip, STATESTS);
622 snd_printdd("codec_mask = 0x%x\n", chip->codec_mask);
623 }
624
625 return 0;
626}
627
628
629/*
630 * Lowlevel interface
631 */
632
633/* enable interrupts */
634static void azx_int_enable(azx_t *chip)
635{
636 /* enable controller CIE and GIE */
637 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) |
638 ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN);
639}
640
641/* disable interrupts */
642static void azx_int_disable(azx_t *chip)
643{
644 int i;
645
646 /* disable interrupts in stream descriptor */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200647 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 azx_dev_t *azx_dev = &chip->azx_dev[i];
649 azx_sd_writeb(azx_dev, SD_CTL,
650 azx_sd_readb(azx_dev, SD_CTL) & ~SD_INT_MASK);
651 }
652
653 /* disable SIE for all streams */
654 azx_writeb(chip, INTCTL, 0);
655
656 /* disable controller CIE and GIE */
657 azx_writel(chip, INTCTL, azx_readl(chip, INTCTL) &
658 ~(ICH6_INT_CTRL_EN | ICH6_INT_GLOBAL_EN));
659}
660
661/* clear interrupts */
662static void azx_int_clear(azx_t *chip)
663{
664 int i;
665
666 /* clear stream status */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200667 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 azx_dev_t *azx_dev = &chip->azx_dev[i];
669 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
670 }
671
672 /* clear STATESTS */
673 azx_writeb(chip, STATESTS, STATESTS_INT_MASK);
674
675 /* clear rirb status */
676 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
677
678 /* clear int status */
679 azx_writel(chip, INTSTS, ICH6_INT_CTRL_EN | ICH6_INT_ALL_STREAM);
680}
681
682/* start a stream */
683static void azx_stream_start(azx_t *chip, azx_dev_t *azx_dev)
684{
685 /* enable SIE */
686 azx_writeb(chip, INTCTL,
687 azx_readb(chip, INTCTL) | (1 << azx_dev->index));
688 /* set DMA start and interrupt mask */
689 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) |
690 SD_CTL_DMA_START | SD_INT_MASK);
691}
692
693/* stop a stream */
694static void azx_stream_stop(azx_t *chip, azx_dev_t *azx_dev)
695{
696 /* stop DMA */
697 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) &
698 ~(SD_CTL_DMA_START | SD_INT_MASK));
699 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK); /* to be sure */
700 /* disable SIE */
701 azx_writeb(chip, INTCTL,
702 azx_readb(chip, INTCTL) & ~(1 << azx_dev->index));
703}
704
705
706/*
707 * initialize the chip
708 */
709static void azx_init_chip(azx_t *chip)
710{
Frederick Lif5d40b32005-05-12 14:55:20 +0200711 unsigned char tcsel_reg, ati_misc_cntl2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
714 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
715 * Ensuring these bits are 0 clears playback static on some HD Audio codecs
716 */
717 pci_read_config_byte (chip->pci, ICH6_PCIREG_TCSEL, &tcsel_reg);
718 pci_write_config_byte(chip->pci, ICH6_PCIREG_TCSEL, tcsel_reg & 0xf8);
719
720 /* reset controller */
721 azx_reset(chip);
722
723 /* initialize interrupts */
724 azx_int_clear(chip);
725 azx_int_enable(chip);
726
727 /* initialize the codec command I/O */
728 azx_init_cmd_io(chip);
729
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200730 /* program the position buffer */
731 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr);
732 azx_writel(chip, DPUBASE, upper_32bit(chip->posbuf.addr));
Frederick Lif5d40b32005-05-12 14:55:20 +0200733
734 /* For ATI SB450 azalia HD audio, we need to enable snoop */
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200735 if (chip->driver_type == AZX_DRIVER_ATI) {
Frederick Lif5d40b32005-05-12 14:55:20 +0200736 pci_read_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
737 &ati_misc_cntl2);
738 pci_write_config_byte(chip->pci, ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR,
739 (ati_misc_cntl2 & 0xf8) | ATI_SB450_HDAUDIO_ENABLE_SNOOP);
740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743
744/*
745 * interrupt handler
746 */
747static irqreturn_t azx_interrupt(int irq, void* dev_id, struct pt_regs *regs)
748{
749 azx_t *chip = dev_id;
750 azx_dev_t *azx_dev;
751 u32 status;
752 int i;
753
754 spin_lock(&chip->reg_lock);
755
756 status = azx_readl(chip, INTSTS);
757 if (status == 0) {
758 spin_unlock(&chip->reg_lock);
759 return IRQ_NONE;
760 }
761
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200762 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 azx_dev = &chip->azx_dev[i];
764 if (status & azx_dev->sd_int_sta_mask) {
765 azx_sd_writeb(azx_dev, SD_STS, SD_INT_MASK);
766 if (azx_dev->substream && azx_dev->running) {
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200767 azx_dev->period_updating = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 spin_unlock(&chip->reg_lock);
769 snd_pcm_period_elapsed(azx_dev->substream);
770 spin_lock(&chip->reg_lock);
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200771 azx_dev->period_updating = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
773 }
774 }
775
776 /* clear rirb int */
777 status = azx_readb(chip, RIRBSTS);
778 if (status & RIRB_INT_MASK) {
779 if (status & RIRB_INT_RESPONSE)
780 azx_update_rirb(chip);
781 azx_writeb(chip, RIRBSTS, RIRB_INT_MASK);
782 }
783
784#if 0
785 /* clear state status int */
786 if (azx_readb(chip, STATESTS) & 0x04)
787 azx_writeb(chip, STATESTS, 0x04);
788#endif
789 spin_unlock(&chip->reg_lock);
790
791 return IRQ_HANDLED;
792}
793
794
795/*
796 * set up BDL entries
797 */
798static void azx_setup_periods(azx_dev_t *azx_dev)
799{
800 u32 *bdl = azx_dev->bdl;
801 dma_addr_t dma_addr = azx_dev->substream->runtime->dma_addr;
802 int idx;
803
804 /* reset BDL address */
805 azx_sd_writel(azx_dev, SD_BDLPL, 0);
806 azx_sd_writel(azx_dev, SD_BDLPU, 0);
807
808 /* program the initial BDL entries */
809 for (idx = 0; idx < azx_dev->frags; idx++) {
810 unsigned int off = idx << 2; /* 4 dword step */
811 dma_addr_t addr = dma_addr + idx * azx_dev->fragsize;
812 /* program the address field of the BDL entry */
813 bdl[off] = cpu_to_le32((u32)addr);
814 bdl[off+1] = cpu_to_le32(upper_32bit(addr));
815
816 /* program the size field of the BDL entry */
817 bdl[off+2] = cpu_to_le32(azx_dev->fragsize);
818
819 /* program the IOC to enable interrupt when buffer completes */
820 bdl[off+3] = cpu_to_le32(0x01);
821 }
822}
823
824/*
825 * set up the SD for streaming
826 */
827static int azx_setup_controller(azx_t *chip, azx_dev_t *azx_dev)
828{
829 unsigned char val;
830 int timeout;
831
832 /* make sure the run bit is zero for SD */
833 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) & ~SD_CTL_DMA_START);
834 /* reset stream */
835 azx_sd_writeb(azx_dev, SD_CTL, azx_sd_readb(azx_dev, SD_CTL) | SD_CTL_STREAM_RESET);
836 udelay(3);
837 timeout = 300;
838 while (!((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
839 --timeout)
840 ;
841 val &= ~SD_CTL_STREAM_RESET;
842 azx_sd_writeb(azx_dev, SD_CTL, val);
843 udelay(3);
844
845 timeout = 300;
846 /* waiting for hardware to report that the stream is out of reset */
847 while (((val = azx_sd_readb(azx_dev, SD_CTL)) & SD_CTL_STREAM_RESET) &&
848 --timeout)
849 ;
850
851 /* program the stream_tag */
852 azx_sd_writel(azx_dev, SD_CTL,
853 (azx_sd_readl(azx_dev, SD_CTL) & ~SD_CTL_STREAM_TAG_MASK) |
854 (azx_dev->stream_tag << SD_CTL_STREAM_TAG_SHIFT));
855
856 /* program the length of samples in cyclic buffer */
857 azx_sd_writel(azx_dev, SD_CBL, azx_dev->bufsize);
858
859 /* program the stream format */
860 /* this value needs to be the same as the one programmed */
861 azx_sd_writew(azx_dev, SD_FORMAT, azx_dev->format_val);
862
863 /* program the stream LVI (last valid index) of the BDL */
864 azx_sd_writew(azx_dev, SD_LVI, azx_dev->frags - 1);
865
866 /* program the BDL address */
867 /* lower BDL address */
868 azx_sd_writel(azx_dev, SD_BDLPL, (u32)azx_dev->bdl_addr);
869 /* upper BDL address */
870 azx_sd_writel(azx_dev, SD_BDLPU, upper_32bit(azx_dev->bdl_addr));
871
Takashi Iwai0be3b5d2005-09-05 17:11:40 +0200872 /* enable the position buffer */
873 if (! (azx_readl(chip, DPLBASE) & ICH6_DPLBASE_ENABLE))
874 azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr | ICH6_DPLBASE_ENABLE);
Takashi Iwaic74db862005-05-12 14:26:27 +0200875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /* set the interrupt enable bits in the descriptor control register */
877 azx_sd_writel(azx_dev, SD_CTL, azx_sd_readl(azx_dev, SD_CTL) | SD_INT_MASK);
878
879 return 0;
880}
881
882
883/*
884 * Codec initialization
885 */
886
887static int __devinit azx_codec_create(azx_t *chip, const char *model)
888{
889 struct hda_bus_template bus_temp;
890 int c, codecs, err;
891
892 memset(&bus_temp, 0, sizeof(bus_temp));
893 bus_temp.private_data = chip;
894 bus_temp.modelname = model;
895 bus_temp.pci = chip->pci;
896 bus_temp.ops.command = azx_send_cmd;
897 bus_temp.ops.get_response = azx_get_response;
898
899 if ((err = snd_hda_bus_new(chip->card, &bus_temp, &chip->bus)) < 0)
900 return err;
901
902 codecs = 0;
903 for (c = 0; c < AZX_MAX_CODECS; c++) {
904 if (chip->codec_mask & (1 << c)) {
905 err = snd_hda_codec_new(chip->bus, c, NULL);
906 if (err < 0)
907 continue;
908 codecs++;
909 }
910 }
911 if (! codecs) {
912 snd_printk(KERN_ERR SFX "no codecs initialized\n");
913 return -ENXIO;
914 }
915
916 return 0;
917}
918
919
920/*
921 * PCM support
922 */
923
924/* assign a stream for the PCM */
925static inline azx_dev_t *azx_assign_device(azx_t *chip, int stream)
926{
Takashi Iwai07e4ca52005-08-24 14:14:57 +0200927 int dev, i, nums;
928 if (stream == SNDRV_PCM_STREAM_PLAYBACK) {
929 dev = chip->playback_index_offset;
930 nums = chip->playback_streams;
931 } else {
932 dev = chip->capture_index_offset;
933 nums = chip->capture_streams;
934 }
935 for (i = 0; i < nums; i++, dev++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 if (! chip->azx_dev[dev].opened) {
937 chip->azx_dev[dev].opened = 1;
938 return &chip->azx_dev[dev];
939 }
940 return NULL;
941}
942
943/* release the assigned stream */
944static inline void azx_release_device(azx_dev_t *azx_dev)
945{
946 azx_dev->opened = 0;
947}
948
949static snd_pcm_hardware_t azx_pcm_hw = {
950 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
951 SNDRV_PCM_INFO_BLOCK_TRANSFER |
952 SNDRV_PCM_INFO_MMAP_VALID |
Jaroslav Kysela47123192005-08-15 20:53:07 +0200953 SNDRV_PCM_INFO_PAUSE /*|*/
954 /*SNDRV_PCM_INFO_RESUME*/),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 .formats = SNDRV_PCM_FMTBIT_S16_LE,
956 .rates = SNDRV_PCM_RATE_48000,
957 .rate_min = 48000,
958 .rate_max = 48000,
959 .channels_min = 2,
960 .channels_max = 2,
961 .buffer_bytes_max = AZX_MAX_BUF_SIZE,
962 .period_bytes_min = 128,
963 .period_bytes_max = AZX_MAX_BUF_SIZE / 2,
964 .periods_min = 2,
965 .periods_max = AZX_MAX_FRAG,
966 .fifo_size = 0,
967};
968
969struct azx_pcm {
970 azx_t *chip;
971 struct hda_codec *codec;
972 struct hda_pcm_stream *hinfo[2];
973};
974
975static int azx_pcm_open(snd_pcm_substream_t *substream)
976{
977 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
978 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
979 azx_t *chip = apcm->chip;
980 azx_dev_t *azx_dev;
981 snd_pcm_runtime_t *runtime = substream->runtime;
982 unsigned long flags;
983 int err;
984
985 down(&chip->open_mutex);
986 azx_dev = azx_assign_device(chip, substream->stream);
987 if (azx_dev == NULL) {
988 up(&chip->open_mutex);
989 return -EBUSY;
990 }
991 runtime->hw = azx_pcm_hw;
992 runtime->hw.channels_min = hinfo->channels_min;
993 runtime->hw.channels_max = hinfo->channels_max;
994 runtime->hw.formats = hinfo->formats;
995 runtime->hw.rates = hinfo->rates;
996 snd_pcm_limit_hw_rates(runtime);
997 snd_pcm_hw_constraint_integer(runtime, SNDRV_PCM_HW_PARAM_PERIODS);
998 if ((err = hinfo->ops.open(hinfo, apcm->codec, substream)) < 0) {
999 azx_release_device(azx_dev);
1000 up(&chip->open_mutex);
1001 return err;
1002 }
1003 spin_lock_irqsave(&chip->reg_lock, flags);
1004 azx_dev->substream = substream;
1005 azx_dev->running = 0;
1006 spin_unlock_irqrestore(&chip->reg_lock, flags);
1007
1008 runtime->private_data = azx_dev;
1009 up(&chip->open_mutex);
1010 return 0;
1011}
1012
1013static int azx_pcm_close(snd_pcm_substream_t *substream)
1014{
1015 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1016 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1017 azx_t *chip = apcm->chip;
1018 azx_dev_t *azx_dev = get_azx_dev(substream);
1019 unsigned long flags;
1020
1021 down(&chip->open_mutex);
1022 spin_lock_irqsave(&chip->reg_lock, flags);
1023 azx_dev->substream = NULL;
1024 azx_dev->running = 0;
1025 spin_unlock_irqrestore(&chip->reg_lock, flags);
1026 azx_release_device(azx_dev);
1027 hinfo->ops.close(hinfo, apcm->codec, substream);
1028 up(&chip->open_mutex);
1029 return 0;
1030}
1031
1032static int azx_pcm_hw_params(snd_pcm_substream_t *substream, snd_pcm_hw_params_t *hw_params)
1033{
1034 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
1035}
1036
1037static int azx_pcm_hw_free(snd_pcm_substream_t *substream)
1038{
1039 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1040 azx_dev_t *azx_dev = get_azx_dev(substream);
1041 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1042
1043 /* reset BDL address */
1044 azx_sd_writel(azx_dev, SD_BDLPL, 0);
1045 azx_sd_writel(azx_dev, SD_BDLPU, 0);
1046 azx_sd_writel(azx_dev, SD_CTL, 0);
1047
1048 hinfo->ops.cleanup(hinfo, apcm->codec, substream);
1049
1050 return snd_pcm_lib_free_pages(substream);
1051}
1052
1053static int azx_pcm_prepare(snd_pcm_substream_t *substream)
1054{
1055 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1056 azx_t *chip = apcm->chip;
1057 azx_dev_t *azx_dev = get_azx_dev(substream);
1058 struct hda_pcm_stream *hinfo = apcm->hinfo[substream->stream];
1059 snd_pcm_runtime_t *runtime = substream->runtime;
1060
1061 azx_dev->bufsize = snd_pcm_lib_buffer_bytes(substream);
1062 azx_dev->fragsize = snd_pcm_lib_period_bytes(substream);
1063 azx_dev->frags = azx_dev->bufsize / azx_dev->fragsize;
1064 azx_dev->format_val = snd_hda_calc_stream_format(runtime->rate,
1065 runtime->channels,
1066 runtime->format,
1067 hinfo->maxbps);
1068 if (! azx_dev->format_val) {
1069 snd_printk(KERN_ERR SFX "invalid format_val, rate=%d, ch=%d, format=%d\n",
1070 runtime->rate, runtime->channels, runtime->format);
1071 return -EINVAL;
1072 }
1073
1074 snd_printdd("azx_pcm_prepare: bufsize=0x%x, fragsize=0x%x, format=0x%x\n",
1075 azx_dev->bufsize, azx_dev->fragsize, azx_dev->format_val);
1076 azx_setup_periods(azx_dev);
1077 azx_setup_controller(chip, azx_dev);
1078 if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
1079 azx_dev->fifo_size = azx_sd_readw(azx_dev, SD_FIFOSIZE) + 1;
1080 else
1081 azx_dev->fifo_size = 0;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001082 azx_dev->last_pos = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083
1084 return hinfo->ops.prepare(hinfo, apcm->codec, azx_dev->stream_tag,
1085 azx_dev->format_val, substream);
1086}
1087
1088static int azx_pcm_trigger(snd_pcm_substream_t *substream, int cmd)
1089{
1090 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1091 azx_dev_t *azx_dev = get_azx_dev(substream);
1092 azx_t *chip = apcm->chip;
1093 int err = 0;
1094
1095 spin_lock(&chip->reg_lock);
1096 switch (cmd) {
1097 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
1098 case SNDRV_PCM_TRIGGER_RESUME:
1099 case SNDRV_PCM_TRIGGER_START:
1100 azx_stream_start(chip, azx_dev);
1101 azx_dev->running = 1;
1102 break;
1103 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
Jaroslav Kysela47123192005-08-15 20:53:07 +02001104 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 case SNDRV_PCM_TRIGGER_STOP:
1106 azx_stream_stop(chip, azx_dev);
1107 azx_dev->running = 0;
1108 break;
1109 default:
1110 err = -EINVAL;
1111 }
1112 spin_unlock(&chip->reg_lock);
1113 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH ||
Jaroslav Kysela47123192005-08-15 20:53:07 +02001114 cmd == SNDRV_PCM_TRIGGER_SUSPEND ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 cmd == SNDRV_PCM_TRIGGER_STOP) {
1116 int timeout = 5000;
1117 while (azx_sd_readb(azx_dev, SD_CTL) & SD_CTL_DMA_START && --timeout)
1118 ;
1119 }
1120 return err;
1121}
1122
1123static snd_pcm_uframes_t azx_pcm_pointer(snd_pcm_substream_t *substream)
1124{
Takashi Iwaic74db862005-05-12 14:26:27 +02001125 struct azx_pcm *apcm = snd_pcm_substream_chip(substream);
1126 azx_t *chip = apcm->chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 azx_dev_t *azx_dev = get_azx_dev(substream);
1128 unsigned int pos;
1129
Takashi Iwaic74db862005-05-12 14:26:27 +02001130 if (chip->position_fix == POS_FIX_POSBUF) {
1131 /* use the position buffer */
1132 pos = *azx_dev->posbuf;
1133 } else {
1134 /* read LPIB */
1135 pos = azx_sd_readl(azx_dev, SD_LPIB);
1136 if (chip->position_fix == POS_FIX_FIFO)
1137 pos += azx_dev->fifo_size;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001138 else if (chip->position_fix == POS_FIX_AUTO && azx_dev->period_updating) {
1139 /* check the validity of DMA position */
1140 unsigned int diff = 0;
1141 azx_dev->last_pos += azx_dev->fragsize;
1142 if (azx_dev->last_pos > pos)
1143 diff = azx_dev->last_pos - pos;
1144 if (azx_dev->last_pos >= azx_dev->bufsize) {
1145 if (pos < azx_dev->fragsize)
1146 diff = 0;
1147 azx_dev->last_pos = 0;
1148 }
1149 if (diff > 0 && diff <= azx_dev->fifo_size)
1150 pos += azx_dev->fifo_size;
1151 else {
1152 snd_printdd(KERN_INFO "hda_intel: DMA position fix %d, switching to posbuf\n", diff);
1153 chip->position_fix = POS_FIX_POSBUF;
1154 pos = *azx_dev->posbuf;
1155 }
1156 azx_dev->period_updating = 0;
1157 }
Takashi Iwaic74db862005-05-12 14:26:27 +02001158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (pos >= azx_dev->bufsize)
1160 pos = 0;
1161 return bytes_to_frames(substream->runtime, pos);
1162}
1163
1164static snd_pcm_ops_t azx_pcm_ops = {
1165 .open = azx_pcm_open,
1166 .close = azx_pcm_close,
1167 .ioctl = snd_pcm_lib_ioctl,
1168 .hw_params = azx_pcm_hw_params,
1169 .hw_free = azx_pcm_hw_free,
1170 .prepare = azx_pcm_prepare,
1171 .trigger = azx_pcm_trigger,
1172 .pointer = azx_pcm_pointer,
1173};
1174
1175static void azx_pcm_free(snd_pcm_t *pcm)
1176{
1177 kfree(pcm->private_data);
1178}
1179
1180static int __devinit create_codec_pcm(azx_t *chip, struct hda_codec *codec,
1181 struct hda_pcm *cpcm, int pcm_dev)
1182{
1183 int err;
1184 snd_pcm_t *pcm;
1185 struct azx_pcm *apcm;
1186
1187 snd_assert(cpcm->stream[0].substreams || cpcm->stream[1].substreams, return -EINVAL);
1188 snd_assert(cpcm->name, return -EINVAL);
1189
1190 err = snd_pcm_new(chip->card, cpcm->name, pcm_dev,
1191 cpcm->stream[0].substreams, cpcm->stream[1].substreams,
1192 &pcm);
1193 if (err < 0)
1194 return err;
1195 strcpy(pcm->name, cpcm->name);
1196 apcm = kmalloc(sizeof(*apcm), GFP_KERNEL);
1197 if (apcm == NULL)
1198 return -ENOMEM;
1199 apcm->chip = chip;
1200 apcm->codec = codec;
1201 apcm->hinfo[0] = &cpcm->stream[0];
1202 apcm->hinfo[1] = &cpcm->stream[1];
1203 pcm->private_data = apcm;
1204 pcm->private_free = azx_pcm_free;
1205 if (cpcm->stream[0].substreams)
1206 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &azx_pcm_ops);
1207 if (cpcm->stream[1].substreams)
1208 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &azx_pcm_ops);
1209 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1210 snd_dma_pci_data(chip->pci),
1211 1024 * 64, 1024 * 128);
1212 chip->pcm[pcm_dev] = pcm;
Jaroslav Kysela47123192005-08-15 20:53:07 +02001213 chip->pcm_devs = pcm_dev + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 return 0;
1216}
1217
1218static int __devinit azx_pcm_create(azx_t *chip)
1219{
1220 struct list_head *p;
1221 struct hda_codec *codec;
1222 int c, err;
1223 int pcm_dev;
1224
1225 if ((err = snd_hda_build_pcms(chip->bus)) < 0)
1226 return err;
1227
1228 pcm_dev = 0;
1229 list_for_each(p, &chip->bus->codec_list) {
1230 codec = list_entry(p, struct hda_codec, list);
1231 for (c = 0; c < codec->num_pcms; c++) {
1232 if (pcm_dev >= AZX_MAX_PCMS) {
1233 snd_printk(KERN_ERR SFX "Too many PCMs\n");
1234 return -EINVAL;
1235 }
1236 err = create_codec_pcm(chip, codec, &codec->pcm_info[c], pcm_dev);
1237 if (err < 0)
1238 return err;
1239 pcm_dev++;
1240 }
1241 }
1242 return 0;
1243}
1244
1245/*
1246 * mixer creation - all stuff is implemented in hda module
1247 */
1248static int __devinit azx_mixer_create(azx_t *chip)
1249{
1250 return snd_hda_build_controls(chip->bus);
1251}
1252
1253
1254/*
1255 * initialize SD streams
1256 */
1257static int __devinit azx_init_stream(azx_t *chip)
1258{
1259 int i;
1260
1261 /* initialize each stream (aka device)
1262 * assign the starting bdl address to each stream (device) and initialize
1263 */
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001264 for (i = 0; i < chip->num_streams; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 unsigned int off = sizeof(u32) * (i * AZX_MAX_FRAG * 4);
1266 azx_dev_t *azx_dev = &chip->azx_dev[i];
1267 azx_dev->bdl = (u32 *)(chip->bdl.area + off);
1268 azx_dev->bdl_addr = chip->bdl.addr + off;
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001269 azx_dev->posbuf = (volatile u32 *)(chip->posbuf.area + i * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
1271 azx_dev->sd_addr = chip->remap_addr + (0x20 * i + 0x80);
1272 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
1273 azx_dev->sd_int_sta_mask = 1 << i;
1274 /* stream tag: must be non-zero and unique */
1275 azx_dev->index = i;
1276 azx_dev->stream_tag = i + 1;
1277 }
1278
1279 return 0;
1280}
1281
1282
1283#ifdef CONFIG_PM
1284/*
1285 * power management
1286 */
1287static int azx_suspend(snd_card_t *card, pm_message_t state)
1288{
1289 azx_t *chip = card->pm_private_data;
1290 int i;
1291
1292 for (i = 0; i < chip->pcm_devs; i++)
1293 if (chip->pcm[i])
1294 snd_pcm_suspend_all(chip->pcm[i]);
1295 snd_hda_suspend(chip->bus, state);
1296 azx_free_cmd_io(chip);
1297 pci_disable_device(chip->pci);
1298 return 0;
1299}
1300
1301static int azx_resume(snd_card_t *card)
1302{
1303 azx_t *chip = card->pm_private_data;
1304
1305 pci_enable_device(chip->pci);
1306 pci_set_master(chip->pci);
1307 azx_init_chip(chip);
1308 snd_hda_resume(chip->bus);
1309 return 0;
1310}
1311#endif /* CONFIG_PM */
1312
1313
1314/*
1315 * destructor
1316 */
1317static int azx_free(azx_t *chip)
1318{
Takashi Iwaice43fba2005-05-30 20:33:44 +02001319 if (chip->initialized) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 int i;
1321
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001322 for (i = 0; i < chip->num_streams; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 azx_stream_stop(chip, &chip->azx_dev[i]);
1324
1325 /* disable interrupts */
1326 azx_int_disable(chip);
1327 azx_int_clear(chip);
1328
1329 /* disable CORB/RIRB */
1330 azx_free_cmd_io(chip);
1331
1332 /* disable position buffer */
1333 azx_writel(chip, DPLBASE, 0);
1334 azx_writel(chip, DPUBASE, 0);
1335
1336 /* wait a little for interrupts to finish */
1337 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
1339
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001340 if (chip->remap_addr)
1341 iounmap(chip->remap_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 if (chip->irq >= 0)
1343 free_irq(chip->irq, (void*)chip);
1344
1345 if (chip->bdl.area)
1346 snd_dma_free_pages(&chip->bdl);
1347 if (chip->rb.area)
1348 snd_dma_free_pages(&chip->rb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 if (chip->posbuf.area)
1350 snd_dma_free_pages(&chip->posbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 pci_release_regions(chip->pci);
1352 pci_disable_device(chip->pci);
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001353 kfree(chip->azx_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 kfree(chip);
1355
1356 return 0;
1357}
1358
1359static int azx_dev_free(snd_device_t *device)
1360{
1361 return azx_free(device->device_data);
1362}
1363
1364/*
1365 * constructor
1366 */
Takashi Iwaic74db862005-05-12 14:26:27 +02001367static int __devinit azx_create(snd_card_t *card, struct pci_dev *pci,
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001368 int posfix, int driver_type,
1369 azx_t **rchip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 azx_t *chip;
1372 int err = 0;
1373 static snd_device_ops_t ops = {
1374 .dev_free = azx_dev_free,
1375 };
1376
1377 *rchip = NULL;
1378
1379 if ((err = pci_enable_device(pci)) < 0)
1380 return err;
1381
1382 chip = kcalloc(1, sizeof(*chip), GFP_KERNEL);
1383
1384 if (NULL == chip) {
1385 snd_printk(KERN_ERR SFX "cannot allocate chip\n");
1386 pci_disable_device(pci);
1387 return -ENOMEM;
1388 }
1389
1390 spin_lock_init(&chip->reg_lock);
1391 init_MUTEX(&chip->open_mutex);
1392 chip->card = card;
1393 chip->pci = pci;
1394 chip->irq = -1;
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001395 chip->driver_type = driver_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Takashi Iwaic74db862005-05-12 14:26:27 +02001397 chip->position_fix = posfix;
1398
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001399#if BITS_PER_LONG != 64
1400 /* Fix up base address on ULI M5461 */
1401 if (chip->driver_type == AZX_DRIVER_ULI) {
1402 u16 tmp3;
1403 pci_read_config_word(pci, 0x40, &tmp3);
1404 pci_write_config_word(pci, 0x40, tmp3 | 0x10);
1405 pci_write_config_dword(pci, PCI_BASE_ADDRESS_1, 0);
1406 }
1407#endif
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 if ((err = pci_request_regions(pci, "ICH HD audio")) < 0) {
1410 kfree(chip);
1411 pci_disable_device(pci);
1412 return err;
1413 }
1414
1415 chip->addr = pci_resource_start(pci,0);
1416 chip->remap_addr = ioremap_nocache(chip->addr, pci_resource_len(pci,0));
1417 if (chip->remap_addr == NULL) {
1418 snd_printk(KERN_ERR SFX "ioremap error\n");
1419 err = -ENXIO;
1420 goto errout;
1421 }
1422
1423 if (request_irq(pci->irq, azx_interrupt, SA_INTERRUPT|SA_SHIRQ,
1424 "HDA Intel", (void*)chip)) {
1425 snd_printk(KERN_ERR SFX "unable to grab IRQ %d\n", pci->irq);
1426 err = -EBUSY;
1427 goto errout;
1428 }
1429 chip->irq = pci->irq;
1430
1431 pci_set_master(pci);
1432 synchronize_irq(chip->irq);
1433
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001434 switch (chip->driver_type) {
1435 case AZX_DRIVER_ULI:
1436 chip->playback_streams = ULI_NUM_PLAYBACK;
1437 chip->capture_streams = ULI_NUM_CAPTURE;
1438 chip->playback_index_offset = ULI_PLAYBACK_INDEX;
1439 chip->capture_index_offset = ULI_CAPTURE_INDEX;
1440 break;
1441 default:
1442 chip->playback_streams = ICH6_NUM_PLAYBACK;
1443 chip->capture_streams = ICH6_NUM_CAPTURE;
1444 chip->playback_index_offset = ICH6_PLAYBACK_INDEX;
1445 chip->capture_index_offset = ICH6_CAPTURE_INDEX;
1446 break;
1447 }
1448 chip->num_streams = chip->playback_streams + chip->capture_streams;
1449 chip->azx_dev = kcalloc(chip->num_streams, sizeof(*chip->azx_dev), GFP_KERNEL);
1450 if (! chip->azx_dev) {
1451 snd_printk(KERN_ERR "cannot malloc azx_dev\n");
1452 goto errout;
1453 }
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /* allocate memory for the BDL for each stream */
1456 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001457 BDL_SIZE, &chip->bdl)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 snd_printk(KERN_ERR SFX "cannot allocate BDL\n");
1459 goto errout;
1460 }
Takashi Iwai0be3b5d2005-09-05 17:11:40 +02001461 /* allocate memory for the position buffer */
1462 if ((err = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(chip->pci),
1463 chip->num_streams * 8, &chip->posbuf)) < 0) {
1464 snd_printk(KERN_ERR SFX "cannot allocate posbuf\n");
1465 goto errout;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /* allocate CORB/RIRB */
1468 if ((err = azx_alloc_cmd_io(chip)) < 0)
1469 goto errout;
1470
1471 /* initialize streams */
1472 azx_init_stream(chip);
1473
1474 /* initialize chip */
1475 azx_init_chip(chip);
1476
Takashi Iwaice43fba2005-05-30 20:33:44 +02001477 chip->initialized = 1;
1478
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 /* codec detection */
1480 if (! chip->codec_mask) {
1481 snd_printk(KERN_ERR SFX "no codecs found!\n");
1482 err = -ENODEV;
1483 goto errout;
1484 }
1485
1486 if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) <0) {
1487 snd_printk(KERN_ERR SFX "Error creating device [card]!\n");
1488 goto errout;
1489 }
1490
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001491 strcpy(card->driver, "HDA-Intel");
1492 strcpy(card->shortname, driver_short_names[chip->driver_type]);
1493 sprintf(card->longname, "%s at 0x%lx irq %i", card->shortname, chip->addr, chip->irq);
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 *rchip = chip;
1496 return 0;
1497
1498 errout:
1499 azx_free(chip);
1500 return err;
1501}
1502
1503static int __devinit azx_probe(struct pci_dev *pci, const struct pci_device_id *pci_id)
1504{
1505 static int dev;
1506 snd_card_t *card;
1507 azx_t *chip;
1508 int err = 0;
1509
1510 if (dev >= SNDRV_CARDS)
1511 return -ENODEV;
1512 if (! enable[dev]) {
1513 dev++;
1514 return -ENOENT;
1515 }
1516
1517 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
1518 if (NULL == card) {
1519 snd_printk(KERN_ERR SFX "Error creating card!\n");
1520 return -ENOMEM;
1521 }
1522
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001523 if ((err = azx_create(card, pci, position_fix[dev], pci_id->driver_data,
1524 &chip)) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 snd_card_free(card);
1526 return err;
1527 }
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 /* create codec instances */
1530 if ((err = azx_codec_create(chip, model[dev])) < 0) {
1531 snd_card_free(card);
1532 return err;
1533 }
1534
1535 /* create PCM streams */
1536 if ((err = azx_pcm_create(chip)) < 0) {
1537 snd_card_free(card);
1538 return err;
1539 }
1540
1541 /* create mixer controls */
1542 if ((err = azx_mixer_create(chip)) < 0) {
1543 snd_card_free(card);
1544 return err;
1545 }
1546
1547 snd_card_set_pm_callback(card, azx_suspend, azx_resume, chip);
1548 snd_card_set_dev(card, &pci->dev);
1549
1550 if ((err = snd_card_register(card)) < 0) {
1551 snd_card_free(card);
1552 return err;
1553 }
1554
1555 pci_set_drvdata(pci, card);
1556 dev++;
1557
1558 return err;
1559}
1560
1561static void __devexit azx_remove(struct pci_dev *pci)
1562{
1563 snd_card_free(pci_get_drvdata(pci));
1564 pci_set_drvdata(pci, NULL);
1565}
1566
1567/* PCI IDs */
1568static struct pci_device_id azx_ids[] = {
Takashi Iwai07e4ca52005-08-24 14:14:57 +02001569 { 0x8086, 0x2668, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH6 */
1570 { 0x8086, 0x27d8, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ICH7 */
1571 { 0x8086, 0x269a, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ICH }, /* ESB2 */
1572 { 0x1002, 0x437b, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ATI }, /* ATI SB450 */
1573 { 0x1106, 0x3288, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_VIA }, /* VIA VT8251/VT8237A */
1574 { 0x1039, 0x7502, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_SIS }, /* SIS966 */
1575 { 0x10b9, 0x5461, PCI_ANY_ID, PCI_ANY_ID, 0, 0, AZX_DRIVER_ULI }, /* ULI M5461 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 { 0, }
1577};
1578MODULE_DEVICE_TABLE(pci, azx_ids);
1579
1580/* pci_driver definition */
1581static struct pci_driver driver = {
1582 .name = "HDA Intel",
1583 .id_table = azx_ids,
1584 .probe = azx_probe,
1585 .remove = __devexit_p(azx_remove),
1586 SND_PCI_PM_CALLBACKS
1587};
1588
1589static int __init alsa_card_azx_init(void)
1590{
Takashi Iwai01d25d42005-04-11 16:58:24 +02001591 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592}
1593
1594static void __exit alsa_card_azx_exit(void)
1595{
1596 pci_unregister_driver(&driver);
1597}
1598
1599module_init(alsa_card_azx_init)
1600module_exit(alsa_card_azx_exit)