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