blob: ed2144eee38ac872d80e263953733639630169b2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA driver for ICEnsemble ICE1712 (Envy24)
3 *
Jaroslav Kyselaef2cd2c2008-02-06 20:04:49 +01004 * Lowlevel functions for M-Audio Delta 1010, 1010E, 44, 66, 66E, Dio2496,
5 * Audiophile, Digigram VX442
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02007 * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
23 */
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
26#include <linux/interrupt.h>
27#include <linux/init.h>
28#include <linux/slab.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010029#include <linux/mutex.h>
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
32#include <sound/cs8427.h>
33#include <sound/asoundef.h>
34
35#include "ice1712.h"
36#include "delta.h"
37
38#define SND_CS8403
39#include <sound/cs8403.h>
40
41
42/*
43 * CS8427 via SPI mode (for Audiophile), emulated I2C
44 */
45
46/* send 8 bits */
Takashi Iwai6ca308d2005-11-17 14:59:52 +010047static void ap_cs8427_write_byte(struct snd_ice1712 *ice, unsigned char data, unsigned char tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 int idx;
50
51 for (idx = 7; idx >= 0; idx--) {
52 tmp &= ~(ICE1712_DELTA_AP_DOUT|ICE1712_DELTA_AP_CCLK);
53 if (data & (1 << idx))
54 tmp |= ICE1712_DELTA_AP_DOUT;
55 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
56 udelay(5);
57 tmp |= ICE1712_DELTA_AP_CCLK;
58 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
59 udelay(5);
60 }
61}
62
63/* read 8 bits */
Takashi Iwai6ca308d2005-11-17 14:59:52 +010064static unsigned char ap_cs8427_read_byte(struct snd_ice1712 *ice, unsigned char tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
66 unsigned char data = 0;
67 int idx;
68
69 for (idx = 7; idx >= 0; idx--) {
70 tmp &= ~ICE1712_DELTA_AP_CCLK;
71 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
72 udelay(5);
73 if (snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA) & ICE1712_DELTA_AP_DIN)
74 data |= 1 << idx;
75 tmp |= ICE1712_DELTA_AP_CCLK;
76 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
77 udelay(5);
78 }
79 return data;
80}
81
82/* assert chip select */
Takashi Iwai6ca308d2005-11-17 14:59:52 +010083static unsigned char ap_cs8427_codec_select(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084{
85 unsigned char tmp;
86 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);
87 switch (ice->eeprom.subvendor) {
Jaroslav Kyselaa60567d2008-02-06 15:48:06 +010088 case ICE1712_SUBDEVICE_DELTA1010E:
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 case ICE1712_SUBDEVICE_DELTA1010LT:
90 tmp &= ~ICE1712_DELTA_1010LT_CS;
91 tmp |= ICE1712_DELTA_1010LT_CCLK | ICE1712_DELTA_1010LT_CS_CS8427;
92 break;
93 case ICE1712_SUBDEVICE_AUDIOPHILE:
94 case ICE1712_SUBDEVICE_DELTA410:
95 tmp |= ICE1712_DELTA_AP_CCLK | ICE1712_DELTA_AP_CS_CODEC;
96 tmp &= ~ICE1712_DELTA_AP_CS_DIGITAL;
97 break;
Brian Bloniarz93430092010-12-08 12:45:20 -080098 case ICE1712_SUBDEVICE_DELTA66E:
99 tmp |= ICE1712_DELTA_66E_CCLK | ICE1712_DELTA_66E_CS_CHIP_A |
100 ICE1712_DELTA_66E_CS_CHIP_B;
101 tmp &= ~ICE1712_DELTA_66E_CS_CS8427;
102 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 case ICE1712_SUBDEVICE_VX442:
104 tmp |= ICE1712_VX442_CCLK | ICE1712_VX442_CODEC_CHIP_A | ICE1712_VX442_CODEC_CHIP_B;
105 tmp &= ~ICE1712_VX442_CS_DIGITAL;
106 break;
107 }
108 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
109 udelay(5);
110 return tmp;
111}
112
113/* deassert chip select */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100114static void ap_cs8427_codec_deassert(struct snd_ice1712 *ice, unsigned char tmp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 switch (ice->eeprom.subvendor) {
Jaroslav Kyselaa60567d2008-02-06 15:48:06 +0100117 case ICE1712_SUBDEVICE_DELTA1010E:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 case ICE1712_SUBDEVICE_DELTA1010LT:
119 tmp &= ~ICE1712_DELTA_1010LT_CS;
120 tmp |= ICE1712_DELTA_1010LT_CS_NONE;
121 break;
122 case ICE1712_SUBDEVICE_AUDIOPHILE:
123 case ICE1712_SUBDEVICE_DELTA410:
124 tmp |= ICE1712_DELTA_AP_CS_DIGITAL;
125 break;
Brian Bloniarz93430092010-12-08 12:45:20 -0800126 case ICE1712_SUBDEVICE_DELTA66E:
127 tmp |= ICE1712_DELTA_66E_CS_CS8427;
128 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 case ICE1712_SUBDEVICE_VX442:
130 tmp |= ICE1712_VX442_CS_DIGITAL;
131 break;
132 }
133 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
134}
135
136/* sequential write */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100137static int ap_cs8427_sendbytes(struct snd_i2c_device *device, unsigned char *bytes, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100139 struct snd_ice1712 *ice = device->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 int res = count;
141 unsigned char tmp;
142
Ingo Molnar62932df2006-01-16 16:34:20 +0100143 mutex_lock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 tmp = ap_cs8427_codec_select(ice);
145 ap_cs8427_write_byte(ice, (device->addr << 1) | 0, tmp); /* address + write mode */
146 while (count-- > 0)
147 ap_cs8427_write_byte(ice, *bytes++, tmp);
148 ap_cs8427_codec_deassert(ice, tmp);
Ingo Molnar62932df2006-01-16 16:34:20 +0100149 mutex_unlock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return res;
151}
152
153/* sequential read */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100154static int ap_cs8427_readbytes(struct snd_i2c_device *device, unsigned char *bytes, int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100156 struct snd_ice1712 *ice = device->bus->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 int res = count;
158 unsigned char tmp;
159
Ingo Molnar62932df2006-01-16 16:34:20 +0100160 mutex_lock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 tmp = ap_cs8427_codec_select(ice);
162 ap_cs8427_write_byte(ice, (device->addr << 1) | 1, tmp); /* address + read mode */
163 while (count-- > 0)
164 *bytes++ = ap_cs8427_read_byte(ice, tmp);
165 ap_cs8427_codec_deassert(ice, tmp);
Ingo Molnar62932df2006-01-16 16:34:20 +0100166 mutex_unlock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 return res;
168}
169
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100170static int ap_cs8427_probeaddr(struct snd_i2c_bus *bus, unsigned short addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 if (addr == 0x10)
173 return 1;
174 return -ENOENT;
175}
176
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100177static struct snd_i2c_ops ap_cs8427_i2c_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 .sendbytes = ap_cs8427_sendbytes,
179 .readbytes = ap_cs8427_readbytes,
180 .probeaddr = ap_cs8427_probeaddr,
181};
182
183/*
184 */
185
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100186static void snd_ice1712_delta_cs8403_spdif_write(struct snd_ice1712 *ice, unsigned char bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 unsigned char tmp, mask1, mask2;
189 int idx;
190 /* send byte to transmitter */
191 mask1 = ICE1712_DELTA_SPDIF_OUT_STAT_CLOCK;
192 mask2 = ICE1712_DELTA_SPDIF_OUT_STAT_DATA;
Ingo Molnar62932df2006-01-16 16:34:20 +0100193 mutex_lock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);
195 for (idx = 7; idx >= 0; idx--) {
196 tmp &= ~(mask1 | mask2);
197 if (bits & (1 << idx))
198 tmp |= mask2;
199 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
200 udelay(100);
201 tmp |= mask1;
202 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
203 udelay(100);
204 }
205 tmp &= ~mask1;
206 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
Ingo Molnar62932df2006-01-16 16:34:20 +0100207 mutex_unlock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100211static void delta_spdif_default_get(struct snd_ice1712 *ice, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
213 snd_cs8403_decode_spdif_bits(&ucontrol->value.iec958, ice->spdif.cs8403_bits);
214}
215
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100216static int delta_spdif_default_put(struct snd_ice1712 *ice, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 unsigned int val;
219 int change;
220
221 val = snd_cs8403_encode_spdif_bits(&ucontrol->value.iec958);
222 spin_lock_irq(&ice->reg_lock);
223 change = ice->spdif.cs8403_bits != val;
224 ice->spdif.cs8403_bits = val;
225 if (change && ice->playback_pro_substream == NULL) {
226 spin_unlock_irq(&ice->reg_lock);
227 snd_ice1712_delta_cs8403_spdif_write(ice, val);
228 } else {
229 spin_unlock_irq(&ice->reg_lock);
230 }
231 return change;
232}
233
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100234static void delta_spdif_stream_get(struct snd_ice1712 *ice, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 snd_cs8403_decode_spdif_bits(&ucontrol->value.iec958, ice->spdif.cs8403_stream_bits);
237}
238
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100239static int delta_spdif_stream_put(struct snd_ice1712 *ice, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 unsigned int val;
242 int change;
243
244 val = snd_cs8403_encode_spdif_bits(&ucontrol->value.iec958);
245 spin_lock_irq(&ice->reg_lock);
246 change = ice->spdif.cs8403_stream_bits != val;
247 ice->spdif.cs8403_stream_bits = val;
248 if (change && ice->playback_pro_substream != NULL) {
249 spin_unlock_irq(&ice->reg_lock);
250 snd_ice1712_delta_cs8403_spdif_write(ice, val);
251 } else {
252 spin_unlock_irq(&ice->reg_lock);
253 }
254 return change;
255}
256
257
258/*
259 * AK4524 on Delta 44 and 66 to choose the chip mask
260 */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100261static void delta_ak4524_lock(struct snd_akm4xxx *ak, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
263 struct snd_ak4xxx_private *priv = (void *)ak->private_value[0];
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100264 struct snd_ice1712 *ice = ak->private_data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 snd_ice1712_save_gpio_status(ice);
267 priv->cs_mask =
268 priv->cs_addr = chip == 0 ? ICE1712_DELTA_CODEC_CHIP_A :
269 ICE1712_DELTA_CODEC_CHIP_B;
270}
271
272/*
273 * AK4524 on Delta1010LT to choose the chip address
274 */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100275static void delta1010lt_ak4524_lock(struct snd_akm4xxx *ak, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct snd_ak4xxx_private *priv = (void *)ak->private_value[0];
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100278 struct snd_ice1712 *ice = ak->private_data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 snd_ice1712_save_gpio_status(ice);
281 priv->cs_mask = ICE1712_DELTA_1010LT_CS;
282 priv->cs_addr = chip << 4;
283}
284
285/*
Brian Bloniarz93430092010-12-08 12:45:20 -0800286 * AK4524 on Delta66 rev E to choose the chip address
287 */
288static void delta66e_ak4524_lock(struct snd_akm4xxx *ak, int chip)
289{
290 struct snd_ak4xxx_private *priv = (void *)ak->private_value[0];
291 struct snd_ice1712 *ice = ak->private_data[0];
292
293 snd_ice1712_save_gpio_status(ice);
294 priv->cs_mask =
295 priv->cs_addr = chip == 0 ? ICE1712_DELTA_66E_CS_CHIP_A :
296 ICE1712_DELTA_66E_CS_CHIP_B;
297}
298
299/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * AK4528 on VX442 to choose the chip mask
301 */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100302static void vx442_ak4524_lock(struct snd_akm4xxx *ak, int chip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct snd_ak4xxx_private *priv = (void *)ak->private_value[0];
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100305 struct snd_ice1712 *ice = ak->private_data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 snd_ice1712_save_gpio_status(ice);
308 priv->cs_mask =
309 priv->cs_addr = chip == 0 ? ICE1712_VX442_CODEC_CHIP_A :
310 ICE1712_VX442_CODEC_CHIP_B;
311}
312
313/*
314 * change the DFS bit according rate for Delta1010
315 */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100316static void delta_1010_set_rate_val(struct snd_ice1712 *ice, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
318 unsigned char tmp, tmp2;
319
320 if (rate == 0) /* no hint - S/PDIF input is master, simply return */
321 return;
322
Ingo Molnar62932df2006-01-16 16:34:20 +0100323 mutex_lock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);
325 tmp2 = tmp & ~ICE1712_DELTA_DFS;
326 if (rate > 48000)
327 tmp2 |= ICE1712_DELTA_DFS;
328 if (tmp != tmp2)
329 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp2);
Ingo Molnar62932df2006-01-16 16:34:20 +0100330 mutex_unlock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/*
334 * change the rate of AK4524 on Delta 44/66, AP, 1010LT
335 */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100336static void delta_ak4524_set_rate_val(struct snd_akm4xxx *ak, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 unsigned char tmp, tmp2;
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100339 struct snd_ice1712 *ice = ak->private_data[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 if (rate == 0) /* no hint - S/PDIF input is master, simply return */
342 return;
343
344 /* check before reset ak4524 to avoid unnecessary clicks */
Ingo Molnar62932df2006-01-16 16:34:20 +0100345 mutex_lock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);
Ingo Molnar62932df2006-01-16 16:34:20 +0100347 mutex_unlock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 tmp2 = tmp & ~ICE1712_DELTA_DFS;
349 if (rate > 48000)
350 tmp2 |= ICE1712_DELTA_DFS;
351 if (tmp == tmp2)
352 return;
353
354 /* do it again */
355 snd_akm4xxx_reset(ak, 1);
Ingo Molnar62932df2006-01-16 16:34:20 +0100356 mutex_lock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA) & ~ICE1712_DELTA_DFS;
358 if (rate > 48000)
359 tmp |= ICE1712_DELTA_DFS;
360 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
Ingo Molnar62932df2006-01-16 16:34:20 +0100361 mutex_unlock(&ice->gpio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 snd_akm4xxx_reset(ak, 0);
363}
364
365/*
366 * change the rate of AK4524 on VX442
367 */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100368static void vx442_ak4524_set_rate_val(struct snd_akm4xxx *ak, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 unsigned char val;
371
372 val = (rate > 48000) ? 0x65 : 0x60;
373 if (snd_akm4xxx_get(ak, 0, 0x02) != val ||
374 snd_akm4xxx_get(ak, 1, 0x02) != val) {
375 snd_akm4xxx_reset(ak, 1);
376 snd_akm4xxx_write(ak, 0, 0x02, val);
377 snd_akm4xxx_write(ak, 1, 0x02, val);
378 snd_akm4xxx_reset(ak, 0);
379 }
380}
381
382
383/*
384 * SPDIF ops for Delta 1010, Dio, 66
385 */
386
387/* open callback */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100388static void delta_open_spdif(struct snd_ice1712 *ice, struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 ice->spdif.cs8403_stream_bits = ice->spdif.cs8403_bits;
391}
392
393/* set up */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100394static void delta_setup_spdif(struct snd_ice1712 *ice, int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 unsigned long flags;
397 unsigned int tmp;
398 int change;
399
400 spin_lock_irqsave(&ice->reg_lock, flags);
401 tmp = ice->spdif.cs8403_stream_bits;
402 if (tmp & 0x01) /* consumer */
403 tmp &= (tmp & 0x01) ? ~0x06 : ~0x18;
404 switch (rate) {
405 case 32000: tmp |= (tmp & 0x01) ? 0x04 : 0x00; break;
406 case 44100: tmp |= (tmp & 0x01) ? 0x00 : 0x10; break;
407 case 48000: tmp |= (tmp & 0x01) ? 0x02 : 0x08; break;
408 default: tmp |= (tmp & 0x01) ? 0x00 : 0x18; break;
409 }
410 change = ice->spdif.cs8403_stream_bits != tmp;
411 ice->spdif.cs8403_stream_bits = tmp;
412 spin_unlock_irqrestore(&ice->reg_lock, flags);
413 if (change)
414 snd_ctl_notify(ice->card, SNDRV_CTL_EVENT_MASK_VALUE, &ice->spdif.stream_ctl->id);
415 snd_ice1712_delta_cs8403_spdif_write(ice, tmp);
416}
417
Takashi Iwaia5ce8892007-07-23 15:42:26 +0200418#define snd_ice1712_delta1010lt_wordclock_status_info \
419 snd_ctl_boolean_mono_info
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100420
Adrian Bunkecefb192006-03-14 11:16:26 +0100421static int snd_ice1712_delta1010lt_wordclock_status_get(struct snd_kcontrol *kcontrol,
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100422 struct snd_ctl_elem_value *ucontrol)
423{
Vedran Mileticcc67b7f2008-09-07 12:00:02 +0200424 char reg = 0x10; /* CS8427 receiver error register */
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100425 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
426
427 if (snd_i2c_sendbytes(ice->cs8427, &reg, 1) != 1)
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100428 dev_err(ice->card->dev,
429 "unable to send register 0x%x byte to CS8427\n", reg);
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100430 snd_i2c_readbytes(ice->cs8427, &reg, 1);
Takashi Iwai1005f662007-11-27 15:27:17 +0100431 ucontrol->value.integer.value[0] = (reg & CS8427_UNLOCK) ? 1 : 0;
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100432 return 0;
433}
434
Bill Pembertone23e7a12012-12-06 12:35:10 -0500435static struct snd_kcontrol_new snd_ice1712_delta1010lt_wordclock_status =
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100436{
437 .access = (SNDRV_CTL_ELEM_ACCESS_READ),
438 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
439 .name = "Word Clock Status",
440 .info = snd_ice1712_delta1010lt_wordclock_status_info,
441 .get = snd_ice1712_delta1010lt_wordclock_status_get,
442};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444/*
445 * initialize the chips on M-Audio cards
446 */
447
Bill Pembertone23e7a12012-12-06 12:35:10 -0500448static struct snd_akm4xxx akm_audiophile = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 .type = SND_AK4528,
450 .num_adcs = 2,
451 .num_dacs = 2,
452 .ops = {
453 .set_rate_val = delta_ak4524_set_rate_val
454 }
455};
456
Bill Pembertone23e7a12012-12-06 12:35:10 -0500457static struct snd_ak4xxx_private akm_audiophile_priv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 .caddr = 2,
459 .cif = 0,
460 .data_mask = ICE1712_DELTA_AP_DOUT,
461 .clk_mask = ICE1712_DELTA_AP_CCLK,
462 .cs_mask = ICE1712_DELTA_AP_CS_CODEC,
463 .cs_addr = ICE1712_DELTA_AP_CS_CODEC,
464 .cs_none = 0,
465 .add_flags = ICE1712_DELTA_AP_CS_DIGITAL,
466 .mask_flags = 0,
467};
468
Bill Pembertone23e7a12012-12-06 12:35:10 -0500469static struct snd_akm4xxx akm_delta410 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 .type = SND_AK4529,
471 .num_adcs = 2,
472 .num_dacs = 8,
473 .ops = {
474 .set_rate_val = delta_ak4524_set_rate_val
475 }
476};
477
Bill Pembertone23e7a12012-12-06 12:35:10 -0500478static struct snd_ak4xxx_private akm_delta410_priv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 .caddr = 0,
480 .cif = 0,
481 .data_mask = ICE1712_DELTA_AP_DOUT,
482 .clk_mask = ICE1712_DELTA_AP_CCLK,
483 .cs_mask = ICE1712_DELTA_AP_CS_CODEC,
484 .cs_addr = ICE1712_DELTA_AP_CS_CODEC,
485 .cs_none = 0,
486 .add_flags = ICE1712_DELTA_AP_CS_DIGITAL,
487 .mask_flags = 0,
488};
489
Bill Pembertone23e7a12012-12-06 12:35:10 -0500490static struct snd_akm4xxx akm_delta1010lt = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 .type = SND_AK4524,
492 .num_adcs = 8,
493 .num_dacs = 8,
494 .ops = {
495 .lock = delta1010lt_ak4524_lock,
496 .set_rate_val = delta_ak4524_set_rate_val
497 }
498};
499
Bill Pembertone23e7a12012-12-06 12:35:10 -0500500static struct snd_ak4xxx_private akm_delta1010lt_priv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 .caddr = 2,
502 .cif = 0, /* the default level of the CIF pin from AK4524 */
503 .data_mask = ICE1712_DELTA_1010LT_DOUT,
504 .clk_mask = ICE1712_DELTA_1010LT_CCLK,
505 .cs_mask = 0,
506 .cs_addr = 0, /* set later */
507 .cs_none = ICE1712_DELTA_1010LT_CS_NONE,
508 .add_flags = 0,
509 .mask_flags = 0,
510};
511
Bill Pembertone23e7a12012-12-06 12:35:10 -0500512static struct snd_akm4xxx akm_delta66e = {
Brian Bloniarz93430092010-12-08 12:45:20 -0800513 .type = SND_AK4524,
514 .num_adcs = 4,
515 .num_dacs = 4,
516 .ops = {
517 .lock = delta66e_ak4524_lock,
518 .set_rate_val = delta_ak4524_set_rate_val
519 }
520};
521
Bill Pembertone23e7a12012-12-06 12:35:10 -0500522static struct snd_ak4xxx_private akm_delta66e_priv = {
Brian Bloniarz93430092010-12-08 12:45:20 -0800523 .caddr = 2,
524 .cif = 0, /* the default level of the CIF pin from AK4524 */
525 .data_mask = ICE1712_DELTA_66E_DOUT,
526 .clk_mask = ICE1712_DELTA_66E_CCLK,
527 .cs_mask = 0,
528 .cs_addr = 0, /* set later */
529 .cs_none = 0,
530 .add_flags = 0,
531 .mask_flags = 0,
532};
533
534
Bill Pembertone23e7a12012-12-06 12:35:10 -0500535static struct snd_akm4xxx akm_delta44 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 .type = SND_AK4524,
537 .num_adcs = 4,
538 .num_dacs = 4,
539 .ops = {
540 .lock = delta_ak4524_lock,
541 .set_rate_val = delta_ak4524_set_rate_val
542 }
543};
544
Bill Pembertone23e7a12012-12-06 12:35:10 -0500545static struct snd_ak4xxx_private akm_delta44_priv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 .caddr = 2,
547 .cif = 0, /* the default level of the CIF pin from AK4524 */
548 .data_mask = ICE1712_DELTA_CODEC_SERIAL_DATA,
549 .clk_mask = ICE1712_DELTA_CODEC_SERIAL_CLOCK,
550 .cs_mask = 0,
551 .cs_addr = 0, /* set later */
552 .cs_none = 0,
553 .add_flags = 0,
554 .mask_flags = 0,
555};
556
Bill Pembertone23e7a12012-12-06 12:35:10 -0500557static struct snd_akm4xxx akm_vx442 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 .type = SND_AK4524,
559 .num_adcs = 4,
560 .num_dacs = 4,
561 .ops = {
562 .lock = vx442_ak4524_lock,
563 .set_rate_val = vx442_ak4524_set_rate_val
564 }
565};
566
Bill Pembertone23e7a12012-12-06 12:35:10 -0500567static struct snd_ak4xxx_private akm_vx442_priv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 .caddr = 2,
569 .cif = 0,
570 .data_mask = ICE1712_VX442_DOUT,
571 .clk_mask = ICE1712_VX442_CCLK,
572 .cs_mask = 0,
573 .cs_addr = 0, /* set later */
574 .cs_none = 0,
575 .add_flags = 0,
576 .mask_flags = 0,
577};
578
Ondrej Zary8c1d8432014-03-30 23:37:31 +0200579#ifdef CONFIG_PM_SLEEP
580static int snd_ice1712_delta_resume(struct snd_ice1712 *ice)
581{
582 unsigned char akm_backup[AK4XXX_IMAGE_SIZE];
583 /* init codec and restore registers */
584 if (ice->akm_codecs) {
585 memcpy(akm_backup, ice->akm->images, sizeof(akm_backup));
586 snd_akm4xxx_init(ice->akm);
587 memcpy(ice->akm->images, akm_backup, sizeof(akm_backup));
588 snd_akm4xxx_reset(ice->akm, 0);
589 }
590
591 return 0;
592}
593
594static int snd_ice1712_delta_suspend(struct snd_ice1712 *ice)
595{
596 if (ice->akm_codecs) /* reset & mute codec */
597 snd_akm4xxx_reset(ice->akm, 1);
598
599 return 0;
600}
601#endif
602
Bill Pembertone23e7a12012-12-06 12:35:10 -0500603static int snd_ice1712_delta_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
605 int err;
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100606 struct snd_akm4xxx *ak;
Brian Bloniarzb8b1a4c2011-01-17 23:20:03 -0800607 unsigned char tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Jaroslav Kyselaef2cd2c2008-02-06 20:04:49 +0100609 if (ice->eeprom.subvendor == ICE1712_SUBDEVICE_DELTA1010 &&
610 ice->eeprom.gpiodir == 0x7b)
Jaroslav Kyselaa60567d2008-02-06 15:48:06 +0100611 ice->eeprom.subvendor = ICE1712_SUBDEVICE_DELTA1010E;
612
Jaroslav Kyselaef2cd2c2008-02-06 20:04:49 +0100613 if (ice->eeprom.subvendor == ICE1712_SUBDEVICE_DELTA66 &&
614 ice->eeprom.gpiodir == 0xfb)
615 ice->eeprom.subvendor = ICE1712_SUBDEVICE_DELTA66E;
616
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 /* determine I2C, DACs and ADCs */
618 switch (ice->eeprom.subvendor) {
619 case ICE1712_SUBDEVICE_AUDIOPHILE:
620 ice->num_total_dacs = 2;
621 ice->num_total_adcs = 2;
622 break;
623 case ICE1712_SUBDEVICE_DELTA410:
624 ice->num_total_dacs = 8;
625 ice->num_total_adcs = 2;
626 break;
627 case ICE1712_SUBDEVICE_DELTA44:
628 case ICE1712_SUBDEVICE_DELTA66:
629 ice->num_total_dacs = ice->omni ? 8 : 4;
630 ice->num_total_adcs = ice->omni ? 8 : 4;
631 break;
632 case ICE1712_SUBDEVICE_DELTA1010:
Jaroslav Kyselaa60567d2008-02-06 15:48:06 +0100633 case ICE1712_SUBDEVICE_DELTA1010E:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 case ICE1712_SUBDEVICE_DELTA1010LT:
635 case ICE1712_SUBDEVICE_MEDIASTATION:
Garnet MacPhee23b224d2010-08-21 14:37:34 -0600636 case ICE1712_SUBDEVICE_EDIROLDA2496:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 ice->num_total_dacs = 8;
638 ice->num_total_adcs = 8;
639 break;
640 case ICE1712_SUBDEVICE_DELTADIO2496:
641 ice->num_total_dacs = 4; /* two AK4324 codecs */
642 break;
643 case ICE1712_SUBDEVICE_VX442:
Masanari Iida02582e92012-08-22 19:11:26 +0900644 case ICE1712_SUBDEVICE_DELTA66E: /* omni not supported yet */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 ice->num_total_dacs = 4;
646 ice->num_total_adcs = 4;
647 break;
648 }
Ondrej Zary8c1d8432014-03-30 23:37:31 +0200649#ifdef CONFIG_PM_SLEEP
650 ice->pm_resume = snd_ice1712_delta_resume;
651 ice->pm_suspend = snd_ice1712_delta_suspend;
652 ice->pm_suspend_enabled = 1;
653#endif
Brian Bloniarzb8b1a4c2011-01-17 23:20:03 -0800654 /* initialize the SPI clock to high */
655 tmp = snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);
656 tmp |= ICE1712_DELTA_AP_CCLK;
657 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, tmp);
658 udelay(5);
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /* initialize spdif */
661 switch (ice->eeprom.subvendor) {
662 case ICE1712_SUBDEVICE_AUDIOPHILE:
663 case ICE1712_SUBDEVICE_DELTA410:
Jaroslav Kyselaa60567d2008-02-06 15:48:06 +0100664 case ICE1712_SUBDEVICE_DELTA1010E:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 case ICE1712_SUBDEVICE_DELTA1010LT:
666 case ICE1712_SUBDEVICE_VX442:
Jaroslav Kyselaef2cd2c2008-02-06 20:04:49 +0100667 case ICE1712_SUBDEVICE_DELTA66E:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if ((err = snd_i2c_bus_create(ice->card, "ICE1712 GPIO 1", NULL, &ice->i2c)) < 0) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100669 dev_err(ice->card->dev, "unable to create I2C bus\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 return err;
671 }
672 ice->i2c->private_data = ice;
673 ice->i2c->ops = &ap_cs8427_i2c_ops;
674 if ((err = snd_ice1712_init_cs8427(ice, CS8427_BASE_ADDR)) < 0)
675 return err;
676 break;
677 case ICE1712_SUBDEVICE_DELTA1010:
678 case ICE1712_SUBDEVICE_MEDIASTATION:
679 ice->gpio.set_pro_rate = delta_1010_set_rate_val;
680 break;
681 case ICE1712_SUBDEVICE_DELTADIO2496:
682 ice->gpio.set_pro_rate = delta_1010_set_rate_val;
683 /* fall thru */
684 case ICE1712_SUBDEVICE_DELTA66:
685 ice->spdif.ops.open = delta_open_spdif;
686 ice->spdif.ops.setup_rate = delta_setup_spdif;
687 ice->spdif.ops.default_get = delta_spdif_default_get;
688 ice->spdif.ops.default_put = delta_spdif_default_put;
689 ice->spdif.ops.stream_get = delta_spdif_stream_get;
690 ice->spdif.ops.stream_put = delta_spdif_stream_put;
691 /* Set spdif defaults */
692 snd_ice1712_delta_cs8403_spdif_write(ice, ice->spdif.cs8403_bits);
693 break;
694 }
695
696 /* no analog? */
697 switch (ice->eeprom.subvendor) {
698 case ICE1712_SUBDEVICE_DELTA1010:
Jaroslav Kyselaa60567d2008-02-06 15:48:06 +0100699 case ICE1712_SUBDEVICE_DELTA1010E:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 case ICE1712_SUBDEVICE_DELTADIO2496:
701 case ICE1712_SUBDEVICE_MEDIASTATION:
702 return 0;
703 }
704
705 /* second stage of initialization, analog parts and others */
Takashi Iwai6ca308d2005-11-17 14:59:52 +0100706 ak = ice->akm = kmalloc(sizeof(struct snd_akm4xxx), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (! ak)
708 return -ENOMEM;
709 ice->akm_codecs = 1;
710
711 switch (ice->eeprom.subvendor) {
712 case ICE1712_SUBDEVICE_AUDIOPHILE:
713 err = snd_ice1712_akm4xxx_init(ak, &akm_audiophile, &akm_audiophile_priv, ice);
714 break;
715 case ICE1712_SUBDEVICE_DELTA410:
716 err = snd_ice1712_akm4xxx_init(ak, &akm_delta410, &akm_delta410_priv, ice);
717 break;
718 case ICE1712_SUBDEVICE_DELTA1010LT:
Garnet MacPhee23b224d2010-08-21 14:37:34 -0600719 case ICE1712_SUBDEVICE_EDIROLDA2496:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 err = snd_ice1712_akm4xxx_init(ak, &akm_delta1010lt, &akm_delta1010lt_priv, ice);
721 break;
722 case ICE1712_SUBDEVICE_DELTA66:
723 case ICE1712_SUBDEVICE_DELTA44:
724 err = snd_ice1712_akm4xxx_init(ak, &akm_delta44, &akm_delta44_priv, ice);
725 break;
726 case ICE1712_SUBDEVICE_VX442:
727 err = snd_ice1712_akm4xxx_init(ak, &akm_vx442, &akm_vx442_priv, ice);
728 break;
Brian Bloniarz93430092010-12-08 12:45:20 -0800729 case ICE1712_SUBDEVICE_DELTA66E:
730 err = snd_ice1712_akm4xxx_init(ak, &akm_delta66e, &akm_delta66e_priv, ice);
731 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 default:
733 snd_BUG();
734 return -EINVAL;
735 }
736
737 return err;
738}
739
740
741/*
742 * additional controls for M-Audio cards
743 */
744
Bill Pembertone23e7a12012-12-06 12:35:10 -0500745static struct snd_kcontrol_new snd_ice1712_delta1010_wordclock_select =
Clemens Ladisch67ed4162005-07-29 15:32:58 +0200746ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_MIXER, "Word Clock Sync", 0, ICE1712_DELTA_WORD_CLOCK_SELECT, 1, 0);
Bill Pembertone23e7a12012-12-06 12:35:10 -0500747static struct snd_kcontrol_new snd_ice1712_delta1010lt_wordclock_select =
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100748ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_MIXER, "Word Clock Sync", 0, ICE1712_DELTA_1010LT_WORDCLOCK, 0, 0);
Bill Pembertone23e7a12012-12-06 12:35:10 -0500749static struct snd_kcontrol_new snd_ice1712_delta1010_wordclock_status =
Clemens Ladisch67ed4162005-07-29 15:32:58 +0200750ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_MIXER, "Word Clock Status", 0, ICE1712_DELTA_WORD_CLOCK_STATUS, 1, SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE);
Bill Pembertone23e7a12012-12-06 12:35:10 -0500751static struct snd_kcontrol_new snd_ice1712_deltadio2496_spdif_in_select =
Clemens Ladisch67ed4162005-07-29 15:32:58 +0200752ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_MIXER, "IEC958 Input Optical", 0, ICE1712_DELTA_SPDIF_INPUT_SELECT, 0, 0);
Bill Pembertone23e7a12012-12-06 12:35:10 -0500753static struct snd_kcontrol_new snd_ice1712_delta_spdif_in_status =
Clemens Ladisch67ed4162005-07-29 15:32:58 +0200754ICE1712_GPIO(SNDRV_CTL_ELEM_IFACE_MIXER, "Delta IEC958 Input Status", 0, ICE1712_DELTA_SPDIF_IN_STAT, 1, SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756
Bill Pembertone23e7a12012-12-06 12:35:10 -0500757static int snd_ice1712_delta_add_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 int err;
760
761 /* 1010 and dio specific controls */
762 switch (ice->eeprom.subvendor) {
763 case ICE1712_SUBDEVICE_DELTA1010:
764 case ICE1712_SUBDEVICE_MEDIASTATION:
765 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta1010_wordclock_select, ice));
766 if (err < 0)
767 return err;
768 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta1010_wordclock_status, ice));
769 if (err < 0)
770 return err;
771 break;
772 case ICE1712_SUBDEVICE_DELTADIO2496:
773 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_deltadio2496_spdif_in_select, ice));
774 if (err < 0)
775 return err;
776 break;
Jaroslav Kyselaa60567d2008-02-06 15:48:06 +0100777 case ICE1712_SUBDEVICE_DELTA1010E:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 case ICE1712_SUBDEVICE_DELTA1010LT:
779 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta1010lt_wordclock_select, ice));
780 if (err < 0)
781 return err;
Jaroslav Kyselaf7004f32006-02-10 08:42:17 +0100782 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta1010lt_wordclock_status, ice));
783 if (err < 0)
784 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
786 }
787
788 /* normal spdif controls */
789 switch (ice->eeprom.subvendor) {
790 case ICE1712_SUBDEVICE_DELTA1010:
791 case ICE1712_SUBDEVICE_DELTADIO2496:
792 case ICE1712_SUBDEVICE_DELTA66:
793 case ICE1712_SUBDEVICE_MEDIASTATION:
794 err = snd_ice1712_spdif_build_controls(ice);
795 if (err < 0)
796 return err;
797 break;
798 }
799
800 /* spdif status in */
801 switch (ice->eeprom.subvendor) {
802 case ICE1712_SUBDEVICE_DELTA1010:
803 case ICE1712_SUBDEVICE_DELTADIO2496:
804 case ICE1712_SUBDEVICE_DELTA66:
805 case ICE1712_SUBDEVICE_MEDIASTATION:
806 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_delta_spdif_in_status, ice));
807 if (err < 0)
808 return err;
809 break;
810 }
811
812 /* ak4524 controls */
813 switch (ice->eeprom.subvendor) {
814 case ICE1712_SUBDEVICE_DELTA1010LT:
815 case ICE1712_SUBDEVICE_AUDIOPHILE:
816 case ICE1712_SUBDEVICE_DELTA410:
817 case ICE1712_SUBDEVICE_DELTA44:
818 case ICE1712_SUBDEVICE_DELTA66:
819 case ICE1712_SUBDEVICE_VX442:
Jaroslav Kyselaef2cd2c2008-02-06 20:04:49 +0100820 case ICE1712_SUBDEVICE_DELTA66E:
Garnet MacPhee23b224d2010-08-21 14:37:34 -0600821 case ICE1712_SUBDEVICE_EDIROLDA2496:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 err = snd_ice1712_akm4xxx_build_controls(ice);
823 if (err < 0)
824 return err;
825 break;
826 }
827
828 return 0;
829}
830
831
832/* entry point */
Bill Pembertone23e7a12012-12-06 12:35:10 -0500833struct snd_ice1712_card_info snd_ice1712_delta_cards[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 {
835 .subvendor = ICE1712_SUBDEVICE_DELTA1010,
836 .name = "M Audio Delta 1010",
837 .model = "delta1010",
838 .chip_init = snd_ice1712_delta_init,
839 .build_controls = snd_ice1712_delta_add_controls,
840 },
841 {
842 .subvendor = ICE1712_SUBDEVICE_DELTADIO2496,
843 .name = "M Audio Delta DiO 2496",
844 .model = "dio2496",
845 .chip_init = snd_ice1712_delta_init,
846 .build_controls = snd_ice1712_delta_add_controls,
847 .no_mpu401 = 1,
848 },
849 {
850 .subvendor = ICE1712_SUBDEVICE_DELTA66,
851 .name = "M Audio Delta 66",
852 .model = "delta66",
853 .chip_init = snd_ice1712_delta_init,
854 .build_controls = snd_ice1712_delta_add_controls,
855 .no_mpu401 = 1,
856 },
857 {
858 .subvendor = ICE1712_SUBDEVICE_DELTA44,
859 .name = "M Audio Delta 44",
860 .model = "delta44",
861 .chip_init = snd_ice1712_delta_init,
862 .build_controls = snd_ice1712_delta_add_controls,
863 .no_mpu401 = 1,
864 },
865 {
866 .subvendor = ICE1712_SUBDEVICE_AUDIOPHILE,
867 .name = "M Audio Audiophile 24/96",
868 .model = "audiophile",
869 .chip_init = snd_ice1712_delta_init,
870 .build_controls = snd_ice1712_delta_add_controls,
871 },
872 {
873 .subvendor = ICE1712_SUBDEVICE_DELTA410,
874 .name = "M Audio Delta 410",
875 .model = "delta410",
876 .chip_init = snd_ice1712_delta_init,
877 .build_controls = snd_ice1712_delta_add_controls,
878 },
879 {
880 .subvendor = ICE1712_SUBDEVICE_DELTA1010LT,
881 .name = "M Audio Delta 1010LT",
882 .model = "delta1010lt",
883 .chip_init = snd_ice1712_delta_init,
884 .build_controls = snd_ice1712_delta_add_controls,
885 },
886 {
887 .subvendor = ICE1712_SUBDEVICE_VX442,
888 .name = "Digigram VX442",
889 .model = "vx442",
890 .chip_init = snd_ice1712_delta_init,
891 .build_controls = snd_ice1712_delta_add_controls,
892 .no_mpu401 = 1,
893 },
894 {
895 .subvendor = ICE1712_SUBDEVICE_MEDIASTATION,
896 .name = "Lionstracs Mediastation",
897 .model = "mediastation",
898 .chip_init = snd_ice1712_delta_init,
899 .build_controls = snd_ice1712_delta_add_controls,
900 },
Garnet MacPhee23b224d2010-08-21 14:37:34 -0600901 {
902 .subvendor = ICE1712_SUBDEVICE_EDIROLDA2496,
903 .name = "Edirol DA2496",
904 .model = "da2496",
905 .chip_init = snd_ice1712_delta_init,
906 .build_controls = snd_ice1712_delta_add_controls,
907 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 { } /* terminator */
909};