Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | card-opti92x-ad1848.c - driver for OPTi 82c92x based soundcards. |
| 3 | Copyright (C) 1998-2000 by Massimo Piccioni <dafastidio@libero.it> |
| 4 | |
| 5 | Part of this code was developed at the Italian Ministry of Air Defence, |
| 6 | Sixth Division (oh, che pace ...), Rome. |
| 7 | |
| 8 | Thanks to Maria Grazia Pollarini, Salvatore Vassallo. |
| 9 | |
| 10 | This program is free software; you can redistribute it and/or modify |
| 11 | it under the terms of the GNU General Public License as published by |
| 12 | the Free Software Foundation; either version 2 of the License, or |
| 13 | (at your option) any later version. |
| 14 | |
| 15 | This program is distributed in the hope that it will be useful, |
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | GNU General Public License for more details. |
| 19 | |
| 20 | You should have received a copy of the GNU General Public License |
| 21 | along with this program; if not, write to the Free Software |
| 22 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | */ |
| 24 | |
| 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 27 | #include <linux/err.h> |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 28 | #include <linux/isa.h> |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 29 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/slab.h> |
| 31 | #include <linux/pnp.h> |
| 32 | #include <linux/moduleparam.h> |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 33 | #include <asm/io.h> |
| 34 | #include <asm/dma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <sound/core.h> |
Krzysztof Helt | b2e8d7d | 2009-12-10 20:40:18 +0100 | [diff] [blame] | 36 | #include <sound/tlv.h> |
Krzysztof Helt | 61ef19d | 2008-07-31 21:02:42 +0200 | [diff] [blame] | 37 | #include <sound/wss.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <sound/mpu401.h> |
| 39 | #include <sound/opl3.h> |
| 40 | #ifndef OPTi93X |
| 41 | #include <sound/opl4.h> |
| 42 | #endif |
| 43 | #define SNDRV_LEGACY_FIND_FREE_IRQ |
| 44 | #define SNDRV_LEGACY_FIND_FREE_DMA |
| 45 | #include <sound/initval.h> |
| 46 | |
| 47 | MODULE_AUTHOR("Massimo Piccioni <dafastidio@libero.it>"); |
| 48 | MODULE_LICENSE("GPL"); |
| 49 | #ifdef OPTi93X |
| 50 | MODULE_DESCRIPTION("OPTi93X"); |
| 51 | MODULE_SUPPORTED_DEVICE("{{OPTi,82C931/3}}"); |
| 52 | #else /* OPTi93X */ |
| 53 | #ifdef CS4231 |
| 54 | MODULE_DESCRIPTION("OPTi92X - CS4231"); |
| 55 | MODULE_SUPPORTED_DEVICE("{{OPTi,82C924 (CS4231)}," |
| 56 | "{OPTi,82C925 (CS4231)}}"); |
| 57 | #else /* CS4231 */ |
| 58 | MODULE_DESCRIPTION("OPTi92X - AD1848"); |
| 59 | MODULE_SUPPORTED_DEVICE("{{OPTi,82C924 (AD1848)}," |
| 60 | "{OPTi,82C925 (AD1848)}," |
| 61 | "{OAK,Mozart}}"); |
| 62 | #endif /* CS4231 */ |
| 63 | #endif /* OPTi93X */ |
| 64 | |
| 65 | static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */ |
| 66 | static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */ |
| 67 | //static int enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */ |
Rene Herman | 51f6baa | 2008-07-18 11:15:12 +0200 | [diff] [blame] | 68 | #ifdef CONFIG_PNP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | static int isapnp = 1; /* Enable ISA PnP detection */ |
Rene Herman | 51f6baa | 2008-07-18 11:15:12 +0200 | [diff] [blame] | 70 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | static long port = SNDRV_DEFAULT_PORT1; /* 0x530,0xe80,0xf40,0x604 */ |
| 72 | static long mpu_port = SNDRV_DEFAULT_PORT1; /* 0x300,0x310,0x320,0x330 */ |
| 73 | static long fm_port = SNDRV_DEFAULT_PORT1; /* 0x388 */ |
| 74 | static int irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10,11 */ |
| 75 | static int mpu_irq = SNDRV_DEFAULT_IRQ1; /* 5,7,9,10 */ |
| 76 | static int dma1 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */ |
| 77 | #if defined(CS4231) || defined(OPTi93X) |
| 78 | static int dma2 = SNDRV_DEFAULT_DMA1; /* 0,1,3 */ |
| 79 | #endif /* CS4231 || OPTi93X */ |
| 80 | |
| 81 | module_param(index, int, 0444); |
| 82 | MODULE_PARM_DESC(index, "Index value for opti9xx based soundcard."); |
| 83 | module_param(id, charp, 0444); |
| 84 | MODULE_PARM_DESC(id, "ID string for opti9xx based soundcard."); |
| 85 | //module_param(enable, bool, 0444); |
| 86 | //MODULE_PARM_DESC(enable, "Enable opti9xx soundcard."); |
Rene Herman | 51f6baa | 2008-07-18 11:15:12 +0200 | [diff] [blame] | 87 | #ifdef CONFIG_PNP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | module_param(isapnp, bool, 0444); |
| 89 | MODULE_PARM_DESC(isapnp, "Enable ISA PnP detection for specified soundcard."); |
Rene Herman | 51f6baa | 2008-07-18 11:15:12 +0200 | [diff] [blame] | 90 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | module_param(port, long, 0444); |
| 92 | MODULE_PARM_DESC(port, "WSS port # for opti9xx driver."); |
| 93 | module_param(mpu_port, long, 0444); |
| 94 | MODULE_PARM_DESC(mpu_port, "MPU-401 port # for opti9xx driver."); |
| 95 | module_param(fm_port, long, 0444); |
| 96 | MODULE_PARM_DESC(fm_port, "FM port # for opti9xx driver."); |
| 97 | module_param(irq, int, 0444); |
| 98 | MODULE_PARM_DESC(irq, "WSS irq # for opti9xx driver."); |
| 99 | module_param(mpu_irq, int, 0444); |
| 100 | MODULE_PARM_DESC(mpu_irq, "MPU-401 irq # for opti9xx driver."); |
| 101 | module_param(dma1, int, 0444); |
| 102 | MODULE_PARM_DESC(dma1, "1st dma # for opti9xx driver."); |
| 103 | #if defined(CS4231) || defined(OPTi93X) |
| 104 | module_param(dma2, int, 0444); |
| 105 | MODULE_PARM_DESC(dma2, "2nd dma # for opti9xx driver."); |
| 106 | #endif /* CS4231 || OPTi93X */ |
| 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #define OPTi9XX_HW_82C928 1 |
| 109 | #define OPTi9XX_HW_82C929 2 |
| 110 | #define OPTi9XX_HW_82C924 3 |
| 111 | #define OPTi9XX_HW_82C925 4 |
| 112 | #define OPTi9XX_HW_82C930 5 |
| 113 | #define OPTi9XX_HW_82C931 6 |
| 114 | #define OPTi9XX_HW_82C933 7 |
| 115 | #define OPTi9XX_HW_LAST OPTi9XX_HW_82C933 |
| 116 | |
| 117 | #define OPTi9XX_MC_REG(n) n |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | #ifdef OPTi93X |
| 120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | #define OPTi93X_STATUS 0x02 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | #define OPTi93X_PORT(chip, r) ((chip)->port + OPTi93X_##r) |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | #define OPTi93X_IRQ_PLAYBACK 0x04 |
| 125 | #define OPTi93X_IRQ_CAPTURE 0x08 |
| 126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | #endif /* OPTi93X */ |
| 128 | |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 129 | struct snd_opti9xx { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | unsigned short hardware; |
| 131 | unsigned char password; |
| 132 | char name[7]; |
| 133 | |
| 134 | unsigned long mc_base; |
| 135 | struct resource *res_mc_base; |
| 136 | unsigned long mc_base_size; |
| 137 | #ifdef OPTi93X |
| 138 | unsigned long mc_indir_index; |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 139 | unsigned long mc_indir_size; |
| 140 | struct resource *res_mc_indir; |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 141 | struct snd_wss *codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | #endif /* OPTi93X */ |
| 143 | unsigned long pwd_reg; |
| 144 | |
| 145 | spinlock_t lock; |
| 146 | |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 147 | long wss_base; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | int irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | }; |
| 150 | |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 151 | static int snd_opti9xx_pnp_is_probed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
| 153 | #ifdef CONFIG_PNP |
| 154 | |
| 155 | static struct pnp_card_device_id snd_opti9xx_pnpids[] = { |
| 156 | #ifndef OPTi93X |
| 157 | /* OPTi 82C924 */ |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 158 | { .id = "OPT0924", |
| 159 | .devs = { { "OPT0000" }, { "OPT0002" }, { "OPT0005" } }, |
| 160 | .driver_data = 0x0924 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | /* OPTi 82C925 */ |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 162 | { .id = "OPT0925", |
| 163 | .devs = { { "OPT9250" }, { "OPT0002" }, { "OPT0005" } }, |
| 164 | .driver_data = 0x0925 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | #else |
| 166 | /* OPTi 82C931/3 */ |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 167 | { .id = "OPT0931", .devs = { { "OPT9310" }, { "OPT0002" } }, |
| 168 | .driver_data = 0x0931 }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | #endif /* OPTi93X */ |
| 170 | { .id = "" } |
| 171 | }; |
| 172 | |
| 173 | MODULE_DEVICE_TABLE(pnp_card, snd_opti9xx_pnpids); |
| 174 | |
| 175 | #endif /* CONFIG_PNP */ |
| 176 | |
| 177 | #ifdef OPTi93X |
Rene Herman | 83c51c0 | 2007-03-20 11:33:46 +0100 | [diff] [blame] | 178 | #define DEV_NAME "opti93x" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | #else |
Rene Herman | 83c51c0 | 2007-03-20 11:33:46 +0100 | [diff] [blame] | 180 | #define DEV_NAME "opti92x" |
| 181 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | |
| 183 | static char * snd_opti9xx_names[] = { |
André Goddard Rosa | af901ca | 2009-11-14 13:09:05 -0200 | [diff] [blame] | 184 | "unknown", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | "82C928", "82C929", |
| 186 | "82C924", "82C925", |
| 187 | "82C930", "82C931", "82C933" |
| 188 | }; |
| 189 | |
| 190 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 191 | static long __devinit snd_legacy_find_free_ioport(long *port_table, long size) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | { |
| 193 | while (*port_table != -1) { |
Takashi Iwai | b1d5776 | 2005-10-10 11:56:31 +0200 | [diff] [blame] | 194 | if (request_region(*port_table, size, "ALSA test")) { |
| 195 | release_region(*port_table, size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | return *port_table; |
| 197 | } |
| 198 | port_table++; |
| 199 | } |
| 200 | return -1; |
| 201 | } |
| 202 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 203 | static int __devinit snd_opti9xx_init(struct snd_opti9xx *chip, |
| 204 | unsigned short hardware) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { |
| 206 | static int opti9xx_mc_size[] = {7, 7, 10, 10, 2, 2, 2}; |
| 207 | |
| 208 | chip->hardware = hardware; |
| 209 | strcpy(chip->name, snd_opti9xx_names[hardware]); |
| 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | spin_lock_init(&chip->lock); |
| 212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | chip->irq = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 215 | #ifndef OPTi93X |
| 216 | #ifdef CONFIG_PNP |
| 217 | if (isapnp && chip->mc_base) |
| 218 | /* PnP resource gives the least 10 bits */ |
| 219 | chip->mc_base |= 0xc00; |
Randy Dunlap | 89c0ac7 | 2010-03-08 09:32:42 -0800 | [diff] [blame] | 220 | else |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 221 | #endif /* CONFIG_PNP */ |
Randy Dunlap | 89c0ac7 | 2010-03-08 09:32:42 -0800 | [diff] [blame] | 222 | { |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 223 | chip->mc_base = 0xf8c; |
| 224 | chip->mc_base_size = opti9xx_mc_size[hardware]; |
| 225 | } |
| 226 | #else |
| 227 | chip->mc_base_size = opti9xx_mc_size[hardware]; |
| 228 | #endif |
| 229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | switch (hardware) { |
| 231 | #ifndef OPTi93X |
| 232 | case OPTi9XX_HW_82C928: |
| 233 | case OPTi9XX_HW_82C929: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | chip->password = (hardware == OPTi9XX_HW_82C928) ? 0xe2 : 0xe3; |
| 235 | chip->pwd_reg = 3; |
| 236 | break; |
| 237 | |
| 238 | case OPTi9XX_HW_82C924: |
| 239 | case OPTi9XX_HW_82C925: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | chip->password = 0xe5; |
| 241 | chip->pwd_reg = 3; |
| 242 | break; |
| 243 | #else /* OPTi93X */ |
| 244 | |
| 245 | case OPTi9XX_HW_82C930: |
| 246 | case OPTi9XX_HW_82C931: |
| 247 | case OPTi9XX_HW_82C933: |
| 248 | chip->mc_base = (hardware == OPTi9XX_HW_82C930) ? 0xf8f : 0xf8d; |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 249 | if (!chip->mc_indir_index) { |
| 250 | chip->mc_indir_index = 0xe0e; |
| 251 | chip->mc_indir_size = 2; |
| 252 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | chip->password = 0xe4; |
| 254 | chip->pwd_reg = 0; |
| 255 | break; |
| 256 | #endif /* OPTi93X */ |
| 257 | |
| 258 | default: |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 259 | snd_printk(KERN_ERR "chip %d not supported\n", hardware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | return -ENODEV; |
| 261 | } |
| 262 | return 0; |
| 263 | } |
| 264 | |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 265 | static unsigned char snd_opti9xx_read(struct snd_opti9xx *chip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | unsigned char reg) |
| 267 | { |
| 268 | unsigned long flags; |
| 269 | unsigned char retval = 0xff; |
| 270 | |
| 271 | spin_lock_irqsave(&chip->lock, flags); |
| 272 | outb(chip->password, chip->mc_base + chip->pwd_reg); |
| 273 | |
| 274 | switch (chip->hardware) { |
| 275 | #ifndef OPTi93X |
| 276 | case OPTi9XX_HW_82C924: |
| 277 | case OPTi9XX_HW_82C925: |
| 278 | if (reg > 7) { |
| 279 | outb(reg, chip->mc_base + 8); |
| 280 | outb(chip->password, chip->mc_base + chip->pwd_reg); |
| 281 | retval = inb(chip->mc_base + 9); |
| 282 | break; |
| 283 | } |
| 284 | |
| 285 | case OPTi9XX_HW_82C928: |
| 286 | case OPTi9XX_HW_82C929: |
| 287 | retval = inb(chip->mc_base + reg); |
| 288 | break; |
| 289 | #else /* OPTi93X */ |
| 290 | |
| 291 | case OPTi9XX_HW_82C930: |
| 292 | case OPTi9XX_HW_82C931: |
| 293 | case OPTi9XX_HW_82C933: |
| 294 | outb(reg, chip->mc_indir_index); |
| 295 | outb(chip->password, chip->mc_base + chip->pwd_reg); |
| 296 | retval = inb(chip->mc_indir_index + 1); |
| 297 | break; |
| 298 | #endif /* OPTi93X */ |
| 299 | |
| 300 | default: |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 301 | snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | spin_unlock_irqrestore(&chip->lock, flags); |
| 305 | return retval; |
| 306 | } |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 307 | |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 308 | static void snd_opti9xx_write(struct snd_opti9xx *chip, unsigned char reg, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | unsigned char value) |
| 310 | { |
| 311 | unsigned long flags; |
| 312 | |
| 313 | spin_lock_irqsave(&chip->lock, flags); |
| 314 | outb(chip->password, chip->mc_base + chip->pwd_reg); |
| 315 | |
| 316 | switch (chip->hardware) { |
| 317 | #ifndef OPTi93X |
| 318 | case OPTi9XX_HW_82C924: |
| 319 | case OPTi9XX_HW_82C925: |
| 320 | if (reg > 7) { |
| 321 | outb(reg, chip->mc_base + 8); |
| 322 | outb(chip->password, chip->mc_base + chip->pwd_reg); |
| 323 | outb(value, chip->mc_base + 9); |
| 324 | break; |
| 325 | } |
| 326 | |
| 327 | case OPTi9XX_HW_82C928: |
| 328 | case OPTi9XX_HW_82C929: |
| 329 | outb(value, chip->mc_base + reg); |
| 330 | break; |
| 331 | #else /* OPTi93X */ |
| 332 | |
| 333 | case OPTi9XX_HW_82C930: |
| 334 | case OPTi9XX_HW_82C931: |
| 335 | case OPTi9XX_HW_82C933: |
| 336 | outb(reg, chip->mc_indir_index); |
| 337 | outb(chip->password, chip->mc_base + chip->pwd_reg); |
| 338 | outb(value, chip->mc_indir_index + 1); |
| 339 | break; |
| 340 | #endif /* OPTi93X */ |
| 341 | |
| 342 | default: |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 343 | snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } |
| 345 | |
| 346 | spin_unlock_irqrestore(&chip->lock, flags); |
| 347 | } |
| 348 | |
| 349 | |
| 350 | #define snd_opti9xx_write_mask(chip, reg, value, mask) \ |
| 351 | snd_opti9xx_write(chip, reg, \ |
| 352 | (snd_opti9xx_read(chip, reg) & ~(mask)) | ((value) & (mask))) |
| 353 | |
| 354 | |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 355 | static int __devinit snd_opti9xx_configure(struct snd_opti9xx *chip, |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 356 | long port, |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 357 | int irq, int dma1, int dma2, |
| 358 | long mpu_port, int mpu_irq) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { |
| 360 | unsigned char wss_base_bits; |
| 361 | unsigned char irq_bits; |
| 362 | unsigned char dma_bits; |
| 363 | unsigned char mpu_port_bits = 0; |
| 364 | unsigned char mpu_irq_bits; |
| 365 | |
| 366 | switch (chip->hardware) { |
| 367 | #ifndef OPTi93X |
| 368 | case OPTi9XX_HW_82C924: |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 369 | /* opti 929 mode (?), OPL3 clock output, audio enable */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(4), 0xf0, 0xfc); |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 371 | /* enable wave audio */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6), 0x02, 0x02); |
| 373 | |
| 374 | case OPTi9XX_HW_82C925: |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 375 | /* enable WSS mode */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), 0x80, 0x80); |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 377 | /* OPL3 FM synthesis */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2), 0x00, 0x20); |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 379 | /* disable Sound Blaster IRQ and DMA */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0xf0, 0xff); |
| 381 | #ifdef CS4231 |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 382 | /* cs4231/4248 fix enabled */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x02, 0x02); |
| 384 | #else |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 385 | /* cs4231/4248 fix disabled */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x00, 0x02); |
| 387 | #endif /* CS4231 */ |
| 388 | break; |
| 389 | |
| 390 | case OPTi9XX_HW_82C928: |
| 391 | case OPTi9XX_HW_82C929: |
| 392 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), 0x80, 0x80); |
| 393 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2), 0x00, 0x20); |
| 394 | /* |
| 395 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0xa2, 0xae); |
| 396 | */ |
| 397 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(4), 0x00, 0x0c); |
| 398 | #ifdef CS4231 |
| 399 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x02, 0x02); |
| 400 | #else |
| 401 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x00, 0x02); |
| 402 | #endif /* CS4231 */ |
| 403 | break; |
| 404 | |
| 405 | #else /* OPTi93X */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | case OPTi9XX_HW_82C931: |
| 407 | case OPTi9XX_HW_82C933: |
Krzysztof Helt | 3ae5f36 | 2008-06-08 07:57:53 +0200 | [diff] [blame] | 408 | /* |
Krzysztof Helt | f81b953 | 2007-10-16 14:54:37 +0200 | [diff] [blame] | 409 | * The BTC 1817DW has QS1000 wavetable which is connected |
| 410 | * to the serial digital input of the OPTI931. |
| 411 | */ |
| 412 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(21), 0x82, 0xff); |
| 413 | /* |
| 414 | * This bit sets OPTI931 to automaticaly select FM |
| 415 | * or digital input signal. |
| 416 | */ |
| 417 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(26), 0x01, 0x01); |
Krzysztof Helt | 3ae5f36 | 2008-06-08 07:57:53 +0200 | [diff] [blame] | 418 | case OPTi9XX_HW_82C930: /* FALL THROUGH */ |
| 419 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6), 0x02, 0x03); |
| 420 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0x00, 0xff); |
| 421 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(4), 0x10 | |
| 422 | (chip->hardware == OPTi9XX_HW_82C930 ? 0x00 : 0x04), |
| 423 | 0x34); |
| 424 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(5), 0x20, 0xbf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | break; |
| 426 | #endif /* OPTi93X */ |
| 427 | |
| 428 | default: |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 429 | snd_printk(KERN_ERR "chip %d not supported\n", chip->hardware); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | return -EINVAL; |
| 431 | } |
| 432 | |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 433 | /* PnP resource says it decodes only 10 bits of address */ |
| 434 | switch (port & 0x3ff) { |
| 435 | case 0x130: |
| 436 | chip->wss_base = 0x530; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | wss_base_bits = 0x00; |
| 438 | break; |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 439 | case 0x204: |
| 440 | chip->wss_base = 0x604; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | wss_base_bits = 0x03; |
| 442 | break; |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 443 | case 0x280: |
| 444 | chip->wss_base = 0xe80; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | wss_base_bits = 0x01; |
| 446 | break; |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 447 | case 0x340: |
| 448 | chip->wss_base = 0xf40; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | wss_base_bits = 0x02; |
| 450 | break; |
| 451 | default: |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 452 | snd_printk(KERN_WARNING "WSS port 0x%lx not valid\n", port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | goto __skip_base; |
| 454 | } |
| 455 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(1), wss_base_bits << 4, 0x30); |
| 456 | |
| 457 | __skip_base: |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 458 | switch (irq) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | //#ifdef OPTi93X |
| 460 | case 5: |
| 461 | irq_bits = 0x05; |
| 462 | break; |
| 463 | //#endif /* OPTi93X */ |
| 464 | case 7: |
| 465 | irq_bits = 0x01; |
| 466 | break; |
| 467 | case 9: |
| 468 | irq_bits = 0x02; |
| 469 | break; |
| 470 | case 10: |
| 471 | irq_bits = 0x03; |
| 472 | break; |
| 473 | case 11: |
| 474 | irq_bits = 0x04; |
| 475 | break; |
| 476 | default: |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 477 | snd_printk(KERN_WARNING "WSS irq # %d not valid\n", irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | goto __skip_resources; |
| 479 | } |
| 480 | |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 481 | switch (dma1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | case 0: |
| 483 | dma_bits = 0x01; |
| 484 | break; |
| 485 | case 1: |
| 486 | dma_bits = 0x02; |
| 487 | break; |
| 488 | case 3: |
| 489 | dma_bits = 0x03; |
| 490 | break; |
| 491 | default: |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 492 | snd_printk(KERN_WARNING "WSS dma1 # %d not valid\n", dma1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 493 | goto __skip_resources; |
| 494 | } |
| 495 | |
| 496 | #if defined(CS4231) || defined(OPTi93X) |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 497 | if (dma1 == dma2) { |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 498 | snd_printk(KERN_ERR "don't want to share dmas\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | return -EBUSY; |
| 500 | } |
| 501 | |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 502 | switch (dma2) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | case 0: |
| 504 | case 1: |
| 505 | break; |
| 506 | default: |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 507 | snd_printk(KERN_WARNING "WSS dma2 # %d not valid\n", dma2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | goto __skip_resources; |
| 509 | } |
| 510 | dma_bits |= 0x04; |
| 511 | #endif /* CS4231 || OPTi93X */ |
| 512 | |
| 513 | #ifndef OPTi93X |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 514 | outb(irq_bits << 3 | dma_bits, chip->wss_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | #else /* OPTi93X */ |
| 516 | snd_opti9xx_write(chip, OPTi9XX_MC_REG(3), (irq_bits << 3 | dma_bits)); |
| 517 | #endif /* OPTi93X */ |
| 518 | |
| 519 | __skip_resources: |
| 520 | if (chip->hardware > OPTi9XX_HW_82C928) { |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 521 | switch (mpu_port) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | case 0: |
| 523 | case -1: |
| 524 | break; |
| 525 | case 0x300: |
| 526 | mpu_port_bits = 0x03; |
| 527 | break; |
| 528 | case 0x310: |
| 529 | mpu_port_bits = 0x02; |
| 530 | break; |
| 531 | case 0x320: |
| 532 | mpu_port_bits = 0x01; |
| 533 | break; |
| 534 | case 0x330: |
| 535 | mpu_port_bits = 0x00; |
| 536 | break; |
| 537 | default: |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 538 | snd_printk(KERN_WARNING |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 539 | "MPU-401 port 0x%lx not valid\n", mpu_port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | goto __skip_mpu; |
| 541 | } |
| 542 | |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 543 | switch (mpu_irq) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | case 5: |
| 545 | mpu_irq_bits = 0x02; |
| 546 | break; |
| 547 | case 7: |
| 548 | mpu_irq_bits = 0x03; |
| 549 | break; |
| 550 | case 9: |
| 551 | mpu_irq_bits = 0x00; |
| 552 | break; |
| 553 | case 10: |
| 554 | mpu_irq_bits = 0x01; |
| 555 | break; |
| 556 | default: |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 557 | snd_printk(KERN_WARNING "MPU-401 irq # %d not valid\n", |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 558 | mpu_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | goto __skip_mpu; |
| 560 | } |
| 561 | |
| 562 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6), |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 563 | (mpu_port <= 0) ? 0x00 : |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 564 | 0x80 | mpu_port_bits << 5 | mpu_irq_bits << 3, |
| 565 | 0xf8); |
| 566 | } |
| 567 | __skip_mpu: |
| 568 | |
| 569 | return 0; |
| 570 | } |
| 571 | |
| 572 | #ifdef OPTi93X |
| 573 | |
Krzysztof Helt | e9d0a80 | 2009-12-12 09:51:03 +0100 | [diff] [blame] | 574 | static const DECLARE_TLV_DB_SCALE(db_scale_5bit_3db_step, -9300, 300, 0); |
| 575 | static const DECLARE_TLV_DB_SCALE(db_scale_5bit, -4650, 150, 0); |
| 576 | static const DECLARE_TLV_DB_SCALE(db_scale_4bit_12db_max, -3300, 300, 0); |
Krzysztof Helt | b2e8d7d | 2009-12-10 20:40:18 +0100 | [diff] [blame] | 577 | |
| 578 | static struct snd_kcontrol_new snd_opti93x_controls[] = { |
| 579 | WSS_DOUBLE("Master Playback Switch", 0, |
| 580 | OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 7, 7, 1, 1), |
| 581 | WSS_DOUBLE_TLV("Master Playback Volume", 0, |
| 582 | OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 1, 1, 31, 1, |
Krzysztof Helt | e9d0a80 | 2009-12-12 09:51:03 +0100 | [diff] [blame] | 583 | db_scale_5bit_3db_step), |
| 584 | WSS_DOUBLE_TLV("PCM Playback Volume", 0, |
| 585 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 31, 1, |
| 586 | db_scale_5bit), |
| 587 | WSS_DOUBLE_TLV("FM Playback Volume", 0, |
| 588 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 1, 1, 15, 1, |
| 589 | db_scale_4bit_12db_max), |
Krzysztof Helt | b2e8d7d | 2009-12-10 20:40:18 +0100 | [diff] [blame] | 590 | WSS_DOUBLE("Line Playback Switch", 0, |
| 591 | CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), |
Krzysztof Helt | e9d0a80 | 2009-12-12 09:51:03 +0100 | [diff] [blame] | 592 | WSS_DOUBLE_TLV("Line Playback Volume", 0, |
| 593 | CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 15, 1, |
| 594 | db_scale_4bit_12db_max), |
Krzysztof Helt | b2e8d7d | 2009-12-10 20:40:18 +0100 | [diff] [blame] | 595 | WSS_DOUBLE("Mic Playback Switch", 0, |
| 596 | OPTi93X_MIC_LEFT_INPUT, OPTi93X_MIC_RIGHT_INPUT, 7, 7, 1, 1), |
Krzysztof Helt | e9d0a80 | 2009-12-12 09:51:03 +0100 | [diff] [blame] | 597 | WSS_DOUBLE_TLV("Mic Playback Volume", 0, |
| 598 | OPTi93X_MIC_LEFT_INPUT, OPTi93X_MIC_RIGHT_INPUT, 1, 1, 15, 1, |
| 599 | db_scale_4bit_12db_max), |
| 600 | WSS_DOUBLE_TLV("CD Playback Volume", 0, |
| 601 | CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 1, 1, 15, 1, |
| 602 | db_scale_4bit_12db_max), |
Krzysztof Helt | b2e8d7d | 2009-12-10 20:40:18 +0100 | [diff] [blame] | 603 | WSS_DOUBLE("Aux Playback Switch", 0, |
| 604 | OPTi931_AUX_LEFT_INPUT, OPTi931_AUX_RIGHT_INPUT, 7, 7, 1, 1), |
Krzysztof Helt | e9d0a80 | 2009-12-12 09:51:03 +0100 | [diff] [blame] | 605 | WSS_DOUBLE_TLV("Aux Playback Volume", 0, |
| 606 | OPTi931_AUX_LEFT_INPUT, OPTi931_AUX_RIGHT_INPUT, 1, 1, 15, 1, |
| 607 | db_scale_4bit_12db_max), |
Krzysztof Helt | b2e8d7d | 2009-12-10 20:40:18 +0100 | [diff] [blame] | 608 | }; |
| 609 | |
| 610 | static int __devinit snd_opti93x_mixer(struct snd_wss *chip) |
| 611 | { |
| 612 | struct snd_card *card; |
| 613 | unsigned int idx; |
| 614 | struct snd_ctl_elem_id id1, id2; |
| 615 | int err; |
| 616 | |
| 617 | if (snd_BUG_ON(!chip || !chip->pcm)) |
| 618 | return -EINVAL; |
| 619 | |
| 620 | card = chip->card; |
| 621 | |
| 622 | strcpy(card->mixername, chip->pcm->name); |
| 623 | |
| 624 | memset(&id1, 0, sizeof(id1)); |
| 625 | memset(&id2, 0, sizeof(id2)); |
| 626 | id1.iface = id2.iface = SNDRV_CTL_ELEM_IFACE_MIXER; |
| 627 | /* reassign AUX0 switch to CD */ |
| 628 | strcpy(id1.name, "Aux Playback Switch"); |
| 629 | strcpy(id2.name, "CD Playback Switch"); |
| 630 | err = snd_ctl_rename_id(card, &id1, &id2); |
| 631 | if (err < 0) { |
| 632 | snd_printk(KERN_ERR "Cannot rename opti93x control\n"); |
| 633 | return err; |
| 634 | } |
| 635 | /* reassign AUX1 switch to FM */ |
| 636 | strcpy(id1.name, "Aux Playback Switch"); id1.index = 1; |
| 637 | strcpy(id2.name, "FM Playback Switch"); |
| 638 | err = snd_ctl_rename_id(card, &id1, &id2); |
| 639 | if (err < 0) { |
| 640 | snd_printk(KERN_ERR "Cannot rename opti93x control\n"); |
| 641 | return err; |
| 642 | } |
| 643 | /* remove AUX1 volume */ |
| 644 | strcpy(id1.name, "Aux Playback Volume"); id1.index = 1; |
| 645 | snd_ctl_remove_id(card, &id1); |
| 646 | |
| 647 | /* Replace WSS volume controls with OPTi93x volume controls */ |
| 648 | id1.index = 0; |
| 649 | for (idx = 0; idx < ARRAY_SIZE(snd_opti93x_controls); idx++) { |
| 650 | strcpy(id1.name, snd_opti93x_controls[idx].name); |
| 651 | snd_ctl_remove_id(card, &id1); |
| 652 | |
| 653 | err = snd_ctl_add(card, |
| 654 | snd_ctl_new1(&snd_opti93x_controls[idx], chip)); |
| 655 | if (err < 0) |
| 656 | return err; |
| 657 | } |
| 658 | return 0; |
| 659 | } |
| 660 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 661 | static irqreturn_t snd_opti93x_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | { |
Krzysztof Helt | 5f60e49 | 2009-12-09 20:12:43 +0100 | [diff] [blame] | 663 | struct snd_opti9xx *chip = dev_id; |
| 664 | struct snd_wss *codec = chip->codec; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | unsigned char status; |
| 666 | |
Krzysztof Helt | 5f60e49 | 2009-12-09 20:12:43 +0100 | [diff] [blame] | 667 | if (!codec) |
| 668 | return IRQ_HANDLED; |
| 669 | |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 670 | status = snd_opti9xx_read(chip, OPTi9XX_MC_REG(11)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | if ((status & OPTi93X_IRQ_PLAYBACK) && codec->playback_substream) |
| 672 | snd_pcm_period_elapsed(codec->playback_substream); |
| 673 | if ((status & OPTi93X_IRQ_CAPTURE) && codec->capture_substream) { |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 674 | snd_wss_overrange(codec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | snd_pcm_period_elapsed(codec->capture_substream); |
| 676 | } |
| 677 | outb(0x00, OPTi93X_PORT(codec, STATUS)); |
| 678 | return IRQ_HANDLED; |
| 679 | } |
| 680 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | #endif /* OPTi93X */ |
| 682 | |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 683 | static int __devinit snd_opti9xx_read_check(struct snd_opti9xx *chip) |
| 684 | { |
| 685 | unsigned char value; |
| 686 | #ifdef OPTi93X |
| 687 | unsigned long flags; |
| 688 | #endif |
| 689 | |
| 690 | chip->res_mc_base = request_region(chip->mc_base, chip->mc_base_size, |
| 691 | "OPTi9xx MC"); |
| 692 | if (chip->res_mc_base == NULL) |
| 693 | return -EBUSY; |
| 694 | #ifndef OPTi93X |
| 695 | value = snd_opti9xx_read(chip, OPTi9XX_MC_REG(1)); |
| 696 | if (value != 0xff && value != inb(chip->mc_base + OPTi9XX_MC_REG(1))) |
| 697 | if (value == snd_opti9xx_read(chip, OPTi9XX_MC_REG(1))) |
| 698 | return 0; |
| 699 | #else /* OPTi93X */ |
| 700 | chip->res_mc_indir = request_region(chip->mc_indir_index, |
| 701 | chip->mc_indir_size, |
| 702 | "OPTi93x MC"); |
| 703 | if (chip->res_mc_indir == NULL) |
| 704 | return -EBUSY; |
| 705 | |
| 706 | spin_lock_irqsave(&chip->lock, flags); |
| 707 | outb(chip->password, chip->mc_base + chip->pwd_reg); |
| 708 | outb(((chip->mc_indir_index & 0x1f0) >> 4), chip->mc_base); |
| 709 | spin_unlock_irqrestore(&chip->lock, flags); |
| 710 | |
| 711 | value = snd_opti9xx_read(chip, OPTi9XX_MC_REG(7)); |
| 712 | snd_opti9xx_write(chip, OPTi9XX_MC_REG(7), 0xff - value); |
| 713 | if (snd_opti9xx_read(chip, OPTi9XX_MC_REG(7)) == 0xff - value) |
| 714 | return 0; |
| 715 | |
| 716 | release_and_free_resource(chip->res_mc_indir); |
| 717 | chip->res_mc_indir = NULL; |
| 718 | #endif /* OPTi93X */ |
| 719 | release_and_free_resource(chip->res_mc_base); |
| 720 | chip->res_mc_base = NULL; |
| 721 | |
| 722 | return -ENODEV; |
| 723 | } |
| 724 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 725 | static int __devinit snd_card_opti9xx_detect(struct snd_card *card, |
| 726 | struct snd_opti9xx *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | { |
| 728 | int i, err; |
| 729 | |
| 730 | #ifndef OPTi93X |
| 731 | for (i = OPTi9XX_HW_82C928; i < OPTi9XX_HW_82C930; i++) { |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 732 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | for (i = OPTi9XX_HW_82C931; i >= OPTi9XX_HW_82C930; i--) { |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 734 | #endif |
| 735 | err = snd_opti9xx_init(chip, i); |
| 736 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | return err; |
| 738 | |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 739 | err = snd_opti9xx_read_check(chip); |
| 740 | if (err == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | return 1; |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 742 | #ifdef OPTi93X |
| 743 | chip->mc_indir_index = 0; |
| 744 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 745 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 746 | return -ENODEV; |
| 747 | } |
| 748 | |
| 749 | #ifdef CONFIG_PNP |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 750 | static int __devinit snd_card_opti9xx_pnp(struct snd_opti9xx *chip, |
| 751 | struct pnp_card_link *card, |
| 752 | const struct pnp_card_device_id *pid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 753 | { |
| 754 | struct pnp_dev *pdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | int err; |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 756 | struct pnp_dev *devmpu; |
| 757 | #ifndef OPTi93X |
| 758 | struct pnp_dev *devmc; |
| 759 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 761 | pdev = pnp_request_card_device(card, pid->devs[0].id, NULL); |
| 762 | if (pdev == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 763 | return -EBUSY; |
Rene Herman | 109c53f84 | 2007-11-30 17:59:25 +0100 | [diff] [blame] | 764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | err = pnp_activate_dev(pdev); |
| 766 | if (err < 0) { |
| 767 | snd_printk(KERN_ERR "AUDIO pnp configure failure: %d\n", err); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | return err; |
| 769 | } |
| 770 | |
| 771 | #ifdef OPTi93X |
| 772 | port = pnp_port_start(pdev, 0) - 4; |
Takashi Iwai | 1ea7341 | 2007-09-17 16:44:06 +0200 | [diff] [blame] | 773 | fm_port = pnp_port_start(pdev, 1) + 8; |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 774 | chip->mc_indir_index = pnp_port_start(pdev, 3) + 2; |
| 775 | chip->mc_indir_size = pnp_port_len(pdev, 3) - 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | #else |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 777 | devmc = pnp_request_card_device(card, pid->devs[2].id, NULL); |
| 778 | if (devmc == NULL) |
| 779 | return -EBUSY; |
| 780 | |
| 781 | err = pnp_activate_dev(devmc); |
| 782 | if (err < 0) { |
| 783 | snd_printk(KERN_ERR "MC pnp configure failure: %d\n", err); |
| 784 | return err; |
| 785 | } |
| 786 | |
| 787 | port = pnp_port_start(pdev, 1); |
Takashi Iwai | 1ea7341 | 2007-09-17 16:44:06 +0200 | [diff] [blame] | 788 | fm_port = pnp_port_start(pdev, 2) + 8; |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 789 | /* |
| 790 | * The MC(0) is never accessed and card does not |
| 791 | * include it in the PnP resource range. OPTI93x include it. |
| 792 | */ |
| 793 | chip->mc_base = pnp_port_start(devmc, 0) - 1; |
| 794 | chip->mc_base_size = pnp_port_len(devmc, 0) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | #endif /* OPTi93X */ |
| 796 | irq = pnp_irq(pdev, 0); |
| 797 | dma1 = pnp_dma(pdev, 0); |
| 798 | #if defined(CS4231) || defined(OPTi93X) |
| 799 | dma2 = pnp_dma(pdev, 1); |
| 800 | #endif /* CS4231 || OPTi93X */ |
| 801 | |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 802 | devmpu = pnp_request_card_device(card, pid->devs[1].id, NULL); |
| 803 | |
| 804 | if (devmpu && mpu_port > 0) { |
| 805 | err = pnp_activate_dev(devmpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | if (err < 0) { |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 807 | snd_printk(KERN_ERR "MPU401 pnp configure failure\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 808 | mpu_port = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 809 | } else { |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 810 | mpu_port = pnp_port_start(devmpu, 0); |
| 811 | mpu_irq = pnp_irq(devmpu, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | } |
| 813 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 814 | return pid->driver_data; |
| 815 | } |
| 816 | #endif /* CONFIG_PNP */ |
| 817 | |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 818 | static void snd_card_opti9xx_free(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 819 | { |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 820 | struct snd_opti9xx *chip = card->private_data; |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 821 | |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 822 | if (chip) { |
| 823 | #ifdef OPTi93X |
Krzysztof Helt | 5f60e49 | 2009-12-09 20:12:43 +0100 | [diff] [blame] | 824 | if (chip->irq > 0) { |
| 825 | disable_irq(chip->irq); |
| 826 | free_irq(chip->irq, chip); |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 827 | } |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 828 | release_and_free_resource(chip->res_mc_indir); |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 829 | #endif |
Takashi Iwai | b1d5776 | 2005-10-10 11:56:31 +0200 | [diff] [blame] | 830 | release_and_free_resource(chip->res_mc_base); |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 831 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | } |
| 833 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 834 | static int __devinit snd_opti9xx_probe(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 835 | { |
| 836 | static long possible_ports[] = {0x530, 0xe80, 0xf40, 0x604, -1}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 837 | int error; |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 838 | int xdma2; |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 839 | struct snd_opti9xx *chip = card->private_data; |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 840 | struct snd_wss *codec; |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 841 | #ifdef CS4231 |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 842 | struct snd_timer *timer; |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 843 | #endif |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 844 | struct snd_pcm *pcm; |
| 845 | struct snd_rawmidi *rmidi; |
| 846 | struct snd_hwdep *synth; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | #if defined(CS4231) || defined(OPTi93X) |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 849 | xdma2 = dma2; |
Rene Herman | a0d9274 | 2008-08-04 05:26:26 +0200 | [diff] [blame] | 850 | #else |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 851 | xdma2 = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 852 | #endif |
| 853 | |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 854 | if (port == SNDRV_AUTO_PORT) { |
| 855 | port = snd_legacy_find_free_ioport(possible_ports, 4); |
| 856 | if (port < 0) { |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 857 | snd_printk(KERN_ERR "unable to find a free WSS port\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | return -EBUSY; |
| 859 | } |
| 860 | } |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 861 | error = snd_opti9xx_configure(chip, port, irq, dma1, xdma2, |
| 862 | mpu_port, mpu_irq); |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 863 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 866 | error = snd_wss_create(card, chip->wss_base + 4, -1, irq, dma1, xdma2, |
Rene Herman | a0d9274 | 2008-08-04 05:26:26 +0200 | [diff] [blame] | 867 | #ifdef OPTi93X |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 868 | WSS_HW_OPTI93X, WSS_HWSHARE_IRQ, |
Rene Herman | a0d9274 | 2008-08-04 05:26:26 +0200 | [diff] [blame] | 869 | #else |
| 870 | WSS_HW_DETECT, 0, |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 871 | #endif |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 872 | &codec); |
| 873 | if (error < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 874 | return error; |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 875 | #ifdef OPTi93X |
| 876 | chip->codec = codec; |
| 877 | #endif |
Krzysztof Helt | ead893c | 2008-07-31 21:09:32 +0200 | [diff] [blame] | 878 | error = snd_wss_pcm(codec, 0, &pcm); |
Krzysztof Helt | 5664daa | 2008-07-31 21:08:32 +0200 | [diff] [blame] | 879 | if (error < 0) |
| 880 | return error; |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 881 | error = snd_wss_mixer(codec); |
| 882 | if (error < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | return error; |
Krzysztof Helt | b2e8d7d | 2009-12-10 20:40:18 +0100 | [diff] [blame] | 884 | #ifdef OPTi93X |
| 885 | error = snd_opti93x_mixer(codec); |
| 886 | if (error < 0) |
| 887 | return error; |
| 888 | #endif |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 889 | #ifdef CS4231 |
Krzysztof Helt | 7779f75 | 2008-07-31 21:03:41 +0200 | [diff] [blame] | 890 | error = snd_wss_timer(codec, 0, &timer); |
| 891 | if (error < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | return error; |
Krzysztof Helt | 5664daa | 2008-07-31 21:08:32 +0200 | [diff] [blame] | 893 | #endif |
| 894 | #ifdef OPTi93X |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 895 | error = request_irq(irq, snd_opti93x_interrupt, |
Krzysztof Helt | 5f60e49 | 2009-12-09 20:12:43 +0100 | [diff] [blame] | 896 | IRQF_DISABLED, DEV_NAME" - WSS", chip); |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 897 | if (error < 0) { |
Krzysztof Helt | 5f60e49 | 2009-12-09 20:12:43 +0100 | [diff] [blame] | 898 | snd_printk(KERN_ERR "opti9xx: can't grab IRQ %d\n", irq); |
Krzysztof Helt | 9f240a5 | 2008-06-11 12:26:32 +0200 | [diff] [blame] | 899 | return error; |
| 900 | } |
| 901 | #endif |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 902 | chip->irq = irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 903 | strcpy(card->driver, chip->name); |
| 904 | sprintf(card->shortname, "OPTi %s", card->driver); |
| 905 | #if defined(CS4231) || defined(OPTi93X) |
| 906 | sprintf(card->longname, "%s, %s at 0x%lx, irq %d, dma %d&%d", |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 907 | card->shortname, pcm->name, |
| 908 | chip->wss_base + 4, irq, dma1, xdma2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 909 | #else |
| 910 | sprintf(card->longname, "%s, %s at 0x%lx, irq %d, dma %d", |
Krzysztof Helt | fd8d473 | 2010-03-03 19:41:44 +0100 | [diff] [blame] | 911 | card->shortname, pcm->name, chip->wss_base + 4, irq, dma1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | #endif /* CS4231 || OPTi93X */ |
| 913 | |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 914 | if (mpu_port <= 0 || mpu_port == SNDRV_AUTO_PORT) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | rmidi = NULL; |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 916 | else { |
| 917 | error = snd_mpu401_uart_new(card, 0, MPU401_HW_MPU401, |
| 918 | mpu_port, 0, mpu_irq, IRQF_DISABLED, &rmidi); |
| 919 | if (error) |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 920 | snd_printk(KERN_WARNING "no MPU-401 device at 0x%lx?\n", |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 921 | mpu_port); |
| 922 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 924 | if (fm_port > 0 && fm_port != SNDRV_AUTO_PORT) { |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 925 | struct snd_opl3 *opl3 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | #ifndef OPTi93X |
| 927 | if (chip->hardware == OPTi9XX_HW_82C928 || |
| 928 | chip->hardware == OPTi9XX_HW_82C929 || |
| 929 | chip->hardware == OPTi9XX_HW_82C924) { |
Takashi Iwai | 346c7a6 | 2005-11-17 14:37:56 +0100 | [diff] [blame] | 930 | struct snd_opl4 *opl4; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 931 | /* assume we have an OPL4 */ |
| 932 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2), |
| 933 | 0x20, 0x20); |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 934 | if (snd_opl4_create(card, fm_port, fm_port - 8, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 935 | 2, &opl3, &opl4) < 0) { |
| 936 | /* no luck, use OPL3 instead */ |
| 937 | snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(2), |
| 938 | 0x00, 0x20); |
| 939 | } |
| 940 | } |
| 941 | #endif /* !OPTi93X */ |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 942 | if (!opl3 && snd_opl3_create(card, fm_port, fm_port + 2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 943 | OPL3_HW_AUTO, 0, &opl3) < 0) { |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 944 | snd_printk(KERN_WARNING "no OPL device at 0x%lx-0x%lx\n", |
Krzysztof Helt | d8ea239 | 2009-12-02 23:27:12 +0100 | [diff] [blame] | 945 | fm_port, fm_port + 4 - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | } |
| 947 | if (opl3) { |
Krzysztof Helt | aa9c293 | 2009-01-21 15:08:03 +0100 | [diff] [blame] | 948 | error = snd_opl3_hwdep_new(opl3, 0, 1, &synth); |
| 949 | if (error < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 951 | } |
| 952 | } |
| 953 | |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 954 | return snd_card_register(card); |
| 955 | } |
| 956 | |
Takashi Iwai | 3e7fb9f | 2008-12-28 16:47:30 +0100 | [diff] [blame] | 957 | static int snd_opti9xx_card_new(struct snd_card **cardp) |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 958 | { |
| 959 | struct snd_card *card; |
Takashi Iwai | b1a0aac | 2009-01-14 09:34:06 +0100 | [diff] [blame] | 960 | int err; |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 961 | |
Takashi Iwai | c95eadd | 2008-12-28 16:43:35 +0100 | [diff] [blame] | 962 | err = snd_card_create(index, id, THIS_MODULE, |
| 963 | sizeof(struct snd_opti9xx), &card); |
| 964 | if (err < 0) |
Takashi Iwai | 3e7fb9f | 2008-12-28 16:47:30 +0100 | [diff] [blame] | 965 | return err; |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 966 | card->private_free = snd_card_opti9xx_free; |
Takashi Iwai | 3e7fb9f | 2008-12-28 16:47:30 +0100 | [diff] [blame] | 967 | *cardp = card; |
| 968 | return 0; |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 969 | } |
| 970 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 971 | static int __devinit snd_opti9xx_isa_match(struct device *devptr, |
| 972 | unsigned int dev) |
| 973 | { |
Takashi Iwai | 101f6f4 | 2007-06-20 12:03:09 +0200 | [diff] [blame] | 974 | #ifdef CONFIG_PNP |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 975 | if (snd_opti9xx_pnp_is_probed) |
| 976 | return 0; |
| 977 | if (isapnp) |
| 978 | return 0; |
Takashi Iwai | 101f6f4 | 2007-06-20 12:03:09 +0200 | [diff] [blame] | 979 | #endif |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 980 | return 1; |
| 981 | } |
| 982 | |
| 983 | static int __devinit snd_opti9xx_isa_probe(struct device *devptr, |
| 984 | unsigned int dev) |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 985 | { |
| 986 | struct snd_card *card; |
| 987 | int error; |
| 988 | static long possible_mpu_ports[] = {0x300, 0x310, 0x320, 0x330, -1}; |
| 989 | #ifdef OPTi93X |
| 990 | static int possible_irqs[] = {5, 9, 10, 11, 7, -1}; |
| 991 | #else |
| 992 | static int possible_irqs[] = {9, 10, 11, 7, -1}; |
| 993 | #endif /* OPTi93X */ |
| 994 | static int possible_mpu_irqs[] = {5, 9, 10, 7, -1}; |
| 995 | static int possible_dma1s[] = {3, 1, 0, -1}; |
| 996 | #if defined(CS4231) || defined(OPTi93X) |
| 997 | static int possible_dma2s[][2] = {{1,-1}, {0,-1}, {-1,-1}, {0,-1}}; |
| 998 | #endif /* CS4231 || OPTi93X */ |
| 999 | |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1000 | if (mpu_port == SNDRV_AUTO_PORT) { |
| 1001 | if ((mpu_port = snd_legacy_find_free_ioport(possible_mpu_ports, 2)) < 0) { |
| 1002 | snd_printk(KERN_ERR "unable to find a free MPU401 port\n"); |
| 1003 | return -EBUSY; |
| 1004 | } |
| 1005 | } |
| 1006 | if (irq == SNDRV_AUTO_IRQ) { |
| 1007 | if ((irq = snd_legacy_find_free_irq(possible_irqs)) < 0) { |
| 1008 | snd_printk(KERN_ERR "unable to find a free IRQ\n"); |
| 1009 | return -EBUSY; |
| 1010 | } |
| 1011 | } |
| 1012 | if (mpu_irq == SNDRV_AUTO_IRQ) { |
| 1013 | if ((mpu_irq = snd_legacy_find_free_irq(possible_mpu_irqs)) < 0) { |
| 1014 | snd_printk(KERN_ERR "unable to find a free MPU401 IRQ\n"); |
| 1015 | return -EBUSY; |
| 1016 | } |
| 1017 | } |
| 1018 | if (dma1 == SNDRV_AUTO_DMA) { |
| 1019 | if ((dma1 = snd_legacy_find_free_dma(possible_dma1s)) < 0) { |
| 1020 | snd_printk(KERN_ERR "unable to find a free DMA1\n"); |
| 1021 | return -EBUSY; |
| 1022 | } |
| 1023 | } |
| 1024 | #if defined(CS4231) || defined(OPTi93X) |
| 1025 | if (dma2 == SNDRV_AUTO_DMA) { |
| 1026 | if ((dma2 = snd_legacy_find_free_dma(possible_dma2s[dma1 % 4])) < 0) { |
Takashi Iwai | 4c9f1d3 | 2009-02-05 15:47:51 +0100 | [diff] [blame] | 1027 | snd_printk(KERN_ERR "unable to find a free DMA2\n"); |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1028 | return -EBUSY; |
| 1029 | } |
| 1030 | } |
| 1031 | #endif |
| 1032 | |
Takashi Iwai | 3e7fb9f | 2008-12-28 16:47:30 +0100 | [diff] [blame] | 1033 | error = snd_opti9xx_card_new(&card); |
| 1034 | if (error < 0) |
| 1035 | return error; |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1036 | |
| 1037 | if ((error = snd_card_opti9xx_detect(card, card->private_data)) < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | snd_card_free(card); |
| 1039 | return error; |
| 1040 | } |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1041 | snd_card_set_dev(card, devptr); |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1042 | if ((error = snd_opti9xx_probe(card)) < 0) { |
| 1043 | snd_card_free(card); |
| 1044 | return error; |
| 1045 | } |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1046 | dev_set_drvdata(devptr, card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1047 | return 0; |
| 1048 | } |
| 1049 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1050 | static int __devexit snd_opti9xx_isa_remove(struct device *devptr, |
| 1051 | unsigned int dev) |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1052 | { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1053 | snd_card_free(dev_get_drvdata(devptr)); |
| 1054 | dev_set_drvdata(devptr, NULL); |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1055 | return 0; |
| 1056 | } |
| 1057 | |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1058 | static struct isa_driver snd_opti9xx_driver = { |
| 1059 | .match = snd_opti9xx_isa_match, |
| 1060 | .probe = snd_opti9xx_isa_probe, |
| 1061 | .remove = __devexit_p(snd_opti9xx_isa_remove), |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1062 | /* FIXME: suspend/resume */ |
| 1063 | .driver = { |
Rene Herman | 83c51c0 | 2007-03-20 11:33:46 +0100 | [diff] [blame] | 1064 | .name = DEV_NAME |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1065 | }, |
| 1066 | }; |
| 1067 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1068 | #ifdef CONFIG_PNP |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1069 | static int __devinit snd_opti9xx_pnp_probe(struct pnp_card_link *pcard, |
| 1070 | const struct pnp_card_device_id *pid) |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1071 | { |
| 1072 | struct snd_card *card; |
| 1073 | int error, hw; |
| 1074 | struct snd_opti9xx *chip; |
| 1075 | |
| 1076 | if (snd_opti9xx_pnp_is_probed) |
| 1077 | return -EBUSY; |
| 1078 | if (! isapnp) |
| 1079 | return -ENODEV; |
Takashi Iwai | 3e7fb9f | 2008-12-28 16:47:30 +0100 | [diff] [blame] | 1080 | error = snd_opti9xx_card_new(&card); |
| 1081 | if (error < 0) |
| 1082 | return error; |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1083 | chip = card->private_data; |
| 1084 | |
| 1085 | hw = snd_card_opti9xx_pnp(chip, pcard, pid); |
| 1086 | switch (hw) { |
| 1087 | case 0x0924: |
| 1088 | hw = OPTi9XX_HW_82C924; |
| 1089 | break; |
| 1090 | case 0x0925: |
| 1091 | hw = OPTi9XX_HW_82C925; |
| 1092 | break; |
| 1093 | case 0x0931: |
| 1094 | hw = OPTi9XX_HW_82C931; |
| 1095 | break; |
| 1096 | default: |
| 1097 | snd_card_free(card); |
| 1098 | return -ENODEV; |
| 1099 | } |
| 1100 | |
| 1101 | if ((error = snd_opti9xx_init(chip, hw))) { |
| 1102 | snd_card_free(card); |
| 1103 | return error; |
| 1104 | } |
Krzysztof Helt | e6960e1 | 2009-12-04 18:30:18 +0100 | [diff] [blame] | 1105 | error = snd_opti9xx_read_check(chip); |
| 1106 | if (error) { |
| 1107 | snd_printk(KERN_ERR "OPTI chip not found\n"); |
| 1108 | snd_card_free(card); |
| 1109 | return error; |
| 1110 | } |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1111 | snd_card_set_dev(card, &pcard->card->dev); |
| 1112 | if ((error = snd_opti9xx_probe(card)) < 0) { |
| 1113 | snd_card_free(card); |
| 1114 | return error; |
| 1115 | } |
| 1116 | pnp_set_card_drvdata(pcard, card); |
| 1117 | snd_opti9xx_pnp_is_probed = 1; |
| 1118 | return 0; |
| 1119 | } |
| 1120 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1121 | static void __devexit snd_opti9xx_pnp_remove(struct pnp_card_link * pcard) |
| 1122 | { |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1123 | snd_card_free(pnp_get_card_drvdata(pcard)); |
| 1124 | pnp_set_card_drvdata(pcard, NULL); |
| 1125 | snd_opti9xx_pnp_is_probed = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | } |
| 1127 | |
| 1128 | static struct pnp_card_driver opti9xx_pnpc_driver = { |
| 1129 | .flags = PNP_DRIVER_RES_DISABLE, |
| 1130 | .name = "opti9xx", |
| 1131 | .id_table = snd_opti9xx_pnpids, |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1132 | .probe = snd_opti9xx_pnp_probe, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1133 | .remove = __devexit_p(snd_opti9xx_pnp_remove), |
| 1134 | }; |
| 1135 | #endif |
| 1136 | |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1137 | #ifdef OPTi93X |
| 1138 | #define CHIP_NAME "82C93x" |
| 1139 | #else |
| 1140 | #define CHIP_NAME "82C92x" |
| 1141 | #endif |
| 1142 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | static int __init alsa_card_opti9xx_init(void) |
| 1144 | { |
Takashi Iwai | 0bbbc4c | 2006-02-27 17:23:46 +0100 | [diff] [blame] | 1145 | #ifdef CONFIG_PNP |
Takashi Iwai | 99a0b76 | 2005-11-17 17:13:59 +0100 | [diff] [blame] | 1146 | pnp_register_card_driver(&opti9xx_pnpc_driver); |
| 1147 | if (snd_opti9xx_pnp_is_probed) |
| 1148 | return 0; |
Takashi Iwai | 101f6f4 | 2007-06-20 12:03:09 +0200 | [diff] [blame] | 1149 | pnp_unregister_card_driver(&opti9xx_pnpc_driver); |
Takashi Iwai | 0bbbc4c | 2006-02-27 17:23:46 +0100 | [diff] [blame] | 1150 | #endif |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1151 | return isa_register_driver(&snd_opti9xx_driver, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | static void __exit alsa_card_opti9xx_exit(void) |
| 1155 | { |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 1156 | if (!snd_opti9xx_pnp_is_probed) { |
Takashi Iwai | 5e24c1c | 2007-02-22 12:50:54 +0100 | [diff] [blame] | 1157 | isa_unregister_driver(&snd_opti9xx_driver); |
| 1158 | return; |
Clemens Ladisch | f7a9275 | 2005-12-07 09:13:42 +0100 | [diff] [blame] | 1159 | } |
Takashi Iwai | 0bbbc4c | 2006-02-27 17:23:46 +0100 | [diff] [blame] | 1160 | #ifdef CONFIG_PNP |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1161 | pnp_unregister_card_driver(&opti9xx_pnpc_driver); |
Takashi Iwai | 0bbbc4c | 2006-02-27 17:23:46 +0100 | [diff] [blame] | 1162 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | } |
| 1164 | |
| 1165 | module_init(alsa_card_opti9xx_init) |
| 1166 | module_exit(alsa_card_opti9xx_exit) |