blob: 1b3f11702713624b3cc5f344e598fcce7f5af70c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA driver for VT1724 ICEnsemble ICE1724 / VIA VT1724 (Envy24HT)
3 * VIA VT1720 (Envy24PT)
4 *
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02005 * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * 2002 James Stafford <jstafford@ampltd.com>
7 * 2003 Takashi Iwai <tiwai@suse.de>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 *
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +040023 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +040025#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/delay.h>
27#include <linux/interrupt.h>
28#include <linux/init.h>
29#include <linux/pci.h>
30#include <linux/slab.h>
31#include <linux/moduleparam.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010032#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <sound/core.h>
34#include <sound/info.h>
Clemens Ladischaea3bfb2008-05-20 14:22:44 +020035#include <sound/rawmidi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <sound/initval.h>
37
38#include <sound/asoundef.h>
39
40#include "ice1712.h"
41#include "envy24ht.h"
42
43/* lowlevel routines */
44#include "amp.h"
45#include "revo.h"
46#include "aureon.h"
47#include "vt1720_mobo.h"
48#include "pontis.h"
49#include "prodigy192.h"
Julian Scheel6b8d6e52008-01-16 19:50:00 +010050#include "prodigy_hifi.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "juli.h"
52#include "phase.h"
Clement Guedezf6cdab52007-01-08 10:48:41 +010053#include "wtm.h"
Shin-ya Okadaf31639b2007-10-23 15:08:18 +020054#include "se.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020056MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070057MODULE_DESCRIPTION("VIA ICEnsemble ICE1724/1720 (Envy24HT/PT)");
58MODULE_LICENSE("GPL");
59MODULE_SUPPORTED_DEVICE("{"
60 REVO_DEVICE_DESC
61 AMP_AUDIO2000_DEVICE_DESC
62 AUREON_DEVICE_DESC
63 VT1720_MOBO_DEVICE_DESC
64 PONTIS_DEVICE_DESC
65 PRODIGY192_DEVICE_DESC
Julian Scheel6b8d6e52008-01-16 19:50:00 +010066 PRODIGY_HIFI_DEVICE_DESC
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 JULI_DEVICE_DESC
68 PHASE_DEVICE_DESC
Clement Guedezf6cdab52007-01-08 10:48:41 +010069 WTM_DEVICE_DESC
Shin-ya Okadaf31639b2007-10-23 15:08:18 +020070 SE_DEVICE_DESC
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 "{VIA,VT1720},"
72 "{VIA,VT1724},"
73 "{ICEnsemble,Generic ICE1724},"
74 "{ICEnsemble,Generic Envy24HT}"
75 "{ICEnsemble,Generic Envy24PT}}");
76
77static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
78static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
79static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
80static char *model[SNDRV_CARDS];
81
82module_param_array(index, int, NULL, 0444);
83MODULE_PARM_DESC(index, "Index value for ICE1724 soundcard.");
84module_param_array(id, charp, NULL, 0444);
85MODULE_PARM_DESC(id, "ID string for ICE1724 soundcard.");
86module_param_array(enable, bool, NULL, 0444);
87MODULE_PARM_DESC(enable, "Enable ICE1724 soundcard.");
88module_param_array(model, charp, NULL, 0444);
89MODULE_PARM_DESC(model, "Use the given board model.");
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/* Both VT1720 and VT1724 have the same PCI IDs */
Takashi Iwai32b47da2007-01-29 15:26:36 +010093static const struct pci_device_id snd_vt1724_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 { PCI_VENDOR_ID_ICE, PCI_DEVICE_ID_VT1724, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
95 { 0, }
96};
97
98MODULE_DEVICE_TABLE(pci, snd_vt1724_ids);
99
100
101static int PRO_RATE_LOCKED;
102static int PRO_RATE_RESET = 1;
103static unsigned int PRO_RATE_DEFAULT = 44100;
104
105/*
106 * Basic I/O
107 */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400108
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100109/*
110 * default rates, default clock routines
111 */
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/* check whether the clock mode is spdif-in */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100114static inline int stdclock_is_spdif_master(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115{
116 return (inb(ICEMT1724(ice, RATE)) & VT1724_SPDIF_MASTER) ? 1 : 0;
117}
118
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100119static inline int is_pro_rate_locked(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100121 return ice->is_spdif_master(ice) || PRO_RATE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124/*
125 * ac97 section
126 */
127
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100128static unsigned char snd_vt1724_ac97_ready(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
130 unsigned char old_cmd;
131 int tm;
132 for (tm = 0; tm < 0x10000; tm++) {
133 old_cmd = inb(ICEMT1724(ice, AC97_CMD));
134 if (old_cmd & (VT1724_AC97_WRITE | VT1724_AC97_READ))
135 continue;
136 if (!(old_cmd & VT1724_AC97_READY))
137 continue;
138 return old_cmd;
139 }
140 snd_printd(KERN_ERR "snd_vt1724_ac97_ready: timeout\n");
141 return old_cmd;
142}
143
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100144static int snd_vt1724_ac97_wait_bit(struct snd_ice1712 *ice, unsigned char bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
146 int tm;
147 for (tm = 0; tm < 0x10000; tm++)
148 if ((inb(ICEMT1724(ice, AC97_CMD)) & bit) == 0)
149 return 0;
150 snd_printd(KERN_ERR "snd_vt1724_ac97_wait_bit: timeout\n");
151 return -EIO;
152}
153
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100154static void snd_vt1724_ac97_write(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 unsigned short reg,
156 unsigned short val)
157{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100158 struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 unsigned char old_cmd;
160
161 old_cmd = snd_vt1724_ac97_ready(ice);
162 old_cmd &= ~VT1724_AC97_ID_MASK;
163 old_cmd |= ac97->num;
164 outb(reg, ICEMT1724(ice, AC97_INDEX));
165 outw(val, ICEMT1724(ice, AC97_DATA));
166 outb(old_cmd | VT1724_AC97_WRITE, ICEMT1724(ice, AC97_CMD));
167 snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_WRITE);
168}
169
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100170static unsigned short snd_vt1724_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100172 struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 unsigned char old_cmd;
174
175 old_cmd = snd_vt1724_ac97_ready(ice);
176 old_cmd &= ~VT1724_AC97_ID_MASK;
177 old_cmd |= ac97->num;
178 outb(reg, ICEMT1724(ice, AC97_INDEX));
179 outb(old_cmd | VT1724_AC97_READ, ICEMT1724(ice, AC97_CMD));
180 if (snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_READ) < 0)
181 return ~0;
182 return inw(ICEMT1724(ice, AC97_DATA));
183}
184
185
186/*
187 * GPIO operations
188 */
189
190/* set gpio direction 0 = read, 1 = write */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100191static void snd_vt1724_set_gpio_dir(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 outl(data, ICEREG1724(ice, GPIO_DIRECTION));
194 inw(ICEREG1724(ice, GPIO_DIRECTION)); /* dummy read for pci-posting */
195}
196
197/* set the gpio mask (0 = writable) */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100198static void snd_vt1724_set_gpio_mask(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
200 outw(data, ICEREG1724(ice, GPIO_WRITE_MASK));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400201 if (!ice->vt1720) /* VT1720 supports only 16 GPIO bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 outb((data >> 16) & 0xff, ICEREG1724(ice, GPIO_WRITE_MASK_22));
203 inw(ICEREG1724(ice, GPIO_WRITE_MASK)); /* dummy read for pci-posting */
204}
205
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100206static void snd_vt1724_set_gpio_data(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 outw(data, ICEREG1724(ice, GPIO_DATA));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400209 if (!ice->vt1720)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 outb(data >> 16, ICEREG1724(ice, GPIO_DATA_22));
211 inw(ICEREG1724(ice, GPIO_DATA)); /* dummy read for pci-posting */
212}
213
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100214static unsigned int snd_vt1724_get_gpio_data(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 unsigned int data;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400217 if (!ice->vt1720)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 data = (unsigned int)inb(ICEREG1724(ice, GPIO_DATA_22));
219 else
220 data = 0;
221 data = (data << 16) | inw(ICEREG1724(ice, GPIO_DATA));
222 return data;
223}
224
225/*
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200226 * MIDI
Takashi Iwai3a841d52008-04-23 17:47:28 +0200227 */
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200228
229static void vt1724_midi_clear_rx(struct snd_ice1712 *ice)
Takashi Iwai3a841d52008-04-23 17:47:28 +0200230{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200231 unsigned int count;
232
233 for (count = inb(ICEREG1724(ice, MPU_RXFIFO)); count > 0; --count)
234 inb(ICEREG1724(ice, MPU_DATA));
Takashi Iwai3a841d52008-04-23 17:47:28 +0200235}
236
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200237static inline struct snd_rawmidi_substream *
238get_rawmidi_substream(struct snd_ice1712 *ice, unsigned int stream)
Takashi Iwai3a841d52008-04-23 17:47:28 +0200239{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200240 return list_first_entry(&ice->rmidi[0]->streams[stream].substreams,
241 struct snd_rawmidi_substream, list);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200242}
243
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200244static void vt1724_midi_write(struct snd_ice1712 *ice)
245{
246 struct snd_rawmidi_substream *s;
247 int count, i;
248 u8 buffer[32];
249
250 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_OUTPUT);
251 count = 31 - inb(ICEREG1724(ice, MPU_TXFIFO));
252 if (count > 0) {
253 count = snd_rawmidi_transmit(s, buffer, count);
254 for (i = 0; i < count; ++i)
255 outb(buffer[i], ICEREG1724(ice, MPU_DATA));
256 }
257}
258
259static void vt1724_midi_read(struct snd_ice1712 *ice)
260{
261 struct snd_rawmidi_substream *s;
262 int count, i;
263 u8 buffer[32];
264
265 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_INPUT);
266 count = inb(ICEREG1724(ice, MPU_RXFIFO));
267 if (count > 0) {
268 count = min(count, 32);
269 for (i = 0; i < count; ++i)
270 buffer[i] = inb(ICEREG1724(ice, MPU_DATA));
271 snd_rawmidi_receive(s, buffer, count);
272 }
273}
274
275static void vt1724_enable_midi_irq(struct snd_rawmidi_substream *substream,
276 u8 flag, int enable)
277{
278 struct snd_ice1712 *ice = substream->rmidi->private_data;
279 u8 mask;
280
281 spin_lock_irq(&ice->reg_lock);
282 mask = inb(ICEREG1724(ice, IRQMASK));
283 if (enable)
284 mask &= ~flag;
285 else
286 mask |= flag;
287 outb(mask, ICEREG1724(ice, IRQMASK));
288 spin_unlock_irq(&ice->reg_lock);
289}
290
291static int vt1724_midi_output_open(struct snd_rawmidi_substream *s)
292{
293 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 1);
294 return 0;
295}
296
297static int vt1724_midi_output_close(struct snd_rawmidi_substream *s)
298{
299 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 0);
300 return 0;
301}
302
303static void vt1724_midi_output_trigger(struct snd_rawmidi_substream *s, int up)
304{
305 struct snd_ice1712 *ice = s->rmidi->private_data;
306 unsigned long flags;
307
308 spin_lock_irqsave(&ice->reg_lock, flags);
309 if (up) {
310 ice->midi_output = 1;
311 vt1724_midi_write(ice);
312 } else {
313 ice->midi_output = 0;
314 }
315 spin_unlock_irqrestore(&ice->reg_lock, flags);
316}
317
318static void vt1724_midi_output_drain(struct snd_rawmidi_substream *s)
319{
320 struct snd_ice1712 *ice = s->rmidi->private_data;
321 unsigned long timeout;
322
323 /* 32 bytes should be transmitted in less than about 12 ms */
324 timeout = jiffies + msecs_to_jiffies(15);
325 do {
326 if (inb(ICEREG1724(ice, MPU_CTRL)) & VT1724_MPU_TX_EMPTY)
327 break;
328 schedule_timeout_uninterruptible(1);
329 } while (time_after(timeout, jiffies));
330}
331
332static struct snd_rawmidi_ops vt1724_midi_output_ops = {
333 .open = vt1724_midi_output_open,
334 .close = vt1724_midi_output_close,
335 .trigger = vt1724_midi_output_trigger,
336 .drain = vt1724_midi_output_drain,
337};
338
339static int vt1724_midi_input_open(struct snd_rawmidi_substream *s)
340{
341 vt1724_midi_clear_rx(s->rmidi->private_data);
342 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 1);
343 return 0;
344}
345
346static int vt1724_midi_input_close(struct snd_rawmidi_substream *s)
347{
348 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 0);
349 return 0;
350}
351
352static void vt1724_midi_input_trigger(struct snd_rawmidi_substream *s, int up)
353{
354 struct snd_ice1712 *ice = s->rmidi->private_data;
355 unsigned long flags;
356
357 spin_lock_irqsave(&ice->reg_lock, flags);
358 if (up) {
359 ice->midi_input = 1;
360 vt1724_midi_read(ice);
361 } else {
362 ice->midi_input = 0;
363 }
364 spin_unlock_irqrestore(&ice->reg_lock, flags);
365}
366
367static struct snd_rawmidi_ops vt1724_midi_input_ops = {
368 .open = vt1724_midi_input_open,
369 .close = vt1724_midi_input_close,
370 .trigger = vt1724_midi_input_trigger,
371};
372
Takashi Iwai3a841d52008-04-23 17:47:28 +0200373
374/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * Interrupt handler
376 */
377
David Howells7d12e782006-10-05 14:55:46 +0100378static irqreturn_t snd_vt1724_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100380 struct snd_ice1712 *ice = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 unsigned char status;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200382 unsigned char status_mask =
383 VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX | VT1724_IRQ_MTPCM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 int handled = 0;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200385#ifdef CONFIG_SND_DEBUG
386 int timeout = 0;
387#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 while (1) {
390 status = inb(ICEREG1724(ice, IRQSTAT));
Takashi Iwai3a841d52008-04-23 17:47:28 +0200391 status &= status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 if (status == 0)
393 break;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200394#ifdef CONFIG_SND_DEBUG
395 if (++timeout > 10) {
396 printk(KERN_ERR
397 "ice1724: Too long irq loop, status = 0x%x\n",
398 status);
399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
Takashi Iwai3a841d52008-04-23 17:47:28 +0200401#endif
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400402 handled = 1;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200403 if (status & VT1724_IRQ_MPU_TX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200404 spin_lock(&ice->reg_lock);
405 if (ice->midi_output)
406 vt1724_midi_write(ice);
407 spin_unlock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200408 /* Due to mysterical reasons, MPU_TX is always
409 * generated (and can't be cleared) when a PCM
410 * playback is going. So let's ignore at the
411 * next loop.
412 */
413 status_mask &= ~VT1724_IRQ_MPU_TX;
414 }
415 if (status & VT1724_IRQ_MPU_RX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200416 spin_lock(&ice->reg_lock);
417 if (ice->midi_input)
418 vt1724_midi_read(ice);
419 else
420 vt1724_midi_clear_rx(ice);
421 spin_unlock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200422 }
423 /* ack MPU irq */
424 outb(status, ICEREG1724(ice, IRQSTAT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (status & VT1724_IRQ_MTPCM) {
426 /*
427 * Multi-track PCM
428 * PCM assignment are:
429 * Playback DMA0 (M/C) = playback_pro_substream
430 * Playback DMA1 = playback_con_substream_ds[0]
431 * Playback DMA2 = playback_con_substream_ds[1]
432 * Playback DMA3 = playback_con_substream_ds[2]
433 * Playback DMA4 (SPDIF) = playback_con_substream
434 * Record DMA0 = capture_pro_substream
435 * Record DMA1 = capture_con_substream
436 */
437 unsigned char mtstat = inb(ICEMT1724(ice, IRQ));
438 if (mtstat & VT1724_MULTI_PDMA0) {
439 if (ice->playback_pro_substream)
440 snd_pcm_period_elapsed(ice->playback_pro_substream);
441 }
442 if (mtstat & VT1724_MULTI_RDMA0) {
443 if (ice->capture_pro_substream)
444 snd_pcm_period_elapsed(ice->capture_pro_substream);
445 }
446 if (mtstat & VT1724_MULTI_PDMA1) {
447 if (ice->playback_con_substream_ds[0])
448 snd_pcm_period_elapsed(ice->playback_con_substream_ds[0]);
449 }
450 if (mtstat & VT1724_MULTI_PDMA2) {
451 if (ice->playback_con_substream_ds[1])
452 snd_pcm_period_elapsed(ice->playback_con_substream_ds[1]);
453 }
454 if (mtstat & VT1724_MULTI_PDMA3) {
455 if (ice->playback_con_substream_ds[2])
456 snd_pcm_period_elapsed(ice->playback_con_substream_ds[2]);
457 }
458 if (mtstat & VT1724_MULTI_PDMA4) {
459 if (ice->playback_con_substream)
460 snd_pcm_period_elapsed(ice->playback_con_substream);
461 }
462 if (mtstat & VT1724_MULTI_RDMA1) {
463 if (ice->capture_con_substream)
464 snd_pcm_period_elapsed(ice->capture_con_substream);
465 }
466 /* ack anyway to avoid freeze */
467 outb(mtstat, ICEMT1724(ice, IRQ));
468 /* ought to really handle this properly */
469 if (mtstat & VT1724_MULTI_FIFO_ERR) {
470 unsigned char fstat = inb(ICEMT1724(ice, DMA_FIFO_ERR));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400471 outb(fstat, ICEMT1724(ice, DMA_FIFO_ERR));
472 outb(VT1724_MULTI_FIFO_ERR | inb(ICEMT1724(ice, DMA_INT_MASK)), ICEMT1724(ice, DMA_INT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 /* If I don't do this, I get machine lockup due to continual interrupts */
474 }
475
476 }
477 }
478 return IRQ_RETVAL(handled);
479}
480
481/*
482 * PCM code - professional part (multitrack)
483 */
484
485static unsigned int rates[] = {
486 8000, 9600, 11025, 12000, 16000, 22050, 24000,
487 32000, 44100, 48000, 64000, 88200, 96000,
488 176400, 192000,
489};
490
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100491static struct snd_pcm_hw_constraint_list hw_constraints_rates_96 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 .count = ARRAY_SIZE(rates) - 2, /* up to 96000 */
493 .list = rates,
494 .mask = 0,
495};
496
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100497static struct snd_pcm_hw_constraint_list hw_constraints_rates_48 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 .count = ARRAY_SIZE(rates) - 5, /* up to 48000 */
499 .list = rates,
500 .mask = 0,
501};
502
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100503static struct snd_pcm_hw_constraint_list hw_constraints_rates_192 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 .count = ARRAY_SIZE(rates),
505 .list = rates,
506 .mask = 0,
507};
508
509struct vt1724_pcm_reg {
510 unsigned int addr; /* ADDR register offset */
511 unsigned int size; /* SIZE register offset */
512 unsigned int count; /* COUNT register offset */
513 unsigned int start; /* start & pause bit */
514};
515
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100516static int snd_vt1724_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100518 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 unsigned char what;
520 unsigned char old;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100521 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523 what = 0;
Takashi Iwaief991b92007-02-22 12:52:53 +0100524 snd_pcm_group_for_each_entry(s, substream) {
Clemens Ladisch29998d22007-07-30 08:14:31 +0200525 if (snd_pcm_substream_chip(s) == ice) {
526 const struct vt1724_pcm_reg *reg;
527 reg = s->runtime->private_data;
528 what |= reg->start;
529 snd_pcm_trigger_done(s, substream);
530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
533 switch (cmd) {
534 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
535 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
536 spin_lock(&ice->reg_lock);
537 old = inb(ICEMT1724(ice, DMA_PAUSE));
538 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
539 old |= what;
540 else
541 old &= ~what;
542 outb(old, ICEMT1724(ice, DMA_PAUSE));
543 spin_unlock(&ice->reg_lock);
544 break;
545
546 case SNDRV_PCM_TRIGGER_START:
547 case SNDRV_PCM_TRIGGER_STOP:
548 spin_lock(&ice->reg_lock);
549 old = inb(ICEMT1724(ice, DMA_CONTROL));
550 if (cmd == SNDRV_PCM_TRIGGER_START)
551 old |= what;
552 else
553 old &= ~what;
554 outb(old, ICEMT1724(ice, DMA_CONTROL));
555 spin_unlock(&ice->reg_lock);
556 break;
557
558 default:
559 return -EINVAL;
560 }
561 return 0;
562}
563
564/*
565 */
566
567#define DMA_STARTS (VT1724_RDMA0_START|VT1724_PDMA0_START|VT1724_RDMA1_START|\
568 VT1724_PDMA1_START|VT1724_PDMA2_START|VT1724_PDMA3_START|VT1724_PDMA4_START)
569#define DMA_PAUSES (VT1724_RDMA0_PAUSE|VT1724_PDMA0_PAUSE|VT1724_RDMA1_PAUSE|\
570 VT1724_PDMA1_PAUSE|VT1724_PDMA2_PAUSE|VT1724_PDMA3_PAUSE|VT1724_PDMA4_PAUSE)
571
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100572static const unsigned int stdclock_rate_list[16] = {
573 48000, 24000, 12000, 9600, 32000, 16000, 8000, 96000, 44100,
574 22050, 11025, 88200, 176400, 0, 192000, 64000
575};
576
577static unsigned int stdclock_get_rate(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100579 unsigned int rate;
580 rate = stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
581 return rate;
582}
583
584static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
585{
586 int i;
587 for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
588 if (stdclock_rate_list[i] == rate) {
589 outb(i, ICEMT1724(ice, RATE));
590 return;
591 }
592 }
593}
594
595static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
596 unsigned int rate)
597{
598 unsigned char val, old;
599 /* check MT02 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100601 val = old = inb(ICEMT1724(ice, I2S_FORMAT));
602 if (rate > 96000)
603 val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 else
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100605 val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
606 if (val != old) {
607 outb(val, ICEMT1724(ice, I2S_FORMAT));
608 /* master clock changed */
609 return 1;
610 }
611 }
612 /* no change in master clock */
613 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614}
615
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100616static void snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
617 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
619 unsigned long flags;
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100620 unsigned char mclk_change;
621 unsigned int i, old_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100623 if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 spin_lock_irqsave(&ice->reg_lock, flags);
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100626 if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
628 /* running? we cannot change the rate now... */
629 spin_unlock_irqrestore(&ice->reg_lock, flags);
630 return;
631 }
632 if (!force && is_pro_rate_locked(ice)) {
633 spin_unlock_irqrestore(&ice->reg_lock, flags);
634 return;
635 }
636
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100637 old_rate = ice->get_rate(ice);
638 if (force || (old_rate != rate))
639 ice->set_rate(ice, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 else if (rate == ice->cur_rate) {
641 spin_unlock_irqrestore(&ice->reg_lock, flags);
642 return;
643 }
644
645 ice->cur_rate = rate;
646
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100647 /* setting master clock */
648 mclk_change = ice->set_mclk(ice, rate);
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 spin_unlock_irqrestore(&ice->reg_lock, flags);
651
652 if (mclk_change && ice->gpio.i2s_mclk_changed)
653 ice->gpio.i2s_mclk_changed(ice);
654 if (ice->gpio.set_pro_rate)
655 ice->gpio.set_pro_rate(ice, rate);
656
657 /* set up codecs */
658 for (i = 0; i < ice->akm_codecs; i++) {
659 if (ice->akm[i].ops.set_rate_val)
660 ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
661 }
662 if (ice->spdif.ops.setup_rate)
663 ice->spdif.ops.setup_rate(ice, rate);
664}
665
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100666static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
667 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100669 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 int i, chs;
671
672 chs = params_channels(hw_params);
Ingo Molnar62932df2006-01-16 16:34:20 +0100673 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /* mark surround channels */
675 if (substream == ice->playback_pro_substream) {
676 /* PDMA0 can be multi-channel up to 8 */
677 chs = chs / 2 - 1;
678 for (i = 0; i < chs; i++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100679 if (ice->pcm_reserved[i] &&
680 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100681 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return -EBUSY;
683 }
684 ice->pcm_reserved[i] = substream;
685 }
686 for (; i < 3; i++) {
687 if (ice->pcm_reserved[i] == substream)
688 ice->pcm_reserved[i] = NULL;
689 }
690 } else {
691 for (i = 0; i < 3; i++) {
692 /* check individual playback stream */
693 if (ice->playback_con_substream_ds[i] == substream) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100694 if (ice->pcm_reserved[i] &&
695 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100696 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return -EBUSY;
698 }
699 ice->pcm_reserved[i] = substream;
700 break;
701 }
702 }
703 }
Ingo Molnar62932df2006-01-16 16:34:20 +0100704 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
706 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
707}
708
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100709static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100711 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 int i;
713
Ingo Molnar62932df2006-01-16 16:34:20 +0100714 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 /* unmark surround channels */
716 for (i = 0; i < 3; i++)
717 if (ice->pcm_reserved[i] == substream)
718 ice->pcm_reserved[i] = NULL;
Ingo Molnar62932df2006-01-16 16:34:20 +0100719 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 return snd_pcm_lib_free_pages(substream);
721}
722
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100723static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100725 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 unsigned char val;
727 unsigned int size;
728
729 spin_lock_irq(&ice->reg_lock);
730 val = (8 - substream->runtime->channels) >> 1;
731 outb(val, ICEMT1724(ice, BURST));
732
733 outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));
734
735 size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400736 /* outl(size, ICEMT1724(ice, PLAYBACK_SIZE)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
738 outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
739 size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400740 /* outl(size, ICEMT1724(ice, PLAYBACK_COUNT)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
742 outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);
743
744 spin_unlock_irq(&ice->reg_lock);
745
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400746 /* printk("pro prepare: ch = %d, addr = 0x%x, buffer = 0x%x, period = 0x%x\n", substream->runtime->channels, (unsigned int)substream->runtime->dma_addr, snd_pcm_lib_buffer_bytes(substream), snd_pcm_lib_period_bytes(substream)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return 0;
748}
749
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100750static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100752 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 size_t ptr;
754
755 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
756 return 0;
757#if 0 /* read PLAYBACK_ADDR */
758 ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
759 if (ptr < substream->runtime->dma_addr) {
760 snd_printd("ice1724: invalid negative ptr\n");
761 return 0;
762 }
763 ptr -= substream->runtime->dma_addr;
764 ptr = bytes_to_frames(substream->runtime, ptr);
765 if (ptr >= substream->runtime->buffer_size) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100766 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
767 (int)ptr, (int)substream->runtime->period_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 return 0;
769 }
770#else /* read PLAYBACK_SIZE */
771 ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
772 ptr = (ptr + 1) << 2;
773 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400774 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 ;
776 else if (ptr <= substream->runtime->buffer_size)
777 ptr = substream->runtime->buffer_size - ptr;
778 else {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100779 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
780 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 ptr = 0;
782 }
783#endif
784 return ptr;
785}
786
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100787static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100789 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100790 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 spin_lock_irq(&ice->reg_lock);
793 outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100794 outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
795 ice->profi_port + reg->size);
796 outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
797 ice->profi_port + reg->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 spin_unlock_irq(&ice->reg_lock);
799 return 0;
800}
801
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100802static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100804 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100805 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 size_t ptr;
807
808 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
809 return 0;
810#if 0 /* use ADDR register */
811 ptr = inl(ice->profi_port + reg->addr);
812 ptr -= substream->runtime->dma_addr;
813 return bytes_to_frames(substream->runtime, ptr);
814#else /* use SIZE register */
815 ptr = inw(ice->profi_port + reg->size);
816 ptr = (ptr + 1) << 2;
817 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400818 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 ;
820 else if (ptr <= substream->runtime->buffer_size)
821 ptr = substream->runtime->buffer_size - ptr;
822 else {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100823 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
824 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 ptr = 0;
826 }
827 return ptr;
828#endif
829}
830
Takashi Iwai32b47da2007-01-29 15:26:36 +0100831static const struct vt1724_pcm_reg vt1724_playback_pro_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 .addr = VT1724_MT_PLAYBACK_ADDR,
833 .size = VT1724_MT_PLAYBACK_SIZE,
834 .count = VT1724_MT_PLAYBACK_COUNT,
835 .start = VT1724_PDMA0_START,
836};
837
Takashi Iwai32b47da2007-01-29 15:26:36 +0100838static const struct vt1724_pcm_reg vt1724_capture_pro_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 .addr = VT1724_MT_CAPTURE_ADDR,
840 .size = VT1724_MT_CAPTURE_SIZE,
841 .count = VT1724_MT_CAPTURE_COUNT,
842 .start = VT1724_RDMA0_START,
843};
844
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400845static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
847 SNDRV_PCM_INFO_BLOCK_TRANSFER |
848 SNDRV_PCM_INFO_MMAP_VALID |
849 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
850 .formats = SNDRV_PCM_FMTBIT_S32_LE,
851 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
852 .rate_min = 8000,
853 .rate_max = 192000,
854 .channels_min = 2,
855 .channels_max = 8,
856 .buffer_bytes_max = (1UL << 21), /* 19bits dword */
857 .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
858 .period_bytes_max = (1UL << 21),
859 .periods_min = 2,
860 .periods_max = 1024,
861};
862
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400863static const struct snd_pcm_hardware snd_vt1724_spdif = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
865 SNDRV_PCM_INFO_BLOCK_TRANSFER |
866 SNDRV_PCM_INFO_MMAP_VALID |
867 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
868 .formats = SNDRV_PCM_FMTBIT_S32_LE,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200869 .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
870 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
871 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
872 SNDRV_PCM_RATE_192000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 .rate_min = 32000,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200874 .rate_max = 192000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 .channels_min = 2,
876 .channels_max = 2,
877 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
878 .period_bytes_min = 2 * 4 * 2,
879 .period_bytes_max = (1UL << 18),
880 .periods_min = 2,
881 .periods_max = 1024,
882};
883
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400884static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
886 SNDRV_PCM_INFO_BLOCK_TRANSFER |
887 SNDRV_PCM_INFO_MMAP_VALID |
888 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
889 .formats = SNDRV_PCM_FMTBIT_S32_LE,
890 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
891 .rate_min = 8000,
892 .rate_max = 192000,
893 .channels_min = 2,
894 .channels_max = 2,
895 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
896 .period_bytes_min = 2 * 4 * 2,
897 .period_bytes_max = (1UL << 18),
898 .periods_min = 2,
899 .periods_max = 1024,
900};
901
902/*
903 * set rate constraints
904 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100905static void set_std_hw_rates(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
908 /* I2S */
909 /* VT1720 doesn't support more than 96kHz */
910 if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100911 ice->hw_rates = &hw_constraints_rates_192;
912 else
913 ice->hw_rates = &hw_constraints_rates_96;
914 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 /* ACLINK */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100916 ice->hw_rates = &hw_constraints_rates_48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100918}
919
920static int set_rate_constraints(struct snd_ice1712 *ice,
921 struct snd_pcm_substream *substream)
922{
923 struct snd_pcm_runtime *runtime = substream->runtime;
924
925 runtime->hw.rate_min = ice->hw_rates->list[0];
926 runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
927 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
928 return snd_pcm_hw_constraint_list(runtime, 0,
929 SNDRV_PCM_HW_PARAM_RATE,
930 ice->hw_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931}
932
933/* multi-channel playback needs alignment 8x32bit regardless of the channels
934 * actually used
935 */
936#define VT1724_BUFFER_ALIGN 0x20
937
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100938static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100940 struct snd_pcm_runtime *runtime = substream->runtime;
941 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200942 int chs, num_indeps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Takashi Iwai32b47da2007-01-29 15:26:36 +0100944 runtime->private_data = (void *)&vt1724_playback_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 ice->playback_pro_substream = substream;
946 runtime->hw = snd_vt1724_playback_pro;
947 snd_pcm_set_sync(substream);
948 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
949 set_rate_constraints(ice, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +0100950 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 /* calculate the currently available channels */
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200952 num_indeps = ice->num_total_dacs / 2 - 1;
953 for (chs = 0; chs < num_indeps; chs++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (ice->pcm_reserved[chs])
955 break;
956 }
957 chs = (chs + 1) * 2;
958 runtime->hw.channels_max = chs;
959 if (chs > 2) /* channels must be even */
960 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Ingo Molnar62932df2006-01-16 16:34:20 +0100961 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
963 VT1724_BUFFER_ALIGN);
964 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
965 VT1724_BUFFER_ALIGN);
966 return 0;
967}
968
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100969static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100971 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
972 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Takashi Iwai32b47da2007-01-29 15:26:36 +0100974 runtime->private_data = (void *)&vt1724_capture_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 ice->capture_pro_substream = substream;
976 runtime->hw = snd_vt1724_2ch_stereo;
977 snd_pcm_set_sync(substream);
978 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
979 set_rate_constraints(ice, substream);
980 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
981 VT1724_BUFFER_ALIGN);
982 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
983 VT1724_BUFFER_ALIGN);
984 return 0;
985}
986
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100987static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100989 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100992 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 ice->playback_pro_substream = NULL;
994
995 return 0;
996}
997
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100998static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001000 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001003 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 ice->capture_pro_substream = NULL;
1005 return 0;
1006}
1007
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001008static struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 .open = snd_vt1724_playback_pro_open,
1010 .close = snd_vt1724_playback_pro_close,
1011 .ioctl = snd_pcm_lib_ioctl,
1012 .hw_params = snd_vt1724_pcm_hw_params,
1013 .hw_free = snd_vt1724_pcm_hw_free,
1014 .prepare = snd_vt1724_playback_pro_prepare,
1015 .trigger = snd_vt1724_pcm_trigger,
1016 .pointer = snd_vt1724_playback_pro_pointer,
1017};
1018
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001019static struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 .open = snd_vt1724_capture_pro_open,
1021 .close = snd_vt1724_capture_pro_close,
1022 .ioctl = snd_pcm_lib_ioctl,
1023 .hw_params = snd_vt1724_pcm_hw_params,
1024 .hw_free = snd_vt1724_pcm_hw_free,
1025 .prepare = snd_vt1724_pcm_prepare,
1026 .trigger = snd_vt1724_pcm_trigger,
1027 .pointer = snd_vt1724_pcm_pointer,
1028};
1029
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001030static int __devinit snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001032 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 int err;
1034
1035 err = snd_pcm_new(ice->card, "ICE1724", device, 1, 1, &pcm);
1036 if (err < 0)
1037 return err;
1038
1039 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
1040 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_vt1724_capture_pro_ops);
1041
1042 pcm->private_data = ice;
1043 pcm->info_flags = 0;
1044 strcpy(pcm->name, "ICE1724");
1045
1046 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001047 snd_dma_pci_data(ice->pci),
1048 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
1050 ice->pcm_pro = pcm;
1051
1052 return 0;
1053}
1054
1055
1056/*
1057 * SPDIF PCM
1058 */
1059
Takashi Iwai32b47da2007-01-29 15:26:36 +01001060static const struct vt1724_pcm_reg vt1724_playback_spdif_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 .addr = VT1724_MT_PDMA4_ADDR,
1062 .size = VT1724_MT_PDMA4_SIZE,
1063 .count = VT1724_MT_PDMA4_COUNT,
1064 .start = VT1724_PDMA4_START,
1065};
1066
Takashi Iwai32b47da2007-01-29 15:26:36 +01001067static const struct vt1724_pcm_reg vt1724_capture_spdif_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 .addr = VT1724_MT_RDMA1_ADDR,
1069 .size = VT1724_MT_RDMA1_SIZE,
1070 .count = VT1724_MT_RDMA1_COUNT,
1071 .start = VT1724_RDMA1_START,
1072};
1073
1074/* update spdif control bits; call with reg_lock */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001075static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076{
1077 unsigned char cbit, disabled;
1078
1079 cbit = inb(ICEREG1724(ice, SPDIF_CFG));
1080 disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
1081 if (cbit != disabled)
1082 outb(disabled, ICEREG1724(ice, SPDIF_CFG));
1083 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1084 if (cbit != disabled)
1085 outb(cbit, ICEREG1724(ice, SPDIF_CFG));
1086 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1087}
1088
1089/* update SPDIF control bits according to the given rate */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001090static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
1092 unsigned int val, nval;
1093 unsigned long flags;
1094
1095 spin_lock_irqsave(&ice->reg_lock, flags);
1096 nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
1097 nval &= ~(7 << 12);
1098 switch (rate) {
1099 case 44100: break;
1100 case 48000: nval |= 2 << 12; break;
1101 case 32000: nval |= 3 << 12; break;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001102 case 88200: nval |= 4 << 12; break;
1103 case 96000: nval |= 5 << 12; break;
1104 case 192000: nval |= 6 << 12; break;
1105 case 176400: nval |= 7 << 12; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 }
1107 if (val != nval)
1108 update_spdif_bits(ice, nval);
1109 spin_unlock_irqrestore(&ice->reg_lock, flags);
1110}
1111
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001112static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001114 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001115 if (!ice->force_pdma4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 update_spdif_rate(ice, substream->runtime->rate);
1117 return snd_vt1724_pcm_prepare(substream);
1118}
1119
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001120static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001122 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1123 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Takashi Iwai32b47da2007-01-29 15:26:36 +01001125 runtime->private_data = (void *)&vt1724_playback_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 ice->playback_con_substream = substream;
1127 if (ice->force_pdma4) {
1128 runtime->hw = snd_vt1724_2ch_stereo;
1129 set_rate_constraints(ice, substream);
1130 } else
1131 runtime->hw = snd_vt1724_spdif;
1132 snd_pcm_set_sync(substream);
1133 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1134 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1135 VT1724_BUFFER_ALIGN);
1136 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1137 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001138 if (ice->spdif.ops.open)
1139 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 return 0;
1141}
1142
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001143static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001145 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001148 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 ice->playback_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001150 if (ice->spdif.ops.close)
1151 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
1153 return 0;
1154}
1155
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001156static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001158 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1159 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Takashi Iwai32b47da2007-01-29 15:26:36 +01001161 runtime->private_data = (void *)&vt1724_capture_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 ice->capture_con_substream = substream;
1163 if (ice->force_rdma1) {
1164 runtime->hw = snd_vt1724_2ch_stereo;
1165 set_rate_constraints(ice, substream);
1166 } else
1167 runtime->hw = snd_vt1724_spdif;
1168 snd_pcm_set_sync(substream);
1169 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1170 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1171 VT1724_BUFFER_ALIGN);
1172 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1173 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001174 if (ice->spdif.ops.open)
1175 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 return 0;
1177}
1178
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001179static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001181 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001184 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 ice->capture_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001186 if (ice->spdif.ops.close)
1187 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189 return 0;
1190}
1191
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001192static struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 .open = snd_vt1724_playback_spdif_open,
1194 .close = snd_vt1724_playback_spdif_close,
1195 .ioctl = snd_pcm_lib_ioctl,
1196 .hw_params = snd_vt1724_pcm_hw_params,
1197 .hw_free = snd_vt1724_pcm_hw_free,
1198 .prepare = snd_vt1724_playback_spdif_prepare,
1199 .trigger = snd_vt1724_pcm_trigger,
1200 .pointer = snd_vt1724_pcm_pointer,
1201};
1202
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001203static struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 .open = snd_vt1724_capture_spdif_open,
1205 .close = snd_vt1724_capture_spdif_close,
1206 .ioctl = snd_pcm_lib_ioctl,
1207 .hw_params = snd_vt1724_pcm_hw_params,
1208 .hw_free = snd_vt1724_pcm_hw_free,
1209 .prepare = snd_vt1724_pcm_prepare,
1210 .trigger = snd_vt1724_pcm_trigger,
1211 .pointer = snd_vt1724_pcm_pointer,
1212};
1213
1214
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001215static int __devinit snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
1217 char *name;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001218 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int play, capt;
1220 int err;
1221
1222 if (ice->force_pdma4 ||
1223 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
1224 play = 1;
1225 ice->has_spdif = 1;
1226 } else
1227 play = 0;
1228 if (ice->force_rdma1 ||
1229 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
1230 capt = 1;
1231 ice->has_spdif = 1;
1232 } else
1233 capt = 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001234 if (!play && !capt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return 0; /* no spdif device */
1236
1237 if (ice->force_pdma4 || ice->force_rdma1)
1238 name = "ICE1724 Secondary";
1239 else
1240 name = "IEC1724 IEC958";
1241 err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
1242 if (err < 0)
1243 return err;
1244
1245 if (play)
1246 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1247 &snd_vt1724_playback_spdif_ops);
1248 if (capt)
1249 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1250 &snd_vt1724_capture_spdif_ops);
1251
1252 pcm->private_data = ice;
1253 pcm->info_flags = 0;
1254 strcpy(pcm->name, name);
1255
1256 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001257 snd_dma_pci_data(ice->pci),
1258 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 ice->pcm = pcm;
1261
1262 return 0;
1263}
1264
1265
1266/*
1267 * independent surround PCMs
1268 */
1269
Takashi Iwai32b47da2007-01-29 15:26:36 +01001270static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 {
1272 .addr = VT1724_MT_PDMA1_ADDR,
1273 .size = VT1724_MT_PDMA1_SIZE,
1274 .count = VT1724_MT_PDMA1_COUNT,
1275 .start = VT1724_PDMA1_START,
1276 },
1277 {
1278 .addr = VT1724_MT_PDMA2_ADDR,
1279 .size = VT1724_MT_PDMA2_SIZE,
1280 .count = VT1724_MT_PDMA2_COUNT,
1281 .start = VT1724_PDMA2_START,
1282 },
1283 {
1284 .addr = VT1724_MT_PDMA3_ADDR,
1285 .size = VT1724_MT_PDMA3_SIZE,
1286 .count = VT1724_MT_PDMA3_COUNT,
1287 .start = VT1724_PDMA3_START,
1288 },
1289};
1290
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001291static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001293 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 unsigned char val;
1295
1296 spin_lock_irq(&ice->reg_lock);
1297 val = 3 - substream->number;
1298 if (inb(ICEMT1724(ice, BURST)) < val)
1299 outb(val, ICEMT1724(ice, BURST));
1300 spin_unlock_irq(&ice->reg_lock);
1301 return snd_vt1724_pcm_prepare(substream);
1302}
1303
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001304static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001306 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1307 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Ingo Molnar62932df2006-01-16 16:34:20 +01001309 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 /* already used by PDMA0? */
1311 if (ice->pcm_reserved[substream->number]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001312 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 return -EBUSY; /* FIXME: should handle blocking mode properly */
1314 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001315 mutex_unlock(&ice->open_mutex);
Takashi Iwai32b47da2007-01-29 15:26:36 +01001316 runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 ice->playback_con_substream_ds[substream->number] = substream;
1318 runtime->hw = snd_vt1724_2ch_stereo;
1319 snd_pcm_set_sync(substream);
1320 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1321 set_rate_constraints(ice, substream);
1322 return 0;
1323}
1324
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001325static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001327 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001330 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 ice->playback_con_substream_ds[substream->number] = NULL;
1332 ice->pcm_reserved[substream->number] = NULL;
1333
1334 return 0;
1335}
1336
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001337static struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 .open = snd_vt1724_playback_indep_open,
1339 .close = snd_vt1724_playback_indep_close,
1340 .ioctl = snd_pcm_lib_ioctl,
1341 .hw_params = snd_vt1724_pcm_hw_params,
1342 .hw_free = snd_vt1724_pcm_hw_free,
1343 .prepare = snd_vt1724_playback_indep_prepare,
1344 .trigger = snd_vt1724_pcm_trigger,
1345 .pointer = snd_vt1724_pcm_pointer,
1346};
1347
1348
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001349static int __devinit snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001351 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 int play;
1353 int err;
1354
1355 play = ice->num_total_dacs / 2 - 1;
1356 if (play <= 0)
1357 return 0;
1358
1359 err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
1360 if (err < 0)
1361 return err;
1362
1363 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1364 &snd_vt1724_playback_indep_ops);
1365
1366 pcm->private_data = ice;
1367 pcm->info_flags = 0;
1368 strcpy(pcm->name, "ICE1724 Surround PCM");
1369
1370 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001371 snd_dma_pci_data(ice->pci),
1372 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
1374 ice->pcm_ds = pcm;
1375
1376 return 0;
1377}
1378
1379
1380/*
1381 * Mixer section
1382 */
1383
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001384static int __devinit snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
1386 int err;
1387
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001388 if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001389 struct snd_ac97_bus *pbus;
1390 struct snd_ac97_template ac97;
1391 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 .write = snd_vt1724_ac97_write,
1393 .read = snd_vt1724_ac97_read,
1394 };
1395
1396 /* cold reset */
1397 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
1398 mdelay(5); /* FIXME */
1399 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
1400
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001401 err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
1402 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return err;
1404 memset(&ac97, 0, sizeof(ac97));
1405 ac97.private_data = ice;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001406 err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
1407 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
1409 else
1410 return 0;
1411 }
1412 /* I2S mixer only */
1413 strcat(ice->card->mixername, "ICE1724 - multitrack");
1414 return 0;
1415}
1416
1417/*
1418 *
1419 */
1420
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001421static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422{
1423 return (unsigned int)ice->eeprom.data[idx] | \
1424 ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
1425 ((unsigned int)ice->eeprom.data[idx + 2] << 16);
1426}
1427
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001428static void snd_vt1724_proc_read(struct snd_info_entry *entry,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001429 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001431 struct snd_ice1712 *ice = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 unsigned int idx;
1433
1434 snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1435 snd_iprintf(buffer, "EEPROM:\n");
1436
1437 snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
1438 snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
1439 snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001440 snd_iprintf(buffer, " System Config : 0x%x\n",
1441 ice->eeprom.data[ICE_EEP2_SYSCONF]);
1442 snd_iprintf(buffer, " ACLink : 0x%x\n",
1443 ice->eeprom.data[ICE_EEP2_ACLINK]);
1444 snd_iprintf(buffer, " I2S : 0x%x\n",
1445 ice->eeprom.data[ICE_EEP2_I2S]);
1446 snd_iprintf(buffer, " S/PDIF : 0x%x\n",
1447 ice->eeprom.data[ICE_EEP2_SPDIF]);
1448 snd_iprintf(buffer, " GPIO direction : 0x%x\n",
1449 ice->eeprom.gpiodir);
1450 snd_iprintf(buffer, " GPIO mask : 0x%x\n",
1451 ice->eeprom.gpiomask);
1452 snd_iprintf(buffer, " GPIO state : 0x%x\n",
1453 ice->eeprom.gpiostate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 for (idx = 0x12; idx < ice->eeprom.size; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001455 snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
1456 idx, ice->eeprom.data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 snd_iprintf(buffer, "\nRegisters:\n");
1459
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001460 snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
1461 (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 for (idx = 0x0; idx < 0x20 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001463 snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
1464 idx, inb(ice->port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 for (idx = 0x0; idx < 0x30 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001466 snd_iprintf(buffer, " MT%02x : 0x%02x\n",
1467 idx, inb(ice->profi_port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468}
1469
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001470static void __devinit snd_vt1724_proc_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001472 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001474 if (!snd_card_proc_new(ice->card, "ice1724", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02001475 snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476}
1477
1478/*
1479 *
1480 */
1481
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001482static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
1483 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484{
1485 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001486 uinfo->count = sizeof(struct snd_ice1712_eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return 0;
1488}
1489
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001490static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
1491 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001493 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1496 return 0;
1497}
1498
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001499static struct snd_kcontrol_new snd_vt1724_eeprom __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1501 .name = "ICE1724 EEPROM",
1502 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1503 .info = snd_vt1724_eeprom_info,
1504 .get = snd_vt1724_eeprom_get
1505};
1506
1507/*
1508 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001509static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
1510 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1513 uinfo->count = 1;
1514 return 0;
1515}
1516
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001517static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001519 unsigned int val, rbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
1521 val = diga->status[0] & 0x03; /* professional, non-audio */
1522 if (val & 0x01) {
1523 /* professional */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001524 if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
1525 IEC958_AES0_PRO_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 val |= 1U << 3;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001527 rbits = (diga->status[4] >> 3) & 0x0f;
1528 if (rbits) {
1529 switch (rbits) {
1530 case 2: val |= 5 << 12; break; /* 96k */
1531 case 3: val |= 6 << 12; break; /* 192k */
1532 case 10: val |= 4 << 12; break; /* 88.2k */
1533 case 11: val |= 7 << 12; break; /* 176.4k */
1534 }
1535 } else {
1536 switch (diga->status[0] & IEC958_AES0_PRO_FS) {
1537 case IEC958_AES0_PRO_FS_44100:
1538 break;
1539 case IEC958_AES0_PRO_FS_32000:
1540 val |= 3U << 12;
1541 break;
1542 default:
1543 val |= 2U << 12;
1544 break;
1545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 }
1547 } else {
1548 /* consumer */
1549 val |= diga->status[1] & 0x04; /* copyright */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001550 if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
1551 IEC958_AES0_CON_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 val |= 1U << 3;
1553 val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
1554 val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
1555 }
1556 return val;
1557}
1558
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001559static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 memset(diga->status, 0, sizeof(diga->status));
1562 diga->status[0] = val & 0x03; /* professional, non-audio */
1563 if (val & 0x01) {
1564 /* professional */
1565 if (val & (1U << 3))
1566 diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
1567 switch ((val >> 12) & 0x7) {
1568 case 0:
1569 break;
1570 case 2:
1571 diga->status[0] |= IEC958_AES0_PRO_FS_32000;
1572 break;
1573 default:
1574 diga->status[0] |= IEC958_AES0_PRO_FS_48000;
1575 break;
1576 }
1577 } else {
1578 /* consumer */
1579 diga->status[0] |= val & (1U << 2); /* copyright */
1580 if (val & (1U << 3))
1581 diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
1582 diga->status[1] |= (val >> 4) & 0x3f; /* category */
1583 diga->status[3] |= (val >> 12) & 0x07; /* fs */
1584 }
1585}
1586
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001587static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
1588 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001590 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 unsigned int val;
1592 val = inw(ICEMT1724(ice, SPDIF_CTRL));
1593 decode_spdif_bits(&ucontrol->value.iec958, val);
1594 return 0;
1595}
1596
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001597static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
1598 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001600 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 unsigned int val, old;
1602
1603 val = encode_spdif_bits(&ucontrol->value.iec958);
1604 spin_lock_irq(&ice->reg_lock);
1605 old = inw(ICEMT1724(ice, SPDIF_CTRL));
1606 if (val != old)
1607 update_spdif_bits(ice, val);
1608 spin_unlock_irq(&ice->reg_lock);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001609 return val != old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610}
1611
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001612static struct snd_kcontrol_new snd_vt1724_spdif_default __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
1614 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001615 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 .info = snd_vt1724_spdif_info,
1617 .get = snd_vt1724_spdif_default_get,
1618 .put = snd_vt1724_spdif_default_put
1619};
1620
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001621static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
1622 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1625 IEC958_AES0_PROFESSIONAL |
1626 IEC958_AES0_CON_NOT_COPYRIGHT |
1627 IEC958_AES0_CON_EMPHASIS;
1628 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1629 IEC958_AES1_CON_CATEGORY;
1630 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1631 return 0;
1632}
1633
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001634static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
1635 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636{
1637 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1638 IEC958_AES0_PROFESSIONAL |
1639 IEC958_AES0_PRO_FS |
1640 IEC958_AES0_PRO_EMPHASIS;
1641 return 0;
1642}
1643
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001644static struct snd_kcontrol_new snd_vt1724_spdif_maskc __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001647 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001648 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 .info = snd_vt1724_spdif_info,
1650 .get = snd_vt1724_spdif_maskc_get,
1651};
1652
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001653static struct snd_kcontrol_new snd_vt1724_spdif_maskp __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
1655 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001656 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001657 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 .info = snd_vt1724_spdif_info,
1659 .get = snd_vt1724_spdif_maskp_get,
1660};
1661
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001662#define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001664static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
1665 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001667 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1668 ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
1669 VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return 0;
1671}
1672
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001673static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
1674 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001676 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 unsigned char old, val;
1678
1679 spin_lock_irq(&ice->reg_lock);
1680 old = val = inb(ICEREG1724(ice, SPDIF_CFG));
1681 val &= ~VT1724_CFG_SPDIF_OUT_EN;
1682 if (ucontrol->value.integer.value[0])
1683 val |= VT1724_CFG_SPDIF_OUT_EN;
1684 if (old != val)
1685 outb(val, ICEREG1724(ice, SPDIF_CFG));
1686 spin_unlock_irq(&ice->reg_lock);
1687 return old != val;
1688}
1689
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001690static struct snd_kcontrol_new snd_vt1724_spdif_switch __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
1692 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1693 /* FIXME: the following conflict with IEC958 Playback Route */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001694 /* .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
1695 .name = SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 .info = snd_vt1724_spdif_sw_info,
1697 .get = snd_vt1724_spdif_sw_get,
1698 .put = snd_vt1724_spdif_sw_put
1699};
1700
1701
1702#if 0 /* NOT USED YET */
1703/*
1704 * GPIO access from extern
1705 */
1706
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001707#define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001709int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
1710 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001712 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 int shift = kcontrol->private_value & 0xff;
1714 int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001715
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 snd_ice1712_save_gpio_status(ice);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001717 ucontrol->value.integer.value[0] =
1718 (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 snd_ice1712_restore_gpio_status(ice);
1720 return 0;
1721}
1722
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001723int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
1724 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001726 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 int shift = kcontrol->private_value & 0xff;
1728 int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1729 unsigned int val, nval;
1730
1731 if (kcontrol->private_value & (1 << 31))
1732 return -EPERM;
1733 nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
1734 snd_ice1712_save_gpio_status(ice);
1735 val = snd_ice1712_gpio_read(ice);
1736 nval |= val & ~(1 << shift);
1737 if (val != nval)
1738 snd_ice1712_gpio_write(ice, nval);
1739 snd_ice1712_restore_gpio_status(ice);
1740 return val != nval;
1741}
1742#endif /* NOT USED YET */
1743
1744/*
1745 * rate
1746 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001747static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
1748 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001750 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1753 uinfo->count = 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001754 uinfo->value.enumerated.items = ice->hw_rates->count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1756 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001757 if (uinfo->value.enumerated.item == uinfo->value.enumerated.items - 1)
1758 strcpy(uinfo->value.enumerated.name, "IEC958 Input");
1759 else
1760 sprintf(uinfo->value.enumerated.name, "%d",
1761 ice->hw_rates->list[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return 0;
1763}
1764
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001765static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
1766 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001768 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001769 unsigned int i, rate;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001772 if (ice->is_spdif_master(ice)) {
1773 ucontrol->value.enumerated.item[0] = ice->hw_rates->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001775 rate = ice->get_rate(ice);
1776 ucontrol->value.enumerated.item[0] = 0;
1777 for (i = 0; i < ice->hw_rates->count; i++) {
1778 if (ice->hw_rates->list[i] == rate) {
1779 ucontrol->value.enumerated.item[0] = i;
1780 break;
1781 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784 spin_unlock_irq(&ice->reg_lock);
1785 return 0;
1786}
1787
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001788/* setting clock to external - SPDIF */
1789static void stdclock_set_spdif_clock(struct snd_ice1712 *ice)
1790{
1791 unsigned char oval;
1792 unsigned char i2s_oval;
1793 oval = inb(ICEMT1724(ice, RATE));
1794 outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
1795 /* setting 256fs */
1796 i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
1797 outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
1798}
1799
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001800static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
1801 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001803 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001804 unsigned int old_rate, new_rate;
1805 unsigned int item = ucontrol->value.enumerated.item[0];
1806 unsigned int spdif = ice->hw_rates->count;
1807
1808 if (item > spdif)
1809 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001812 if (ice->is_spdif_master(ice))
1813 old_rate = 0;
1814 else
1815 old_rate = ice->get_rate(ice);
1816 if (item == spdif) {
1817 /* switching to external clock via SPDIF */
1818 ice->set_spdif_clock(ice);
1819 new_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001821 /* internal on-card clock */
1822 new_rate = ice->hw_rates->list[item];
1823 ice->pro_rate_default = new_rate;
1824 spin_unlock_irq(&ice->reg_lock);
1825 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
1826 spin_lock_irq(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 spin_unlock_irq(&ice->reg_lock);
1829
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001830 /* the first reset to the SPDIF master mode? */
1831 if (old_rate != new_rate && !new_rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 /* notify akm chips as well */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001833 unsigned int i;
1834 if (ice->gpio.set_pro_rate)
1835 ice->gpio.set_pro_rate(ice, 0);
1836 for (i = 0; i < ice->akm_codecs; i++) {
1837 if (ice->akm[i].ops.set_rate_val)
1838 ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 }
1840 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001841 return old_rate != new_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001844static struct snd_kcontrol_new snd_vt1724_pro_internal_clock __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1846 .name = "Multi Track Internal Clock",
1847 .info = snd_vt1724_pro_internal_clock_info,
1848 .get = snd_vt1724_pro_internal_clock_get,
1849 .put = snd_vt1724_pro_internal_clock_put
1850};
1851
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001852#define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001854static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
1855 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
1857 ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1858 return 0;
1859}
1860
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001861static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
1862 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001864 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 int change = 0, nval;
1866
1867 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1868 spin_lock_irq(&ice->reg_lock);
1869 change = PRO_RATE_LOCKED != nval;
1870 PRO_RATE_LOCKED = nval;
1871 spin_unlock_irq(&ice->reg_lock);
1872 return change;
1873}
1874
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001875static struct snd_kcontrol_new snd_vt1724_pro_rate_locking __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1877 .name = "Multi Track Rate Locking",
1878 .info = snd_vt1724_pro_rate_locking_info,
1879 .get = snd_vt1724_pro_rate_locking_get,
1880 .put = snd_vt1724_pro_rate_locking_put
1881};
1882
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001883#define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001885static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
1886 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
1888 ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
1889 return 0;
1890}
1891
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001892static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
1893 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001895 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 int change = 0, nval;
1897
1898 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1899 spin_lock_irq(&ice->reg_lock);
1900 change = PRO_RATE_RESET != nval;
1901 PRO_RATE_RESET = nval;
1902 spin_unlock_irq(&ice->reg_lock);
1903 return change;
1904}
1905
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001906static struct snd_kcontrol_new snd_vt1724_pro_rate_reset __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1908 .name = "Multi Track Rate Reset",
1909 .info = snd_vt1724_pro_rate_reset_info,
1910 .get = snd_vt1724_pro_rate_reset_get,
1911 .put = snd_vt1724_pro_rate_reset_put
1912};
1913
1914
1915/*
1916 * routing
1917 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001918static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
1919 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 static char *texts[] = {
1922 "PCM Out", /* 0 */
1923 "H/W In 0", "H/W In 1", /* 1-2 */
1924 "IEC958 In L", "IEC958 In R", /* 3-4 */
1925 };
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1928 uinfo->count = 1;
1929 uinfo->value.enumerated.items = 5;
1930 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1931 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1932 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1933 return 0;
1934}
1935
1936static inline int analog_route_shift(int idx)
1937{
1938 return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
1939}
1940
1941static inline int digital_route_shift(int idx)
1942{
1943 return idx * 3;
1944}
1945
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001946static int get_route_val(struct snd_ice1712 *ice, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 unsigned long val;
1949 unsigned char eitem;
Takashi Iwai32b47da2007-01-29 15:26:36 +01001950 static const unsigned char xlate[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 0, 255, 1, 2, 255, 255, 3, 4,
1952 };
1953
1954 val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
1955 val >>= shift;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001956 val &= 7; /* we now have 3 bits per output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 eitem = xlate[val];
1958 if (eitem == 255) {
1959 snd_BUG();
1960 return 0;
1961 }
1962 return eitem;
1963}
1964
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001965static int put_route_val(struct snd_ice1712 *ice, unsigned int val, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966{
1967 unsigned int old_val, nval;
1968 int change;
Takashi Iwai32b47da2007-01-29 15:26:36 +01001969 static const unsigned char xroute[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 0, /* PCM */
1971 2, /* PSDIN0 Left */
1972 3, /* PSDIN0 Right */
1973 6, /* SPDIN Left */
1974 7, /* SPDIN Right */
1975 };
1976
1977 nval = xroute[val % 5];
1978 val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
1979 val &= ~(0x07 << shift);
1980 val |= nval << shift;
1981 change = val != old_val;
1982 if (change)
1983 outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
1984 return change;
1985}
1986
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001987static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
1988 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001990 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001992 ucontrol->value.enumerated.item[0] =
1993 get_route_val(ice, analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return 0;
1995}
1996
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001997static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
1998 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002000 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2002 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2003 analog_route_shift(idx));
2004}
2005
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002006static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
2007 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002009 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002011 ucontrol->value.enumerated.item[0] =
2012 get_route_val(ice, digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return 0;
2014}
2015
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002016static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
2017 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002019 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2021 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2022 digital_route_shift(idx));
2023}
2024
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002025static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2027 .name = "H/W Playback Route",
2028 .info = snd_vt1724_pro_route_info,
2029 .get = snd_vt1724_pro_route_analog_get,
2030 .put = snd_vt1724_pro_route_analog_put,
2031};
2032
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002033static struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002035 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 .info = snd_vt1724_pro_route_info,
2037 .get = snd_vt1724_pro_route_spdif_get,
2038 .put = snd_vt1724_pro_route_spdif_put,
2039 .count = 2,
2040};
2041
2042
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002043static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
2044 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
2046 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2047 uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
2048 uinfo->value.integer.min = 0;
2049 uinfo->value.integer.max = 255;
2050 return 0;
2051}
2052
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002053static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
2054 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002056 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 int idx;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002058
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 spin_lock_irq(&ice->reg_lock);
2060 for (idx = 0; idx < 22; idx++) {
2061 outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002062 ucontrol->value.integer.value[idx] =
2063 inb(ICEMT1724(ice, MONITOR_PEAKDATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065 spin_unlock_irq(&ice->reg_lock);
2066 return 0;
2067}
2068
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002069static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2071 .name = "Multi Track Peak",
2072 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2073 .info = snd_vt1724_pro_peak_info,
2074 .get = snd_vt1724_pro_peak_get
2075};
2076
2077/*
2078 *
2079 */
2080
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002081static struct snd_ice1712_card_info no_matched __devinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002083static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 snd_vt1724_revo_cards,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002085 snd_vt1724_amp_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 snd_vt1724_aureon_cards,
2087 snd_vt1720_mobo_cards,
2088 snd_vt1720_pontis_cards,
Julian Scheel6b8d6e52008-01-16 19:50:00 +01002089 snd_vt1724_prodigy_hifi_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 snd_vt1724_prodigy192_cards,
2091 snd_vt1724_juli_cards,
2092 snd_vt1724_phase_cards,
Clement Guedezf6cdab52007-01-08 10:48:41 +01002093 snd_vt1724_wtm_cards,
Shin-ya Okadaf31639b2007-10-23 15:08:18 +02002094 snd_vt1724_se_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 NULL,
2096};
2097
2098
2099/*
2100 */
2101
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002102static void wait_i2c_busy(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103{
2104 int t = 0x10000;
2105 while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
2106 ;
2107 if (t == -1)
2108 printk(KERN_ERR "ice1724: i2c busy timeout\n");
2109}
2110
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002111unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
2112 unsigned char dev, unsigned char addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 unsigned char val;
2115
Ingo Molnar62932df2006-01-16 16:34:20 +01002116 mutex_lock(&ice->i2c_mutex);
Pavel Hofmanacec30f2007-12-03 12:37:17 +01002117 wait_i2c_busy(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2119 outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2120 wait_i2c_busy(ice);
2121 val = inb(ICEREG1724(ice, I2C_DATA));
Ingo Molnar62932df2006-01-16 16:34:20 +01002122 mutex_unlock(&ice->i2c_mutex);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002123 /* printk("i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return val;
2125}
2126
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002127void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
2128 unsigned char dev, unsigned char addr, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
Ingo Molnar62932df2006-01-16 16:34:20 +01002130 mutex_lock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 wait_i2c_busy(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002132 /* printk("i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2134 outb(data, ICEREG1724(ice, I2C_DATA));
2135 outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2136 wait_i2c_busy(ice);
Ingo Molnar62932df2006-01-16 16:34:20 +01002137 mutex_unlock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138}
2139
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002140static int __devinit snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
2141 const char *modelname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142{
2143 const int dev = 0xa0; /* EEPROM device address */
2144 unsigned int i, size;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002145 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002147 if (!modelname || !*modelname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 ice->eeprom.subvendor = 0;
2149 if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
2150 ice->eeprom.subvendor =
2151 (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002152 (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
2153 (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002155 if (ice->eeprom.subvendor == 0 ||
2156 ice->eeprom.subvendor == (unsigned int)-1) {
2157 /* invalid subvendor from EEPROM, try the PCI
2158 * subststem ID instead
2159 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 u16 vendor, device;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002161 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
2162 &vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002164 ice->eeprom.subvendor =
2165 ((unsigned int)swab16(vendor) << 16) | swab16(device);
2166 if (ice->eeprom.subvendor == 0 ||
2167 ice->eeprom.subvendor == (unsigned int)-1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 printk(KERN_ERR "ice1724: No valid ID is found\n");
2169 return -ENXIO;
2170 }
2171 }
2172 }
2173 for (tbl = card_tables; *tbl; tbl++) {
2174 for (c = *tbl; c->subvendor; c++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002175 if (modelname && c->model &&
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002176 !strcmp(modelname, c->model)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002177 printk(KERN_INFO "ice1724: Using board model %s\n",
2178 c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 ice->eeprom.subvendor = c->subvendor;
2180 } else if (c->subvendor != ice->eeprom.subvendor)
2181 continue;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002182 if (!c->eeprom_size || !c->eeprom_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 goto found;
2184 /* if the EEPROM is given by the driver, use it */
2185 snd_printdd("using the defined eeprom..\n");
2186 ice->eeprom.version = 2;
2187 ice->eeprom.size = c->eeprom_size + 6;
2188 memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
2189 goto read_skipped;
2190 }
2191 }
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002192 printk(KERN_WARNING "ice1724: No matching model found for ID 0x%x\n",
2193 ice->eeprom.subvendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194
2195 found:
2196 ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
2197 if (ice->eeprom.size < 6)
2198 ice->eeprom.size = 32;
2199 else if (ice->eeprom.size > 32) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002200 printk(KERN_ERR "ice1724: Invalid EEPROM (size = %i)\n",
2201 ice->eeprom.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 return -EIO;
2203 }
2204 ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
2205 if (ice->eeprom.version != 2)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002206 printk(KERN_WARNING "ice1724: Invalid EEPROM version %i\n",
2207 ice->eeprom.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 size = ice->eeprom.size - 6;
2209 for (i = 0; i < size; i++)
2210 ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
2211
2212 read_skipped:
2213 ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
2214 ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
2215 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
2216
2217 return 0;
2218}
2219
2220
2221
Karsten Wiese988f0662008-04-22 12:52:15 +02002222static void __devinit snd_vt1724_chip_reset(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223{
2224 outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002225 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 outb(0, ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002227 msleep(10);
2228}
2229
2230static int __devinit snd_vt1724_chip_init(struct snd_ice1712 *ice)
2231{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
2233 outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
2234 outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
2235 outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
2236
2237 ice->gpio.write_mask = ice->eeprom.gpiomask;
2238 ice->gpio.direction = ice->eeprom.gpiodir;
2239 snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
2240 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
2241 snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
2242
2243 outb(0, ICEREG1724(ice, POWERDOWN));
2244
2245 return 0;
2246}
2247
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002248static int __devinit snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249{
2250 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002251 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Takashi Iwaida3cec32008-08-08 17:12:14 +02002253 if (snd_BUG_ON(!ice->pcm))
2254 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255
2256 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
2257 if (err < 0)
2258 return err;
2259
2260 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
2261 if (err < 0)
2262 return err;
2263
2264 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
2265 if (err < 0)
2266 return err;
2267 kctl->id.device = ice->pcm->device;
2268 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
2269 if (err < 0)
2270 return err;
2271 kctl->id.device = ice->pcm->device;
2272 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
2273 if (err < 0)
2274 return err;
2275 kctl->id.device = ice->pcm->device;
2276#if 0 /* use default only */
2277 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
2278 if (err < 0)
2279 return err;
2280 kctl->id.device = ice->pcm->device;
2281 ice->spdif.stream_ctl = kctl;
2282#endif
2283 return 0;
2284}
2285
2286
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002287static int __devinit snd_vt1724_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288{
2289 int err;
2290
2291 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
2292 if (err < 0)
2293 return err;
2294 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
2295 if (err < 0)
2296 return err;
2297
2298 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
2299 if (err < 0)
2300 return err;
2301 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
2302 if (err < 0)
2303 return err;
2304
2305 if (ice->num_total_dacs > 0) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002306 struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 tmp.count = ice->num_total_dacs;
2308 if (ice->vt1720 && tmp.count > 2)
2309 tmp.count = 2;
2310 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2311 if (err < 0)
2312 return err;
2313 }
2314
2315 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
2316 if (err < 0)
2317 return err;
2318
2319 return 0;
2320}
2321
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002322static int snd_vt1724_free(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002324 if (!ice->port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 goto __hw_end;
2326 /* mask all interrupts */
2327 outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
2328 outb(0xff, ICEREG1724(ice, IRQMASK));
2329 /* --- */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002330__hw_end:
Jeff Garzikf000fd82008-04-22 13:50:34 +02002331 if (ice->irq >= 0)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002332 free_irq(ice->irq, ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 pci_release_regions(ice->pci);
2334 snd_ice1712_akm4xxx_free(ice);
2335 pci_disable_device(ice->pci);
Takashi Iwai7cda8ba2008-01-18 13:36:07 +01002336 kfree(ice->spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 kfree(ice);
2338 return 0;
2339}
2340
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002341static int snd_vt1724_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002343 struct snd_ice1712 *ice = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 return snd_vt1724_free(ice);
2345}
2346
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002347static int __devinit snd_vt1724_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 struct pci_dev *pci,
2349 const char *modelname,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002350 struct snd_ice1712 **r_ice1712)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002352 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 int err;
2354 unsigned char mask;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002355 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 .dev_free = snd_vt1724_dev_free,
2357 };
2358
2359 *r_ice1712 = NULL;
2360
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002361 /* enable PCI device */
2362 err = pci_enable_device(pci);
2363 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 return err;
2365
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002366 ice = kzalloc(sizeof(*ice), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 if (ice == NULL) {
2368 pci_disable_device(pci);
2369 return -ENOMEM;
2370 }
2371 ice->vt1724 = 1;
2372 spin_lock_init(&ice->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002373 mutex_init(&ice->gpio_mutex);
2374 mutex_init(&ice->open_mutex);
2375 mutex_init(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
2377 ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
2378 ice->gpio.set_data = snd_vt1724_set_gpio_data;
2379 ice->gpio.get_data = snd_vt1724_get_gpio_data;
2380 ice->card = card;
2381 ice->pci = pci;
2382 ice->irq = -1;
2383 pci_set_master(pci);
2384 snd_vt1724_proc_init(ice);
2385 synchronize_irq(pci->irq);
2386
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002387 err = pci_request_regions(pci, "ICE1724");
2388 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 kfree(ice);
2390 pci_disable_device(pci);
2391 return err;
2392 }
2393 ice->port = pci_resource_start(pci, 0);
2394 ice->profi_port = pci_resource_start(pci, 1);
2395
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002396 if (request_irq(pci->irq, snd_vt1724_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002397 IRQF_SHARED, "ICE1724", ice)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002398 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 snd_vt1724_free(ice);
2400 return -EIO;
2401 }
2402
2403 ice->irq = pci->irq;
2404
Karsten Wiese988f0662008-04-22 12:52:15 +02002405 snd_vt1724_chip_reset(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
2407 snd_vt1724_free(ice);
2408 return -EIO;
2409 }
2410 if (snd_vt1724_chip_init(ice) < 0) {
2411 snd_vt1724_free(ice);
2412 return -EIO;
2413 }
2414
2415 /* unmask used interrupts */
Takashi Iwai3a841d52008-04-23 17:47:28 +02002416 mask = VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 outb(mask, ICEREG1724(ice, IRQMASK));
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002418 /* don't handle FIFO overrun/underruns (just yet),
2419 * since they cause machine lockups
2420 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
2422
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002423 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
2424 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 snd_vt1724_free(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002426 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 }
2428
2429 snd_card_set_dev(card, &pci->dev);
2430
2431 *r_ice1712 = ice;
2432 return 0;
2433}
2434
2435
2436/*
2437 *
2438 * Registration
2439 *
2440 */
2441
2442static int __devinit snd_vt1724_probe(struct pci_dev *pci,
2443 const struct pci_device_id *pci_id)
2444{
2445 static int dev;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002446 struct snd_card *card;
2447 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 int pcm_dev = 0, err;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002449 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451 if (dev >= SNDRV_CARDS)
2452 return -ENODEV;
2453 if (!enable[dev]) {
2454 dev++;
2455 return -ENOENT;
2456 }
2457
2458 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
2459 if (card == NULL)
2460 return -ENOMEM;
2461
2462 strcpy(card->driver, "ICE1724");
2463 strcpy(card->shortname, "ICEnsemble ICE1724");
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002464
2465 err = snd_vt1724_create(card, pci, model[dev], &ice);
2466 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 snd_card_free(card);
2468 return err;
2469 }
2470
2471 for (tbl = card_tables; *tbl; tbl++) {
2472 for (c = *tbl; c->subvendor; c++) {
2473 if (c->subvendor == ice->eeprom.subvendor) {
2474 strcpy(card->shortname, c->name);
2475 if (c->driver) /* specific driver? */
2476 strcpy(card->driver, c->driver);
2477 if (c->chip_init) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002478 err = c->chip_init(ice);
2479 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 snd_card_free(card);
2481 return err;
2482 }
2483 }
2484 goto __found;
2485 }
2486 }
2487 }
2488 c = &no_matched;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002489__found:
2490 /*
2491 * VT1724 has separate DMAs for the analog and the SPDIF streams while
2492 * ICE1712 has only one for both (mixed up).
2493 *
2494 * Confusingly the analog PCM is named "professional" here because it
2495 * was called so in ice1712 driver, and vt1724 driver is derived from
2496 * ice1712 driver.
2497 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002498 ice->pro_rate_default = PRO_RATE_DEFAULT;
2499 if (!ice->is_spdif_master)
2500 ice->is_spdif_master = stdclock_is_spdif_master;
2501 if (!ice->get_rate)
2502 ice->get_rate = stdclock_get_rate;
2503 if (!ice->set_rate)
2504 ice->set_rate = stdclock_set_rate;
2505 if (!ice->set_mclk)
2506 ice->set_mclk = stdclock_set_mclk;
2507 if (!ice->set_spdif_clock)
2508 ice->set_spdif_clock = stdclock_set_spdif_clock;
2509 if (!ice->hw_rates)
2510 set_std_hw_rates(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002512 err = snd_vt1724_pcm_profi(ice, pcm_dev++);
2513 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 snd_card_free(card);
2515 return err;
2516 }
2517
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002518 err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
2519 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 snd_card_free(card);
2521 return err;
2522 }
2523
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002524 err = snd_vt1724_pcm_indep(ice, pcm_dev++);
2525 if (err < 0) {
2526 snd_card_free(card);
2527 return err;
2528 }
2529
2530 err = snd_vt1724_ac97_mixer(ice);
2531 if (err < 0) {
2532 snd_card_free(card);
2533 return err;
2534 }
2535
2536 err = snd_vt1724_build_controls(ice);
2537 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 snd_card_free(card);
2539 return err;
2540 }
2541
2542 if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002543 err = snd_vt1724_spdif_build_controls(ice);
2544 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 snd_card_free(card);
2546 return err;
2547 }
2548 }
2549
2550 if (c->build_controls) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002551 err = c->build_controls(ice);
2552 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 snd_card_free(card);
2554 return err;
2555 }
2556 }
2557
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002558 if (!c->no_mpu401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002560 struct snd_rawmidi *rmidi;
2561
2562 err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
2563 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 snd_card_free(card);
2565 return err;
2566 }
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002567 ice->rmidi[0] = rmidi;
2568 rmidi->private_data = ice;
2569 strcpy(rmidi->name, "ICE1724 MIDI");
2570 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2571 SNDRV_RAWMIDI_INFO_INPUT |
2572 SNDRV_RAWMIDI_INFO_DUPLEX;
2573 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
2574 &vt1724_midi_output_ops);
2575 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
2576 &vt1724_midi_input_ops);
2577
Takashi Iwai3a841d52008-04-23 17:47:28 +02002578 /* set watermarks */
2579 outb(VT1724_MPU_RX_FIFO | 0x1,
2580 ICEREG1724(ice, MPU_FIFO_WM));
2581 outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002582 /* set UART mode */
2583 outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 }
2585 }
2586
2587 sprintf(card->longname, "%s at 0x%lx, irq %i",
2588 card->shortname, ice->port, ice->irq);
2589
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002590 err = snd_card_register(card);
2591 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 snd_card_free(card);
2593 return err;
2594 }
2595 pci_set_drvdata(pci, card);
2596 dev++;
2597 return 0;
2598}
2599
2600static void __devexit snd_vt1724_remove(struct pci_dev *pci)
2601{
2602 snd_card_free(pci_get_drvdata(pci));
2603 pci_set_drvdata(pci, NULL);
2604}
2605
2606static struct pci_driver driver = {
2607 .name = "ICE1724",
2608 .id_table = snd_vt1724_ids,
2609 .probe = snd_vt1724_probe,
2610 .remove = __devexit_p(snd_vt1724_remove),
2611};
2612
2613static int __init alsa_card_ice1724_init(void)
2614{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002615 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616}
2617
2618static void __exit alsa_card_ice1724_exit(void)
2619{
2620 pci_unregister_driver(&driver);
2621}
2622
2623module_init(alsa_card_ice1724_init)
2624module_exit(alsa_card_ice1724_exit)