blob: 8afa043dab0ea51a366fedda47426b96acc0cbc3 [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
Takashi Iwaie683ec42008-11-12 16:42:44 +0100244static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable);
245
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200246static void vt1724_midi_write(struct snd_ice1712 *ice)
247{
248 struct snd_rawmidi_substream *s;
249 int count, i;
250 u8 buffer[32];
251
252 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_OUTPUT);
253 count = 31 - inb(ICEREG1724(ice, MPU_TXFIFO));
254 if (count > 0) {
255 count = snd_rawmidi_transmit(s, buffer, count);
256 for (i = 0; i < count; ++i)
257 outb(buffer[i], ICEREG1724(ice, MPU_DATA));
258 }
Takashi Iwaie683ec42008-11-12 16:42:44 +0100259 /* mask irq when all bytes have been transmitted.
260 * enabled again in output_trigger when the new data comes in.
261 */
262 enable_midi_irq(ice, VT1724_IRQ_MPU_TX,
263 !snd_rawmidi_transmit_empty(s));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200264}
265
266static void vt1724_midi_read(struct snd_ice1712 *ice)
267{
268 struct snd_rawmidi_substream *s;
269 int count, i;
270 u8 buffer[32];
271
272 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_INPUT);
273 count = inb(ICEREG1724(ice, MPU_RXFIFO));
274 if (count > 0) {
275 count = min(count, 32);
276 for (i = 0; i < count; ++i)
277 buffer[i] = inb(ICEREG1724(ice, MPU_DATA));
278 snd_rawmidi_receive(s, buffer, count);
279 }
280}
281
Takashi Iwaie683ec42008-11-12 16:42:44 +0100282/* call with ice->reg_lock */
283static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable)
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200284{
Takashi Iwaie683ec42008-11-12 16:42:44 +0100285 u8 mask = inb(ICEREG1724(ice, IRQMASK));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200286 if (enable)
287 mask &= ~flag;
288 else
289 mask |= flag;
290 outb(mask, ICEREG1724(ice, IRQMASK));
Takashi Iwaie683ec42008-11-12 16:42:44 +0100291}
292
293static void vt1724_enable_midi_irq(struct snd_rawmidi_substream *substream,
294 u8 flag, int enable)
295{
296 struct snd_ice1712 *ice = substream->rmidi->private_data;
297
298 spin_lock_irq(&ice->reg_lock);
299 enable_midi_irq(ice, flag, enable);
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200300 spin_unlock_irq(&ice->reg_lock);
301}
302
303static int vt1724_midi_output_open(struct snd_rawmidi_substream *s)
304{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200305 return 0;
306}
307
308static int vt1724_midi_output_close(struct snd_rawmidi_substream *s)
309{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200310 return 0;
311}
312
313static void vt1724_midi_output_trigger(struct snd_rawmidi_substream *s, int up)
314{
315 struct snd_ice1712 *ice = s->rmidi->private_data;
316 unsigned long flags;
317
318 spin_lock_irqsave(&ice->reg_lock, flags);
319 if (up) {
320 ice->midi_output = 1;
321 vt1724_midi_write(ice);
322 } else {
323 ice->midi_output = 0;
Takashi Iwaie683ec42008-11-12 16:42:44 +0100324 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200325 }
326 spin_unlock_irqrestore(&ice->reg_lock, flags);
327}
328
329static void vt1724_midi_output_drain(struct snd_rawmidi_substream *s)
330{
331 struct snd_ice1712 *ice = s->rmidi->private_data;
332 unsigned long timeout;
333
Takashi Iwaie683ec42008-11-12 16:42:44 +0100334 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 0);
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200335 /* 32 bytes should be transmitted in less than about 12 ms */
336 timeout = jiffies + msecs_to_jiffies(15);
337 do {
338 if (inb(ICEREG1724(ice, MPU_CTRL)) & VT1724_MPU_TX_EMPTY)
339 break;
340 schedule_timeout_uninterruptible(1);
341 } while (time_after(timeout, jiffies));
342}
343
344static struct snd_rawmidi_ops vt1724_midi_output_ops = {
345 .open = vt1724_midi_output_open,
346 .close = vt1724_midi_output_close,
347 .trigger = vt1724_midi_output_trigger,
348 .drain = vt1724_midi_output_drain,
349};
350
351static int vt1724_midi_input_open(struct snd_rawmidi_substream *s)
352{
353 vt1724_midi_clear_rx(s->rmidi->private_data);
354 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 1);
355 return 0;
356}
357
358static int vt1724_midi_input_close(struct snd_rawmidi_substream *s)
359{
360 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 0);
361 return 0;
362}
363
364static void vt1724_midi_input_trigger(struct snd_rawmidi_substream *s, int up)
365{
366 struct snd_ice1712 *ice = s->rmidi->private_data;
367 unsigned long flags;
368
369 spin_lock_irqsave(&ice->reg_lock, flags);
370 if (up) {
371 ice->midi_input = 1;
372 vt1724_midi_read(ice);
373 } else {
374 ice->midi_input = 0;
375 }
376 spin_unlock_irqrestore(&ice->reg_lock, flags);
377}
378
379static struct snd_rawmidi_ops vt1724_midi_input_ops = {
380 .open = vt1724_midi_input_open,
381 .close = vt1724_midi_input_close,
382 .trigger = vt1724_midi_input_trigger,
383};
384
Takashi Iwai3a841d52008-04-23 17:47:28 +0200385
386/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * Interrupt handler
388 */
389
David Howells7d12e782006-10-05 14:55:46 +0100390static irqreturn_t snd_vt1724_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100392 struct snd_ice1712 *ice = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 unsigned char status;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200394 unsigned char status_mask =
395 VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX | VT1724_IRQ_MTPCM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 int handled = 0;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200397 int timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 while (1) {
400 status = inb(ICEREG1724(ice, IRQSTAT));
Takashi Iwai3a841d52008-04-23 17:47:28 +0200401 status &= status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (status == 0)
403 break;
Takashi Iwaie683ec42008-11-12 16:42:44 +0100404 spin_lock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200405 if (++timeout > 10) {
Takashi Iwai10832062008-08-11 10:18:39 +0200406 status = inb(ICEREG1724(ice, IRQSTAT));
407 printk(KERN_ERR "ice1724: Too long irq loop, "
408 "status = 0x%x\n", status);
409 if (status & VT1724_IRQ_MPU_TX) {
410 printk(KERN_ERR "ice1724: Disabling MPU_TX\n");
Takashi Iwaie683ec42008-11-12 16:42:44 +0100411 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
Takashi Iwai10832062008-08-11 10:18:39 +0200412 }
Takashi Iwaie683ec42008-11-12 16:42:44 +0100413 spin_unlock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200414 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400416 handled = 1;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200417 if (status & VT1724_IRQ_MPU_TX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200418 if (ice->midi_output)
419 vt1724_midi_write(ice);
Takashi Iwaie683ec42008-11-12 16:42:44 +0100420 else
421 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200422 /* Due to mysterical reasons, MPU_TX is always
423 * generated (and can't be cleared) when a PCM
424 * playback is going. So let's ignore at the
425 * next loop.
426 */
427 status_mask &= ~VT1724_IRQ_MPU_TX;
428 }
429 if (status & VT1724_IRQ_MPU_RX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200430 if (ice->midi_input)
431 vt1724_midi_read(ice);
432 else
433 vt1724_midi_clear_rx(ice);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200434 }
435 /* ack MPU irq */
436 outb(status, ICEREG1724(ice, IRQSTAT));
Takashi Iwaie683ec42008-11-12 16:42:44 +0100437 spin_unlock(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 if (status & VT1724_IRQ_MTPCM) {
439 /*
440 * Multi-track PCM
441 * PCM assignment are:
442 * Playback DMA0 (M/C) = playback_pro_substream
443 * Playback DMA1 = playback_con_substream_ds[0]
444 * Playback DMA2 = playback_con_substream_ds[1]
445 * Playback DMA3 = playback_con_substream_ds[2]
446 * Playback DMA4 (SPDIF) = playback_con_substream
447 * Record DMA0 = capture_pro_substream
448 * Record DMA1 = capture_con_substream
449 */
450 unsigned char mtstat = inb(ICEMT1724(ice, IRQ));
451 if (mtstat & VT1724_MULTI_PDMA0) {
452 if (ice->playback_pro_substream)
453 snd_pcm_period_elapsed(ice->playback_pro_substream);
454 }
455 if (mtstat & VT1724_MULTI_RDMA0) {
456 if (ice->capture_pro_substream)
457 snd_pcm_period_elapsed(ice->capture_pro_substream);
458 }
459 if (mtstat & VT1724_MULTI_PDMA1) {
460 if (ice->playback_con_substream_ds[0])
461 snd_pcm_period_elapsed(ice->playback_con_substream_ds[0]);
462 }
463 if (mtstat & VT1724_MULTI_PDMA2) {
464 if (ice->playback_con_substream_ds[1])
465 snd_pcm_period_elapsed(ice->playback_con_substream_ds[1]);
466 }
467 if (mtstat & VT1724_MULTI_PDMA3) {
468 if (ice->playback_con_substream_ds[2])
469 snd_pcm_period_elapsed(ice->playback_con_substream_ds[2]);
470 }
471 if (mtstat & VT1724_MULTI_PDMA4) {
472 if (ice->playback_con_substream)
473 snd_pcm_period_elapsed(ice->playback_con_substream);
474 }
475 if (mtstat & VT1724_MULTI_RDMA1) {
476 if (ice->capture_con_substream)
477 snd_pcm_period_elapsed(ice->capture_con_substream);
478 }
479 /* ack anyway to avoid freeze */
480 outb(mtstat, ICEMT1724(ice, IRQ));
481 /* ought to really handle this properly */
482 if (mtstat & VT1724_MULTI_FIFO_ERR) {
483 unsigned char fstat = inb(ICEMT1724(ice, DMA_FIFO_ERR));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400484 outb(fstat, ICEMT1724(ice, DMA_FIFO_ERR));
485 outb(VT1724_MULTI_FIFO_ERR | inb(ICEMT1724(ice, DMA_INT_MASK)), ICEMT1724(ice, DMA_INT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /* If I don't do this, I get machine lockup due to continual interrupts */
487 }
488
489 }
490 }
491 return IRQ_RETVAL(handled);
492}
493
494/*
495 * PCM code - professional part (multitrack)
496 */
497
498static unsigned int rates[] = {
499 8000, 9600, 11025, 12000, 16000, 22050, 24000,
500 32000, 44100, 48000, 64000, 88200, 96000,
501 176400, 192000,
502};
503
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100504static struct snd_pcm_hw_constraint_list hw_constraints_rates_96 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 .count = ARRAY_SIZE(rates) - 2, /* up to 96000 */
506 .list = rates,
507 .mask = 0,
508};
509
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100510static struct snd_pcm_hw_constraint_list hw_constraints_rates_48 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 .count = ARRAY_SIZE(rates) - 5, /* up to 48000 */
512 .list = rates,
513 .mask = 0,
514};
515
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100516static struct snd_pcm_hw_constraint_list hw_constraints_rates_192 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 .count = ARRAY_SIZE(rates),
518 .list = rates,
519 .mask = 0,
520};
521
522struct vt1724_pcm_reg {
523 unsigned int addr; /* ADDR register offset */
524 unsigned int size; /* SIZE register offset */
525 unsigned int count; /* COUNT register offset */
526 unsigned int start; /* start & pause bit */
527};
528
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100529static int snd_vt1724_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100531 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 unsigned char what;
533 unsigned char old;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100534 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 what = 0;
Takashi Iwaief991b92007-02-22 12:52:53 +0100537 snd_pcm_group_for_each_entry(s, substream) {
Clemens Ladisch29998d22007-07-30 08:14:31 +0200538 if (snd_pcm_substream_chip(s) == ice) {
539 const struct vt1724_pcm_reg *reg;
540 reg = s->runtime->private_data;
541 what |= reg->start;
542 snd_pcm_trigger_done(s, substream);
543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
546 switch (cmd) {
547 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
548 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
549 spin_lock(&ice->reg_lock);
550 old = inb(ICEMT1724(ice, DMA_PAUSE));
551 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
552 old |= what;
553 else
554 old &= ~what;
555 outb(old, ICEMT1724(ice, DMA_PAUSE));
556 spin_unlock(&ice->reg_lock);
557 break;
558
559 case SNDRV_PCM_TRIGGER_START:
560 case SNDRV_PCM_TRIGGER_STOP:
561 spin_lock(&ice->reg_lock);
562 old = inb(ICEMT1724(ice, DMA_CONTROL));
563 if (cmd == SNDRV_PCM_TRIGGER_START)
564 old |= what;
565 else
566 old &= ~what;
567 outb(old, ICEMT1724(ice, DMA_CONTROL));
568 spin_unlock(&ice->reg_lock);
569 break;
570
571 default:
572 return -EINVAL;
573 }
574 return 0;
575}
576
577/*
578 */
579
580#define DMA_STARTS (VT1724_RDMA0_START|VT1724_PDMA0_START|VT1724_RDMA1_START|\
581 VT1724_PDMA1_START|VT1724_PDMA2_START|VT1724_PDMA3_START|VT1724_PDMA4_START)
582#define DMA_PAUSES (VT1724_RDMA0_PAUSE|VT1724_PDMA0_PAUSE|VT1724_RDMA1_PAUSE|\
583 VT1724_PDMA1_PAUSE|VT1724_PDMA2_PAUSE|VT1724_PDMA3_PAUSE|VT1724_PDMA4_PAUSE)
584
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100585static const unsigned int stdclock_rate_list[16] = {
586 48000, 24000, 12000, 9600, 32000, 16000, 8000, 96000, 44100,
587 22050, 11025, 88200, 176400, 0, 192000, 64000
588};
589
590static unsigned int stdclock_get_rate(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100592 unsigned int rate;
593 rate = stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
594 return rate;
595}
596
597static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
598{
599 int i;
600 for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
601 if (stdclock_rate_list[i] == rate) {
602 outb(i, ICEMT1724(ice, RATE));
603 return;
604 }
605 }
606}
607
608static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
609 unsigned int rate)
610{
611 unsigned char val, old;
612 /* check MT02 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100614 val = old = inb(ICEMT1724(ice, I2S_FORMAT));
615 if (rate > 96000)
616 val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 else
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100618 val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
619 if (val != old) {
620 outb(val, ICEMT1724(ice, I2S_FORMAT));
621 /* master clock changed */
622 return 1;
623 }
624 }
625 /* no change in master clock */
626 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Takashi Iwai92d71002009-05-06 17:18:34 +0200629static int snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100630 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 unsigned long flags;
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100633 unsigned char mclk_change;
634 unsigned int i, old_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100636 if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
Takashi Iwai92d71002009-05-06 17:18:34 +0200637 return -EINVAL;
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 spin_lock_irqsave(&ice->reg_lock, flags);
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100640 if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
642 /* running? we cannot change the rate now... */
643 spin_unlock_irqrestore(&ice->reg_lock, flags);
Takashi Iwai92d71002009-05-06 17:18:34 +0200644 return -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 if (!force && is_pro_rate_locked(ice)) {
647 spin_unlock_irqrestore(&ice->reg_lock, flags);
Takashi Iwai92d71002009-05-06 17:18:34 +0200648 return (rate == ice->cur_rate) ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
650
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100651 old_rate = ice->get_rate(ice);
652 if (force || (old_rate != rate))
653 ice->set_rate(ice, rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 else if (rate == ice->cur_rate) {
655 spin_unlock_irqrestore(&ice->reg_lock, flags);
Takashi Iwai92d71002009-05-06 17:18:34 +0200656 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 }
658
659 ice->cur_rate = rate;
660
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100661 /* setting master clock */
662 mclk_change = ice->set_mclk(ice, rate);
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 spin_unlock_irqrestore(&ice->reg_lock, flags);
665
666 if (mclk_change && ice->gpio.i2s_mclk_changed)
667 ice->gpio.i2s_mclk_changed(ice);
668 if (ice->gpio.set_pro_rate)
669 ice->gpio.set_pro_rate(ice, rate);
670
671 /* set up codecs */
672 for (i = 0; i < ice->akm_codecs; i++) {
673 if (ice->akm[i].ops.set_rate_val)
674 ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
675 }
676 if (ice->spdif.ops.setup_rate)
677 ice->spdif.ops.setup_rate(ice, rate);
Takashi Iwai92d71002009-05-06 17:18:34 +0200678
679 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680}
681
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100682static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
683 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100685 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai92d71002009-05-06 17:18:34 +0200686 int i, chs, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688 chs = params_channels(hw_params);
Ingo Molnar62932df2006-01-16 16:34:20 +0100689 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /* mark surround channels */
691 if (substream == ice->playback_pro_substream) {
692 /* PDMA0 can be multi-channel up to 8 */
693 chs = chs / 2 - 1;
694 for (i = 0; i < chs; i++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100695 if (ice->pcm_reserved[i] &&
696 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100697 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return -EBUSY;
699 }
700 ice->pcm_reserved[i] = substream;
701 }
702 for (; i < 3; i++) {
703 if (ice->pcm_reserved[i] == substream)
704 ice->pcm_reserved[i] = NULL;
705 }
706 } else {
707 for (i = 0; i < 3; i++) {
708 /* check individual playback stream */
709 if (ice->playback_con_substream_ds[i] == substream) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100710 if (ice->pcm_reserved[i] &&
711 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100712 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return -EBUSY;
714 }
715 ice->pcm_reserved[i] = substream;
716 break;
717 }
718 }
719 }
Ingo Molnar62932df2006-01-16 16:34:20 +0100720 mutex_unlock(&ice->open_mutex);
Takashi Iwai92d71002009-05-06 17:18:34 +0200721
722 err = snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
723 if (err < 0)
724 return err;
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
727}
728
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100729static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100731 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 int i;
733
Ingo Molnar62932df2006-01-16 16:34:20 +0100734 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 /* unmark surround channels */
736 for (i = 0; i < 3; i++)
737 if (ice->pcm_reserved[i] == substream)
738 ice->pcm_reserved[i] = NULL;
Ingo Molnar62932df2006-01-16 16:34:20 +0100739 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return snd_pcm_lib_free_pages(substream);
741}
742
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100743static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100745 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 unsigned char val;
747 unsigned int size;
748
749 spin_lock_irq(&ice->reg_lock);
750 val = (8 - substream->runtime->channels) >> 1;
751 outb(val, ICEMT1724(ice, BURST));
752
753 outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));
754
755 size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400756 /* outl(size, ICEMT1724(ice, PLAYBACK_SIZE)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
758 outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
759 size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400760 /* outl(size, ICEMT1724(ice, PLAYBACK_COUNT)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
762 outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);
763
764 spin_unlock_irq(&ice->reg_lock);
765
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +0100766 /*
767 printk(KERN_DEBUG "pro prepare: ch = %d, addr = 0x%x, "
768 "buffer = 0x%x, period = 0x%x\n",
769 substream->runtime->channels,
770 (unsigned int)substream->runtime->dma_addr,
771 snd_pcm_lib_buffer_bytes(substream),
772 snd_pcm_lib_period_bytes(substream));
773 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return 0;
775}
776
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100777static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100779 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 size_t ptr;
781
782 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
783 return 0;
784#if 0 /* read PLAYBACK_ADDR */
785 ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
786 if (ptr < substream->runtime->dma_addr) {
787 snd_printd("ice1724: invalid negative ptr\n");
788 return 0;
789 }
790 ptr -= substream->runtime->dma_addr;
791 ptr = bytes_to_frames(substream->runtime, ptr);
792 if (ptr >= substream->runtime->buffer_size) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100793 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
794 (int)ptr, (int)substream->runtime->period_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return 0;
796 }
797#else /* read PLAYBACK_SIZE */
798 ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
799 ptr = (ptr + 1) << 2;
800 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400801 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 ;
803 else if (ptr <= substream->runtime->buffer_size)
804 ptr = substream->runtime->buffer_size - ptr;
805 else {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100806 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
807 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 ptr = 0;
809 }
810#endif
811 return ptr;
812}
813
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100814static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100816 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100817 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 spin_lock_irq(&ice->reg_lock);
820 outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100821 outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
822 ice->profi_port + reg->size);
823 outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
824 ice->profi_port + reg->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 spin_unlock_irq(&ice->reg_lock);
826 return 0;
827}
828
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100829static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100831 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100832 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 size_t ptr;
834
835 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
836 return 0;
837#if 0 /* use ADDR register */
838 ptr = inl(ice->profi_port + reg->addr);
839 ptr -= substream->runtime->dma_addr;
840 return bytes_to_frames(substream->runtime, ptr);
841#else /* use SIZE register */
842 ptr = inw(ice->profi_port + reg->size);
843 ptr = (ptr + 1) << 2;
844 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400845 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 ;
847 else if (ptr <= substream->runtime->buffer_size)
848 ptr = substream->runtime->buffer_size - ptr;
849 else {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100850 snd_printd("ice1724: invalid ptr %d (size=%d)\n",
851 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 ptr = 0;
853 }
854 return ptr;
855#endif
856}
857
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200858static const struct vt1724_pcm_reg vt1724_pdma0_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 .addr = VT1724_MT_PLAYBACK_ADDR,
860 .size = VT1724_MT_PLAYBACK_SIZE,
861 .count = VT1724_MT_PLAYBACK_COUNT,
862 .start = VT1724_PDMA0_START,
863};
864
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200865static const struct vt1724_pcm_reg vt1724_pdma4_reg = {
866 .addr = VT1724_MT_PDMA4_ADDR,
867 .size = VT1724_MT_PDMA4_SIZE,
868 .count = VT1724_MT_PDMA4_COUNT,
869 .start = VT1724_PDMA4_START,
870};
871
872static const struct vt1724_pcm_reg vt1724_rdma0_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 .addr = VT1724_MT_CAPTURE_ADDR,
874 .size = VT1724_MT_CAPTURE_SIZE,
875 .count = VT1724_MT_CAPTURE_COUNT,
876 .start = VT1724_RDMA0_START,
877};
878
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200879static const struct vt1724_pcm_reg vt1724_rdma1_reg = {
880 .addr = VT1724_MT_RDMA1_ADDR,
881 .size = VT1724_MT_RDMA1_SIZE,
882 .count = VT1724_MT_RDMA1_COUNT,
883 .start = VT1724_RDMA1_START,
884};
885
886#define vt1724_playback_pro_reg vt1724_pdma0_reg
887#define vt1724_playback_spdif_reg vt1724_pdma4_reg
888#define vt1724_capture_pro_reg vt1724_rdma0_reg
889#define vt1724_capture_spdif_reg vt1724_rdma1_reg
890
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400891static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
893 SNDRV_PCM_INFO_BLOCK_TRANSFER |
894 SNDRV_PCM_INFO_MMAP_VALID |
895 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
896 .formats = SNDRV_PCM_FMTBIT_S32_LE,
897 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
898 .rate_min = 8000,
899 .rate_max = 192000,
900 .channels_min = 2,
901 .channels_max = 8,
902 .buffer_bytes_max = (1UL << 21), /* 19bits dword */
903 .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
904 .period_bytes_max = (1UL << 21),
905 .periods_min = 2,
906 .periods_max = 1024,
907};
908
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400909static const struct snd_pcm_hardware snd_vt1724_spdif = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
911 SNDRV_PCM_INFO_BLOCK_TRANSFER |
912 SNDRV_PCM_INFO_MMAP_VALID |
913 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
914 .formats = SNDRV_PCM_FMTBIT_S32_LE,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200915 .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
916 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
917 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
918 SNDRV_PCM_RATE_192000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 .rate_min = 32000,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200920 .rate_max = 192000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 .channels_min = 2,
922 .channels_max = 2,
923 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
924 .period_bytes_min = 2 * 4 * 2,
925 .period_bytes_max = (1UL << 18),
926 .periods_min = 2,
927 .periods_max = 1024,
928};
929
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400930static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
932 SNDRV_PCM_INFO_BLOCK_TRANSFER |
933 SNDRV_PCM_INFO_MMAP_VALID |
934 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
935 .formats = SNDRV_PCM_FMTBIT_S32_LE,
936 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
937 .rate_min = 8000,
938 .rate_max = 192000,
939 .channels_min = 2,
940 .channels_max = 2,
941 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
942 .period_bytes_min = 2 * 4 * 2,
943 .period_bytes_max = (1UL << 18),
944 .periods_min = 2,
945 .periods_max = 1024,
946};
947
948/*
949 * set rate constraints
950 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100951static void set_std_hw_rates(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
954 /* I2S */
955 /* VT1720 doesn't support more than 96kHz */
956 if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100957 ice->hw_rates = &hw_constraints_rates_192;
958 else
959 ice->hw_rates = &hw_constraints_rates_96;
960 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 /* ACLINK */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100962 ice->hw_rates = &hw_constraints_rates_48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100964}
965
966static int set_rate_constraints(struct snd_ice1712 *ice,
967 struct snd_pcm_substream *substream)
968{
969 struct snd_pcm_runtime *runtime = substream->runtime;
970
971 runtime->hw.rate_min = ice->hw_rates->list[0];
972 runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
973 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
974 return snd_pcm_hw_constraint_list(runtime, 0,
975 SNDRV_PCM_HW_PARAM_RATE,
976 ice->hw_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977}
978
979/* multi-channel playback needs alignment 8x32bit regardless of the channels
980 * actually used
981 */
982#define VT1724_BUFFER_ALIGN 0x20
983
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100984static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100986 struct snd_pcm_runtime *runtime = substream->runtime;
987 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200988 int chs, num_indeps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Takashi Iwai32b47da2007-01-29 15:26:36 +0100990 runtime->private_data = (void *)&vt1724_playback_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 ice->playback_pro_substream = substream;
992 runtime->hw = snd_vt1724_playback_pro;
993 snd_pcm_set_sync(substream);
994 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
995 set_rate_constraints(ice, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +0100996 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /* calculate the currently available channels */
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200998 num_indeps = ice->num_total_dacs / 2 - 1;
999 for (chs = 0; chs < num_indeps; chs++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (ice->pcm_reserved[chs])
1001 break;
1002 }
1003 chs = (chs + 1) * 2;
1004 runtime->hw.channels_max = chs;
1005 if (chs > 2) /* channels must be even */
1006 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Ingo Molnar62932df2006-01-16 16:34:20 +01001007 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1009 VT1724_BUFFER_ALIGN);
1010 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1011 VT1724_BUFFER_ALIGN);
1012 return 0;
1013}
1014
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001015static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001017 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1018 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Takashi Iwai32b47da2007-01-29 15:26:36 +01001020 runtime->private_data = (void *)&vt1724_capture_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 ice->capture_pro_substream = substream;
1022 runtime->hw = snd_vt1724_2ch_stereo;
1023 snd_pcm_set_sync(substream);
1024 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1025 set_rate_constraints(ice, substream);
1026 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1027 VT1724_BUFFER_ALIGN);
1028 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1029 VT1724_BUFFER_ALIGN);
1030 return 0;
1031}
1032
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001033static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001035 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001038 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 ice->playback_pro_substream = NULL;
1040
1041 return 0;
1042}
1043
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001044static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001046 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001049 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 ice->capture_pro_substream = NULL;
1051 return 0;
1052}
1053
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001054static struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 .open = snd_vt1724_playback_pro_open,
1056 .close = snd_vt1724_playback_pro_close,
1057 .ioctl = snd_pcm_lib_ioctl,
1058 .hw_params = snd_vt1724_pcm_hw_params,
1059 .hw_free = snd_vt1724_pcm_hw_free,
1060 .prepare = snd_vt1724_playback_pro_prepare,
1061 .trigger = snd_vt1724_pcm_trigger,
1062 .pointer = snd_vt1724_playback_pro_pointer,
1063};
1064
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001065static struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 .open = snd_vt1724_capture_pro_open,
1067 .close = snd_vt1724_capture_pro_close,
1068 .ioctl = snd_pcm_lib_ioctl,
1069 .hw_params = snd_vt1724_pcm_hw_params,
1070 .hw_free = snd_vt1724_pcm_hw_free,
1071 .prepare = snd_vt1724_pcm_prepare,
1072 .trigger = snd_vt1724_pcm_trigger,
1073 .pointer = snd_vt1724_pcm_pointer,
1074};
1075
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001076static int __devinit snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001078 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 int err;
1080
1081 err = snd_pcm_new(ice->card, "ICE1724", device, 1, 1, &pcm);
1082 if (err < 0)
1083 return err;
1084
1085 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
1086 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_vt1724_capture_pro_ops);
1087
1088 pcm->private_data = ice;
1089 pcm->info_flags = 0;
1090 strcpy(pcm->name, "ICE1724");
1091
1092 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001093 snd_dma_pci_data(ice->pci),
1094 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 ice->pcm_pro = pcm;
1097
1098 return 0;
1099}
1100
1101
1102/*
1103 * SPDIF PCM
1104 */
1105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106/* update spdif control bits; call with reg_lock */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001107static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
1109 unsigned char cbit, disabled;
1110
1111 cbit = inb(ICEREG1724(ice, SPDIF_CFG));
1112 disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
1113 if (cbit != disabled)
1114 outb(disabled, ICEREG1724(ice, SPDIF_CFG));
1115 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1116 if (cbit != disabled)
1117 outb(cbit, ICEREG1724(ice, SPDIF_CFG));
1118 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1119}
1120
1121/* update SPDIF control bits according to the given rate */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001122static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123{
1124 unsigned int val, nval;
1125 unsigned long flags;
1126
1127 spin_lock_irqsave(&ice->reg_lock, flags);
1128 nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
1129 nval &= ~(7 << 12);
1130 switch (rate) {
1131 case 44100: break;
1132 case 48000: nval |= 2 << 12; break;
1133 case 32000: nval |= 3 << 12; break;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001134 case 88200: nval |= 4 << 12; break;
1135 case 96000: nval |= 5 << 12; break;
1136 case 192000: nval |= 6 << 12; break;
1137 case 176400: nval |= 7 << 12; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 }
1139 if (val != nval)
1140 update_spdif_bits(ice, nval);
1141 spin_unlock_irqrestore(&ice->reg_lock, flags);
1142}
1143
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001144static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001146 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001147 if (!ice->force_pdma4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 update_spdif_rate(ice, substream->runtime->rate);
1149 return snd_vt1724_pcm_prepare(substream);
1150}
1151
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001152static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001154 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1155 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Takashi Iwai32b47da2007-01-29 15:26:36 +01001157 runtime->private_data = (void *)&vt1724_playback_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 ice->playback_con_substream = substream;
1159 if (ice->force_pdma4) {
1160 runtime->hw = snd_vt1724_2ch_stereo;
1161 set_rate_constraints(ice, substream);
1162 } else
1163 runtime->hw = snd_vt1724_spdif;
1164 snd_pcm_set_sync(substream);
1165 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1166 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1167 VT1724_BUFFER_ALIGN);
1168 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1169 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001170 if (ice->spdif.ops.open)
1171 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 return 0;
1173}
1174
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001175static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001177 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001180 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 ice->playback_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001182 if (ice->spdif.ops.close)
1183 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 return 0;
1186}
1187
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001188static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001190 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1191 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Takashi Iwai32b47da2007-01-29 15:26:36 +01001193 runtime->private_data = (void *)&vt1724_capture_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 ice->capture_con_substream = substream;
1195 if (ice->force_rdma1) {
1196 runtime->hw = snd_vt1724_2ch_stereo;
1197 set_rate_constraints(ice, substream);
1198 } else
1199 runtime->hw = snd_vt1724_spdif;
1200 snd_pcm_set_sync(substream);
1201 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1202 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1203 VT1724_BUFFER_ALIGN);
1204 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1205 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001206 if (ice->spdif.ops.open)
1207 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return 0;
1209}
1210
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001211static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001213 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001216 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 ice->capture_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001218 if (ice->spdif.ops.close)
1219 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
1221 return 0;
1222}
1223
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001224static struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 .open = snd_vt1724_playback_spdif_open,
1226 .close = snd_vt1724_playback_spdif_close,
1227 .ioctl = snd_pcm_lib_ioctl,
1228 .hw_params = snd_vt1724_pcm_hw_params,
1229 .hw_free = snd_vt1724_pcm_hw_free,
1230 .prepare = snd_vt1724_playback_spdif_prepare,
1231 .trigger = snd_vt1724_pcm_trigger,
1232 .pointer = snd_vt1724_pcm_pointer,
1233};
1234
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001235static struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 .open = snd_vt1724_capture_spdif_open,
1237 .close = snd_vt1724_capture_spdif_close,
1238 .ioctl = snd_pcm_lib_ioctl,
1239 .hw_params = snd_vt1724_pcm_hw_params,
1240 .hw_free = snd_vt1724_pcm_hw_free,
1241 .prepare = snd_vt1724_pcm_prepare,
1242 .trigger = snd_vt1724_pcm_trigger,
1243 .pointer = snd_vt1724_pcm_pointer,
1244};
1245
1246
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001247static int __devinit snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248{
1249 char *name;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001250 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 int play, capt;
1252 int err;
1253
1254 if (ice->force_pdma4 ||
1255 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
1256 play = 1;
1257 ice->has_spdif = 1;
1258 } else
1259 play = 0;
1260 if (ice->force_rdma1 ||
1261 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
1262 capt = 1;
1263 ice->has_spdif = 1;
1264 } else
1265 capt = 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001266 if (!play && !capt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 return 0; /* no spdif device */
1268
1269 if (ice->force_pdma4 || ice->force_rdma1)
1270 name = "ICE1724 Secondary";
1271 else
Alan Horstmann8eca7532009-01-05 18:30:04 +01001272 name = "ICE1724 IEC958";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
1274 if (err < 0)
1275 return err;
1276
1277 if (play)
1278 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1279 &snd_vt1724_playback_spdif_ops);
1280 if (capt)
1281 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1282 &snd_vt1724_capture_spdif_ops);
1283
1284 pcm->private_data = ice;
1285 pcm->info_flags = 0;
1286 strcpy(pcm->name, name);
1287
1288 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001289 snd_dma_pci_data(ice->pci),
1290 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 ice->pcm = pcm;
1293
1294 return 0;
1295}
1296
1297
1298/*
1299 * independent surround PCMs
1300 */
1301
Takashi Iwai32b47da2007-01-29 15:26:36 +01001302static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 {
1304 .addr = VT1724_MT_PDMA1_ADDR,
1305 .size = VT1724_MT_PDMA1_SIZE,
1306 .count = VT1724_MT_PDMA1_COUNT,
1307 .start = VT1724_PDMA1_START,
1308 },
1309 {
1310 .addr = VT1724_MT_PDMA2_ADDR,
1311 .size = VT1724_MT_PDMA2_SIZE,
1312 .count = VT1724_MT_PDMA2_COUNT,
1313 .start = VT1724_PDMA2_START,
1314 },
1315 {
1316 .addr = VT1724_MT_PDMA3_ADDR,
1317 .size = VT1724_MT_PDMA3_SIZE,
1318 .count = VT1724_MT_PDMA3_COUNT,
1319 .start = VT1724_PDMA3_START,
1320 },
1321};
1322
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001323static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001325 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 unsigned char val;
1327
1328 spin_lock_irq(&ice->reg_lock);
1329 val = 3 - substream->number;
1330 if (inb(ICEMT1724(ice, BURST)) < val)
1331 outb(val, ICEMT1724(ice, BURST));
1332 spin_unlock_irq(&ice->reg_lock);
1333 return snd_vt1724_pcm_prepare(substream);
1334}
1335
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001336static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001338 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1339 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Ingo Molnar62932df2006-01-16 16:34:20 +01001341 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /* already used by PDMA0? */
1343 if (ice->pcm_reserved[substream->number]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001344 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 return -EBUSY; /* FIXME: should handle blocking mode properly */
1346 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001347 mutex_unlock(&ice->open_mutex);
Takashi Iwai32b47da2007-01-29 15:26:36 +01001348 runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 ice->playback_con_substream_ds[substream->number] = substream;
1350 runtime->hw = snd_vt1724_2ch_stereo;
1351 snd_pcm_set_sync(substream);
1352 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1353 set_rate_constraints(ice, substream);
1354 return 0;
1355}
1356
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001357static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001359 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001362 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 ice->playback_con_substream_ds[substream->number] = NULL;
1364 ice->pcm_reserved[substream->number] = NULL;
1365
1366 return 0;
1367}
1368
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001369static struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 .open = snd_vt1724_playback_indep_open,
1371 .close = snd_vt1724_playback_indep_close,
1372 .ioctl = snd_pcm_lib_ioctl,
1373 .hw_params = snd_vt1724_pcm_hw_params,
1374 .hw_free = snd_vt1724_pcm_hw_free,
1375 .prepare = snd_vt1724_playback_indep_prepare,
1376 .trigger = snd_vt1724_pcm_trigger,
1377 .pointer = snd_vt1724_pcm_pointer,
1378};
1379
1380
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001381static int __devinit snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001383 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 int play;
1385 int err;
1386
1387 play = ice->num_total_dacs / 2 - 1;
1388 if (play <= 0)
1389 return 0;
1390
1391 err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
1392 if (err < 0)
1393 return err;
1394
1395 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1396 &snd_vt1724_playback_indep_ops);
1397
1398 pcm->private_data = ice;
1399 pcm->info_flags = 0;
1400 strcpy(pcm->name, "ICE1724 Surround PCM");
1401
1402 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001403 snd_dma_pci_data(ice->pci),
1404 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
1406 ice->pcm_ds = pcm;
1407
1408 return 0;
1409}
1410
1411
1412/*
1413 * Mixer section
1414 */
1415
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001416static int __devinit snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
1418 int err;
1419
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001420 if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001421 struct snd_ac97_bus *pbus;
1422 struct snd_ac97_template ac97;
1423 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 .write = snd_vt1724_ac97_write,
1425 .read = snd_vt1724_ac97_read,
1426 };
1427
1428 /* cold reset */
1429 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
1430 mdelay(5); /* FIXME */
1431 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
1432
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001433 err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
1434 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 return err;
1436 memset(&ac97, 0, sizeof(ac97));
1437 ac97.private_data = ice;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001438 err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
1439 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
1441 else
1442 return 0;
1443 }
1444 /* I2S mixer only */
1445 strcat(ice->card->mixername, "ICE1724 - multitrack");
1446 return 0;
1447}
1448
1449/*
1450 *
1451 */
1452
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001453static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454{
1455 return (unsigned int)ice->eeprom.data[idx] | \
1456 ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
1457 ((unsigned int)ice->eeprom.data[idx + 2] << 16);
1458}
1459
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001460static void snd_vt1724_proc_read(struct snd_info_entry *entry,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001461 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001463 struct snd_ice1712 *ice = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 unsigned int idx;
1465
1466 snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1467 snd_iprintf(buffer, "EEPROM:\n");
1468
1469 snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
1470 snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
1471 snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001472 snd_iprintf(buffer, " System Config : 0x%x\n",
1473 ice->eeprom.data[ICE_EEP2_SYSCONF]);
1474 snd_iprintf(buffer, " ACLink : 0x%x\n",
1475 ice->eeprom.data[ICE_EEP2_ACLINK]);
1476 snd_iprintf(buffer, " I2S : 0x%x\n",
1477 ice->eeprom.data[ICE_EEP2_I2S]);
1478 snd_iprintf(buffer, " S/PDIF : 0x%x\n",
1479 ice->eeprom.data[ICE_EEP2_SPDIF]);
1480 snd_iprintf(buffer, " GPIO direction : 0x%x\n",
1481 ice->eeprom.gpiodir);
1482 snd_iprintf(buffer, " GPIO mask : 0x%x\n",
1483 ice->eeprom.gpiomask);
1484 snd_iprintf(buffer, " GPIO state : 0x%x\n",
1485 ice->eeprom.gpiostate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 for (idx = 0x12; idx < ice->eeprom.size; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001487 snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
1488 idx, ice->eeprom.data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 snd_iprintf(buffer, "\nRegisters:\n");
1491
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001492 snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
1493 (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 for (idx = 0x0; idx < 0x20 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001495 snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
1496 idx, inb(ice->port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 for (idx = 0x0; idx < 0x30 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001498 snd_iprintf(buffer, " MT%02x : 0x%02x\n",
1499 idx, inb(ice->profi_port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500}
1501
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001502static void __devinit snd_vt1724_proc_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001504 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001506 if (!snd_card_proc_new(ice->card, "ice1724", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02001507 snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508}
1509
1510/*
1511 *
1512 */
1513
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001514static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
1515 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516{
1517 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001518 uinfo->count = sizeof(struct snd_ice1712_eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return 0;
1520}
1521
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001522static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
1523 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001525 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001526
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1528 return 0;
1529}
1530
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001531static struct snd_kcontrol_new snd_vt1724_eeprom __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1533 .name = "ICE1724 EEPROM",
1534 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1535 .info = snd_vt1724_eeprom_info,
1536 .get = snd_vt1724_eeprom_get
1537};
1538
1539/*
1540 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001541static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
1542 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1545 uinfo->count = 1;
1546 return 0;
1547}
1548
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001549static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001551 unsigned int val, rbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 val = diga->status[0] & 0x03; /* professional, non-audio */
1554 if (val & 0x01) {
1555 /* professional */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001556 if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
1557 IEC958_AES0_PRO_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 val |= 1U << 3;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001559 rbits = (diga->status[4] >> 3) & 0x0f;
1560 if (rbits) {
1561 switch (rbits) {
1562 case 2: val |= 5 << 12; break; /* 96k */
1563 case 3: val |= 6 << 12; break; /* 192k */
1564 case 10: val |= 4 << 12; break; /* 88.2k */
1565 case 11: val |= 7 << 12; break; /* 176.4k */
1566 }
1567 } else {
1568 switch (diga->status[0] & IEC958_AES0_PRO_FS) {
1569 case IEC958_AES0_PRO_FS_44100:
1570 break;
1571 case IEC958_AES0_PRO_FS_32000:
1572 val |= 3U << 12;
1573 break;
1574 default:
1575 val |= 2U << 12;
1576 break;
1577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 }
1579 } else {
1580 /* consumer */
1581 val |= diga->status[1] & 0x04; /* copyright */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001582 if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
1583 IEC958_AES0_CON_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 val |= 1U << 3;
1585 val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
1586 val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
1587 }
1588 return val;
1589}
1590
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001591static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
1593 memset(diga->status, 0, sizeof(diga->status));
1594 diga->status[0] = val & 0x03; /* professional, non-audio */
1595 if (val & 0x01) {
1596 /* professional */
1597 if (val & (1U << 3))
1598 diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
1599 switch ((val >> 12) & 0x7) {
1600 case 0:
1601 break;
1602 case 2:
1603 diga->status[0] |= IEC958_AES0_PRO_FS_32000;
1604 break;
1605 default:
1606 diga->status[0] |= IEC958_AES0_PRO_FS_48000;
1607 break;
1608 }
1609 } else {
1610 /* consumer */
1611 diga->status[0] |= val & (1U << 2); /* copyright */
1612 if (val & (1U << 3))
1613 diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
1614 diga->status[1] |= (val >> 4) & 0x3f; /* category */
1615 diga->status[3] |= (val >> 12) & 0x07; /* fs */
1616 }
1617}
1618
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001619static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
1620 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001622 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 unsigned int val;
1624 val = inw(ICEMT1724(ice, SPDIF_CTRL));
1625 decode_spdif_bits(&ucontrol->value.iec958, val);
1626 return 0;
1627}
1628
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001629static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
1630 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001632 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 unsigned int val, old;
1634
1635 val = encode_spdif_bits(&ucontrol->value.iec958);
1636 spin_lock_irq(&ice->reg_lock);
1637 old = inw(ICEMT1724(ice, SPDIF_CTRL));
1638 if (val != old)
1639 update_spdif_bits(ice, val);
1640 spin_unlock_irq(&ice->reg_lock);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001641 return val != old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001644static struct snd_kcontrol_new snd_vt1724_spdif_default __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
1646 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001647 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 .info = snd_vt1724_spdif_info,
1649 .get = snd_vt1724_spdif_default_get,
1650 .put = snd_vt1724_spdif_default_put
1651};
1652
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001653static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
1654 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655{
1656 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1657 IEC958_AES0_PROFESSIONAL |
1658 IEC958_AES0_CON_NOT_COPYRIGHT |
1659 IEC958_AES0_CON_EMPHASIS;
1660 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1661 IEC958_AES1_CON_CATEGORY;
1662 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1663 return 0;
1664}
1665
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001666static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
1667 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
1669 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1670 IEC958_AES0_PROFESSIONAL |
1671 IEC958_AES0_PRO_FS |
1672 IEC958_AES0_PRO_EMPHASIS;
1673 return 0;
1674}
1675
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001676static struct snd_kcontrol_new snd_vt1724_spdif_maskc __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677{
1678 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001679 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001680 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 .info = snd_vt1724_spdif_info,
1682 .get = snd_vt1724_spdif_maskc_get,
1683};
1684
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001685static struct snd_kcontrol_new snd_vt1724_spdif_maskp __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686{
1687 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001688 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001689 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 .info = snd_vt1724_spdif_info,
1691 .get = snd_vt1724_spdif_maskp_get,
1692};
1693
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001694#define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001696static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
1697 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001699 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1700 ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
1701 VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return 0;
1703}
1704
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001705static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
1706 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001708 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 unsigned char old, val;
1710
1711 spin_lock_irq(&ice->reg_lock);
1712 old = val = inb(ICEREG1724(ice, SPDIF_CFG));
1713 val &= ~VT1724_CFG_SPDIF_OUT_EN;
1714 if (ucontrol->value.integer.value[0])
1715 val |= VT1724_CFG_SPDIF_OUT_EN;
1716 if (old != val)
1717 outb(val, ICEREG1724(ice, SPDIF_CFG));
1718 spin_unlock_irq(&ice->reg_lock);
1719 return old != val;
1720}
1721
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001722static struct snd_kcontrol_new snd_vt1724_spdif_switch __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723{
1724 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1725 /* FIXME: the following conflict with IEC958 Playback Route */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001726 /* .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
1727 .name = SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 .info = snd_vt1724_spdif_sw_info,
1729 .get = snd_vt1724_spdif_sw_get,
1730 .put = snd_vt1724_spdif_sw_put
1731};
1732
1733
1734#if 0 /* NOT USED YET */
1735/*
1736 * GPIO access from extern
1737 */
1738
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001739#define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001741int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
1742 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001744 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 int shift = kcontrol->private_value & 0xff;
1746 int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 snd_ice1712_save_gpio_status(ice);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001749 ucontrol->value.integer.value[0] =
1750 (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 snd_ice1712_restore_gpio_status(ice);
1752 return 0;
1753}
1754
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001755int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
1756 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001758 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 int shift = kcontrol->private_value & 0xff;
1760 int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1761 unsigned int val, nval;
1762
1763 if (kcontrol->private_value & (1 << 31))
1764 return -EPERM;
1765 nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
1766 snd_ice1712_save_gpio_status(ice);
1767 val = snd_ice1712_gpio_read(ice);
1768 nval |= val & ~(1 << shift);
1769 if (val != nval)
1770 snd_ice1712_gpio_write(ice, nval);
1771 snd_ice1712_restore_gpio_status(ice);
1772 return val != nval;
1773}
1774#endif /* NOT USED YET */
1775
1776/*
1777 * rate
1778 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001779static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
1780 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001782 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1785 uinfo->count = 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001786 uinfo->value.enumerated.items = ice->hw_rates->count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1788 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001789 if (uinfo->value.enumerated.item == uinfo->value.enumerated.items - 1)
1790 strcpy(uinfo->value.enumerated.name, "IEC958 Input");
1791 else
1792 sprintf(uinfo->value.enumerated.name, "%d",
1793 ice->hw_rates->list[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return 0;
1795}
1796
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001797static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
1798 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001800 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001801 unsigned int i, rate;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001804 if (ice->is_spdif_master(ice)) {
1805 ucontrol->value.enumerated.item[0] = ice->hw_rates->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001807 rate = ice->get_rate(ice);
1808 ucontrol->value.enumerated.item[0] = 0;
1809 for (i = 0; i < ice->hw_rates->count; i++) {
1810 if (ice->hw_rates->list[i] == rate) {
1811 ucontrol->value.enumerated.item[0] = i;
1812 break;
1813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816 spin_unlock_irq(&ice->reg_lock);
1817 return 0;
1818}
1819
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001820/* setting clock to external - SPDIF */
1821static void stdclock_set_spdif_clock(struct snd_ice1712 *ice)
1822{
1823 unsigned char oval;
1824 unsigned char i2s_oval;
1825 oval = inb(ICEMT1724(ice, RATE));
1826 outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
1827 /* setting 256fs */
1828 i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
1829 outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
1830}
1831
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001832static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
1833 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001835 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001836 unsigned int old_rate, new_rate;
1837 unsigned int item = ucontrol->value.enumerated.item[0];
1838 unsigned int spdif = ice->hw_rates->count;
1839
1840 if (item > spdif)
1841 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001844 if (ice->is_spdif_master(ice))
1845 old_rate = 0;
1846 else
1847 old_rate = ice->get_rate(ice);
1848 if (item == spdif) {
1849 /* switching to external clock via SPDIF */
1850 ice->set_spdif_clock(ice);
1851 new_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001853 /* internal on-card clock */
1854 new_rate = ice->hw_rates->list[item];
1855 ice->pro_rate_default = new_rate;
1856 spin_unlock_irq(&ice->reg_lock);
1857 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
1858 spin_lock_irq(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 spin_unlock_irq(&ice->reg_lock);
1861
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001862 /* the first reset to the SPDIF master mode? */
1863 if (old_rate != new_rate && !new_rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 /* notify akm chips as well */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001865 unsigned int i;
1866 if (ice->gpio.set_pro_rate)
1867 ice->gpio.set_pro_rate(ice, 0);
1868 for (i = 0; i < ice->akm_codecs; i++) {
1869 if (ice->akm[i].ops.set_rate_val)
1870 ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001873 return old_rate != new_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874}
1875
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001876static struct snd_kcontrol_new snd_vt1724_pro_internal_clock __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1878 .name = "Multi Track Internal Clock",
1879 .info = snd_vt1724_pro_internal_clock_info,
1880 .get = snd_vt1724_pro_internal_clock_get,
1881 .put = snd_vt1724_pro_internal_clock_put
1882};
1883
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001884#define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001886static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
1887 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1890 return 0;
1891}
1892
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001893static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
1894 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001896 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 int change = 0, nval;
1898
1899 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1900 spin_lock_irq(&ice->reg_lock);
1901 change = PRO_RATE_LOCKED != nval;
1902 PRO_RATE_LOCKED = nval;
1903 spin_unlock_irq(&ice->reg_lock);
1904 return change;
1905}
1906
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001907static struct snd_kcontrol_new snd_vt1724_pro_rate_locking __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1909 .name = "Multi Track Rate Locking",
1910 .info = snd_vt1724_pro_rate_locking_info,
1911 .get = snd_vt1724_pro_rate_locking_get,
1912 .put = snd_vt1724_pro_rate_locking_put
1913};
1914
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001915#define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001917static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
1918 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919{
1920 ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
1921 return 0;
1922}
1923
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001924static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
1925 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001927 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 int change = 0, nval;
1929
1930 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1931 spin_lock_irq(&ice->reg_lock);
1932 change = PRO_RATE_RESET != nval;
1933 PRO_RATE_RESET = nval;
1934 spin_unlock_irq(&ice->reg_lock);
1935 return change;
1936}
1937
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001938static struct snd_kcontrol_new snd_vt1724_pro_rate_reset __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1940 .name = "Multi Track Rate Reset",
1941 .info = snd_vt1724_pro_rate_reset_info,
1942 .get = snd_vt1724_pro_rate_reset_get,
1943 .put = snd_vt1724_pro_rate_reset_put
1944};
1945
1946
1947/*
1948 * routing
1949 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001950static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
1951 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
1953 static char *texts[] = {
1954 "PCM Out", /* 0 */
1955 "H/W In 0", "H/W In 1", /* 1-2 */
1956 "IEC958 In L", "IEC958 In R", /* 3-4 */
1957 };
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001958
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1960 uinfo->count = 1;
1961 uinfo->value.enumerated.items = 5;
1962 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1963 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1964 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1965 return 0;
1966}
1967
1968static inline int analog_route_shift(int idx)
1969{
1970 return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
1971}
1972
1973static inline int digital_route_shift(int idx)
1974{
1975 return idx * 3;
1976}
1977
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001978static int get_route_val(struct snd_ice1712 *ice, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 unsigned long val;
1981 unsigned char eitem;
Takashi Iwai32b47da2007-01-29 15:26:36 +01001982 static const unsigned char xlate[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 0, 255, 1, 2, 255, 255, 3, 4,
1984 };
1985
1986 val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
1987 val >>= shift;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001988 val &= 7; /* we now have 3 bits per output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 eitem = xlate[val];
1990 if (eitem == 255) {
1991 snd_BUG();
1992 return 0;
1993 }
1994 return eitem;
1995}
1996
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001997static int put_route_val(struct snd_ice1712 *ice, unsigned int val, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
1999 unsigned int old_val, nval;
2000 int change;
Takashi Iwai32b47da2007-01-29 15:26:36 +01002001 static const unsigned char xroute[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 0, /* PCM */
2003 2, /* PSDIN0 Left */
2004 3, /* PSDIN0 Right */
2005 6, /* SPDIN Left */
2006 7, /* SPDIN Right */
2007 };
2008
2009 nval = xroute[val % 5];
2010 val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2011 val &= ~(0x07 << shift);
2012 val |= nval << shift;
2013 change = val != old_val;
2014 if (change)
2015 outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
2016 return change;
2017}
2018
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002019static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
2020 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002022 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002024 ucontrol->value.enumerated.item[0] =
2025 get_route_val(ice, analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return 0;
2027}
2028
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002029static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
2030 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002032 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2034 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2035 analog_route_shift(idx));
2036}
2037
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002038static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
2039 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002041 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002043 ucontrol->value.enumerated.item[0] =
2044 get_route_val(ice, digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 return 0;
2046}
2047
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002048static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
2049 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002051 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2053 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2054 digital_route_shift(idx));
2055}
2056
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002057static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2059 .name = "H/W Playback Route",
2060 .info = snd_vt1724_pro_route_info,
2061 .get = snd_vt1724_pro_route_analog_get,
2062 .put = snd_vt1724_pro_route_analog_put,
2063};
2064
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002065static struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002067 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 .info = snd_vt1724_pro_route_info,
2069 .get = snd_vt1724_pro_route_spdif_get,
2070 .put = snd_vt1724_pro_route_spdif_put,
2071 .count = 2,
2072};
2073
2074
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002075static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
2076 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
2078 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2079 uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
2080 uinfo->value.integer.min = 0;
2081 uinfo->value.integer.max = 255;
2082 return 0;
2083}
2084
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002085static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
2086 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002088 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 int idx;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002090
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 spin_lock_irq(&ice->reg_lock);
2092 for (idx = 0; idx < 22; idx++) {
2093 outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002094 ucontrol->value.integer.value[idx] =
2095 inb(ICEMT1724(ice, MONITOR_PEAKDATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
2097 spin_unlock_irq(&ice->reg_lock);
2098 return 0;
2099}
2100
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002101static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2103 .name = "Multi Track Peak",
2104 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2105 .info = snd_vt1724_pro_peak_info,
2106 .get = snd_vt1724_pro_peak_get
2107};
2108
2109/*
2110 *
2111 */
2112
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002113static struct snd_ice1712_card_info no_matched __devinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002115static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 snd_vt1724_revo_cards,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002117 snd_vt1724_amp_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 snd_vt1724_aureon_cards,
2119 snd_vt1720_mobo_cards,
2120 snd_vt1720_pontis_cards,
Julian Scheel6b8d6e52008-01-16 19:50:00 +01002121 snd_vt1724_prodigy_hifi_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 snd_vt1724_prodigy192_cards,
2123 snd_vt1724_juli_cards,
2124 snd_vt1724_phase_cards,
Clement Guedezf6cdab52007-01-08 10:48:41 +01002125 snd_vt1724_wtm_cards,
Shin-ya Okadaf31639b2007-10-23 15:08:18 +02002126 snd_vt1724_se_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 NULL,
2128};
2129
2130
2131/*
2132 */
2133
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002134static void wait_i2c_busy(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136 int t = 0x10000;
2137 while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
2138 ;
2139 if (t == -1)
2140 printk(KERN_ERR "ice1724: i2c busy timeout\n");
2141}
2142
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002143unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
2144 unsigned char dev, unsigned char addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
2146 unsigned char val;
2147
Ingo Molnar62932df2006-01-16 16:34:20 +01002148 mutex_lock(&ice->i2c_mutex);
Pavel Hofmanacec30f2007-12-03 12:37:17 +01002149 wait_i2c_busy(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2151 outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2152 wait_i2c_busy(ice);
2153 val = inb(ICEREG1724(ice, I2C_DATA));
Ingo Molnar62932df2006-01-16 16:34:20 +01002154 mutex_unlock(&ice->i2c_mutex);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002155 /*
2156 printk(KERN_DEBUG "i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val);
2157 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 return val;
2159}
2160
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002161void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
2162 unsigned char dev, unsigned char addr, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
Ingo Molnar62932df2006-01-16 16:34:20 +01002164 mutex_lock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 wait_i2c_busy(ice);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002166 /*
2167 printk(KERN_DEBUG "i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data);
2168 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2170 outb(data, ICEREG1724(ice, I2C_DATA));
2171 outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2172 wait_i2c_busy(ice);
Ingo Molnar62932df2006-01-16 16:34:20 +01002173 mutex_unlock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174}
2175
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002176static int __devinit snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
2177 const char *modelname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 const int dev = 0xa0; /* EEPROM device address */
2180 unsigned int i, size;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002181 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002183 if (!modelname || !*modelname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 ice->eeprom.subvendor = 0;
2185 if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
2186 ice->eeprom.subvendor =
2187 (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002188 (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
2189 (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002191 if (ice->eeprom.subvendor == 0 ||
2192 ice->eeprom.subvendor == (unsigned int)-1) {
2193 /* invalid subvendor from EEPROM, try the PCI
2194 * subststem ID instead
2195 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 u16 vendor, device;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002197 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
2198 &vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002200 ice->eeprom.subvendor =
2201 ((unsigned int)swab16(vendor) << 16) | swab16(device);
2202 if (ice->eeprom.subvendor == 0 ||
2203 ice->eeprom.subvendor == (unsigned int)-1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 printk(KERN_ERR "ice1724: No valid ID is found\n");
2205 return -ENXIO;
2206 }
2207 }
2208 }
2209 for (tbl = card_tables; *tbl; tbl++) {
2210 for (c = *tbl; c->subvendor; c++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002211 if (modelname && c->model &&
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002212 !strcmp(modelname, c->model)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002213 printk(KERN_INFO "ice1724: Using board model %s\n",
2214 c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 ice->eeprom.subvendor = c->subvendor;
2216 } else if (c->subvendor != ice->eeprom.subvendor)
2217 continue;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002218 if (!c->eeprom_size || !c->eeprom_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 goto found;
2220 /* if the EEPROM is given by the driver, use it */
2221 snd_printdd("using the defined eeprom..\n");
2222 ice->eeprom.version = 2;
2223 ice->eeprom.size = c->eeprom_size + 6;
2224 memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
2225 goto read_skipped;
2226 }
2227 }
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002228 printk(KERN_WARNING "ice1724: No matching model found for ID 0x%x\n",
2229 ice->eeprom.subvendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230
2231 found:
2232 ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
2233 if (ice->eeprom.size < 6)
2234 ice->eeprom.size = 32;
2235 else if (ice->eeprom.size > 32) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002236 printk(KERN_ERR "ice1724: Invalid EEPROM (size = %i)\n",
2237 ice->eeprom.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 return -EIO;
2239 }
2240 ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
2241 if (ice->eeprom.version != 2)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002242 printk(KERN_WARNING "ice1724: Invalid EEPROM version %i\n",
2243 ice->eeprom.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 size = ice->eeprom.size - 6;
2245 for (i = 0; i < size; i++)
2246 ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
2247
2248 read_skipped:
2249 ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
2250 ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
2251 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
2252
2253 return 0;
2254}
2255
2256
2257
Karsten Wiese988f0662008-04-22 12:52:15 +02002258static void __devinit snd_vt1724_chip_reset(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260 outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002261 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 outb(0, ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002263 msleep(10);
2264}
2265
2266static int __devinit snd_vt1724_chip_init(struct snd_ice1712 *ice)
2267{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
2269 outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
2270 outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
2271 outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
2272
2273 ice->gpio.write_mask = ice->eeprom.gpiomask;
2274 ice->gpio.direction = ice->eeprom.gpiodir;
2275 snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
2276 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
2277 snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
2278
2279 outb(0, ICEREG1724(ice, POWERDOWN));
2280
2281 return 0;
2282}
2283
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002284static int __devinit snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285{
2286 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002287 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Takashi Iwaida3cec32008-08-08 17:12:14 +02002289 if (snd_BUG_ON(!ice->pcm))
2290 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
2293 if (err < 0)
2294 return err;
2295
2296 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
2297 if (err < 0)
2298 return err;
2299
2300 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
2301 if (err < 0)
2302 return err;
2303 kctl->id.device = ice->pcm->device;
2304 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
2305 if (err < 0)
2306 return err;
2307 kctl->id.device = ice->pcm->device;
2308 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
2309 if (err < 0)
2310 return err;
2311 kctl->id.device = ice->pcm->device;
2312#if 0 /* use default only */
2313 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
2314 if (err < 0)
2315 return err;
2316 kctl->id.device = ice->pcm->device;
2317 ice->spdif.stream_ctl = kctl;
2318#endif
2319 return 0;
2320}
2321
2322
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002323static int __devinit snd_vt1724_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324{
2325 int err;
2326
2327 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
2328 if (err < 0)
2329 return err;
2330 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
2331 if (err < 0)
2332 return err;
2333
2334 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
2335 if (err < 0)
2336 return err;
2337 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
2338 if (err < 0)
2339 return err;
2340
2341 if (ice->num_total_dacs > 0) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002342 struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 tmp.count = ice->num_total_dacs;
2344 if (ice->vt1720 && tmp.count > 2)
2345 tmp.count = 2;
2346 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2347 if (err < 0)
2348 return err;
2349 }
2350
2351 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
2352 if (err < 0)
2353 return err;
2354
2355 return 0;
2356}
2357
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002358static int snd_vt1724_free(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359{
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002360 if (!ice->port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 goto __hw_end;
2362 /* mask all interrupts */
2363 outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
2364 outb(0xff, ICEREG1724(ice, IRQMASK));
2365 /* --- */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002366__hw_end:
Jeff Garzikf000fd82008-04-22 13:50:34 +02002367 if (ice->irq >= 0)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002368 free_irq(ice->irq, ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 pci_release_regions(ice->pci);
2370 snd_ice1712_akm4xxx_free(ice);
2371 pci_disable_device(ice->pci);
Takashi Iwai7cda8ba2008-01-18 13:36:07 +01002372 kfree(ice->spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 kfree(ice);
2374 return 0;
2375}
2376
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002377static int snd_vt1724_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002379 struct snd_ice1712 *ice = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 return snd_vt1724_free(ice);
2381}
2382
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002383static int __devinit snd_vt1724_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 struct pci_dev *pci,
2385 const char *modelname,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002386 struct snd_ice1712 **r_ice1712)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002388 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002390 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 .dev_free = snd_vt1724_dev_free,
2392 };
2393
2394 *r_ice1712 = NULL;
2395
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002396 /* enable PCI device */
2397 err = pci_enable_device(pci);
2398 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 return err;
2400
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002401 ice = kzalloc(sizeof(*ice), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 if (ice == NULL) {
2403 pci_disable_device(pci);
2404 return -ENOMEM;
2405 }
2406 ice->vt1724 = 1;
2407 spin_lock_init(&ice->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002408 mutex_init(&ice->gpio_mutex);
2409 mutex_init(&ice->open_mutex);
2410 mutex_init(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
2412 ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
2413 ice->gpio.set_data = snd_vt1724_set_gpio_data;
2414 ice->gpio.get_data = snd_vt1724_get_gpio_data;
2415 ice->card = card;
2416 ice->pci = pci;
2417 ice->irq = -1;
2418 pci_set_master(pci);
2419 snd_vt1724_proc_init(ice);
2420 synchronize_irq(pci->irq);
2421
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002422 err = pci_request_regions(pci, "ICE1724");
2423 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 kfree(ice);
2425 pci_disable_device(pci);
2426 return err;
2427 }
2428 ice->port = pci_resource_start(pci, 0);
2429 ice->profi_port = pci_resource_start(pci, 1);
2430
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002431 if (request_irq(pci->irq, snd_vt1724_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002432 IRQF_SHARED, "ICE1724", ice)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002433 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 snd_vt1724_free(ice);
2435 return -EIO;
2436 }
2437
2438 ice->irq = pci->irq;
2439
Karsten Wiese988f0662008-04-22 12:52:15 +02002440 snd_vt1724_chip_reset(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
2442 snd_vt1724_free(ice);
2443 return -EIO;
2444 }
2445 if (snd_vt1724_chip_init(ice) < 0) {
2446 snd_vt1724_free(ice);
2447 return -EIO;
2448 }
2449
Takashi Iwai6834d7c2008-11-05 17:41:23 +01002450 /* MPU_RX and TX irq masks are cleared later dynamically */
2451 outb(VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX , ICEREG1724(ice, IRQMASK));
Takashi Iwai4074ea22008-11-01 11:01:50 +01002452
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002453 /* don't handle FIFO overrun/underruns (just yet),
2454 * since they cause machine lockups
2455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
2457
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002458 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
2459 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 snd_vt1724_free(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002461 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
2463
2464 snd_card_set_dev(card, &pci->dev);
2465
2466 *r_ice1712 = ice;
2467 return 0;
2468}
2469
2470
2471/*
2472 *
2473 * Registration
2474 *
2475 */
2476
2477static int __devinit snd_vt1724_probe(struct pci_dev *pci,
2478 const struct pci_device_id *pci_id)
2479{
2480 static int dev;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002481 struct snd_card *card;
2482 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 int pcm_dev = 0, err;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002484 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486 if (dev >= SNDRV_CARDS)
2487 return -ENODEV;
2488 if (!enable[dev]) {
2489 dev++;
2490 return -ENOENT;
2491 }
2492
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002493 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2494 if (err < 0)
2495 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 strcpy(card->driver, "ICE1724");
2498 strcpy(card->shortname, "ICEnsemble ICE1724");
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002499
2500 err = snd_vt1724_create(card, pci, model[dev], &ice);
2501 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 snd_card_free(card);
2503 return err;
2504 }
2505
2506 for (tbl = card_tables; *tbl; tbl++) {
2507 for (c = *tbl; c->subvendor; c++) {
2508 if (c->subvendor == ice->eeprom.subvendor) {
2509 strcpy(card->shortname, c->name);
2510 if (c->driver) /* specific driver? */
2511 strcpy(card->driver, c->driver);
2512 if (c->chip_init) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002513 err = c->chip_init(ice);
2514 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 snd_card_free(card);
2516 return err;
2517 }
2518 }
2519 goto __found;
2520 }
2521 }
2522 }
2523 c = &no_matched;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002524__found:
2525 /*
2526 * VT1724 has separate DMAs for the analog and the SPDIF streams while
2527 * ICE1712 has only one for both (mixed up).
2528 *
2529 * Confusingly the analog PCM is named "professional" here because it
2530 * was called so in ice1712 driver, and vt1724 driver is derived from
2531 * ice1712 driver.
2532 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002533 ice->pro_rate_default = PRO_RATE_DEFAULT;
2534 if (!ice->is_spdif_master)
2535 ice->is_spdif_master = stdclock_is_spdif_master;
2536 if (!ice->get_rate)
2537 ice->get_rate = stdclock_get_rate;
2538 if (!ice->set_rate)
2539 ice->set_rate = stdclock_set_rate;
2540 if (!ice->set_mclk)
2541 ice->set_mclk = stdclock_set_mclk;
2542 if (!ice->set_spdif_clock)
2543 ice->set_spdif_clock = stdclock_set_spdif_clock;
2544 if (!ice->hw_rates)
2545 set_std_hw_rates(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002547 err = snd_vt1724_pcm_profi(ice, pcm_dev++);
2548 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 snd_card_free(card);
2550 return err;
2551 }
2552
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002553 err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
2554 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 snd_card_free(card);
2556 return err;
2557 }
2558
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002559 err = snd_vt1724_pcm_indep(ice, pcm_dev++);
2560 if (err < 0) {
2561 snd_card_free(card);
2562 return err;
2563 }
2564
2565 err = snd_vt1724_ac97_mixer(ice);
2566 if (err < 0) {
2567 snd_card_free(card);
2568 return err;
2569 }
2570
2571 err = snd_vt1724_build_controls(ice);
2572 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 snd_card_free(card);
2574 return err;
2575 }
2576
2577 if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002578 err = snd_vt1724_spdif_build_controls(ice);
2579 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 snd_card_free(card);
2581 return err;
2582 }
2583 }
2584
2585 if (c->build_controls) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002586 err = c->build_controls(ice);
2587 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 snd_card_free(card);
2589 return err;
2590 }
2591 }
2592
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002593 if (!c->no_mpu401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002595 struct snd_rawmidi *rmidi;
2596
2597 err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
2598 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 snd_card_free(card);
2600 return err;
2601 }
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002602 ice->rmidi[0] = rmidi;
2603 rmidi->private_data = ice;
2604 strcpy(rmidi->name, "ICE1724 MIDI");
2605 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2606 SNDRV_RAWMIDI_INFO_INPUT |
2607 SNDRV_RAWMIDI_INFO_DUPLEX;
2608 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
2609 &vt1724_midi_output_ops);
2610 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
2611 &vt1724_midi_input_ops);
2612
Takashi Iwai3a841d52008-04-23 17:47:28 +02002613 /* set watermarks */
2614 outb(VT1724_MPU_RX_FIFO | 0x1,
2615 ICEREG1724(ice, MPU_FIFO_WM));
2616 outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002617 /* set UART mode */
2618 outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 }
2620 }
2621
2622 sprintf(card->longname, "%s at 0x%lx, irq %i",
2623 card->shortname, ice->port, ice->irq);
2624
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002625 err = snd_card_register(card);
2626 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 snd_card_free(card);
2628 return err;
2629 }
2630 pci_set_drvdata(pci, card);
2631 dev++;
2632 return 0;
2633}
2634
2635static void __devexit snd_vt1724_remove(struct pci_dev *pci)
2636{
2637 snd_card_free(pci_get_drvdata(pci));
2638 pci_set_drvdata(pci, NULL);
2639}
2640
2641static struct pci_driver driver = {
2642 .name = "ICE1724",
2643 .id_table = snd_vt1724_ids,
2644 .probe = snd_vt1724_probe,
2645 .remove = __devexit_p(snd_vt1724_remove),
2646};
2647
2648static int __init alsa_card_ice1724_init(void)
2649{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002650 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651}
2652
2653static void __exit alsa_card_ice1724_exit(void)
2654{
2655 pci_unregister_driver(&driver);
2656}
2657
2658module_init(alsa_card_ice1724_init)
2659module_exit(alsa_card_ice1724_exit)