3 * hda_intel.c - Implementation of primary alsa driver code base
6 * Copyright(c) 2004 Intel Corporation. All rights reserved.
8 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
9 * PeiSen Hou <pshou@realtek.com.tw>
11 * This program is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by the Free
13 * Software Foundation; either version 2 of the License, or (at your option)
16 * This program is distributed in the hope that it will be useful, but WITHOUT
17 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
21 * You should have received a copy of the GNU General Public License along with
22 * this program; if not, write to the Free Software Foundation, Inc., 59
23 * Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 * Matt Jared matt.jared@intel.com
28 * Andy Kopp andy.kopp@intel.com
29 * Dan Kogan dan.d.kogan@intel.com
33 * 2004.12.01 Major rewrite by tiwai, merged the work of pshou
38 #include <linux/delay.h>
39 #include <linux/interrupt.h>
40 #include <linux/kernel.h>
41 #include <linux/module.h>
42 #include <linux/dma-mapping.h>
43 #include <linux/moduleparam.h>
44 #include <linux/init.h>
45 #include <linux/slab.h>
46 #include <linux/pci.h>
47 #include <linux/mutex.h>
48 #include <linux/reboot.h>
49 #include <sound/core.h>
50 #include <sound/initval.h>
51 #include "hda_codec.h"
54 static int index
[SNDRV_CARDS
] = SNDRV_DEFAULT_IDX
;
55 static char *id
[SNDRV_CARDS
] = SNDRV_DEFAULT_STR
;
56 static int enable
[SNDRV_CARDS
] = SNDRV_DEFAULT_ENABLE_PNP
;
57 static char *model
[SNDRV_CARDS
];
58 static int position_fix
[SNDRV_CARDS
];
59 static int bdl_pos_adj
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
-1)] = -1};
60 static int probe_mask
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
-1)] = -1};
61 static int probe_only
[SNDRV_CARDS
];
62 static int single_cmd
;
63 static int enable_msi
= -1;
64 #ifdef CONFIG_SND_HDA_PATCH_LOADER
65 static char *patch
[SNDRV_CARDS
];
67 #ifdef CONFIG_SND_HDA_INPUT_BEEP
68 static int beep_mode
[SNDRV_CARDS
] = {[0 ... (SNDRV_CARDS
-1)] =
69 CONFIG_SND_HDA_INPUT_BEEP_MODE
};
72 module_param_array(index
, int, NULL
, 0444);
73 MODULE_PARM_DESC(index
, "Index value for Intel HD audio interface.");
74 module_param_array(id
, charp
, NULL
, 0444);
75 MODULE_PARM_DESC(id
, "ID string for Intel HD audio interface.");
76 module_param_array(enable
, bool, NULL
, 0444);
77 MODULE_PARM_DESC(enable
, "Enable Intel HD audio interface.");
78 module_param_array(model
, charp
, NULL
, 0444);
79 MODULE_PARM_DESC(model
, "Use the given board model.");
80 module_param_array(position_fix
, int, NULL
, 0444);
81 MODULE_PARM_DESC(position_fix
, "DMA pointer read method."
82 "(0 = auto, 1 = LPIB, 2 = POSBUF, 3 = VIACOMBO).");
83 module_param_array(bdl_pos_adj
, int, NULL
, 0644);
84 MODULE_PARM_DESC(bdl_pos_adj
, "BDL position adjustment offset.");
85 module_param_array(probe_mask
, int, NULL
, 0444);
86 MODULE_PARM_DESC(probe_mask
, "Bitmask to probe codecs (default = -1).");
87 module_param_array(probe_only
, int, NULL
, 0444);
88 MODULE_PARM_DESC(probe_only
, "Only probing and no codec initialization.");
89 module_param(single_cmd
, bool, 0444);
90 MODULE_PARM_DESC(single_cmd
, "Use single command to communicate with codecs "
91 "(for debugging only).");
92 module_param(enable_msi
, int, 0444);
93 MODULE_PARM_DESC(enable_msi
, "Enable Message Signaled Interrupt (MSI)");
94 #ifdef CONFIG_SND_HDA_PATCH_LOADER
95 module_param_array(patch
, charp
, NULL
, 0444);
96 MODULE_PARM_DESC(patch
, "Patch file for Intel HD audio interface.");
98 #ifdef CONFIG_SND_HDA_INPUT_BEEP
99 module_param_array(beep_mode
, int, NULL
, 0444);
100 MODULE_PARM_DESC(beep_mode
, "Select HDA Beep registration mode "
101 "(0=off, 1=on, 2=mute switch on/off) (default=1).");
104 #ifdef CONFIG_SND_HDA_POWER_SAVE
105 static int power_save
= CONFIG_SND_HDA_POWER_SAVE_DEFAULT
;
106 module_param(power_save
, int, 0644);
107 MODULE_PARM_DESC(power_save
, "Automatic power-saving timeout "
108 "(in second, 0 = disable).");
110 /* reset the HD-audio controller in power save mode.
111 * this may give more power-saving, but will take longer time to
114 static int power_save_controller
= 1;
115 module_param(power_save_controller
, bool, 0644);
116 MODULE_PARM_DESC(power_save_controller
, "Reset controller in power save mode.");
119 MODULE_LICENSE("GPL");
120 MODULE_SUPPORTED_DEVICE("{{Intel, ICH6},"
148 MODULE_DESCRIPTION("Intel HDA driver");
150 #ifdef CONFIG_SND_VERBOSE_PRINTK
151 #define SFX /* nop */
153 #define SFX "hda-intel: "
159 #define ICH6_REG_GCAP 0x00
160 #define ICH6_GCAP_64OK (1 << 0) /* 64bit address support */
161 #define ICH6_GCAP_NSDO (3 << 1) /* # of serial data out signals */
162 #define ICH6_GCAP_BSS (31 << 3) /* # of bidirectional streams */
163 #define ICH6_GCAP_ISS (15 << 8) /* # of input streams */
164 #define ICH6_GCAP_OSS (15 << 12) /* # of output streams */
165 #define ICH6_REG_VMIN 0x02
166 #define ICH6_REG_VMAJ 0x03
167 #define ICH6_REG_OUTPAY 0x04
168 #define ICH6_REG_INPAY 0x06
169 #define ICH6_REG_GCTL 0x08
170 #define ICH6_GCTL_RESET (1 << 0) /* controller reset */
171 #define ICH6_GCTL_FCNTRL (1 << 1) /* flush control */
172 #define ICH6_GCTL_UNSOL (1 << 8) /* accept unsol. response enable */
173 #define ICH6_REG_WAKEEN 0x0c
174 #define ICH6_REG_STATESTS 0x0e
175 #define ICH6_REG_GSTS 0x10
176 #define ICH6_GSTS_FSTS (1 << 1) /* flush status */
177 #define ICH6_REG_INTCTL 0x20
178 #define ICH6_REG_INTSTS 0x24
179 #define ICH6_REG_WALLCLK 0x30 /* 24Mhz source */
180 #define ICH6_REG_OLD_SSYNC 0x34 /* SSYNC for old ICH */
181 #define ICH6_REG_SSYNC 0x38
182 #define ICH6_REG_CORBLBASE 0x40
183 #define ICH6_REG_CORBUBASE 0x44
184 #define ICH6_REG_CORBWP 0x48
185 #define ICH6_REG_CORBRP 0x4a
186 #define ICH6_CORBRP_RST (1 << 15) /* read pointer reset */
187 #define ICH6_REG_CORBCTL 0x4c
188 #define ICH6_CORBCTL_RUN (1 << 1) /* enable DMA */
189 #define ICH6_CORBCTL_CMEIE (1 << 0) /* enable memory error irq */
190 #define ICH6_REG_CORBSTS 0x4d
191 #define ICH6_CORBSTS_CMEI (1 << 0) /* memory error indication */
192 #define ICH6_REG_CORBSIZE 0x4e
194 #define ICH6_REG_RIRBLBASE 0x50
195 #define ICH6_REG_RIRBUBASE 0x54
196 #define ICH6_REG_RIRBWP 0x58
197 #define ICH6_RIRBWP_RST (1 << 15) /* write pointer reset */
198 #define ICH6_REG_RINTCNT 0x5a
199 #define ICH6_REG_RIRBCTL 0x5c
200 #define ICH6_RBCTL_IRQ_EN (1 << 0) /* enable IRQ */
201 #define ICH6_RBCTL_DMA_EN (1 << 1) /* enable DMA */
202 #define ICH6_RBCTL_OVERRUN_EN (1 << 2) /* enable overrun irq */
203 #define ICH6_REG_RIRBSTS 0x5d
204 #define ICH6_RBSTS_IRQ (1 << 0) /* response irq */
205 #define ICH6_RBSTS_OVERRUN (1 << 2) /* overrun irq */
206 #define ICH6_REG_RIRBSIZE 0x5e
208 #define ICH6_REG_IC 0x60
209 #define ICH6_REG_IR 0x64
210 #define ICH6_REG_IRS 0x68
211 #define ICH6_IRS_VALID (1<<1)
212 #define ICH6_IRS_BUSY (1<<0)
214 #define ICH6_REG_DPLBASE 0x70
215 #define ICH6_REG_DPUBASE 0x74
216 #define ICH6_DPLBASE_ENABLE 0x1 /* Enable position buffer */
218 /* SD offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
219 enum { SDI0
, SDI1
, SDI2
, SDI3
, SDO0
, SDO1
, SDO2
, SDO3
};
221 /* stream register offsets from stream base */
222 #define ICH6_REG_SD_CTL 0x00
223 #define ICH6_REG_SD_STS 0x03
224 #define ICH6_REG_SD_LPIB 0x04
225 #define ICH6_REG_SD_CBL 0x08
226 #define ICH6_REG_SD_LVI 0x0c
227 #define ICH6_REG_SD_FIFOW 0x0e
228 #define ICH6_REG_SD_FIFOSIZE 0x10
229 #define ICH6_REG_SD_FORMAT 0x12
230 #define ICH6_REG_SD_BDLPL 0x18
231 #define ICH6_REG_SD_BDLPU 0x1c
234 #define ICH6_PCIREG_TCSEL 0x44
240 /* max number of SDs */
241 /* ICH, ATI and VIA have 4 playback and 4 capture */
242 #define ICH6_NUM_CAPTURE 4
243 #define ICH6_NUM_PLAYBACK 4
245 /* ULI has 6 playback and 5 capture */
246 #define ULI_NUM_CAPTURE 5
247 #define ULI_NUM_PLAYBACK 6
249 /* ATI HDMI has 1 playback and 0 capture */
250 #define ATIHDMI_NUM_CAPTURE 0
251 #define ATIHDMI_NUM_PLAYBACK 1
253 /* TERA has 4 playback and 3 capture */
254 #define TERA_NUM_CAPTURE 3
255 #define TERA_NUM_PLAYBACK 4
257 /* this number is statically defined for simplicity */
258 #define MAX_AZX_DEV 16
260 /* max number of fragments - we may use more if allocating more pages for BDL */
261 #define BDL_SIZE 4096
262 #define AZX_MAX_BDL_ENTRIES (BDL_SIZE / 16)
263 #define AZX_MAX_FRAG 32
264 /* max buffer size - no h/w limit, you can increase as you like */
265 #define AZX_MAX_BUF_SIZE (1024*1024*1024)
267 /* RIRB int mask: overrun[2], response[0] */
268 #define RIRB_INT_RESPONSE 0x01
269 #define RIRB_INT_OVERRUN 0x04
270 #define RIRB_INT_MASK 0x05
272 /* STATESTS int mask: S3,SD2,SD1,SD0 */
273 #define AZX_MAX_CODECS 8
274 #define AZX_DEFAULT_CODECS 4
275 #define STATESTS_INT_MASK ((1 << AZX_MAX_CODECS) - 1)
278 #define SD_CTL_STREAM_RESET 0x01 /* stream reset bit */
279 #define SD_CTL_DMA_START 0x02 /* stream DMA start bit */
280 #define SD_CTL_STRIPE (3 << 16) /* stripe control */
281 #define SD_CTL_TRAFFIC_PRIO (1 << 18) /* traffic priority */
282 #define SD_CTL_DIR (1 << 19) /* bi-directional stream */
283 #define SD_CTL_STREAM_TAG_MASK (0xf << 20)
284 #define SD_CTL_STREAM_TAG_SHIFT 20
286 /* SD_CTL and SD_STS */
287 #define SD_INT_DESC_ERR 0x10 /* descriptor error interrupt */
288 #define SD_INT_FIFO_ERR 0x08 /* FIFO error interrupt */
289 #define SD_INT_COMPLETE 0x04 /* completion interrupt */
290 #define SD_INT_MASK (SD_INT_DESC_ERR|SD_INT_FIFO_ERR|\
294 #define SD_STS_FIFO_READY 0x20 /* FIFO ready */
296 /* INTCTL and INTSTS */
297 #define ICH6_INT_ALL_STREAM 0xff /* all stream interrupts */
298 #define ICH6_INT_CTRL_EN 0x40000000 /* controller interrupt enable bit */
299 #define ICH6_INT_GLOBAL_EN 0x80000000 /* global interrupt enable bit */
301 /* below are so far hardcoded - should read registers in future */
302 #define ICH6_MAX_CORB_ENTRIES 256
303 #define ICH6_MAX_RIRB_ENTRIES 256
305 /* position fix mode */
313 /* Defines for ATI HD Audio support in SB450 south bridge */
314 #define ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR 0x42
315 #define ATI_SB450_HDAUDIO_ENABLE_SNOOP 0x02
317 /* Defines for Nvidia HDA support */
318 #define NVIDIA_HDA_TRANSREG_ADDR 0x4e
319 #define NVIDIA_HDA_ENABLE_COHBITS 0x0f
320 #define NVIDIA_HDA_ISTRM_COH 0x4d
321 #define NVIDIA_HDA_OSTRM_COH 0x4c
322 #define NVIDIA_HDA_ENABLE_COHBIT 0x01
324 /* Defines for Intel SCH HDA snoop control */
325 #define INTEL_SCH_HDA_DEVC 0x78
326 #define INTEL_SCH_HDA_DEVC_NOSNOOP (0x1<<11)
328 /* Define IN stream 0 FIFO size offset in VIA controller */
329 #define VIA_IN_STREAM0_FIFO_SIZE_OFFSET 0x90
330 /* Define VIA HD Audio Device ID*/
331 #define VIA_HDAC_DEVICE_ID 0x3288
333 /* HD Audio class code */
334 #define PCI_CLASS_MULTIMEDIA_HD_AUDIO 0x0403
340 struct snd_dma_buffer bdl
; /* BDL buffer */
341 u32
*posbuf
; /* position buffer pointer */
343 unsigned int bufsize
; /* size of the play buffer in bytes */
344 unsigned int period_bytes
; /* size of the period in bytes */
345 unsigned int frags
; /* number for period in the play buffer */
346 unsigned int fifo_size
; /* FIFO size */
347 unsigned long start_wallclk
; /* start + minimum wallclk */
348 unsigned long period_wallclk
; /* wallclk for period */
350 void __iomem
*sd_addr
; /* stream descriptor pointer */
352 u32 sd_int_sta_mask
; /* stream int status mask */
355 struct snd_pcm_substream
*substream
; /* assigned substream,
358 unsigned int format_val
; /* format value to be set in the
359 * controller and the codec
361 unsigned char stream_tag
; /* assigned stream */
362 unsigned char index
; /* stream index */
363 int device
; /* last device number assigned to */
365 unsigned int opened
:1;
366 unsigned int running
:1;
367 unsigned int irq_pending
:1;
370 * A flag to ensure DMA position is 0
371 * when link position is not greater than FIFO size
373 unsigned int insufficient
:1;
378 u32
*buf
; /* CORB/RIRB buffer
379 * Each CORB entry is 4byte, RIRB is 8byte
381 dma_addr_t addr
; /* physical address of CORB/RIRB buffer */
383 unsigned short rp
, wp
; /* read/write pointers */
384 int cmds
[AZX_MAX_CODECS
]; /* number of pending requests */
385 u32 res
[AZX_MAX_CODECS
]; /* last read value */
389 struct snd_card
*card
;
393 /* chip type specific */
395 unsigned int driver_caps
;
396 int playback_streams
;
397 int playback_index_offset
;
399 int capture_index_offset
;
404 void __iomem
*remap_addr
;
409 struct mutex open_mutex
;
411 /* streams (x num_streams) */
412 struct azx_dev
*azx_dev
;
415 struct snd_pcm
*pcm
[HDA_MAX_PCMS
];
418 unsigned short codec_mask
;
419 int codec_probe_mask
; /* copied from probe_mask option */
421 unsigned int beep_mode
;
427 /* CORB/RIRB and position buffers */
428 struct snd_dma_buffer rb
;
429 struct snd_dma_buffer posbuf
;
432 int position_fix
[2]; /* for both playback/capture streams */
434 unsigned int running
:1;
435 unsigned int initialized
:1;
436 unsigned int single_cmd
:1;
437 unsigned int polling_mode
:1;
439 unsigned int irq_pending_warned
:1;
440 unsigned int probing
:1; /* codec probing phase */
443 unsigned int last_cmd
[AZX_MAX_CODECS
];
445 /* for pending irqs */
446 struct work_struct irq_pending_work
;
448 /* reboot notifier (for mysterious hangup problem at power-down) */
449 struct notifier_block reboot_notifier
;
466 AZX_NUM_DRIVERS
, /* keep this as last entry */
469 /* driver quirks (capabilities) */
470 /* bits 0-7 are used for indicating driver type */
471 #define AZX_DCAPS_NO_TCSEL (1 << 8) /* No Intel TCSEL bit */
472 #define AZX_DCAPS_NO_MSI (1 << 9) /* No MSI support */
473 #define AZX_DCAPS_ATI_SNOOP (1 << 10) /* ATI snoop enable */
474 #define AZX_DCAPS_NVIDIA_SNOOP (1 << 11) /* Nvidia snoop enable */
475 #define AZX_DCAPS_SCH_SNOOP (1 << 12) /* SCH/PCH snoop enable */
476 #define AZX_DCAPS_RIRB_DELAY (1 << 13) /* Long delay in read loop */
477 #define AZX_DCAPS_RIRB_PRE_DELAY (1 << 14) /* Put a delay before read */
478 #define AZX_DCAPS_CTX_WORKAROUND (1 << 15) /* X-Fi workaround */
479 #define AZX_DCAPS_POSFIX_LPIB (1 << 16) /* Use LPIB as default */
480 #define AZX_DCAPS_POSFIX_VIA (1 << 17) /* Use VIACOMBO as default */
481 #define AZX_DCAPS_NO_64BIT (1 << 18) /* No 64bit address */
482 #define AZX_DCAPS_SYNC_WRITE (1 << 19) /* sync each cmd write */
483 #define AZX_DCAPS_OLD_SSYNC (1 << 20) /* Old SSYNC reg for ICH */
485 /* quirks for ATI SB / AMD Hudson */
486 #define AZX_DCAPS_PRESET_ATI_SB \
487 (AZX_DCAPS_ATI_SNOOP | AZX_DCAPS_NO_TCSEL | \
488 AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
490 /* quirks for ATI/AMD HDMI */
491 #define AZX_DCAPS_PRESET_ATI_HDMI \
492 (AZX_DCAPS_NO_TCSEL | AZX_DCAPS_SYNC_WRITE | AZX_DCAPS_POSFIX_LPIB)
494 /* quirks for Nvidia */
495 #define AZX_DCAPS_PRESET_NVIDIA \
496 (AZX_DCAPS_NVIDIA_SNOOP | AZX_DCAPS_RIRB_DELAY | AZX_DCAPS_NO_MSI)
498 static char *driver_short_names
[] __devinitdata
= {
499 [AZX_DRIVER_ICH
] = "HDA Intel",
500 [AZX_DRIVER_PCH
] = "HDA Intel PCH",
501 [AZX_DRIVER_SCH
] = "HDA Intel MID",
502 [AZX_DRIVER_ATI
] = "HDA ATI SB",
503 [AZX_DRIVER_ATIHDMI
] = "HDA ATI HDMI",
504 [AZX_DRIVER_VIA
] = "HDA VIA VT82xx",
505 [AZX_DRIVER_SIS
] = "HDA SIS966",
506 [AZX_DRIVER_ULI
] = "HDA ULI M5461",
507 [AZX_DRIVER_NVIDIA
] = "HDA NVidia",
508 [AZX_DRIVER_TERA
] = "HDA Teradici",
509 [AZX_DRIVER_CTX
] = "HDA Creative",
510 [AZX_DRIVER_GENERIC
] = "HD-Audio Generic",
514 * macros for easy use
516 #define azx_writel(chip,reg,value) \
517 writel(value, (chip)->remap_addr + ICH6_REG_##reg)
518 #define azx_readl(chip,reg) \
519 readl((chip)->remap_addr + ICH6_REG_##reg)
520 #define azx_writew(chip,reg,value) \
521 writew(value, (chip)->remap_addr + ICH6_REG_##reg)
522 #define azx_readw(chip,reg) \
523 readw((chip)->remap_addr + ICH6_REG_##reg)
524 #define azx_writeb(chip,reg,value) \
525 writeb(value, (chip)->remap_addr + ICH6_REG_##reg)
526 #define azx_readb(chip,reg) \
527 readb((chip)->remap_addr + ICH6_REG_##reg)
529 #define azx_sd_writel(dev,reg,value) \
530 writel(value, (dev)->sd_addr + ICH6_REG_##reg)
531 #define azx_sd_readl(dev,reg) \
532 readl((dev)->sd_addr + ICH6_REG_##reg)
533 #define azx_sd_writew(dev,reg,value) \
534 writew(value, (dev)->sd_addr + ICH6_REG_##reg)
535 #define azx_sd_readw(dev,reg) \
536 readw((dev)->sd_addr + ICH6_REG_##reg)
537 #define azx_sd_writeb(dev,reg,value) \
538 writeb(value, (dev)->sd_addr + ICH6_REG_##reg)
539 #define azx_sd_readb(dev,reg) \
540 readb((dev)->sd_addr + ICH6_REG_##reg)
542 /* for pcm support */
543 #define get_azx_dev(substream) (substream->runtime->private_data)
545 static int azx_acquire_irq(struct azx
*chip
, int do_disconnect
);
546 static int azx_send_cmd(struct hda_bus
*bus
, unsigned int val
);
548 * Interface for HD codec
552 * CORB / RIRB interface
554 static int azx_alloc_cmd_io(struct azx
*chip
)
558 /* single page (at least 4096 bytes) must suffice for both ringbuffes */
559 err
= snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
,
560 snd_dma_pci_data(chip
->pci
),
561 PAGE_SIZE
, &chip
->rb
);
563 snd_printk(KERN_ERR SFX
"cannot allocate CORB/RIRB\n");
569 static void azx_init_cmd_io(struct azx
*chip
)
571 spin_lock_irq(&chip
->reg_lock
);
573 chip
->corb
.addr
= chip
->rb
.addr
;
574 chip
->corb
.buf
= (u32
*)chip
->rb
.area
;
575 azx_writel(chip
, CORBLBASE
, (u32
)chip
->corb
.addr
);
576 azx_writel(chip
, CORBUBASE
, upper_32_bits(chip
->corb
.addr
));
578 /* set the corb size to 256 entries (ULI requires explicitly) */
579 azx_writeb(chip
, CORBSIZE
, 0x02);
580 /* set the corb write pointer to 0 */
581 azx_writew(chip
, CORBWP
, 0);
582 /* reset the corb hw read pointer */
583 azx_writew(chip
, CORBRP
, ICH6_CORBRP_RST
);
584 /* enable corb dma */
585 azx_writeb(chip
, CORBCTL
, ICH6_CORBCTL_RUN
);
588 chip
->rirb
.addr
= chip
->rb
.addr
+ 2048;
589 chip
->rirb
.buf
= (u32
*)(chip
->rb
.area
+ 2048);
590 chip
->rirb
.wp
= chip
->rirb
.rp
= 0;
591 memset(chip
->rirb
.cmds
, 0, sizeof(chip
->rirb
.cmds
));
592 azx_writel(chip
, RIRBLBASE
, (u32
)chip
->rirb
.addr
);
593 azx_writel(chip
, RIRBUBASE
, upper_32_bits(chip
->rirb
.addr
));
595 /* set the rirb size to 256 entries (ULI requires explicitly) */
596 azx_writeb(chip
, RIRBSIZE
, 0x02);
597 /* reset the rirb hw write pointer */
598 azx_writew(chip
, RIRBWP
, ICH6_RIRBWP_RST
);
599 /* set N=1, get RIRB response interrupt for new entry */
600 if (chip
->driver_caps
& AZX_DCAPS_CTX_WORKAROUND
)
601 azx_writew(chip
, RINTCNT
, 0xc0);
603 azx_writew(chip
, RINTCNT
, 1);
604 /* enable rirb dma and response irq */
605 azx_writeb(chip
, RIRBCTL
, ICH6_RBCTL_DMA_EN
| ICH6_RBCTL_IRQ_EN
);
606 spin_unlock_irq(&chip
->reg_lock
);
609 static void azx_free_cmd_io(struct azx
*chip
)
611 spin_lock_irq(&chip
->reg_lock
);
612 /* disable ringbuffer DMAs */
613 azx_writeb(chip
, RIRBCTL
, 0);
614 azx_writeb(chip
, CORBCTL
, 0);
615 spin_unlock_irq(&chip
->reg_lock
);
618 static unsigned int azx_command_addr(u32 cmd
)
620 unsigned int addr
= cmd
>> 28;
622 if (addr
>= AZX_MAX_CODECS
) {
630 static unsigned int azx_response_addr(u32 res
)
632 unsigned int addr
= res
& 0xf;
634 if (addr
>= AZX_MAX_CODECS
) {
643 static int azx_corb_send_cmd(struct hda_bus
*bus
, u32 val
)
645 struct azx
*chip
= bus
->private_data
;
646 unsigned int addr
= azx_command_addr(val
);
649 spin_lock_irq(&chip
->reg_lock
);
651 /* add command to corb */
652 wp
= azx_readb(chip
, CORBWP
);
654 wp
%= ICH6_MAX_CORB_ENTRIES
;
656 chip
->rirb
.cmds
[addr
]++;
657 chip
->corb
.buf
[wp
] = cpu_to_le32(val
);
658 azx_writel(chip
, CORBWP
, wp
);
660 spin_unlock_irq(&chip
->reg_lock
);
665 #define ICH6_RIRB_EX_UNSOL_EV (1<<4)
667 /* retrieve RIRB entry - called from interrupt handler */
668 static void azx_update_rirb(struct azx
*chip
)
674 wp
= azx_readb(chip
, RIRBWP
);
675 if (wp
== chip
->rirb
.wp
)
679 while (chip
->rirb
.rp
!= wp
) {
681 chip
->rirb
.rp
%= ICH6_MAX_RIRB_ENTRIES
;
683 rp
= chip
->rirb
.rp
<< 1; /* an RIRB entry is 8-bytes */
684 res_ex
= le32_to_cpu(chip
->rirb
.buf
[rp
+ 1]);
685 res
= le32_to_cpu(chip
->rirb
.buf
[rp
]);
686 addr
= azx_response_addr(res_ex
);
687 if (res_ex
& ICH6_RIRB_EX_UNSOL_EV
)
688 snd_hda_queue_unsol_event(chip
->bus
, res
, res_ex
);
689 else if (chip
->rirb
.cmds
[addr
]) {
690 chip
->rirb
.res
[addr
] = res
;
692 chip
->rirb
.cmds
[addr
]--;
694 snd_printk(KERN_ERR SFX
"spurious response %#x:%#x, "
697 chip
->last_cmd
[addr
]);
701 /* receive a response */
702 static unsigned int azx_rirb_get_response(struct hda_bus
*bus
,
705 struct azx
*chip
= bus
->private_data
;
706 unsigned long timeout
;
710 timeout
= jiffies
+ msecs_to_jiffies(1000);
712 if (chip
->polling_mode
|| do_poll
) {
713 spin_lock_irq(&chip
->reg_lock
);
714 azx_update_rirb(chip
);
715 spin_unlock_irq(&chip
->reg_lock
);
717 if (!chip
->rirb
.cmds
[addr
]) {
722 chip
->poll_count
= 0;
723 return chip
->rirb
.res
[addr
]; /* the last value */
725 if (time_after(jiffies
, timeout
))
727 if (bus
->needs_damn_long_delay
)
728 msleep(2); /* temporary workaround */
735 if (!chip
->polling_mode
&& chip
->poll_count
< 2) {
736 snd_printdd(SFX
"azx_get_response timeout, "
737 "polling the codec once: last cmd=0x%08x\n",
738 chip
->last_cmd
[addr
]);
745 if (!chip
->polling_mode
) {
746 snd_printk(KERN_WARNING SFX
"azx_get_response timeout, "
747 "switching to polling mode: last cmd=0x%08x\n",
748 chip
->last_cmd
[addr
]);
749 chip
->polling_mode
= 1;
754 snd_printk(KERN_WARNING SFX
"No response from codec, "
755 "disabling MSI: last cmd=0x%08x\n",
756 chip
->last_cmd
[addr
]);
757 free_irq(chip
->irq
, chip
);
759 pci_disable_msi(chip
->pci
);
761 if (azx_acquire_irq(chip
, 1) < 0) {
769 /* If this critical timeout happens during the codec probing
770 * phase, this is likely an access to a non-existing codec
771 * slot. Better to return an error and reset the system.
776 /* a fatal communication error; need either to reset or to fallback
777 * to the single_cmd mode
780 if (bus
->allow_bus_reset
&& !bus
->response_reset
&& !bus
->in_reset
) {
781 bus
->response_reset
= 1;
782 return -1; /* give a chance to retry */
785 snd_printk(KERN_ERR
"hda_intel: azx_get_response timeout, "
786 "switching to single_cmd mode: last cmd=0x%08x\n",
787 chip
->last_cmd
[addr
]);
788 chip
->single_cmd
= 1;
789 bus
->response_reset
= 0;
790 /* release CORB/RIRB */
791 azx_free_cmd_io(chip
);
792 /* disable unsolicited responses */
793 azx_writel(chip
, GCTL
, azx_readl(chip
, GCTL
) & ~ICH6_GCTL_UNSOL
);
798 * Use the single immediate command instead of CORB/RIRB for simplicity
800 * Note: according to Intel, this is not preferred use. The command was
801 * intended for the BIOS only, and may get confused with unsolicited
802 * responses. So, we shouldn't use it for normal operation from the
804 * I left the codes, however, for debugging/testing purposes.
807 /* receive a response */
808 static int azx_single_wait_for_response(struct azx
*chip
, unsigned int addr
)
813 /* check IRV busy bit */
814 if (azx_readw(chip
, IRS
) & ICH6_IRS_VALID
) {
815 /* reuse rirb.res as the response return value */
816 chip
->rirb
.res
[addr
] = azx_readl(chip
, IR
);
821 if (printk_ratelimit())
822 snd_printd(SFX
"get_response timeout: IRS=0x%x\n",
823 azx_readw(chip
, IRS
));
824 chip
->rirb
.res
[addr
] = -1;
829 static int azx_single_send_cmd(struct hda_bus
*bus
, u32 val
)
831 struct azx
*chip
= bus
->private_data
;
832 unsigned int addr
= azx_command_addr(val
);
837 /* check ICB busy bit */
838 if (!((azx_readw(chip
, IRS
) & ICH6_IRS_BUSY
))) {
839 /* Clear IRV valid bit */
840 azx_writew(chip
, IRS
, azx_readw(chip
, IRS
) |
842 azx_writel(chip
, IC
, val
);
843 azx_writew(chip
, IRS
, azx_readw(chip
, IRS
) |
845 return azx_single_wait_for_response(chip
, addr
);
849 if (printk_ratelimit())
850 snd_printd(SFX
"send_cmd timeout: IRS=0x%x, val=0x%x\n",
851 azx_readw(chip
, IRS
), val
);
855 /* receive a response */
856 static unsigned int azx_single_get_response(struct hda_bus
*bus
,
859 struct azx
*chip
= bus
->private_data
;
860 return chip
->rirb
.res
[addr
];
864 * The below are the main callbacks from hda_codec.
866 * They are just the skeleton to call sub-callbacks according to the
867 * current setting of chip->single_cmd.
871 static int azx_send_cmd(struct hda_bus
*bus
, unsigned int val
)
873 struct azx
*chip
= bus
->private_data
;
875 chip
->last_cmd
[azx_command_addr(val
)] = val
;
876 if (chip
->single_cmd
)
877 return azx_single_send_cmd(bus
, val
);
879 return azx_corb_send_cmd(bus
, val
);
883 static unsigned int azx_get_response(struct hda_bus
*bus
,
886 struct azx
*chip
= bus
->private_data
;
887 if (chip
->single_cmd
)
888 return azx_single_get_response(bus
, addr
);
890 return azx_rirb_get_response(bus
, addr
);
893 #ifdef CONFIG_SND_HDA_POWER_SAVE
894 static void azx_power_notify(struct hda_bus
*bus
);
897 /* reset codec link */
898 static int azx_reset(struct azx
*chip
, int full_reset
)
906 azx_writeb(chip
, STATESTS
, STATESTS_INT_MASK
);
908 /* reset controller */
909 azx_writel(chip
, GCTL
, azx_readl(chip
, GCTL
) & ~ICH6_GCTL_RESET
);
912 while (azx_readb(chip
, GCTL
) && --count
)
915 /* delay for >= 100us for codec PLL to settle per spec
916 * Rev 0.9 section 5.5.1
920 /* Bring controller out of reset */
921 azx_writeb(chip
, GCTL
, azx_readb(chip
, GCTL
) | ICH6_GCTL_RESET
);
924 while (!azx_readb(chip
, GCTL
) && --count
)
927 /* Brent Chartrand said to wait >= 540us for codecs to initialize */
931 /* check to see if controller is ready */
932 if (!azx_readb(chip
, GCTL
)) {
933 snd_printd(SFX
"azx_reset: controller not ready!\n");
937 /* Accept unsolicited responses */
938 if (!chip
->single_cmd
)
939 azx_writel(chip
, GCTL
, azx_readl(chip
, GCTL
) |
943 if (!chip
->codec_mask
) {
944 chip
->codec_mask
= azx_readw(chip
, STATESTS
);
945 snd_printdd(SFX
"codec_mask = 0x%x\n", chip
->codec_mask
);
956 /* enable interrupts */
957 static void azx_int_enable(struct azx
*chip
)
959 /* enable controller CIE and GIE */
960 azx_writel(chip
, INTCTL
, azx_readl(chip
, INTCTL
) |
961 ICH6_INT_CTRL_EN
| ICH6_INT_GLOBAL_EN
);
964 /* disable interrupts */
965 static void azx_int_disable(struct azx
*chip
)
969 /* disable interrupts in stream descriptor */
970 for (i
= 0; i
< chip
->num_streams
; i
++) {
971 struct azx_dev
*azx_dev
= &chip
->azx_dev
[i
];
972 azx_sd_writeb(azx_dev
, SD_CTL
,
973 azx_sd_readb(azx_dev
, SD_CTL
) & ~SD_INT_MASK
);
976 /* disable SIE for all streams */
977 azx_writeb(chip
, INTCTL
, 0);
979 /* disable controller CIE and GIE */
980 azx_writel(chip
, INTCTL
, azx_readl(chip
, INTCTL
) &
981 ~(ICH6_INT_CTRL_EN
| ICH6_INT_GLOBAL_EN
));
984 /* clear interrupts */
985 static void azx_int_clear(struct azx
*chip
)
989 /* clear stream status */
990 for (i
= 0; i
< chip
->num_streams
; i
++) {
991 struct azx_dev
*azx_dev
= &chip
->azx_dev
[i
];
992 azx_sd_writeb(azx_dev
, SD_STS
, SD_INT_MASK
);
996 azx_writeb(chip
, STATESTS
, STATESTS_INT_MASK
);
998 /* clear rirb status */
999 azx_writeb(chip
, RIRBSTS
, RIRB_INT_MASK
);
1001 /* clear int status */
1002 azx_writel(chip
, INTSTS
, ICH6_INT_CTRL_EN
| ICH6_INT_ALL_STREAM
);
1005 /* start a stream */
1006 static void azx_stream_start(struct azx
*chip
, struct azx_dev
*azx_dev
)
1009 * Before stream start, initialize parameter
1011 azx_dev
->insufficient
= 1;
1014 azx_writel(chip
, INTCTL
,
1015 azx_readl(chip
, INTCTL
) | (1 << azx_dev
->index
));
1016 /* set DMA start and interrupt mask */
1017 azx_sd_writeb(azx_dev
, SD_CTL
, azx_sd_readb(azx_dev
, SD_CTL
) |
1018 SD_CTL_DMA_START
| SD_INT_MASK
);
1022 static void azx_stream_clear(struct azx
*chip
, struct azx_dev
*azx_dev
)
1024 azx_sd_writeb(azx_dev
, SD_CTL
, azx_sd_readb(azx_dev
, SD_CTL
) &
1025 ~(SD_CTL_DMA_START
| SD_INT_MASK
));
1026 azx_sd_writeb(azx_dev
, SD_STS
, SD_INT_MASK
); /* to be sure */
1030 static void azx_stream_stop(struct azx
*chip
, struct azx_dev
*azx_dev
)
1032 azx_stream_clear(chip
, azx_dev
);
1034 azx_writel(chip
, INTCTL
,
1035 azx_readl(chip
, INTCTL
) & ~(1 << azx_dev
->index
));
1040 * reset and start the controller registers
1042 static void azx_init_chip(struct azx
*chip
, int full_reset
)
1044 if (chip
->initialized
)
1047 /* reset controller */
1048 azx_reset(chip
, full_reset
);
1050 /* initialize interrupts */
1051 azx_int_clear(chip
);
1052 azx_int_enable(chip
);
1054 /* initialize the codec command I/O */
1055 if (!chip
->single_cmd
)
1056 azx_init_cmd_io(chip
);
1058 /* program the position buffer */
1059 azx_writel(chip
, DPLBASE
, (u32
)chip
->posbuf
.addr
);
1060 azx_writel(chip
, DPUBASE
, upper_32_bits(chip
->posbuf
.addr
));
1062 chip
->initialized
= 1;
1066 * initialize the PCI registers
1068 /* update bits in a PCI register byte */
1069 static void update_pci_byte(struct pci_dev
*pci
, unsigned int reg
,
1070 unsigned char mask
, unsigned char val
)
1074 pci_read_config_byte(pci
, reg
, &data
);
1076 data
|= (val
& mask
);
1077 pci_write_config_byte(pci
, reg
, data
);
1080 static void azx_init_pci(struct azx
*chip
)
1082 unsigned short snoop
;
1084 /* Clear bits 0-2 of PCI register TCSEL (at offset 0x44)
1085 * TCSEL == Traffic Class Select Register, which sets PCI express QOS
1086 * Ensuring these bits are 0 clears playback static on some HD Audio
1088 * The PCI register TCSEL is defined in the Intel manuals.
1090 if (!(chip
->driver_caps
& AZX_DCAPS_NO_TCSEL
)) {
1091 snd_printdd(SFX
"Clearing TCSEL\n");
1092 update_pci_byte(chip
->pci
, ICH6_PCIREG_TCSEL
, 0x07, 0);
1095 /* For ATI SB450/600/700/800/900 and AMD Hudson azalia HD audio,
1096 * we need to enable snoop.
1098 if (chip
->driver_caps
& AZX_DCAPS_ATI_SNOOP
) {
1099 snd_printdd(SFX
"Enabling ATI snoop\n");
1100 update_pci_byte(chip
->pci
,
1101 ATI_SB450_HDAUDIO_MISC_CNTR2_ADDR
,
1102 0x07, ATI_SB450_HDAUDIO_ENABLE_SNOOP
);
1105 /* For NVIDIA HDA, enable snoop */
1106 if (chip
->driver_caps
& AZX_DCAPS_NVIDIA_SNOOP
) {
1107 snd_printdd(SFX
"Enabling Nvidia snoop\n");
1108 update_pci_byte(chip
->pci
,
1109 NVIDIA_HDA_TRANSREG_ADDR
,
1110 0x0f, NVIDIA_HDA_ENABLE_COHBITS
);
1111 update_pci_byte(chip
->pci
,
1112 NVIDIA_HDA_ISTRM_COH
,
1113 0x01, NVIDIA_HDA_ENABLE_COHBIT
);
1114 update_pci_byte(chip
->pci
,
1115 NVIDIA_HDA_OSTRM_COH
,
1116 0x01, NVIDIA_HDA_ENABLE_COHBIT
);
1119 /* Enable SCH/PCH snoop if needed */
1120 if (chip
->driver_caps
& AZX_DCAPS_SCH_SNOOP
) {
1121 pci_read_config_word(chip
->pci
, INTEL_SCH_HDA_DEVC
, &snoop
);
1122 if (snoop
& INTEL_SCH_HDA_DEVC_NOSNOOP
) {
1123 pci_write_config_word(chip
->pci
, INTEL_SCH_HDA_DEVC
,
1124 snoop
& (~INTEL_SCH_HDA_DEVC_NOSNOOP
));
1125 pci_read_config_word(chip
->pci
,
1126 INTEL_SCH_HDA_DEVC
, &snoop
);
1127 snd_printdd(SFX
"HDA snoop disabled, enabling ... %s\n",
1128 (snoop
& INTEL_SCH_HDA_DEVC_NOSNOOP
)
1135 static int azx_position_ok(struct azx
*chip
, struct azx_dev
*azx_dev
);
1140 static irqreturn_t
azx_interrupt(int irq
, void *dev_id
)
1142 struct azx
*chip
= dev_id
;
1143 struct azx_dev
*azx_dev
;
1148 spin_lock(&chip
->reg_lock
);
1150 status
= azx_readl(chip
, INTSTS
);
1152 spin_unlock(&chip
->reg_lock
);
1156 for (i
= 0; i
< chip
->num_streams
; i
++) {
1157 azx_dev
= &chip
->azx_dev
[i
];
1158 if (status
& azx_dev
->sd_int_sta_mask
) {
1159 sd_status
= azx_sd_readb(azx_dev
, SD_STS
);
1160 azx_sd_writeb(azx_dev
, SD_STS
, SD_INT_MASK
);
1161 if (!azx_dev
->substream
|| !azx_dev
->running
||
1162 !(sd_status
& SD_INT_COMPLETE
))
1164 /* check whether this IRQ is really acceptable */
1165 ok
= azx_position_ok(chip
, azx_dev
);
1167 azx_dev
->irq_pending
= 0;
1168 spin_unlock(&chip
->reg_lock
);
1169 snd_pcm_period_elapsed(azx_dev
->substream
);
1170 spin_lock(&chip
->reg_lock
);
1171 } else if (ok
== 0 && chip
->bus
&& chip
->bus
->workq
) {
1172 /* bogus IRQ, process it later */
1173 azx_dev
->irq_pending
= 1;
1174 queue_work(chip
->bus
->workq
,
1175 &chip
->irq_pending_work
);
1180 /* clear rirb int */
1181 status
= azx_readb(chip
, RIRBSTS
);
1182 if (status
& RIRB_INT_MASK
) {
1183 if (status
& RIRB_INT_RESPONSE
) {
1184 if (chip
->driver_caps
& AZX_DCAPS_RIRB_PRE_DELAY
)
1186 azx_update_rirb(chip
);
1188 azx_writeb(chip
, RIRBSTS
, RIRB_INT_MASK
);
1192 /* clear state status int */
1193 if (azx_readb(chip
, STATESTS
) & 0x04)
1194 azx_writeb(chip
, STATESTS
, 0x04);
1196 spin_unlock(&chip
->reg_lock
);
1203 * set up a BDL entry
1205 static int setup_bdle(struct snd_pcm_substream
*substream
,
1206 struct azx_dev
*azx_dev
, u32
**bdlp
,
1207 int ofs
, int size
, int with_ioc
)
1215 if (azx_dev
->frags
>= AZX_MAX_BDL_ENTRIES
)
1218 addr
= snd_pcm_sgbuf_get_addr(substream
, ofs
);
1219 /* program the address field of the BDL entry */
1220 bdl
[0] = cpu_to_le32((u32
)addr
);
1221 bdl
[1] = cpu_to_le32(upper_32_bits(addr
));
1222 /* program the size field of the BDL entry */
1223 chunk
= snd_pcm_sgbuf_get_chunk_size(substream
, ofs
, size
);
1224 bdl
[2] = cpu_to_le32(chunk
);
1225 /* program the IOC to enable interrupt
1226 * only when the whole fragment is processed
1229 bdl
[3] = (size
|| !with_ioc
) ? 0 : cpu_to_le32(0x01);
1239 * set up BDL entries
1241 static int azx_setup_periods(struct azx
*chip
,
1242 struct snd_pcm_substream
*substream
,
1243 struct azx_dev
*azx_dev
)
1246 int i
, ofs
, periods
, period_bytes
;
1249 /* reset BDL address */
1250 azx_sd_writel(azx_dev
, SD_BDLPL
, 0);
1251 azx_sd_writel(azx_dev
, SD_BDLPU
, 0);
1253 period_bytes
= azx_dev
->period_bytes
;
1254 periods
= azx_dev
->bufsize
/ period_bytes
;
1256 /* program the initial BDL entries */
1257 bdl
= (u32
*)azx_dev
->bdl
.area
;
1260 pos_adj
= bdl_pos_adj
[chip
->dev_index
];
1262 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1263 int pos_align
= pos_adj
;
1264 pos_adj
= (pos_adj
* runtime
->rate
+ 47999) / 48000;
1266 pos_adj
= pos_align
;
1268 pos_adj
= ((pos_adj
+ pos_align
- 1) / pos_align
) *
1270 pos_adj
= frames_to_bytes(runtime
, pos_adj
);
1271 if (pos_adj
>= period_bytes
) {
1272 snd_printk(KERN_WARNING SFX
"Too big adjustment %d\n",
1273 bdl_pos_adj
[chip
->dev_index
]);
1276 ofs
= setup_bdle(substream
, azx_dev
,
1278 !substream
->runtime
->no_period_wakeup
);
1284 for (i
= 0; i
< periods
; i
++) {
1285 if (i
== periods
- 1 && pos_adj
)
1286 ofs
= setup_bdle(substream
, azx_dev
, &bdl
, ofs
,
1287 period_bytes
- pos_adj
, 0);
1289 ofs
= setup_bdle(substream
, azx_dev
, &bdl
, ofs
,
1291 !substream
->runtime
->no_period_wakeup
);
1298 snd_printk(KERN_ERR SFX
"Too many BDL entries: buffer=%d, period=%d\n",
1299 azx_dev
->bufsize
, period_bytes
);
1304 static void azx_stream_reset(struct azx
*chip
, struct azx_dev
*azx_dev
)
1309 azx_stream_clear(chip
, azx_dev
);
1311 azx_sd_writeb(azx_dev
, SD_CTL
, azx_sd_readb(azx_dev
, SD_CTL
) |
1312 SD_CTL_STREAM_RESET
);
1315 while (!((val
= azx_sd_readb(azx_dev
, SD_CTL
)) & SD_CTL_STREAM_RESET
) &&
1318 val
&= ~SD_CTL_STREAM_RESET
;
1319 azx_sd_writeb(azx_dev
, SD_CTL
, val
);
1323 /* waiting for hardware to report that the stream is out of reset */
1324 while (((val
= azx_sd_readb(azx_dev
, SD_CTL
)) & SD_CTL_STREAM_RESET
) &&
1328 /* reset first position - may not be synced with hw at this time */
1329 *azx_dev
->posbuf
= 0;
1333 * set up the SD for streaming
1335 static int azx_setup_controller(struct azx
*chip
, struct azx_dev
*azx_dev
)
1337 /* make sure the run bit is zero for SD */
1338 azx_stream_clear(chip
, azx_dev
);
1339 /* program the stream_tag */
1340 azx_sd_writel(azx_dev
, SD_CTL
,
1341 (azx_sd_readl(azx_dev
, SD_CTL
) & ~SD_CTL_STREAM_TAG_MASK
)|
1342 (azx_dev
->stream_tag
<< SD_CTL_STREAM_TAG_SHIFT
));
1344 /* program the length of samples in cyclic buffer */
1345 azx_sd_writel(azx_dev
, SD_CBL
, azx_dev
->bufsize
);
1347 /* program the stream format */
1348 /* this value needs to be the same as the one programmed */
1349 azx_sd_writew(azx_dev
, SD_FORMAT
, azx_dev
->format_val
);
1351 /* program the stream LVI (last valid index) of the BDL */
1352 azx_sd_writew(azx_dev
, SD_LVI
, azx_dev
->frags
- 1);
1354 /* program the BDL address */
1355 /* lower BDL address */
1356 azx_sd_writel(azx_dev
, SD_BDLPL
, (u32
)azx_dev
->bdl
.addr
);
1357 /* upper BDL address */
1358 azx_sd_writel(azx_dev
, SD_BDLPU
, upper_32_bits(azx_dev
->bdl
.addr
));
1360 /* enable the position buffer */
1361 if (chip
->position_fix
[0] != POS_FIX_LPIB
||
1362 chip
->position_fix
[1] != POS_FIX_LPIB
) {
1363 if (!(azx_readl(chip
, DPLBASE
) & ICH6_DPLBASE_ENABLE
))
1364 azx_writel(chip
, DPLBASE
,
1365 (u32
)chip
->posbuf
.addr
| ICH6_DPLBASE_ENABLE
);
1368 /* set the interrupt enable bits in the descriptor control register */
1369 azx_sd_writel(azx_dev
, SD_CTL
,
1370 azx_sd_readl(azx_dev
, SD_CTL
) | SD_INT_MASK
);
1376 * Probe the given codec address
1378 static int probe_codec(struct azx
*chip
, int addr
)
1380 unsigned int cmd
= (addr
<< 28) | (AC_NODE_ROOT
<< 20) |
1381 (AC_VERB_PARAMETERS
<< 8) | AC_PAR_VENDOR_ID
;
1384 mutex_lock(&chip
->bus
->cmd_mutex
);
1386 azx_send_cmd(chip
->bus
, cmd
);
1387 res
= azx_get_response(chip
->bus
, addr
);
1389 mutex_unlock(&chip
->bus
->cmd_mutex
);
1392 snd_printdd(SFX
"codec #%d probed OK\n", addr
);
1396 static int azx_attach_pcm_stream(struct hda_bus
*bus
, struct hda_codec
*codec
,
1397 struct hda_pcm
*cpcm
);
1398 static void azx_stop_chip(struct azx
*chip
);
1400 static void azx_bus_reset(struct hda_bus
*bus
)
1402 struct azx
*chip
= bus
->private_data
;
1405 azx_stop_chip(chip
);
1406 azx_init_chip(chip
, 1);
1408 if (chip
->initialized
) {
1411 for (i
= 0; i
< HDA_MAX_PCMS
; i
++)
1412 snd_pcm_suspend_all(chip
->pcm
[i
]);
1413 snd_hda_suspend(chip
->bus
);
1414 snd_hda_resume(chip
->bus
);
1421 * Codec initialization
1424 /* number of codec slots for each chipset: 0 = default slots (i.e. 4) */
1425 static unsigned int azx_max_codecs
[AZX_NUM_DRIVERS
] __devinitdata
= {
1426 [AZX_DRIVER_NVIDIA
] = 8,
1427 [AZX_DRIVER_TERA
] = 1,
1430 static int __devinit
azx_codec_create(struct azx
*chip
, const char *model
)
1432 struct hda_bus_template bus_temp
;
1436 memset(&bus_temp
, 0, sizeof(bus_temp
));
1437 bus_temp
.private_data
= chip
;
1438 bus_temp
.modelname
= model
;
1439 bus_temp
.pci
= chip
->pci
;
1440 bus_temp
.ops
.command
= azx_send_cmd
;
1441 bus_temp
.ops
.get_response
= azx_get_response
;
1442 bus_temp
.ops
.attach_pcm
= azx_attach_pcm_stream
;
1443 bus_temp
.ops
.bus_reset
= azx_bus_reset
;
1444 #ifdef CONFIG_SND_HDA_POWER_SAVE
1445 bus_temp
.power_save
= &power_save
;
1446 bus_temp
.ops
.pm_notify
= azx_power_notify
;
1449 err
= snd_hda_bus_new(chip
->card
, &bus_temp
, &chip
->bus
);
1453 if (chip
->driver_caps
& AZX_DCAPS_RIRB_DELAY
) {
1454 snd_printd(SFX
"Enable delay in RIRB handling\n");
1455 chip
->bus
->needs_damn_long_delay
= 1;
1459 max_slots
= azx_max_codecs
[chip
->driver_type
];
1461 max_slots
= AZX_DEFAULT_CODECS
;
1463 /* First try to probe all given codec slots */
1464 for (c
= 0; c
< max_slots
; c
++) {
1465 if ((chip
->codec_mask
& (1 << c
)) & chip
->codec_probe_mask
) {
1466 if (probe_codec(chip
, c
) < 0) {
1467 /* Some BIOSen give you wrong codec addresses
1470 snd_printk(KERN_WARNING SFX
1471 "Codec #%d probe error; "
1472 "disabling it...\n", c
);
1473 chip
->codec_mask
&= ~(1 << c
);
1474 /* More badly, accessing to a non-existing
1475 * codec often screws up the controller chip,
1476 * and disturbs the further communications.
1477 * Thus if an error occurs during probing,
1478 * better to reset the controller chip to
1479 * get back to the sanity state.
1481 azx_stop_chip(chip
);
1482 azx_init_chip(chip
, 1);
1487 /* AMD chipsets often cause the communication stalls upon certain
1488 * sequence like the pin-detection. It seems that forcing the synced
1489 * access works around the stall. Grrr...
1491 if (chip
->driver_caps
& AZX_DCAPS_SYNC_WRITE
) {
1492 snd_printd(SFX
"Enable sync_write for stable communication\n");
1493 chip
->bus
->sync_write
= 1;
1494 chip
->bus
->allow_bus_reset
= 1;
1497 /* Then create codec instances */
1498 for (c
= 0; c
< max_slots
; c
++) {
1499 if ((chip
->codec_mask
& (1 << c
)) & chip
->codec_probe_mask
) {
1500 struct hda_codec
*codec
;
1501 err
= snd_hda_codec_new(chip
->bus
, c
, &codec
);
1504 codec
->beep_mode
= chip
->beep_mode
;
1509 snd_printk(KERN_ERR SFX
"no codecs initialized\n");
1515 /* configure each codec instance */
1516 static int __devinit
azx_codec_configure(struct azx
*chip
)
1518 struct hda_codec
*codec
;
1519 list_for_each_entry(codec
, &chip
->bus
->codec_list
, list
) {
1520 snd_hda_codec_configure(codec
);
1530 /* assign a stream for the PCM */
1531 static inline struct azx_dev
*
1532 azx_assign_device(struct azx
*chip
, struct snd_pcm_substream
*substream
)
1535 struct azx_dev
*res
= NULL
;
1537 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1538 dev
= chip
->playback_index_offset
;
1539 nums
= chip
->playback_streams
;
1541 dev
= chip
->capture_index_offset
;
1542 nums
= chip
->capture_streams
;
1544 for (i
= 0; i
< nums
; i
++, dev
++)
1545 if (!chip
->azx_dev
[dev
].opened
) {
1546 res
= &chip
->azx_dev
[dev
];
1547 if (res
->device
== substream
->pcm
->device
)
1552 res
->device
= substream
->pcm
->device
;
1557 /* release the assigned stream */
1558 static inline void azx_release_device(struct azx_dev
*azx_dev
)
1560 azx_dev
->opened
= 0;
1563 static struct snd_pcm_hardware azx_pcm_hw
= {
1564 .info
= (SNDRV_PCM_INFO_MMAP
|
1565 SNDRV_PCM_INFO_INTERLEAVED
|
1566 SNDRV_PCM_INFO_BLOCK_TRANSFER
|
1567 SNDRV_PCM_INFO_MMAP_VALID
|
1568 /* No full-resume yet implemented */
1569 /* SNDRV_PCM_INFO_RESUME |*/
1570 SNDRV_PCM_INFO_PAUSE
|
1571 SNDRV_PCM_INFO_SYNC_START
|
1572 SNDRV_PCM_INFO_NO_PERIOD_WAKEUP
),
1573 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
1574 .rates
= SNDRV_PCM_RATE_48000
,
1579 .buffer_bytes_max
= AZX_MAX_BUF_SIZE
,
1580 .period_bytes_min
= 128,
1581 .period_bytes_max
= AZX_MAX_BUF_SIZE
/ 2,
1583 .periods_max
= AZX_MAX_FRAG
,
1589 struct hda_codec
*codec
;
1590 struct hda_pcm_stream
*hinfo
[2];
1593 static int azx_pcm_open(struct snd_pcm_substream
*substream
)
1595 struct azx_pcm
*apcm
= snd_pcm_substream_chip(substream
);
1596 struct hda_pcm_stream
*hinfo
= apcm
->hinfo
[substream
->stream
];
1597 struct azx
*chip
= apcm
->chip
;
1598 struct azx_dev
*azx_dev
;
1599 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1600 unsigned long flags
;
1603 mutex_lock(&chip
->open_mutex
);
1604 azx_dev
= azx_assign_device(chip
, substream
);
1605 if (azx_dev
== NULL
) {
1606 mutex_unlock(&chip
->open_mutex
);
1609 runtime
->hw
= azx_pcm_hw
;
1610 runtime
->hw
.channels_min
= hinfo
->channels_min
;
1611 runtime
->hw
.channels_max
= hinfo
->channels_max
;
1612 runtime
->hw
.formats
= hinfo
->formats
;
1613 runtime
->hw
.rates
= hinfo
->rates
;
1614 snd_pcm_limit_hw_rates(runtime
);
1615 snd_pcm_hw_constraint_integer(runtime
, SNDRV_PCM_HW_PARAM_PERIODS
);
1616 snd_pcm_hw_constraint_step(runtime
, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES
,
1618 snd_pcm_hw_constraint_step(runtime
, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES
,
1620 snd_hda_power_up(apcm
->codec
);
1621 err
= hinfo
->ops
.open(hinfo
, apcm
->codec
, substream
);
1623 azx_release_device(azx_dev
);
1624 snd_hda_power_down(apcm
->codec
);
1625 mutex_unlock(&chip
->open_mutex
);
1628 snd_pcm_limit_hw_rates(runtime
);
1630 if (snd_BUG_ON(!runtime
->hw
.channels_min
) ||
1631 snd_BUG_ON(!runtime
->hw
.channels_max
) ||
1632 snd_BUG_ON(!runtime
->hw
.formats
) ||
1633 snd_BUG_ON(!runtime
->hw
.rates
)) {
1634 azx_release_device(azx_dev
);
1635 hinfo
->ops
.close(hinfo
, apcm
->codec
, substream
);
1636 snd_hda_power_down(apcm
->codec
);
1637 mutex_unlock(&chip
->open_mutex
);
1640 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1641 azx_dev
->substream
= substream
;
1642 azx_dev
->running
= 0;
1643 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1645 runtime
->private_data
= azx_dev
;
1646 snd_pcm_set_sync(substream
);
1647 mutex_unlock(&chip
->open_mutex
);
1651 static int azx_pcm_close(struct snd_pcm_substream
*substream
)
1653 struct azx_pcm
*apcm
= snd_pcm_substream_chip(substream
);
1654 struct hda_pcm_stream
*hinfo
= apcm
->hinfo
[substream
->stream
];
1655 struct azx
*chip
= apcm
->chip
;
1656 struct azx_dev
*azx_dev
= get_azx_dev(substream
);
1657 unsigned long flags
;
1659 mutex_lock(&chip
->open_mutex
);
1660 spin_lock_irqsave(&chip
->reg_lock
, flags
);
1661 azx_dev
->substream
= NULL
;
1662 azx_dev
->running
= 0;
1663 spin_unlock_irqrestore(&chip
->reg_lock
, flags
);
1664 azx_release_device(azx_dev
);
1665 hinfo
->ops
.close(hinfo
, apcm
->codec
, substream
);
1666 snd_hda_power_down(apcm
->codec
);
1667 mutex_unlock(&chip
->open_mutex
);
1671 static int azx_pcm_hw_params(struct snd_pcm_substream
*substream
,
1672 struct snd_pcm_hw_params
*hw_params
)
1674 struct azx_dev
*azx_dev
= get_azx_dev(substream
);
1676 azx_dev
->bufsize
= 0;
1677 azx_dev
->period_bytes
= 0;
1678 azx_dev
->format_val
= 0;
1679 return snd_pcm_lib_malloc_pages(substream
,
1680 params_buffer_bytes(hw_params
));
1683 static int azx_pcm_hw_free(struct snd_pcm_substream
*substream
)
1685 struct azx_pcm
*apcm
= snd_pcm_substream_chip(substream
);
1686 struct azx_dev
*azx_dev
= get_azx_dev(substream
);
1687 struct hda_pcm_stream
*hinfo
= apcm
->hinfo
[substream
->stream
];
1689 /* reset BDL address */
1690 azx_sd_writel(azx_dev
, SD_BDLPL
, 0);
1691 azx_sd_writel(azx_dev
, SD_BDLPU
, 0);
1692 azx_sd_writel(azx_dev
, SD_CTL
, 0);
1693 azx_dev
->bufsize
= 0;
1694 azx_dev
->period_bytes
= 0;
1695 azx_dev
->format_val
= 0;
1697 snd_hda_codec_cleanup(apcm
->codec
, hinfo
, substream
);
1699 return snd_pcm_lib_free_pages(substream
);
1702 static int azx_pcm_prepare(struct snd_pcm_substream
*substream
)
1704 struct azx_pcm
*apcm
= snd_pcm_substream_chip(substream
);
1705 struct azx
*chip
= apcm
->chip
;
1706 struct azx_dev
*azx_dev
= get_azx_dev(substream
);
1707 struct hda_pcm_stream
*hinfo
= apcm
->hinfo
[substream
->stream
];
1708 struct snd_pcm_runtime
*runtime
= substream
->runtime
;
1709 unsigned int bufsize
, period_bytes
, format_val
, stream_tag
;
1711 struct hda_spdif_out
*spdif
=
1712 snd_hda_spdif_out_of_nid(apcm
->codec
, hinfo
->nid
);
1713 unsigned short ctls
= spdif
? spdif
->ctls
: 0;
1715 azx_stream_reset(chip
, azx_dev
);
1716 format_val
= snd_hda_calc_stream_format(runtime
->rate
,
1722 snd_printk(KERN_ERR SFX
1723 "invalid format_val, rate=%d, ch=%d, format=%d\n",
1724 runtime
->rate
, runtime
->channels
, runtime
->format
);
1728 bufsize
= snd_pcm_lib_buffer_bytes(substream
);
1729 period_bytes
= snd_pcm_lib_period_bytes(substream
);
1731 snd_printdd(SFX
"azx_pcm_prepare: bufsize=0x%x, format=0x%x\n",
1732 bufsize
, format_val
);
1734 if (bufsize
!= azx_dev
->bufsize
||
1735 period_bytes
!= azx_dev
->period_bytes
||
1736 format_val
!= azx_dev
->format_val
) {
1737 azx_dev
->bufsize
= bufsize
;
1738 azx_dev
->period_bytes
= period_bytes
;
1739 azx_dev
->format_val
= format_val
;
1740 err
= azx_setup_periods(chip
, substream
, azx_dev
);
1745 /* wallclk has 24Mhz clock source */
1746 azx_dev
->period_wallclk
= (((runtime
->period_size
* 24000) /
1747 runtime
->rate
) * 1000);
1748 azx_setup_controller(chip
, azx_dev
);
1749 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
1750 azx_dev
->fifo_size
= azx_sd_readw(azx_dev
, SD_FIFOSIZE
) + 1;
1752 azx_dev
->fifo_size
= 0;
1754 stream_tag
= azx_dev
->stream_tag
;
1755 /* CA-IBG chips need the playback stream starting from 1 */
1756 if ((chip
->driver_caps
& AZX_DCAPS_CTX_WORKAROUND
) &&
1757 stream_tag
> chip
->capture_streams
)
1758 stream_tag
-= chip
->capture_streams
;
1759 return snd_hda_codec_prepare(apcm
->codec
, hinfo
, stream_tag
,
1760 azx_dev
->format_val
, substream
);
1763 static int azx_pcm_trigger(struct snd_pcm_substream
*substream
, int cmd
)
1765 struct azx_pcm
*apcm
= snd_pcm_substream_chip(substream
);
1766 struct azx
*chip
= apcm
->chip
;
1767 struct azx_dev
*azx_dev
;
1768 struct snd_pcm_substream
*s
;
1769 int rstart
= 0, start
, nsync
= 0, sbits
= 0;
1773 case SNDRV_PCM_TRIGGER_START
:
1775 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE
:
1776 case SNDRV_PCM_TRIGGER_RESUME
:
1779 case SNDRV_PCM_TRIGGER_PAUSE_PUSH
:
1780 case SNDRV_PCM_TRIGGER_SUSPEND
:
1781 case SNDRV_PCM_TRIGGER_STOP
:
1788 snd_pcm_group_for_each_entry(s
, substream
) {
1789 if (s
->pcm
->card
!= substream
->pcm
->card
)
1791 azx_dev
= get_azx_dev(s
);
1792 sbits
|= 1 << azx_dev
->index
;
1794 snd_pcm_trigger_done(s
, substream
);
1797 spin_lock(&chip
->reg_lock
);
1799 /* first, set SYNC bits of corresponding streams */
1800 if (chip
->driver_caps
& AZX_DCAPS_OLD_SSYNC
)
1801 azx_writel(chip
, OLD_SSYNC
,
1802 azx_readl(chip
, OLD_SSYNC
) | sbits
);
1804 azx_writel(chip
, SSYNC
, azx_readl(chip
, SSYNC
) | sbits
);
1806 snd_pcm_group_for_each_entry(s
, substream
) {
1807 if (s
->pcm
->card
!= substream
->pcm
->card
)
1809 azx_dev
= get_azx_dev(s
);
1811 azx_dev
->start_wallclk
= azx_readl(chip
, WALLCLK
);
1813 azx_dev
->start_wallclk
-=
1814 azx_dev
->period_wallclk
;
1815 azx_stream_start(chip
, azx_dev
);
1817 azx_stream_stop(chip
, azx_dev
);
1819 azx_dev
->running
= start
;
1821 spin_unlock(&chip
->reg_lock
);
1825 /* wait until all FIFOs get ready */
1826 for (timeout
= 5000; timeout
; timeout
--) {
1828 snd_pcm_group_for_each_entry(s
, substream
) {
1829 if (s
->pcm
->card
!= substream
->pcm
->card
)
1831 azx_dev
= get_azx_dev(s
);
1832 if (!(azx_sd_readb(azx_dev
, SD_STS
) &
1841 /* wait until all RUN bits are cleared */
1842 for (timeout
= 5000; timeout
; timeout
--) {
1844 snd_pcm_group_for_each_entry(s
, substream
) {
1845 if (s
->pcm
->card
!= substream
->pcm
->card
)
1847 azx_dev
= get_azx_dev(s
);
1848 if (azx_sd_readb(azx_dev
, SD_CTL
) &
1858 spin_lock(&chip
->reg_lock
);
1859 /* reset SYNC bits */
1860 if (chip
->driver_caps
& AZX_DCAPS_OLD_SSYNC
)
1861 azx_writel(chip
, OLD_SSYNC
,
1862 azx_readl(chip
, OLD_SSYNC
) & ~sbits
);
1864 azx_writel(chip
, SSYNC
, azx_readl(chip
, SSYNC
) & ~sbits
);
1865 spin_unlock(&chip
->reg_lock
);
1870 /* get the current DMA position with correction on VIA chips */
1871 static unsigned int azx_via_get_position(struct azx
*chip
,
1872 struct azx_dev
*azx_dev
)
1874 unsigned int link_pos
, mini_pos
, bound_pos
;
1875 unsigned int mod_link_pos
, mod_dma_pos
, mod_mini_pos
;
1876 unsigned int fifo_size
;
1878 link_pos
= azx_sd_readl(azx_dev
, SD_LPIB
);
1879 if (azx_dev
->substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
) {
1880 /* Playback, no problem using link position */
1886 * use mod to get the DMA position just like old chipset
1888 mod_dma_pos
= le32_to_cpu(*azx_dev
->posbuf
);
1889 mod_dma_pos
%= azx_dev
->period_bytes
;
1891 /* azx_dev->fifo_size can't get FIFO size of in stream.
1892 * Get from base address + offset.
1894 fifo_size
= readw(chip
->remap_addr
+ VIA_IN_STREAM0_FIFO_SIZE_OFFSET
);
1896 if (azx_dev
->insufficient
) {
1897 /* Link position never gather than FIFO size */
1898 if (link_pos
<= fifo_size
)
1901 azx_dev
->insufficient
= 0;
1904 if (link_pos
<= fifo_size
)
1905 mini_pos
= azx_dev
->bufsize
+ link_pos
- fifo_size
;
1907 mini_pos
= link_pos
- fifo_size
;
1909 /* Find nearest previous boudary */
1910 mod_mini_pos
= mini_pos
% azx_dev
->period_bytes
;
1911 mod_link_pos
= link_pos
% azx_dev
->period_bytes
;
1912 if (mod_link_pos
>= fifo_size
)
1913 bound_pos
= link_pos
- mod_link_pos
;
1914 else if (mod_dma_pos
>= mod_mini_pos
)
1915 bound_pos
= mini_pos
- mod_mini_pos
;
1917 bound_pos
= mini_pos
- mod_mini_pos
+ azx_dev
->period_bytes
;
1918 if (bound_pos
>= azx_dev
->bufsize
)
1922 /* Calculate real DMA position we want */
1923 return bound_pos
+ mod_dma_pos
;
1926 static unsigned int azx_get_position(struct azx
*chip
,
1927 struct azx_dev
*azx_dev
,
1931 int stream
= azx_dev
->substream
->stream
;
1933 switch (chip
->position_fix
[stream
]) {
1936 pos
= azx_sd_readl(azx_dev
, SD_LPIB
);
1938 case POS_FIX_VIACOMBO
:
1939 pos
= azx_via_get_position(chip
, azx_dev
);
1942 /* use the position buffer */
1943 pos
= le32_to_cpu(*azx_dev
->posbuf
);
1944 if (with_check
&& chip
->position_fix
[stream
] == POS_FIX_AUTO
) {
1945 if (!pos
|| pos
== (u32
)-1) {
1947 "hda-intel: Invalid position buffer, "
1948 "using LPIB read method instead.\n");
1949 chip
->position_fix
[stream
] = POS_FIX_LPIB
;
1950 pos
= azx_sd_readl(azx_dev
, SD_LPIB
);
1952 chip
->position_fix
[stream
] = POS_FIX_POSBUF
;
1957 if (pos
>= azx_dev
->bufsize
)
1962 static snd_pcm_uframes_t
azx_pcm_pointer(struct snd_pcm_substream
*substream
)
1964 struct azx_pcm
*apcm
= snd_pcm_substream_chip(substream
);
1965 struct azx
*chip
= apcm
->chip
;
1966 struct azx_dev
*azx_dev
= get_azx_dev(substream
);
1967 return bytes_to_frames(substream
->runtime
,
1968 azx_get_position(chip
, azx_dev
, false));
1972 * Check whether the current DMA position is acceptable for updating
1973 * periods. Returns non-zero if it's OK.
1975 * Many HD-audio controllers appear pretty inaccurate about
1976 * the update-IRQ timing. The IRQ is issued before actually the
1977 * data is processed. So, we need to process it afterwords in a
1980 static int azx_position_ok(struct azx
*chip
, struct azx_dev
*azx_dev
)
1986 wallclk
= azx_readl(chip
, WALLCLK
) - azx_dev
->start_wallclk
;
1987 if (wallclk
< (azx_dev
->period_wallclk
* 2) / 3)
1988 return -1; /* bogus (too early) interrupt */
1990 stream
= azx_dev
->substream
->stream
;
1991 pos
= azx_get_position(chip
, azx_dev
, true);
1993 if (WARN_ONCE(!azx_dev
->period_bytes
,
1994 "hda-intel: zero azx_dev->period_bytes"))
1995 return -1; /* this shouldn't happen! */
1996 if (wallclk
< (azx_dev
->period_wallclk
* 5) / 4 &&
1997 pos
% azx_dev
->period_bytes
> azx_dev
->period_bytes
/ 2)
1998 /* NG - it's below the first next period boundary */
1999 return bdl_pos_adj
[chip
->dev_index
] ? 0 : -1;
2000 azx_dev
->start_wallclk
+= wallclk
;
2001 return 1; /* OK, it's fine */
2005 * The work for pending PCM period updates.
2007 static void azx_irq_pending_work(struct work_struct
*work
)
2009 struct azx
*chip
= container_of(work
, struct azx
, irq_pending_work
);
2012 if (!chip
->irq_pending_warned
) {
2014 "hda-intel: IRQ timing workaround is activated "
2015 "for card #%d. Suggest a bigger bdl_pos_adj.\n",
2016 chip
->card
->number
);
2017 chip
->irq_pending_warned
= 1;
2022 spin_lock_irq(&chip
->reg_lock
);
2023 for (i
= 0; i
< chip
->num_streams
; i
++) {
2024 struct azx_dev
*azx_dev
= &chip
->azx_dev
[i
];
2025 if (!azx_dev
->irq_pending
||
2026 !azx_dev
->substream
||
2029 ok
= azx_position_ok(chip
, azx_dev
);
2031 azx_dev
->irq_pending
= 0;
2032 spin_unlock(&chip
->reg_lock
);
2033 snd_pcm_period_elapsed(azx_dev
->substream
);
2034 spin_lock(&chip
->reg_lock
);
2035 } else if (ok
< 0) {
2036 pending
= 0; /* too early */
2040 spin_unlock_irq(&chip
->reg_lock
);
2047 /* clear irq_pending flags and assure no on-going workq */
2048 static void azx_clear_irq_pending(struct azx
*chip
)
2052 spin_lock_irq(&chip
->reg_lock
);
2053 for (i
= 0; i
< chip
->num_streams
; i
++)
2054 chip
->azx_dev
[i
].irq_pending
= 0;
2055 spin_unlock_irq(&chip
->reg_lock
);
2058 static struct snd_pcm_ops azx_pcm_ops
= {
2059 .open
= azx_pcm_open
,
2060 .close
= azx_pcm_close
,
2061 .ioctl
= snd_pcm_lib_ioctl
,
2062 .hw_params
= azx_pcm_hw_params
,
2063 .hw_free
= azx_pcm_hw_free
,
2064 .prepare
= azx_pcm_prepare
,
2065 .trigger
= azx_pcm_trigger
,
2066 .pointer
= azx_pcm_pointer
,
2067 .page
= snd_pcm_sgbuf_ops_page
,
2070 static void azx_pcm_free(struct snd_pcm
*pcm
)
2072 struct azx_pcm
*apcm
= pcm
->private_data
;
2074 apcm
->chip
->pcm
[pcm
->device
] = NULL
;
2079 #define MAX_PREALLOC_SIZE (32 * 1024 * 1024)
2082 azx_attach_pcm_stream(struct hda_bus
*bus
, struct hda_codec
*codec
,
2083 struct hda_pcm
*cpcm
)
2085 struct azx
*chip
= bus
->private_data
;
2086 struct snd_pcm
*pcm
;
2087 struct azx_pcm
*apcm
;
2088 int pcm_dev
= cpcm
->device
;
2092 if (pcm_dev
>= HDA_MAX_PCMS
) {
2093 snd_printk(KERN_ERR SFX
"Invalid PCM device number %d\n",
2097 if (chip
->pcm
[pcm_dev
]) {
2098 snd_printk(KERN_ERR SFX
"PCM %d already exists\n", pcm_dev
);
2101 err
= snd_pcm_new(chip
->card
, cpcm
->name
, pcm_dev
,
2102 cpcm
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].substreams
,
2103 cpcm
->stream
[SNDRV_PCM_STREAM_CAPTURE
].substreams
,
2107 strlcpy(pcm
->name
, cpcm
->name
, sizeof(pcm
->name
));
2108 apcm
= kzalloc(sizeof(*apcm
), GFP_KERNEL
);
2112 apcm
->codec
= codec
;
2113 pcm
->private_data
= apcm
;
2114 pcm
->private_free
= azx_pcm_free
;
2115 if (cpcm
->pcm_type
== HDA_PCM_TYPE_MODEM
)
2116 pcm
->dev_class
= SNDRV_PCM_CLASS_MODEM
;
2117 chip
->pcm
[pcm_dev
] = pcm
;
2119 for (s
= 0; s
< 2; s
++) {
2120 apcm
->hinfo
[s
] = &cpcm
->stream
[s
];
2121 if (cpcm
->stream
[s
].substreams
)
2122 snd_pcm_set_ops(pcm
, s
, &azx_pcm_ops
);
2124 /* buffer pre-allocation */
2125 size
= CONFIG_SND_HDA_PREALLOC_SIZE
* 1024;
2126 if (size
> MAX_PREALLOC_SIZE
)
2127 size
= MAX_PREALLOC_SIZE
;
2128 snd_pcm_lib_preallocate_pages_for_all(pcm
, SNDRV_DMA_TYPE_DEV_SG
,
2129 snd_dma_pci_data(chip
->pci
),
2130 size
, MAX_PREALLOC_SIZE
);
2135 * mixer creation - all stuff is implemented in hda module
2137 static int __devinit
azx_mixer_create(struct azx
*chip
)
2139 return snd_hda_build_controls(chip
->bus
);
2144 * initialize SD streams
2146 static int __devinit
azx_init_stream(struct azx
*chip
)
2150 /* initialize each stream (aka device)
2151 * assign the starting bdl address to each stream (device)
2154 for (i
= 0; i
< chip
->num_streams
; i
++) {
2155 struct azx_dev
*azx_dev
= &chip
->azx_dev
[i
];
2156 azx_dev
->posbuf
= (u32 __iomem
*)(chip
->posbuf
.area
+ i
* 8);
2157 /* offset: SDI0=0x80, SDI1=0xa0, ... SDO3=0x160 */
2158 azx_dev
->sd_addr
= chip
->remap_addr
+ (0x20 * i
+ 0x80);
2159 /* int mask: SDI0=0x01, SDI1=0x02, ... SDO3=0x80 */
2160 azx_dev
->sd_int_sta_mask
= 1 << i
;
2161 /* stream tag: must be non-zero and unique */
2163 azx_dev
->stream_tag
= i
+ 1;
2169 static int azx_acquire_irq(struct azx
*chip
, int do_disconnect
)
2171 if (request_irq(chip
->pci
->irq
, azx_interrupt
,
2172 chip
->msi
? 0 : IRQF_SHARED
,
2173 KBUILD_MODNAME
, chip
)) {
2174 printk(KERN_ERR
"hda-intel: unable to grab IRQ %d, "
2175 "disabling device\n", chip
->pci
->irq
);
2177 snd_card_disconnect(chip
->card
);
2180 chip
->irq
= chip
->pci
->irq
;
2181 pci_intx(chip
->pci
, !chip
->msi
);
2186 static void azx_stop_chip(struct azx
*chip
)
2188 if (!chip
->initialized
)
2191 /* disable interrupts */
2192 azx_int_disable(chip
);
2193 azx_int_clear(chip
);
2195 /* disable CORB/RIRB */
2196 azx_free_cmd_io(chip
);
2198 /* disable position buffer */
2199 azx_writel(chip
, DPLBASE
, 0);
2200 azx_writel(chip
, DPUBASE
, 0);
2202 chip
->initialized
= 0;
2205 #ifdef CONFIG_SND_HDA_POWER_SAVE
2206 /* power-up/down the controller */
2207 static void azx_power_notify(struct hda_bus
*bus
)
2209 struct azx
*chip
= bus
->private_data
;
2210 struct hda_codec
*c
;
2213 list_for_each_entry(c
, &bus
->codec_list
, list
) {
2220 azx_init_chip(chip
, 1);
2221 else if (chip
->running
&& power_save_controller
&&
2222 !bus
->power_keep_link_on
)
2223 azx_stop_chip(chip
);
2225 #endif /* CONFIG_SND_HDA_POWER_SAVE */
2232 static int snd_hda_codecs_inuse(struct hda_bus
*bus
)
2234 struct hda_codec
*codec
;
2236 list_for_each_entry(codec
, &bus
->codec_list
, list
) {
2237 if (snd_hda_codec_needs_resume(codec
))
2243 static int azx_suspend(struct pci_dev
*pci
, pm_message_t state
)
2245 struct snd_card
*card
= pci_get_drvdata(pci
);
2246 struct azx
*chip
= card
->private_data
;
2249 snd_power_change_state(card
, SNDRV_CTL_POWER_D3hot
);
2250 azx_clear_irq_pending(chip
);
2251 for (i
= 0; i
< HDA_MAX_PCMS
; i
++)
2252 snd_pcm_suspend_all(chip
->pcm
[i
]);
2253 if (chip
->initialized
)
2254 snd_hda_suspend(chip
->bus
);
2255 azx_stop_chip(chip
);
2256 if (chip
->irq
>= 0) {
2257 free_irq(chip
->irq
, chip
);
2261 pci_disable_msi(chip
->pci
);
2262 pci_disable_device(pci
);
2263 pci_save_state(pci
);
2264 pci_set_power_state(pci
, pci_choose_state(pci
, state
));
2268 static int azx_resume(struct pci_dev
*pci
)
2270 struct snd_card
*card
= pci_get_drvdata(pci
);
2271 struct azx
*chip
= card
->private_data
;
2273 pci_set_power_state(pci
, PCI_D0
);
2274 pci_restore_state(pci
);
2275 if (pci_enable_device(pci
) < 0) {
2276 printk(KERN_ERR
"hda-intel: pci_enable_device failed, "
2277 "disabling device\n");
2278 snd_card_disconnect(card
);
2281 pci_set_master(pci
);
2283 if (pci_enable_msi(pci
) < 0)
2285 if (azx_acquire_irq(chip
, 1) < 0)
2289 if (snd_hda_codecs_inuse(chip
->bus
))
2290 azx_init_chip(chip
, 1);
2292 snd_hda_resume(chip
->bus
);
2293 snd_power_change_state(card
, SNDRV_CTL_POWER_D0
);
2296 #endif /* CONFIG_PM */
2300 * reboot notifier for hang-up problem at power-down
2302 static int azx_halt(struct notifier_block
*nb
, unsigned long event
, void *buf
)
2304 struct azx
*chip
= container_of(nb
, struct azx
, reboot_notifier
);
2305 snd_hda_bus_reboot_notify(chip
->bus
);
2306 azx_stop_chip(chip
);
2310 static void azx_notifier_register(struct azx
*chip
)
2312 chip
->reboot_notifier
.notifier_call
= azx_halt
;
2313 register_reboot_notifier(&chip
->reboot_notifier
);
2316 static void azx_notifier_unregister(struct azx
*chip
)
2318 if (chip
->reboot_notifier
.notifier_call
)
2319 unregister_reboot_notifier(&chip
->reboot_notifier
);
2325 static int azx_free(struct azx
*chip
)
2329 azx_notifier_unregister(chip
);
2331 if (chip
->initialized
) {
2332 azx_clear_irq_pending(chip
);
2333 for (i
= 0; i
< chip
->num_streams
; i
++)
2334 azx_stream_stop(chip
, &chip
->azx_dev
[i
]);
2335 azx_stop_chip(chip
);
2339 free_irq(chip
->irq
, (void*)chip
);
2341 pci_disable_msi(chip
->pci
);
2342 if (chip
->remap_addr
)
2343 iounmap(chip
->remap_addr
);
2345 if (chip
->azx_dev
) {
2346 for (i
= 0; i
< chip
->num_streams
; i
++)
2347 if (chip
->azx_dev
[i
].bdl
.area
)
2348 snd_dma_free_pages(&chip
->azx_dev
[i
].bdl
);
2351 snd_dma_free_pages(&chip
->rb
);
2352 if (chip
->posbuf
.area
)
2353 snd_dma_free_pages(&chip
->posbuf
);
2354 pci_release_regions(chip
->pci
);
2355 pci_disable_device(chip
->pci
);
2356 kfree(chip
->azx_dev
);
2362 static int azx_dev_free(struct snd_device
*device
)
2364 return azx_free(device
->device_data
);
2368 * white/black-listing for position_fix
2370 static struct snd_pci_quirk position_fix_list
[] __devinitdata
= {
2371 SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB
),
2372 SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB
),
2373 SND_PCI_QUIRK(0x1028, 0x02c6, "Dell Inspiron 1010", POS_FIX_LPIB
),
2374 SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB
),
2375 SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB
),
2376 SND_PCI_QUIRK(0x1043, 0x81b3, "ASUS", POS_FIX_LPIB
),
2377 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS M2V", POS_FIX_LPIB
),
2378 SND_PCI_QUIRK(0x104d, 0x9069, "Sony VPCS11V9E", POS_FIX_LPIB
),
2379 SND_PCI_QUIRK(0x1106, 0x3288, "ASUS M2V-MX SE", POS_FIX_LPIB
),
2380 SND_PCI_QUIRK(0x1297, 0x3166, "Shuttle", POS_FIX_LPIB
),
2381 SND_PCI_QUIRK(0x1458, 0xa022, "ga-ma770-ud3", POS_FIX_LPIB
),
2382 SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB
),
2383 SND_PCI_QUIRK(0x1565, 0x8218, "Biostar Microtech", POS_FIX_LPIB
),
2384 SND_PCI_QUIRK(0x1849, 0x0888, "775Dual-VSTA", POS_FIX_LPIB
),
2385 SND_PCI_QUIRK(0x8086, 0x2503, "DG965OT AAD63733-203", POS_FIX_LPIB
),
2389 static int __devinit
check_position_fix(struct azx
*chip
, int fix
)
2391 const struct snd_pci_quirk
*q
;
2395 case POS_FIX_POSBUF
:
2396 case POS_FIX_VIACOMBO
:
2400 q
= snd_pci_quirk_lookup(chip
->pci
, position_fix_list
);
2403 "hda_intel: position_fix set to %d "
2404 "for device %04x:%04x\n",
2405 q
->value
, q
->subvendor
, q
->subdevice
);
2409 /* Check VIA/ATI HD Audio Controller exist */
2410 if (chip
->driver_caps
& AZX_DCAPS_POSFIX_VIA
) {
2411 snd_printd(SFX
"Using VIACOMBO position fix\n");
2412 return POS_FIX_VIACOMBO
;
2414 if (chip
->driver_caps
& AZX_DCAPS_POSFIX_LPIB
) {
2415 snd_printd(SFX
"Using LPIB position fix\n");
2416 return POS_FIX_LPIB
;
2418 return POS_FIX_AUTO
;
2422 * black-lists for probe_mask
2424 static struct snd_pci_quirk probe_mask_list
[] __devinitdata
= {
2425 /* Thinkpad often breaks the controller communication when accessing
2426 * to the non-working (or non-existing) modem codec slot.
2428 SND_PCI_QUIRK(0x1014, 0x05b7, "Thinkpad Z60", 0x01),
2429 SND_PCI_QUIRK(0x17aa, 0x2010, "Thinkpad X/T/R60", 0x01),
2430 SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X/T/R61", 0x01),
2432 SND_PCI_QUIRK(0x1028, 0x20ac, "Dell Studio Desktop", 0x01),
2433 /* including bogus ALC268 in slot#2 that conflicts with ALC888 */
2434 SND_PCI_QUIRK(0x17c0, 0x4085, "Medion MD96630", 0x01),
2435 /* forced codec slots */
2436 SND_PCI_QUIRK(0x1043, 0x1262, "ASUS W5Fm", 0x103),
2437 SND_PCI_QUIRK(0x1046, 0x1262, "ASUS W5F", 0x103),
2441 #define AZX_FORCE_CODEC_MASK 0x100
2443 static void __devinit
check_probe_mask(struct azx
*chip
, int dev
)
2445 const struct snd_pci_quirk
*q
;
2447 chip
->codec_probe_mask
= probe_mask
[dev
];
2448 if (chip
->codec_probe_mask
== -1) {
2449 q
= snd_pci_quirk_lookup(chip
->pci
, probe_mask_list
);
2452 "hda_intel: probe_mask set to 0x%x "
2453 "for device %04x:%04x\n",
2454 q
->value
, q
->subvendor
, q
->subdevice
);
2455 chip
->codec_probe_mask
= q
->value
;
2459 /* check forced option */
2460 if (chip
->codec_probe_mask
!= -1 &&
2461 (chip
->codec_probe_mask
& AZX_FORCE_CODEC_MASK
)) {
2462 chip
->codec_mask
= chip
->codec_probe_mask
& 0xff;
2463 printk(KERN_INFO
"hda_intel: codec_mask forced to 0x%x\n",
2469 * white/black-list for enable_msi
2471 static struct snd_pci_quirk msi_black_list
[] __devinitdata
= {
2472 SND_PCI_QUIRK(0x1043, 0x81f2, "ASUS", 0), /* Athlon64 X2 + nvidia */
2473 SND_PCI_QUIRK(0x1043, 0x81f6, "ASUS", 0), /* nvidia */
2474 SND_PCI_QUIRK(0x1043, 0x822d, "ASUS", 0), /* Athlon64 X2 + nvidia MCP55 */
2475 SND_PCI_QUIRK(0x1849, 0x0888, "ASRock", 0), /* Athlon64 X2 + nvidia */
2476 SND_PCI_QUIRK(0xa0a0, 0x0575, "Aopen MZ915-M", 0), /* ICH6 */
2480 static void __devinit
check_msi(struct azx
*chip
)
2482 const struct snd_pci_quirk
*q
;
2484 if (enable_msi
>= 0) {
2485 chip
->msi
= !!enable_msi
;
2488 chip
->msi
= 1; /* enable MSI as default */
2489 q
= snd_pci_quirk_lookup(chip
->pci
, msi_black_list
);
2492 "hda_intel: msi for device %04x:%04x set to %d\n",
2493 q
->subvendor
, q
->subdevice
, q
->value
);
2494 chip
->msi
= q
->value
;
2498 /* NVidia chipsets seem to cause troubles with MSI */
2499 if (chip
->driver_caps
& AZX_DCAPS_NO_MSI
) {
2500 printk(KERN_INFO
"hda_intel: Disabling MSI\n");
2509 static int __devinit
azx_create(struct snd_card
*card
, struct pci_dev
*pci
,
2510 int dev
, unsigned int driver_caps
,
2515 unsigned short gcap
;
2516 static struct snd_device_ops ops
= {
2517 .dev_free
= azx_dev_free
,
2522 err
= pci_enable_device(pci
);
2526 chip
= kzalloc(sizeof(*chip
), GFP_KERNEL
);
2528 snd_printk(KERN_ERR SFX
"cannot allocate chip\n");
2529 pci_disable_device(pci
);
2533 spin_lock_init(&chip
->reg_lock
);
2534 mutex_init(&chip
->open_mutex
);
2538 chip
->driver_caps
= driver_caps
;
2539 chip
->driver_type
= driver_caps
& 0xff;
2541 chip
->dev_index
= dev
;
2542 INIT_WORK(&chip
->irq_pending_work
, azx_irq_pending_work
);
2544 chip
->position_fix
[0] = chip
->position_fix
[1] =
2545 check_position_fix(chip
, position_fix
[dev
]);
2546 check_probe_mask(chip
, dev
);
2548 chip
->single_cmd
= single_cmd
;
2550 if (bdl_pos_adj
[dev
] < 0) {
2551 switch (chip
->driver_type
) {
2552 case AZX_DRIVER_ICH
:
2553 case AZX_DRIVER_PCH
:
2554 bdl_pos_adj
[dev
] = 1;
2557 bdl_pos_adj
[dev
] = 32;
2562 #if BITS_PER_LONG != 64
2563 /* Fix up base address on ULI M5461 */
2564 if (chip
->driver_type
== AZX_DRIVER_ULI
) {
2566 pci_read_config_word(pci
, 0x40, &tmp3
);
2567 pci_write_config_word(pci
, 0x40, tmp3
| 0x10);
2568 pci_write_config_dword(pci
, PCI_BASE_ADDRESS_1
, 0);
2572 err
= pci_request_regions(pci
, "ICH HD audio");
2575 pci_disable_device(pci
);
2579 chip
->addr
= pci_resource_start(pci
, 0);
2580 chip
->remap_addr
= pci_ioremap_bar(pci
, 0);
2581 if (chip
->remap_addr
== NULL
) {
2582 snd_printk(KERN_ERR SFX
"ioremap error\n");
2588 if (pci_enable_msi(pci
) < 0)
2591 if (azx_acquire_irq(chip
, 0) < 0) {
2596 pci_set_master(pci
);
2597 synchronize_irq(chip
->irq
);
2599 gcap
= azx_readw(chip
, GCAP
);
2600 snd_printdd(SFX
"chipset global capabilities = 0x%x\n", gcap
);
2602 /* disable SB600 64bit support for safety */
2603 if (chip
->pci
->vendor
== PCI_VENDOR_ID_ATI
) {
2604 struct pci_dev
*p_smbus
;
2605 p_smbus
= pci_get_device(PCI_VENDOR_ID_ATI
,
2606 PCI_DEVICE_ID_ATI_SBX00_SMBUS
,
2609 if (p_smbus
->revision
< 0x30)
2610 gcap
&= ~ICH6_GCAP_64OK
;
2611 pci_dev_put(p_smbus
);
2615 /* disable 64bit DMA address on some devices */
2616 if (chip
->driver_caps
& AZX_DCAPS_NO_64BIT
) {
2617 snd_printd(SFX
"Disabling 64bit DMA\n");
2618 gcap
&= ~ICH6_GCAP_64OK
;
2621 /* allow 64bit DMA address if supported by H/W */
2622 if ((gcap
& ICH6_GCAP_64OK
) && !pci_set_dma_mask(pci
, DMA_BIT_MASK(64)))
2623 pci_set_consistent_dma_mask(pci
, DMA_BIT_MASK(64));
2625 pci_set_dma_mask(pci
, DMA_BIT_MASK(32));
2626 pci_set_consistent_dma_mask(pci
, DMA_BIT_MASK(32));
2629 /* read number of streams from GCAP register instead of using
2632 chip
->capture_streams
= (gcap
>> 8) & 0x0f;
2633 chip
->playback_streams
= (gcap
>> 12) & 0x0f;
2634 if (!chip
->playback_streams
&& !chip
->capture_streams
) {
2635 /* gcap didn't give any info, switching to old method */
2637 switch (chip
->driver_type
) {
2638 case AZX_DRIVER_ULI
:
2639 chip
->playback_streams
= ULI_NUM_PLAYBACK
;
2640 chip
->capture_streams
= ULI_NUM_CAPTURE
;
2642 case AZX_DRIVER_ATIHDMI
:
2643 chip
->playback_streams
= ATIHDMI_NUM_PLAYBACK
;
2644 chip
->capture_streams
= ATIHDMI_NUM_CAPTURE
;
2646 case AZX_DRIVER_GENERIC
:
2648 chip
->playback_streams
= ICH6_NUM_PLAYBACK
;
2649 chip
->capture_streams
= ICH6_NUM_CAPTURE
;
2653 chip
->capture_index_offset
= 0;
2654 chip
->playback_index_offset
= chip
->capture_streams
;
2655 chip
->num_streams
= chip
->playback_streams
+ chip
->capture_streams
;
2656 chip
->azx_dev
= kcalloc(chip
->num_streams
, sizeof(*chip
->azx_dev
),
2658 if (!chip
->azx_dev
) {
2659 snd_printk(KERN_ERR SFX
"cannot malloc azx_dev\n");
2663 for (i
= 0; i
< chip
->num_streams
; i
++) {
2664 /* allocate memory for the BDL for each stream */
2665 err
= snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
,
2666 snd_dma_pci_data(chip
->pci
),
2667 BDL_SIZE
, &chip
->azx_dev
[i
].bdl
);
2669 snd_printk(KERN_ERR SFX
"cannot allocate BDL\n");
2673 /* allocate memory for the position buffer */
2674 err
= snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV
,
2675 snd_dma_pci_data(chip
->pci
),
2676 chip
->num_streams
* 8, &chip
->posbuf
);
2678 snd_printk(KERN_ERR SFX
"cannot allocate posbuf\n");
2681 /* allocate CORB/RIRB */
2682 err
= azx_alloc_cmd_io(chip
);
2686 /* initialize streams */
2687 azx_init_stream(chip
);
2689 /* initialize chip */
2691 azx_init_chip(chip
, (probe_only
[dev
] & 2) == 0);
2693 /* codec detection */
2694 if (!chip
->codec_mask
) {
2695 snd_printk(KERN_ERR SFX
"no codecs found!\n");
2700 err
= snd_device_new(card
, SNDRV_DEV_LOWLEVEL
, chip
, &ops
);
2702 snd_printk(KERN_ERR SFX
"Error creating device [card]!\n");
2706 strcpy(card
->driver
, "HDA-Intel");
2707 strlcpy(card
->shortname
, driver_short_names
[chip
->driver_type
],
2708 sizeof(card
->shortname
));
2709 snprintf(card
->longname
, sizeof(card
->longname
),
2710 "%s at 0x%lx irq %i",
2711 card
->shortname
, chip
->addr
, chip
->irq
);
2721 static void power_down_all_codecs(struct azx
*chip
)
2723 #ifdef CONFIG_SND_HDA_POWER_SAVE
2724 /* The codecs were powered up in snd_hda_codec_new().
2725 * Now all initialization done, so turn them down if possible
2727 struct hda_codec
*codec
;
2728 list_for_each_entry(codec
, &chip
->bus
->codec_list
, list
) {
2729 snd_hda_power_down(codec
);
2734 static int __devinit
azx_probe(struct pci_dev
*pci
,
2735 const struct pci_device_id
*pci_id
)
2738 struct snd_card
*card
;
2742 if (dev
>= SNDRV_CARDS
)
2749 err
= snd_card_create(index
[dev
], id
[dev
], THIS_MODULE
, 0, &card
);
2751 snd_printk(KERN_ERR SFX
"Error creating card!\n");
2755 /* set this here since it's referred in snd_hda_load_patch() */
2756 snd_card_set_dev(card
, &pci
->dev
);
2758 err
= azx_create(card
, pci
, dev
, pci_id
->driver_data
, &chip
);
2761 card
->private_data
= chip
;
2763 #ifdef CONFIG_SND_HDA_INPUT_BEEP
2764 chip
->beep_mode
= beep_mode
[dev
];
2767 /* create codec instances */
2768 err
= azx_codec_create(chip
, model
[dev
]);
2771 #ifdef CONFIG_SND_HDA_PATCH_LOADER
2772 if (patch
[dev
] && *patch
[dev
]) {
2773 snd_printk(KERN_ERR SFX
"Applying patch firmware '%s'\n",
2775 err
= snd_hda_load_patch(chip
->bus
, patch
[dev
]);
2780 if ((probe_only
[dev
] & 1) == 0) {
2781 err
= azx_codec_configure(chip
);
2786 /* create PCM streams */
2787 err
= snd_hda_build_pcms(chip
->bus
);
2791 /* create mixer controls */
2792 err
= azx_mixer_create(chip
);
2796 err
= snd_card_register(card
);
2800 pci_set_drvdata(pci
, card
);
2802 power_down_all_codecs(chip
);
2803 azx_notifier_register(chip
);
2808 snd_card_free(card
);
2812 static void __devexit
azx_remove(struct pci_dev
*pci
)
2814 snd_card_free(pci_get_drvdata(pci
));
2815 pci_set_drvdata(pci
, NULL
);
2819 static DEFINE_PCI_DEVICE_TABLE(azx_ids
) = {
2821 { PCI_DEVICE(0x8086, 0x1c20),
2822 .driver_data
= AZX_DRIVER_PCH
| AZX_DCAPS_SCH_SNOOP
},
2824 { PCI_DEVICE(0x8086, 0x1d20),
2825 .driver_data
= AZX_DRIVER_PCH
| AZX_DCAPS_SCH_SNOOP
},
2827 { PCI_DEVICE(0x8086, 0x1e20),
2828 .driver_data
= AZX_DRIVER_PCH
| AZX_DCAPS_SCH_SNOOP
},
2830 { PCI_DEVICE(0x8086, 0x811b),
2831 .driver_data
= AZX_DRIVER_SCH
| AZX_DCAPS_SCH_SNOOP
},
2832 { PCI_DEVICE(0x8086, 0x2668),
2833 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ICH6 */
2834 { PCI_DEVICE(0x8086, 0x27d8),
2835 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ICH7 */
2836 { PCI_DEVICE(0x8086, 0x269a),
2837 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ESB2 */
2838 { PCI_DEVICE(0x8086, 0x284b),
2839 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ICH8 */
2840 { PCI_DEVICE(0x8086, 0x293e),
2841 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ICH9 */
2842 { PCI_DEVICE(0x8086, 0x293f),
2843 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ICH9 */
2844 { PCI_DEVICE(0x8086, 0x3a3e),
2845 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ICH10 */
2846 { PCI_DEVICE(0x8086, 0x3a6e),
2847 .driver_data
= AZX_DRIVER_ICH
| AZX_DCAPS_OLD_SSYNC
}, /* ICH10 */
2849 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_ANY_ID
),
2850 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO
<< 8,
2851 .class_mask
= 0xffffff,
2852 .driver_data
= AZX_DRIVER_ICH
},
2853 /* ATI SB 450/600/700/800/900 */
2854 { PCI_DEVICE(0x1002, 0x437b),
2855 .driver_data
= AZX_DRIVER_ATI
| AZX_DCAPS_PRESET_ATI_SB
},
2856 { PCI_DEVICE(0x1002, 0x4383),
2857 .driver_data
= AZX_DRIVER_ATI
| AZX_DCAPS_PRESET_ATI_SB
},
2859 { PCI_DEVICE(0x1022, 0x780d),
2860 .driver_data
= AZX_DRIVER_GENERIC
| AZX_DCAPS_PRESET_ATI_SB
},
2862 { PCI_DEVICE(0x1002, 0x793b),
2863 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2864 { PCI_DEVICE(0x1002, 0x7919),
2865 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2866 { PCI_DEVICE(0x1002, 0x960f),
2867 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2868 { PCI_DEVICE(0x1002, 0x970f),
2869 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2870 { PCI_DEVICE(0x1002, 0xaa00),
2871 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2872 { PCI_DEVICE(0x1002, 0xaa08),
2873 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2874 { PCI_DEVICE(0x1002, 0xaa10),
2875 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2876 { PCI_DEVICE(0x1002, 0xaa18),
2877 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2878 { PCI_DEVICE(0x1002, 0xaa20),
2879 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2880 { PCI_DEVICE(0x1002, 0xaa28),
2881 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2882 { PCI_DEVICE(0x1002, 0xaa30),
2883 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2884 { PCI_DEVICE(0x1002, 0xaa38),
2885 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2886 { PCI_DEVICE(0x1002, 0xaa40),
2887 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2888 { PCI_DEVICE(0x1002, 0xaa48),
2889 .driver_data
= AZX_DRIVER_ATIHDMI
| AZX_DCAPS_PRESET_ATI_HDMI
},
2890 /* VIA VT8251/VT8237A */
2891 { PCI_DEVICE(0x1106, 0x3288),
2892 .driver_data
= AZX_DRIVER_VIA
| AZX_DCAPS_POSFIX_VIA
},
2894 { PCI_DEVICE(0x1039, 0x7502), .driver_data
= AZX_DRIVER_SIS
},
2896 { PCI_DEVICE(0x10b9, 0x5461), .driver_data
= AZX_DRIVER_ULI
},
2898 { PCI_DEVICE(PCI_VENDOR_ID_NVIDIA
, PCI_ANY_ID
),
2899 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO
<< 8,
2900 .class_mask
= 0xffffff,
2901 .driver_data
= AZX_DRIVER_NVIDIA
| AZX_DCAPS_PRESET_NVIDIA
},
2903 { PCI_DEVICE(0x6549, 0x1200),
2904 .driver_data
= AZX_DRIVER_TERA
| AZX_DCAPS_NO_64BIT
},
2905 /* Creative X-Fi (CA0110-IBG) */
2906 #if !defined(CONFIG_SND_CTXFI) && !defined(CONFIG_SND_CTXFI_MODULE)
2907 /* the following entry conflicts with snd-ctxfi driver,
2908 * as ctxfi driver mutates from HD-audio to native mode with
2909 * a special command sequence.
2911 { PCI_DEVICE(PCI_VENDOR_ID_CREATIVE
, PCI_ANY_ID
),
2912 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO
<< 8,
2913 .class_mask
= 0xffffff,
2914 .driver_data
= AZX_DRIVER_CTX
| AZX_DCAPS_CTX_WORKAROUND
|
2915 AZX_DCAPS_RIRB_PRE_DELAY
},
2917 /* this entry seems still valid -- i.e. without emu20kx chip */
2918 { PCI_DEVICE(0x1102, 0x0009),
2919 .driver_data
= AZX_DRIVER_CTX
| AZX_DCAPS_CTX_WORKAROUND
|
2920 AZX_DCAPS_RIRB_PRE_DELAY
},
2923 { PCI_DEVICE(0x17f3, 0x3010), .driver_data
= AZX_DRIVER_GENERIC
},
2924 /* VMware HDAudio */
2925 { PCI_DEVICE(0x15ad, 0x1977), .driver_data
= AZX_DRIVER_GENERIC
},
2926 /* AMD/ATI Generic, PCI class code and Vendor ID for HD Audio */
2927 { PCI_DEVICE(PCI_VENDOR_ID_ATI
, PCI_ANY_ID
),
2928 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO
<< 8,
2929 .class_mask
= 0xffffff,
2930 .driver_data
= AZX_DRIVER_GENERIC
| AZX_DCAPS_PRESET_ATI_HDMI
},
2931 { PCI_DEVICE(PCI_VENDOR_ID_AMD
, PCI_ANY_ID
),
2932 .class = PCI_CLASS_MULTIMEDIA_HD_AUDIO
<< 8,
2933 .class_mask
= 0xffffff,
2934 .driver_data
= AZX_DRIVER_GENERIC
| AZX_DCAPS_PRESET_ATI_HDMI
},
2937 MODULE_DEVICE_TABLE(pci
, azx_ids
);
2939 /* pci_driver definition */
2940 static struct pci_driver driver
= {
2941 .name
= KBUILD_MODNAME
,
2942 .id_table
= azx_ids
,
2944 .remove
= __devexit_p(azx_remove
),
2946 .suspend
= azx_suspend
,
2947 .resume
= azx_resume
,
2951 static int __init
alsa_card_azx_init(void)
2953 return pci_register_driver(&driver
);
2956 static void __exit
alsa_card_azx_exit(void)
2958 pci_unregister_driver(&driver
);
2961 module_init(alsa_card_azx_init
)
2962 module_exit(alsa_card_azx_exit
)