blob: e66103ad9a213160f73e83a39e5ce1562771039f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02002 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Creative Labs, Inc.
4 * Routines for control of EMU10K1 chips
5 *
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01006 * Copyright (c) by James Courtier-Dutton <James@superbug.co.uk>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Added support for Audigy 2 Value.
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01008 * Added EMU 1010 support.
9 * General bug fixes and enhancements.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 *
12 * BUGS:
13 * --
14 *
15 * TODO:
16 * --
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 *
32 */
33
James Courtier-Dutton42f53222007-07-23 17:52:27 +010034#include <linux/sched.h>
35#include <linux/kthread.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/delay.h>
37#include <linux/init.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040038#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <linux/interrupt.h>
40#include <linux/pci.h>
41#include <linux/slab.h>
42#include <linux/vmalloc.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010043#include <linux/mutex.h>
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <sound/core.h>
47#include <sound/emu10k1.h>
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +010048#include <linux/firmware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include "p16v.h"
James Courtier-Duttone2b15f82005-11-11 23:39:05 +010050#include "tina2.h"
James Courtier-Dutton184c1e22006-12-06 15:58:02 +000051#include "p17v.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +010053
Clemens Ladisch7e0af292007-05-03 17:59:54 +020054#define HANA_FILENAME "emu/hana.fw"
55#define DOCK_FILENAME "emu/audio_dock.fw"
James Courtier-Dutton3663d842007-07-14 02:18:26 +010056#define EMU1010B_FILENAME "emu/emu1010b.fw"
57#define MICRO_DOCK_FILENAME "emu/micro_dock.fw"
James Courtier-Dutton190d2c42007-11-04 14:08:26 +000058#define EMU0404_FILENAME "emu/emu0404.fw"
James Courtier-Duttond9e8a552007-07-14 10:24:49 +010059#define EMU1010_NOTEBOOK_FILENAME "emu/emu1010_notebook.fw"
Clemens Ladisch7e0af292007-05-03 17:59:54 +020060
61MODULE_FIRMWARE(HANA_FILENAME);
62MODULE_FIRMWARE(DOCK_FILENAME);
James Courtier-Dutton3663d842007-07-14 02:18:26 +010063MODULE_FIRMWARE(EMU1010B_FILENAME);
64MODULE_FIRMWARE(MICRO_DOCK_FILENAME);
James Courtier-Dutton190d2c42007-11-04 14:08:26 +000065MODULE_FIRMWARE(EMU0404_FILENAME);
James Courtier-Duttond9e8a552007-07-14 10:24:49 +010066MODULE_FIRMWARE(EMU1010_NOTEBOOK_FILENAME);
Clemens Ladisch7e0af292007-05-03 17:59:54 +020067
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*************************************************************************
70 * EMU10K1 init / done
71 *************************************************************************/
72
Vedran Miletic67679b12008-10-23 18:51:00 +020073void snd_emu10k1_voice_init(struct snd_emu10k1 *emu, int ch)
Linus Torvalds1da177e2005-04-16 15:20:36 -070074{
75 snd_emu10k1_ptr_write(emu, DCYSUSV, ch, 0);
76 snd_emu10k1_ptr_write(emu, IP, ch, 0);
77 snd_emu10k1_ptr_write(emu, VTFT, ch, 0xffff);
78 snd_emu10k1_ptr_write(emu, CVCF, ch, 0xffff);
79 snd_emu10k1_ptr_write(emu, PTRX, ch, 0);
80 snd_emu10k1_ptr_write(emu, CPF, ch, 0);
81 snd_emu10k1_ptr_write(emu, CCR, ch, 0);
82
83 snd_emu10k1_ptr_write(emu, PSST, ch, 0);
84 snd_emu10k1_ptr_write(emu, DSL, ch, 0x10);
85 snd_emu10k1_ptr_write(emu, CCCA, ch, 0);
86 snd_emu10k1_ptr_write(emu, Z1, ch, 0);
87 snd_emu10k1_ptr_write(emu, Z2, ch, 0);
88 snd_emu10k1_ptr_write(emu, FXRT, ch, 0x32100000);
89
90 snd_emu10k1_ptr_write(emu, ATKHLDM, ch, 0);
91 snd_emu10k1_ptr_write(emu, DCYSUSM, ch, 0);
92 snd_emu10k1_ptr_write(emu, IFATN, ch, 0xffff);
93 snd_emu10k1_ptr_write(emu, PEFE, ch, 0);
94 snd_emu10k1_ptr_write(emu, FMMOD, ch, 0);
95 snd_emu10k1_ptr_write(emu, TREMFRQ, ch, 24); /* 1 Hz */
96 snd_emu10k1_ptr_write(emu, FM2FRQ2, ch, 24); /* 1 Hz */
97 snd_emu10k1_ptr_write(emu, TEMPENV, ch, 0);
98
99 /*** these are last so OFF prevents writing ***/
100 snd_emu10k1_ptr_write(emu, LFOVAL2, ch, 0);
101 snd_emu10k1_ptr_write(emu, LFOVAL1, ch, 0);
102 snd_emu10k1_ptr_write(emu, ATKHLDV, ch, 0);
103 snd_emu10k1_ptr_write(emu, ENVVOL, ch, 0);
104 snd_emu10k1_ptr_write(emu, ENVVAL, ch, 0);
105
106 /* Audigy extra stuffs */
107 if (emu->audigy) {
108 snd_emu10k1_ptr_write(emu, 0x4c, ch, 0); /* ?? */
109 snd_emu10k1_ptr_write(emu, 0x4d, ch, 0); /* ?? */
110 snd_emu10k1_ptr_write(emu, 0x4e, ch, 0); /* ?? */
111 snd_emu10k1_ptr_write(emu, 0x4f, ch, 0); /* ?? */
112 snd_emu10k1_ptr_write(emu, A_FXRT1, ch, 0x03020100);
113 snd_emu10k1_ptr_write(emu, A_FXRT2, ch, 0x3f3f3f3f);
114 snd_emu10k1_ptr_write(emu, A_SENDAMOUNTS, ch, 0);
115 }
116}
117
James Courtier-Dutton18f3c592005-12-21 22:05:29 +0100118static unsigned int spi_dac_init[] = {
119 0x00ff,
120 0x02ff,
121 0x0400,
122 0x0520,
123 0x0600,
124 0x08ff,
125 0x0aff,
126 0x0cff,
127 0x0eff,
128 0x10ff,
129 0x1200,
130 0x1400,
131 0x1480,
132 0x1800,
133 0x1aff,
134 0x1cff,
135 0x1e00,
136 0x0530,
137 0x0602,
138 0x0622,
139 0x1400,
140};
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000141
142static unsigned int i2c_adc_init[][2] = {
143 { 0x17, 0x00 }, /* Reset */
144 { 0x07, 0x00 }, /* Timeout */
145 { 0x0b, 0x22 }, /* Interface control */
146 { 0x0c, 0x22 }, /* Master mode control */
147 { 0x0d, 0x08 }, /* Powerdown control */
148 { 0x0e, 0xcf }, /* Attenuation Left 0x01 = -103dB, 0xff = 24dB */
149 { 0x0f, 0xcf }, /* Attenuation Right 0.5dB steps */
150 { 0x10, 0x7b }, /* ALC Control 1 */
151 { 0x11, 0x00 }, /* ALC Control 2 */
152 { 0x12, 0x32 }, /* ALC Control 3 */
153 { 0x13, 0x00 }, /* Noise gate control */
154 { 0x14, 0xa6 }, /* Limiter control */
Vedran Miletic67679b12008-10-23 18:51:00 +0200155 { 0x15, ADC_MUX_2 }, /* ADC Mixer control. Mic for A2ZS Notebook */
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000156};
Vedran Miletic67679b12008-10-23 18:51:00 +0200157
Takashi Iwai09668b42005-11-17 16:14:10 +0100158static int snd_emu10k1_init(struct snd_emu10k1 *emu, int enable_ir, int resume)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 unsigned int silent_page;
Takashi Iwai09668b42005-11-17 16:14:10 +0100161 int ch;
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000162 u32 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 /* disable audio and lock cache */
Vedran Miletic67679b12008-10-23 18:51:00 +0200165 outl(HCFG_LOCKSOUNDCACHE | HCFG_LOCKTANKCACHE_MASK |
166 HCFG_MUTEBUTTONENABLE, emu->port + HCFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 /* reset recording buffers */
169 snd_emu10k1_ptr_write(emu, MICBS, 0, ADCBS_BUFSIZE_NONE);
170 snd_emu10k1_ptr_write(emu, MICBA, 0, 0);
171 snd_emu10k1_ptr_write(emu, FXBS, 0, ADCBS_BUFSIZE_NONE);
172 snd_emu10k1_ptr_write(emu, FXBA, 0, 0);
173 snd_emu10k1_ptr_write(emu, ADCBS, 0, ADCBS_BUFSIZE_NONE);
174 snd_emu10k1_ptr_write(emu, ADCBA, 0, 0);
175
176 /* disable channel interrupt */
177 outl(0, emu->port + INTE);
178 snd_emu10k1_ptr_write(emu, CLIEL, 0, 0);
179 snd_emu10k1_ptr_write(emu, CLIEH, 0, 0);
180 snd_emu10k1_ptr_write(emu, SOLEL, 0, 0);
181 snd_emu10k1_ptr_write(emu, SOLEH, 0, 0);
182
Vedran Miletic67679b12008-10-23 18:51:00 +0200183 if (emu->audigy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 /* set SPDIF bypass mode */
185 snd_emu10k1_ptr_write(emu, SPBYPASS, 0, SPBYPASS_FORMAT);
186 /* enable rear left + rear right AC97 slots */
Takashi Iwai09668b42005-11-17 16:14:10 +0100187 snd_emu10k1_ptr_write(emu, AC97SLOT, 0, AC97SLOT_REAR_RIGHT |
188 AC97SLOT_REAR_LEFT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 }
190
191 /* init envelope engine */
Takashi Iwai09668b42005-11-17 16:14:10 +0100192 for (ch = 0; ch < NUM_G; ch++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 snd_emu10k1_voice_init(emu, ch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Takashi Iwai09668b42005-11-17 16:14:10 +0100195 snd_emu10k1_ptr_write(emu, SPCS0, 0, emu->spdif_bits[0]);
196 snd_emu10k1_ptr_write(emu, SPCS1, 0, emu->spdif_bits[1]);
197 snd_emu10k1_ptr_write(emu, SPCS2, 0, emu->spdif_bits[2]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Lee Revell2b637da2005-03-30 13:51:18 +0200199 if (emu->card_capabilities->ca0151_chip) { /* audigy2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 /* Hacks for Alice3 to work independent of haP16V driver */
Vedran Miletic67679b12008-10-23 18:51:00 +0200201 /* Setup SRCMulti_I2S SamplingRate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 tmp = snd_emu10k1_ptr_read(emu, A_SPDIF_SAMPLERATE, 0);
203 tmp &= 0xfffff1ff;
204 tmp |= (0x2<<9);
205 snd_emu10k1_ptr_write(emu, A_SPDIF_SAMPLERATE, 0, tmp);
Vedran Miletic67679b12008-10-23 18:51:00 +0200206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* Setup SRCSel (Enable Spdif,I2S SRCMulti) */
208 snd_emu10k1_ptr20_write(emu, SRCSel, 0, 0x14);
209 /* Setup SRCMulti Input Audio Enable */
210 /* Use 0xFFFFFFFF to enable P16V sounds. */
211 snd_emu10k1_ptr20_write(emu, SRCMULTI_ENABLE, 0, 0xFFFFFFFF);
212
213 /* Enabled Phased (8-channel) P16V playback */
214 outl(0x0201, emu->port + HCFG2);
215 /* Set playback routing. */
James Courtier-Duttonfd9a98e2005-04-10 15:43:35 +0200216 snd_emu10k1_ptr20_write(emu, CAPTURE_P16V_SOURCE, 0, 0x78e4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 }
James Courtier-Duttone0474e52005-07-02 16:33:34 +0200218 if (emu->card_capabilities->ca0108_chip) { /* audigy2 Value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 /* Hacks for Alice3 to work independent of haP16V driver */
Takashi Iwai6f002b02014-02-25 17:02:09 +0100220 dev_info(emu->card->dev, "Audigy2 value: Special config.\n");
Vedran Miletic67679b12008-10-23 18:51:00 +0200221 /* Setup SRCMulti_I2S SamplingRate */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 tmp = snd_emu10k1_ptr_read(emu, A_SPDIF_SAMPLERATE, 0);
223 tmp &= 0xfffff1ff;
224 tmp |= (0x2<<9);
225 snd_emu10k1_ptr_write(emu, A_SPDIF_SAMPLERATE, 0, tmp);
226
227 /* Setup SRCSel (Enable Spdif,I2S SRCMulti) */
228 outl(0x600000, emu->port + 0x20);
229 outl(0x14, emu->port + 0x24);
230
231 /* Setup SRCMulti Input Audio Enable */
232 outl(0x7b0000, emu->port + 0x20);
233 outl(0xFF000000, emu->port + 0x24);
234
235 /* Setup SPDIF Out Audio Enable */
236 /* The Audigy 2 Value has a separate SPDIF out,
237 * so no need for a mixer switch
238 */
239 outl(0x7a0000, emu->port + 0x20);
240 outl(0xFF000000, emu->port + 0x24);
241 tmp = inl(emu->port + A_IOCFG) & ~0x8; /* Clear bit 3 */
242 outl(tmp, emu->port + A_IOCFG);
243 }
James Courtier-Dutton27fe8642005-12-21 15:06:08 +0100244 if (emu->card_capabilities->spi_dac) { /* Audigy 2 ZS Notebook with DAC Wolfson WM8768/WM8568 */
James Courtier-Dutton18f3c592005-12-21 22:05:29 +0100245 int size, n;
246
247 size = ARRAY_SIZE(spi_dac_init);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100248 for (n = 0; n < size; n++)
James Courtier-Dutton18f3c592005-12-21 22:05:29 +0100249 snd_emu10k1_spi_write(emu, spi_dac_init[n]);
250
James Courtier-Dutton27fe8642005-12-21 15:06:08 +0100251 snd_emu10k1_ptr20_write(emu, 0x60, 0, 0x10);
James Courtier-Duttonccadc3e2005-12-21 15:31:02 +0100252 /* Enable GPIOs
253 * GPIO0: Unknown
254 * GPIO1: Speakers-enabled.
255 * GPIO2: Unknown
256 * GPIO3: Unknown
257 * GPIO4: IEC958 Output on.
258 * GPIO5: Unknown
259 * GPIO6: Unknown
260 * GPIO7: Unknown
261 */
262 outl(0x76, emu->port + A_IOCFG); /* Windows uses 0x3f76 */
James Courtier-Dutton27fe8642005-12-21 15:06:08 +0100263 }
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000264 if (emu->card_capabilities->i2c_adc) { /* Audigy 2 ZS Notebook with ADC Wolfson WM8775 */
265 int size, n;
266
267 snd_emu10k1_ptr20_write(emu, P17V_I2S_SRC_SEL, 0, 0x2020205f);
268 tmp = inl(emu->port + A_IOCFG);
269 outl(tmp | 0x4, emu->port + A_IOCFG); /* Set bit 2 for mic input */
270 tmp = inl(emu->port + A_IOCFG);
271 size = ARRAY_SIZE(i2c_adc_init);
272 for (n = 0; n < size; n++)
273 snd_emu10k1_i2c_write(emu, i2c_adc_init[n][0], i2c_adc_init[n][1]);
Vedran Miletic67679b12008-10-23 18:51:00 +0200274 for (n = 0; n < 4; n++) {
275 emu->i2c_capture_volume[n][0] = 0xcf;
276 emu->i2c_capture_volume[n][1] = 0xcf;
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000277 }
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000278 }
279
Vedran Miletic67679b12008-10-23 18:51:00 +0200280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 snd_emu10k1_ptr_write(emu, PTB, 0, emu->ptb_pages.addr);
282 snd_emu10k1_ptr_write(emu, TCB, 0, 0); /* taken from original driver */
283 snd_emu10k1_ptr_write(emu, TCBS, 0, 4); /* taken from original driver */
284
285 silent_page = (emu->silent_page.addr << 1) | MAP_PTI_MASK;
286 for (ch = 0; ch < NUM_G; ch++) {
287 snd_emu10k1_ptr_write(emu, MAPA, ch, silent_page);
288 snd_emu10k1_ptr_write(emu, MAPB, ch, silent_page);
289 }
290
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000291 if (emu->card_capabilities->emu_model) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100292 outl(HCFG_AUTOMUTE_ASYNC |
293 HCFG_EMU32_SLAVE |
294 HCFG_AUDIOENABLE, emu->port + HCFG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /*
296 * Hokay, setup HCFG
297 * Mute Disable Audio = 0
298 * Lock Tank Memory = 1
299 * Lock Sound Memory = 0
300 * Auto Mute = 1
301 */
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100302 } else if (emu->audigy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (emu->revision == 4) /* audigy2 */
304 outl(HCFG_AUDIOENABLE |
305 HCFG_AC3ENABLE_CDSPDIF |
306 HCFG_AC3ENABLE_GPSPDIF |
307 HCFG_AUTOMUTE | HCFG_JOYENABLE, emu->port + HCFG);
308 else
309 outl(HCFG_AUTOMUTE | HCFG_JOYENABLE, emu->port + HCFG);
James Courtier-Duttone0474e52005-07-02 16:33:34 +0200310 /* FIXME: Remove all these emu->model and replace it with a card recognition parameter,
311 * e.g. card_capabilities->joystick */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 } else if (emu->model == 0x20 ||
313 emu->model == 0xc400 ||
314 (emu->model == 0x21 && emu->revision < 6))
315 outl(HCFG_LOCKTANKCACHE_MASK | HCFG_AUTOMUTE, emu->port + HCFG);
316 else
Vedran Miletic67679b12008-10-23 18:51:00 +0200317 /* With on-chip joystick */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 outl(HCFG_LOCKTANKCACHE_MASK | HCFG_AUTOMUTE | HCFG_JOYENABLE, emu->port + HCFG);
319
320 if (enable_ir) { /* enable IR for SB Live */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000321 if (emu->card_capabilities->emu_model) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100322 ; /* Disable all access to A_IOCFG for the emu1010 */
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000323 } else if (emu->card_capabilities->i2c_adc) {
324 ; /* Disable A_IOCFG for Audigy 2 ZS Notebook */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100325 } else if (emu->audigy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 unsigned int reg = inl(emu->port + A_IOCFG);
327 outl(reg | A_IOCFG_GPOUT2, emu->port + A_IOCFG);
328 udelay(500);
329 outl(reg | A_IOCFG_GPOUT1 | A_IOCFG_GPOUT2, emu->port + A_IOCFG);
330 udelay(100);
331 outl(reg, emu->port + A_IOCFG);
332 } else {
333 unsigned int reg = inl(emu->port + HCFG);
334 outl(reg | HCFG_GPOUT2, emu->port + HCFG);
335 udelay(500);
336 outl(reg | HCFG_GPOUT1 | HCFG_GPOUT2, emu->port + HCFG);
337 udelay(100);
338 outl(reg, emu->port + HCFG);
Vedran Miletic67679b12008-10-23 18:51:00 +0200339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
Vedran Miletic67679b12008-10-23 18:51:00 +0200341
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000342 if (emu->card_capabilities->emu_model) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100343 ; /* Disable all access to A_IOCFG for the emu1010 */
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000344 } else if (emu->card_capabilities->i2c_adc) {
345 ; /* Disable A_IOCFG for Audigy 2 ZS Notebook */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100346 } else if (emu->audigy) { /* enable analog output */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 unsigned int reg = inl(emu->port + A_IOCFG);
348 outl(reg | A_IOCFG_GPOUT0, emu->port + A_IOCFG);
349 }
350
Takashi Iwai09668b42005-11-17 16:14:10 +0100351 return 0;
352}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Takashi Iwai09668b42005-11-17 16:14:10 +0100354static void snd_emu10k1_audio_enable(struct snd_emu10k1 *emu)
355{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /*
357 * Enable the audio bit
358 */
359 outl(inl(emu->port + HCFG) | HCFG_AUDIOENABLE, emu->port + HCFG);
360
361 /* Enable analog/digital outs on audigy */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000362 if (emu->card_capabilities->emu_model) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100363 ; /* Disable all access to A_IOCFG for the emu1010 */
James Courtier-Dutton184c1e22006-12-06 15:58:02 +0000364 } else if (emu->card_capabilities->i2c_adc) {
365 ; /* Disable A_IOCFG for Audigy 2 ZS Notebook */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100366 } else if (emu->audigy) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 outl(inl(emu->port + A_IOCFG) & ~0x44, emu->port + A_IOCFG);
Vedran Miletic67679b12008-10-23 18:51:00 +0200368
James Courtier-Duttone0474e52005-07-02 16:33:34 +0200369 if (emu->card_capabilities->ca0151_chip) { /* audigy2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /* Unmute Analog now. Set GPO6 to 1 for Apollo.
371 * This has to be done after init ALice3 I2SOut beyond 48KHz.
372 * So, sequence is important. */
373 outl(inl(emu->port + A_IOCFG) | 0x0040, emu->port + A_IOCFG);
James Courtier-Duttone0474e52005-07-02 16:33:34 +0200374 } else if (emu->card_capabilities->ca0108_chip) { /* audigy2 value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 /* Unmute Analog now. */
376 outl(inl(emu->port + A_IOCFG) | 0x0060, emu->port + A_IOCFG);
377 } else {
378 /* Disable routing from AC97 line out to Front speakers */
379 outl(inl(emu->port + A_IOCFG) | 0x0080, emu->port + A_IOCFG);
380 }
381 }
Vedran Miletic67679b12008-10-23 18:51:00 +0200382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#if 0
384 {
385 unsigned int tmp;
386 /* FIXME: the following routine disables LiveDrive-II !! */
Vedran Miletic67679b12008-10-23 18:51:00 +0200387 /* TOSLink detection */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 emu->tos_link = 0;
389 tmp = inl(emu->port + HCFG);
390 if (tmp & (HCFG_GPINPUT0 | HCFG_GPINPUT1)) {
391 outl(tmp|0x800, emu->port + HCFG);
392 udelay(50);
393 if (tmp != (inl(emu->port + HCFG) & ~0x800)) {
394 emu->tos_link = 1;
395 outl(tmp, emu->port + HCFG);
396 }
397 }
398 }
399#endif
400
401 snd_emu10k1_intr_enable(emu, INTE_PCIERRORENABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Vedran Miletic67679b12008-10-23 18:51:00 +0200404int snd_emu10k1_done(struct snd_emu10k1 *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 int ch;
407
408 outl(0, emu->port + INTE);
409
410 /*
411 * Shutdown the chip
412 */
413 for (ch = 0; ch < NUM_G; ch++)
414 snd_emu10k1_ptr_write(emu, DCYSUSV, ch, 0);
415 for (ch = 0; ch < NUM_G; ch++) {
416 snd_emu10k1_ptr_write(emu, VTFT, ch, 0);
417 snd_emu10k1_ptr_write(emu, CVCF, ch, 0);
418 snd_emu10k1_ptr_write(emu, PTRX, ch, 0);
419 snd_emu10k1_ptr_write(emu, CPF, ch, 0);
420 }
421
422 /* reset recording buffers */
423 snd_emu10k1_ptr_write(emu, MICBS, 0, 0);
424 snd_emu10k1_ptr_write(emu, MICBA, 0, 0);
425 snd_emu10k1_ptr_write(emu, FXBS, 0, 0);
426 snd_emu10k1_ptr_write(emu, FXBA, 0, 0);
427 snd_emu10k1_ptr_write(emu, FXWC, 0, 0);
428 snd_emu10k1_ptr_write(emu, ADCBS, 0, ADCBS_BUFSIZE_NONE);
429 snd_emu10k1_ptr_write(emu, ADCBA, 0, 0);
430 snd_emu10k1_ptr_write(emu, TCBS, 0, TCBS_BUFFSIZE_16K);
431 snd_emu10k1_ptr_write(emu, TCB, 0, 0);
432 if (emu->audigy)
433 snd_emu10k1_ptr_write(emu, A_DBG, 0, A_DBG_SINGLE_STEP);
434 else
435 snd_emu10k1_ptr_write(emu, DBG, 0, EMU10K1_DBG_SINGLE_STEP);
436
437 /* disable channel interrupt */
438 snd_emu10k1_ptr_write(emu, CLIEL, 0, 0);
439 snd_emu10k1_ptr_write(emu, CLIEH, 0, 0);
440 snd_emu10k1_ptr_write(emu, SOLEL, 0, 0);
441 snd_emu10k1_ptr_write(emu, SOLEH, 0, 0);
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 /* disable audio and lock cache */
444 outl(HCFG_LOCKSOUNDCACHE | HCFG_LOCKTANKCACHE_MASK | HCFG_MUTEBUTTONENABLE, emu->port + HCFG);
445 snd_emu10k1_ptr_write(emu, PTB, 0, 0);
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return 0;
448}
449
450/*************************************************************************
451 * ECARD functional implementation
452 *************************************************************************/
453
454/* In A1 Silicon, these bits are in the HC register */
455#define HOOKN_BIT (1L << 12)
456#define HANDN_BIT (1L << 11)
457#define PULSEN_BIT (1L << 10)
458
459#define EC_GDI1 (1 << 13)
460#define EC_GDI0 (1 << 14)
461
462#define EC_NUM_CONTROL_BITS 20
463
464#define EC_AC3_DATA_SELN 0x0001L
465#define EC_EE_DATA_SEL 0x0002L
466#define EC_EE_CNTRL_SELN 0x0004L
467#define EC_EECLK 0x0008L
468#define EC_EECS 0x0010L
469#define EC_EESDO 0x0020L
470#define EC_TRIM_CSN 0x0040L
471#define EC_TRIM_SCLK 0x0080L
472#define EC_TRIM_SDATA 0x0100L
473#define EC_TRIM_MUTEN 0x0200L
474#define EC_ADCCAL 0x0400L
475#define EC_ADCRSTN 0x0800L
476#define EC_DACCAL 0x1000L
477#define EC_DACMUTEN 0x2000L
478#define EC_LEDN 0x4000L
479
480#define EC_SPDIF0_SEL_SHIFT 15
481#define EC_SPDIF1_SEL_SHIFT 17
482#define EC_SPDIF0_SEL_MASK (0x3L << EC_SPDIF0_SEL_SHIFT)
483#define EC_SPDIF1_SEL_MASK (0x7L << EC_SPDIF1_SEL_SHIFT)
484#define EC_SPDIF0_SELECT(_x) (((_x) << EC_SPDIF0_SEL_SHIFT) & EC_SPDIF0_SEL_MASK)
485#define EC_SPDIF1_SELECT(_x) (((_x) << EC_SPDIF1_SEL_SHIFT) & EC_SPDIF1_SEL_MASK)
486#define EC_CURRENT_PROM_VERSION 0x01 /* Self-explanatory. This should
487 * be incremented any time the EEPROM's
488 * format is changed. */
489
490#define EC_EEPROM_SIZE 0x40 /* ECARD EEPROM has 64 16-bit words */
491
492/* Addresses for special values stored in to EEPROM */
493#define EC_PROM_VERSION_ADDR 0x20 /* Address of the current prom version */
494#define EC_BOARDREV0_ADDR 0x21 /* LSW of board rev */
495#define EC_BOARDREV1_ADDR 0x22 /* MSW of board rev */
496
497#define EC_LAST_PROMFILE_ADDR 0x2f
498
Vedran Miletic67679b12008-10-23 18:51:00 +0200499#define EC_SERIALNUM_ADDR 0x30 /* First word of serial number. The
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * can be up to 30 characters in length
501 * and is stored as a NULL-terminated
502 * ASCII string. Any unused bytes must be
503 * filled with zeros */
504#define EC_CHECKSUM_ADDR 0x3f /* Location at which checksum is stored */
505
506
Vedran Miletic67679b12008-10-23 18:51:00 +0200507/* Most of this stuff is pretty self-evident. According to the hardware
508 * dudes, we need to leave the ADCCAL bit low in order to avoid a DC
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * offset problem. Weird.
510 */
511#define EC_RAW_RUN_MODE (EC_DACMUTEN | EC_ADCRSTN | EC_TRIM_MUTEN | \
512 EC_TRIM_CSN)
513
514
515#define EC_DEFAULT_ADC_GAIN 0xC4C4
516#define EC_DEFAULT_SPDIF0_SEL 0x0
517#define EC_DEFAULT_SPDIF1_SEL 0x4
518
519/**************************************************************************
520 * @func Clock bits into the Ecard's control latch. The Ecard uses a
521 * control latch will is loaded bit-serially by toggling the Modem control
522 * lines from function 2 on the E8010. This function hides these details
523 * and presents the illusion that we are actually writing to a distinct
524 * register.
525 */
526
Vedran Miletic67679b12008-10-23 18:51:00 +0200527static void snd_emu10k1_ecard_write(struct snd_emu10k1 *emu, unsigned int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
529 unsigned short count;
530 unsigned int data;
531 unsigned long hc_port;
532 unsigned int hc_value;
533
534 hc_port = emu->port + HCFG;
535 hc_value = inl(hc_port) & ~(HOOKN_BIT | HANDN_BIT | PULSEN_BIT);
536 outl(hc_value, hc_port);
537
538 for (count = 0; count < EC_NUM_CONTROL_BITS; count++) {
539
540 /* Set up the value */
541 data = ((value & 0x1) ? PULSEN_BIT : 0);
542 value >>= 1;
543
544 outl(hc_value | data, hc_port);
545
546 /* Clock the shift register */
547 outl(hc_value | data | HANDN_BIT, hc_port);
548 outl(hc_value | data, hc_port);
549 }
550
551 /* Latch the bits */
552 outl(hc_value | HOOKN_BIT, hc_port);
553 outl(hc_value, hc_port);
554}
555
556/**************************************************************************
557 * @func Set the gain of the ECARD's CS3310 Trim/gain controller. The
558 * trim value consists of a 16bit value which is composed of two
559 * 8 bit gain/trim values, one for the left channel and one for the
560 * right channel. The following table maps from the Gain/Attenuation
561 * value in decibels into the corresponding bit pattern for a single
562 * channel.
563 */
564
Vedran Miletic67679b12008-10-23 18:51:00 +0200565static void snd_emu10k1_ecard_setadcgain(struct snd_emu10k1 *emu,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 unsigned short gain)
567{
568 unsigned int bit;
569
570 /* Enable writing to the TRIM registers */
571 snd_emu10k1_ecard_write(emu, emu->ecard_ctrl & ~EC_TRIM_CSN);
572
573 /* Do it again to insure that we meet hold time requirements */
574 snd_emu10k1_ecard_write(emu, emu->ecard_ctrl & ~EC_TRIM_CSN);
575
576 for (bit = (1 << 15); bit; bit >>= 1) {
577 unsigned int value;
Vedran Miletic67679b12008-10-23 18:51:00 +0200578
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 value = emu->ecard_ctrl & ~(EC_TRIM_CSN | EC_TRIM_SDATA);
580
581 if (gain & bit)
582 value |= EC_TRIM_SDATA;
583
584 /* Clock the bit */
585 snd_emu10k1_ecard_write(emu, value);
586 snd_emu10k1_ecard_write(emu, value | EC_TRIM_SCLK);
587 snd_emu10k1_ecard_write(emu, value);
588 }
589
590 snd_emu10k1_ecard_write(emu, emu->ecard_ctrl);
591}
592
Vedran Miletic67679b12008-10-23 18:51:00 +0200593static int snd_emu10k1_ecard_init(struct snd_emu10k1 *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
595 unsigned int hc_value;
596
597 /* Set up the initial settings */
598 emu->ecard_ctrl = EC_RAW_RUN_MODE |
599 EC_SPDIF0_SELECT(EC_DEFAULT_SPDIF0_SEL) |
600 EC_SPDIF1_SELECT(EC_DEFAULT_SPDIF1_SEL);
601
Vedran Miletic67679b12008-10-23 18:51:00 +0200602 /* Step 0: Set the codec type in the hardware control register
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 * and enable audio output */
604 hc_value = inl(emu->port + HCFG);
605 outl(hc_value | HCFG_AUDIOENABLE | HCFG_CODECFORMAT_I2S, emu->port + HCFG);
606 inl(emu->port + HCFG);
607
608 /* Step 1: Turn off the led and deassert TRIM_CS */
609 snd_emu10k1_ecard_write(emu, EC_ADCCAL | EC_LEDN | EC_TRIM_CSN);
610
611 /* Step 2: Calibrate the ADC and DAC */
612 snd_emu10k1_ecard_write(emu, EC_DACCAL | EC_LEDN | EC_TRIM_CSN);
613
614 /* Step 3: Wait for awhile; XXX We can't get away with this
615 * under a real operating system; we'll need to block and wait that
616 * way. */
617 snd_emu10k1_wait(emu, 48000);
618
619 /* Step 4: Switch off the DAC and ADC calibration. Note
620 * That ADC_CAL is actually an inverted signal, so we assert
621 * it here to stop calibration. */
622 snd_emu10k1_ecard_write(emu, EC_ADCCAL | EC_LEDN | EC_TRIM_CSN);
623
624 /* Step 4: Switch into run mode */
625 snd_emu10k1_ecard_write(emu, emu->ecard_ctrl);
626
627 /* Step 5: Set the analog input gain */
628 snd_emu10k1_ecard_setadcgain(emu, EC_DEFAULT_ADC_GAIN);
629
630 return 0;
631}
632
Vedran Miletic67679b12008-10-23 18:51:00 +0200633static int snd_emu10k1_cardbus_init(struct snd_emu10k1 *emu)
James Courtier-Duttond83c6712005-10-31 10:27:41 +0000634{
635 unsigned long special_port;
636 unsigned int value;
637
638 /* Special initialisation routine
639 * before the rest of the IO-Ports become active.
640 */
641 special_port = emu->port + 0x38;
642 value = inl(special_port);
643 outl(0x00d00000, special_port);
644 value = inl(special_port);
645 outl(0x00d00001, special_port);
646 value = inl(special_port);
647 outl(0x00d0005f, special_port);
648 value = inl(special_port);
649 outl(0x00d0007f, special_port);
650 value = inl(special_port);
651 outl(0x0090007f, special_port);
652 value = inl(special_port);
653
James Courtier-Duttone2b15f82005-11-11 23:39:05 +0100654 snd_emu10k1_ptr20_write(emu, TINA2_VOLUME, 0, 0xfefefefe); /* Defaults to 0x30303030 */
James Courtier-Duttonc94fa4c2007-11-10 17:55:14 +0000655 /* Delay to give time for ADC chip to switch on. It needs 113ms */
656 msleep(200);
James Courtier-Duttond83c6712005-10-31 10:27:41 +0000657 return 0;
658}
659
Takashi Iwaie08b34e2013-04-24 07:55:20 +0200660static int snd_emu1010_load_firmware(struct snd_emu10k1 *emu,
661 const struct firmware *fw_entry)
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100662{
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100663 int n, i;
664 int reg;
665 int value;
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000666 unsigned int write_post;
667 unsigned long flags;
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100668
Takashi Iwaib209c4d2012-11-22 17:17:17 +0100669 if (!fw_entry)
670 return -EIO;
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100671
672 /* The FPGA is a Xilinx Spartan IIE XC2S50E */
673 /* GPIO7 -> FPGA PGMN
674 * GPIO6 -> FPGA CCLK
675 * GPIO5 -> FPGA DIN
676 * FPGA CONFIG OFF -> FPGA PGMN
677 */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000678 spin_lock_irqsave(&emu->emu_lock, flags);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100679 outl(0x00, emu->port + A_IOCFG); /* Set PGMN low for 1uS. */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000680 write_post = inl(emu->port + A_IOCFG);
681 udelay(100);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100682 outl(0x80, emu->port + A_IOCFG); /* Leave bit 7 set during netlist setup. */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000683 write_post = inl(emu->port + A_IOCFG);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100684 udelay(100); /* Allow FPGA memory to clean */
Vedran Miletic67679b12008-10-23 18:51:00 +0200685 for (n = 0; n < fw_entry->size; n++) {
686 value = fw_entry->data[n];
687 for (i = 0; i < 8; i++) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100688 reg = 0x80;
689 if (value & 0x1)
690 reg = reg | 0x20;
Vedran Miletic67679b12008-10-23 18:51:00 +0200691 value = value >> 1;
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100692 outl(reg, emu->port + A_IOCFG);
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000693 write_post = inl(emu->port + A_IOCFG);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100694 outl(reg | 0x40, emu->port + A_IOCFG);
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000695 write_post = inl(emu->port + A_IOCFG);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100696 }
697 }
698 /* After programming, set GPIO bit 4 high again. */
699 outl(0x10, emu->port + A_IOCFG);
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000700 write_post = inl(emu->port + A_IOCFG);
701 spin_unlock_irqrestore(&emu->emu_lock, flags);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100702
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100703 return 0;
704}
705
Takashi Iwaibd3d1c22007-12-14 12:43:00 +0100706static int emu1010_firmware_thread(void *data)
707{
Vedran Miletic67679b12008-10-23 18:51:00 +0200708 struct snd_emu10k1 *emu = data;
Hannes Eder730d45f2009-02-25 22:28:59 +0100709 u32 tmp, tmp2, reg;
Michael Gernothfa863b22015-04-11 14:34:44 +0200710 u32 last_reg = 0;
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100711 int err;
712
713 for (;;) {
714 /* Delay to allow Audio Dock to settle */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000715 msleep_interruptible(1000);
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100716 if (kthread_should_stop())
717 break;
Takashi Iwai2efa1d52012-11-22 21:21:20 +0100718#ifdef CONFIG_PM_SLEEP
Takashi Iwai4f86f122012-11-22 17:18:49 +0100719 if (emu->suspend)
720 continue;
Takashi Iwai2efa1d52012-11-22 21:21:20 +0100721#endif
Vedran Miletic67679b12008-10-23 18:51:00 +0200722 snd_emu1010_fpga_read(emu, EMU_HANA_IRQ_STATUS, &tmp); /* IRQ Status */
723 snd_emu1010_fpga_read(emu, EMU_HANA_OPTION_CARDS, &reg); /* OPTIONS: Which cards are attached to the EMU */
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100724 if (reg & EMU_HANA_OPTION_DOCK_OFFLINE) {
725 /* Audio Dock attached */
726 /* Return to Audio Dock programming mode */
Takashi Iwai6f002b02014-02-25 17:02:09 +0100727 dev_info(emu->card->dev,
728 "emu1010: Loading Audio Dock Firmware\n");
Vedran Miletic67679b12008-10-23 18:51:00 +0200729 snd_emu1010_fpga_write(emu, EMU_HANA_FPGA_CONFIG, EMU_HANA_FPGA_CONFIG_AUDIODOCK);
Takashi Iwaie08b34e2013-04-24 07:55:20 +0200730
731 if (!emu->dock_fw) {
732 const char *filename = NULL;
733 switch (emu->card_capabilities->emu_model) {
734 case EMU_MODEL_EMU1010:
735 filename = DOCK_FILENAME;
736 break;
737 case EMU_MODEL_EMU1010B:
738 filename = MICRO_DOCK_FILENAME;
739 break;
740 case EMU_MODEL_EMU1616:
741 filename = MICRO_DOCK_FILENAME;
742 break;
743 }
744 if (filename) {
745 err = request_firmware(&emu->dock_fw,
746 filename,
747 &emu->pci->dev);
748 if (err)
749 continue;
750 }
751 }
752
753 if (emu->dock_fw) {
754 err = snd_emu1010_load_firmware(emu, emu->dock_fw);
755 if (err)
756 continue;
757 }
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100758
Vedran Miletic67679b12008-10-23 18:51:00 +0200759 snd_emu1010_fpga_write(emu, EMU_HANA_FPGA_CONFIG, 0);
760 snd_emu1010_fpga_read(emu, EMU_HANA_IRQ_STATUS, &reg);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100761 dev_info(emu->card->dev,
762 "emu1010: EMU_HANA+DOCK_IRQ_STATUS = 0x%x\n",
763 reg);
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100764 /* ID, should read & 0x7f = 0x55 when FPGA programmed. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200765 snd_emu1010_fpga_read(emu, EMU_HANA_ID, &reg);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100766 dev_info(emu->card->dev,
767 "emu1010: EMU_HANA+DOCK_ID = 0x%x\n", reg);
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100768 if ((reg & 0x1f) != 0x15) {
769 /* FPGA failed to be programmed */
Takashi Iwai6f002b02014-02-25 17:02:09 +0100770 dev_info(emu->card->dev,
771 "emu1010: Loading Audio Dock Firmware file failed, reg = 0x%x\n",
772 reg);
James Courtier-Dutton190d2c42007-11-04 14:08:26 +0000773 continue;
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100774 }
Takashi Iwai6f002b02014-02-25 17:02:09 +0100775 dev_info(emu->card->dev,
776 "emu1010: Audio Dock Firmware loaded\n");
Vedran Miletic67679b12008-10-23 18:51:00 +0200777 snd_emu1010_fpga_read(emu, EMU_DOCK_MAJOR_REV, &tmp);
778 snd_emu1010_fpga_read(emu, EMU_DOCK_MINOR_REV, &tmp2);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100779 dev_info(emu->card->dev, "Audio Dock ver: %u.%u\n",
Takashi Iwai28a97c12009-02-05 16:08:14 +0100780 tmp, tmp2);
James Courtier-Duttonc93d1c22007-07-26 18:44:49 +0100781 /* Sync clocking between 1010 and Dock */
782 /* Allow DLL to settle */
783 msleep(10);
784 /* Unmute all. Default is muted after a firmware load */
Vedran Miletic67679b12008-10-23 18:51:00 +0200785 snd_emu1010_fpga_write(emu, EMU_HANA_UNMUTE, EMU_UNMUTE);
Michael Gernothfa863b22015-04-11 14:34:44 +0200786 } else if (!reg && last_reg) {
787 /* Audio Dock removed */
788 dev_info(emu->card->dev,
789 "emu1010: Audio Dock detached\n");
790 /* Unmute all */
791 snd_emu1010_fpga_write(emu, EMU_HANA_UNMUTE, EMU_UNMUTE);
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100792 }
Michael Gernothfa863b22015-04-11 14:34:44 +0200793
794 last_reg = reg;
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100795 }
Takashi Iwai6f002b02014-02-25 17:02:09 +0100796 dev_info(emu->card->dev, "emu1010: firmware thread stopping\n");
James Courtier-Dutton42f53222007-07-23 17:52:27 +0100797 return 0;
798}
799
Pavel Hofman13d45702007-06-11 12:21:20 +0200800/*
801 * EMU-1010 - details found out from this driver, official MS Win drivers,
802 * testing the card:
803 *
804 * Audigy2 (aka Alice2):
805 * ---------------------
806 * * communication over PCI
807 * * conversion of 32-bit data coming over EMU32 links from HANA FPGA
808 * to 2 x 16-bit, using internal DSP instructions
809 * * slave mode, clock supplied by HANA
810 * * linked to HANA using:
811 * 32 x 32-bit serial EMU32 output channels
812 * 16 x EMU32 input channels
813 * (?) x I2S I/O channels (?)
814 *
815 * FPGA (aka HANA):
816 * ---------------
817 * * provides all (?) physical inputs and outputs of the card
818 * (ADC, DAC, SPDIF I/O, ADAT I/O, etc.)
819 * * provides clock signal for the card and Alice2
820 * * two crystals - for 44.1kHz and 48kHz multiples
821 * * provides internal routing of signal sources to signal destinations
822 * * inputs/outputs to Alice2 - see above
823 *
824 * Current status of the driver:
825 * ----------------------------
826 * * only 44.1/48kHz supported (the MS Win driver supports up to 192 kHz)
827 * * PCM device nb. 2:
828 * 16 x 16-bit playback - snd_emu10k1_fx8010_playback_ops
829 * 16 x 32-bit capture - snd_emu10k1_capture_efx_ops
830 */
Vedran Miletic67679b12008-10-23 18:51:00 +0200831static int snd_emu10k1_emu1010_init(struct snd_emu10k1 *emu)
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100832{
833 unsigned int i;
Hannes Eder730d45f2009-02-25 22:28:59 +0100834 u32 tmp, tmp2, reg;
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100835 int err;
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100836
Takashi Iwai6f002b02014-02-25 17:02:09 +0100837 dev_info(emu->card->dev, "emu1010: Special config.\n");
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100838 /* AC97 2.1, Any 16Meg of 4Gig address, Auto-Mute, EMU32 Slave,
839 * Lock Sound Memory Cache, Lock Tank Memory Cache,
840 * Mute all codecs.
841 */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100842 outl(0x0005a00c, emu->port + HCFG);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100843 /* AC97 2.1, Any 16Meg of 4Gig address, Auto-Mute, EMU32 Slave,
844 * Lock Tank Memory Cache,
845 * Mute all codecs.
846 */
Vedran Miletic67679b12008-10-23 18:51:00 +0200847 outl(0x0005a004, emu->port + HCFG);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100848 /* AC97 2.1, Any 16Meg of 4Gig address, Auto-Mute, EMU32 Slave,
849 * Mute all codecs.
850 */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100851 outl(0x0005a000, emu->port + HCFG);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100852 /* AC97 2.1, Any 16Meg of 4Gig address, Auto-Mute, EMU32 Slave,
853 * Mute all codecs.
854 */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100855 outl(0x0005a000, emu->port + HCFG);
856
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100857 /* Disable 48Volt power to Audio Dock */
Vedran Miletic67679b12008-10-23 18:51:00 +0200858 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_PWR, 0);
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100859
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100860 /* ID, should read & 0x7f = 0x55. (Bit 7 is the IRQ bit) */
Vedran Miletic67679b12008-10-23 18:51:00 +0200861 snd_emu1010_fpga_read(emu, EMU_HANA_ID, &reg);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100862 dev_dbg(emu->card->dev, "reg1 = 0x%x\n", reg);
James Courtier-Duttond9e8a552007-07-14 10:24:49 +0100863 if ((reg & 0x3f) == 0x15) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100864 /* FPGA netlist already present so clear it */
865 /* Return to programming mode */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +0100866
Vedran Miletic67679b12008-10-23 18:51:00 +0200867 snd_emu1010_fpga_write(emu, EMU_HANA_FPGA_CONFIG, 0x02);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100868 }
Vedran Miletic67679b12008-10-23 18:51:00 +0200869 snd_emu1010_fpga_read(emu, EMU_HANA_ID, &reg);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100870 dev_dbg(emu->card->dev, "reg2 = 0x%x\n", reg);
James Courtier-Duttond9e8a552007-07-14 10:24:49 +0100871 if ((reg & 0x3f) == 0x15) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100872 /* FPGA failed to return to programming mode */
Takashi Iwai6f002b02014-02-25 17:02:09 +0100873 dev_info(emu->card->dev,
874 "emu1010: FPGA failed to return to programming mode\n");
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100875 return -ENODEV;
876 }
Takashi Iwai6f002b02014-02-25 17:02:09 +0100877 dev_info(emu->card->dev, "emu1010: EMU_HANA_ID = 0x%x\n", reg);
Takashi Iwaib209c4d2012-11-22 17:17:17 +0100878
879 if (!emu->firmware) {
880 const char *filename;
881 switch (emu->card_capabilities->emu_model) {
882 case EMU_MODEL_EMU1010:
883 filename = HANA_FILENAME;
884 break;
885 case EMU_MODEL_EMU1010B:
886 filename = EMU1010B_FILENAME;
887 break;
888 case EMU_MODEL_EMU1616:
889 filename = EMU1010_NOTEBOOK_FILENAME;
890 break;
891 case EMU_MODEL_EMU0404:
892 filename = EMU0404_FILENAME;
893 break;
894 default:
895 return -ENODEV;
896 }
897
898 err = request_firmware(&emu->firmware, filename, &emu->pci->dev);
899 if (err != 0) {
Takashi Iwai6f002b02014-02-25 17:02:09 +0100900 dev_info(emu->card->dev,
901 "emu1010: firmware: %s not found. Err = %d\n",
902 filename, err);
Takashi Iwaib209c4d2012-11-22 17:17:17 +0100903 return err;
904 }
Takashi Iwai6f002b02014-02-25 17:02:09 +0100905 dev_info(emu->card->dev,
906 "emu1010: firmware file = %s, size = 0x%zx\n",
Takashi Iwaib209c4d2012-11-22 17:17:17 +0100907 filename, emu->firmware->size);
Florian Zeitzb56ddbe2013-02-25 09:53:35 +0100908 }
909
Takashi Iwaie08b34e2013-04-24 07:55:20 +0200910 err = snd_emu1010_load_firmware(emu, emu->firmware);
Florian Zeitzb56ddbe2013-02-25 09:53:35 +0100911 if (err != 0) {
Takashi Iwai6f002b02014-02-25 17:02:09 +0100912 dev_info(emu->card->dev, "emu1010: Loading Firmware failed\n");
Florian Zeitzb56ddbe2013-02-25 09:53:35 +0100913 return err;
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100914 }
915
916 /* ID, should read & 0x7f = 0x55 when FPGA programmed. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200917 snd_emu1010_fpga_read(emu, EMU_HANA_ID, &reg);
James Courtier-Duttond9e8a552007-07-14 10:24:49 +0100918 if ((reg & 0x3f) != 0x15) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100919 /* FPGA failed to be programmed */
Takashi Iwai6f002b02014-02-25 17:02:09 +0100920 dev_info(emu->card->dev,
921 "emu1010: Loading Hana Firmware file failed, reg = 0x%x\n",
922 reg);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100923 return -ENODEV;
924 }
925
Takashi Iwai6f002b02014-02-25 17:02:09 +0100926 dev_info(emu->card->dev, "emu1010: Hana Firmware loaded\n");
Vedran Miletic67679b12008-10-23 18:51:00 +0200927 snd_emu1010_fpga_read(emu, EMU_HANA_MAJOR_REV, &tmp);
928 snd_emu1010_fpga_read(emu, EMU_HANA_MINOR_REV, &tmp2);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100929 dev_info(emu->card->dev, "emu1010: Hana version: %u.%u\n", tmp, tmp2);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100930 /* Enable 48Volt power to Audio Dock */
Vedran Miletic67679b12008-10-23 18:51:00 +0200931 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_PWR, EMU_HANA_DOCK_PWR_ON);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100932
Vedran Miletic67679b12008-10-23 18:51:00 +0200933 snd_emu1010_fpga_read(emu, EMU_HANA_OPTION_CARDS, &reg);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100934 dev_info(emu->card->dev, "emu1010: Card options = 0x%x\n", reg);
Vedran Miletic67679b12008-10-23 18:51:00 +0200935 snd_emu1010_fpga_read(emu, EMU_HANA_OPTION_CARDS, &reg);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100936 dev_info(emu->card->dev, "emu1010: Card options = 0x%x\n", reg);
Vedran Miletic67679b12008-10-23 18:51:00 +0200937 snd_emu1010_fpga_read(emu, EMU_HANA_OPTICAL_TYPE, &tmp);
James Courtier-Duttonedec7bb2007-07-23 20:30:22 +0100938 /* Optical -> ADAT I/O */
James Courtier-Duttonf93abe52007-07-26 18:31:39 +0100939 /* 0 : SPDIF
940 * 1 : ADAT
941 */
942 emu->emu1010.optical_in = 1; /* IN_ADAT */
943 emu->emu1010.optical_out = 1; /* IN_ADAT */
944 tmp = 0;
945 tmp = (emu->emu1010.optical_in ? EMU_HANA_OPTICAL_IN_ADAT : 0) |
946 (emu->emu1010.optical_out ? EMU_HANA_OPTICAL_OUT_ADAT : 0);
Vedran Miletic67679b12008-10-23 18:51:00 +0200947 snd_emu1010_fpga_write(emu, EMU_HANA_OPTICAL_TYPE, tmp);
948 snd_emu1010_fpga_read(emu, EMU_HANA_ADC_PADS, &tmp);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100949 /* Set no attenuation on Audio Dock pads. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200950 snd_emu1010_fpga_write(emu, EMU_HANA_ADC_PADS, 0x00);
James Courtier-Dutton9148cc52006-10-09 23:08:00 +0100951 emu->emu1010.adc_pads = 0x00;
Vedran Miletic67679b12008-10-23 18:51:00 +0200952 snd_emu1010_fpga_read(emu, EMU_HANA_DOCK_MISC, &tmp);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100953 /* Unmute Audio dock DACs, Headphone source DAC-4. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200954 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_MISC, 0x30);
955 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_LEDS_2, 0x12);
956 snd_emu1010_fpga_read(emu, EMU_HANA_DAC_PADS, &tmp);
James Courtier-Dutton9148cc52006-10-09 23:08:00 +0100957 /* DAC PADs. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200958 snd_emu1010_fpga_write(emu, EMU_HANA_DAC_PADS, 0x0f);
James Courtier-Dutton9148cc52006-10-09 23:08:00 +0100959 emu->emu1010.dac_pads = 0x0f;
Vedran Miletic67679b12008-10-23 18:51:00 +0200960 snd_emu1010_fpga_read(emu, EMU_HANA_DOCK_MISC, &tmp);
961 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_MISC, 0x30);
962 snd_emu1010_fpga_read(emu, EMU_HANA_SPDIF_MODE, &tmp);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100963 /* SPDIF Format. Set Consumer mode, 24bit, copy enable */
Vedran Miletic67679b12008-10-23 18:51:00 +0200964 snd_emu1010_fpga_write(emu, EMU_HANA_SPDIF_MODE, 0x10);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100965 /* MIDI routing */
Vedran Miletic67679b12008-10-23 18:51:00 +0200966 snd_emu1010_fpga_write(emu, EMU_HANA_MIDI_IN, 0x19);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100967 /* Unknown. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200968 snd_emu1010_fpga_write(emu, EMU_HANA_MIDI_OUT, 0x0c);
Justin P. Mattockfb9b5a02011-02-24 22:15:42 -0800969 /* IRQ Enable: All on */
Vedran Miletic67679b12008-10-23 18:51:00 +0200970 /* snd_emu1010_fpga_write(emu, 0x09, 0x0f ); */
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100971 /* IRQ Enable: All off */
Vedran Miletic67679b12008-10-23 18:51:00 +0200972 snd_emu1010_fpga_write(emu, EMU_HANA_IRQ_ENABLE, 0x00);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100973
Vedran Miletic67679b12008-10-23 18:51:00 +0200974 snd_emu1010_fpga_read(emu, EMU_HANA_OPTION_CARDS, &reg);
Takashi Iwai6f002b02014-02-25 17:02:09 +0100975 dev_info(emu->card->dev, "emu1010: Card options3 = 0x%x\n", reg);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100976 /* Default WCLK set to 48kHz. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200977 snd_emu1010_fpga_write(emu, EMU_HANA_DEFCLOCK, 0x00);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100978 /* Word Clock source, Internal 48kHz x1 */
Vedran Miletic67679b12008-10-23 18:51:00 +0200979 snd_emu1010_fpga_write(emu, EMU_HANA_WCLOCK, EMU_HANA_WCLOCK_INT_48K);
980 /* snd_emu1010_fpga_write(emu, EMU_HANA_WCLOCK, EMU_HANA_WCLOCK_INT_48K | EMU_HANA_WCLOCK_4X); */
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100981 /* Audio Dock LEDs. */
Vedran Miletic67679b12008-10-23 18:51:00 +0200982 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_LEDS_2, 0x12);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +0100983
984#if 0
985 /* For 96kHz */
986 snd_emu1010_fpga_link_dst_src_write(emu,
987 EMU_DST_ALICE2_EMU32_0, EMU_SRC_HAMOA_ADC_LEFT1);
988 snd_emu1010_fpga_link_dst_src_write(emu,
989 EMU_DST_ALICE2_EMU32_1, EMU_SRC_HAMOA_ADC_RIGHT1);
990 snd_emu1010_fpga_link_dst_src_write(emu,
991 EMU_DST_ALICE2_EMU32_4, EMU_SRC_HAMOA_ADC_LEFT2);
992 snd_emu1010_fpga_link_dst_src_write(emu,
993 EMU_DST_ALICE2_EMU32_5, EMU_SRC_HAMOA_ADC_RIGHT2);
994#endif
995#if 0
996 /* For 192kHz */
997 snd_emu1010_fpga_link_dst_src_write(emu,
998 EMU_DST_ALICE2_EMU32_0, EMU_SRC_HAMOA_ADC_LEFT1);
999 snd_emu1010_fpga_link_dst_src_write(emu,
1000 EMU_DST_ALICE2_EMU32_1, EMU_SRC_HAMOA_ADC_RIGHT1);
1001 snd_emu1010_fpga_link_dst_src_write(emu,
1002 EMU_DST_ALICE2_EMU32_2, EMU_SRC_HAMOA_ADC_LEFT2);
1003 snd_emu1010_fpga_link_dst_src_write(emu,
1004 EMU_DST_ALICE2_EMU32_3, EMU_SRC_HAMOA_ADC_RIGHT2);
1005 snd_emu1010_fpga_link_dst_src_write(emu,
1006 EMU_DST_ALICE2_EMU32_4, EMU_SRC_HAMOA_ADC_LEFT3);
1007 snd_emu1010_fpga_link_dst_src_write(emu,
1008 EMU_DST_ALICE2_EMU32_5, EMU_SRC_HAMOA_ADC_RIGHT3);
1009 snd_emu1010_fpga_link_dst_src_write(emu,
1010 EMU_DST_ALICE2_EMU32_6, EMU_SRC_HAMOA_ADC_LEFT4);
1011 snd_emu1010_fpga_link_dst_src_write(emu,
1012 EMU_DST_ALICE2_EMU32_7, EMU_SRC_HAMOA_ADC_RIGHT4);
1013#endif
1014#if 1
1015 /* For 48kHz */
1016 snd_emu1010_fpga_link_dst_src_write(emu,
1017 EMU_DST_ALICE2_EMU32_0, EMU_SRC_DOCK_MIC_A1);
1018 snd_emu1010_fpga_link_dst_src_write(emu,
1019 EMU_DST_ALICE2_EMU32_1, EMU_SRC_DOCK_MIC_B1);
1020 snd_emu1010_fpga_link_dst_src_write(emu,
1021 EMU_DST_ALICE2_EMU32_2, EMU_SRC_HAMOA_ADC_LEFT2);
1022 snd_emu1010_fpga_link_dst_src_write(emu,
1023 EMU_DST_ALICE2_EMU32_3, EMU_SRC_HAMOA_ADC_LEFT2);
1024 snd_emu1010_fpga_link_dst_src_write(emu,
1025 EMU_DST_ALICE2_EMU32_4, EMU_SRC_DOCK_ADC1_LEFT1);
1026 snd_emu1010_fpga_link_dst_src_write(emu,
1027 EMU_DST_ALICE2_EMU32_5, EMU_SRC_DOCK_ADC1_RIGHT1);
1028 snd_emu1010_fpga_link_dst_src_write(emu,
1029 EMU_DST_ALICE2_EMU32_6, EMU_SRC_DOCK_ADC2_LEFT1);
1030 snd_emu1010_fpga_link_dst_src_write(emu,
1031 EMU_DST_ALICE2_EMU32_7, EMU_SRC_DOCK_ADC2_RIGHT1);
Pavel Hofman13d45702007-06-11 12:21:20 +02001032 /* Pavel Hofman - setting defaults for 8 more capture channels
1033 * Defaults only, users will set their own values anyways, let's
1034 * just copy/paste.
1035 */
Vedran Miletic67679b12008-10-23 18:51:00 +02001036
Pavel Hofman13d45702007-06-11 12:21:20 +02001037 snd_emu1010_fpga_link_dst_src_write(emu,
1038 EMU_DST_ALICE2_EMU32_8, EMU_SRC_DOCK_MIC_A1);
1039 snd_emu1010_fpga_link_dst_src_write(emu,
1040 EMU_DST_ALICE2_EMU32_9, EMU_SRC_DOCK_MIC_B1);
1041 snd_emu1010_fpga_link_dst_src_write(emu,
1042 EMU_DST_ALICE2_EMU32_A, EMU_SRC_HAMOA_ADC_LEFT2);
1043 snd_emu1010_fpga_link_dst_src_write(emu,
1044 EMU_DST_ALICE2_EMU32_B, EMU_SRC_HAMOA_ADC_LEFT2);
1045 snd_emu1010_fpga_link_dst_src_write(emu,
1046 EMU_DST_ALICE2_EMU32_C, EMU_SRC_DOCK_ADC1_LEFT1);
1047 snd_emu1010_fpga_link_dst_src_write(emu,
1048 EMU_DST_ALICE2_EMU32_D, EMU_SRC_DOCK_ADC1_RIGHT1);
1049 snd_emu1010_fpga_link_dst_src_write(emu,
1050 EMU_DST_ALICE2_EMU32_E, EMU_SRC_DOCK_ADC2_LEFT1);
1051 snd_emu1010_fpga_link_dst_src_write(emu,
1052 EMU_DST_ALICE2_EMU32_F, EMU_SRC_DOCK_ADC2_RIGHT1);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001053#endif
1054#if 0
1055 /* Original */
1056 snd_emu1010_fpga_link_dst_src_write(emu,
1057 EMU_DST_ALICE2_EMU32_4, EMU_SRC_HANA_ADAT);
1058 snd_emu1010_fpga_link_dst_src_write(emu,
1059 EMU_DST_ALICE2_EMU32_5, EMU_SRC_HANA_ADAT + 1);
1060 snd_emu1010_fpga_link_dst_src_write(emu,
1061 EMU_DST_ALICE2_EMU32_6, EMU_SRC_HANA_ADAT + 2);
1062 snd_emu1010_fpga_link_dst_src_write(emu,
1063 EMU_DST_ALICE2_EMU32_7, EMU_SRC_HANA_ADAT + 3);
1064 snd_emu1010_fpga_link_dst_src_write(emu,
1065 EMU_DST_ALICE2_EMU32_8, EMU_SRC_HANA_ADAT + 4);
1066 snd_emu1010_fpga_link_dst_src_write(emu,
1067 EMU_DST_ALICE2_EMU32_9, EMU_SRC_HANA_ADAT + 5);
1068 snd_emu1010_fpga_link_dst_src_write(emu,
1069 EMU_DST_ALICE2_EMU32_A, EMU_SRC_HANA_ADAT + 6);
1070 snd_emu1010_fpga_link_dst_src_write(emu,
1071 EMU_DST_ALICE2_EMU32_B, EMU_SRC_HANA_ADAT + 7);
1072 snd_emu1010_fpga_link_dst_src_write(emu,
1073 EMU_DST_ALICE2_EMU32_C, EMU_SRC_DOCK_MIC_A1);
1074 snd_emu1010_fpga_link_dst_src_write(emu,
1075 EMU_DST_ALICE2_EMU32_D, EMU_SRC_DOCK_MIC_B1);
1076 snd_emu1010_fpga_link_dst_src_write(emu,
1077 EMU_DST_ALICE2_EMU32_E, EMU_SRC_HAMOA_ADC_LEFT2);
1078 snd_emu1010_fpga_link_dst_src_write(emu,
1079 EMU_DST_ALICE2_EMU32_F, EMU_SRC_HAMOA_ADC_LEFT2);
1080#endif
Vedran Miletic67679b12008-10-23 18:51:00 +02001081 for (i = 0; i < 0x20; i++) {
1082 /* AudioDock Elink <- Silence */
1083 snd_emu1010_fpga_link_dst_src_write(emu, 0x0100 + i, EMU_SRC_SILENCE);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001084 }
Vedran Miletic67679b12008-10-23 18:51:00 +02001085 for (i = 0; i < 4; i++) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001086 /* Hana SPDIF Out <- Silence */
Vedran Miletic67679b12008-10-23 18:51:00 +02001087 snd_emu1010_fpga_link_dst_src_write(emu, 0x0200 + i, EMU_SRC_SILENCE);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001088 }
Vedran Miletic67679b12008-10-23 18:51:00 +02001089 for (i = 0; i < 7; i++) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001090 /* Hamoa DAC <- Silence */
Vedran Miletic67679b12008-10-23 18:51:00 +02001091 snd_emu1010_fpga_link_dst_src_write(emu, 0x0300 + i, EMU_SRC_SILENCE);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001092 }
Vedran Miletic67679b12008-10-23 18:51:00 +02001093 for (i = 0; i < 7; i++) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001094 /* Hana ADAT Out <- Silence */
1095 snd_emu1010_fpga_link_dst_src_write(emu, EMU_DST_HANA_ADAT + i, EMU_SRC_SILENCE);
1096 }
1097 snd_emu1010_fpga_link_dst_src_write(emu,
1098 EMU_DST_ALICE_I2S0_LEFT, EMU_SRC_DOCK_ADC1_LEFT1);
1099 snd_emu1010_fpga_link_dst_src_write(emu,
1100 EMU_DST_ALICE_I2S0_RIGHT, EMU_SRC_DOCK_ADC1_RIGHT1);
1101 snd_emu1010_fpga_link_dst_src_write(emu,
1102 EMU_DST_ALICE_I2S1_LEFT, EMU_SRC_DOCK_ADC2_LEFT1);
1103 snd_emu1010_fpga_link_dst_src_write(emu,
1104 EMU_DST_ALICE_I2S1_RIGHT, EMU_SRC_DOCK_ADC2_RIGHT1);
1105 snd_emu1010_fpga_link_dst_src_write(emu,
1106 EMU_DST_ALICE_I2S2_LEFT, EMU_SRC_DOCK_ADC3_LEFT1);
1107 snd_emu1010_fpga_link_dst_src_write(emu,
1108 EMU_DST_ALICE_I2S2_RIGHT, EMU_SRC_DOCK_ADC3_RIGHT1);
Vedran Miletic67679b12008-10-23 18:51:00 +02001109 snd_emu1010_fpga_write(emu, EMU_HANA_UNMUTE, 0x01); /* Unmute all */
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001110
Vedran Miletic67679b12008-10-23 18:51:00 +02001111 snd_emu1010_fpga_read(emu, EMU_HANA_OPTION_CARDS, &tmp);
1112
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001113 /* AC97 1.03, Any 32Meg of 2Gig address, Auto-Mute, EMU32 Slave,
1114 * Lock Sound Memory Cache, Lock Tank Memory Cache,
1115 * Mute all codecs.
1116 */
Vedran Miletic67679b12008-10-23 18:51:00 +02001117 outl(0x0000a000, emu->port + HCFG);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001118 /* AC97 1.03, Any 32Meg of 2Gig address, Auto-Mute, EMU32 Slave,
1119 * Lock Sound Memory Cache, Lock Tank Memory Cache,
1120 * Un-Mute all codecs.
1121 */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +01001122 outl(0x0000a001, emu->port + HCFG);
Vedran Miletic67679b12008-10-23 18:51:00 +02001123
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +01001124 /* Initial boot complete. Now patches */
1125
Vedran Miletic67679b12008-10-23 18:51:00 +02001126 snd_emu1010_fpga_read(emu, EMU_HANA_OPTION_CARDS, &tmp);
1127 snd_emu1010_fpga_write(emu, EMU_HANA_MIDI_IN, 0x19); /* MIDI Route */
1128 snd_emu1010_fpga_write(emu, EMU_HANA_MIDI_OUT, 0x0c); /* Unknown */
1129 snd_emu1010_fpga_write(emu, EMU_HANA_MIDI_IN, 0x19); /* MIDI Route */
1130 snd_emu1010_fpga_write(emu, EMU_HANA_MIDI_OUT, 0x0c); /* Unknown */
1131 snd_emu1010_fpga_read(emu, EMU_HANA_SPDIF_MODE, &tmp);
1132 snd_emu1010_fpga_write(emu, EMU_HANA_SPDIF_MODE, 0x10); /* SPDIF Format spdif (or 0x11 for aes/ebu) */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +01001133
James Courtier-Dutton42f53222007-07-23 17:52:27 +01001134 /* Start Micro/Audio Dock firmware loader thread */
Takashi Iwaibd3d1c22007-12-14 12:43:00 +01001135 if (!emu->emu1010.firmware_thread) {
1136 emu->emu1010.firmware_thread =
1137 kthread_create(emu1010_firmware_thread, emu,
1138 "emu1010_firmware");
1139 wake_up_process(emu->emu1010.firmware_thread);
1140 }
James Courtier-Dutton3663d842007-07-14 02:18:26 +01001141
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001142#if 0
1143 snd_emu1010_fpga_link_dst_src_write(emu,
1144 EMU_DST_HAMOA_DAC_LEFT1, EMU_SRC_ALICE_EMU32B + 2); /* ALICE2 bus 0xa2 */
1145 snd_emu1010_fpga_link_dst_src_write(emu,
1146 EMU_DST_HAMOA_DAC_RIGHT1, EMU_SRC_ALICE_EMU32B + 3); /* ALICE2 bus 0xa3 */
1147 snd_emu1010_fpga_link_dst_src_write(emu,
1148 EMU_DST_HANA_SPDIF_LEFT1, EMU_SRC_ALICE_EMU32A + 2); /* ALICE2 bus 0xb2 */
1149 snd_emu1010_fpga_link_dst_src_write(emu,
1150 EMU_DST_HANA_SPDIF_RIGHT1, EMU_SRC_ALICE_EMU32A + 3); /* ALICE2 bus 0xb3 */
1151#endif
1152 /* Default outputs */
Takashi Iwai3839e4f2007-12-21 16:33:32 +01001153 if (emu->card_capabilities->emu_model == EMU_MODEL_EMU1616) {
Ctirad Fertr1c02e362007-12-13 16:27:13 +01001154 /* 1616(M) cardbus default outputs */
1155 /* ALICE2 bus 0xa0 */
1156 snd_emu1010_fpga_link_dst_src_write(emu,
1157 EMU_DST_DOCK_DAC1_LEFT1, EMU_SRC_ALICE_EMU32A + 0);
1158 emu->emu1010.output_source[0] = 17;
1159 snd_emu1010_fpga_link_dst_src_write(emu,
1160 EMU_DST_DOCK_DAC1_RIGHT1, EMU_SRC_ALICE_EMU32A + 1);
1161 emu->emu1010.output_source[1] = 18;
1162 snd_emu1010_fpga_link_dst_src_write(emu,
1163 EMU_DST_DOCK_DAC2_LEFT1, EMU_SRC_ALICE_EMU32A + 2);
1164 emu->emu1010.output_source[2] = 19;
1165 snd_emu1010_fpga_link_dst_src_write(emu,
1166 EMU_DST_DOCK_DAC2_RIGHT1, EMU_SRC_ALICE_EMU32A + 3);
1167 emu->emu1010.output_source[3] = 20;
1168 snd_emu1010_fpga_link_dst_src_write(emu,
1169 EMU_DST_DOCK_DAC3_LEFT1, EMU_SRC_ALICE_EMU32A + 4);
1170 emu->emu1010.output_source[4] = 21;
1171 snd_emu1010_fpga_link_dst_src_write(emu,
1172 EMU_DST_DOCK_DAC3_RIGHT1, EMU_SRC_ALICE_EMU32A + 5);
1173 emu->emu1010.output_source[5] = 22;
1174 /* ALICE2 bus 0xa0 */
1175 snd_emu1010_fpga_link_dst_src_write(emu,
1176 EMU_DST_MANA_DAC_LEFT, EMU_SRC_ALICE_EMU32A + 0);
1177 emu->emu1010.output_source[16] = 17;
1178 snd_emu1010_fpga_link_dst_src_write(emu,
1179 EMU_DST_MANA_DAC_RIGHT, EMU_SRC_ALICE_EMU32A + 1);
1180 emu->emu1010.output_source[17] = 18;
1181 } else {
1182 /* ALICE2 bus 0xa0 */
1183 snd_emu1010_fpga_link_dst_src_write(emu,
1184 EMU_DST_DOCK_DAC1_LEFT1, EMU_SRC_ALICE_EMU32A + 0);
1185 emu->emu1010.output_source[0] = 21;
1186 snd_emu1010_fpga_link_dst_src_write(emu,
1187 EMU_DST_DOCK_DAC1_RIGHT1, EMU_SRC_ALICE_EMU32A + 1);
1188 emu->emu1010.output_source[1] = 22;
1189 snd_emu1010_fpga_link_dst_src_write(emu,
1190 EMU_DST_DOCK_DAC2_LEFT1, EMU_SRC_ALICE_EMU32A + 2);
1191 emu->emu1010.output_source[2] = 23;
1192 snd_emu1010_fpga_link_dst_src_write(emu,
1193 EMU_DST_DOCK_DAC2_RIGHT1, EMU_SRC_ALICE_EMU32A + 3);
1194 emu->emu1010.output_source[3] = 24;
1195 snd_emu1010_fpga_link_dst_src_write(emu,
1196 EMU_DST_DOCK_DAC3_LEFT1, EMU_SRC_ALICE_EMU32A + 4);
1197 emu->emu1010.output_source[4] = 25;
1198 snd_emu1010_fpga_link_dst_src_write(emu,
1199 EMU_DST_DOCK_DAC3_RIGHT1, EMU_SRC_ALICE_EMU32A + 5);
1200 emu->emu1010.output_source[5] = 26;
1201 snd_emu1010_fpga_link_dst_src_write(emu,
1202 EMU_DST_DOCK_DAC4_LEFT1, EMU_SRC_ALICE_EMU32A + 6);
1203 emu->emu1010.output_source[6] = 27;
1204 snd_emu1010_fpga_link_dst_src_write(emu,
1205 EMU_DST_DOCK_DAC4_RIGHT1, EMU_SRC_ALICE_EMU32A + 7);
1206 emu->emu1010.output_source[7] = 28;
1207 /* ALICE2 bus 0xa0 */
1208 snd_emu1010_fpga_link_dst_src_write(emu,
1209 EMU_DST_DOCK_PHONES_LEFT1, EMU_SRC_ALICE_EMU32A + 0);
1210 emu->emu1010.output_source[8] = 21;
1211 snd_emu1010_fpga_link_dst_src_write(emu,
1212 EMU_DST_DOCK_PHONES_RIGHT1, EMU_SRC_ALICE_EMU32A + 1);
1213 emu->emu1010.output_source[9] = 22;
1214 /* ALICE2 bus 0xa0 */
1215 snd_emu1010_fpga_link_dst_src_write(emu,
1216 EMU_DST_DOCK_SPDIF_LEFT1, EMU_SRC_ALICE_EMU32A + 0);
1217 emu->emu1010.output_source[10] = 21;
1218 snd_emu1010_fpga_link_dst_src_write(emu,
1219 EMU_DST_DOCK_SPDIF_RIGHT1, EMU_SRC_ALICE_EMU32A + 1);
1220 emu->emu1010.output_source[11] = 22;
1221 /* ALICE2 bus 0xa0 */
1222 snd_emu1010_fpga_link_dst_src_write(emu,
1223 EMU_DST_HANA_SPDIF_LEFT1, EMU_SRC_ALICE_EMU32A + 0);
1224 emu->emu1010.output_source[12] = 21;
1225 snd_emu1010_fpga_link_dst_src_write(emu,
1226 EMU_DST_HANA_SPDIF_RIGHT1, EMU_SRC_ALICE_EMU32A + 1);
1227 emu->emu1010.output_source[13] = 22;
1228 /* ALICE2 bus 0xa0 */
1229 snd_emu1010_fpga_link_dst_src_write(emu,
1230 EMU_DST_HAMOA_DAC_LEFT1, EMU_SRC_ALICE_EMU32A + 0);
1231 emu->emu1010.output_source[14] = 21;
1232 snd_emu1010_fpga_link_dst_src_write(emu,
1233 EMU_DST_HAMOA_DAC_RIGHT1, EMU_SRC_ALICE_EMU32A + 1);
1234 emu->emu1010.output_source[15] = 22;
1235 /* ALICE2 bus 0xa0 */
1236 snd_emu1010_fpga_link_dst_src_write(emu,
1237 EMU_DST_HANA_ADAT, EMU_SRC_ALICE_EMU32A + 0);
1238 emu->emu1010.output_source[16] = 21;
1239 snd_emu1010_fpga_link_dst_src_write(emu,
1240 EMU_DST_HANA_ADAT + 1, EMU_SRC_ALICE_EMU32A + 1);
1241 emu->emu1010.output_source[17] = 22;
1242 snd_emu1010_fpga_link_dst_src_write(emu,
1243 EMU_DST_HANA_ADAT + 2, EMU_SRC_ALICE_EMU32A + 2);
1244 emu->emu1010.output_source[18] = 23;
1245 snd_emu1010_fpga_link_dst_src_write(emu,
1246 EMU_DST_HANA_ADAT + 3, EMU_SRC_ALICE_EMU32A + 3);
1247 emu->emu1010.output_source[19] = 24;
1248 snd_emu1010_fpga_link_dst_src_write(emu,
1249 EMU_DST_HANA_ADAT + 4, EMU_SRC_ALICE_EMU32A + 4);
1250 emu->emu1010.output_source[20] = 25;
1251 snd_emu1010_fpga_link_dst_src_write(emu,
1252 EMU_DST_HANA_ADAT + 5, EMU_SRC_ALICE_EMU32A + 5);
1253 emu->emu1010.output_source[21] = 26;
1254 snd_emu1010_fpga_link_dst_src_write(emu,
1255 EMU_DST_HANA_ADAT + 6, EMU_SRC_ALICE_EMU32A + 6);
1256 emu->emu1010.output_source[22] = 27;
1257 snd_emu1010_fpga_link_dst_src_write(emu,
1258 EMU_DST_HANA_ADAT + 7, EMU_SRC_ALICE_EMU32A + 7);
1259 emu->emu1010.output_source[23] = 28;
1260 }
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001261 /* TEMP: Select SPDIF in/out */
Vedran Miletic67679b12008-10-23 18:51:00 +02001262 /* snd_emu1010_fpga_write(emu, EMU_HANA_OPTICAL_TYPE, 0x0); */ /* Output spdif */
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001263
1264 /* TEMP: Select 48kHz SPDIF out */
1265 snd_emu1010_fpga_write(emu, EMU_HANA_UNMUTE, 0x0); /* Mute all */
1266 snd_emu1010_fpga_write(emu, EMU_HANA_DEFCLOCK, 0x0); /* Default fallback clock 48kHz */
1267 /* Word Clock source, Internal 48kHz x1 */
Vedran Miletic67679b12008-10-23 18:51:00 +02001268 snd_emu1010_fpga_write(emu, EMU_HANA_WCLOCK, EMU_HANA_WCLOCK_INT_48K);
1269 /* snd_emu1010_fpga_write(emu, EMU_HANA_WCLOCK, EMU_HANA_WCLOCK_INT_48K | EMU_HANA_WCLOCK_4X); */
James Courtier-Duttonb0dbdae2006-10-10 18:08:45 +01001270 emu->emu1010.internal_clock = 1; /* 48000 */
Vedran Miletic67679b12008-10-23 18:51:00 +02001271 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_LEDS_2, 0x12); /* Set LEDs on Audio Dock */
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001272 snd_emu1010_fpga_write(emu, EMU_HANA_UNMUTE, 0x1); /* Unmute all */
Vedran Miletic67679b12008-10-23 18:51:00 +02001273 /* snd_emu1010_fpga_write(emu, 0x7, 0x0); */ /* Mute all */
1274 /* snd_emu1010_fpga_write(emu, 0x7, 0x1); */ /* Unmute all */
1275 /* snd_emu1010_fpga_write(emu, 0xe, 0x12); */ /* Set LEDs on Audio Dock */
James Courtier-Dutton19b99fb2005-12-04 18:03:03 +01001276
1277 return 0;
1278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279/*
1280 * Create the EMU10K1 instance
1281 */
1282
Takashi Iwaic7561cd2012-08-14 18:12:04 +02001283#ifdef CONFIG_PM_SLEEP
Takashi Iwai09668b42005-11-17 16:14:10 +01001284static int alloc_pm_buffer(struct snd_emu10k1 *emu);
1285static void free_pm_buffer(struct snd_emu10k1 *emu);
1286#endif
1287
Takashi Iwaieb4698f2005-11-17 14:50:13 +01001288static int snd_emu10k1_free(struct snd_emu10k1 *emu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 if (emu->port) { /* avoid access to already used hardware */
Vedran Miletic67679b12008-10-23 18:51:00 +02001291 snd_emu10k1_fx8010_tram_setup(emu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 snd_emu10k1_done(emu);
Takashi Iwai09668b42005-11-17 16:14:10 +01001293 snd_emu10k1_free_efx(emu);
Vedran Miletic67679b12008-10-23 18:51:00 +02001294 }
Takashi Iwai3839e4f2007-12-21 16:33:32 +01001295 if (emu->card_capabilities->emu_model == EMU_MODEL_EMU1010) {
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001296 /* Disable 48Volt power to Audio Dock */
Vedran Miletic67679b12008-10-23 18:51:00 +02001297 snd_emu1010_fpga_write(emu, EMU_HANA_DOCK_PWR, 0);
James Courtier-Dutton9f4bd5d2006-10-01 10:48:04 +01001298 }
Takashi Iwaibd3d1c22007-12-14 12:43:00 +01001299 if (emu->emu1010.firmware_thread)
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001300 kthread_stop(emu->emu1010.firmware_thread);
Markus Elfring31604d32014-11-03 14:54:36 +01001301 release_firmware(emu->firmware);
1302 release_firmware(emu->dock_fw);
Takashi Iwaiebf029d2008-04-22 17:28:11 +02001303 if (emu->irq >= 0)
1304 free_irq(emu->irq, emu);
1305 /* remove reserved page */
1306 if (emu->reserved_page) {
1307 snd_emu10k1_synth_free(emu,
1308 (struct snd_util_memblk *)emu->reserved_page);
1309 emu->reserved_page = NULL;
1310 }
Markus Elfring31604d32014-11-03 14:54:36 +01001311 snd_util_memhdr_free(emu->memhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 if (emu->silent_page.area)
1313 snd_dma_free_pages(&emu->silent_page);
1314 if (emu->ptb_pages.area)
1315 snd_dma_free_pages(&emu->ptb_pages);
1316 vfree(emu->page_ptr_table);
1317 vfree(emu->page_addr_table);
Takashi Iwaic7561cd2012-08-14 18:12:04 +02001318#ifdef CONFIG_PM_SLEEP
Takashi Iwai09668b42005-11-17 16:14:10 +01001319 free_pm_buffer(emu);
1320#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (emu->port)
1322 pci_release_regions(emu->pci);
Vedran Miletic67679b12008-10-23 18:51:00 +02001323 if (emu->card_capabilities->ca0151_chip) /* P16V */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 snd_p16v_free(emu);
Takashi Iwai09668b42005-11-17 16:14:10 +01001325 pci_disable_device(emu->pci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 kfree(emu);
1327 return 0;
1328}
1329
Takashi Iwaieb4698f2005-11-17 14:50:13 +01001330static int snd_emu10k1_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Takashi Iwaieb4698f2005-11-17 14:50:13 +01001332 struct snd_emu10k1 *emu = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return snd_emu10k1_free(emu);
1334}
1335
Takashi Iwaieb4698f2005-11-17 14:50:13 +01001336static struct snd_emu_chip_details emu_chip_details[] = {
Michael Gernothf32c1c12015-03-28 19:20:35 +01001337 /* Audigy 5/Rx SB1550 */
1338 /* Tested by michael@gernoth.net 28 Mar 2015 */
1339 /* DSP: CA10300-IAT LF
1340 * DAC: Cirrus Logic CS4382-KQZ
1341 * ADC: Philips 1361T
1342 * AC97: Sigmatel STAC9750
1343 * CA0151: None
1344 */
1345 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x10241102,
1346 .driver = "Audigy2", .name = "SB Audigy 5/Rx [SB1550]",
1347 .id = "Audigy2",
1348 .emu10k2_chip = 1,
1349 .ca0108_chip = 1,
1350 .spk71 = 1,
1351 .adc_1361t = 1, /* 24 bit capture instead of 16bit */
1352 .ac97_chip = 1},
James Courtier-Dutton21fddde2006-04-09 17:36:39 +01001353 /* Audigy4 (Not PRO) SB0610 */
1354 /* Tested by James@superbug.co.uk 4th April 2006 */
1355 /* A_IOCFG bits
1356 * Output
1357 * 0: ?
1358 * 1: ?
1359 * 2: ?
1360 * 3: 0 - Digital Out, 1 - Line in
1361 * 4: ?
1362 * 5: ?
1363 * 6: ?
1364 * 7: ?
1365 * Input
1366 * 8: ?
1367 * 9: ?
1368 * A: Green jack sense (Front)
1369 * B: ?
1370 * C: Black jack sense (Rear/Side Right)
1371 * D: Yellow jack sense (Center/LFE/Side Left)
1372 * E: ?
1373 * F: ?
1374 *
1375 * Digital Out/Line in switch using A_IOCFG bit 3 (0x08)
1376 * 0 - Digital Out
1377 * 1 - Line in
1378 */
1379 /* Mic input not tested.
1380 * Analog CD input not tested
1381 * Digital Out not tested.
1382 * Line in working.
1383 * Audio output 5.1 working. Side outputs not working.
1384 */
1385 /* DSP: CA10300-IAT LF
1386 * DAC: Cirrus Logic CS4382-KQZ
1387 * ADC: Philips 1361T
1388 * AC97: Sigmatel STAC9750
1389 * CA0151: None
1390 */
1391 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x10211102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001392 .driver = "Audigy2", .name = "SB Audigy 4 [SB0610]",
James Courtier-Dutton21fddde2006-04-09 17:36:39 +01001393 .id = "Audigy2",
1394 .emu10k2_chip = 1,
1395 .ca0108_chip = 1,
1396 .spk71 = 1,
1397 .adc_1361t = 1, /* 24 bit capture instead of 16bit */
1398 .ac97_chip = 1} ,
Vedran Miletic18c71092008-10-21 17:42:54 +02001399 /* Audigy 2 Value AC3 out does not work yet.
1400 * Need to find out how to turn off interpolators.
1401 */
1402 /* Tested by James@superbug.co.uk 3rd July 2005 */
1403 /* DSP: CA0108-IAT
1404 * DAC: CS4382-KQ
1405 * ADC: Philips 1361T
1406 * AC97: STAC9750
1407 * CA0151: None
1408 */
1409 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x10011102,
1410 .driver = "Audigy2", .name = "SB Audigy 2 Value [SB0400]",
1411 .id = "Audigy2",
1412 .emu10k2_chip = 1,
1413 .ca0108_chip = 1,
1414 .spk71 = 1,
1415 .ac97_chip = 1} ,
James Courtier-Duttond83c6712005-10-31 10:27:41 +00001416 /* Audigy 2 ZS Notebook Cardbus card.*/
James Courtier-Dutton184c1e22006-12-06 15:58:02 +00001417 /* Tested by James@superbug.co.uk 6th November 2006 */
James Courtier-Duttonf951fd32005-12-22 13:05:23 +01001418 /* Audio output 7.1/Headphones working.
1419 * Digital output working. (AC3 not checked, only PCM)
James Courtier-Dutton184c1e22006-12-06 15:58:02 +00001420 * Audio Mic/Line inputs working.
1421 * Digital input not tested.
Vedran Miletic18c71092008-10-21 17:42:54 +02001422 */
James Courtier-Dutton21fddde2006-04-09 17:36:39 +01001423 /* DSP: Tina2
James Courtier-Duttonf951fd32005-12-22 13:05:23 +01001424 * DAC: Wolfson WM8768/WM8568
1425 * ADC: Wolfson WM8775
1426 * AC97: None
1427 * CA0151: None
1428 */
James Courtier-Dutton184c1e22006-12-06 15:58:02 +00001429 /* Tested by James@superbug.co.uk 4th April 2006 */
1430 /* A_IOCFG bits
1431 * Output
1432 * 0: Not Used
1433 * 1: 0 = Mute all the 7.1 channel out. 1 = unmute.
1434 * 2: Analog input 0 = line in, 1 = mic in
1435 * 3: Not Used
1436 * 4: Digital output 0 = off, 1 = on.
1437 * 5: Not Used
1438 * 6: Not Used
1439 * 7: Not Used
1440 * Input
1441 * All bits 1 (0x3fxx) means nothing plugged in.
1442 * 8-9: 0 = Line in/Mic, 2 = Optical in, 3 = Nothing.
1443 * A-B: 0 = Headphones, 2 = Optical out, 3 = Nothing.
1444 * C-D: 2 = Front/Rear/etc, 3 = nothing.
1445 * E-F: Always 0
1446 *
1447 */
James Courtier-Duttond83c6712005-10-31 10:27:41 +00001448 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x20011102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001449 .driver = "Audigy2", .name = "SB Audigy 2 ZS Notebook [SB0530]",
James Courtier-Duttond83c6712005-10-31 10:27:41 +00001450 .id = "Audigy2",
1451 .emu10k2_chip = 1,
1452 .ca0108_chip = 1,
1453 .ca_cardbus_chip = 1,
James Courtier-Dutton27fe8642005-12-21 15:06:08 +01001454 .spi_dac = 1,
James Courtier-Dutton184c1e22006-12-06 15:58:02 +00001455 .i2c_adc = 1,
James Courtier-Duttond83c6712005-10-31 10:27:41 +00001456 .spk71 = 1} ,
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001457 /* Tested by James@superbug.co.uk 4th Nov 2007. */
James Courtier-Dutton82c8c742007-04-19 11:14:41 +01001458 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x42011102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001459 .driver = "Audigy2", .name = "E-mu 1010 Notebook [MAEM8950]",
James Courtier-Dutton82c8c742007-04-19 11:14:41 +01001460 .id = "EMU1010",
1461 .emu10k2_chip = 1,
1462 .ca0108_chip = 1,
1463 .ca_cardbus_chip = 1,
James Courtier-Duttond9e8a552007-07-14 10:24:49 +01001464 .spk71 = 1 ,
Takashi Iwai3839e4f2007-12-21 16:33:32 +01001465 .emu_model = EMU_MODEL_EMU1616},
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001466 /* Tested by James@superbug.co.uk 4th Nov 2007. */
Vedran Miletic18c71092008-10-21 17:42:54 +02001467 /* This is MAEM8960, 0202 is MAEM 8980 */
James Courtier-Dutton3663d842007-07-14 02:18:26 +01001468 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x40041102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001469 .driver = "Audigy2", .name = "E-mu 1010b PCI [MAEM8960]",
James Courtier-Dutton3663d842007-07-14 02:18:26 +01001470 .id = "EMU1010",
1471 .emu10k2_chip = 1,
1472 .ca0108_chip = 1,
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001473 .spk71 = 1,
Vedran Miletic18c71092008-10-21 17:42:54 +02001474 .emu_model = EMU_MODEL_EMU1010B}, /* EMU 1010 new revision */
Maxim Kachur10f571d2012-10-17 18:18:10 +02001475 /* Tested by Maxim Kachur <mcdebugger@duganet.ru> 17th Oct 2012. */
1476 /* This is MAEM8986, 0202 is MAEM8980 */
1477 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x40071102,
1478 .driver = "Audigy2", .name = "E-mu 1010 PCIe [MAEM8986]",
1479 .id = "EMU1010",
1480 .emu10k2_chip = 1,
1481 .ca0108_chip = 1,
1482 .spk71 = 1,
1483 .emu_model = EMU_MODEL_EMU1010B}, /* EMU 1010 PCIe */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001484 /* Tested by James@superbug.co.uk 8th July 2005. */
Vedran Miletic18c71092008-10-21 17:42:54 +02001485 /* This is MAEM8810, 0202 is MAEM8820 */
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001486 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x40011102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001487 .driver = "Audigy2", .name = "E-mu 1010 [MAEM8810]",
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001488 .id = "EMU1010",
1489 .emu10k2_chip = 1,
1490 .ca0102_chip = 1,
1491 .spk71 = 1,
Vedran Miletic18c71092008-10-21 17:42:54 +02001492 .emu_model = EMU_MODEL_EMU1010}, /* EMU 1010 old revision */
Veli-Matti Valtonen493b4ac2008-01-07 12:36:56 +01001493 /* EMU0404b */
1494 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x40021102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001495 .driver = "Audigy2", .name = "E-mu 0404b PCI [MAEM8852]",
Veli-Matti Valtonen493b4ac2008-01-07 12:36:56 +01001496 .id = "EMU0404",
1497 .emu10k2_chip = 1,
1498 .ca0108_chip = 1,
1499 .spk71 = 1,
Vedran Miletic18c71092008-10-21 17:42:54 +02001500 .emu_model = EMU_MODEL_EMU0404}, /* EMU 0404 new revision */
Veli-Matti Valtonen493b4ac2008-01-07 12:36:56 +01001501 /* Tested by James@superbug.co.uk 20-3-2007. */
1502 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x40021102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001503 .driver = "Audigy2", .name = "E-mu 0404 [MAEM8850]",
Veli-Matti Valtonen493b4ac2008-01-07 12:36:56 +01001504 .id = "EMU0404",
1505 .emu10k2_chip = 1,
1506 .ca0102_chip = 1,
1507 .spk71 = 1,
1508 .emu_model = EMU_MODEL_EMU0404}, /* EMU 0404 */
Florian Zeitzac5d4b42011-06-12 01:15:42 +02001509 /* EMU0404 PCIe */
1510 {.vendor = 0x1102, .device = 0x0008, .subsystem = 0x40051102,
1511 .driver = "Audigy2", .name = "E-mu 0404 PCIe [MAEM8984]",
1512 .id = "EMU0404",
1513 .emu10k2_chip = 1,
1514 .ca0108_chip = 1,
1515 .spk71 = 1,
1516 .emu_model = EMU_MODEL_EMU0404}, /* EMU 0404 PCIe ver_03 */
Vedran Miletic718a2592008-10-21 21:31:27 +02001517 /* Note that all E-mu cards require kernel 2.6 or newer. */
Vedran Miletic18c71092008-10-21 17:42:54 +02001518 {.vendor = 0x1102, .device = 0x0008,
1519 .driver = "Audigy2", .name = "SB Audigy 2 Value [Unknown]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001520 .id = "Audigy2",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 .emu10k2_chip = 1,
Peter Zubaj26689072005-04-01 11:15:07 +02001522 .ca0108_chip = 1,
1523 .ac97_chip = 1} ,
James Courtier-Dutton88dc0e52005-07-03 12:54:29 +02001524 /* Tested by James@superbug.co.uk 3rd July 2005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20071102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001526 .driver = "Audigy2", .name = "SB Audigy 4 PRO [SB0380]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001527 .id = "Audigy2",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 .emu10k2_chip = 1,
1529 .ca0102_chip = 1,
1530 .ca0151_chip = 1,
1531 .spk71 = 1,
1532 .spdif_bug = 1,
1533 .ac97_chip = 1} ,
Lee Revellf6f8bb62005-11-07 14:59:19 +01001534 /* Tested by shane-alsa@cm.nu 5th Nov 2005 */
James Courtier-Dutton5b0e4982006-04-09 22:45:58 +02001535 /* The 0x20061102 does have SB0350 written on it
1536 * Just like 0x20021102
1537 */
Lee Revellf6f8bb62005-11-07 14:59:19 +01001538 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20061102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001539 .driver = "Audigy2", .name = "SB Audigy 2 [SB0350b]",
Lee Revellf6f8bb62005-11-07 14:59:19 +01001540 .id = "Audigy2",
1541 .emu10k2_chip = 1,
1542 .ca0102_chip = 1,
1543 .ca0151_chip = 1,
1544 .spk71 = 1,
1545 .spdif_bug = 1,
Takashi Iwai55e03a62008-11-03 10:21:36 +01001546 .invert_shared_spdif = 1, /* digital/analog switch swapped */
Lee Revellf6f8bb62005-11-07 14:59:19 +01001547 .ac97_chip = 1} ,
Tim Yamindcc2cf72011-12-29 18:50:56 +00001548 /* 0x20051102 also has SB0350 written on it, treated as Audigy 2 ZS by
1549 Creative's Windows driver */
1550 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20051102,
1551 .driver = "Audigy2", .name = "SB Audigy 2 ZS [SB0350a]",
1552 .id = "Audigy2",
1553 .emu10k2_chip = 1,
1554 .ca0102_chip = 1,
1555 .ca0151_chip = 1,
1556 .spk71 = 1,
1557 .spdif_bug = 1,
1558 .invert_shared_spdif = 1, /* digital/analog switch swapped */
1559 .ac97_chip = 1} ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20021102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001561 .driver = "Audigy2", .name = "SB Audigy 2 ZS [SB0350]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001562 .id = "Audigy2",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 .emu10k2_chip = 1,
1564 .ca0102_chip = 1,
1565 .ca0151_chip = 1,
1566 .spk71 = 1,
1567 .spdif_bug = 1,
Takashi Iwai55e03a62008-11-03 10:21:36 +01001568 .invert_shared_spdif = 1, /* digital/analog switch swapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 .ac97_chip = 1} ,
1570 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x20011102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001571 .driver = "Audigy2", .name = "SB Audigy 2 ZS [SB0360]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001572 .id = "Audigy2",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 .emu10k2_chip = 1,
1574 .ca0102_chip = 1,
1575 .ca0151_chip = 1,
1576 .spk71 = 1,
1577 .spdif_bug = 1,
Takashi Iwai55e03a62008-11-03 10:21:36 +01001578 .invert_shared_spdif = 1, /* digital/analog switch swapped */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 .ac97_chip = 1} ,
James Courtier-Dutton54efc962005-12-22 12:58:41 +01001580 /* Audigy 2 */
1581 /* Tested by James@superbug.co.uk 3rd July 2005 */
1582 /* DSP: CA0102-IAT
1583 * DAC: CS4382-KQ
1584 * ADC: Philips 1361T
1585 * AC97: STAC9721
1586 * CA0151: Yes
1587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x10071102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001589 .driver = "Audigy2", .name = "SB Audigy 2 [SB0240]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001590 .id = "Audigy2",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 .emu10k2_chip = 1,
1592 .ca0102_chip = 1,
1593 .ca0151_chip = 1,
1594 .spk71 = 1,
1595 .spdif_bug = 1,
James Courtier-Dutton11b3a752006-07-08 16:39:30 +01001596 .adc_1361t = 1, /* 24 bit capture instead of 16bit */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 .ac97_chip = 1} ,
1598 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x10051102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001599 .driver = "Audigy2", .name = "SB Audigy 2 Platinum EX [SB0280]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001600 .id = "Audigy2",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 .emu10k2_chip = 1,
1602 .ca0102_chip = 1,
1603 .ca0151_chip = 1,
Lee Revell2f020aa2005-11-07 14:54:24 +01001604 .spk71 = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 .spdif_bug = 1} ,
James Courtier-Dutton264f9572006-07-30 17:17:59 +01001606 /* Dell OEM/Creative Labs Audigy 2 ZS */
1607 /* See ALSA bug#1365 */
1608 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x10031102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001609 .driver = "Audigy2", .name = "SB Audigy 2 ZS [SB0353]",
James Courtier-Dutton264f9572006-07-30 17:17:59 +01001610 .id = "Audigy2",
1611 .emu10k2_chip = 1,
1612 .ca0102_chip = 1,
1613 .ca0151_chip = 1,
1614 .spk71 = 1,
1615 .spdif_bug = 1,
Takashi Iwai1f9da552009-02-24 15:31:02 +01001616 .invert_shared_spdif = 1, /* digital/analog switch swapped */
James Courtier-Dutton264f9572006-07-30 17:17:59 +01001617 .ac97_chip = 1} ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x10021102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001619 .driver = "Audigy2", .name = "SB Audigy 2 Platinum [SB0240P]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001620 .id = "Audigy2",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 .emu10k2_chip = 1,
1622 .ca0102_chip = 1,
1623 .ca0151_chip = 1,
1624 .spk71 = 1,
1625 .spdif_bug = 1,
Takashi Iwaid2cd74b2008-06-02 11:45:53 +02001626 .invert_shared_spdif = 1, /* digital/analog switch swapped */
James Courtier-Dutton3271b7b2006-11-25 22:02:47 +00001627 .adc_1361t = 1, /* 24 bit capture instead of 16bit. Fixes ALSA bug#324 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 .ac97_chip = 1} ,
Takashi Iwaibdaed502005-04-07 15:48:42 +02001629 {.vendor = 0x1102, .device = 0x0004, .revision = 0x04,
Vedran Miletic18c71092008-10-21 17:42:54 +02001630 .driver = "Audigy2", .name = "SB Audigy 2 [Unknown]",
Takashi Iwaibdaed502005-04-07 15:48:42 +02001631 .id = "Audigy2",
1632 .emu10k2_chip = 1,
1633 .ca0102_chip = 1,
1634 .ca0151_chip = 1,
1635 .spdif_bug = 1,
1636 .ac97_chip = 1} ,
Peter Zubaj26689072005-04-01 11:15:07 +02001637 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x00531102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001638 .driver = "Audigy", .name = "SB Audigy 1 [SB0092]",
Peter Zubaj26689072005-04-01 11:15:07 +02001639 .id = "Audigy",
1640 .emu10k2_chip = 1,
1641 .ca0102_chip = 1,
1642 .ac97_chip = 1} ,
James Courtier-Duttonae3a72d2005-07-06 22:36:18 +02001643 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x00521102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001644 .driver = "Audigy", .name = "SB Audigy 1 ES [SB0160]",
James Courtier-Duttonae3a72d2005-07-06 22:36:18 +02001645 .id = "Audigy",
1646 .emu10k2_chip = 1,
1647 .ca0102_chip = 1,
1648 .spdif_bug = 1,
1649 .ac97_chip = 1} ,
Arnaud Patarda6c17ec2005-05-27 12:31:34 +02001650 {.vendor = 0x1102, .device = 0x0004, .subsystem = 0x00511102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001651 .driver = "Audigy", .name = "SB Audigy 1 [SB0090]",
Arnaud Patarda6c17ec2005-05-27 12:31:34 +02001652 .id = "Audigy",
1653 .emu10k2_chip = 1,
1654 .ca0102_chip = 1,
1655 .ac97_chip = 1} ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 {.vendor = 0x1102, .device = 0x0004,
Vedran Miletic18c71092008-10-21 17:42:54 +02001657 .driver = "Audigy", .name = "Audigy 1 [Unknown]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001658 .id = "Audigy",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 .emu10k2_chip = 1,
1660 .ca0102_chip = 1,
Peter Zubaj26689072005-04-01 11:15:07 +02001661 .ac97_chip = 1} ,
Vedran Miletic18c71092008-10-21 17:42:54 +02001662 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x100a1102,
1663 .driver = "EMU10K1", .name = "SB Live! 5.1 [SB0220]",
James Courtier-Dutton2b6b22f2005-06-18 13:50:22 +02001664 .id = "Live",
1665 .emu10k1_chip = 1,
1666 .ac97_chip = 1,
1667 .sblive51 = 1} ,
Vedran Miletic18c71092008-10-21 17:42:54 +02001668 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x806b1102,
1669 .driver = "EMU10K1", .name = "SB Live! [SB0105]",
1670 .id = "Live",
1671 .emu10k1_chip = 1,
1672 .ac97_chip = 1,
1673 .sblive51 = 1} ,
1674 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x806a1102,
1675 .driver = "EMU10K1", .name = "SB Live! Value [SB0103]",
James Courtier-Dutton2b6b22f2005-06-18 13:50:22 +02001676 .id = "Live",
1677 .emu10k1_chip = 1,
1678 .ac97_chip = 1,
1679 .sblive51 = 1} ,
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001680 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80691102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001681 .driver = "EMU10K1", .name = "SB Live! Value [SB0101]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001682 .id = "Live",
1683 .emu10k1_chip = 1,
1684 .ac97_chip = 1,
1685 .sblive51 = 1} ,
James Courtier-Dutton0ba656d2005-12-26 15:30:03 +01001686 /* Tested by ALSA bug#1680 26th December 2005 */
Vedran Miletic18c71092008-10-21 17:42:54 +02001687 /* note: It really has SB0220 written on the card, */
1688 /* but it's SB0228 according to kx.inf */
James Courtier-Dutton0ba656d2005-12-26 15:30:03 +01001689 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80661102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001690 .driver = "EMU10K1", .name = "SB Live! 5.1 Dell OEM [SB0228]",
James Courtier-Dutton0ba656d2005-12-26 15:30:03 +01001691 .id = "Live",
1692 .emu10k1_chip = 1,
1693 .ac97_chip = 1,
1694 .sblive51 = 1} ,
Lee Revellc6c0b842005-08-29 17:42:00 +02001695 /* Tested by Thomas Zehetbauer 27th Aug 2005 */
1696 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80651102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001697 .driver = "EMU10K1", .name = "SB Live! 5.1 [SB0220]",
Gergely Tamasa8ee7292005-12-06 14:10:57 +01001698 .id = "Live",
1699 .emu10k1_chip = 1,
1700 .ac97_chip = 1,
1701 .sblive51 = 1} ,
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001702 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80641102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001703 .driver = "EMU10K1", .name = "SB Live! 5.1",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001704 .id = "Live",
1705 .emu10k1_chip = 1,
1706 .ac97_chip = 1,
1707 .sblive51 = 1} ,
James Courtier-Duttonafe0f1f2005-09-10 10:24:10 +02001708 /* Tested by alsa bugtrack user "hus" bug #1297 12th Aug 2005 */
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001709 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80611102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001710 .driver = "EMU10K1", .name = "SB Live! 5.1 [SB0060]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001711 .id = "Live",
1712 .emu10k1_chip = 1,
Takashi Iwaif12aa402005-09-30 16:56:59 +02001713 .ac97_chip = 2, /* ac97 is optional; both SBLive 5.1 and platinum
1714 * share the same IDs!
1715 */
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001716 .sblive51 = 1} ,
1717 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80511102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001718 .driver = "EMU10K1", .name = "SB Live! Value [CT4850]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001719 .id = "Live",
1720 .emu10k1_chip = 1,
1721 .ac97_chip = 1,
1722 .sblive51 = 1} ,
1723 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80401102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001724 .driver = "EMU10K1", .name = "SB Live! Platinum [CT4760P]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001725 .id = "Live",
1726 .emu10k1_chip = 1,
1727 .ac97_chip = 1} ,
1728 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80321102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001729 .driver = "EMU10K1", .name = "SB Live! Value [CT4871]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001730 .id = "Live",
1731 .emu10k1_chip = 1,
1732 .ac97_chip = 1,
1733 .sblive51 = 1} ,
1734 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80311102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001735 .driver = "EMU10K1", .name = "SB Live! Value [CT4831]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001736 .id = "Live",
1737 .emu10k1_chip = 1,
1738 .ac97_chip = 1,
1739 .sblive51 = 1} ,
1740 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80281102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001741 .driver = "EMU10K1", .name = "SB Live! Value [CT4870]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001742 .id = "Live",
1743 .emu10k1_chip = 1,
1744 .ac97_chip = 1,
1745 .sblive51 = 1} ,
James Courtier-Dutton88dc0e52005-07-03 12:54:29 +02001746 /* Tested by James@superbug.co.uk 3rd July 2005 */
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001747 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80271102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001748 .driver = "EMU10K1", .name = "SB Live! Value [CT4832]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001749 .id = "Live",
1750 .emu10k1_chip = 1,
1751 .ac97_chip = 1,
1752 .sblive51 = 1} ,
1753 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80261102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001754 .driver = "EMU10K1", .name = "SB Live! Value [CT4830]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001755 .id = "Live",
1756 .emu10k1_chip = 1,
1757 .ac97_chip = 1,
1758 .sblive51 = 1} ,
1759 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80231102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001760 .driver = "EMU10K1", .name = "SB PCI512 [CT4790]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001761 .id = "Live",
1762 .emu10k1_chip = 1,
1763 .ac97_chip = 1,
1764 .sblive51 = 1} ,
1765 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x80221102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001766 .driver = "EMU10K1", .name = "SB Live! Value [CT4780]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001767 .id = "Live",
1768 .emu10k1_chip = 1,
1769 .ac97_chip = 1,
1770 .sblive51 = 1} ,
1771 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x40011102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001772 .driver = "EMU10K1", .name = "E-mu APS [PC545]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001773 .id = "APS",
1774 .emu10k1_chip = 1,
1775 .ecard = 1} ,
1776 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x00211102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001777 .driver = "EMU10K1", .name = "SB Live! [CT4620]",
James Courtier-Duttona6f61922005-07-03 12:32:40 +02001778 .id = "Live",
1779 .emu10k1_chip = 1,
1780 .ac97_chip = 1,
1781 .sblive51 = 1} ,
1782 {.vendor = 0x1102, .device = 0x0002, .subsystem = 0x00201102,
Vedran Miletic18c71092008-10-21 17:42:54 +02001783 .driver = "EMU10K1", .name = "SB Live! Value [CT4670]",
James Courtier-Dutton2b6b22f2005-06-18 13:50:22 +02001784 .id = "Live",
1785 .emu10k1_chip = 1,
1786 .ac97_chip = 1,
1787 .sblive51 = 1} ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 {.vendor = 0x1102, .device = 0x0002,
Vedran Miletic18c71092008-10-21 17:42:54 +02001789 .driver = "EMU10K1", .name = "SB Live! [Unknown]",
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001790 .id = "Live",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 .emu10k1_chip = 1,
Lee Revell2b637da2005-03-30 13:51:18 +02001792 .ac97_chip = 1,
1793 .sblive51 = 1} ,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 { } /* terminator */
1795};
1796
Bill Pembertone23e7a12012-12-06 12:35:10 -05001797int snd_emu10k1_create(struct snd_card *card,
Vedran Miletic67679b12008-10-23 18:51:00 +02001798 struct pci_dev *pci,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 unsigned short extin_mask,
1800 unsigned short extout_mask,
1801 long max_cache_bytes,
1802 int enable_ir,
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +02001803 uint subsystem,
Vedran Miletic67679b12008-10-23 18:51:00 +02001804 struct snd_emu10k1 **remu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Takashi Iwaieb4698f2005-11-17 14:50:13 +01001806 struct snd_emu10k1 *emu;
Takashi Iwai09668b42005-11-17 16:14:10 +01001807 int idx, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 int is_audigy;
Takashi Iwai09668b42005-11-17 16:14:10 +01001809 unsigned int silent_page;
Takashi Iwaieb4698f2005-11-17 14:50:13 +01001810 const struct snd_emu_chip_details *c;
1811 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 .dev_free = snd_emu10k1_dev_free,
1813 };
Vedran Miletic67679b12008-10-23 18:51:00 +02001814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 *remu = NULL;
1816
1817 /* enable PCI device */
Vedran Miletic67679b12008-10-23 18:51:00 +02001818 err = pci_enable_device(pci);
1819 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 return err;
1821
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001822 emu = kzalloc(sizeof(*emu), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 if (emu == NULL) {
1824 pci_disable_device(pci);
1825 return -ENOMEM;
1826 }
1827 emu->card = card;
1828 spin_lock_init(&emu->reg_lock);
1829 spin_lock_init(&emu->emu_lock);
James Courtier-Duttonc94fa4c2007-11-10 17:55:14 +00001830 spin_lock_init(&emu->spi_lock);
1831 spin_lock_init(&emu->i2c_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 spin_lock_init(&emu->voice_lock);
1833 spin_lock_init(&emu->synth_lock);
1834 spin_lock_init(&emu->memblk_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01001835 mutex_init(&emu->fx8010.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 INIT_LIST_HEAD(&emu->mapped_link_head);
1837 INIT_LIST_HEAD(&emu->mapped_order_link_head);
1838 emu->pci = pci;
1839 emu->irq = -1;
1840 emu->synth = NULL;
1841 emu->get_synth_voice = NULL;
1842 /* read revision & serial */
Auke Kok44c10132007-06-08 15:46:36 -07001843 emu->revision = pci->revision;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 pci_read_config_dword(pci, PCI_SUBSYSTEM_VENDOR_ID, &emu->serial);
1845 pci_read_config_word(pci, PCI_SUBSYSTEM_ID, &emu->model);
Takashi Iwai6f002b02014-02-25 17:02:09 +01001846 dev_dbg(card->dev,
1847 "vendor = 0x%x, device = 0x%x, subsystem_vendor_id = 0x%x, subsystem_id = 0x%x\n",
1848 pci->vendor, pci->device, emu->serial, emu->model);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
1850 for (c = emu_chip_details; c->vendor; c++) {
1851 if (c->vendor == pci->vendor && c->device == pci->device) {
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +02001852 if (subsystem) {
Vedran Miletic67679b12008-10-23 18:51:00 +02001853 if (c->subsystem && (c->subsystem == subsystem))
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +02001854 break;
Vedran Miletic67679b12008-10-23 18:51:00 +02001855 else
1856 continue;
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +02001857 } else {
Vedran Miletic67679b12008-10-23 18:51:00 +02001858 if (c->subsystem && (c->subsystem != emu->serial))
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +02001859 continue;
1860 if (c->revision && c->revision != emu->revision)
1861 continue;
1862 }
Takashi Iwaibdaed502005-04-07 15:48:42 +02001863 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 }
1865 }
1866 if (c->vendor == 0) {
Takashi Iwai6f002b02014-02-25 17:02:09 +01001867 dev_err(card->dev, "emu10k1: Card not recognised\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 kfree(emu);
1869 pci_disable_device(pci);
1870 return -ENOENT;
1871 }
1872 emu->card_capabilities = c;
James Courtier-Duttone66bc8b2005-07-06 22:21:51 +02001873 if (c->subsystem && !subsystem)
Takashi Iwai6f002b02014-02-25 17:02:09 +01001874 dev_dbg(card->dev, "Sound card name = %s\n", c->name);
Vedran Miletic67679b12008-10-23 18:51:00 +02001875 else if (subsystem)
Takashi Iwai6f002b02014-02-25 17:02:09 +01001876 dev_dbg(card->dev, "Sound card name = %s, "
Vedran Miletic67679b12008-10-23 18:51:00 +02001877 "vendor = 0x%x, device = 0x%x, subsystem = 0x%x. "
Thomas Weber88393162010-03-16 11:47:56 +01001878 "Forced to subsystem = 0x%x\n", c->name,
Vedran Miletic67679b12008-10-23 18:51:00 +02001879 pci->vendor, pci->device, emu->serial, c->subsystem);
1880 else
Takashi Iwai6f002b02014-02-25 17:02:09 +01001881 dev_dbg(card->dev, "Sound card name = %s, "
Vedran Miletic67679b12008-10-23 18:51:00 +02001882 "vendor = 0x%x, device = 0x%x, subsystem = 0x%x.\n",
1883 c->name, pci->vendor, pci->device,
1884 emu->serial);
1885
Takashi Iwai85a655d2005-03-30 14:40:25 +02001886 if (!*card->id && c->id) {
1887 int i, n = 0;
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001888 strlcpy(card->id, c->id, sizeof(card->id));
Takashi Iwai85a655d2005-03-30 14:40:25 +02001889 for (;;) {
1890 for (i = 0; i < snd_ecards_limit; i++) {
1891 if (snd_cards[i] && !strcmp(snd_cards[i]->id, card->id))
1892 break;
1893 }
1894 if (i >= snd_ecards_limit)
1895 break;
1896 n++;
1897 if (n >= SNDRV_CARDS)
1898 break;
1899 snprintf(card->id, sizeof(card->id), "%s_%d", c->id, n);
1900 }
1901 }
Takashi Iwaiaec72e02005-03-30 14:22:25 +02001902
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 is_audigy = emu->audigy = c->emu10k2_chip;
1904
1905 /* set the DMA transfer mask */
1906 emu->dma_mask = is_audigy ? AUDIGY_DMA_MASK : EMU10K1_DMA_MASK;
Quentin Lambert412b9792015-04-15 16:10:17 +02001907 if (dma_set_mask(&pci->dev, emu->dma_mask) < 0 ||
1908 dma_set_coherent_mask(&pci->dev, emu->dma_mask) < 0) {
Takashi Iwai6f002b02014-02-25 17:02:09 +01001909 dev_err(card->dev,
1910 "architecture does not support PCI busmaster DMA with mask 0x%lx\n",
1911 emu->dma_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 kfree(emu);
1913 pci_disable_device(pci);
1914 return -ENXIO;
1915 }
1916 if (is_audigy)
1917 emu->gpr_base = A_FXGPREGBASE;
1918 else
1919 emu->gpr_base = FXGPREGBASE;
1920
Vedran Miletic67679b12008-10-23 18:51:00 +02001921 err = pci_request_regions(pci, "EMU10K1");
1922 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 kfree(emu);
1924 pci_disable_device(pci);
1925 return err;
1926 }
1927 emu->port = pci_resource_start(pci, 0);
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 emu->max_cache_pages = max_cache_bytes >> PAGE_SHIFT;
1930 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
1931 32 * 1024, &emu->ptb_pages) < 0) {
Takashi Iwai09668b42005-11-17 16:14:10 +01001932 err = -ENOMEM;
1933 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935
Jesper Juhl36726d92007-08-28 15:21:33 +02001936 emu->page_ptr_table = vmalloc(emu->max_cache_pages * sizeof(void *));
1937 emu->page_addr_table = vmalloc(emu->max_cache_pages *
1938 sizeof(unsigned long));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 if (emu->page_ptr_table == NULL || emu->page_addr_table == NULL) {
Takashi Iwai09668b42005-11-17 16:14:10 +01001940 err = -ENOMEM;
1941 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 }
1943
1944 if (snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV, snd_dma_pci_data(pci),
1945 EMUPAGESIZE, &emu->silent_page) < 0) {
Takashi Iwai09668b42005-11-17 16:14:10 +01001946 err = -ENOMEM;
1947 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 }
1949 emu->memhdr = snd_util_memhdr_new(emu->max_cache_pages * PAGE_SIZE);
1950 if (emu->memhdr == NULL) {
Takashi Iwai09668b42005-11-17 16:14:10 +01001951 err = -ENOMEM;
1952 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 }
Takashi Iwaieb4698f2005-11-17 14:50:13 +01001954 emu->memhdr->block_extra_size = sizeof(struct snd_emu10k1_memblk) -
1955 sizeof(struct snd_util_memblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957 pci_set_master(pci);
1958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 emu->fx8010.fxbus_mask = 0x303f;
1960 if (extin_mask == 0)
1961 extin_mask = 0x3fcf;
1962 if (extout_mask == 0)
1963 extout_mask = 0x7fff;
1964 emu->fx8010.extin_mask = extin_mask;
1965 emu->fx8010.extout_mask = extout_mask;
Takashi Iwai09668b42005-11-17 16:14:10 +01001966 emu->enable_ir = enable_ir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
James Courtier-Duttond9e8a552007-07-14 10:24:49 +01001968 if (emu->card_capabilities->ca_cardbus_chip) {
Vedran Miletic67679b12008-10-23 18:51:00 +02001969 err = snd_emu10k1_cardbus_init(emu);
1970 if (err < 0)
James Courtier-Duttond9e8a552007-07-14 10:24:49 +01001971 goto error;
1972 }
Lee Revell2b637da2005-03-30 13:51:18 +02001973 if (emu->card_capabilities->ecard) {
Vedran Miletic67679b12008-10-23 18:51:00 +02001974 err = snd_emu10k1_ecard_init(emu);
1975 if (err < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +01001976 goto error;
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00001977 } else if (emu->card_capabilities->emu_model) {
Vedran Miletic67679b12008-10-23 18:51:00 +02001978 err = snd_emu10k1_emu1010_init(emu);
1979 if (err < 0) {
1980 snd_emu10k1_free(emu);
1981 return err;
1982 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 } else {
1984 /* 5.1: Enable the additional AC97 Slots. If the emu10k1 version
1985 does not support this, it shouldn't do any harm */
Vedran Miletic67679b12008-10-23 18:51:00 +02001986 snd_emu10k1_ptr_write(emu, AC97SLOT, 0,
1987 AC97SLOT_CNTR|AC97SLOT_LFE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989
Takashi Iwai09668b42005-11-17 16:14:10 +01001990 /* initialize TRAM setup */
1991 emu->fx8010.itram_size = (16 * 1024)/2;
1992 emu->fx8010.etram_pages.area = NULL;
1993 emu->fx8010.etram_pages.bytes = 0;
1994
Jaroslav Franek868e15db2008-06-06 11:04:19 +02001995 /* irq handler must be registered after I/O ports are activated */
1996 if (request_irq(pci->irq, snd_emu10k1_interrupt, IRQF_SHARED,
Takashi Iwai934c2b62011-06-10 16:36:37 +02001997 KBUILD_MODNAME, emu)) {
Jaroslav Franek868e15db2008-06-06 11:04:19 +02001998 err = -EBUSY;
1999 goto error;
2000 }
2001 emu->irq = pci->irq;
2002
Takashi Iwai09668b42005-11-17 16:14:10 +01002003 /*
2004 * Init to 0x02109204 :
2005 * Clock accuracy = 0 (1000ppm)
2006 * Sample Rate = 2 (48kHz)
2007 * Audio Channel = 1 (Left of 2)
2008 * Source Number = 0 (Unspecified)
2009 * Generation Status = 1 (Original for Cat Code 12)
2010 * Cat Code = 12 (Digital Signal Mixer)
2011 * Mode = 0 (Mode 0)
2012 * Emphasis = 0 (None)
2013 * CP = 1 (Copyright unasserted)
2014 * AN = 0 (Audio data)
2015 * P = 0 (Consumer)
2016 */
2017 emu->spdif_bits[0] = emu->spdif_bits[1] =
2018 emu->spdif_bits[2] = SPCS_CLKACCY_1000PPM | SPCS_SAMPLERATE_48 |
2019 SPCS_CHANNELNUM_LEFT | SPCS_SOURCENUM_UNSPEC |
2020 SPCS_GENERATIONSTATUS | 0x00001200 |
2021 0x00000000 | SPCS_EMPHASIS_NONE | SPCS_COPYRIGHT;
2022
2023 emu->reserved_page = (struct snd_emu10k1_memblk *)
2024 snd_emu10k1_synth_alloc(emu, 4096);
2025 if (emu->reserved_page)
2026 emu->reserved_page->map_locked = 1;
Vedran Miletic67679b12008-10-23 18:51:00 +02002027
Takashi Iwai09668b42005-11-17 16:14:10 +01002028 /* Clear silent pages and set up pointers */
2029 memset(emu->silent_page.area, 0, PAGE_SIZE);
2030 silent_page = emu->silent_page.addr << 1;
2031 for (idx = 0; idx < MAXPAGES; idx++)
2032 ((u32 *)emu->ptb_pages.area)[idx] = cpu_to_le32(silent_page | idx);
2033
2034 /* set up voice indices */
2035 for (idx = 0; idx < NUM_G; idx++) {
2036 emu->voices[idx].emu = emu;
2037 emu->voices[idx].number = idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 }
2039
Vedran Miletic67679b12008-10-23 18:51:00 +02002040 err = snd_emu10k1_init(emu, enable_ir, 0);
2041 if (err < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +01002042 goto error;
Takashi Iwaic7561cd2012-08-14 18:12:04 +02002043#ifdef CONFIG_PM_SLEEP
Vedran Miletic67679b12008-10-23 18:51:00 +02002044 err = alloc_pm_buffer(emu);
2045 if (err < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +01002046 goto error;
2047#endif
2048
2049 /* Initialize the effect engine */
Vedran Miletic67679b12008-10-23 18:51:00 +02002050 err = snd_emu10k1_init_efx(emu);
2051 if (err < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +01002052 goto error;
2053 snd_emu10k1_audio_enable(emu);
2054
Vedran Miletic67679b12008-10-23 18:51:00 +02002055 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, emu, &ops);
2056 if (err < 0)
Takashi Iwai09668b42005-11-17 16:14:10 +01002057 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01002059#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 snd_emu10k1_proc_init(emu);
Takashi Iwaiadf1b3d2005-12-01 10:49:58 +01002061#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 *remu = emu;
2064 return 0;
Takashi Iwai09668b42005-11-17 16:14:10 +01002065
2066 error:
2067 snd_emu10k1_free(emu);
2068 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069}
2070
Takashi Iwaic7561cd2012-08-14 18:12:04 +02002071#ifdef CONFIG_PM_SLEEP
Takashi Iwai09668b42005-11-17 16:14:10 +01002072static unsigned char saved_regs[] = {
2073 CPF, PTRX, CVCF, VTFT, Z1, Z2, PSST, DSL, CCCA, CCR, CLP,
2074 FXRT, MAPA, MAPB, ENVVOL, ATKHLDV, DCYSUSV, LFOVAL1, ENVVAL,
2075 ATKHLDM, DCYSUSM, LFOVAL2, IP, IFATN, PEFE, FMMOD, TREMFRQ, FM2FRQ2,
2076 TEMPENV, ADCCR, FXWC, MICBA, ADCBA, FXBA,
2077 MICBS, ADCBS, FXBS, CDCS, GPSCS, SPCS0, SPCS1, SPCS2,
2078 SPBYPASS, AC97SLOT, CDSRCS, GPSRCS, ZVSRCS, MICIDX, ADCIDX, FXIDX,
2079 0xff /* end */
2080};
2081static unsigned char saved_regs_audigy[] = {
2082 A_ADCIDX, A_MICIDX, A_FXWC1, A_FXWC2, A_SAMPLE_RATE,
2083 A_FXRT2, A_SENDAMOUNTS, A_FXRT1,
2084 0xff /* end */
2085};
2086
Bill Pembertone23e7a12012-12-06 12:35:10 -05002087static int alloc_pm_buffer(struct snd_emu10k1 *emu)
Takashi Iwai09668b42005-11-17 16:14:10 +01002088{
2089 int size;
2090
2091 size = ARRAY_SIZE(saved_regs);
2092 if (emu->audigy)
2093 size += ARRAY_SIZE(saved_regs_audigy);
2094 emu->saved_ptr = vmalloc(4 * NUM_G * size);
Vedran Miletic67679b12008-10-23 18:51:00 +02002095 if (!emu->saved_ptr)
Takashi Iwai09668b42005-11-17 16:14:10 +01002096 return -ENOMEM;
2097 if (snd_emu10k1_efx_alloc_pm_buffer(emu) < 0)
2098 return -ENOMEM;
2099 if (emu->card_capabilities->ca0151_chip &&
2100 snd_p16v_alloc_pm_buffer(emu) < 0)
2101 return -ENOMEM;
2102 return 0;
2103}
2104
2105static void free_pm_buffer(struct snd_emu10k1 *emu)
2106{
2107 vfree(emu->saved_ptr);
2108 snd_emu10k1_efx_free_pm_buffer(emu);
2109 if (emu->card_capabilities->ca0151_chip)
2110 snd_p16v_free_pm_buffer(emu);
2111}
2112
2113void snd_emu10k1_suspend_regs(struct snd_emu10k1 *emu)
2114{
2115 int i;
2116 unsigned char *reg;
2117 unsigned int *val;
2118
2119 val = emu->saved_ptr;
2120 for (reg = saved_regs; *reg != 0xff; reg++)
2121 for (i = 0; i < NUM_G; i++, val++)
2122 *val = snd_emu10k1_ptr_read(emu, *reg, i);
2123 if (emu->audigy) {
2124 for (reg = saved_regs_audigy; *reg != 0xff; reg++)
2125 for (i = 0; i < NUM_G; i++, val++)
2126 *val = snd_emu10k1_ptr_read(emu, *reg, i);
2127 }
2128 if (emu->audigy)
2129 emu->saved_a_iocfg = inl(emu->port + A_IOCFG);
2130 emu->saved_hcfg = inl(emu->port + HCFG);
2131}
2132
2133void snd_emu10k1_resume_init(struct snd_emu10k1 *emu)
2134{
James Courtier-Duttond9e8a552007-07-14 10:24:49 +01002135 if (emu->card_capabilities->ca_cardbus_chip)
2136 snd_emu10k1_cardbus_init(emu);
Takashi Iwai09668b42005-11-17 16:14:10 +01002137 if (emu->card_capabilities->ecard)
2138 snd_emu10k1_ecard_init(emu);
James Courtier-Dutton190d2c42007-11-04 14:08:26 +00002139 else if (emu->card_capabilities->emu_model)
Vedran Miletic67679b12008-10-23 18:51:00 +02002140 snd_emu10k1_emu1010_init(emu);
Takashi Iwai09668b42005-11-17 16:14:10 +01002141 else
2142 snd_emu10k1_ptr_write(emu, AC97SLOT, 0, AC97SLOT_CNTR|AC97SLOT_LFE);
2143 snd_emu10k1_init(emu, emu->enable_ir, 1);
2144}
2145
2146void snd_emu10k1_resume_regs(struct snd_emu10k1 *emu)
2147{
2148 int i;
2149 unsigned char *reg;
2150 unsigned int *val;
2151
2152 snd_emu10k1_audio_enable(emu);
2153
2154 /* resore for spdif */
2155 if (emu->audigy)
Arnaud Patard4130d592006-10-04 18:21:05 +02002156 outl(emu->saved_a_iocfg, emu->port + A_IOCFG);
2157 outl(emu->saved_hcfg, emu->port + HCFG);
Takashi Iwai09668b42005-11-17 16:14:10 +01002158
2159 val = emu->saved_ptr;
2160 for (reg = saved_regs; *reg != 0xff; reg++)
2161 for (i = 0; i < NUM_G; i++, val++)
2162 snd_emu10k1_ptr_write(emu, *reg, i, *val);
2163 if (emu->audigy) {
2164 for (reg = saved_regs_audigy; *reg != 0xff; reg++)
2165 for (i = 0; i < NUM_G; i++, val++)
2166 snd_emu10k1_ptr_write(emu, *reg, i, *val);
2167 }
2168}
2169#endif