blob: bb8d8c766b9d1f5ee5e08f85a8a36694ac1b8058 [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 int timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 while (1) {
388 status = inb(ICEREG1724(ice, IRQSTAT));
Takashi Iwai3a841d52008-04-23 17:47:28 +0200389 status &= status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (status == 0)
391 break;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200392 if (++timeout > 10) {
Takashi Iwai10832062008-08-11 10:18:39 +0200393 status = inb(ICEREG1724(ice, IRQSTAT));
394 printk(KERN_ERR "ice1724: Too long irq loop, "
395 "status = 0x%x\n", status);
396 if (status & VT1724_IRQ_MPU_TX) {
397 printk(KERN_ERR "ice1724: Disabling MPU_TX\n");
Takashi Iwai6834d7c2008-11-05 17:41:23 +0100398 outb(inb(ICEREG1724(ice, IRQMASK)) |
399 VT1724_IRQ_MPU_TX,
Takashi Iwai10832062008-08-11 10:18:39 +0200400 ICEREG1724(ice, IRQMASK));
401 }
Takashi Iwai3a841d52008-04-23 17:47:28 +0200402 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400404 handled = 1;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200405 if (status & VT1724_IRQ_MPU_TX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200406 spin_lock(&ice->reg_lock);
407 if (ice->midi_output)
408 vt1724_midi_write(ice);
409 spin_unlock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200410 /* Due to mysterical reasons, MPU_TX is always
411 * generated (and can't be cleared) when a PCM
412 * playback is going. So let's ignore at the
413 * next loop.
414 */
415 status_mask &= ~VT1724_IRQ_MPU_TX;
416 }
417 if (status & VT1724_IRQ_MPU_RX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200418 spin_lock(&ice->reg_lock);
419 if (ice->midi_input)
420 vt1724_midi_read(ice);
421 else
422 vt1724_midi_clear_rx(ice);
423 spin_unlock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200424 }
425 /* ack MPU irq */
426 outb(status, ICEREG1724(ice, IRQSTAT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 if (status & VT1724_IRQ_MTPCM) {
428 /*
429 * Multi-track PCM
430 * PCM assignment are:
431 * Playback DMA0 (M/C) = playback_pro_substream
432 * Playback DMA1 = playback_con_substream_ds[0]
433 * Playback DMA2 = playback_con_substream_ds[1]
434 * Playback DMA3 = playback_con_substream_ds[2]
435 * Playback DMA4 (SPDIF) = playback_con_substream
436 * Record DMA0 = capture_pro_substream
437 * Record DMA1 = capture_con_substream
438 */
439 unsigned char mtstat = inb(ICEMT1724(ice, IRQ));
440 if (mtstat & VT1724_MULTI_PDMA0) {
441 if (ice->playback_pro_substream)
442 snd_pcm_period_elapsed(ice->playback_pro_substream);
443 }
444 if (mtstat & VT1724_MULTI_RDMA0) {
445 if (ice->capture_pro_substream)
446 snd_pcm_period_elapsed(ice->capture_pro_substream);
447 }
448 if (mtstat & VT1724_MULTI_PDMA1) {
449 if (ice->playback_con_substream_ds[0])
450 snd_pcm_period_elapsed(ice->playback_con_substream_ds[0]);
451 }
452 if (mtstat & VT1724_MULTI_PDMA2) {
453 if (ice->playback_con_substream_ds[1])
454 snd_pcm_period_elapsed(ice->playback_con_substream_ds[1]);
455 }
456 if (mtstat & VT1724_MULTI_PDMA3) {
457 if (ice->playback_con_substream_ds[2])
458 snd_pcm_period_elapsed(ice->playback_con_substream_ds[2]);
459 }
460 if (mtstat & VT1724_MULTI_PDMA4) {
461 if (ice->playback_con_substream)
462 snd_pcm_period_elapsed(ice->playback_con_substream);
463 }
464 if (mtstat & VT1724_MULTI_RDMA1) {
465 if (ice->capture_con_substream)
466 snd_pcm_period_elapsed(ice->capture_con_substream);
467 }
468 /* ack anyway to avoid freeze */
469 outb(mtstat, ICEMT1724(ice, IRQ));
470 /* ought to really handle this properly */
471 if (mtstat & VT1724_MULTI_FIFO_ERR) {
472 unsigned char fstat = inb(ICEMT1724(ice, DMA_FIFO_ERR));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400473 outb(fstat, ICEMT1724(ice, DMA_FIFO_ERR));
474 outb(VT1724_MULTI_FIFO_ERR | inb(ICEMT1724(ice, DMA_INT_MASK)), ICEMT1724(ice, DMA_INT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /* If I don't do this, I get machine lockup due to continual interrupts */
476 }
477
478 }
479 }
480 return IRQ_RETVAL(handled);
481}
482
483/*
484 * PCM code - professional part (multitrack)
485 */
486
487static unsigned int rates[] = {
488 8000, 9600, 11025, 12000, 16000, 22050, 24000,
489 32000, 44100, 48000, 64000, 88200, 96000,
490 176400, 192000,
491};
492
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100493static struct snd_pcm_hw_constraint_list hw_constraints_rates_96 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 .count = ARRAY_SIZE(rates) - 2, /* up to 96000 */
495 .list = rates,
496 .mask = 0,
497};
498
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100499static struct snd_pcm_hw_constraint_list hw_constraints_rates_48 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 .count = ARRAY_SIZE(rates) - 5, /* up to 48000 */
501 .list = rates,
502 .mask = 0,
503};
504
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100505static struct snd_pcm_hw_constraint_list hw_constraints_rates_192 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 .count = ARRAY_SIZE(rates),
507 .list = rates,
508 .mask = 0,
509};
510
511struct vt1724_pcm_reg {
512 unsigned int addr; /* ADDR register offset */
513 unsigned int size; /* SIZE register offset */
514 unsigned int count; /* COUNT register offset */
515 unsigned int start; /* start & pause bit */
516};
517
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100518static int snd_vt1724_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100520 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned char what;
522 unsigned char old;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100523 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 what = 0;
Takashi Iwaief991b92007-02-22 12:52:53 +0100526 snd_pcm_group_for_each_entry(s, substream) {
Clemens Ladisch29998d22007-07-30 08:14:31 +0200527 if (snd_pcm_substream_chip(s) == ice) {
528 const struct vt1724_pcm_reg *reg;
529 reg = s->runtime->private_data;
530 what |= reg->start;
531 snd_pcm_trigger_done(s, substream);
532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
535 switch (cmd) {
536 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
537 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
538 spin_lock(&ice->reg_lock);
539 old = inb(ICEMT1724(ice, DMA_PAUSE));
540 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
541 old |= what;
542 else
543 old &= ~what;
544 outb(old, ICEMT1724(ice, DMA_PAUSE));
545 spin_unlock(&ice->reg_lock);
546 break;
547
548 case SNDRV_PCM_TRIGGER_START:
549 case SNDRV_PCM_TRIGGER_STOP:
550 spin_lock(&ice->reg_lock);
551 old = inb(ICEMT1724(ice, DMA_CONTROL));
552 if (cmd == SNDRV_PCM_TRIGGER_START)
553 old |= what;
554 else
555 old &= ~what;
556 outb(old, ICEMT1724(ice, DMA_CONTROL));
557 spin_unlock(&ice->reg_lock);
558 break;
559
560 default:
561 return -EINVAL;
562 }
563 return 0;
564}
565
566/*
567 */
568
569#define DMA_STARTS (VT1724_RDMA0_START|VT1724_PDMA0_START|VT1724_RDMA1_START|\
570 VT1724_PDMA1_START|VT1724_PDMA2_START|VT1724_PDMA3_START|VT1724_PDMA4_START)
571#define DMA_PAUSES (VT1724_RDMA0_PAUSE|VT1724_PDMA0_PAUSE|VT1724_RDMA1_PAUSE|\
572 VT1724_PDMA1_PAUSE|VT1724_PDMA2_PAUSE|VT1724_PDMA3_PAUSE|VT1724_PDMA4_PAUSE)
573
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100574static const unsigned int stdclock_rate_list[16] = {
575 48000, 24000, 12000, 9600, 32000, 16000, 8000, 96000, 44100,
576 22050, 11025, 88200, 176400, 0, 192000, 64000
577};
578
579static unsigned int stdclock_get_rate(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100581 unsigned int rate;
582 rate = stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
583 return rate;
584}
585
586static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
587{
588 int i;
589 for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
590 if (stdclock_rate_list[i] == rate) {
591 outb(i, ICEMT1724(ice, RATE));
592 return;
593 }
594 }
595}
596
597static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
598 unsigned int rate)
599{
600 unsigned char val, old;
601 /* check MT02 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100603 val = old = inb(ICEMT1724(ice, I2S_FORMAT));
604 if (rate > 96000)
605 val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 else
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100607 val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
608 if (val != old) {
609 outb(val, ICEMT1724(ice, I2S_FORMAT));
610 /* master clock changed */
611 return 1;
612 }
613 }
614 /* no change in master clock */
615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100618static void snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
619 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
621 unsigned long flags;
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100622 unsigned char mclk_change;
623 unsigned int i, old_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100625 if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 spin_lock_irqsave(&ice->reg_lock, flags);
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100628 if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
630 /* running? we cannot change the rate now... */
631 spin_unlock_irqrestore(&ice->reg_lock, flags);
632 return;
633 }
634 if (!force && is_pro_rate_locked(ice)) {
635 spin_unlock_irqrestore(&ice->reg_lock, flags);
636 return;
637 }
638
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100639 old_rate = ice->get_rate(ice);
640 if (force || (old_rate != rate))
641 ice->set_rate(ice, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 else if (rate == ice->cur_rate) {
643 spin_unlock_irqrestore(&ice->reg_lock, flags);
644 return;
645 }
646
647 ice->cur_rate = rate;
648
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100649 /* setting master clock */
650 mclk_change = ice->set_mclk(ice, rate);
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 spin_unlock_irqrestore(&ice->reg_lock, flags);
653
654 if (mclk_change && ice->gpio.i2s_mclk_changed)
655 ice->gpio.i2s_mclk_changed(ice);
656 if (ice->gpio.set_pro_rate)
657 ice->gpio.set_pro_rate(ice, rate);
658
659 /* set up codecs */
660 for (i = 0; i < ice->akm_codecs; i++) {
661 if (ice->akm[i].ops.set_rate_val)
662 ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
663 }
664 if (ice->spdif.ops.setup_rate)
665 ice->spdif.ops.setup_rate(ice, rate);
666}
667
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100668static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
669 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100671 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 int i, chs;
673
674 chs = params_channels(hw_params);
Ingo Molnar62932df2006-01-16 16:34:20 +0100675 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /* mark surround channels */
677 if (substream == ice->playback_pro_substream) {
678 /* PDMA0 can be multi-channel up to 8 */
679 chs = chs / 2 - 1;
680 for (i = 0; i < chs; i++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100681 if (ice->pcm_reserved[i] &&
682 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100683 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return -EBUSY;
685 }
686 ice->pcm_reserved[i] = substream;
687 }
688 for (; i < 3; i++) {
689 if (ice->pcm_reserved[i] == substream)
690 ice->pcm_reserved[i] = NULL;
691 }
692 } else {
693 for (i = 0; i < 3; i++) {
694 /* check individual playback stream */
695 if (ice->playback_con_substream_ds[i] == substream) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100696 if (ice->pcm_reserved[i] &&
697 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100698 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return -EBUSY;
700 }
701 ice->pcm_reserved[i] = substream;
702 break;
703 }
704 }
705 }
Ingo Molnar62932df2006-01-16 16:34:20 +0100706 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
708 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
709}
710
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100711static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100713 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 int i;
715
Ingo Molnar62932df2006-01-16 16:34:20 +0100716 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 /* unmark surround channels */
718 for (i = 0; i < 3; i++)
719 if (ice->pcm_reserved[i] == substream)
720 ice->pcm_reserved[i] = NULL;
Ingo Molnar62932df2006-01-16 16:34:20 +0100721 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 return snd_pcm_lib_free_pages(substream);
723}
724
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100725static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100727 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 unsigned char val;
729 unsigned int size;
730
731 spin_lock_irq(&ice->reg_lock);
732 val = (8 - substream->runtime->channels) >> 1;
733 outb(val, ICEMT1724(ice, BURST));
734
735 outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));
736
737 size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400738 /* outl(size, ICEMT1724(ice, PLAYBACK_SIZE)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
740 outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
741 size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400742 /* outl(size, ICEMT1724(ice, PLAYBACK_COUNT)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
744 outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);
745
746 spin_unlock_irq(&ice->reg_lock);
747
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400748 /* 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 -0700749 return 0;
750}
751
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100752static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100754 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 size_t ptr;
756
757 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
758 return 0;
759#if 0 /* read PLAYBACK_ADDR */
760 ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
761 if (ptr < substream->runtime->dma_addr) {
762 snd_printd("ice1724: invalid negative ptr\n");
763 return 0;
764 }
765 ptr -= substream->runtime->dma_addr;
766 ptr = bytes_to_frames(substream->runtime, ptr);
767 if (ptr >= substream->runtime->buffer_size) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100768 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
769 (int)ptr, (int)substream->runtime->period_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771 }
772#else /* read PLAYBACK_SIZE */
773 ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
774 ptr = (ptr + 1) << 2;
775 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400776 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 ;
778 else if (ptr <= substream->runtime->buffer_size)
779 ptr = substream->runtime->buffer_size - ptr;
780 else {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100781 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
782 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 ptr = 0;
784 }
785#endif
786 return ptr;
787}
788
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100789static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100791 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100792 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 spin_lock_irq(&ice->reg_lock);
795 outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100796 outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
797 ice->profi_port + reg->size);
798 outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
799 ice->profi_port + reg->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 spin_unlock_irq(&ice->reg_lock);
801 return 0;
802}
803
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100804static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100806 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100807 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 size_t ptr;
809
810 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
811 return 0;
812#if 0 /* use ADDR register */
813 ptr = inl(ice->profi_port + reg->addr);
814 ptr -= substream->runtime->dma_addr;
815 return bytes_to_frames(substream->runtime, ptr);
816#else /* use SIZE register */
817 ptr = inw(ice->profi_port + reg->size);
818 ptr = (ptr + 1) << 2;
819 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400820 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 ;
822 else if (ptr <= substream->runtime->buffer_size)
823 ptr = substream->runtime->buffer_size - ptr;
824 else {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100825 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
826 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 ptr = 0;
828 }
829 return ptr;
830#endif
831}
832
Takashi Iwai32b47da2007-01-29 15:26:36 +0100833static const struct vt1724_pcm_reg vt1724_playback_pro_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 .addr = VT1724_MT_PLAYBACK_ADDR,
835 .size = VT1724_MT_PLAYBACK_SIZE,
836 .count = VT1724_MT_PLAYBACK_COUNT,
837 .start = VT1724_PDMA0_START,
838};
839
Takashi Iwai32b47da2007-01-29 15:26:36 +0100840static const struct vt1724_pcm_reg vt1724_capture_pro_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 .addr = VT1724_MT_CAPTURE_ADDR,
842 .size = VT1724_MT_CAPTURE_SIZE,
843 .count = VT1724_MT_CAPTURE_COUNT,
844 .start = VT1724_RDMA0_START,
845};
846
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400847static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
849 SNDRV_PCM_INFO_BLOCK_TRANSFER |
850 SNDRV_PCM_INFO_MMAP_VALID |
851 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
852 .formats = SNDRV_PCM_FMTBIT_S32_LE,
853 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
854 .rate_min = 8000,
855 .rate_max = 192000,
856 .channels_min = 2,
857 .channels_max = 8,
858 .buffer_bytes_max = (1UL << 21), /* 19bits dword */
859 .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
860 .period_bytes_max = (1UL << 21),
861 .periods_min = 2,
862 .periods_max = 1024,
863};
864
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400865static const struct snd_pcm_hardware snd_vt1724_spdif = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
867 SNDRV_PCM_INFO_BLOCK_TRANSFER |
868 SNDRV_PCM_INFO_MMAP_VALID |
869 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
870 .formats = SNDRV_PCM_FMTBIT_S32_LE,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200871 .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
872 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
873 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
874 SNDRV_PCM_RATE_192000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 .rate_min = 32000,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200876 .rate_max = 192000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 .channels_min = 2,
878 .channels_max = 2,
879 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
880 .period_bytes_min = 2 * 4 * 2,
881 .period_bytes_max = (1UL << 18),
882 .periods_min = 2,
883 .periods_max = 1024,
884};
885
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400886static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
888 SNDRV_PCM_INFO_BLOCK_TRANSFER |
889 SNDRV_PCM_INFO_MMAP_VALID |
890 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
891 .formats = SNDRV_PCM_FMTBIT_S32_LE,
892 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
893 .rate_min = 8000,
894 .rate_max = 192000,
895 .channels_min = 2,
896 .channels_max = 2,
897 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
898 .period_bytes_min = 2 * 4 * 2,
899 .period_bytes_max = (1UL << 18),
900 .periods_min = 2,
901 .periods_max = 1024,
902};
903
904/*
905 * set rate constraints
906 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100907static void set_std_hw_rates(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
910 /* I2S */
911 /* VT1720 doesn't support more than 96kHz */
912 if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100913 ice->hw_rates = &hw_constraints_rates_192;
914 else
915 ice->hw_rates = &hw_constraints_rates_96;
916 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 /* ACLINK */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100918 ice->hw_rates = &hw_constraints_rates_48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100920}
921
922static int set_rate_constraints(struct snd_ice1712 *ice,
923 struct snd_pcm_substream *substream)
924{
925 struct snd_pcm_runtime *runtime = substream->runtime;
926
927 runtime->hw.rate_min = ice->hw_rates->list[0];
928 runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
929 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
930 return snd_pcm_hw_constraint_list(runtime, 0,
931 SNDRV_PCM_HW_PARAM_RATE,
932 ice->hw_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934
935/* multi-channel playback needs alignment 8x32bit regardless of the channels
936 * actually used
937 */
938#define VT1724_BUFFER_ALIGN 0x20
939
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100940static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100942 struct snd_pcm_runtime *runtime = substream->runtime;
943 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200944 int chs, num_indeps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Takashi Iwai32b47da2007-01-29 15:26:36 +0100946 runtime->private_data = (void *)&vt1724_playback_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 ice->playback_pro_substream = substream;
948 runtime->hw = snd_vt1724_playback_pro;
949 snd_pcm_set_sync(substream);
950 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
951 set_rate_constraints(ice, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +0100952 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /* calculate the currently available channels */
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200954 num_indeps = ice->num_total_dacs / 2 - 1;
955 for (chs = 0; chs < num_indeps; chs++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (ice->pcm_reserved[chs])
957 break;
958 }
959 chs = (chs + 1) * 2;
960 runtime->hw.channels_max = chs;
961 if (chs > 2) /* channels must be even */
962 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Ingo Molnar62932df2006-01-16 16:34:20 +0100963 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
965 VT1724_BUFFER_ALIGN);
966 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
967 VT1724_BUFFER_ALIGN);
968 return 0;
969}
970
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100971static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100973 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
974 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975
Takashi Iwai32b47da2007-01-29 15:26:36 +0100976 runtime->private_data = (void *)&vt1724_capture_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 ice->capture_pro_substream = substream;
978 runtime->hw = snd_vt1724_2ch_stereo;
979 snd_pcm_set_sync(substream);
980 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
981 set_rate_constraints(ice, substream);
982 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
983 VT1724_BUFFER_ALIGN);
984 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
985 VT1724_BUFFER_ALIGN);
986 return 0;
987}
988
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100989static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100991 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100994 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 ice->playback_pro_substream = NULL;
996
997 return 0;
998}
999
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001000static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001002 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001005 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 ice->capture_pro_substream = NULL;
1007 return 0;
1008}
1009
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001010static struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 .open = snd_vt1724_playback_pro_open,
1012 .close = snd_vt1724_playback_pro_close,
1013 .ioctl = snd_pcm_lib_ioctl,
1014 .hw_params = snd_vt1724_pcm_hw_params,
1015 .hw_free = snd_vt1724_pcm_hw_free,
1016 .prepare = snd_vt1724_playback_pro_prepare,
1017 .trigger = snd_vt1724_pcm_trigger,
1018 .pointer = snd_vt1724_playback_pro_pointer,
1019};
1020
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001021static struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 .open = snd_vt1724_capture_pro_open,
1023 .close = snd_vt1724_capture_pro_close,
1024 .ioctl = snd_pcm_lib_ioctl,
1025 .hw_params = snd_vt1724_pcm_hw_params,
1026 .hw_free = snd_vt1724_pcm_hw_free,
1027 .prepare = snd_vt1724_pcm_prepare,
1028 .trigger = snd_vt1724_pcm_trigger,
1029 .pointer = snd_vt1724_pcm_pointer,
1030};
1031
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001032static int __devinit snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001034 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 int err;
1036
1037 err = snd_pcm_new(ice->card, "ICE1724", device, 1, 1, &pcm);
1038 if (err < 0)
1039 return err;
1040
1041 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
1042 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_vt1724_capture_pro_ops);
1043
1044 pcm->private_data = ice;
1045 pcm->info_flags = 0;
1046 strcpy(pcm->name, "ICE1724");
1047
1048 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001049 snd_dma_pci_data(ice->pci),
1050 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 ice->pcm_pro = pcm;
1053
1054 return 0;
1055}
1056
1057
1058/*
1059 * SPDIF PCM
1060 */
1061
Takashi Iwai32b47da2007-01-29 15:26:36 +01001062static const struct vt1724_pcm_reg vt1724_playback_spdif_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 .addr = VT1724_MT_PDMA4_ADDR,
1064 .size = VT1724_MT_PDMA4_SIZE,
1065 .count = VT1724_MT_PDMA4_COUNT,
1066 .start = VT1724_PDMA4_START,
1067};
1068
Takashi Iwai32b47da2007-01-29 15:26:36 +01001069static const struct vt1724_pcm_reg vt1724_capture_spdif_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 .addr = VT1724_MT_RDMA1_ADDR,
1071 .size = VT1724_MT_RDMA1_SIZE,
1072 .count = VT1724_MT_RDMA1_COUNT,
1073 .start = VT1724_RDMA1_START,
1074};
1075
1076/* update spdif control bits; call with reg_lock */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001077static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 unsigned char cbit, disabled;
1080
1081 cbit = inb(ICEREG1724(ice, SPDIF_CFG));
1082 disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
1083 if (cbit != disabled)
1084 outb(disabled, ICEREG1724(ice, SPDIF_CFG));
1085 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1086 if (cbit != disabled)
1087 outb(cbit, ICEREG1724(ice, SPDIF_CFG));
1088 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1089}
1090
1091/* update SPDIF control bits according to the given rate */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001092static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
1094 unsigned int val, nval;
1095 unsigned long flags;
1096
1097 spin_lock_irqsave(&ice->reg_lock, flags);
1098 nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
1099 nval &= ~(7 << 12);
1100 switch (rate) {
1101 case 44100: break;
1102 case 48000: nval |= 2 << 12; break;
1103 case 32000: nval |= 3 << 12; break;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001104 case 88200: nval |= 4 << 12; break;
1105 case 96000: nval |= 5 << 12; break;
1106 case 192000: nval |= 6 << 12; break;
1107 case 176400: nval |= 7 << 12; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
1109 if (val != nval)
1110 update_spdif_bits(ice, nval);
1111 spin_unlock_irqrestore(&ice->reg_lock, flags);
1112}
1113
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001114static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001116 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001117 if (!ice->force_pdma4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 update_spdif_rate(ice, substream->runtime->rate);
1119 return snd_vt1724_pcm_prepare(substream);
1120}
1121
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001122static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001124 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1125 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Takashi Iwai32b47da2007-01-29 15:26:36 +01001127 runtime->private_data = (void *)&vt1724_playback_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 ice->playback_con_substream = substream;
1129 if (ice->force_pdma4) {
1130 runtime->hw = snd_vt1724_2ch_stereo;
1131 set_rate_constraints(ice, substream);
1132 } else
1133 runtime->hw = snd_vt1724_spdif;
1134 snd_pcm_set_sync(substream);
1135 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1136 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1137 VT1724_BUFFER_ALIGN);
1138 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1139 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001140 if (ice->spdif.ops.open)
1141 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 return 0;
1143}
1144
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001145static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001147 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
1149 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001150 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 ice->playback_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001152 if (ice->spdif.ops.close)
1153 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 return 0;
1156}
1157
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001158static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001160 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1161 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Takashi Iwai32b47da2007-01-29 15:26:36 +01001163 runtime->private_data = (void *)&vt1724_capture_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 ice->capture_con_substream = substream;
1165 if (ice->force_rdma1) {
1166 runtime->hw = snd_vt1724_2ch_stereo;
1167 set_rate_constraints(ice, substream);
1168 } else
1169 runtime->hw = snd_vt1724_spdif;
1170 snd_pcm_set_sync(substream);
1171 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1172 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1173 VT1724_BUFFER_ALIGN);
1174 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1175 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001176 if (ice->spdif.ops.open)
1177 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 return 0;
1179}
1180
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001181static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001183 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001186 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 ice->capture_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001188 if (ice->spdif.ops.close)
1189 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
1191 return 0;
1192}
1193
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001194static struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 .open = snd_vt1724_playback_spdif_open,
1196 .close = snd_vt1724_playback_spdif_close,
1197 .ioctl = snd_pcm_lib_ioctl,
1198 .hw_params = snd_vt1724_pcm_hw_params,
1199 .hw_free = snd_vt1724_pcm_hw_free,
1200 .prepare = snd_vt1724_playback_spdif_prepare,
1201 .trigger = snd_vt1724_pcm_trigger,
1202 .pointer = snd_vt1724_pcm_pointer,
1203};
1204
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001205static struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 .open = snd_vt1724_capture_spdif_open,
1207 .close = snd_vt1724_capture_spdif_close,
1208 .ioctl = snd_pcm_lib_ioctl,
1209 .hw_params = snd_vt1724_pcm_hw_params,
1210 .hw_free = snd_vt1724_pcm_hw_free,
1211 .prepare = snd_vt1724_pcm_prepare,
1212 .trigger = snd_vt1724_pcm_trigger,
1213 .pointer = snd_vt1724_pcm_pointer,
1214};
1215
1216
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001217static int __devinit snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218{
1219 char *name;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001220 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 int play, capt;
1222 int err;
1223
1224 if (ice->force_pdma4 ||
1225 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
1226 play = 1;
1227 ice->has_spdif = 1;
1228 } else
1229 play = 0;
1230 if (ice->force_rdma1 ||
1231 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
1232 capt = 1;
1233 ice->has_spdif = 1;
1234 } else
1235 capt = 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001236 if (!play && !capt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return 0; /* no spdif device */
1238
1239 if (ice->force_pdma4 || ice->force_rdma1)
1240 name = "ICE1724 Secondary";
1241 else
Alan Horstmann8eca7532009-01-05 18:30:04 +01001242 name = "ICE1724 IEC958";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
1244 if (err < 0)
1245 return err;
1246
1247 if (play)
1248 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1249 &snd_vt1724_playback_spdif_ops);
1250 if (capt)
1251 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1252 &snd_vt1724_capture_spdif_ops);
1253
1254 pcm->private_data = ice;
1255 pcm->info_flags = 0;
1256 strcpy(pcm->name, name);
1257
1258 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001259 snd_dma_pci_data(ice->pci),
1260 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 ice->pcm = pcm;
1263
1264 return 0;
1265}
1266
1267
1268/*
1269 * independent surround PCMs
1270 */
1271
Takashi Iwai32b47da2007-01-29 15:26:36 +01001272static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 {
1274 .addr = VT1724_MT_PDMA1_ADDR,
1275 .size = VT1724_MT_PDMA1_SIZE,
1276 .count = VT1724_MT_PDMA1_COUNT,
1277 .start = VT1724_PDMA1_START,
1278 },
1279 {
1280 .addr = VT1724_MT_PDMA2_ADDR,
1281 .size = VT1724_MT_PDMA2_SIZE,
1282 .count = VT1724_MT_PDMA2_COUNT,
1283 .start = VT1724_PDMA2_START,
1284 },
1285 {
1286 .addr = VT1724_MT_PDMA3_ADDR,
1287 .size = VT1724_MT_PDMA3_SIZE,
1288 .count = VT1724_MT_PDMA3_COUNT,
1289 .start = VT1724_PDMA3_START,
1290 },
1291};
1292
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001293static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001295 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 unsigned char val;
1297
1298 spin_lock_irq(&ice->reg_lock);
1299 val = 3 - substream->number;
1300 if (inb(ICEMT1724(ice, BURST)) < val)
1301 outb(val, ICEMT1724(ice, BURST));
1302 spin_unlock_irq(&ice->reg_lock);
1303 return snd_vt1724_pcm_prepare(substream);
1304}
1305
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001306static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001308 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1309 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Ingo Molnar62932df2006-01-16 16:34:20 +01001311 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 /* already used by PDMA0? */
1313 if (ice->pcm_reserved[substream->number]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001314 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 return -EBUSY; /* FIXME: should handle blocking mode properly */
1316 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001317 mutex_unlock(&ice->open_mutex);
Takashi Iwai32b47da2007-01-29 15:26:36 +01001318 runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 ice->playback_con_substream_ds[substream->number] = substream;
1320 runtime->hw = snd_vt1724_2ch_stereo;
1321 snd_pcm_set_sync(substream);
1322 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1323 set_rate_constraints(ice, substream);
1324 return 0;
1325}
1326
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001327static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001329 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330
1331 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001332 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 ice->playback_con_substream_ds[substream->number] = NULL;
1334 ice->pcm_reserved[substream->number] = NULL;
1335
1336 return 0;
1337}
1338
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001339static struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 .open = snd_vt1724_playback_indep_open,
1341 .close = snd_vt1724_playback_indep_close,
1342 .ioctl = snd_pcm_lib_ioctl,
1343 .hw_params = snd_vt1724_pcm_hw_params,
1344 .hw_free = snd_vt1724_pcm_hw_free,
1345 .prepare = snd_vt1724_playback_indep_prepare,
1346 .trigger = snd_vt1724_pcm_trigger,
1347 .pointer = snd_vt1724_pcm_pointer,
1348};
1349
1350
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001351static int __devinit snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001353 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 int play;
1355 int err;
1356
1357 play = ice->num_total_dacs / 2 - 1;
1358 if (play <= 0)
1359 return 0;
1360
1361 err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
1362 if (err < 0)
1363 return err;
1364
1365 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1366 &snd_vt1724_playback_indep_ops);
1367
1368 pcm->private_data = ice;
1369 pcm->info_flags = 0;
1370 strcpy(pcm->name, "ICE1724 Surround PCM");
1371
1372 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001373 snd_dma_pci_data(ice->pci),
1374 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 ice->pcm_ds = pcm;
1377
1378 return 0;
1379}
1380
1381
1382/*
1383 * Mixer section
1384 */
1385
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001386static int __devinit snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
1388 int err;
1389
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001390 if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001391 struct snd_ac97_bus *pbus;
1392 struct snd_ac97_template ac97;
1393 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 .write = snd_vt1724_ac97_write,
1395 .read = snd_vt1724_ac97_read,
1396 };
1397
1398 /* cold reset */
1399 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
1400 mdelay(5); /* FIXME */
1401 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
1402
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001403 err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
1404 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return err;
1406 memset(&ac97, 0, sizeof(ac97));
1407 ac97.private_data = ice;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001408 err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
1409 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
1411 else
1412 return 0;
1413 }
1414 /* I2S mixer only */
1415 strcat(ice->card->mixername, "ICE1724 - multitrack");
1416 return 0;
1417}
1418
1419/*
1420 *
1421 */
1422
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001423static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
1425 return (unsigned int)ice->eeprom.data[idx] | \
1426 ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
1427 ((unsigned int)ice->eeprom.data[idx + 2] << 16);
1428}
1429
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001430static void snd_vt1724_proc_read(struct snd_info_entry *entry,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001431 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001433 struct snd_ice1712 *ice = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 unsigned int idx;
1435
1436 snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1437 snd_iprintf(buffer, "EEPROM:\n");
1438
1439 snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
1440 snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
1441 snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001442 snd_iprintf(buffer, " System Config : 0x%x\n",
1443 ice->eeprom.data[ICE_EEP2_SYSCONF]);
1444 snd_iprintf(buffer, " ACLink : 0x%x\n",
1445 ice->eeprom.data[ICE_EEP2_ACLINK]);
1446 snd_iprintf(buffer, " I2S : 0x%x\n",
1447 ice->eeprom.data[ICE_EEP2_I2S]);
1448 snd_iprintf(buffer, " S/PDIF : 0x%x\n",
1449 ice->eeprom.data[ICE_EEP2_SPDIF]);
1450 snd_iprintf(buffer, " GPIO direction : 0x%x\n",
1451 ice->eeprom.gpiodir);
1452 snd_iprintf(buffer, " GPIO mask : 0x%x\n",
1453 ice->eeprom.gpiomask);
1454 snd_iprintf(buffer, " GPIO state : 0x%x\n",
1455 ice->eeprom.gpiostate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 for (idx = 0x12; idx < ice->eeprom.size; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001457 snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
1458 idx, ice->eeprom.data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 snd_iprintf(buffer, "\nRegisters:\n");
1461
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001462 snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
1463 (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 for (idx = 0x0; idx < 0x20 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001465 snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
1466 idx, inb(ice->port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 for (idx = 0x0; idx < 0x30 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001468 snd_iprintf(buffer, " MT%02x : 0x%02x\n",
1469 idx, inb(ice->profi_port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001472static void __devinit snd_vt1724_proc_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001474 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001476 if (!snd_card_proc_new(ice->card, "ice1724", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02001477 snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478}
1479
1480/*
1481 *
1482 */
1483
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001484static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
1485 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001488 uinfo->count = sizeof(struct snd_ice1712_eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return 0;
1490}
1491
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001492static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
1493 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001495 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1498 return 0;
1499}
1500
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001501static struct snd_kcontrol_new snd_vt1724_eeprom __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1503 .name = "ICE1724 EEPROM",
1504 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1505 .info = snd_vt1724_eeprom_info,
1506 .get = snd_vt1724_eeprom_get
1507};
1508
1509/*
1510 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001511static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
1512 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513{
1514 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1515 uinfo->count = 1;
1516 return 0;
1517}
1518
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001519static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520{
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001521 unsigned int val, rbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
1523 val = diga->status[0] & 0x03; /* professional, non-audio */
1524 if (val & 0x01) {
1525 /* professional */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001526 if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
1527 IEC958_AES0_PRO_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 val |= 1U << 3;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001529 rbits = (diga->status[4] >> 3) & 0x0f;
1530 if (rbits) {
1531 switch (rbits) {
1532 case 2: val |= 5 << 12; break; /* 96k */
1533 case 3: val |= 6 << 12; break; /* 192k */
1534 case 10: val |= 4 << 12; break; /* 88.2k */
1535 case 11: val |= 7 << 12; break; /* 176.4k */
1536 }
1537 } else {
1538 switch (diga->status[0] & IEC958_AES0_PRO_FS) {
1539 case IEC958_AES0_PRO_FS_44100:
1540 break;
1541 case IEC958_AES0_PRO_FS_32000:
1542 val |= 3U << 12;
1543 break;
1544 default:
1545 val |= 2U << 12;
1546 break;
1547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549 } else {
1550 /* consumer */
1551 val |= diga->status[1] & 0x04; /* copyright */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001552 if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
1553 IEC958_AES0_CON_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 val |= 1U << 3;
1555 val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
1556 val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
1557 }
1558 return val;
1559}
1560
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001561static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
1563 memset(diga->status, 0, sizeof(diga->status));
1564 diga->status[0] = val & 0x03; /* professional, non-audio */
1565 if (val & 0x01) {
1566 /* professional */
1567 if (val & (1U << 3))
1568 diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
1569 switch ((val >> 12) & 0x7) {
1570 case 0:
1571 break;
1572 case 2:
1573 diga->status[0] |= IEC958_AES0_PRO_FS_32000;
1574 break;
1575 default:
1576 diga->status[0] |= IEC958_AES0_PRO_FS_48000;
1577 break;
1578 }
1579 } else {
1580 /* consumer */
1581 diga->status[0] |= val & (1U << 2); /* copyright */
1582 if (val & (1U << 3))
1583 diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
1584 diga->status[1] |= (val >> 4) & 0x3f; /* category */
1585 diga->status[3] |= (val >> 12) & 0x07; /* fs */
1586 }
1587}
1588
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001589static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
1590 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001592 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 unsigned int val;
1594 val = inw(ICEMT1724(ice, SPDIF_CTRL));
1595 decode_spdif_bits(&ucontrol->value.iec958, val);
1596 return 0;
1597}
1598
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001599static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
1600 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001602 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 unsigned int val, old;
1604
1605 val = encode_spdif_bits(&ucontrol->value.iec958);
1606 spin_lock_irq(&ice->reg_lock);
1607 old = inw(ICEMT1724(ice, SPDIF_CTRL));
1608 if (val != old)
1609 update_spdif_bits(ice, val);
1610 spin_unlock_irq(&ice->reg_lock);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001611 return val != old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001614static struct snd_kcontrol_new snd_vt1724_spdif_default __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
1616 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001617 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 .info = snd_vt1724_spdif_info,
1619 .get = snd_vt1724_spdif_default_get,
1620 .put = snd_vt1724_spdif_default_put
1621};
1622
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001623static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
1624 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625{
1626 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1627 IEC958_AES0_PROFESSIONAL |
1628 IEC958_AES0_CON_NOT_COPYRIGHT |
1629 IEC958_AES0_CON_EMPHASIS;
1630 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1631 IEC958_AES1_CON_CATEGORY;
1632 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1633 return 0;
1634}
1635
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001636static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
1637 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
1639 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1640 IEC958_AES0_PROFESSIONAL |
1641 IEC958_AES0_PRO_FS |
1642 IEC958_AES0_PRO_EMPHASIS;
1643 return 0;
1644}
1645
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001646static struct snd_kcontrol_new snd_vt1724_spdif_maskc __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
1648 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001649 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001650 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 .info = snd_vt1724_spdif_info,
1652 .get = snd_vt1724_spdif_maskc_get,
1653};
1654
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001655static struct snd_kcontrol_new snd_vt1724_spdif_maskp __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656{
1657 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001658 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001659 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 .info = snd_vt1724_spdif_info,
1661 .get = snd_vt1724_spdif_maskp_get,
1662};
1663
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001664#define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001666static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
1667 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001669 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1670 ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
1671 VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 return 0;
1673}
1674
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001675static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
1676 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001678 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 unsigned char old, val;
1680
1681 spin_lock_irq(&ice->reg_lock);
1682 old = val = inb(ICEREG1724(ice, SPDIF_CFG));
1683 val &= ~VT1724_CFG_SPDIF_OUT_EN;
1684 if (ucontrol->value.integer.value[0])
1685 val |= VT1724_CFG_SPDIF_OUT_EN;
1686 if (old != val)
1687 outb(val, ICEREG1724(ice, SPDIF_CFG));
1688 spin_unlock_irq(&ice->reg_lock);
1689 return old != val;
1690}
1691
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001692static struct snd_kcontrol_new snd_vt1724_spdif_switch __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
1694 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1695 /* FIXME: the following conflict with IEC958 Playback Route */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001696 /* .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
1697 .name = SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 .info = snd_vt1724_spdif_sw_info,
1699 .get = snd_vt1724_spdif_sw_get,
1700 .put = snd_vt1724_spdif_sw_put
1701};
1702
1703
1704#if 0 /* NOT USED YET */
1705/*
1706 * GPIO access from extern
1707 */
1708
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001709#define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001711int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
1712 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001714 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 int shift = kcontrol->private_value & 0xff;
1716 int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 snd_ice1712_save_gpio_status(ice);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001719 ucontrol->value.integer.value[0] =
1720 (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 snd_ice1712_restore_gpio_status(ice);
1722 return 0;
1723}
1724
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001725int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
1726 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001728 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 int shift = kcontrol->private_value & 0xff;
1730 int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1731 unsigned int val, nval;
1732
1733 if (kcontrol->private_value & (1 << 31))
1734 return -EPERM;
1735 nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
1736 snd_ice1712_save_gpio_status(ice);
1737 val = snd_ice1712_gpio_read(ice);
1738 nval |= val & ~(1 << shift);
1739 if (val != nval)
1740 snd_ice1712_gpio_write(ice, nval);
1741 snd_ice1712_restore_gpio_status(ice);
1742 return val != nval;
1743}
1744#endif /* NOT USED YET */
1745
1746/*
1747 * rate
1748 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001749static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
1750 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001752 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1755 uinfo->count = 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001756 uinfo->value.enumerated.items = ice->hw_rates->count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1758 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001759 if (uinfo->value.enumerated.item == uinfo->value.enumerated.items - 1)
1760 strcpy(uinfo->value.enumerated.name, "IEC958 Input");
1761 else
1762 sprintf(uinfo->value.enumerated.name, "%d",
1763 ice->hw_rates->list[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return 0;
1765}
1766
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001767static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
1768 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001770 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001771 unsigned int i, rate;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001772
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001774 if (ice->is_spdif_master(ice)) {
1775 ucontrol->value.enumerated.item[0] = ice->hw_rates->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001777 rate = ice->get_rate(ice);
1778 ucontrol->value.enumerated.item[0] = 0;
1779 for (i = 0; i < ice->hw_rates->count; i++) {
1780 if (ice->hw_rates->list[i] == rate) {
1781 ucontrol->value.enumerated.item[0] = i;
1782 break;
1783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786 spin_unlock_irq(&ice->reg_lock);
1787 return 0;
1788}
1789
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001790/* setting clock to external - SPDIF */
1791static void stdclock_set_spdif_clock(struct snd_ice1712 *ice)
1792{
1793 unsigned char oval;
1794 unsigned char i2s_oval;
1795 oval = inb(ICEMT1724(ice, RATE));
1796 outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
1797 /* setting 256fs */
1798 i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
1799 outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
1800}
1801
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001802static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
1803 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001805 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001806 unsigned int old_rate, new_rate;
1807 unsigned int item = ucontrol->value.enumerated.item[0];
1808 unsigned int spdif = ice->hw_rates->count;
1809
1810 if (item > spdif)
1811 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
1813 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001814 if (ice->is_spdif_master(ice))
1815 old_rate = 0;
1816 else
1817 old_rate = ice->get_rate(ice);
1818 if (item == spdif) {
1819 /* switching to external clock via SPDIF */
1820 ice->set_spdif_clock(ice);
1821 new_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001823 /* internal on-card clock */
1824 new_rate = ice->hw_rates->list[item];
1825 ice->pro_rate_default = new_rate;
1826 spin_unlock_irq(&ice->reg_lock);
1827 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
1828 spin_lock_irq(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 spin_unlock_irq(&ice->reg_lock);
1831
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001832 /* the first reset to the SPDIF master mode? */
1833 if (old_rate != new_rate && !new_rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 /* notify akm chips as well */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001835 unsigned int i;
1836 if (ice->gpio.set_pro_rate)
1837 ice->gpio.set_pro_rate(ice, 0);
1838 for (i = 0; i < ice->akm_codecs; i++) {
1839 if (ice->akm[i].ops.set_rate_val)
1840 ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001843 return old_rate != new_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
1845
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001846static struct snd_kcontrol_new snd_vt1724_pro_internal_clock __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1848 .name = "Multi Track Internal Clock",
1849 .info = snd_vt1724_pro_internal_clock_info,
1850 .get = snd_vt1724_pro_internal_clock_get,
1851 .put = snd_vt1724_pro_internal_clock_put
1852};
1853
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001854#define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001856static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
1857 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858{
1859 ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1860 return 0;
1861}
1862
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001863static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
1864 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001866 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 int change = 0, nval;
1868
1869 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1870 spin_lock_irq(&ice->reg_lock);
1871 change = PRO_RATE_LOCKED != nval;
1872 PRO_RATE_LOCKED = nval;
1873 spin_unlock_irq(&ice->reg_lock);
1874 return change;
1875}
1876
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001877static struct snd_kcontrol_new snd_vt1724_pro_rate_locking __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1879 .name = "Multi Track Rate Locking",
1880 .info = snd_vt1724_pro_rate_locking_info,
1881 .get = snd_vt1724_pro_rate_locking_get,
1882 .put = snd_vt1724_pro_rate_locking_put
1883};
1884
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001885#define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001887static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
1888 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
1890 ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
1891 return 0;
1892}
1893
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001894static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
1895 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001897 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 int change = 0, nval;
1899
1900 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1901 spin_lock_irq(&ice->reg_lock);
1902 change = PRO_RATE_RESET != nval;
1903 PRO_RATE_RESET = nval;
1904 spin_unlock_irq(&ice->reg_lock);
1905 return change;
1906}
1907
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001908static struct snd_kcontrol_new snd_vt1724_pro_rate_reset __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1910 .name = "Multi Track Rate Reset",
1911 .info = snd_vt1724_pro_rate_reset_info,
1912 .get = snd_vt1724_pro_rate_reset_get,
1913 .put = snd_vt1724_pro_rate_reset_put
1914};
1915
1916
1917/*
1918 * routing
1919 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001920static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
1921 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922{
1923 static char *texts[] = {
1924 "PCM Out", /* 0 */
1925 "H/W In 0", "H/W In 1", /* 1-2 */
1926 "IEC958 In L", "IEC958 In R", /* 3-4 */
1927 };
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1930 uinfo->count = 1;
1931 uinfo->value.enumerated.items = 5;
1932 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1933 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1934 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1935 return 0;
1936}
1937
1938static inline int analog_route_shift(int idx)
1939{
1940 return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
1941}
1942
1943static inline int digital_route_shift(int idx)
1944{
1945 return idx * 3;
1946}
1947
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001948static int get_route_val(struct snd_ice1712 *ice, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949{
1950 unsigned long val;
1951 unsigned char eitem;
Takashi Iwai32b47da2007-01-29 15:26:36 +01001952 static const unsigned char xlate[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 0, 255, 1, 2, 255, 255, 3, 4,
1954 };
1955
1956 val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
1957 val >>= shift;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001958 val &= 7; /* we now have 3 bits per output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 eitem = xlate[val];
1960 if (eitem == 255) {
1961 snd_BUG();
1962 return 0;
1963 }
1964 return eitem;
1965}
1966
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001967static int put_route_val(struct snd_ice1712 *ice, unsigned int val, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
1969 unsigned int old_val, nval;
1970 int change;
Takashi Iwai32b47da2007-01-29 15:26:36 +01001971 static const unsigned char xroute[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 0, /* PCM */
1973 2, /* PSDIN0 Left */
1974 3, /* PSDIN0 Right */
1975 6, /* SPDIN Left */
1976 7, /* SPDIN Right */
1977 };
1978
1979 nval = xroute[val % 5];
1980 val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
1981 val &= ~(0x07 << shift);
1982 val |= nval << shift;
1983 change = val != old_val;
1984 if (change)
1985 outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
1986 return change;
1987}
1988
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001989static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
1990 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001992 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001994 ucontrol->value.enumerated.item[0] =
1995 get_route_val(ice, analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return 0;
1997}
1998
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001999static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
2000 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002002 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2004 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2005 analog_route_shift(idx));
2006}
2007
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002008static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
2009 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002011 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002013 ucontrol->value.enumerated.item[0] =
2014 get_route_val(ice, digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return 0;
2016}
2017
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002018static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
2019 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002021 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2023 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2024 digital_route_shift(idx));
2025}
2026
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002027static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2029 .name = "H/W Playback Route",
2030 .info = snd_vt1724_pro_route_info,
2031 .get = snd_vt1724_pro_route_analog_get,
2032 .put = snd_vt1724_pro_route_analog_put,
2033};
2034
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002035static struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002037 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 .info = snd_vt1724_pro_route_info,
2039 .get = snd_vt1724_pro_route_spdif_get,
2040 .put = snd_vt1724_pro_route_spdif_put,
2041 .count = 2,
2042};
2043
2044
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002045static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
2046 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047{
2048 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2049 uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
2050 uinfo->value.integer.min = 0;
2051 uinfo->value.integer.max = 255;
2052 return 0;
2053}
2054
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002055static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
2056 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002058 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 int idx;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 spin_lock_irq(&ice->reg_lock);
2062 for (idx = 0; idx < 22; idx++) {
2063 outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002064 ucontrol->value.integer.value[idx] =
2065 inb(ICEMT1724(ice, MONITOR_PEAKDATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
2067 spin_unlock_irq(&ice->reg_lock);
2068 return 0;
2069}
2070
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002071static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2073 .name = "Multi Track Peak",
2074 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2075 .info = snd_vt1724_pro_peak_info,
2076 .get = snd_vt1724_pro_peak_get
2077};
2078
2079/*
2080 *
2081 */
2082
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002083static struct snd_ice1712_card_info no_matched __devinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002085static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 snd_vt1724_revo_cards,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002087 snd_vt1724_amp_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 snd_vt1724_aureon_cards,
2089 snd_vt1720_mobo_cards,
2090 snd_vt1720_pontis_cards,
Julian Scheel6b8d6e52008-01-16 19:50:00 +01002091 snd_vt1724_prodigy_hifi_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 snd_vt1724_prodigy192_cards,
2093 snd_vt1724_juli_cards,
2094 snd_vt1724_phase_cards,
Clement Guedezf6cdab52007-01-08 10:48:41 +01002095 snd_vt1724_wtm_cards,
Shin-ya Okadaf31639b2007-10-23 15:08:18 +02002096 snd_vt1724_se_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 NULL,
2098};
2099
2100
2101/*
2102 */
2103
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002104static void wait_i2c_busy(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105{
2106 int t = 0x10000;
2107 while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
2108 ;
2109 if (t == -1)
2110 printk(KERN_ERR "ice1724: i2c busy timeout\n");
2111}
2112
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002113unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
2114 unsigned char dev, unsigned char addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
2116 unsigned char val;
2117
Ingo Molnar62932df2006-01-16 16:34:20 +01002118 mutex_lock(&ice->i2c_mutex);
Pavel Hofmanacec30f2007-12-03 12:37:17 +01002119 wait_i2c_busy(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2121 outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2122 wait_i2c_busy(ice);
2123 val = inb(ICEREG1724(ice, I2C_DATA));
Ingo Molnar62932df2006-01-16 16:34:20 +01002124 mutex_unlock(&ice->i2c_mutex);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002125 /* printk("i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 return val;
2127}
2128
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002129void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
2130 unsigned char dev, unsigned char addr, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131{
Ingo Molnar62932df2006-01-16 16:34:20 +01002132 mutex_lock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 wait_i2c_busy(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002134 /* printk("i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data); */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2136 outb(data, ICEREG1724(ice, I2C_DATA));
2137 outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2138 wait_i2c_busy(ice);
Ingo Molnar62932df2006-01-16 16:34:20 +01002139 mutex_unlock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140}
2141
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002142static int __devinit snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
2143 const char *modelname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
2145 const int dev = 0xa0; /* EEPROM device address */
2146 unsigned int i, size;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002147 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002149 if (!modelname || !*modelname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 ice->eeprom.subvendor = 0;
2151 if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
2152 ice->eeprom.subvendor =
2153 (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002154 (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
2155 (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002157 if (ice->eeprom.subvendor == 0 ||
2158 ice->eeprom.subvendor == (unsigned int)-1) {
2159 /* invalid subvendor from EEPROM, try the PCI
2160 * subststem ID instead
2161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 u16 vendor, device;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002163 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
2164 &vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002166 ice->eeprom.subvendor =
2167 ((unsigned int)swab16(vendor) << 16) | swab16(device);
2168 if (ice->eeprom.subvendor == 0 ||
2169 ice->eeprom.subvendor == (unsigned int)-1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 printk(KERN_ERR "ice1724: No valid ID is found\n");
2171 return -ENXIO;
2172 }
2173 }
2174 }
2175 for (tbl = card_tables; *tbl; tbl++) {
2176 for (c = *tbl; c->subvendor; c++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002177 if (modelname && c->model &&
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002178 !strcmp(modelname, c->model)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002179 printk(KERN_INFO "ice1724: Using board model %s\n",
2180 c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 ice->eeprom.subvendor = c->subvendor;
2182 } else if (c->subvendor != ice->eeprom.subvendor)
2183 continue;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002184 if (!c->eeprom_size || !c->eeprom_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 goto found;
2186 /* if the EEPROM is given by the driver, use it */
2187 snd_printdd("using the defined eeprom..\n");
2188 ice->eeprom.version = 2;
2189 ice->eeprom.size = c->eeprom_size + 6;
2190 memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
2191 goto read_skipped;
2192 }
2193 }
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002194 printk(KERN_WARNING "ice1724: No matching model found for ID 0x%x\n",
2195 ice->eeprom.subvendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
2197 found:
2198 ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
2199 if (ice->eeprom.size < 6)
2200 ice->eeprom.size = 32;
2201 else if (ice->eeprom.size > 32) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002202 printk(KERN_ERR "ice1724: Invalid EEPROM (size = %i)\n",
2203 ice->eeprom.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 return -EIO;
2205 }
2206 ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
2207 if (ice->eeprom.version != 2)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002208 printk(KERN_WARNING "ice1724: Invalid EEPROM version %i\n",
2209 ice->eeprom.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 size = ice->eeprom.size - 6;
2211 for (i = 0; i < size; i++)
2212 ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
2213
2214 read_skipped:
2215 ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
2216 ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
2217 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
2218
2219 return 0;
2220}
2221
2222
2223
Karsten Wiese988f0662008-04-22 12:52:15 +02002224static void __devinit snd_vt1724_chip_reset(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
2226 outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002227 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 outb(0, ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002229 msleep(10);
2230}
2231
2232static int __devinit snd_vt1724_chip_init(struct snd_ice1712 *ice)
2233{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
2235 outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
2236 outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
2237 outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
2238
2239 ice->gpio.write_mask = ice->eeprom.gpiomask;
2240 ice->gpio.direction = ice->eeprom.gpiodir;
2241 snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
2242 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
2243 snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
2244
2245 outb(0, ICEREG1724(ice, POWERDOWN));
2246
2247 return 0;
2248}
2249
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002250static int __devinit snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
2252 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002253 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
Takashi Iwaida3cec32008-08-08 17:12:14 +02002255 if (snd_BUG_ON(!ice->pcm))
2256 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
2259 if (err < 0)
2260 return err;
2261
2262 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
2263 if (err < 0)
2264 return err;
2265
2266 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
2267 if (err < 0)
2268 return err;
2269 kctl->id.device = ice->pcm->device;
2270 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
2271 if (err < 0)
2272 return err;
2273 kctl->id.device = ice->pcm->device;
2274 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
2275 if (err < 0)
2276 return err;
2277 kctl->id.device = ice->pcm->device;
2278#if 0 /* use default only */
2279 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
2280 if (err < 0)
2281 return err;
2282 kctl->id.device = ice->pcm->device;
2283 ice->spdif.stream_ctl = kctl;
2284#endif
2285 return 0;
2286}
2287
2288
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002289static int __devinit snd_vt1724_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
2291 int err;
2292
2293 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
2294 if (err < 0)
2295 return err;
2296 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
2297 if (err < 0)
2298 return err;
2299
2300 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
2301 if (err < 0)
2302 return err;
2303 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
2304 if (err < 0)
2305 return err;
2306
2307 if (ice->num_total_dacs > 0) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002308 struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 tmp.count = ice->num_total_dacs;
2310 if (ice->vt1720 && tmp.count > 2)
2311 tmp.count = 2;
2312 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2313 if (err < 0)
2314 return err;
2315 }
2316
2317 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
2318 if (err < 0)
2319 return err;
2320
2321 return 0;
2322}
2323
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002324static int snd_vt1724_free(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325{
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002326 if (!ice->port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 goto __hw_end;
2328 /* mask all interrupts */
2329 outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
2330 outb(0xff, ICEREG1724(ice, IRQMASK));
2331 /* --- */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002332__hw_end:
Jeff Garzikf000fd82008-04-22 13:50:34 +02002333 if (ice->irq >= 0)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002334 free_irq(ice->irq, ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 pci_release_regions(ice->pci);
2336 snd_ice1712_akm4xxx_free(ice);
2337 pci_disable_device(ice->pci);
Takashi Iwai7cda8ba2008-01-18 13:36:07 +01002338 kfree(ice->spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 kfree(ice);
2340 return 0;
2341}
2342
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002343static int snd_vt1724_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002345 struct snd_ice1712 *ice = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 return snd_vt1724_free(ice);
2347}
2348
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002349static int __devinit snd_vt1724_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 struct pci_dev *pci,
2351 const char *modelname,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002352 struct snd_ice1712 **r_ice1712)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002354 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002356 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 .dev_free = snd_vt1724_dev_free,
2358 };
2359
2360 *r_ice1712 = NULL;
2361
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002362 /* enable PCI device */
2363 err = pci_enable_device(pci);
2364 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 return err;
2366
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002367 ice = kzalloc(sizeof(*ice), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (ice == NULL) {
2369 pci_disable_device(pci);
2370 return -ENOMEM;
2371 }
2372 ice->vt1724 = 1;
2373 spin_lock_init(&ice->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002374 mutex_init(&ice->gpio_mutex);
2375 mutex_init(&ice->open_mutex);
2376 mutex_init(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
2378 ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
2379 ice->gpio.set_data = snd_vt1724_set_gpio_data;
2380 ice->gpio.get_data = snd_vt1724_get_gpio_data;
2381 ice->card = card;
2382 ice->pci = pci;
2383 ice->irq = -1;
2384 pci_set_master(pci);
2385 snd_vt1724_proc_init(ice);
2386 synchronize_irq(pci->irq);
2387
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002388 err = pci_request_regions(pci, "ICE1724");
2389 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 kfree(ice);
2391 pci_disable_device(pci);
2392 return err;
2393 }
2394 ice->port = pci_resource_start(pci, 0);
2395 ice->profi_port = pci_resource_start(pci, 1);
2396
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002397 if (request_irq(pci->irq, snd_vt1724_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002398 IRQF_SHARED, "ICE1724", ice)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002399 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 snd_vt1724_free(ice);
2401 return -EIO;
2402 }
2403
2404 ice->irq = pci->irq;
2405
Karsten Wiese988f0662008-04-22 12:52:15 +02002406 snd_vt1724_chip_reset(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
2408 snd_vt1724_free(ice);
2409 return -EIO;
2410 }
2411 if (snd_vt1724_chip_init(ice) < 0) {
2412 snd_vt1724_free(ice);
2413 return -EIO;
2414 }
2415
Takashi Iwai6834d7c2008-11-05 17:41:23 +01002416 /* MPU_RX and TX irq masks are cleared later dynamically */
2417 outb(VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX , ICEREG1724(ice, IRQMASK));
Takashi Iwai4074ea22008-11-01 11:01:50 +01002418
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002419 /* don't handle FIFO overrun/underruns (just yet),
2420 * since they cause machine lockups
2421 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
2423
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002424 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
2425 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 snd_vt1724_free(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002427 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 }
2429
2430 snd_card_set_dev(card, &pci->dev);
2431
2432 *r_ice1712 = ice;
2433 return 0;
2434}
2435
2436
2437/*
2438 *
2439 * Registration
2440 *
2441 */
2442
2443static int __devinit snd_vt1724_probe(struct pci_dev *pci,
2444 const struct pci_device_id *pci_id)
2445{
2446 static int dev;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002447 struct snd_card *card;
2448 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 int pcm_dev = 0, err;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002450 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
2452 if (dev >= SNDRV_CARDS)
2453 return -ENODEV;
2454 if (!enable[dev]) {
2455 dev++;
2456 return -ENOENT;
2457 }
2458
2459 card = snd_card_new(index[dev], id[dev], THIS_MODULE, 0);
2460 if (card == NULL)
2461 return -ENOMEM;
2462
2463 strcpy(card->driver, "ICE1724");
2464 strcpy(card->shortname, "ICEnsemble ICE1724");
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002465
2466 err = snd_vt1724_create(card, pci, model[dev], &ice);
2467 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 snd_card_free(card);
2469 return err;
2470 }
2471
2472 for (tbl = card_tables; *tbl; tbl++) {
2473 for (c = *tbl; c->subvendor; c++) {
2474 if (c->subvendor == ice->eeprom.subvendor) {
2475 strcpy(card->shortname, c->name);
2476 if (c->driver) /* specific driver? */
2477 strcpy(card->driver, c->driver);
2478 if (c->chip_init) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002479 err = c->chip_init(ice);
2480 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 snd_card_free(card);
2482 return err;
2483 }
2484 }
2485 goto __found;
2486 }
2487 }
2488 }
2489 c = &no_matched;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002490__found:
2491 /*
2492 * VT1724 has separate DMAs for the analog and the SPDIF streams while
2493 * ICE1712 has only one for both (mixed up).
2494 *
2495 * Confusingly the analog PCM is named "professional" here because it
2496 * was called so in ice1712 driver, and vt1724 driver is derived from
2497 * ice1712 driver.
2498 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002499 ice->pro_rate_default = PRO_RATE_DEFAULT;
2500 if (!ice->is_spdif_master)
2501 ice->is_spdif_master = stdclock_is_spdif_master;
2502 if (!ice->get_rate)
2503 ice->get_rate = stdclock_get_rate;
2504 if (!ice->set_rate)
2505 ice->set_rate = stdclock_set_rate;
2506 if (!ice->set_mclk)
2507 ice->set_mclk = stdclock_set_mclk;
2508 if (!ice->set_spdif_clock)
2509 ice->set_spdif_clock = stdclock_set_spdif_clock;
2510 if (!ice->hw_rates)
2511 set_std_hw_rates(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002513 err = snd_vt1724_pcm_profi(ice, pcm_dev++);
2514 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 snd_card_free(card);
2516 return err;
2517 }
2518
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002519 err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
2520 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 snd_card_free(card);
2522 return err;
2523 }
2524
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002525 err = snd_vt1724_pcm_indep(ice, pcm_dev++);
2526 if (err < 0) {
2527 snd_card_free(card);
2528 return err;
2529 }
2530
2531 err = snd_vt1724_ac97_mixer(ice);
2532 if (err < 0) {
2533 snd_card_free(card);
2534 return err;
2535 }
2536
2537 err = snd_vt1724_build_controls(ice);
2538 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 snd_card_free(card);
2540 return err;
2541 }
2542
2543 if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002544 err = snd_vt1724_spdif_build_controls(ice);
2545 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 snd_card_free(card);
2547 return err;
2548 }
2549 }
2550
2551 if (c->build_controls) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002552 err = c->build_controls(ice);
2553 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 snd_card_free(card);
2555 return err;
2556 }
2557 }
2558
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002559 if (!c->no_mpu401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002561 struct snd_rawmidi *rmidi;
2562
2563 err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
2564 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 snd_card_free(card);
2566 return err;
2567 }
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002568 ice->rmidi[0] = rmidi;
2569 rmidi->private_data = ice;
2570 strcpy(rmidi->name, "ICE1724 MIDI");
2571 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2572 SNDRV_RAWMIDI_INFO_INPUT |
2573 SNDRV_RAWMIDI_INFO_DUPLEX;
2574 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
2575 &vt1724_midi_output_ops);
2576 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
2577 &vt1724_midi_input_ops);
2578
Takashi Iwai3a841d52008-04-23 17:47:28 +02002579 /* set watermarks */
2580 outb(VT1724_MPU_RX_FIFO | 0x1,
2581 ICEREG1724(ice, MPU_FIFO_WM));
2582 outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002583 /* set UART mode */
2584 outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 }
2586 }
2587
2588 sprintf(card->longname, "%s at 0x%lx, irq %i",
2589 card->shortname, ice->port, ice->irq);
2590
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002591 err = snd_card_register(card);
2592 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 snd_card_free(card);
2594 return err;
2595 }
2596 pci_set_drvdata(pci, card);
2597 dev++;
2598 return 0;
2599}
2600
2601static void __devexit snd_vt1724_remove(struct pci_dev *pci)
2602{
2603 snd_card_free(pci_get_drvdata(pci));
2604 pci_set_drvdata(pci, NULL);
2605}
2606
2607static struct pci_driver driver = {
2608 .name = "ICE1724",
2609 .id_table = snd_vt1724_ids,
2610 .probe = snd_vt1724_probe,
2611 .remove = __devexit_p(snd_vt1724_remove),
2612};
2613
2614static int __init alsa_card_ice1724_init(void)
2615{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002616 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617}
2618
2619static void __exit alsa_card_ice1724_exit(void)
2620{
2621 pci_unregister_driver(&driver);
2622}
2623
2624module_init(alsa_card_ice1724_init)
2625module_exit(alsa_card_ice1724_exit)