ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / sound / pci / ice1712 / ice1712.c
1 /*
2  *   ALSA driver for ICEnsemble ICE1712 (Envy24)
3  *
4  *      Copyright (c) 2000 Jaroslav Kysela <perex@suse.cz>
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19  *
20  */      
21
22 /*
23   NOTES:
24   - spdif nonaudio consumer mode does not work (at least with my
25     Sony STR-DB830)
26 */
27
28 /*
29  * Changes:
30  *
31  *  2002.09.09  Takashi Iwai <tiwai@suse.de>
32  *      split the code to several files.  each low-level routine
33  *      is stored in the local file and called from registration
34  *      function from card_info struct.
35  *
36  *  2002.11.26  James Stafford <jstafford@ampltd.com>
37  *      Added support for VT1724 (Envy24HT)
38  *      I have left out support for 176.4 and 192 KHz for the moment. 
39  *  I also haven't done anything with the internal S/PDIF transmitter or the MPU-401
40  *
41  *  2003.02.20  Taksahi Iwai <tiwai@suse.de>
42  *      Split vt1724 part to an independent driver.
43  *      The GPIO is accessed through the callback functions now.
44  */
45
46
47 #include <sound/driver.h>
48 #include <asm/io.h>
49 #include <linux/delay.h>
50 #include <linux/interrupt.h>
51 #include <linux/init.h>
52 #include <linux/pci.h>
53 #include <linux/slab.h>
54 #include <sound/core.h>
55 #include <sound/cs8427.h>
56 #include <sound/info.h>
57 #include <sound/mpu401.h>
58 #define SNDRV_GET_ID
59 #include <sound/initval.h>
60
61 #include <sound/asoundef.h>
62
63 #include "ice1712.h"
64
65 /* lowlevel routines */
66 #include "delta.h"
67 #include "ews.h"
68 #include "hoontech.h"
69
70 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>");
71 MODULE_DESCRIPTION("ICEnsemble ICE1712 (Envy24)");
72 MODULE_LICENSE("GPL");
73 MODULE_CLASSES("{sound}");
74 MODULE_DEVICES("{"
75                HOONTECH_DEVICE_DESC
76                DELTA_DEVICE_DESC
77                EWS_DEVICE_DESC
78                "{ICEnsemble,Generic ICE1712},"
79                "{ICEnsemble,Generic Envy24}}");
80
81 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;      /* Index 0-MAX */
82 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;       /* ID for this card */
83 static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;              /* Enable this card */
84 static int omni[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 0};   /* Delta44 & 66 Omni I/O support */
85 static int cs8427_timeout[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 500}; /* CS8427 S/PDIF transciever reset timeout value in msec */
86
87 MODULE_PARM(index, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
88 MODULE_PARM_DESC(index, "Index value for ICE1712 soundcard.");
89 MODULE_PARM_SYNTAX(index, SNDRV_INDEX_DESC);
90 MODULE_PARM(id, "1-" __MODULE_STRING(SNDRV_CARDS) "s");
91 MODULE_PARM_DESC(id, "ID string for ICE1712 soundcard.");
92 MODULE_PARM_SYNTAX(id, SNDRV_ID_DESC);
93 MODULE_PARM(enable, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
94 MODULE_PARM_DESC(enable, "Enable ICE1712 soundcard.");
95 MODULE_PARM_SYNTAX(enable, SNDRV_ENABLE_DESC);
96 MODULE_PARM(omni, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
97 MODULE_PARM_DESC(omni, "Enable Midiman M-Audio Delta Omni I/O support.");
98 MODULE_PARM_SYNTAX(omni, SNDRV_ENABLED "," SNDRV_ENABLE_DESC);
99 MODULE_PARM(cs8427_timeout, "1-" __MODULE_STRING(SNDRV_CARDS) "i");
100 MODULE_PARM_DESC(cs8427_timeout, "Define reset timeout for cs8427 chip in msec resolution.");
101 MODULE_PARM_SYNTAX(cs8427_timeout, SNDRV_ENABLED ", allows:{{1,1000}},default=500,skill:advanced");
102
103 #ifndef PCI_VENDOR_ID_ICE
104 #define PCI_VENDOR_ID_ICE               0x1412
105 #endif
106 #ifndef PCI_DEVICE_ID_ICE_1712
107 #define PCI_DEVICE_ID_ICE_1712          0x1712
108 #endif
109
110 static struct pci_device_id snd_ice1712_ids[] = {
111         { PCI_VENDOR_ID_ICE, PCI_DEVICE_ID_ICE_1712, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },   /* ICE1712 */
112         { 0, }
113 };
114
115 MODULE_DEVICE_TABLE(pci, snd_ice1712_ids);
116
117 static int snd_ice1712_build_pro_mixer(ice1712_t *ice);
118 static int snd_ice1712_build_controls(ice1712_t *ice);
119
120 static int PRO_RATE_LOCKED;
121 static int PRO_RATE_RESET = 1;
122 static unsigned int PRO_RATE_DEFAULT = 44100;
123
124 /*
125  *  Basic I/O
126  */
127  
128 /* check whether the clock mode is spdif-in */
129 static inline int is_spdif_master(ice1712_t *ice)
130 {
131         return (inb(ICEMT(ice, RATE)) & ICE1712_SPDIF_MASTER) ? 1 : 0;
132 }
133
134 static inline int is_pro_rate_locked(ice1712_t *ice)
135 {
136         return is_spdif_master(ice) || PRO_RATE_LOCKED;
137 }
138
139 static inline void snd_ice1712_ds_write(ice1712_t * ice, u8 channel, u8 addr, u32 data)
140 {
141         outb((channel << 4) | addr, ICEDS(ice, INDEX));
142         outl(data, ICEDS(ice, DATA));
143 }
144
145 static inline u32 snd_ice1712_ds_read(ice1712_t * ice, u8 channel, u8 addr)
146 {
147         outb((channel << 4) | addr, ICEDS(ice, INDEX));
148         return inl(ICEDS(ice, DATA));
149 }
150
151 static void snd_ice1712_ac97_write(ac97_t *ac97,
152                                    unsigned short reg,
153                                    unsigned short val)
154 {
155         ice1712_t *ice = (ice1712_t *)ac97->private_data;
156         int tm;
157         unsigned char old_cmd = 0;
158
159         for (tm = 0; tm < 0x10000; tm++) {
160                 old_cmd = inb(ICEREG(ice, AC97_CMD));
161                 if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
162                         continue;
163                 if (!(old_cmd & ICE1712_AC97_READY))
164                         continue;
165                 break;
166         }
167         outb(reg, ICEREG(ice, AC97_INDEX));
168         outw(val, ICEREG(ice, AC97_DATA));
169         old_cmd &= ~(ICE1712_AC97_PBK_VSR | ICE1712_AC97_CAP_VSR);
170         outb(old_cmd | ICE1712_AC97_WRITE, ICEREG(ice, AC97_CMD));
171         for (tm = 0; tm < 0x10000; tm++)
172                 if ((inb(ICEREG(ice, AC97_CMD)) & ICE1712_AC97_WRITE) == 0)
173                         break;
174 }
175
176 static unsigned short snd_ice1712_ac97_read(ac97_t *ac97,
177                                             unsigned short reg)
178 {
179         ice1712_t *ice = (ice1712_t *)ac97->private_data;
180         int tm;
181         unsigned char old_cmd = 0;
182
183         for (tm = 0; tm < 0x10000; tm++) {
184                 old_cmd = inb(ICEREG(ice, AC97_CMD));
185                 if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
186                         continue;
187                 if (!(old_cmd & ICE1712_AC97_READY))
188                         continue;
189                 break;
190         }
191         outb(reg, ICEREG(ice, AC97_INDEX));
192         outb(old_cmd | ICE1712_AC97_READ, ICEREG(ice, AC97_CMD));
193         for (tm = 0; tm < 0x10000; tm++)
194                 if ((inb(ICEREG(ice, AC97_CMD)) & ICE1712_AC97_READ) == 0)
195                         break;
196         if (tm >= 0x10000)              /* timeout */
197                 return ~0;
198         return inw(ICEREG(ice, AC97_DATA));
199 }
200
201 /*
202  * pro ac97 section
203  */
204
205 static void snd_ice1712_pro_ac97_write(ac97_t *ac97,
206                                        unsigned short reg,
207                                        unsigned short val)
208 {
209         ice1712_t *ice = (ice1712_t *)ac97->private_data;
210         int tm;
211         unsigned char old_cmd = 0;
212
213         for (tm = 0; tm < 0x10000; tm++) {
214                 old_cmd = inb(ICEMT(ice, AC97_CMD));
215                 if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
216                         continue;
217                 if (!(old_cmd & ICE1712_AC97_READY))
218                         continue;
219                 break;
220         }
221         outb(reg, ICEMT(ice, AC97_INDEX));
222         outw(val, ICEMT(ice, AC97_DATA));
223         old_cmd &= ~(ICE1712_AC97_PBK_VSR | ICE1712_AC97_CAP_VSR);
224         outb(old_cmd | ICE1712_AC97_WRITE, ICEMT(ice, AC97_CMD));
225         for (tm = 0; tm < 0x10000; tm++)
226                 if ((inb(ICEMT(ice, AC97_CMD)) & ICE1712_AC97_WRITE) == 0)
227                         break;
228 }
229
230
231 static unsigned short snd_ice1712_pro_ac97_read(ac97_t *ac97,
232                                                 unsigned short reg)
233 {
234         ice1712_t *ice = (ice1712_t *)ac97->private_data;
235         int tm;
236         unsigned char old_cmd = 0;
237
238         for (tm = 0; tm < 0x10000; tm++) {
239                 old_cmd = inb(ICEMT(ice, AC97_CMD));
240                 if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
241                         continue;
242                 if (!(old_cmd & ICE1712_AC97_READY))
243                         continue;
244                 break;
245         }
246         outb(reg, ICEMT(ice, AC97_INDEX));
247         outb(old_cmd | ICE1712_AC97_READ, ICEMT(ice, AC97_CMD));
248         for (tm = 0; tm < 0x10000; tm++)
249                 if ((inb(ICEMT(ice, AC97_CMD)) & ICE1712_AC97_READ) == 0)
250                         break;
251         if (tm >= 0x10000)              /* timeout */
252                 return ~0;
253         return inw(ICEMT(ice, AC97_DATA));
254 }
255
256 /*
257  * consumer ac97 digital mix
258  */
259 static int snd_ice1712_digmix_route_ac97_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t *uinfo)
260 {
261         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
262         uinfo->count = 1;
263         uinfo->value.integer.min = 0;
264         uinfo->value.integer.max = 1;
265         return 0;
266 }
267
268 static int snd_ice1712_digmix_route_ac97_get(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
269 {
270         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
271         
272         ucontrol->value.integer.value[0] = inb(ICEMT(ice, MONITOR_ROUTECTRL)) & ICE1712_ROUTE_AC97 ? 1 : 0;
273         return 0;
274 }
275
276 static int snd_ice1712_digmix_route_ac97_put(snd_kcontrol_t *kcontrol, snd_ctl_elem_value_t *ucontrol)
277 {
278         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
279         unsigned char val, nval;
280         
281         spin_lock_irq(&ice->reg_lock);
282         val = inb(ICEMT(ice, MONITOR_ROUTECTRL));
283         nval = val & ~ICE1712_ROUTE_AC97;
284         if (ucontrol->value.integer.value[0]) nval |= ICE1712_ROUTE_AC97;
285         outb(nval, ICEMT(ice, MONITOR_ROUTECTRL));
286         spin_unlock_irq(&ice->reg_lock);
287         return val != nval;
288 }
289
290 static snd_kcontrol_new_t snd_ice1712_mixer_digmix_route_ac97 __devinitdata = {
291         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
292         .name = "Digital Mixer To AC97",
293         .info = snd_ice1712_digmix_route_ac97_info,
294         .get = snd_ice1712_digmix_route_ac97_get,
295         .put = snd_ice1712_digmix_route_ac97_put,
296 };
297
298
299 /*
300  * gpio operations
301  */
302 static void snd_ice1712_set_gpio_dir(ice1712_t *ice, unsigned int data)
303 {
304         snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, data);
305         inb(ICEREG(ice, DATA)); /* dummy read for pci-posting */
306 }
307
308 static void snd_ice1712_set_gpio_mask(ice1712_t *ice, unsigned int data)
309 {
310         snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, data);
311         inb(ICEREG(ice, DATA)); /* dummy read for pci-posting */
312 }
313
314 static unsigned int snd_ice1712_get_gpio_data(ice1712_t *ice)
315 {
316         return snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);
317 }
318
319 static void snd_ice1712_set_gpio_data(ice1712_t *ice, unsigned int val)
320 {
321         snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, val);
322         inb(ICEREG(ice, DATA)); /* dummy read for pci-posting */
323 }
324
325
326 /*
327  *
328  * CS8427 interface
329  *
330  */
331
332 /*
333  * change the input clock selection
334  * spdif_clock = 1 - IEC958 input, 0 - Envy24
335  */
336 static int snd_ice1712_cs8427_set_input_clock(ice1712_t *ice, int spdif_clock)
337 {
338         unsigned char reg[2] = { 0x80 | 4, 0 };   /* CS8427 auto increment | register number 4 + data */
339         unsigned char val, nval;
340         int res = 0;
341         
342         snd_i2c_lock(ice->i2c);
343         if (snd_i2c_sendbytes(ice->cs8427, reg, 1) != 1) {
344                 snd_i2c_unlock(ice->i2c);
345                 return -EIO;
346         }
347         if (snd_i2c_readbytes(ice->cs8427, &val, 1) != 1) {
348                 snd_i2c_unlock(ice->i2c);
349                 return -EIO;
350         }
351         nval = val & 0xf0;
352         if (spdif_clock)
353                 nval |= 0x01;
354         else
355                 nval |= 0x04;
356         if (val != nval) {
357                 reg[1] = nval;
358                 if (snd_i2c_sendbytes(ice->cs8427, reg, 2) != 2) {
359                         res = -EIO;
360                 } else {
361                         res++;
362                 }
363         }
364         snd_i2c_unlock(ice->i2c);
365         return res;
366 }
367
368 /*
369  * spdif callbacks
370  */
371 static void open_cs8427(ice1712_t *ice, snd_pcm_substream_t * substream)
372 {
373         snd_cs8427_iec958_active(ice->cs8427, 1);
374 }
375
376 static void close_cs8427(ice1712_t *ice, snd_pcm_substream_t * substream)
377 {
378         snd_cs8427_iec958_active(ice->cs8427, 0);
379 }
380
381 static void setup_cs8427(ice1712_t *ice, int rate)
382 {
383         snd_cs8427_iec958_pcm(ice->cs8427, rate);
384 }
385
386 /*
387  * create and initialize callbacks for cs8427 interface
388  */
389 int __devinit snd_ice1712_init_cs8427(ice1712_t *ice, int addr)
390 {
391         int err;
392
393         if ((err = snd_cs8427_create(ice->i2c, addr,
394                                      (ice->cs8427_timeout * HZ) / 1000,
395                                      &ice->cs8427)) < 0) {
396                 snd_printk("CS8427 initialization failed\n");
397                 return err;
398         }
399         ice->spdif.ops.open = open_cs8427;
400         ice->spdif.ops.close = close_cs8427;
401         ice->spdif.ops.setup_rate = setup_cs8427;
402         return 0;
403 }
404
405
406 /*
407  *  Interrupt handler
408  */
409
410 static irqreturn_t snd_ice1712_interrupt(int irq, void *dev_id, struct pt_regs *regs)
411 {
412         ice1712_t *ice = snd_magic_cast(ice1712_t, dev_id, return IRQ_NONE);
413         unsigned char status;
414         int handled = 0;
415
416         while (1) {
417                 status = inb(ICEREG(ice, IRQSTAT));
418                 if (status == 0)
419                         break;
420                 handled = 1;
421                 if (status & ICE1712_IRQ_MPU1) {
422                         if (ice->rmidi[0])
423                                 snd_mpu401_uart_interrupt(irq, ice->rmidi[0]->private_data, regs);
424                         outb(ICE1712_IRQ_MPU1, ICEREG(ice, IRQSTAT));
425                         status &= ~ICE1712_IRQ_MPU1;
426                 }
427                 if (status & ICE1712_IRQ_TIMER)
428                         outb(ICE1712_IRQ_TIMER, ICEREG(ice, IRQSTAT));
429                 if (status & ICE1712_IRQ_MPU2) {
430                         if (ice->rmidi[1])
431                                 snd_mpu401_uart_interrupt(irq, ice->rmidi[1]->private_data, regs);
432                         outb(ICE1712_IRQ_MPU2, ICEREG(ice, IRQSTAT));
433                         status &= ~ICE1712_IRQ_MPU2;
434                 }
435                 if (status & ICE1712_IRQ_PROPCM) {
436                         unsigned char mtstat = inb(ICEMT(ice, IRQ));
437                         if (mtstat & ICE1712_MULTI_PBKSTATUS) {
438                                 if (ice->playback_pro_substream)
439                                         snd_pcm_period_elapsed(ice->playback_pro_substream);
440                                 outb(ICE1712_MULTI_PBKSTATUS, ICEMT(ice, IRQ));
441                         }
442                         if (mtstat & ICE1712_MULTI_CAPSTATUS) {
443                                 if (ice->capture_pro_substream)
444                                         snd_pcm_period_elapsed(ice->capture_pro_substream);
445                                 outb(ICE1712_MULTI_CAPSTATUS, ICEMT(ice, IRQ));
446                         }
447                 }
448                 if (status & ICE1712_IRQ_FM)
449                         outb(ICE1712_IRQ_FM, ICEREG(ice, IRQSTAT));
450                 if (status & ICE1712_IRQ_PBKDS) {
451                         u32 idx;
452                         u16 pbkstatus;
453                         snd_pcm_substream_t *substream;
454                         pbkstatus = inw(ICEDS(ice, INTSTAT));
455                         //printk("pbkstatus = 0x%x\n", pbkstatus);
456                         for (idx = 0; idx < 6; idx++) {
457                                 if ((pbkstatus & (3 << (idx * 2))) == 0)
458                                         continue;
459                                 if ((substream = ice->playback_con_substream_ds[idx]) != NULL)
460                                         snd_pcm_period_elapsed(substream);
461                                 outw(3 << (idx * 2), ICEDS(ice, INTSTAT));
462                         }
463                         outb(ICE1712_IRQ_PBKDS, ICEREG(ice, IRQSTAT));
464                 }
465                 if (status & ICE1712_IRQ_CONCAP) {
466                         if (ice->capture_con_substream)
467                                 snd_pcm_period_elapsed(ice->capture_con_substream);
468                         outb(ICE1712_IRQ_CONCAP, ICEREG(ice, IRQSTAT));
469                 }
470                 if (status & ICE1712_IRQ_CONPBK) {
471                         if (ice->playback_con_substream)
472                                 snd_pcm_period_elapsed(ice->playback_con_substream);
473                         outb(ICE1712_IRQ_CONPBK, ICEREG(ice, IRQSTAT));
474                 }
475         }
476         return IRQ_RETVAL(handled);
477 }
478
479
480 /*
481  *  PCM part - misc
482  */
483
484 static int snd_ice1712_hw_params(snd_pcm_substream_t * substream,
485                                  snd_pcm_hw_params_t * hw_params)
486 {
487         return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
488 }
489
490 static int snd_ice1712_hw_free(snd_pcm_substream_t * substream)
491 {
492         return snd_pcm_lib_free_pages(substream);
493 }
494
495 /*
496  *  PCM part - consumer I/O
497  */
498
499 static int snd_ice1712_playback_trigger(snd_pcm_substream_t * substream,
500                                         int cmd)
501 {
502         ice1712_t *ice = snd_pcm_substream_chip(substream);
503         int result = 0;
504         u32 tmp;
505         
506         spin_lock(&ice->reg_lock);
507         tmp = snd_ice1712_read(ice, ICE1712_IREG_PBK_CTRL);
508         if (cmd == SNDRV_PCM_TRIGGER_START) {
509                 tmp |= 1;
510         } else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
511                 tmp &= ~1;
512         } else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH) {
513                 tmp |= 2;
514         } else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_RELEASE) {
515                 tmp &= ~2;
516         } else {
517                 result = -EINVAL;
518         }
519         snd_ice1712_write(ice, ICE1712_IREG_PBK_CTRL, tmp);
520         spin_unlock(&ice->reg_lock);
521         return result;
522 }
523
524 static int snd_ice1712_playback_ds_trigger(snd_pcm_substream_t * substream,
525                                            int cmd)
526 {
527         ice1712_t *ice = snd_pcm_substream_chip(substream);
528         int result = 0;
529         u32 tmp;
530         
531         spin_lock(&ice->reg_lock);
532         tmp = snd_ice1712_ds_read(ice, substream->number * 2, ICE1712_DSC_CONTROL);
533         if (cmd == SNDRV_PCM_TRIGGER_START) {
534                 tmp |= 1;
535         } else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
536                 tmp &= ~1;
537         } else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH) {
538                 tmp |= 2;
539         } else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_RELEASE) {
540                 tmp &= ~2;
541         } else {
542                 result = -EINVAL;
543         }
544         snd_ice1712_ds_write(ice, substream->number * 2, ICE1712_DSC_CONTROL, tmp);
545         spin_unlock(&ice->reg_lock);
546         return result;
547 }
548
549 static int snd_ice1712_capture_trigger(snd_pcm_substream_t * substream,
550                                        int cmd)
551 {
552         ice1712_t *ice = snd_pcm_substream_chip(substream);
553         int result = 0;
554         u8 tmp;
555         
556         spin_lock(&ice->reg_lock);
557         tmp = snd_ice1712_read(ice, ICE1712_IREG_CAP_CTRL);
558         if (cmd == SNDRV_PCM_TRIGGER_START) {
559                 tmp |= 1;
560         } else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
561                 tmp &= ~1;
562         } else {
563                 result = -EINVAL;
564         }
565         snd_ice1712_write(ice, ICE1712_IREG_CAP_CTRL, tmp);
566         spin_unlock(&ice->reg_lock);
567         return result;
568 }
569
570 static int snd_ice1712_playback_prepare(snd_pcm_substream_t * substream)
571 {
572         ice1712_t *ice = snd_pcm_substream_chip(substream);
573         snd_pcm_runtime_t *runtime = substream->runtime;
574         u32 period_size, buf_size, rate, tmp;
575
576         period_size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
577         buf_size = snd_pcm_lib_buffer_bytes(substream) - 1;
578         tmp = 0x0000;
579         if (snd_pcm_format_width(runtime->format) == 16)
580                 tmp |= 0x10;
581         if (runtime->channels == 2)
582                 tmp |= 0x08;
583         rate = (runtime->rate * 8192) / 375;
584         if (rate > 0x000fffff)
585                 rate = 0x000fffff;
586         spin_lock(&ice->reg_lock);
587         outb(0, ice->ddma_port + 15);
588         outb(ICE1712_DMA_MODE_WRITE | ICE1712_DMA_AUTOINIT, ice->ddma_port + 0x0b);
589         outl(runtime->dma_addr, ice->ddma_port + 0);
590         outw(buf_size, ice->ddma_port + 4);
591         snd_ice1712_write(ice, ICE1712_IREG_PBK_RATE_LO, rate & 0xff);
592         snd_ice1712_write(ice, ICE1712_IREG_PBK_RATE_MID, (rate >> 8) & 0xff);
593         snd_ice1712_write(ice, ICE1712_IREG_PBK_RATE_HI, (rate >> 16) & 0xff);
594         snd_ice1712_write(ice, ICE1712_IREG_PBK_CTRL, tmp);
595         snd_ice1712_write(ice, ICE1712_IREG_PBK_COUNT_LO, period_size & 0xff);
596         snd_ice1712_write(ice, ICE1712_IREG_PBK_COUNT_HI, period_size >> 8);
597         snd_ice1712_write(ice, ICE1712_IREG_PBK_LEFT, 0);
598         snd_ice1712_write(ice, ICE1712_IREG_PBK_RIGHT, 0);
599         spin_unlock(&ice->reg_lock);
600         return 0;
601 }
602
603 static int snd_ice1712_playback_ds_prepare(snd_pcm_substream_t * substream)
604 {
605         ice1712_t *ice = snd_pcm_substream_chip(substream);
606         snd_pcm_runtime_t *runtime = substream->runtime;
607         u32 period_size, buf_size, rate, tmp, chn;
608
609         period_size = snd_pcm_lib_period_bytes(substream) - 1;
610         buf_size = snd_pcm_lib_buffer_bytes(substream) - 1;
611         tmp = 0x0064;
612         if (snd_pcm_format_width(runtime->format) == 16)
613                 tmp &= ~0x04;
614         if (runtime->channels == 2)
615                 tmp |= 0x08;
616         rate = (runtime->rate * 8192) / 375;
617         if (rate > 0x000fffff)
618                 rate = 0x000fffff;
619         ice->playback_con_active_buf[substream->number] = 0;
620         ice->playback_con_virt_addr[substream->number] = runtime->dma_addr;
621         chn = substream->number * 2;
622         spin_lock(&ice->reg_lock);
623         snd_ice1712_ds_write(ice, chn, ICE1712_DSC_ADDR0, runtime->dma_addr);
624         snd_ice1712_ds_write(ice, chn, ICE1712_DSC_COUNT0, period_size);
625         snd_ice1712_ds_write(ice, chn, ICE1712_DSC_ADDR1, runtime->dma_addr + (runtime->periods > 1 ? period_size + 1 : 0));
626         snd_ice1712_ds_write(ice, chn, ICE1712_DSC_COUNT1, period_size);
627         snd_ice1712_ds_write(ice, chn, ICE1712_DSC_RATE, rate);
628         snd_ice1712_ds_write(ice, chn, ICE1712_DSC_VOLUME, 0);
629         snd_ice1712_ds_write(ice, chn, ICE1712_DSC_CONTROL, tmp);
630         if (runtime->channels == 2) {
631                 snd_ice1712_ds_write(ice, chn + 1, ICE1712_DSC_RATE, rate);
632                 snd_ice1712_ds_write(ice, chn + 1, ICE1712_DSC_VOLUME, 0);
633         }
634         spin_unlock(&ice->reg_lock);
635         return 0;
636 }
637
638 static int snd_ice1712_capture_prepare(snd_pcm_substream_t * substream)
639 {
640         ice1712_t *ice = snd_pcm_substream_chip(substream);
641         snd_pcm_runtime_t *runtime = substream->runtime;
642         u32 period_size, buf_size;
643         u8 tmp;
644
645         period_size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
646         buf_size = snd_pcm_lib_buffer_bytes(substream) - 1;
647         tmp = 0x06;
648         if (snd_pcm_format_width(runtime->format) == 16)
649                 tmp &= ~0x04;
650         if (runtime->channels == 2)
651                 tmp &= ~0x02;
652         spin_lock(&ice->reg_lock);
653         outl(ice->capture_con_virt_addr = runtime->dma_addr, ICEREG(ice, CONCAP_ADDR));
654         outw(buf_size, ICEREG(ice, CONCAP_COUNT));
655         snd_ice1712_write(ice, ICE1712_IREG_CAP_COUNT_HI, period_size >> 8);
656         snd_ice1712_write(ice, ICE1712_IREG_CAP_COUNT_LO, period_size & 0xff);
657         snd_ice1712_write(ice, ICE1712_IREG_CAP_CTRL, tmp);
658         spin_unlock(&ice->reg_lock);
659         snd_ac97_set_rate(ice->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
660         return 0;
661 }
662
663 static snd_pcm_uframes_t snd_ice1712_playback_pointer(snd_pcm_substream_t * substream)
664 {
665         ice1712_t *ice = snd_pcm_substream_chip(substream);
666         snd_pcm_runtime_t *runtime = substream->runtime;
667         size_t ptr;
668
669         if (!(snd_ice1712_read(ice, ICE1712_IREG_PBK_CTRL) & 1))
670                 return 0;
671         ptr = runtime->buffer_size - inw(ice->ddma_port + 4);
672         if (ptr == runtime->buffer_size)
673                 ptr = 0;
674         return bytes_to_frames(substream->runtime, ptr);
675 }
676
677 static snd_pcm_uframes_t snd_ice1712_playback_ds_pointer(snd_pcm_substream_t * substream)
678 {
679         ice1712_t *ice = snd_pcm_substream_chip(substream);
680         u8 addr;
681         size_t ptr;
682
683         if (!(snd_ice1712_ds_read(ice, substream->number * 2, ICE1712_DSC_CONTROL) & 1))
684                 return 0;
685         if (ice->playback_con_active_buf[substream->number])
686                 addr = ICE1712_DSC_ADDR1;
687         else
688                 addr = ICE1712_DSC_ADDR0;
689         ptr = snd_ice1712_ds_read(ice, substream->number * 2, addr) -
690                 ice->playback_con_virt_addr[substream->number];
691         if (ptr == substream->runtime->buffer_size)
692                 ptr = 0;
693         return bytes_to_frames(substream->runtime, ptr);
694 }
695
696 static snd_pcm_uframes_t snd_ice1712_capture_pointer(snd_pcm_substream_t * substream)
697 {
698         ice1712_t *ice = snd_pcm_substream_chip(substream);
699         size_t ptr;
700
701         if (!(snd_ice1712_read(ice, ICE1712_IREG_CAP_CTRL) & 1))
702                 return 0;
703         ptr = inl(ICEREG(ice, CONCAP_ADDR)) - ice->capture_con_virt_addr;
704         if (ptr == substream->runtime->buffer_size)
705                 ptr = 0;
706         return bytes_to_frames(substream->runtime, ptr);
707 }
708
709 static snd_pcm_hardware_t snd_ice1712_playback =
710 {
711         .info =                 (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
712                                  SNDRV_PCM_INFO_BLOCK_TRANSFER |
713                                  SNDRV_PCM_INFO_MMAP_VALID |
714                                  SNDRV_PCM_INFO_PAUSE),
715         .formats =              SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
716         .rates =                SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
717         .rate_min =             4000,
718         .rate_max =             48000,
719         .channels_min =         1,
720         .channels_max =         2,
721         .buffer_bytes_max =     (64*1024),
722         .period_bytes_min =     64,
723         .period_bytes_max =     (64*1024),
724         .periods_min =          1,
725         .periods_max =          1024,
726         .fifo_size =            0,
727 };
728
729 static snd_pcm_hardware_t snd_ice1712_playback_ds =
730 {
731         .info =                 (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
732                                  SNDRV_PCM_INFO_BLOCK_TRANSFER |
733                                  SNDRV_PCM_INFO_MMAP_VALID |
734                                  SNDRV_PCM_INFO_PAUSE),
735         .formats =              SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
736         .rates =                SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
737         .rate_min =             4000,
738         .rate_max =             48000,
739         .channels_min =         1,
740         .channels_max =         2,
741         .buffer_bytes_max =     (128*1024),
742         .period_bytes_min =     64,
743         .period_bytes_max =     (128*1024),
744         .periods_min =          2,
745         .periods_max =          2,
746         .fifo_size =            0,
747 };
748
749 static snd_pcm_hardware_t snd_ice1712_capture =
750 {
751         .info =                 (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
752                                  SNDRV_PCM_INFO_BLOCK_TRANSFER |
753                                  SNDRV_PCM_INFO_MMAP_VALID),
754         .formats =              SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
755         .rates =                SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
756         .rate_min =             4000,
757         .rate_max =             48000,
758         .channels_min =         1,
759         .channels_max =         2,
760         .buffer_bytes_max =     (64*1024),
761         .period_bytes_min =     64,
762         .period_bytes_max =     (64*1024),
763         .periods_min =          1,
764         .periods_max =          1024,
765         .fifo_size =            0,
766 };
767
768 static int snd_ice1712_playback_open(snd_pcm_substream_t * substream)
769 {
770         snd_pcm_runtime_t *runtime = substream->runtime;
771         ice1712_t *ice = snd_pcm_substream_chip(substream);
772
773         ice->playback_con_substream = substream;
774         runtime->hw = snd_ice1712_playback;
775         return 0;
776 }
777
778 static int snd_ice1712_playback_ds_open(snd_pcm_substream_t * substream)
779 {
780         snd_pcm_runtime_t *runtime = substream->runtime;
781         ice1712_t *ice = snd_pcm_substream_chip(substream);
782         u32 tmp;
783
784         ice->playback_con_substream_ds[substream->number] = substream;
785         runtime->hw = snd_ice1712_playback_ds;
786         spin_lock_irq(&ice->reg_lock); 
787         tmp = inw(ICEDS(ice, INTMASK)) & ~(1 << (substream->number * 2));
788         outw(tmp, ICEDS(ice, INTMASK));
789         spin_unlock_irq(&ice->reg_lock);
790         return 0;
791 }
792
793 static int snd_ice1712_capture_open(snd_pcm_substream_t * substream)
794 {
795         snd_pcm_runtime_t *runtime = substream->runtime;
796         ice1712_t *ice = snd_pcm_substream_chip(substream);
797
798         ice->capture_con_substream = substream;
799         runtime->hw = snd_ice1712_capture;
800         runtime->hw.rates = ice->ac97->rates[AC97_RATES_ADC];
801         if (!(runtime->hw.rates & SNDRV_PCM_RATE_8000))
802                 runtime->hw.rate_min = 48000;
803         return 0;
804 }
805
806 static int snd_ice1712_playback_close(snd_pcm_substream_t * substream)
807 {
808         ice1712_t *ice = snd_pcm_substream_chip(substream);
809
810         ice->playback_con_substream = NULL;
811         return 0;
812 }
813
814 static int snd_ice1712_playback_ds_close(snd_pcm_substream_t * substream)
815 {
816         ice1712_t *ice = snd_pcm_substream_chip(substream);
817         u32 tmp;
818
819         spin_lock_irq(&ice->reg_lock); 
820         tmp = inw(ICEDS(ice, INTMASK)) | (3 << (substream->number * 2));
821         outw(tmp, ICEDS(ice, INTMASK));
822         spin_unlock_irq(&ice->reg_lock);
823         ice->playback_con_substream_ds[substream->number] = NULL;
824         return 0;
825 }
826
827 static int snd_ice1712_capture_close(snd_pcm_substream_t * substream)
828 {
829         ice1712_t *ice = snd_pcm_substream_chip(substream);
830
831         ice->capture_con_substream = NULL;
832         return 0;
833 }
834
835 static snd_pcm_ops_t snd_ice1712_playback_ops = {
836         .open =         snd_ice1712_playback_open,
837         .close =        snd_ice1712_playback_close,
838         .ioctl =        snd_pcm_lib_ioctl,
839         .hw_params =    snd_ice1712_hw_params,
840         .hw_free =      snd_ice1712_hw_free,
841         .prepare =      snd_ice1712_playback_prepare,
842         .trigger =      snd_ice1712_playback_trigger,
843         .pointer =      snd_ice1712_playback_pointer,
844 };
845
846 static snd_pcm_ops_t snd_ice1712_playback_ds_ops = {
847         .open =         snd_ice1712_playback_ds_open,
848         .close =        snd_ice1712_playback_ds_close,
849         .ioctl =        snd_pcm_lib_ioctl,
850         .hw_params =    snd_ice1712_hw_params,
851         .hw_free =      snd_ice1712_hw_free,
852         .prepare =      snd_ice1712_playback_ds_prepare,
853         .trigger =      snd_ice1712_playback_ds_trigger,
854         .pointer =      snd_ice1712_playback_ds_pointer,
855 };
856
857 static snd_pcm_ops_t snd_ice1712_capture_ops = {
858         .open =         snd_ice1712_capture_open,
859         .close =        snd_ice1712_capture_close,
860         .ioctl =        snd_pcm_lib_ioctl,
861         .hw_params =    snd_ice1712_hw_params,
862         .hw_free =      snd_ice1712_hw_free,
863         .prepare =      snd_ice1712_capture_prepare,
864         .trigger =      snd_ice1712_capture_trigger,
865         .pointer =      snd_ice1712_capture_pointer,
866 };
867
868 static void snd_ice1712_pcm_free(snd_pcm_t *pcm)
869 {
870         ice1712_t *ice = snd_magic_cast(ice1712_t, pcm->private_data, return);
871         ice->pcm = NULL;
872         snd_pcm_lib_preallocate_free_for_all(pcm);
873 }
874
875 static int __devinit snd_ice1712_pcm(ice1712_t * ice, int device, snd_pcm_t ** rpcm)
876 {
877         snd_pcm_t *pcm;
878         int err;
879
880         if (rpcm)
881                 *rpcm = NULL;
882         err = snd_pcm_new(ice->card, "ICE1712 consumer", device, 1, 1, &pcm);
883         if (err < 0)
884                 return err;
885
886         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ice1712_playback_ops);
887         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ice1712_capture_ops);
888
889         pcm->private_data = ice;
890         pcm->private_free = snd_ice1712_pcm_free;
891         pcm->info_flags = 0;
892         strcpy(pcm->name, "ICE1712 consumer");
893         ice->pcm = pcm;
894
895         snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
896                                               snd_dma_pci_data(ice->pci), 64*1024, 64*1024);
897
898         if (rpcm)
899                 *rpcm = pcm;
900
901         printk(KERN_WARNING "Consumer PCM code does not work well at the moment --jk\n");
902
903         return 0;
904 }
905
906 static void snd_ice1712_pcm_free_ds(snd_pcm_t *pcm)
907 {
908         ice1712_t *ice = snd_magic_cast(ice1712_t, pcm->private_data, return);
909         ice->pcm_ds = NULL;
910         snd_pcm_lib_preallocate_free_for_all(pcm);
911 }
912
913 static int __devinit snd_ice1712_pcm_ds(ice1712_t * ice, int device, snd_pcm_t ** rpcm)
914 {
915         snd_pcm_t *pcm;
916         int err;
917
918         if (rpcm)
919                 *rpcm = NULL;
920         err = snd_pcm_new(ice->card, "ICE1712 consumer (DS)", device, 6, 0, &pcm);
921         if (err < 0)
922                 return err;
923
924         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ice1712_playback_ds_ops);
925
926         pcm->private_data = ice;
927         pcm->private_free = snd_ice1712_pcm_free_ds;
928         pcm->info_flags = 0;
929         strcpy(pcm->name, "ICE1712 consumer (DS)");
930         ice->pcm_ds = pcm;
931
932         snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
933                                               snd_dma_pci_data(ice->pci), 64*1024, 128*1024);
934
935         if (rpcm)
936                 *rpcm = pcm;
937
938         return 0;
939 }
940
941 /*
942  *  PCM code - professional part (multitrack)
943  */
944
945 static unsigned int rates[] = { 8000, 9600, 11025, 12000, 16000, 22050, 24000,
946                                 32000, 44100, 48000, 64000, 88200, 96000 };
947
948 #define RATES sizeof(rates) / sizeof(rates[0])
949
950 static snd_pcm_hw_constraint_list_t hw_constraints_rates = {
951         .count = RATES,
952         .list = rates,
953         .mask = 0,
954 };
955
956 static int snd_ice1712_pro_trigger(snd_pcm_substream_t *substream,
957                                    int cmd)
958 {
959         ice1712_t *ice = snd_pcm_substream_chip(substream);
960         switch (cmd) {
961         case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
962         case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
963         {
964                 unsigned int what;
965                 unsigned int old;
966                 if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
967                         return -EINVAL;
968                 what = ICE1712_PLAYBACK_PAUSE;
969                 snd_pcm_trigger_done(substream, substream);
970                 spin_lock(&ice->reg_lock);
971                 old = inl(ICEMT(ice, PLAYBACK_CONTROL));
972                 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
973                         old |= what;
974                 else
975                         old &= ~what;
976                 outl(old, ICEMT(ice, PLAYBACK_CONTROL));
977                 spin_unlock(&ice->reg_lock);
978                 break;
979         }
980         case SNDRV_PCM_TRIGGER_START:
981         case SNDRV_PCM_TRIGGER_STOP:
982         {
983                 unsigned int what = 0;
984                 unsigned int old;
985                 struct list_head *pos;
986                 snd_pcm_substream_t *s;
987
988                 snd_pcm_group_for_each(pos, substream) {
989                         s = snd_pcm_group_substream_entry(pos);
990                         if (s == ice->playback_pro_substream) {
991                                 what |= ICE1712_PLAYBACK_START;
992                                 snd_pcm_trigger_done(s, substream);
993                         } else if (s == ice->capture_pro_substream) {
994                                 what |= ICE1712_CAPTURE_START_SHADOW;
995                                 snd_pcm_trigger_done(s, substream);
996                         }
997                 }
998                 spin_lock(&ice->reg_lock);
999                 old = inl(ICEMT(ice, PLAYBACK_CONTROL));
1000                 if (cmd == SNDRV_PCM_TRIGGER_START)
1001                         old |= what;
1002                 else
1003                         old &= ~what;
1004                 outl(old, ICEMT(ice, PLAYBACK_CONTROL));
1005                 spin_unlock(&ice->reg_lock);
1006                 break;
1007         }
1008         default:
1009                 return -EINVAL;
1010         }
1011         return 0;
1012 }
1013
1014 /*
1015  */
1016 static void snd_ice1712_set_pro_rate(ice1712_t *ice, unsigned int rate, int force)
1017 {
1018         unsigned long flags;
1019         unsigned char val;
1020         unsigned int i;
1021
1022         spin_lock_irqsave(&ice->reg_lock, flags);
1023         if (inb(ICEMT(ice, PLAYBACK_CONTROL)) & (ICE1712_CAPTURE_START_SHADOW|
1024                                                  ICE1712_PLAYBACK_PAUSE|
1025                                                  ICE1712_PLAYBACK_START)) {
1026                 spin_unlock_irqrestore(&ice->reg_lock, flags);
1027                 return;
1028         }
1029         if (!force && is_pro_rate_locked(ice)) {
1030                 spin_unlock_irqrestore(&ice->reg_lock, flags);
1031                 return;
1032         }
1033
1034         switch (rate) {
1035         case 8000: val = 6; break;
1036         case 9600: val = 3; break;
1037         case 11025: val = 10; break;
1038         case 12000: val = 2; break;
1039         case 16000: val = 5; break;
1040         case 22050: val = 9; break;
1041         case 24000: val = 1; break;
1042         case 32000: val = 4; break;
1043         case 44100: val = 8; break;
1044         case 48000: val = 0; break;
1045         case 64000: val = 15; break;
1046         case 88200: val = 11; break;
1047         case 96000: val = 7; break;
1048         default:
1049                 snd_BUG();
1050                 val = 0;
1051                 rate = 48000;
1052                 break;
1053         }
1054         outb(val, ICEMT(ice, RATE));
1055
1056         spin_unlock_irqrestore(&ice->reg_lock, flags);
1057
1058         if (ice->gpio.set_pro_rate)
1059                 ice->gpio.set_pro_rate(ice, rate);
1060         for (i = 0; i < ice->akm_codecs; i++) {
1061                 if (ice->akm[i].ops.set_rate_val)
1062                         ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
1063         }
1064         if (ice->spdif.ops.setup_rate)
1065                 ice->spdif.ops.setup_rate(ice, rate);
1066 }
1067
1068 static int snd_ice1712_playback_pro_prepare(snd_pcm_substream_t * substream)
1069 {
1070         ice1712_t *ice = snd_pcm_substream_chip(substream);
1071
1072         ice->playback_pro_size = snd_pcm_lib_buffer_bytes(substream);
1073         spin_lock(&ice->reg_lock);
1074         outl(substream->runtime->dma_addr, ICEMT(ice, PLAYBACK_ADDR));
1075         outw((ice->playback_pro_size >> 2) - 1, ICEMT(ice, PLAYBACK_SIZE));
1076         outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1, ICEMT(ice, PLAYBACK_COUNT));
1077         spin_unlock(&ice->reg_lock);
1078
1079         return 0;
1080 }
1081
1082 static int snd_ice1712_playback_pro_hw_params(snd_pcm_substream_t * substream,
1083                                               snd_pcm_hw_params_t * hw_params)
1084 {
1085         ice1712_t *ice = snd_pcm_substream_chip(substream);
1086
1087         snd_ice1712_set_pro_rate(ice, params_rate(hw_params), 0);
1088         return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
1089 }
1090
1091 static int snd_ice1712_capture_pro_prepare(snd_pcm_substream_t * substream)
1092 {
1093         ice1712_t *ice = snd_pcm_substream_chip(substream);
1094
1095         ice->capture_pro_size = snd_pcm_lib_buffer_bytes(substream);
1096         spin_lock(&ice->reg_lock);
1097         outl(substream->runtime->dma_addr, ICEMT(ice, CAPTURE_ADDR));
1098         outw((ice->capture_pro_size >> 2) - 1, ICEMT(ice, CAPTURE_SIZE));
1099         outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1, ICEMT(ice, CAPTURE_COUNT));
1100         spin_unlock(&ice->reg_lock);
1101         return 0;
1102 }
1103
1104 static int snd_ice1712_capture_pro_hw_params(snd_pcm_substream_t * substream,
1105                                              snd_pcm_hw_params_t * hw_params)
1106 {
1107         ice1712_t *ice = snd_pcm_substream_chip(substream);
1108
1109         snd_ice1712_set_pro_rate(ice, params_rate(hw_params), 0);
1110         return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
1111 }
1112
1113 static snd_pcm_uframes_t snd_ice1712_playback_pro_pointer(snd_pcm_substream_t * substream)
1114 {
1115         ice1712_t *ice = snd_pcm_substream_chip(substream);
1116         size_t ptr;
1117
1118         if (!(inl(ICEMT(ice, PLAYBACK_CONTROL)) & ICE1712_PLAYBACK_START))
1119                 return 0;
1120         ptr = ice->playback_pro_size - (inw(ICEMT(ice, PLAYBACK_SIZE)) << 2);
1121         if (ptr == substream->runtime->buffer_size)
1122                 ptr = 0;
1123         return bytes_to_frames(substream->runtime, ptr);
1124 }
1125
1126 static snd_pcm_uframes_t snd_ice1712_capture_pro_pointer(snd_pcm_substream_t * substream)
1127 {
1128         ice1712_t *ice = snd_pcm_substream_chip(substream);
1129         size_t ptr;
1130
1131         if (!(inl(ICEMT(ice, PLAYBACK_CONTROL)) & ICE1712_CAPTURE_START_SHADOW))
1132                 return 0;
1133         ptr = ice->capture_pro_size - (inw(ICEMT(ice, CAPTURE_SIZE)) << 2);
1134         if (ptr == substream->runtime->buffer_size)
1135                 ptr = 0;
1136         return bytes_to_frames(substream->runtime, ptr);
1137 }
1138
1139 static snd_pcm_hardware_t snd_ice1712_playback_pro =
1140 {
1141         .info =                 (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1142                                  SNDRV_PCM_INFO_BLOCK_TRANSFER |
1143                                  SNDRV_PCM_INFO_MMAP_VALID |
1144                                  SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
1145         .formats =              SNDRV_PCM_FMTBIT_S32_LE,
1146         .rates =                SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_96000,
1147         .rate_min =             4000,
1148         .rate_max =             96000,
1149         .channels_min =         10,
1150         .channels_max =         10,
1151         .buffer_bytes_max =     (256*1024),
1152         .period_bytes_min =     10 * 4 * 2,
1153         .period_bytes_max =     131040,
1154         .periods_min =          1,
1155         .periods_max =          1024,
1156         .fifo_size =            0,
1157 };
1158
1159 static snd_pcm_hardware_t snd_ice1712_capture_pro =
1160 {
1161         .info =                 (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1162                                  SNDRV_PCM_INFO_BLOCK_TRANSFER |
1163                                  SNDRV_PCM_INFO_MMAP_VALID |
1164                                  SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
1165         .formats =              SNDRV_PCM_FMTBIT_S32_LE,
1166         .rates =                SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_96000,
1167         .rate_min =             4000,
1168         .rate_max =             96000,
1169         .channels_min =         12,
1170         .channels_max =         12,
1171         .buffer_bytes_max =     (256*1024),
1172         .period_bytes_min =     12 * 4 * 2,
1173         .period_bytes_max =     131040,
1174         .periods_min =          1,
1175         .periods_max =          1024,
1176         .fifo_size =            0,
1177 };
1178
1179 static int snd_ice1712_playback_pro_open(snd_pcm_substream_t * substream)
1180 {
1181         snd_pcm_runtime_t *runtime = substream->runtime;
1182         ice1712_t *ice = snd_pcm_substream_chip(substream);
1183
1184         ice->playback_pro_substream = substream;
1185         runtime->hw = snd_ice1712_playback_pro;
1186         snd_pcm_set_sync(substream);
1187         snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1188         snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
1189
1190         if (ice->spdif.ops.open)
1191                 ice->spdif.ops.open(ice, substream);
1192
1193         return 0;
1194 }
1195
1196 static int snd_ice1712_capture_pro_open(snd_pcm_substream_t * substream)
1197 {
1198         ice1712_t *ice = snd_pcm_substream_chip(substream);
1199         snd_pcm_runtime_t *runtime = substream->runtime;
1200
1201         ice->capture_pro_substream = substream;
1202         runtime->hw = snd_ice1712_capture_pro;
1203         snd_pcm_set_sync(substream);
1204         snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1205         snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
1206         return 0;
1207 }
1208
1209 static int snd_ice1712_playback_pro_close(snd_pcm_substream_t * substream)
1210 {
1211         ice1712_t *ice = snd_pcm_substream_chip(substream);
1212
1213         if (PRO_RATE_RESET)
1214                 snd_ice1712_set_pro_rate(ice, PRO_RATE_DEFAULT, 0);
1215         ice->playback_pro_substream = NULL;
1216         if (ice->spdif.ops.close)
1217                 ice->spdif.ops.close(ice, substream);
1218
1219         return 0;
1220 }
1221
1222 static int snd_ice1712_capture_pro_close(snd_pcm_substream_t * substream)
1223 {
1224         ice1712_t *ice = snd_pcm_substream_chip(substream);
1225
1226         if (PRO_RATE_RESET)
1227                 snd_ice1712_set_pro_rate(ice, PRO_RATE_DEFAULT, 0);
1228         ice->capture_pro_substream = NULL;
1229         return 0;
1230 }
1231
1232 static void snd_ice1712_pcm_profi_free(snd_pcm_t *pcm)
1233 {
1234         ice1712_t *ice = snd_magic_cast(ice1712_t, pcm->private_data, return);
1235         ice->pcm_pro = NULL;
1236         snd_pcm_lib_preallocate_free_for_all(pcm);
1237 }
1238
1239 static snd_pcm_ops_t snd_ice1712_playback_pro_ops = {
1240         .open =         snd_ice1712_playback_pro_open,
1241         .close =        snd_ice1712_playback_pro_close,
1242         .ioctl =        snd_pcm_lib_ioctl,
1243         .hw_params =    snd_ice1712_playback_pro_hw_params,
1244         .hw_free =      snd_ice1712_hw_free,
1245         .prepare =      snd_ice1712_playback_pro_prepare,
1246         .trigger =      snd_ice1712_pro_trigger,
1247         .pointer =      snd_ice1712_playback_pro_pointer,
1248 };
1249
1250 static snd_pcm_ops_t snd_ice1712_capture_pro_ops = {
1251         .open =         snd_ice1712_capture_pro_open,
1252         .close =        snd_ice1712_capture_pro_close,
1253         .ioctl =        snd_pcm_lib_ioctl,
1254         .hw_params =    snd_ice1712_capture_pro_hw_params,
1255         .hw_free =      snd_ice1712_hw_free,
1256         .prepare =      snd_ice1712_capture_pro_prepare,
1257         .trigger =      snd_ice1712_pro_trigger,
1258         .pointer =      snd_ice1712_capture_pro_pointer,
1259 };
1260
1261 static int __devinit snd_ice1712_pcm_profi(ice1712_t * ice, int device, snd_pcm_t ** rpcm)
1262 {
1263         snd_pcm_t *pcm;
1264         int err;
1265
1266         if (rpcm)
1267                 *rpcm = NULL;
1268         err = snd_pcm_new(ice->card, "ICE1712 multi", device, 1, 1, &pcm);
1269         if (err < 0)
1270                 return err;
1271
1272         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ice1712_playback_pro_ops);
1273         snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ice1712_capture_pro_ops);
1274
1275         pcm->private_data = ice;
1276         pcm->private_free = snd_ice1712_pcm_profi_free;
1277         pcm->info_flags = 0;
1278         strcpy(pcm->name, "ICE1712 multi");
1279
1280         snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1281                                               snd_dma_pci_data(ice->pci), 256*1024, 256*1024);
1282
1283         ice->pcm_pro = pcm;
1284         if (rpcm)
1285                 *rpcm = pcm;
1286         
1287         if (ice->cs8427) {
1288                 /* assign channels to iec958 */
1289                 err = snd_cs8427_iec958_build(ice->cs8427,
1290                                               pcm->streams[0].substream,
1291                                               pcm->streams[1].substream);
1292                 if (err < 0)
1293                         return err;
1294         }
1295
1296         if ((err = snd_ice1712_build_pro_mixer(ice)) < 0)
1297                 return err;
1298         return 0;
1299 }
1300
1301 /*
1302  *  Mixer section
1303  */
1304
1305 static void snd_ice1712_update_volume(ice1712_t *ice, int index)
1306 {
1307         unsigned int vol = ice->pro_volumes[index];
1308         unsigned short val = 0;
1309
1310         val |= (vol & 0x8000) == 0 ? (96 - (vol & 0x7f)) : 0x7f;
1311         val |= ((vol & 0x80000000) == 0 ? (96 - ((vol >> 16) & 0x7f)) : 0x7f) << 8;
1312         outb(index, ICEMT(ice, MONITOR_INDEX));
1313         outw(val, ICEMT(ice, MONITOR_VOLUME));
1314 }
1315
1316 static int snd_ice1712_pro_mixer_switch_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1317 {
1318         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1319         uinfo->count = 2;
1320         uinfo->value.integer.min = 0;
1321         uinfo->value.integer.max = 1;
1322         return 0;
1323 }
1324
1325 static int snd_ice1712_pro_mixer_switch_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1326 {
1327         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1328         int index = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) + kcontrol->private_value;
1329         
1330         spin_lock_irq(&ice->reg_lock);
1331         ucontrol->value.integer.value[0] = !((ice->pro_volumes[index] >> 15) & 1);
1332         ucontrol->value.integer.value[1] = !((ice->pro_volumes[index] >> 31) & 1);
1333         spin_unlock_irq(&ice->reg_lock);
1334         return 0;
1335 }
1336
1337 static int snd_ice1712_pro_mixer_switch_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1338 {
1339         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1340         int index = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) + kcontrol->private_value;
1341         unsigned int nval, change;
1342
1343         nval = (ucontrol->value.integer.value[0] ? 0 : 0x00008000) |
1344                (ucontrol->value.integer.value[1] ? 0 : 0x80000000);
1345         spin_lock_irq(&ice->reg_lock);
1346         nval |= ice->pro_volumes[index] & ~0x80008000;
1347         change = nval != ice->pro_volumes[index];
1348         ice->pro_volumes[index] = nval;
1349         snd_ice1712_update_volume(ice, index);
1350         spin_unlock_irq(&ice->reg_lock);
1351         return change;
1352 }
1353
1354 static int snd_ice1712_pro_mixer_volume_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1355 {
1356         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1357         uinfo->count = 2;
1358         uinfo->value.integer.min = 0;
1359         uinfo->value.integer.max = 96;
1360         return 0;
1361 }
1362
1363 static int snd_ice1712_pro_mixer_volume_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1364 {
1365         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1366         int index = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) + kcontrol->private_value;
1367         
1368         spin_lock_irq(&ice->reg_lock);
1369         ucontrol->value.integer.value[0] = (ice->pro_volumes[index] >> 0) & 127;
1370         ucontrol->value.integer.value[1] = (ice->pro_volumes[index] >> 16) & 127;
1371         spin_unlock_irq(&ice->reg_lock);
1372         return 0;
1373 }
1374
1375 static int snd_ice1712_pro_mixer_volume_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1376 {
1377         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1378         int index = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) + kcontrol->private_value;
1379         unsigned int nval, change;
1380
1381         nval = (ucontrol->value.integer.value[0] & 127) |
1382                ((ucontrol->value.integer.value[1] & 127) << 16);
1383         spin_lock_irq(&ice->reg_lock);
1384         nval |= ice->pro_volumes[index] & ~0x007f007f;
1385         change = nval != ice->pro_volumes[index];
1386         ice->pro_volumes[index] = nval;
1387         snd_ice1712_update_volume(ice, index);
1388         spin_unlock_irq(&ice->reg_lock);
1389         return change;
1390 }
1391
1392
1393 static snd_kcontrol_new_t snd_ice1712_multi_playback_ctrls[] __devinitdata = {
1394         {
1395                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1396                 .name = "Multi Playback Switch",
1397                 .info = snd_ice1712_pro_mixer_switch_info,
1398                 .get = snd_ice1712_pro_mixer_switch_get,
1399                 .put = snd_ice1712_pro_mixer_switch_put,
1400                 .private_value = 0,
1401                 .count = 10,
1402         },
1403         {
1404                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1405                 .name = "Multi Playback Volume",
1406                 .info = snd_ice1712_pro_mixer_volume_info,
1407                 .get = snd_ice1712_pro_mixer_volume_get,
1408                 .put = snd_ice1712_pro_mixer_volume_put,
1409                 .private_value = 0,
1410                 .count = 10,
1411         },
1412 };
1413
1414 static snd_kcontrol_new_t snd_ice1712_multi_capture_analog_switch __devinitdata = {
1415         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1416         .name = "H/W Multi Capture Switch",
1417         .info = snd_ice1712_pro_mixer_switch_info,
1418         .get = snd_ice1712_pro_mixer_switch_get,
1419         .put = snd_ice1712_pro_mixer_switch_put,
1420         .private_value = 10,
1421 };
1422
1423 static snd_kcontrol_new_t snd_ice1712_multi_capture_spdif_switch __devinitdata = {
1424         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1425         .name = "IEC958 Multi Capture Switch",
1426         .info = snd_ice1712_pro_mixer_switch_info,
1427         .get = snd_ice1712_pro_mixer_switch_get,
1428         .put = snd_ice1712_pro_mixer_switch_put,
1429         .private_value = 18,
1430         .count = 2,
1431 };
1432
1433 static snd_kcontrol_new_t snd_ice1712_multi_capture_analog_volume __devinitdata = {
1434         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1435         .name = "H/W Multi Capture Volume",
1436         .info = snd_ice1712_pro_mixer_volume_info,
1437         .get = snd_ice1712_pro_mixer_volume_get,
1438         .put = snd_ice1712_pro_mixer_volume_put,
1439         .private_value = 10,
1440 };
1441
1442 static snd_kcontrol_new_t snd_ice1712_multi_capture_spdif_volume __devinitdata = {
1443         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1444         .name = "IEC958 Multi Capture Volume",
1445         .info = snd_ice1712_pro_mixer_volume_info,
1446         .get = snd_ice1712_pro_mixer_volume_get,
1447         .put = snd_ice1712_pro_mixer_volume_put,
1448         .private_value = 18,
1449         .count = 2,
1450 };
1451
1452 static int __devinit snd_ice1712_build_pro_mixer(ice1712_t *ice)
1453 {
1454         snd_card_t * card = ice->card;
1455         unsigned int idx;
1456         int err;
1457
1458         /* multi-channel mixer */
1459         for (idx = 0; idx < ARRAY_SIZE(snd_ice1712_multi_playback_ctrls); idx++) {
1460                 err = snd_ctl_add(card, snd_ctl_new1(&snd_ice1712_multi_playback_ctrls[idx], ice));
1461                 if (err < 0)
1462                         return err;
1463         }
1464         
1465         if (ice->num_total_adcs > 0) {
1466                 snd_kcontrol_new_t tmp = snd_ice1712_multi_capture_analog_switch;
1467                 tmp.count = ice->num_total_adcs;
1468                 err = snd_ctl_add(card, snd_ctl_new1(&tmp, ice));
1469                 if (err < 0)
1470                         return err;
1471         }
1472
1473         err = snd_ctl_add(card, snd_ctl_new1(&snd_ice1712_multi_capture_spdif_switch, ice));
1474         if (err < 0)
1475                 return err;
1476
1477         if (ice->num_total_adcs > 0) {
1478                 snd_kcontrol_new_t tmp = snd_ice1712_multi_capture_analog_volume;
1479                 tmp.count = ice->num_total_adcs;
1480                 err = snd_ctl_add(card, snd_ctl_new1(&tmp, ice));
1481                 if (err < 0)
1482                         return err;
1483         }
1484
1485         err = snd_ctl_add(card, snd_ctl_new1(&snd_ice1712_multi_capture_spdif_volume, ice));
1486         if (err < 0)
1487                 return err;
1488
1489         /* initialize volumes */
1490         for (idx = 0; idx < 10; idx++) {
1491                 ice->pro_volumes[idx] = 0x80008000;     /* mute */
1492                 snd_ice1712_update_volume(ice, idx);
1493         }
1494         for (idx = 10; idx < 10 + ice->num_total_adcs; idx++) {
1495                 ice->pro_volumes[idx] = 0x80008000;     /* mute */
1496                 snd_ice1712_update_volume(ice, idx);
1497         }
1498         for (idx = 18; idx < 20; idx++) {
1499                 ice->pro_volumes[idx] = 0x80008000;     /* mute */
1500                 snd_ice1712_update_volume(ice, idx);
1501         }
1502         return 0;
1503 }
1504
1505 static void snd_ice1712_mixer_free_ac97(ac97_t *ac97)
1506 {
1507         ice1712_t *ice = snd_magic_cast(ice1712_t, ac97->private_data, return);
1508         ice->ac97 = NULL;
1509 }
1510
1511 static int __devinit snd_ice1712_ac97_mixer(ice1712_t * ice)
1512 {
1513         int err;
1514         ac97_t ac97;
1515         ac97_bus_t bus, *pbus;
1516
1517         if (ice_has_con_ac97(ice)) {
1518                 memset(&bus, 0, sizeof(bus));
1519                 bus.write = snd_ice1712_ac97_write;
1520                 bus.read = snd_ice1712_ac97_read;
1521                 if ((err = snd_ac97_bus(ice->card, &bus, &pbus)) < 0)
1522                         return err;
1523                 memset(&ac97, 0, sizeof(ac97));
1524                 ac97.private_data = ice;
1525                 ac97.private_free = snd_ice1712_mixer_free_ac97;
1526                 if ((err = snd_ac97_mixer(pbus, &ac97, &ice->ac97)) < 0)
1527                         printk(KERN_WARNING "ice1712: cannot initialize ac97 for consumer, skipped\n");
1528                 else {
1529                         if ((err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_mixer_digmix_route_ac97, ice))) < 0)
1530                                 return err;
1531                         return 0;
1532                 }
1533         }
1534
1535         if (! (ice->eeprom.data[ICE_EEP1_ACLINK] & ICE1712_CFG_PRO_I2S)) {
1536                 memset(&bus, 0, sizeof(bus));
1537                 bus.write = snd_ice1712_pro_ac97_write;
1538                 bus.read = snd_ice1712_pro_ac97_read;
1539                 if ((err = snd_ac97_bus(ice->card, &bus, &pbus)) < 0)
1540                         return err;
1541                 memset(&ac97, 0, sizeof(ac97));
1542                 ac97.private_data = ice;
1543                 ac97.private_free = snd_ice1712_mixer_free_ac97;
1544                 if ((err = snd_ac97_mixer(pbus, &ac97, &ice->ac97)) < 0)
1545                         printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
1546                 else
1547                         return 0;
1548         }
1549         /* I2S mixer only */
1550         strcat(ice->card->mixername, "ICE1712 - multitrack");
1551         return 0;
1552 }
1553
1554 /*
1555  *
1556  */
1557
1558 static inline unsigned int eeprom_double(ice1712_t *ice, int idx)
1559 {
1560         return (unsigned int)ice->eeprom.data[idx] | ((unsigned int)ice->eeprom.data[idx + 1] << 8);
1561 }
1562
1563 static void snd_ice1712_proc_read(snd_info_entry_t *entry, 
1564                                   snd_info_buffer_t * buffer)
1565 {
1566         ice1712_t *ice = snd_magic_cast(ice1712_t, entry->private_data, return);
1567         unsigned int idx;
1568
1569         snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1570         snd_iprintf(buffer, "EEPROM:\n");
1571
1572         snd_iprintf(buffer, "  Subvendor        : 0x%x\n", ice->eeprom.subvendor);
1573         snd_iprintf(buffer, "  Size             : %i bytes\n", ice->eeprom.size);
1574         snd_iprintf(buffer, "  Version          : %i\n", ice->eeprom.version);
1575         snd_iprintf(buffer, "  Codec            : 0x%x\n", ice->eeprom.data[ICE_EEP1_CODEC]);
1576         snd_iprintf(buffer, "  ACLink           : 0x%x\n", ice->eeprom.data[ICE_EEP1_ACLINK]);
1577         snd_iprintf(buffer, "  I2S ID           : 0x%x\n", ice->eeprom.data[ICE_EEP1_I2SID]);
1578         snd_iprintf(buffer, "  S/PDIF           : 0x%x\n", ice->eeprom.data[ICE_EEP1_SPDIF]);
1579         snd_iprintf(buffer, "  GPIO mask        : 0x%x\n", ice->eeprom.gpiomask);
1580         snd_iprintf(buffer, "  GPIO state       : 0x%x\n", ice->eeprom.gpiostate);
1581         snd_iprintf(buffer, "  GPIO direction   : 0x%x\n", ice->eeprom.gpiodir);
1582         snd_iprintf(buffer, "  AC'97 main       : 0x%x\n", eeprom_double(ice, ICE_EEP1_AC97_MAIN_LO));
1583         snd_iprintf(buffer, "  AC'97 pcm        : 0x%x\n", eeprom_double(ice, ICE_EEP1_AC97_PCM_LO));
1584         snd_iprintf(buffer, "  AC'97 record     : 0x%x\n", eeprom_double(ice, ICE_EEP1_AC97_REC_LO));
1585         snd_iprintf(buffer, "  AC'97 record src : 0x%x\n", ice->eeprom.data[ICE_EEP1_AC97_RECSRC]);
1586         for (idx = 0; idx < 4; idx++)
1587                 snd_iprintf(buffer, "  DAC ID #%i        : 0x%x\n", idx, ice->eeprom.data[ICE_EEP1_DAC_ID + idx]);
1588         for (idx = 0; idx < 4; idx++)
1589                 snd_iprintf(buffer, "  ADC ID #%i        : 0x%x\n", idx, ice->eeprom.data[ICE_EEP1_ADC_ID + idx]);
1590         for (idx = 0x1c; idx < ice->eeprom.size; idx++)
1591                 snd_iprintf(buffer, "  Extra #%02i        : 0x%x\n", idx, ice->eeprom.data[idx]);
1592
1593         snd_iprintf(buffer, "\nRegisters:\n");
1594         snd_iprintf(buffer, "  PSDOUT03         : 0x%04x\n", (unsigned)inw(ICEMT(ice, ROUTE_PSDOUT03)));
1595         snd_iprintf(buffer, "  CAPTURE          : 0x%08x\n", inl(ICEMT(ice, ROUTE_CAPTURE)));
1596         snd_iprintf(buffer, "  SPDOUT           : 0x%04x\n", (unsigned)inw(ICEMT(ice, ROUTE_SPDOUT)));
1597         snd_iprintf(buffer, "  RATE             : 0x%02x\n", (unsigned)inb(ICEMT(ice, RATE)));
1598 }
1599
1600 static void __devinit snd_ice1712_proc_init(ice1712_t * ice)
1601 {
1602         snd_info_entry_t *entry;
1603
1604         if (! snd_card_proc_new(ice->card, "ice1712", &entry))
1605                 snd_info_set_text_ops(entry, ice, 1024, snd_ice1712_proc_read);
1606 }
1607
1608 /*
1609  *
1610  */
1611
1612 static int snd_ice1712_eeprom_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1613 {
1614         uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
1615         uinfo->count = sizeof(ice1712_eeprom_t);
1616         return 0;
1617 }
1618
1619 static int snd_ice1712_eeprom_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1620 {
1621         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1622         
1623         memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1624         return 0;
1625 }
1626
1627 static snd_kcontrol_new_t snd_ice1712_eeprom __devinitdata = {
1628         .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1629         .name = "ICE1712 EEPROM",
1630         .access = SNDRV_CTL_ELEM_ACCESS_READ,
1631         .info = snd_ice1712_eeprom_info,
1632         .get = snd_ice1712_eeprom_get
1633 };
1634
1635 /*
1636  */
1637 static int snd_ice1712_spdif_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1638 {
1639         uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1640         uinfo->count = 1;
1641         return 0;
1642 }
1643
1644 static int snd_ice1712_spdif_default_get(snd_kcontrol_t * kcontrol,
1645                                          snd_ctl_elem_value_t * ucontrol)
1646 {
1647         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1648         if (ice->spdif.ops.default_get)
1649                 ice->spdif.ops.default_get(ice, ucontrol); 
1650         return 0;
1651 }
1652
1653 static int snd_ice1712_spdif_default_put(snd_kcontrol_t * kcontrol,
1654                                          snd_ctl_elem_value_t * ucontrol)
1655 {
1656         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1657         if (ice->spdif.ops.default_put)
1658                 return ice->spdif.ops.default_put(ice, ucontrol);
1659         return 0;
1660 }
1661
1662 static snd_kcontrol_new_t snd_ice1712_spdif_default __devinitdata =
1663 {
1664         .iface =        SNDRV_CTL_ELEM_IFACE_PCM,
1665         .name =         SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1666         .info =         snd_ice1712_spdif_info,
1667         .get =          snd_ice1712_spdif_default_get,
1668         .put =          snd_ice1712_spdif_default_put
1669 };
1670
1671 static int snd_ice1712_spdif_maskc_get(snd_kcontrol_t * kcontrol,
1672                                        snd_ctl_elem_value_t * ucontrol)
1673 {
1674         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1675         if (ice->spdif.ops.default_get) {
1676                 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1677                                                      IEC958_AES0_PROFESSIONAL |
1678                                                      IEC958_AES0_CON_NOT_COPYRIGHT |
1679                                                      IEC958_AES0_CON_EMPHASIS;
1680                 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1681                                                      IEC958_AES1_CON_CATEGORY;
1682                 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1683         } else {
1684                 ucontrol->value.iec958.status[0] = 0xff;
1685                 ucontrol->value.iec958.status[1] = 0xff;
1686                 ucontrol->value.iec958.status[2] = 0xff;
1687                 ucontrol->value.iec958.status[3] = 0xff;
1688                 ucontrol->value.iec958.status[4] = 0xff;
1689         }
1690         return 0;
1691 }
1692
1693 static int snd_ice1712_spdif_maskp_get(snd_kcontrol_t * kcontrol,
1694                                        snd_ctl_elem_value_t * ucontrol)
1695 {
1696         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1697         if (ice->spdif.ops.default_get) {
1698                 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1699                                                      IEC958_AES0_PROFESSIONAL |
1700                                                      IEC958_AES0_PRO_FS |
1701                                                      IEC958_AES0_PRO_EMPHASIS;
1702                 ucontrol->value.iec958.status[1] = IEC958_AES1_PRO_MODE;
1703         } else {
1704                 ucontrol->value.iec958.status[0] = 0xff;
1705                 ucontrol->value.iec958.status[1] = 0xff;
1706                 ucontrol->value.iec958.status[2] = 0xff;
1707                 ucontrol->value.iec958.status[3] = 0xff;
1708                 ucontrol->value.iec958.status[4] = 0xff;
1709         }
1710         return 0;
1711 }
1712
1713 static snd_kcontrol_new_t snd_ice1712_spdif_maskc __devinitdata =
1714 {
1715         .access =       SNDRV_CTL_ELEM_ACCESS_READ,
1716         .iface =        SNDRV_CTL_ELEM_IFACE_MIXER,
1717         .name =         SNDRV_CTL_NAME_IEC958("",PLAYBACK,CON_MASK),
1718         .info =         snd_ice1712_spdif_info,
1719         .get =          snd_ice1712_spdif_maskc_get,
1720 };
1721
1722 static snd_kcontrol_new_t snd_ice1712_spdif_maskp __devinitdata =
1723 {
1724         .access =       SNDRV_CTL_ELEM_ACCESS_READ,
1725         .iface =        SNDRV_CTL_ELEM_IFACE_MIXER,
1726         .name =         SNDRV_CTL_NAME_IEC958("",PLAYBACK,PRO_MASK),
1727         .info =         snd_ice1712_spdif_info,
1728         .get =          snd_ice1712_spdif_maskp_get,
1729 };
1730
1731 static int snd_ice1712_spdif_stream_get(snd_kcontrol_t * kcontrol,
1732                                         snd_ctl_elem_value_t * ucontrol)
1733 {
1734         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1735         if (ice->spdif.ops.stream_get)
1736                 ice->spdif.ops.stream_get(ice, ucontrol);
1737         return 0;
1738 }
1739
1740 static int snd_ice1712_spdif_stream_put(snd_kcontrol_t * kcontrol,
1741                                         snd_ctl_elem_value_t * ucontrol)
1742 {
1743         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1744         if (ice->spdif.ops.stream_put)
1745                 return ice->spdif.ops.stream_put(ice, ucontrol);
1746         return 0;
1747 }
1748
1749 static snd_kcontrol_new_t snd_ice1712_spdif_stream __devinitdata =
1750 {
1751         .access =       SNDRV_CTL_ELEM_ACCESS_READWRITE | SNDRV_CTL_ELEM_ACCESS_INACTIVE,
1752         .iface =        SNDRV_CTL_ELEM_IFACE_PCM,
1753         .name =         SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
1754         .info =         snd_ice1712_spdif_info,
1755         .get =          snd_ice1712_spdif_stream_get,
1756         .put =          snd_ice1712_spdif_stream_put
1757 };
1758
1759 int snd_ice1712_gpio_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1760 {
1761         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1762         uinfo->count = 1;
1763         uinfo->value.integer.min = 0;
1764         uinfo->value.integer.max = 1;
1765         return 0;
1766 }
1767
1768 int snd_ice1712_gpio_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1769 {
1770         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1771         unsigned char mask = kcontrol->private_value & 0xff;
1772         int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
1773         
1774         snd_ice1712_save_gpio_status(ice);
1775         ucontrol->value.integer.value[0] = (snd_ice1712_gpio_read(ice) & mask ? 1 : 0) ^ invert;
1776         snd_ice1712_restore_gpio_status(ice);
1777         return 0;
1778 }
1779
1780 int snd_ice1712_gpio_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1781 {
1782         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1783         unsigned char mask = kcontrol->private_value & 0xff;
1784         int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1785         unsigned int val, nval;
1786
1787         if (kcontrol->private_value & (1 << 31))
1788                 return -EPERM;
1789         nval = (ucontrol->value.integer.value[0] ? mask : 0) ^ invert;
1790         snd_ice1712_save_gpio_status(ice);
1791         val = snd_ice1712_gpio_read(ice);
1792         nval |= val & ~mask;
1793         if (val != nval)
1794                 snd_ice1712_gpio_write(ice, nval);
1795         snd_ice1712_restore_gpio_status(ice);
1796         return val != nval;
1797 }
1798
1799 /*
1800  *  rate
1801  */
1802 static int snd_ice1712_pro_internal_clock_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1803 {
1804         static char *texts[] = {
1805                 "8000",         /* 0: 6 */
1806                 "9600",         /* 1: 3 */
1807                 "11025",        /* 2: 10 */
1808                 "12000",        /* 3: 2 */
1809                 "16000",        /* 4: 5 */
1810                 "22050",        /* 5: 9 */
1811                 "24000",        /* 6: 1 */
1812                 "32000",        /* 7: 4 */
1813                 "44100",        /* 8: 8 */
1814                 "48000",        /* 9: 0 */
1815                 "64000",        /* 10: 15 */
1816                 "88200",        /* 11: 11 */
1817                 "96000",        /* 12: 7 */
1818                 "IEC958 Input", /* 13: -- */
1819         };
1820         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1821         uinfo->count = 1;
1822         uinfo->value.enumerated.items = 14;
1823         if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1824                 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1825         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1826         return 0;
1827 }
1828
1829 static int snd_ice1712_pro_internal_clock_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1830 {
1831         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1832         static unsigned char xlate[16] = {
1833                 9, 6, 3, 1, 7, 4, 0, 12, 8, 5, 2, 11, 255, 255, 255, 10
1834         };
1835         unsigned char val;
1836         
1837         spin_lock_irq(&ice->reg_lock);
1838         if (is_spdif_master(ice)) {
1839                 ucontrol->value.enumerated.item[0] = 13;
1840         } else {
1841                 val = xlate[inb(ICEMT(ice, RATE)) & 15];
1842                 if (val == 255) {
1843                         snd_BUG();
1844                         val = 0;
1845                 }
1846                 ucontrol->value.enumerated.item[0] = val;
1847         }
1848         spin_unlock_irq(&ice->reg_lock);
1849         return 0;
1850 }
1851
1852 static int snd_ice1712_pro_internal_clock_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1853 {
1854         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1855         static unsigned int xrate[13] = {
1856                 8000, 9600, 11025, 12000, 1600, 22050, 24000,
1857                 32000, 44100, 48000, 64000, 88200, 96000
1858         };
1859         unsigned char oval;
1860         int change = 0;
1861
1862         spin_lock_irq(&ice->reg_lock);
1863         oval = inb(ICEMT(ice, RATE));
1864         if (ucontrol->value.enumerated.item[0] == 13) {
1865                 outb(oval | ICE1712_SPDIF_MASTER, ICEMT(ice, RATE));
1866         } else {
1867                 PRO_RATE_DEFAULT = xrate[ucontrol->value.integer.value[0] % 13];
1868                 spin_unlock_irq(&ice->reg_lock);
1869                 snd_ice1712_set_pro_rate(ice, PRO_RATE_DEFAULT, 1);
1870                 spin_lock_irq(&ice->reg_lock);
1871         }
1872         change = inb(ICEMT(ice, RATE)) != oval;
1873         spin_unlock_irq(&ice->reg_lock);
1874
1875         if ((oval & ICE1712_SPDIF_MASTER) != (inb(ICEMT(ice, RATE)) & ICE1712_SPDIF_MASTER)) {
1876                 /* change CS8427 clock source too */
1877                 if (ice->cs8427) {
1878                         snd_ice1712_cs8427_set_input_clock(ice, is_spdif_master(ice));
1879                 }
1880                 /* notify ak4524 chip as well */
1881                 if (is_spdif_master(ice)) {
1882                         unsigned int i;
1883                         for (i = 0; i < ice->akm_codecs; i++) {
1884                                 if (ice->akm[i].ops.set_rate_val)
1885                                         ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
1886                         }
1887                 }
1888         }
1889
1890         return change;
1891 }
1892
1893 static snd_kcontrol_new_t snd_ice1712_pro_internal_clock __devinitdata = {
1894         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1895         .name = "Multi Track Internal Clock",
1896         .info = snd_ice1712_pro_internal_clock_info,
1897         .get = snd_ice1712_pro_internal_clock_get,
1898         .put = snd_ice1712_pro_internal_clock_put
1899 };
1900
1901 static int snd_ice1712_pro_rate_locking_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1902 {
1903         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1904         uinfo->count = 1;
1905         uinfo->value.integer.min = 0;
1906         uinfo->value.integer.max = 1;
1907         return 0;
1908 }
1909
1910 static int snd_ice1712_pro_rate_locking_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1911 {
1912         ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1913         return 0;
1914 }
1915
1916 static int snd_ice1712_pro_rate_locking_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1917 {
1918         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1919         int change = 0, nval;
1920
1921         nval = ucontrol->value.integer.value[0] ? 1 : 0;
1922         spin_lock_irq(&ice->reg_lock);
1923         change = PRO_RATE_LOCKED != nval;
1924         PRO_RATE_LOCKED = nval;
1925         spin_unlock_irq(&ice->reg_lock);
1926         return change;
1927 }
1928
1929 static snd_kcontrol_new_t snd_ice1712_pro_rate_locking __devinitdata = {
1930         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1931         .name = "Multi Track Rate Locking",
1932         .info = snd_ice1712_pro_rate_locking_info,
1933         .get = snd_ice1712_pro_rate_locking_get,
1934         .put = snd_ice1712_pro_rate_locking_put
1935 };
1936
1937 static int snd_ice1712_pro_rate_reset_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1938 {
1939         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
1940         uinfo->count = 1;
1941         uinfo->value.integer.min = 0;
1942         uinfo->value.integer.max = 1;
1943         return 0;
1944 }
1945
1946 static int snd_ice1712_pro_rate_reset_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1947 {
1948         ucontrol->value.integer.value[0] = PRO_RATE_RESET;
1949         return 0;
1950 }
1951
1952 static int snd_ice1712_pro_rate_reset_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
1953 {
1954         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1955         int change = 0, nval;
1956
1957         nval = ucontrol->value.integer.value[0] ? 1 : 0;
1958         spin_lock_irq(&ice->reg_lock);
1959         change = PRO_RATE_RESET != nval;
1960         PRO_RATE_RESET = nval;
1961         spin_unlock_irq(&ice->reg_lock);
1962         return change;
1963 }
1964
1965 static snd_kcontrol_new_t snd_ice1712_pro_rate_reset __devinitdata = {
1966         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1967         .name = "Multi Track Rate Reset",
1968         .info = snd_ice1712_pro_rate_reset_info,
1969         .get = snd_ice1712_pro_rate_reset_get,
1970         .put = snd_ice1712_pro_rate_reset_put
1971 };
1972
1973 /*
1974  * routing
1975  */
1976 static int snd_ice1712_pro_route_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
1977 {
1978         static char *texts[] = {
1979                 "PCM Out", /* 0 */
1980                 "H/W In 0", "H/W In 1", "H/W In 2", "H/W In 3", /* 1-4 */
1981                 "H/W In 4", "H/W In 5", "H/W In 6", "H/W In 7", /* 5-8 */
1982                 "IEC958 In L", "IEC958 In R", /* 9-10 */
1983                 "Digital Mixer", /* 11 - optional */
1984         };
1985         
1986         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1987         uinfo->count = 1;
1988         uinfo->value.enumerated.items = snd_ctl_get_ioffidx(kcontrol, &uinfo->id) < 2 ? 12 : 11;
1989         if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1990                 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1991         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1992         return 0;
1993 }
1994
1995 static int snd_ice1712_pro_route_analog_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t *ucontrol)
1996 {
1997         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
1998         int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1999         unsigned int val, cval;
2000
2001         spin_lock_irq(&ice->reg_lock);
2002         val = inw(ICEMT(ice, ROUTE_PSDOUT03));
2003         cval = inl(ICEMT(ice, ROUTE_CAPTURE));
2004         spin_unlock_irq(&ice->reg_lock);
2005
2006         val >>= ((idx % 2) * 8) + ((idx / 2) * 2);
2007         val &= 3;
2008         cval >>= ((idx / 2) * 8) + ((idx % 2) * 4);
2009         if (val == 1 && idx < 2)
2010                 ucontrol->value.enumerated.item[0] = 11;
2011         else if (val == 2)
2012                 ucontrol->value.enumerated.item[0] = (cval & 7) + 1;
2013         else if (val == 3)
2014                 ucontrol->value.enumerated.item[0] = ((cval >> 3) & 1) + 9;
2015         else
2016                 ucontrol->value.enumerated.item[0] = 0;
2017         return 0;
2018 }
2019
2020 static int snd_ice1712_pro_route_analog_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t *ucontrol)
2021 {
2022         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
2023         int change, shift;
2024         int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2025         unsigned int val, old_val, nval;
2026         
2027         /* update PSDOUT */
2028         if (ucontrol->value.enumerated.item[0] >= 11)
2029                 nval = idx < 2 ? 1 : 0; /* dig mixer (or pcm) */
2030         else if (ucontrol->value.enumerated.item[0] >= 9)
2031                 nval = 3; /* spdif in */
2032         else if (ucontrol->value.enumerated.item[0] >= 1)
2033                 nval = 2; /* analog in */
2034         else
2035                 nval = 0; /* pcm */
2036         shift = ((idx % 2) * 8) + ((idx / 2) * 2);
2037         spin_lock_irq(&ice->reg_lock);
2038         val = old_val = inw(ICEMT(ice, ROUTE_PSDOUT03));
2039         val &= ~(0x03 << shift);
2040         val |= nval << shift;
2041         change = val != old_val;
2042         if (change)
2043                 outw(val, ICEMT(ice, ROUTE_PSDOUT03));
2044         spin_unlock_irq(&ice->reg_lock);
2045         if (nval < 2) /* dig mixer of pcm */
2046                 return change;
2047
2048         /* update CAPTURE */
2049         spin_lock_irq(&ice->reg_lock);
2050         val = old_val = inl(ICEMT(ice, ROUTE_CAPTURE));
2051         shift = ((idx / 2) * 8) + ((idx % 2) * 4);
2052         if (nval == 2) { /* analog in */
2053                 nval = ucontrol->value.enumerated.item[0] - 1;
2054                 val &= ~(0x07 << shift);
2055                 val |= nval << shift;
2056         } else { /* spdif in */
2057                 nval = (ucontrol->value.enumerated.item[0] - 9) << 3;
2058                 val &= ~(0x08 << shift);
2059                 val |= nval << shift;
2060         }
2061         if (val != old_val) {
2062                 change = 1;
2063                 outl(val, ICEMT(ice, ROUTE_CAPTURE));
2064         }
2065         spin_unlock_irq(&ice->reg_lock);
2066         return change;
2067 }
2068
2069 static int snd_ice1712_pro_route_spdif_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t *ucontrol)
2070 {
2071         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
2072         int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2073         unsigned int val, cval;
2074         val = inw(ICEMT(ice, ROUTE_SPDOUT));
2075         cval = (val >> (idx * 4 + 8)) & 0x0f;
2076         val = (val >> (idx * 2)) & 0x03;
2077         if (val == 1)
2078                 ucontrol->value.enumerated.item[0] = 11;
2079         else if (val == 2)
2080                 ucontrol->value.enumerated.item[0] = (cval & 7) + 1;
2081         else if (val == 3)
2082                 ucontrol->value.enumerated.item[0] = ((cval >> 3) & 1) + 9;
2083         else
2084                 ucontrol->value.enumerated.item[0] = 0;
2085         return 0;
2086 }
2087
2088 static int snd_ice1712_pro_route_spdif_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t *ucontrol)
2089 {
2090         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
2091         int change, shift;
2092         int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2093         unsigned int val, old_val, nval;
2094         
2095         /* update SPDOUT */
2096         spin_lock_irq(&ice->reg_lock);
2097         val = old_val = inw(ICEMT(ice, ROUTE_SPDOUT));
2098         if (ucontrol->value.enumerated.item[0] >= 11)
2099                 nval = 1;
2100         else if (ucontrol->value.enumerated.item[0] >= 9)
2101                 nval = 3;
2102         else if (ucontrol->value.enumerated.item[0] >= 1)
2103                 nval = 2;
2104         else
2105                 nval = 0;
2106         shift = idx * 2;
2107         val &= ~(0x03 << shift);
2108         val |= nval << shift;
2109         shift = idx * 4 + 8;
2110         if (nval == 2) {
2111                 nval = ucontrol->value.enumerated.item[0] - 1;
2112                 val &= ~(0x07 << shift);
2113                 val |= nval << shift;
2114         } else if (nval == 3) {
2115                 nval = (ucontrol->value.enumerated.item[0] - 9) << 3;
2116                 val &= ~(0x08 << shift);
2117                 val |= nval << shift;
2118         }
2119         change = val != old_val;
2120         if (change)
2121                 outw(val, ICEMT(ice, ROUTE_SPDOUT));
2122         spin_unlock_irq(&ice->reg_lock);
2123         return change;
2124 }
2125
2126 static snd_kcontrol_new_t snd_ice1712_mixer_pro_analog_route __devinitdata = {
2127         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2128         .name = "H/W Playback Route",
2129         .info = snd_ice1712_pro_route_info,
2130         .get = snd_ice1712_pro_route_analog_get,
2131         .put = snd_ice1712_pro_route_analog_put,
2132 };
2133
2134 static snd_kcontrol_new_t snd_ice1712_mixer_pro_spdif_route __devinitdata = {
2135         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2136         .name = "IEC958 Playback Route",
2137         .info = snd_ice1712_pro_route_info,
2138         .get = snd_ice1712_pro_route_spdif_get,
2139         .put = snd_ice1712_pro_route_spdif_put,
2140         .count = 2,
2141 };
2142
2143
2144 static int snd_ice1712_pro_volume_rate_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
2145 {
2146         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2147         uinfo->count = 1;
2148         uinfo->value.integer.min = 0;
2149         uinfo->value.integer.max = 255;
2150         return 0;
2151 }
2152
2153 static int snd_ice1712_pro_volume_rate_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
2154 {
2155         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
2156         
2157         ucontrol->value.integer.value[0] = inb(ICEMT(ice, MONITOR_RATE));
2158         return 0;
2159 }
2160
2161 static int snd_ice1712_pro_volume_rate_put(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
2162 {
2163         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
2164         int change;
2165
2166         spin_lock_irq(&ice->reg_lock);
2167         change = inb(ICEMT(ice, MONITOR_RATE)) != ucontrol->value.integer.value[0];
2168         outb(ucontrol->value.integer.value[0], ICEMT(ice, MONITOR_RATE));
2169         spin_unlock_irq(&ice->reg_lock);
2170         return change;
2171 }
2172
2173 static snd_kcontrol_new_t snd_ice1712_mixer_pro_volume_rate __devinitdata = {
2174         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2175         .name = "Multi Track Volume Rate",
2176         .info = snd_ice1712_pro_volume_rate_info,
2177         .get = snd_ice1712_pro_volume_rate_get,
2178         .put = snd_ice1712_pro_volume_rate_put
2179 };
2180
2181 static int snd_ice1712_pro_peak_info(snd_kcontrol_t *kcontrol, snd_ctl_elem_info_t * uinfo)
2182 {
2183         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2184         uinfo->count = 22;
2185         uinfo->value.integer.min = 0;
2186         uinfo->value.integer.max = 255;
2187         return 0;
2188 }
2189
2190 static int snd_ice1712_pro_peak_get(snd_kcontrol_t * kcontrol, snd_ctl_elem_value_t * ucontrol)
2191 {
2192         ice1712_t *ice = snd_kcontrol_chip(kcontrol);
2193         int idx;
2194         
2195         spin_lock_irq(&ice->reg_lock);
2196         for (idx = 0; idx < 22; idx++) {
2197                 outb(idx, ICEMT(ice, MONITOR_PEAKINDEX));
2198                 ucontrol->value.integer.value[idx] = inb(ICEMT(ice, MONITOR_PEAKDATA));
2199         }
2200         spin_unlock_irq(&ice->reg_lock);
2201         return 0;
2202 }
2203
2204 static snd_kcontrol_new_t snd_ice1712_mixer_pro_peak __devinitdata = {
2205         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2206         .name = "Multi Track Peak",
2207         .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2208         .info = snd_ice1712_pro_peak_info,
2209         .get = snd_ice1712_pro_peak_get
2210 };
2211
2212 /*
2213  *
2214  */
2215
2216 static unsigned char __devinit snd_ice1712_read_i2c(ice1712_t *ice,
2217                                                  unsigned char dev,
2218                                                  unsigned char addr)
2219 {
2220         long t = 0x10000;
2221
2222         outb(addr, ICEREG(ice, I2C_BYTE_ADDR));
2223         outb(dev & ~ICE1712_I2C_WRITE, ICEREG(ice, I2C_DEV_ADDR));
2224         while (t-- > 0 && (inb(ICEREG(ice, I2C_CTRL)) & ICE1712_I2C_BUSY)) ;
2225         return inb(ICEREG(ice, I2C_DATA));
2226 }
2227
2228 static int __devinit snd_ice1712_read_eeprom(ice1712_t *ice)
2229 {
2230         int dev = 0xa0;         /* EEPROM device address */
2231         unsigned int i, size;
2232
2233         if ((inb(ICEREG(ice, I2C_CTRL)) & ICE1712_I2C_EEPROM) == 0) {
2234                 snd_printk("ICE1712 has not detected EEPROM\n");
2235                 return -EIO;
2236         }
2237         ice->eeprom.subvendor = (snd_ice1712_read_i2c(ice, dev, 0x00) << 0) |
2238                                 (snd_ice1712_read_i2c(ice, dev, 0x01) << 8) | 
2239                                 (snd_ice1712_read_i2c(ice, dev, 0x02) << 16) | 
2240                                 (snd_ice1712_read_i2c(ice, dev, 0x03) << 24);
2241         ice->eeprom.size = snd_ice1712_read_i2c(ice, dev, 0x04);
2242         if (ice->eeprom.size < 6)
2243                 ice->eeprom.size = 32; /* FIXME: any cards without the correct size? */
2244         else if (ice->eeprom.size > 32) {
2245                 snd_printk("invalid EEPROM (size = %i)\n", ice->eeprom.size);
2246                 return -EIO;
2247         }
2248         ice->eeprom.version = snd_ice1712_read_i2c(ice, dev, 0x05);
2249         if (ice->eeprom.version != 1) {
2250                 snd_printk("invalid EEPROM version %i\n", ice->eeprom.version);
2251                 /* return -EIO; */
2252         }
2253         size = ice->eeprom.size - 6;
2254         for (i = 0; i < size; i++)
2255                 ice->eeprom.data[i] = snd_ice1712_read_i2c(ice, dev, i + 6);
2256
2257         ice->eeprom.gpiomask = ice->eeprom.data[ICE_EEP1_GPIO_MASK];
2258         ice->eeprom.gpiostate = ice->eeprom.data[ICE_EEP1_GPIO_STATE];
2259         ice->eeprom.gpiodir = ice->eeprom.data[ICE_EEP1_GPIO_DIR];
2260
2261         return 0;
2262 }
2263
2264
2265
2266 static int __devinit snd_ice1712_chip_init(ice1712_t *ice)
2267 {
2268         outb(ICE1712_RESET | ICE1712_NATIVE, ICEREG(ice, CONTROL));
2269         udelay(200);
2270         outb(ICE1712_NATIVE, ICEREG(ice, CONTROL));
2271         udelay(200);
2272         pci_write_config_byte(ice->pci, 0x60, ice->eeprom.data[ICE_EEP1_CODEC]);
2273         pci_write_config_byte(ice->pci, 0x61, ice->eeprom.data[ICE_EEP1_ACLINK]);
2274         pci_write_config_byte(ice->pci, 0x62, ice->eeprom.data[ICE_EEP1_I2SID]);
2275         pci_write_config_byte(ice->pci, 0x63, ice->eeprom.data[ICE_EEP1_SPDIF]);
2276         if (ice->eeprom.subvendor != ICE1712_SUBDEVICE_STDSP24) {
2277                 ice->gpio.write_mask = ice->eeprom.gpiomask;
2278                 ice->gpio.direction = ice->eeprom.gpiodir;
2279                 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, ice->eeprom.gpiomask);
2280                 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, ice->eeprom.gpiodir);
2281                 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, ice->eeprom.gpiostate);
2282         } else {
2283                 ice->gpio.write_mask = 0xc0;
2284                 ice->gpio.direction = 0xff;
2285                 snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, 0xc0);
2286                 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, 0xff);
2287                 snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, ICE1712_STDSP24_CLOCK_BIT);
2288         }
2289         snd_ice1712_write(ice, ICE1712_IREG_PRO_POWERDOWN, 0);
2290         if (!(ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_NO_CON_AC97)) {
2291                 outb(ICE1712_AC97_WARM, ICEREG(ice, AC97_CMD));
2292                 udelay(100);
2293                 outb(0, ICEREG(ice, AC97_CMD));
2294                 udelay(200);
2295                 snd_ice1712_write(ice, ICE1712_IREG_CONSUMER_POWERDOWN, 0);
2296         }
2297
2298         return 0;
2299 }
2300
2301 int __devinit snd_ice1712_spdif_build_controls(ice1712_t *ice)
2302 {
2303         int err;
2304         snd_kcontrol_t *kctl;
2305
2306         snd_assert(ice->pcm_pro != NULL, return -EIO);
2307         err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_default, ice));
2308         if (err < 0)
2309                 return err;
2310         kctl->id.device = ice->pcm_pro->device;
2311         err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskc, ice));
2312         if (err < 0)
2313                 return err;
2314         kctl->id.device = ice->pcm_pro->device;
2315         err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskp, ice));
2316         if (err < 0)
2317                 return err;
2318         kctl->id.device = ice->pcm_pro->device;
2319         err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_stream, ice));
2320         if (err < 0)
2321                 return err;
2322         kctl->id.device = ice->pcm_pro->device;
2323         ice->spdif.stream_ctl = kctl;
2324         return 0;
2325 }
2326
2327
2328 static int __devinit snd_ice1712_build_controls(ice1712_t *ice)
2329 {
2330         int err;
2331
2332         err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_eeprom, ice));
2333         if (err < 0)
2334                 return err;
2335         err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_pro_internal_clock, ice));
2336         if (err < 0)
2337                 return err;
2338
2339         err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_pro_rate_locking, ice));
2340         if (err < 0)
2341                 return err;
2342         err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_pro_rate_reset, ice));
2343         if (err < 0)
2344                 return err;
2345
2346         if (ice->num_total_dacs > 0) {
2347                 snd_kcontrol_new_t tmp = snd_ice1712_mixer_pro_analog_route;
2348                 tmp.count = ice->num_total_dacs;
2349                 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2350                 if (err < 0)
2351                         return err;
2352         }
2353
2354         err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_mixer_pro_spdif_route, ice));
2355         if (err < 0)
2356                 return err;
2357
2358         err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_mixer_pro_volume_rate, ice));
2359         if (err < 0)
2360                 return err;
2361         err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_mixer_pro_peak, ice));
2362         if (err < 0)
2363                 return err;
2364
2365         return 0;
2366 }
2367
2368 static int snd_ice1712_free(ice1712_t *ice)
2369 {
2370         if (ice->res_port == NULL)
2371                 goto __hw_end;
2372         /* mask all interrupts */
2373         outb(0xc0, ICEMT(ice, IRQ));
2374         outb(0xff, ICEREG(ice, IRQMASK));
2375         /* --- */
2376       __hw_end:
2377         if (ice->irq >= 0) {
2378                 synchronize_irq(ice->irq);
2379                 free_irq(ice->irq, (void *) ice);
2380         }
2381         if (ice->res_port) {
2382                 release_resource(ice->res_port);
2383                 kfree_nocheck(ice->res_port);
2384         }
2385         if (ice->res_ddma_port) {
2386                 release_resource(ice->res_ddma_port);
2387                 kfree_nocheck(ice->res_ddma_port);
2388         }
2389         if (ice->res_dmapath_port) {
2390                 release_resource(ice->res_dmapath_port);
2391                 kfree_nocheck(ice->res_dmapath_port);
2392         }
2393         if (ice->res_profi_port) {
2394                 release_resource(ice->res_profi_port);
2395                 kfree_nocheck(ice->res_profi_port);
2396         }
2397         snd_ice1712_akm4xxx_free(ice);
2398         snd_magic_kfree(ice);
2399         return 0;
2400 }
2401
2402 static int snd_ice1712_dev_free(snd_device_t *device)
2403 {
2404         ice1712_t *ice = snd_magic_cast(ice1712_t, device->device_data, return -ENXIO);
2405         return snd_ice1712_free(ice);
2406 }
2407
2408 static int __devinit snd_ice1712_create(snd_card_t * card,
2409                                         struct pci_dev *pci,
2410                                         int omni,
2411                                         int cs8427_timeout,
2412                                         ice1712_t ** r_ice1712)
2413 {
2414         ice1712_t *ice;
2415         int err;
2416         static snd_device_ops_t ops = {
2417                 .dev_free =     snd_ice1712_dev_free,
2418         };
2419
2420         *r_ice1712 = NULL;
2421
2422         /* enable PCI device */
2423         if ((err = pci_enable_device(pci)) < 0)
2424                 return err;
2425         /* check, if we can restrict PCI DMA transfers to 28 bits */
2426         if (pci_set_dma_mask(pci, 0x0fffffff) < 0 ||
2427             pci_set_consistent_dma_mask(pci, 0x0fffffff) < 0) {
2428                 snd_printk("architecture does not support 28bit PCI busmaster DMA\n");
2429                 return -ENXIO;
2430         }
2431
2432         ice = snd_magic_kcalloc(ice1712_t, 0, GFP_KERNEL);
2433         if (ice == NULL)
2434                 return -ENOMEM;
2435         ice->omni = omni ? 1 : 0;
2436         if (cs8427_timeout < 1)
2437                 cs8427_timeout = 1;
2438         else if (cs8427_timeout > 1000)
2439                 cs8427_timeout = 1000;
2440         ice->cs8427_timeout = cs8427_timeout;
2441         spin_lock_init(&ice->reg_lock);
2442         init_MUTEX(&ice->gpio_mutex);
2443         init_MUTEX(&ice->open_mutex);
2444         ice->gpio.set_mask = snd_ice1712_set_gpio_mask;
2445         ice->gpio.set_dir = snd_ice1712_set_gpio_dir;
2446         ice->gpio.set_data = snd_ice1712_set_gpio_data;
2447         ice->gpio.get_data = snd_ice1712_get_gpio_data;
2448
2449         ice->spdif.cs8403_bits =
2450                 ice->spdif.cs8403_stream_bits = (0x01 | /* consumer format */
2451                                                  0x10 | /* no emphasis */
2452                                                  0x20); /* PCM encoder/decoder */
2453         ice->card = card;
2454         ice->pci = pci;
2455         ice->irq = -1;
2456         ice->port = pci_resource_start(pci, 0);
2457         ice->ddma_port = pci_resource_start(pci, 1);
2458         ice->dmapath_port = pci_resource_start(pci, 2);
2459         ice->profi_port = pci_resource_start(pci, 3);
2460         pci_set_master(pci);
2461         pci_write_config_word(ice->pci, 0x40, 0x807f);
2462         pci_write_config_word(ice->pci, 0x42, 0x0006);
2463         snd_ice1712_proc_init(ice);
2464         synchronize_irq(pci->irq);
2465
2466         if ((ice->res_port = request_region(ice->port, 32, "ICE1712 - Controller")) == NULL) {
2467                 snd_printk("unable to grab ports 0x%lx-0x%lx\n", ice->port, ice->port + 32 - 1);
2468                 snd_ice1712_free(ice);
2469                 return -EIO;
2470         }
2471         if ((ice->res_ddma_port = request_region(ice->ddma_port, 16, "ICE1712 - DDMA")) == NULL) {
2472                 snd_printk("unable to grab ports 0x%lx-0x%lx\n", ice->ddma_port, ice->ddma_port + 16 - 1);
2473                 snd_ice1712_free(ice);
2474                 return -EIO;
2475         }
2476         if ((ice->res_dmapath_port = request_region(ice->dmapath_port, 16, "ICE1712 - DMA path")) == NULL) {
2477                 snd_printk("unable to grab ports 0x%lx-0x%lx\n", ice->dmapath_port, ice->dmapath_port + 16 - 1);
2478                 snd_ice1712_free(ice);
2479                 return -EIO;
2480         }
2481         if ((ice->res_profi_port = request_region(ice->profi_port, 64, "ICE1712 - Professional")) == NULL) {
2482                 snd_printk("unable to grab ports 0x%lx-0x%lx\n", ice->profi_port, ice->profi_port + 16 - 1);
2483                 snd_ice1712_free(ice);
2484                 return -EIO;
2485         }
2486         if (request_irq(pci->irq, snd_ice1712_interrupt, SA_INTERRUPT|SA_SHIRQ, "ICE1712", (void *) ice)) {
2487                 snd_printk("unable to grab IRQ %d\n", pci->irq);
2488                 snd_ice1712_free(ice);
2489                 return -EIO;
2490         }
2491         
2492         ice->irq = pci->irq;
2493
2494         if (snd_ice1712_read_eeprom(ice) < 0) {
2495                 snd_ice1712_free(ice);
2496                 return -EIO;
2497         }
2498         if (snd_ice1712_chip_init(ice) < 0) {
2499                 snd_ice1712_free(ice);
2500                 return -EIO;
2501         }
2502
2503         /* unmask used interrupts */
2504         outb((ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_2xMPU401) == 0 ? ICE1712_IRQ_MPU2 : 0 |
2505              (ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_NO_CON_AC97) ? ICE1712_IRQ_PBKDS | ICE1712_IRQ_CONCAP | ICE1712_IRQ_CONPBK : 0,
2506              ICEREG(ice, IRQMASK));
2507         outb(0x00, ICEMT(ice, IRQ));
2508
2509         if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops)) < 0) {
2510                 snd_ice1712_free(ice);
2511                 return err;
2512         }
2513
2514         snd_card_set_dev(card, &pci->dev);
2515
2516         *r_ice1712 = ice;
2517         return 0;
2518 }
2519
2520
2521 /*
2522  *
2523  * Registration
2524  *
2525  */
2526
2527 static struct snd_ice1712_card_info no_matched __devinitdata;
2528
2529 static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
2530         snd_ice1712_hoontech_cards,
2531         snd_ice1712_delta_cards,
2532         snd_ice1712_ews_cards,
2533         0,
2534 };
2535
2536
2537 static int __devinit snd_ice1712_probe(struct pci_dev *pci,
2538                                        const struct pci_device_id *pci_id)
2539 {
2540         static int dev;
2541         snd_card_t *card;
2542         ice1712_t *ice;
2543         int pcm_dev = 0, err;
2544         struct snd_ice1712_card_info **tbl, *c;
2545
2546         if (dev >= SNDRV_CARDS)
2547                 return -ENODEV;
2548         if (!enable[dev]) {
2549                 dev++;
2550                 return -ENOENT;
2551         }
2552
2553         card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
2554         if (card == NULL)
2555                 return -ENOMEM;
2556
2557         strcpy(card->driver, "ICE1712");
2558         strcpy(card->shortname, "ICEnsemble ICE1712");
2559         
2560         if ((err = snd_ice1712_create(card, pci, omni[dev], cs8427_timeout[dev], &ice)) < 0) {
2561                 snd_card_free(card);
2562                 return err;
2563         }
2564
2565         for (tbl = card_tables; *tbl; tbl++) {
2566                 for (c = *tbl; c->subvendor; c++) {
2567                         if (c->subvendor == ice->eeprom.subvendor) {
2568                                 strcpy(card->shortname, c->name);
2569                                 if (c->chip_init) {
2570                                         if ((err = c->chip_init(ice)) < 0) {
2571                                                 snd_card_free(card);
2572                                                 return err;
2573                                         }
2574                                 }
2575                                 goto __found;
2576                         }
2577                 }
2578         }
2579         c = &no_matched;
2580  __found:
2581
2582         if ((err = snd_ice1712_pcm_profi(ice, pcm_dev++, NULL)) < 0) {
2583                 snd_card_free(card);
2584                 return err;
2585         }
2586         
2587         if (ice_has_con_ac97(ice))
2588                 if ((err = snd_ice1712_pcm(ice, pcm_dev++, NULL)) < 0) {
2589                         snd_card_free(card);
2590                         return err;
2591                 }
2592
2593         if ((err = snd_ice1712_ac97_mixer(ice)) < 0) {
2594                 snd_card_free(card);
2595                 return err;
2596         }
2597
2598         if ((err = snd_ice1712_build_controls(ice)) < 0) {
2599                 snd_card_free(card);
2600                 return err;
2601         }
2602
2603         if (c->build_controls) {
2604                 if ((err = c->build_controls(ice)) < 0) {
2605                         snd_card_free(card);
2606                         return err;
2607                 }
2608         }
2609
2610         if (ice_has_con_ac97(ice))
2611                 if ((err = snd_ice1712_pcm_ds(ice, pcm_dev++, NULL)) < 0) {
2612                         snd_card_free(card);
2613                         return err;
2614                 }
2615
2616         if (! c->no_mpu401) {
2617                 if ((err = snd_mpu401_uart_new(card, 0, MPU401_HW_ICE1712,
2618                                                ICEREG(ice, MPU1_CTRL), 1,
2619                                                ice->irq, 0,
2620                                                &ice->rmidi[0])) < 0) {
2621                         snd_card_free(card);
2622                         return err;
2623                 }
2624
2625                 if (ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_2xMPU401)
2626                         if ((err = snd_mpu401_uart_new(card, 1, MPU401_HW_ICE1712,
2627                                                        ICEREG(ice, MPU2_CTRL), 1,
2628                                                        ice->irq, 0,
2629                                                        &ice->rmidi[1])) < 0) {
2630                                 snd_card_free(card);
2631                                 return err;
2632                         }
2633         }
2634
2635         sprintf(card->longname, "%s at 0x%lx, irq %i",
2636                 card->shortname, ice->port, ice->irq);
2637
2638         if ((err = snd_card_register(card)) < 0) {
2639                 snd_card_free(card);
2640                 return err;
2641         }
2642         pci_set_drvdata(pci, card);
2643         dev++;
2644         return 0;
2645 }
2646
2647 static void __devexit snd_ice1712_remove(struct pci_dev *pci)
2648 {
2649         snd_card_free(pci_get_drvdata(pci));
2650         pci_set_drvdata(pci, NULL);
2651 }
2652
2653 static struct pci_driver driver = {
2654         .name = "ICE1712",
2655         .id_table = snd_ice1712_ids,
2656         .probe = snd_ice1712_probe,
2657         .remove = __devexit_p(snd_ice1712_remove),
2658 };
2659
2660 static int __init alsa_card_ice1712_init(void)
2661 {
2662         int err;
2663
2664         if ((err = pci_module_init(&driver)) < 0) {
2665 #ifdef MODULE
2666                 printk(KERN_ERR "ICE1712 soundcard not found or device busy\n");
2667 #endif
2668                 return err;
2669         }
2670         return 0;
2671 }
2672
2673 static void __exit alsa_card_ice1712_exit(void)
2674 {
2675         pci_unregister_driver(&driver);
2676 }
2677
2678 module_init(alsa_card_ice1712_init)
2679 module_exit(alsa_card_ice1712_exit)
2680
2681 #ifndef MODULE
2682
2683 /* format is: snd-ice1712=enable,index,id */
2684
2685 static int __init alsa_card_ice1712_setup(char *str)
2686 {
2687         static unsigned __initdata nr_dev = 0;
2688
2689         if (nr_dev >= SNDRV_CARDS)
2690                 return 0;
2691         (void)(get_option(&str,&enable[nr_dev]) == 2 &&
2692                get_option(&str,&index[nr_dev]) == 2 &&
2693                get_id(&str,&id[nr_dev]) == 2);
2694         nr_dev++;
2695         return 1;
2696 }
2697
2698 __setup("snd-ice1712=", alsa_card_ice1712_setup);
2699
2700 #endif /* ifndef MODULE */