blob: 5c5ef7fa3e83959e37084e4dc4d702addb3ceab5 [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 Iwai32b47da2007-01-29 15:26:36 +0100858static const struct vt1724_pcm_reg vt1724_playback_pro_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 Iwai32b47da2007-01-29 15:26:36 +0100865static const struct vt1724_pcm_reg vt1724_capture_pro_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 .addr = VT1724_MT_CAPTURE_ADDR,
867 .size = VT1724_MT_CAPTURE_SIZE,
868 .count = VT1724_MT_CAPTURE_COUNT,
869 .start = VT1724_RDMA0_START,
870};
871
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400872static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
874 SNDRV_PCM_INFO_BLOCK_TRANSFER |
875 SNDRV_PCM_INFO_MMAP_VALID |
876 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
877 .formats = SNDRV_PCM_FMTBIT_S32_LE,
878 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
879 .rate_min = 8000,
880 .rate_max = 192000,
881 .channels_min = 2,
882 .channels_max = 8,
883 .buffer_bytes_max = (1UL << 21), /* 19bits dword */
884 .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
885 .period_bytes_max = (1UL << 21),
886 .periods_min = 2,
887 .periods_max = 1024,
888};
889
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400890static const struct snd_pcm_hardware snd_vt1724_spdif = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
892 SNDRV_PCM_INFO_BLOCK_TRANSFER |
893 SNDRV_PCM_INFO_MMAP_VALID |
894 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
895 .formats = SNDRV_PCM_FMTBIT_S32_LE,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200896 .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
897 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
898 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
899 SNDRV_PCM_RATE_192000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 .rate_min = 32000,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200901 .rate_max = 192000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 .channels_min = 2,
903 .channels_max = 2,
904 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
905 .period_bytes_min = 2 * 4 * 2,
906 .period_bytes_max = (1UL << 18),
907 .periods_min = 2,
908 .periods_max = 1024,
909};
910
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400911static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
913 SNDRV_PCM_INFO_BLOCK_TRANSFER |
914 SNDRV_PCM_INFO_MMAP_VALID |
915 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
916 .formats = SNDRV_PCM_FMTBIT_S32_LE,
917 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
918 .rate_min = 8000,
919 .rate_max = 192000,
920 .channels_min = 2,
921 .channels_max = 2,
922 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
923 .period_bytes_min = 2 * 4 * 2,
924 .period_bytes_max = (1UL << 18),
925 .periods_min = 2,
926 .periods_max = 1024,
927};
928
929/*
930 * set rate constraints
931 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100932static void set_std_hw_rates(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
935 /* I2S */
936 /* VT1720 doesn't support more than 96kHz */
937 if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100938 ice->hw_rates = &hw_constraints_rates_192;
939 else
940 ice->hw_rates = &hw_constraints_rates_96;
941 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* ACLINK */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100943 ice->hw_rates = &hw_constraints_rates_48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100945}
946
947static int set_rate_constraints(struct snd_ice1712 *ice,
948 struct snd_pcm_substream *substream)
949{
950 struct snd_pcm_runtime *runtime = substream->runtime;
951
952 runtime->hw.rate_min = ice->hw_rates->list[0];
953 runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
954 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
955 return snd_pcm_hw_constraint_list(runtime, 0,
956 SNDRV_PCM_HW_PARAM_RATE,
957 ice->hw_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
960/* multi-channel playback needs alignment 8x32bit regardless of the channels
961 * actually used
962 */
963#define VT1724_BUFFER_ALIGN 0x20
964
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100965static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100967 struct snd_pcm_runtime *runtime = substream->runtime;
968 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200969 int chs, num_indeps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Takashi Iwai32b47da2007-01-29 15:26:36 +0100971 runtime->private_data = (void *)&vt1724_playback_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 ice->playback_pro_substream = substream;
973 runtime->hw = snd_vt1724_playback_pro;
974 snd_pcm_set_sync(substream);
975 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
976 set_rate_constraints(ice, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +0100977 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /* calculate the currently available channels */
Takashi Iwaia6b936b2008-08-29 16:17:25 +0200979 num_indeps = ice->num_total_dacs / 2 - 1;
980 for (chs = 0; chs < num_indeps; chs++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 if (ice->pcm_reserved[chs])
982 break;
983 }
984 chs = (chs + 1) * 2;
985 runtime->hw.channels_max = chs;
986 if (chs > 2) /* channels must be even */
987 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Ingo Molnar62932df2006-01-16 16:34:20 +0100988 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
990 VT1724_BUFFER_ALIGN);
991 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
992 VT1724_BUFFER_ALIGN);
993 return 0;
994}
995
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100996static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100998 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
999 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Takashi Iwai32b47da2007-01-29 15:26:36 +01001001 runtime->private_data = (void *)&vt1724_capture_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 ice->capture_pro_substream = substream;
1003 runtime->hw = snd_vt1724_2ch_stereo;
1004 snd_pcm_set_sync(substream);
1005 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1006 set_rate_constraints(ice, substream);
1007 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1008 VT1724_BUFFER_ALIGN);
1009 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1010 VT1724_BUFFER_ALIGN);
1011 return 0;
1012}
1013
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001014static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001016 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
1018 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001019 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 ice->playback_pro_substream = NULL;
1021
1022 return 0;
1023}
1024
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001025static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001027 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
1029 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001030 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 ice->capture_pro_substream = NULL;
1032 return 0;
1033}
1034
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001035static struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 .open = snd_vt1724_playback_pro_open,
1037 .close = snd_vt1724_playback_pro_close,
1038 .ioctl = snd_pcm_lib_ioctl,
1039 .hw_params = snd_vt1724_pcm_hw_params,
1040 .hw_free = snd_vt1724_pcm_hw_free,
1041 .prepare = snd_vt1724_playback_pro_prepare,
1042 .trigger = snd_vt1724_pcm_trigger,
1043 .pointer = snd_vt1724_playback_pro_pointer,
1044};
1045
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001046static struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 .open = snd_vt1724_capture_pro_open,
1048 .close = snd_vt1724_capture_pro_close,
1049 .ioctl = snd_pcm_lib_ioctl,
1050 .hw_params = snd_vt1724_pcm_hw_params,
1051 .hw_free = snd_vt1724_pcm_hw_free,
1052 .prepare = snd_vt1724_pcm_prepare,
1053 .trigger = snd_vt1724_pcm_trigger,
1054 .pointer = snd_vt1724_pcm_pointer,
1055};
1056
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001057static int __devinit snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001059 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 int err;
1061
1062 err = snd_pcm_new(ice->card, "ICE1724", device, 1, 1, &pcm);
1063 if (err < 0)
1064 return err;
1065
1066 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
1067 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_vt1724_capture_pro_ops);
1068
1069 pcm->private_data = ice;
1070 pcm->info_flags = 0;
1071 strcpy(pcm->name, "ICE1724");
1072
1073 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001074 snd_dma_pci_data(ice->pci),
1075 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
1077 ice->pcm_pro = pcm;
1078
1079 return 0;
1080}
1081
1082
1083/*
1084 * SPDIF PCM
1085 */
1086
Takashi Iwai32b47da2007-01-29 15:26:36 +01001087static const struct vt1724_pcm_reg vt1724_playback_spdif_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 .addr = VT1724_MT_PDMA4_ADDR,
1089 .size = VT1724_MT_PDMA4_SIZE,
1090 .count = VT1724_MT_PDMA4_COUNT,
1091 .start = VT1724_PDMA4_START,
1092};
1093
Takashi Iwai32b47da2007-01-29 15:26:36 +01001094static const struct vt1724_pcm_reg vt1724_capture_spdif_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 .addr = VT1724_MT_RDMA1_ADDR,
1096 .size = VT1724_MT_RDMA1_SIZE,
1097 .count = VT1724_MT_RDMA1_COUNT,
1098 .start = VT1724_RDMA1_START,
1099};
1100
1101/* update spdif control bits; call with reg_lock */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001102static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
1104 unsigned char cbit, disabled;
1105
1106 cbit = inb(ICEREG1724(ice, SPDIF_CFG));
1107 disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
1108 if (cbit != disabled)
1109 outb(disabled, ICEREG1724(ice, SPDIF_CFG));
1110 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1111 if (cbit != disabled)
1112 outb(cbit, ICEREG1724(ice, SPDIF_CFG));
1113 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1114}
1115
1116/* update SPDIF control bits according to the given rate */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001117static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 unsigned int val, nval;
1120 unsigned long flags;
1121
1122 spin_lock_irqsave(&ice->reg_lock, flags);
1123 nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
1124 nval &= ~(7 << 12);
1125 switch (rate) {
1126 case 44100: break;
1127 case 48000: nval |= 2 << 12; break;
1128 case 32000: nval |= 3 << 12; break;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001129 case 88200: nval |= 4 << 12; break;
1130 case 96000: nval |= 5 << 12; break;
1131 case 192000: nval |= 6 << 12; break;
1132 case 176400: nval |= 7 << 12; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
1134 if (val != nval)
1135 update_spdif_bits(ice, nval);
1136 spin_unlock_irqrestore(&ice->reg_lock, flags);
1137}
1138
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001139static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001141 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001142 if (!ice->force_pdma4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 update_spdif_rate(ice, substream->runtime->rate);
1144 return snd_vt1724_pcm_prepare(substream);
1145}
1146
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001147static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001149 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1150 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Takashi Iwai32b47da2007-01-29 15:26:36 +01001152 runtime->private_data = (void *)&vt1724_playback_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 ice->playback_con_substream = substream;
1154 if (ice->force_pdma4) {
1155 runtime->hw = snd_vt1724_2ch_stereo;
1156 set_rate_constraints(ice, substream);
1157 } else
1158 runtime->hw = snd_vt1724_spdif;
1159 snd_pcm_set_sync(substream);
1160 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1161 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1162 VT1724_BUFFER_ALIGN);
1163 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1164 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001165 if (ice->spdif.ops.open)
1166 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return 0;
1168}
1169
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001170static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001172 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001175 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 ice->playback_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001177 if (ice->spdif.ops.close)
1178 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 return 0;
1181}
1182
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001183static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001185 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1186 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
Takashi Iwai32b47da2007-01-29 15:26:36 +01001188 runtime->private_data = (void *)&vt1724_capture_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 ice->capture_con_substream = substream;
1190 if (ice->force_rdma1) {
1191 runtime->hw = snd_vt1724_2ch_stereo;
1192 set_rate_constraints(ice, substream);
1193 } else
1194 runtime->hw = snd_vt1724_spdif;
1195 snd_pcm_set_sync(substream);
1196 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1197 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1198 VT1724_BUFFER_ALIGN);
1199 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1200 VT1724_BUFFER_ALIGN);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001201 if (ice->spdif.ops.open)
1202 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return 0;
1204}
1205
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001206static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001208 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001211 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 ice->capture_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001213 if (ice->spdif.ops.close)
1214 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 return 0;
1217}
1218
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001219static struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 .open = snd_vt1724_playback_spdif_open,
1221 .close = snd_vt1724_playback_spdif_close,
1222 .ioctl = snd_pcm_lib_ioctl,
1223 .hw_params = snd_vt1724_pcm_hw_params,
1224 .hw_free = snd_vt1724_pcm_hw_free,
1225 .prepare = snd_vt1724_playback_spdif_prepare,
1226 .trigger = snd_vt1724_pcm_trigger,
1227 .pointer = snd_vt1724_pcm_pointer,
1228};
1229
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001230static struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 .open = snd_vt1724_capture_spdif_open,
1232 .close = snd_vt1724_capture_spdif_close,
1233 .ioctl = snd_pcm_lib_ioctl,
1234 .hw_params = snd_vt1724_pcm_hw_params,
1235 .hw_free = snd_vt1724_pcm_hw_free,
1236 .prepare = snd_vt1724_pcm_prepare,
1237 .trigger = snd_vt1724_pcm_trigger,
1238 .pointer = snd_vt1724_pcm_pointer,
1239};
1240
1241
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001242static int __devinit snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243{
1244 char *name;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001245 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 int play, capt;
1247 int err;
1248
1249 if (ice->force_pdma4 ||
1250 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
1251 play = 1;
1252 ice->has_spdif = 1;
1253 } else
1254 play = 0;
1255 if (ice->force_rdma1 ||
1256 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
1257 capt = 1;
1258 ice->has_spdif = 1;
1259 } else
1260 capt = 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001261 if (!play && !capt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return 0; /* no spdif device */
1263
1264 if (ice->force_pdma4 || ice->force_rdma1)
1265 name = "ICE1724 Secondary";
1266 else
Alan Horstmann8eca7532009-01-05 18:30:04 +01001267 name = "ICE1724 IEC958";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
1269 if (err < 0)
1270 return err;
1271
1272 if (play)
1273 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1274 &snd_vt1724_playback_spdif_ops);
1275 if (capt)
1276 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1277 &snd_vt1724_capture_spdif_ops);
1278
1279 pcm->private_data = ice;
1280 pcm->info_flags = 0;
1281 strcpy(pcm->name, name);
1282
1283 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001284 snd_dma_pci_data(ice->pci),
1285 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 ice->pcm = pcm;
1288
1289 return 0;
1290}
1291
1292
1293/*
1294 * independent surround PCMs
1295 */
1296
Takashi Iwai32b47da2007-01-29 15:26:36 +01001297static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 {
1299 .addr = VT1724_MT_PDMA1_ADDR,
1300 .size = VT1724_MT_PDMA1_SIZE,
1301 .count = VT1724_MT_PDMA1_COUNT,
1302 .start = VT1724_PDMA1_START,
1303 },
1304 {
1305 .addr = VT1724_MT_PDMA2_ADDR,
1306 .size = VT1724_MT_PDMA2_SIZE,
1307 .count = VT1724_MT_PDMA2_COUNT,
1308 .start = VT1724_PDMA2_START,
1309 },
1310 {
1311 .addr = VT1724_MT_PDMA3_ADDR,
1312 .size = VT1724_MT_PDMA3_SIZE,
1313 .count = VT1724_MT_PDMA3_COUNT,
1314 .start = VT1724_PDMA3_START,
1315 },
1316};
1317
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001318static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001320 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 unsigned char val;
1322
1323 spin_lock_irq(&ice->reg_lock);
1324 val = 3 - substream->number;
1325 if (inb(ICEMT1724(ice, BURST)) < val)
1326 outb(val, ICEMT1724(ice, BURST));
1327 spin_unlock_irq(&ice->reg_lock);
1328 return snd_vt1724_pcm_prepare(substream);
1329}
1330
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001331static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001333 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1334 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Ingo Molnar62932df2006-01-16 16:34:20 +01001336 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 /* already used by PDMA0? */
1338 if (ice->pcm_reserved[substream->number]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001339 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return -EBUSY; /* FIXME: should handle blocking mode properly */
1341 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001342 mutex_unlock(&ice->open_mutex);
Takashi Iwai32b47da2007-01-29 15:26:36 +01001343 runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 ice->playback_con_substream_ds[substream->number] = substream;
1345 runtime->hw = snd_vt1724_2ch_stereo;
1346 snd_pcm_set_sync(substream);
1347 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1348 set_rate_constraints(ice, substream);
1349 return 0;
1350}
1351
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001352static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001354 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001357 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 ice->playback_con_substream_ds[substream->number] = NULL;
1359 ice->pcm_reserved[substream->number] = NULL;
1360
1361 return 0;
1362}
1363
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001364static struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 .open = snd_vt1724_playback_indep_open,
1366 .close = snd_vt1724_playback_indep_close,
1367 .ioctl = snd_pcm_lib_ioctl,
1368 .hw_params = snd_vt1724_pcm_hw_params,
1369 .hw_free = snd_vt1724_pcm_hw_free,
1370 .prepare = snd_vt1724_playback_indep_prepare,
1371 .trigger = snd_vt1724_pcm_trigger,
1372 .pointer = snd_vt1724_pcm_pointer,
1373};
1374
1375
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001376static int __devinit snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001378 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 int play;
1380 int err;
1381
1382 play = ice->num_total_dacs / 2 - 1;
1383 if (play <= 0)
1384 return 0;
1385
1386 err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
1387 if (err < 0)
1388 return err;
1389
1390 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1391 &snd_vt1724_playback_indep_ops);
1392
1393 pcm->private_data = ice;
1394 pcm->info_flags = 0;
1395 strcpy(pcm->name, "ICE1724 Surround PCM");
1396
1397 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001398 snd_dma_pci_data(ice->pci),
1399 64*1024, 64*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
1401 ice->pcm_ds = pcm;
1402
1403 return 0;
1404}
1405
1406
1407/*
1408 * Mixer section
1409 */
1410
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001411static int __devinit snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
1413 int err;
1414
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001415 if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001416 struct snd_ac97_bus *pbus;
1417 struct snd_ac97_template ac97;
1418 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 .write = snd_vt1724_ac97_write,
1420 .read = snd_vt1724_ac97_read,
1421 };
1422
1423 /* cold reset */
1424 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
1425 mdelay(5); /* FIXME */
1426 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
1427
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001428 err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
1429 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 return err;
1431 memset(&ac97, 0, sizeof(ac97));
1432 ac97.private_data = ice;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001433 err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
1434 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
1436 else
1437 return 0;
1438 }
1439 /* I2S mixer only */
1440 strcat(ice->card->mixername, "ICE1724 - multitrack");
1441 return 0;
1442}
1443
1444/*
1445 *
1446 */
1447
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001448static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449{
1450 return (unsigned int)ice->eeprom.data[idx] | \
1451 ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
1452 ((unsigned int)ice->eeprom.data[idx + 2] << 16);
1453}
1454
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001455static void snd_vt1724_proc_read(struct snd_info_entry *entry,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001456 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001458 struct snd_ice1712 *ice = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 unsigned int idx;
1460
1461 snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1462 snd_iprintf(buffer, "EEPROM:\n");
1463
1464 snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
1465 snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
1466 snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001467 snd_iprintf(buffer, " System Config : 0x%x\n",
1468 ice->eeprom.data[ICE_EEP2_SYSCONF]);
1469 snd_iprintf(buffer, " ACLink : 0x%x\n",
1470 ice->eeprom.data[ICE_EEP2_ACLINK]);
1471 snd_iprintf(buffer, " I2S : 0x%x\n",
1472 ice->eeprom.data[ICE_EEP2_I2S]);
1473 snd_iprintf(buffer, " S/PDIF : 0x%x\n",
1474 ice->eeprom.data[ICE_EEP2_SPDIF]);
1475 snd_iprintf(buffer, " GPIO direction : 0x%x\n",
1476 ice->eeprom.gpiodir);
1477 snd_iprintf(buffer, " GPIO mask : 0x%x\n",
1478 ice->eeprom.gpiomask);
1479 snd_iprintf(buffer, " GPIO state : 0x%x\n",
1480 ice->eeprom.gpiostate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 for (idx = 0x12; idx < ice->eeprom.size; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001482 snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
1483 idx, ice->eeprom.data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
1485 snd_iprintf(buffer, "\nRegisters:\n");
1486
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001487 snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
1488 (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 for (idx = 0x0; idx < 0x20 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001490 snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
1491 idx, inb(ice->port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 for (idx = 0x0; idx < 0x30 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001493 snd_iprintf(buffer, " MT%02x : 0x%02x\n",
1494 idx, inb(ice->profi_port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495}
1496
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001497static void __devinit snd_vt1724_proc_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001499 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001501 if (!snd_card_proc_new(ice->card, "ice1724", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02001502 snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503}
1504
1505/*
1506 *
1507 */
1508
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001509static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
1510 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
1512 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001513 uinfo->count = sizeof(struct snd_ice1712_eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 return 0;
1515}
1516
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001517static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
1518 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001520 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1523 return 0;
1524}
1525
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001526static struct snd_kcontrol_new snd_vt1724_eeprom __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1528 .name = "ICE1724 EEPROM",
1529 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1530 .info = snd_vt1724_eeprom_info,
1531 .get = snd_vt1724_eeprom_get
1532};
1533
1534/*
1535 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001536static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
1537 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
1539 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1540 uinfo->count = 1;
1541 return 0;
1542}
1543
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001544static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001546 unsigned int val, rbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548 val = diga->status[0] & 0x03; /* professional, non-audio */
1549 if (val & 0x01) {
1550 /* professional */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001551 if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
1552 IEC958_AES0_PRO_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 val |= 1U << 3;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001554 rbits = (diga->status[4] >> 3) & 0x0f;
1555 if (rbits) {
1556 switch (rbits) {
1557 case 2: val |= 5 << 12; break; /* 96k */
1558 case 3: val |= 6 << 12; break; /* 192k */
1559 case 10: val |= 4 << 12; break; /* 88.2k */
1560 case 11: val |= 7 << 12; break; /* 176.4k */
1561 }
1562 } else {
1563 switch (diga->status[0] & IEC958_AES0_PRO_FS) {
1564 case IEC958_AES0_PRO_FS_44100:
1565 break;
1566 case IEC958_AES0_PRO_FS_32000:
1567 val |= 3U << 12;
1568 break;
1569 default:
1570 val |= 2U << 12;
1571 break;
1572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
1574 } else {
1575 /* consumer */
1576 val |= diga->status[1] & 0x04; /* copyright */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001577 if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
1578 IEC958_AES0_CON_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 val |= 1U << 3;
1580 val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
1581 val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
1582 }
1583 return val;
1584}
1585
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001586static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587{
1588 memset(diga->status, 0, sizeof(diga->status));
1589 diga->status[0] = val & 0x03; /* professional, non-audio */
1590 if (val & 0x01) {
1591 /* professional */
1592 if (val & (1U << 3))
1593 diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
1594 switch ((val >> 12) & 0x7) {
1595 case 0:
1596 break;
1597 case 2:
1598 diga->status[0] |= IEC958_AES0_PRO_FS_32000;
1599 break;
1600 default:
1601 diga->status[0] |= IEC958_AES0_PRO_FS_48000;
1602 break;
1603 }
1604 } else {
1605 /* consumer */
1606 diga->status[0] |= val & (1U << 2); /* copyright */
1607 if (val & (1U << 3))
1608 diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
1609 diga->status[1] |= (val >> 4) & 0x3f; /* category */
1610 diga->status[3] |= (val >> 12) & 0x07; /* fs */
1611 }
1612}
1613
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001614static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
1615 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001617 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 unsigned int val;
1619 val = inw(ICEMT1724(ice, SPDIF_CTRL));
1620 decode_spdif_bits(&ucontrol->value.iec958, val);
1621 return 0;
1622}
1623
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001624static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
1625 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001627 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 unsigned int val, old;
1629
1630 val = encode_spdif_bits(&ucontrol->value.iec958);
1631 spin_lock_irq(&ice->reg_lock);
1632 old = inw(ICEMT1724(ice, SPDIF_CTRL));
1633 if (val != old)
1634 update_spdif_bits(ice, val);
1635 spin_unlock_irq(&ice->reg_lock);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001636 return val != old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637}
1638
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001639static struct snd_kcontrol_new snd_vt1724_spdif_default __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640{
1641 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001642 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 .info = snd_vt1724_spdif_info,
1644 .get = snd_vt1724_spdif_default_get,
1645 .put = snd_vt1724_spdif_default_put
1646};
1647
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001648static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
1649 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
1651 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1652 IEC958_AES0_PROFESSIONAL |
1653 IEC958_AES0_CON_NOT_COPYRIGHT |
1654 IEC958_AES0_CON_EMPHASIS;
1655 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1656 IEC958_AES1_CON_CATEGORY;
1657 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1658 return 0;
1659}
1660
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001661static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
1662 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663{
1664 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1665 IEC958_AES0_PROFESSIONAL |
1666 IEC958_AES0_PRO_FS |
1667 IEC958_AES0_PRO_EMPHASIS;
1668 return 0;
1669}
1670
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001671static struct snd_kcontrol_new snd_vt1724_spdif_maskc __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
1673 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001674 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001675 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 .info = snd_vt1724_spdif_info,
1677 .get = snd_vt1724_spdif_maskc_get,
1678};
1679
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001680static struct snd_kcontrol_new snd_vt1724_spdif_maskp __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001683 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001684 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 .info = snd_vt1724_spdif_info,
1686 .get = snd_vt1724_spdif_maskp_get,
1687};
1688
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001689#define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001691static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
1692 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001694 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1695 ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
1696 VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return 0;
1698}
1699
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001700static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
1701 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001703 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 unsigned char old, val;
1705
1706 spin_lock_irq(&ice->reg_lock);
1707 old = val = inb(ICEREG1724(ice, SPDIF_CFG));
1708 val &= ~VT1724_CFG_SPDIF_OUT_EN;
1709 if (ucontrol->value.integer.value[0])
1710 val |= VT1724_CFG_SPDIF_OUT_EN;
1711 if (old != val)
1712 outb(val, ICEREG1724(ice, SPDIF_CFG));
1713 spin_unlock_irq(&ice->reg_lock);
1714 return old != val;
1715}
1716
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001717static struct snd_kcontrol_new snd_vt1724_spdif_switch __devinitdata =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
1719 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1720 /* FIXME: the following conflict with IEC958 Playback Route */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001721 /* .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
1722 .name = SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 .info = snd_vt1724_spdif_sw_info,
1724 .get = snd_vt1724_spdif_sw_get,
1725 .put = snd_vt1724_spdif_sw_put
1726};
1727
1728
1729#if 0 /* NOT USED YET */
1730/*
1731 * GPIO access from extern
1732 */
1733
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001734#define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001736int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
1737 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001739 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 int shift = kcontrol->private_value & 0xff;
1741 int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 snd_ice1712_save_gpio_status(ice);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001744 ucontrol->value.integer.value[0] =
1745 (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 snd_ice1712_restore_gpio_status(ice);
1747 return 0;
1748}
1749
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001750int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
1751 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001753 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 int shift = kcontrol->private_value & 0xff;
1755 int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1756 unsigned int val, nval;
1757
1758 if (kcontrol->private_value & (1 << 31))
1759 return -EPERM;
1760 nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
1761 snd_ice1712_save_gpio_status(ice);
1762 val = snd_ice1712_gpio_read(ice);
1763 nval |= val & ~(1 << shift);
1764 if (val != nval)
1765 snd_ice1712_gpio_write(ice, nval);
1766 snd_ice1712_restore_gpio_status(ice);
1767 return val != nval;
1768}
1769#endif /* NOT USED YET */
1770
1771/*
1772 * rate
1773 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001774static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
1775 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001777 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1780 uinfo->count = 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001781 uinfo->value.enumerated.items = ice->hw_rates->count + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1783 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001784 if (uinfo->value.enumerated.item == uinfo->value.enumerated.items - 1)
1785 strcpy(uinfo->value.enumerated.name, "IEC958 Input");
1786 else
1787 sprintf(uinfo->value.enumerated.name, "%d",
1788 ice->hw_rates->list[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 return 0;
1790}
1791
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001792static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
1793 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001795 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001796 unsigned int i, rate;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001799 if (ice->is_spdif_master(ice)) {
1800 ucontrol->value.enumerated.item[0] = ice->hw_rates->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001802 rate = ice->get_rate(ice);
1803 ucontrol->value.enumerated.item[0] = 0;
1804 for (i = 0; i < ice->hw_rates->count; i++) {
1805 if (ice->hw_rates->list[i] == rate) {
1806 ucontrol->value.enumerated.item[0] = i;
1807 break;
1808 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
1811 spin_unlock_irq(&ice->reg_lock);
1812 return 0;
1813}
1814
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001815/* setting clock to external - SPDIF */
1816static void stdclock_set_spdif_clock(struct snd_ice1712 *ice)
1817{
1818 unsigned char oval;
1819 unsigned char i2s_oval;
1820 oval = inb(ICEMT1724(ice, RATE));
1821 outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
1822 /* setting 256fs */
1823 i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
1824 outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
1825}
1826
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001827static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
1828 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001830 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001831 unsigned int old_rate, new_rate;
1832 unsigned int item = ucontrol->value.enumerated.item[0];
1833 unsigned int spdif = ice->hw_rates->count;
1834
1835 if (item > spdif)
1836 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837
1838 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001839 if (ice->is_spdif_master(ice))
1840 old_rate = 0;
1841 else
1842 old_rate = ice->get_rate(ice);
1843 if (item == spdif) {
1844 /* switching to external clock via SPDIF */
1845 ice->set_spdif_clock(ice);
1846 new_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001848 /* internal on-card clock */
1849 new_rate = ice->hw_rates->list[item];
1850 ice->pro_rate_default = new_rate;
1851 spin_unlock_irq(&ice->reg_lock);
1852 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
1853 spin_lock_irq(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 spin_unlock_irq(&ice->reg_lock);
1856
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001857 /* the first reset to the SPDIF master mode? */
1858 if (old_rate != new_rate && !new_rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 /* notify akm chips as well */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001860 unsigned int i;
1861 if (ice->gpio.set_pro_rate)
1862 ice->gpio.set_pro_rate(ice, 0);
1863 for (i = 0; i < ice->akm_codecs; i++) {
1864 if (ice->akm[i].ops.set_rate_val)
1865 ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 }
1867 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001868 return old_rate != new_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869}
1870
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001871static struct snd_kcontrol_new snd_vt1724_pro_internal_clock __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1873 .name = "Multi Track Internal Clock",
1874 .info = snd_vt1724_pro_internal_clock_info,
1875 .get = snd_vt1724_pro_internal_clock_get,
1876 .put = snd_vt1724_pro_internal_clock_put
1877};
1878
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001879#define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001881static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
1882 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
1884 ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1885 return 0;
1886}
1887
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001888static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
1889 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001891 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 int change = 0, nval;
1893
1894 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1895 spin_lock_irq(&ice->reg_lock);
1896 change = PRO_RATE_LOCKED != nval;
1897 PRO_RATE_LOCKED = nval;
1898 spin_unlock_irq(&ice->reg_lock);
1899 return change;
1900}
1901
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001902static struct snd_kcontrol_new snd_vt1724_pro_rate_locking __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1904 .name = "Multi Track Rate Locking",
1905 .info = snd_vt1724_pro_rate_locking_info,
1906 .get = snd_vt1724_pro_rate_locking_get,
1907 .put = snd_vt1724_pro_rate_locking_put
1908};
1909
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001910#define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001912static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
1913 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
1915 ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
1916 return 0;
1917}
1918
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001919static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
1920 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001922 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 int change = 0, nval;
1924
1925 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1926 spin_lock_irq(&ice->reg_lock);
1927 change = PRO_RATE_RESET != nval;
1928 PRO_RATE_RESET = nval;
1929 spin_unlock_irq(&ice->reg_lock);
1930 return change;
1931}
1932
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01001933static struct snd_kcontrol_new snd_vt1724_pro_rate_reset __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1935 .name = "Multi Track Rate Reset",
1936 .info = snd_vt1724_pro_rate_reset_info,
1937 .get = snd_vt1724_pro_rate_reset_get,
1938 .put = snd_vt1724_pro_rate_reset_put
1939};
1940
1941
1942/*
1943 * routing
1944 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001945static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
1946 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 static char *texts[] = {
1949 "PCM Out", /* 0 */
1950 "H/W In 0", "H/W In 1", /* 1-2 */
1951 "IEC958 In L", "IEC958 In R", /* 3-4 */
1952 };
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1955 uinfo->count = 1;
1956 uinfo->value.enumerated.items = 5;
1957 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1958 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1959 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
1960 return 0;
1961}
1962
1963static inline int analog_route_shift(int idx)
1964{
1965 return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
1966}
1967
1968static inline int digital_route_shift(int idx)
1969{
1970 return idx * 3;
1971}
1972
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001973static int get_route_val(struct snd_ice1712 *ice, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974{
1975 unsigned long val;
1976 unsigned char eitem;
Takashi Iwai32b47da2007-01-29 15:26:36 +01001977 static const unsigned char xlate[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 0, 255, 1, 2, 255, 255, 3, 4,
1979 };
1980
1981 val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
1982 val >>= shift;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001983 val &= 7; /* we now have 3 bits per output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 eitem = xlate[val];
1985 if (eitem == 255) {
1986 snd_BUG();
1987 return 0;
1988 }
1989 return eitem;
1990}
1991
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001992static int put_route_val(struct snd_ice1712 *ice, unsigned int val, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993{
1994 unsigned int old_val, nval;
1995 int change;
Takashi Iwai32b47da2007-01-29 15:26:36 +01001996 static const unsigned char xroute[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 0, /* PCM */
1998 2, /* PSDIN0 Left */
1999 3, /* PSDIN0 Right */
2000 6, /* SPDIN Left */
2001 7, /* SPDIN Right */
2002 };
2003
2004 nval = xroute[val % 5];
2005 val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2006 val &= ~(0x07 << shift);
2007 val |= nval << shift;
2008 change = val != old_val;
2009 if (change)
2010 outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
2011 return change;
2012}
2013
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002014static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
2015 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002017 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002019 ucontrol->value.enumerated.item[0] =
2020 get_route_val(ice, analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 return 0;
2022}
2023
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002024static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
2025 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002027 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2029 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2030 analog_route_shift(idx));
2031}
2032
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002033static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
2034 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002036 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002038 ucontrol->value.enumerated.item[0] =
2039 get_route_val(ice, digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 return 0;
2041}
2042
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002043static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
2044 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002046 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2048 return put_route_val(ice, ucontrol->value.enumerated.item[0],
2049 digital_route_shift(idx));
2050}
2051
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002052static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2054 .name = "H/W Playback Route",
2055 .info = snd_vt1724_pro_route_info,
2056 .get = snd_vt1724_pro_route_analog_get,
2057 .put = snd_vt1724_pro_route_analog_put,
2058};
2059
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002060static struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002062 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 .info = snd_vt1724_pro_route_info,
2064 .get = snd_vt1724_pro_route_spdif_get,
2065 .put = snd_vt1724_pro_route_spdif_put,
2066 .count = 2,
2067};
2068
2069
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002070static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
2071 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2074 uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
2075 uinfo->value.integer.min = 0;
2076 uinfo->value.integer.max = 255;
2077 return 0;
2078}
2079
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002080static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
2081 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002083 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 int idx;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 spin_lock_irq(&ice->reg_lock);
2087 for (idx = 0; idx < 22; idx++) {
2088 outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002089 ucontrol->value.integer.value[idx] =
2090 inb(ICEMT1724(ice, MONITOR_PEAKDATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 }
2092 spin_unlock_irq(&ice->reg_lock);
2093 return 0;
2094}
2095
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002096static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2098 .name = "Multi Track Peak",
2099 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2100 .info = snd_vt1724_pro_peak_info,
2101 .get = snd_vt1724_pro_peak_get
2102};
2103
2104/*
2105 *
2106 */
2107
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002108static struct snd_ice1712_card_info no_matched __devinitdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002110static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 snd_vt1724_revo_cards,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002112 snd_vt1724_amp_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 snd_vt1724_aureon_cards,
2114 snd_vt1720_mobo_cards,
2115 snd_vt1720_pontis_cards,
Julian Scheel6b8d6e52008-01-16 19:50:00 +01002116 snd_vt1724_prodigy_hifi_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 snd_vt1724_prodigy192_cards,
2118 snd_vt1724_juli_cards,
2119 snd_vt1724_phase_cards,
Clement Guedezf6cdab52007-01-08 10:48:41 +01002120 snd_vt1724_wtm_cards,
Shin-ya Okadaf31639b2007-10-23 15:08:18 +02002121 snd_vt1724_se_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 NULL,
2123};
2124
2125
2126/*
2127 */
2128
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002129static void wait_i2c_busy(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 int t = 0x10000;
2132 while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
2133 ;
2134 if (t == -1)
2135 printk(KERN_ERR "ice1724: i2c busy timeout\n");
2136}
2137
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002138unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
2139 unsigned char dev, unsigned char addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
2141 unsigned char val;
2142
Ingo Molnar62932df2006-01-16 16:34:20 +01002143 mutex_lock(&ice->i2c_mutex);
Pavel Hofmanacec30f2007-12-03 12:37:17 +01002144 wait_i2c_busy(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2146 outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2147 wait_i2c_busy(ice);
2148 val = inb(ICEREG1724(ice, I2C_DATA));
Ingo Molnar62932df2006-01-16 16:34:20 +01002149 mutex_unlock(&ice->i2c_mutex);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002150 /*
2151 printk(KERN_DEBUG "i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val);
2152 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return val;
2154}
2155
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002156void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
2157 unsigned char dev, unsigned char addr, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158{
Ingo Molnar62932df2006-01-16 16:34:20 +01002159 mutex_lock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 wait_i2c_busy(ice);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002161 /*
2162 printk(KERN_DEBUG "i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data);
2163 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2165 outb(data, ICEREG1724(ice, I2C_DATA));
2166 outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2167 wait_i2c_busy(ice);
Ingo Molnar62932df2006-01-16 16:34:20 +01002168 mutex_unlock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002171static int __devinit snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
2172 const char *modelname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173{
2174 const int dev = 0xa0; /* EEPROM device address */
2175 unsigned int i, size;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002176 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002178 if (!modelname || !*modelname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 ice->eeprom.subvendor = 0;
2180 if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
2181 ice->eeprom.subvendor =
2182 (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002183 (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
2184 (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002186 if (ice->eeprom.subvendor == 0 ||
2187 ice->eeprom.subvendor == (unsigned int)-1) {
2188 /* invalid subvendor from EEPROM, try the PCI
2189 * subststem ID instead
2190 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 u16 vendor, device;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002192 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
2193 &vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002195 ice->eeprom.subvendor =
2196 ((unsigned int)swab16(vendor) << 16) | swab16(device);
2197 if (ice->eeprom.subvendor == 0 ||
2198 ice->eeprom.subvendor == (unsigned int)-1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 printk(KERN_ERR "ice1724: No valid ID is found\n");
2200 return -ENXIO;
2201 }
2202 }
2203 }
2204 for (tbl = card_tables; *tbl; tbl++) {
2205 for (c = *tbl; c->subvendor; c++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002206 if (modelname && c->model &&
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002207 !strcmp(modelname, c->model)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002208 printk(KERN_INFO "ice1724: Using board model %s\n",
2209 c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 ice->eeprom.subvendor = c->subvendor;
2211 } else if (c->subvendor != ice->eeprom.subvendor)
2212 continue;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002213 if (!c->eeprom_size || !c->eeprom_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 goto found;
2215 /* if the EEPROM is given by the driver, use it */
2216 snd_printdd("using the defined eeprom..\n");
2217 ice->eeprom.version = 2;
2218 ice->eeprom.size = c->eeprom_size + 6;
2219 memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
2220 goto read_skipped;
2221 }
2222 }
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002223 printk(KERN_WARNING "ice1724: No matching model found for ID 0x%x\n",
2224 ice->eeprom.subvendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
2226 found:
2227 ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
2228 if (ice->eeprom.size < 6)
2229 ice->eeprom.size = 32;
2230 else if (ice->eeprom.size > 32) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002231 printk(KERN_ERR "ice1724: Invalid EEPROM (size = %i)\n",
2232 ice->eeprom.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return -EIO;
2234 }
2235 ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
2236 if (ice->eeprom.version != 2)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002237 printk(KERN_WARNING "ice1724: Invalid EEPROM version %i\n",
2238 ice->eeprom.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 size = ice->eeprom.size - 6;
2240 for (i = 0; i < size; i++)
2241 ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
2242
2243 read_skipped:
2244 ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
2245 ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
2246 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
2247
2248 return 0;
2249}
2250
2251
2252
Karsten Wiese988f0662008-04-22 12:52:15 +02002253static void __devinit snd_vt1724_chip_reset(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
2255 outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002256 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 outb(0, ICEREG1724(ice, CONTROL));
Karsten Wiese988f0662008-04-22 12:52:15 +02002258 msleep(10);
2259}
2260
2261static int __devinit snd_vt1724_chip_init(struct snd_ice1712 *ice)
2262{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
2264 outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
2265 outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
2266 outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
2267
2268 ice->gpio.write_mask = ice->eeprom.gpiomask;
2269 ice->gpio.direction = ice->eeprom.gpiodir;
2270 snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
2271 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
2272 snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
2273
2274 outb(0, ICEREG1724(ice, POWERDOWN));
2275
2276 return 0;
2277}
2278
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002279static int __devinit snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
2281 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002282 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Takashi Iwaida3cec32008-08-08 17:12:14 +02002284 if (snd_BUG_ON(!ice->pcm))
2285 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
2288 if (err < 0)
2289 return err;
2290
2291 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
2292 if (err < 0)
2293 return err;
2294
2295 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
2296 if (err < 0)
2297 return err;
2298 kctl->id.device = ice->pcm->device;
2299 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
2300 if (err < 0)
2301 return err;
2302 kctl->id.device = ice->pcm->device;
2303 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
2304 if (err < 0)
2305 return err;
2306 kctl->id.device = ice->pcm->device;
2307#if 0 /* use default only */
2308 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
2309 if (err < 0)
2310 return err;
2311 kctl->id.device = ice->pcm->device;
2312 ice->spdif.stream_ctl = kctl;
2313#endif
2314 return 0;
2315}
2316
2317
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002318static int __devinit snd_vt1724_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319{
2320 int err;
2321
2322 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
2323 if (err < 0)
2324 return err;
2325 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
2326 if (err < 0)
2327 return err;
2328
2329 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
2330 if (err < 0)
2331 return err;
2332 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
2333 if (err < 0)
2334 return err;
2335
2336 if (ice->num_total_dacs > 0) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002337 struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 tmp.count = ice->num_total_dacs;
2339 if (ice->vt1720 && tmp.count > 2)
2340 tmp.count = 2;
2341 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2342 if (err < 0)
2343 return err;
2344 }
2345
2346 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
2347 if (err < 0)
2348 return err;
2349
2350 return 0;
2351}
2352
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002353static int snd_vt1724_free(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354{
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002355 if (!ice->port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 goto __hw_end;
2357 /* mask all interrupts */
2358 outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
2359 outb(0xff, ICEREG1724(ice, IRQMASK));
2360 /* --- */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002361__hw_end:
Jeff Garzikf000fd82008-04-22 13:50:34 +02002362 if (ice->irq >= 0)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002363 free_irq(ice->irq, ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 pci_release_regions(ice->pci);
2365 snd_ice1712_akm4xxx_free(ice);
2366 pci_disable_device(ice->pci);
Takashi Iwai7cda8ba2008-01-18 13:36:07 +01002367 kfree(ice->spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 kfree(ice);
2369 return 0;
2370}
2371
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002372static int snd_vt1724_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002374 struct snd_ice1712 *ice = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 return snd_vt1724_free(ice);
2376}
2377
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002378static int __devinit snd_vt1724_create(struct snd_card *card,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 struct pci_dev *pci,
2380 const char *modelname,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002381 struct snd_ice1712 **r_ice1712)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002383 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002385 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 .dev_free = snd_vt1724_dev_free,
2387 };
2388
2389 *r_ice1712 = NULL;
2390
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002391 /* enable PCI device */
2392 err = pci_enable_device(pci);
2393 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 return err;
2395
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002396 ice = kzalloc(sizeof(*ice), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 if (ice == NULL) {
2398 pci_disable_device(pci);
2399 return -ENOMEM;
2400 }
2401 ice->vt1724 = 1;
2402 spin_lock_init(&ice->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002403 mutex_init(&ice->gpio_mutex);
2404 mutex_init(&ice->open_mutex);
2405 mutex_init(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
2407 ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
2408 ice->gpio.set_data = snd_vt1724_set_gpio_data;
2409 ice->gpio.get_data = snd_vt1724_get_gpio_data;
2410 ice->card = card;
2411 ice->pci = pci;
2412 ice->irq = -1;
2413 pci_set_master(pci);
2414 snd_vt1724_proc_init(ice);
2415 synchronize_irq(pci->irq);
2416
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002417 err = pci_request_regions(pci, "ICE1724");
2418 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 kfree(ice);
2420 pci_disable_device(pci);
2421 return err;
2422 }
2423 ice->port = pci_resource_start(pci, 0);
2424 ice->profi_port = pci_resource_start(pci, 1);
2425
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002426 if (request_irq(pci->irq, snd_vt1724_interrupt,
Takashi Iwai437a5a42006-11-21 12:14:23 +01002427 IRQF_SHARED, "ICE1724", ice)) {
Takashi Iwai99b359b2005-10-20 18:26:44 +02002428 snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 snd_vt1724_free(ice);
2430 return -EIO;
2431 }
2432
2433 ice->irq = pci->irq;
2434
Karsten Wiese988f0662008-04-22 12:52:15 +02002435 snd_vt1724_chip_reset(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
2437 snd_vt1724_free(ice);
2438 return -EIO;
2439 }
2440 if (snd_vt1724_chip_init(ice) < 0) {
2441 snd_vt1724_free(ice);
2442 return -EIO;
2443 }
2444
Takashi Iwai6834d7c2008-11-05 17:41:23 +01002445 /* MPU_RX and TX irq masks are cleared later dynamically */
2446 outb(VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX , ICEREG1724(ice, IRQMASK));
Takashi Iwai4074ea22008-11-01 11:01:50 +01002447
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002448 /* don't handle FIFO overrun/underruns (just yet),
2449 * since they cause machine lockups
2450 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
2452
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002453 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
2454 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 snd_vt1724_free(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002456 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 }
2458
2459 snd_card_set_dev(card, &pci->dev);
2460
2461 *r_ice1712 = ice;
2462 return 0;
2463}
2464
2465
2466/*
2467 *
2468 * Registration
2469 *
2470 */
2471
2472static int __devinit snd_vt1724_probe(struct pci_dev *pci,
2473 const struct pci_device_id *pci_id)
2474{
2475 static int dev;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002476 struct snd_card *card;
2477 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 int pcm_dev = 0, err;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002479 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481 if (dev >= SNDRV_CARDS)
2482 return -ENODEV;
2483 if (!enable[dev]) {
2484 dev++;
2485 return -ENOENT;
2486 }
2487
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002488 err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
2489 if (err < 0)
2490 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
2492 strcpy(card->driver, "ICE1724");
2493 strcpy(card->shortname, "ICEnsemble ICE1724");
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002494
2495 err = snd_vt1724_create(card, pci, model[dev], &ice);
2496 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 snd_card_free(card);
2498 return err;
2499 }
2500
2501 for (tbl = card_tables; *tbl; tbl++) {
2502 for (c = *tbl; c->subvendor; c++) {
2503 if (c->subvendor == ice->eeprom.subvendor) {
2504 strcpy(card->shortname, c->name);
2505 if (c->driver) /* specific driver? */
2506 strcpy(card->driver, c->driver);
2507 if (c->chip_init) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002508 err = c->chip_init(ice);
2509 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 snd_card_free(card);
2511 return err;
2512 }
2513 }
2514 goto __found;
2515 }
2516 }
2517 }
2518 c = &no_matched;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002519__found:
2520 /*
2521 * VT1724 has separate DMAs for the analog and the SPDIF streams while
2522 * ICE1712 has only one for both (mixed up).
2523 *
2524 * Confusingly the analog PCM is named "professional" here because it
2525 * was called so in ice1712 driver, and vt1724 driver is derived from
2526 * ice1712 driver.
2527 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002528 ice->pro_rate_default = PRO_RATE_DEFAULT;
2529 if (!ice->is_spdif_master)
2530 ice->is_spdif_master = stdclock_is_spdif_master;
2531 if (!ice->get_rate)
2532 ice->get_rate = stdclock_get_rate;
2533 if (!ice->set_rate)
2534 ice->set_rate = stdclock_set_rate;
2535 if (!ice->set_mclk)
2536 ice->set_mclk = stdclock_set_mclk;
2537 if (!ice->set_spdif_clock)
2538 ice->set_spdif_clock = stdclock_set_spdif_clock;
2539 if (!ice->hw_rates)
2540 set_std_hw_rates(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002542 err = snd_vt1724_pcm_profi(ice, pcm_dev++);
2543 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 snd_card_free(card);
2545 return err;
2546 }
2547
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002548 err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
2549 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 snd_card_free(card);
2551 return err;
2552 }
2553
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002554 err = snd_vt1724_pcm_indep(ice, pcm_dev++);
2555 if (err < 0) {
2556 snd_card_free(card);
2557 return err;
2558 }
2559
2560 err = snd_vt1724_ac97_mixer(ice);
2561 if (err < 0) {
2562 snd_card_free(card);
2563 return err;
2564 }
2565
2566 err = snd_vt1724_build_controls(ice);
2567 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 snd_card_free(card);
2569 return err;
2570 }
2571
2572 if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002573 err = snd_vt1724_spdif_build_controls(ice);
2574 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 snd_card_free(card);
2576 return err;
2577 }
2578 }
2579
2580 if (c->build_controls) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002581 err = c->build_controls(ice);
2582 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 snd_card_free(card);
2584 return err;
2585 }
2586 }
2587
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002588 if (!c->no_mpu401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002590 struct snd_rawmidi *rmidi;
2591
2592 err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
2593 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 snd_card_free(card);
2595 return err;
2596 }
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002597 ice->rmidi[0] = rmidi;
2598 rmidi->private_data = ice;
2599 strcpy(rmidi->name, "ICE1724 MIDI");
2600 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2601 SNDRV_RAWMIDI_INFO_INPUT |
2602 SNDRV_RAWMIDI_INFO_DUPLEX;
2603 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
2604 &vt1724_midi_output_ops);
2605 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
2606 &vt1724_midi_input_ops);
2607
Takashi Iwai3a841d52008-04-23 17:47:28 +02002608 /* set watermarks */
2609 outb(VT1724_MPU_RX_FIFO | 0x1,
2610 ICEREG1724(ice, MPU_FIFO_WM));
2611 outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002612 /* set UART mode */
2613 outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 }
2615 }
2616
2617 sprintf(card->longname, "%s at 0x%lx, irq %i",
2618 card->shortname, ice->port, ice->irq);
2619
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002620 err = snd_card_register(card);
2621 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 snd_card_free(card);
2623 return err;
2624 }
2625 pci_set_drvdata(pci, card);
2626 dev++;
2627 return 0;
2628}
2629
2630static void __devexit snd_vt1724_remove(struct pci_dev *pci)
2631{
2632 snd_card_free(pci_get_drvdata(pci));
2633 pci_set_drvdata(pci, NULL);
2634}
2635
2636static struct pci_driver driver = {
2637 .name = "ICE1724",
2638 .id_table = snd_vt1724_ids,
2639 .probe = snd_vt1724_probe,
2640 .remove = __devexit_p(snd_vt1724_remove),
2641};
2642
2643static int __init alsa_card_ice1724_init(void)
2644{
Takashi Iwai01d25d42005-04-11 16:58:24 +02002645 return pci_register_driver(&driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
2647
2648static void __exit alsa_card_ice1724_exit(void)
2649{
2650 pci_unregister_driver(&driver);
2651}
2652
2653module_init(alsa_card_ice1724_init)
2654module_exit(alsa_card_ice1724_exit)