blob: 0b22c00642bba475629007a7920426cbb1b84fbe [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
26#include <linux/interrupt.h>
27#include <linux/init.h>
28#include <linux/pci.h>
29#include <linux/slab.h>
Paul Gortmaker65a77212011-07-15 13:13:37 -040030#include <linux/module.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010031#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <sound/core.h>
33#include <sound/info.h>
Clemens Ladischaea3bfb2008-05-20 14:22:44 +020034#include <sound/rawmidi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <sound/initval.h>
36
37#include <sound/asoundef.h>
38
39#include "ice1712.h"
40#include "envy24ht.h"
41
42/* lowlevel routines */
43#include "amp.h"
44#include "revo.h"
45#include "aureon.h"
46#include "vt1720_mobo.h"
47#include "pontis.h"
48#include "prodigy192.h"
Julian Scheel6b8d6e52008-01-16 19:50:00 +010049#include "prodigy_hifi.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include "juli.h"
Takashi Iwai72cbfd42009-05-06 17:33:19 +020051#include "maya44.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#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"
Pavel Hofman6ef80702009-09-16 22:25:41 +020055#include "quartet.h"
Ondrej Zary77b0b252012-10-14 21:09:22 +020056#include "psc724.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Jaroslav Kyselac1017a42007-10-15 09:50:19 +020058MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds1da177e2005-04-16 15:20:36 -070059MODULE_DESCRIPTION("VIA ICEnsemble ICE1724/1720 (Envy24HT/PT)");
60MODULE_LICENSE("GPL");
61MODULE_SUPPORTED_DEVICE("{"
62 REVO_DEVICE_DESC
63 AMP_AUDIO2000_DEVICE_DESC
64 AUREON_DEVICE_DESC
65 VT1720_MOBO_DEVICE_DESC
66 PONTIS_DEVICE_DESC
67 PRODIGY192_DEVICE_DESC
Julian Scheel6b8d6e52008-01-16 19:50:00 +010068 PRODIGY_HIFI_DEVICE_DESC
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 JULI_DEVICE_DESC
Takashi Iwai72cbfd42009-05-06 17:33:19 +020070 MAYA44_DEVICE_DESC
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 PHASE_DEVICE_DESC
Clement Guedezf6cdab52007-01-08 10:48:41 +010072 WTM_DEVICE_DESC
Shin-ya Okadaf31639b2007-10-23 15:08:18 +020073 SE_DEVICE_DESC
Pavel Hofman6ef80702009-09-16 22:25:41 +020074 QTET_DEVICE_DESC
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 "{VIA,VT1720},"
76 "{VIA,VT1724},"
77 "{ICEnsemble,Generic ICE1724},"
78 "{ICEnsemble,Generic Envy24HT}"
79 "{ICEnsemble,Generic Envy24PT}}");
80
81static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
82static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
Rusty Russella67ff6a2011-12-15 13:49:36 +103083static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
Linus Torvalds1da177e2005-04-16 15:20:36 -070084static char *model[SNDRV_CARDS];
85
86module_param_array(index, int, NULL, 0444);
87MODULE_PARM_DESC(index, "Index value for ICE1724 soundcard.");
88module_param_array(id, charp, NULL, 0444);
89MODULE_PARM_DESC(id, "ID string for ICE1724 soundcard.");
90module_param_array(enable, bool, NULL, 0444);
91MODULE_PARM_DESC(enable, "Enable ICE1724 soundcard.");
92module_param_array(model, charp, NULL, 0444);
93MODULE_PARM_DESC(model, "Use the given board model.");
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/* Both VT1720 and VT1724 have the same PCI IDs */
Benoit Taine9baa3c32014-08-08 15:56:03 +020097static const struct pci_device_id snd_vt1724_ids[] = {
Joe Perches28d27aa2009-06-24 22:13:35 -070098 { PCI_VDEVICE(ICE, PCI_DEVICE_ID_VT1724), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 { 0, }
100};
101
102MODULE_DEVICE_TABLE(pci, snd_vt1724_ids);
103
104
105static int PRO_RATE_LOCKED;
106static int PRO_RATE_RESET = 1;
107static unsigned int PRO_RATE_DEFAULT = 44100;
108
Takashi Iwaia2af0502012-10-17 09:21:48 +0200109static const char * const ext_clock_names[1] = { "IEC958 In" };
Pavel Hofman1ff97cb2009-09-16 22:25:40 +0200110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/*
112 * Basic I/O
113 */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400114
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100115/*
116 * default rates, default clock routines
117 */
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119/* check whether the clock mode is spdif-in */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100120static inline int stdclock_is_spdif_master(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 return (inb(ICEMT1724(ice, RATE)) & VT1724_SPDIF_MASTER) ? 1 : 0;
123}
124
Pavel Hofman6796d5a2009-09-16 22:25:39 +0200125/*
126 * locking rate makes sense only for internal clock mode
127 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100128static inline int is_pro_rate_locked(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129{
Pavel Hofman6796d5a2009-09-16 22:25:39 +0200130 return (!ice->is_spdif_master(ice)) && PRO_RATE_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131}
132
133/*
134 * ac97 section
135 */
136
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100137static unsigned char snd_vt1724_ac97_ready(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
139 unsigned char old_cmd;
140 int tm;
141 for (tm = 0; tm < 0x10000; tm++) {
142 old_cmd = inb(ICEMT1724(ice, AC97_CMD));
143 if (old_cmd & (VT1724_AC97_WRITE | VT1724_AC97_READ))
144 continue;
145 if (!(old_cmd & VT1724_AC97_READY))
146 continue;
147 return old_cmd;
148 }
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100149 dev_dbg(ice->card->dev, "snd_vt1724_ac97_ready: timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 return old_cmd;
151}
152
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100153static int snd_vt1724_ac97_wait_bit(struct snd_ice1712 *ice, unsigned char bit)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154{
155 int tm;
156 for (tm = 0; tm < 0x10000; tm++)
157 if ((inb(ICEMT1724(ice, AC97_CMD)) & bit) == 0)
158 return 0;
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100159 dev_dbg(ice->card->dev, "snd_vt1724_ac97_wait_bit: timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 return -EIO;
161}
162
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100163static void snd_vt1724_ac97_write(struct snd_ac97 *ac97,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 unsigned short reg,
165 unsigned short val)
166{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100167 struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 unsigned char old_cmd;
169
170 old_cmd = snd_vt1724_ac97_ready(ice);
171 old_cmd &= ~VT1724_AC97_ID_MASK;
172 old_cmd |= ac97->num;
173 outb(reg, ICEMT1724(ice, AC97_INDEX));
174 outw(val, ICEMT1724(ice, AC97_DATA));
175 outb(old_cmd | VT1724_AC97_WRITE, ICEMT1724(ice, AC97_CMD));
176 snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_WRITE);
177}
178
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100179static unsigned short snd_vt1724_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100181 struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 unsigned char old_cmd;
183
184 old_cmd = snd_vt1724_ac97_ready(ice);
185 old_cmd &= ~VT1724_AC97_ID_MASK;
186 old_cmd |= ac97->num;
187 outb(reg, ICEMT1724(ice, AC97_INDEX));
188 outb(old_cmd | VT1724_AC97_READ, ICEMT1724(ice, AC97_CMD));
189 if (snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_READ) < 0)
190 return ~0;
191 return inw(ICEMT1724(ice, AC97_DATA));
192}
193
194
195/*
196 * GPIO operations
197 */
198
199/* set gpio direction 0 = read, 1 = write */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100200static void snd_vt1724_set_gpio_dir(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 outl(data, ICEREG1724(ice, GPIO_DIRECTION));
203 inw(ICEREG1724(ice, GPIO_DIRECTION)); /* dummy read for pci-posting */
204}
205
Pavel Hofman49470302009-09-16 22:25:38 +0200206/* get gpio direction 0 = read, 1 = write */
207static unsigned int snd_vt1724_get_gpio_dir(struct snd_ice1712 *ice)
208{
209 return inl(ICEREG1724(ice, GPIO_DIRECTION));
210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/* set the gpio mask (0 = writable) */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100213static void snd_vt1724_set_gpio_mask(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
215 outw(data, ICEREG1724(ice, GPIO_WRITE_MASK));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400216 if (!ice->vt1720) /* VT1720 supports only 16 GPIO bits */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 outb((data >> 16) & 0xff, ICEREG1724(ice, GPIO_WRITE_MASK_22));
218 inw(ICEREG1724(ice, GPIO_WRITE_MASK)); /* dummy read for pci-posting */
219}
220
Pavel Hofman49470302009-09-16 22:25:38 +0200221static unsigned int snd_vt1724_get_gpio_mask(struct snd_ice1712 *ice)
222{
223 unsigned int mask;
224 if (!ice->vt1720)
225 mask = (unsigned int)inb(ICEREG1724(ice, GPIO_WRITE_MASK_22));
226 else
227 mask = 0;
228 mask = (mask << 16) | inw(ICEREG1724(ice, GPIO_WRITE_MASK));
229 return mask;
230}
231
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100232static void snd_vt1724_set_gpio_data(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 outw(data, ICEREG1724(ice, GPIO_DATA));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400235 if (!ice->vt1720)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 outb(data >> 16, ICEREG1724(ice, GPIO_DATA_22));
237 inw(ICEREG1724(ice, GPIO_DATA)); /* dummy read for pci-posting */
238}
239
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100240static unsigned int snd_vt1724_get_gpio_data(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 unsigned int data;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400243 if (!ice->vt1720)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 data = (unsigned int)inb(ICEREG1724(ice, GPIO_DATA_22));
245 else
246 data = 0;
247 data = (data << 16) | inw(ICEREG1724(ice, GPIO_DATA));
248 return data;
249}
250
251/*
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200252 * MIDI
Takashi Iwai3a841d52008-04-23 17:47:28 +0200253 */
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200254
255static void vt1724_midi_clear_rx(struct snd_ice1712 *ice)
Takashi Iwai3a841d52008-04-23 17:47:28 +0200256{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200257 unsigned int count;
258
259 for (count = inb(ICEREG1724(ice, MPU_RXFIFO)); count > 0; --count)
260 inb(ICEREG1724(ice, MPU_DATA));
Takashi Iwai3a841d52008-04-23 17:47:28 +0200261}
262
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200263static inline struct snd_rawmidi_substream *
264get_rawmidi_substream(struct snd_ice1712 *ice, unsigned int stream)
Takashi Iwai3a841d52008-04-23 17:47:28 +0200265{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200266 return list_first_entry(&ice->rmidi[0]->streams[stream].substreams,
267 struct snd_rawmidi_substream, list);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200268}
269
Takashi Iwaie683ec42008-11-12 16:42:44 +0100270static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable);
271
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200272static void vt1724_midi_write(struct snd_ice1712 *ice)
273{
274 struct snd_rawmidi_substream *s;
275 int count, i;
276 u8 buffer[32];
277
278 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_OUTPUT);
279 count = 31 - inb(ICEREG1724(ice, MPU_TXFIFO));
280 if (count > 0) {
281 count = snd_rawmidi_transmit(s, buffer, count);
282 for (i = 0; i < count; ++i)
283 outb(buffer[i], ICEREG1724(ice, MPU_DATA));
284 }
Takashi Iwaie683ec42008-11-12 16:42:44 +0100285 /* mask irq when all bytes have been transmitted.
286 * enabled again in output_trigger when the new data comes in.
287 */
288 enable_midi_irq(ice, VT1724_IRQ_MPU_TX,
289 !snd_rawmidi_transmit_empty(s));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200290}
291
292static void vt1724_midi_read(struct snd_ice1712 *ice)
293{
294 struct snd_rawmidi_substream *s;
295 int count, i;
296 u8 buffer[32];
297
298 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_INPUT);
299 count = inb(ICEREG1724(ice, MPU_RXFIFO));
300 if (count > 0) {
301 count = min(count, 32);
302 for (i = 0; i < count; ++i)
303 buffer[i] = inb(ICEREG1724(ice, MPU_DATA));
304 snd_rawmidi_receive(s, buffer, count);
305 }
306}
307
Takashi Iwaie683ec42008-11-12 16:42:44 +0100308/* call with ice->reg_lock */
309static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable)
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200310{
Takashi Iwaie683ec42008-11-12 16:42:44 +0100311 u8 mask = inb(ICEREG1724(ice, IRQMASK));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200312 if (enable)
313 mask &= ~flag;
314 else
315 mask |= flag;
316 outb(mask, ICEREG1724(ice, IRQMASK));
Takashi Iwaie683ec42008-11-12 16:42:44 +0100317}
318
319static void vt1724_enable_midi_irq(struct snd_rawmidi_substream *substream,
320 u8 flag, int enable)
321{
322 struct snd_ice1712 *ice = substream->rmidi->private_data;
323
324 spin_lock_irq(&ice->reg_lock);
325 enable_midi_irq(ice, flag, enable);
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200326 spin_unlock_irq(&ice->reg_lock);
327}
328
329static int vt1724_midi_output_open(struct snd_rawmidi_substream *s)
330{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200331 return 0;
332}
333
334static int vt1724_midi_output_close(struct snd_rawmidi_substream *s)
335{
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200336 return 0;
337}
338
339static void vt1724_midi_output_trigger(struct snd_rawmidi_substream *s, int up)
340{
341 struct snd_ice1712 *ice = s->rmidi->private_data;
342 unsigned long flags;
343
344 spin_lock_irqsave(&ice->reg_lock, flags);
345 if (up) {
346 ice->midi_output = 1;
347 vt1724_midi_write(ice);
348 } else {
349 ice->midi_output = 0;
Takashi Iwaie683ec42008-11-12 16:42:44 +0100350 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200351 }
352 spin_unlock_irqrestore(&ice->reg_lock, flags);
353}
354
355static void vt1724_midi_output_drain(struct snd_rawmidi_substream *s)
356{
357 struct snd_ice1712 *ice = s->rmidi->private_data;
358 unsigned long timeout;
359
Takashi Iwaie683ec42008-11-12 16:42:44 +0100360 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 0);
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200361 /* 32 bytes should be transmitted in less than about 12 ms */
362 timeout = jiffies + msecs_to_jiffies(15);
363 do {
364 if (inb(ICEREG1724(ice, MPU_CTRL)) & VT1724_MPU_TX_EMPTY)
365 break;
366 schedule_timeout_uninterruptible(1);
367 } while (time_after(timeout, jiffies));
368}
369
370static struct snd_rawmidi_ops vt1724_midi_output_ops = {
371 .open = vt1724_midi_output_open,
372 .close = vt1724_midi_output_close,
373 .trigger = vt1724_midi_output_trigger,
374 .drain = vt1724_midi_output_drain,
375};
376
377static int vt1724_midi_input_open(struct snd_rawmidi_substream *s)
378{
379 vt1724_midi_clear_rx(s->rmidi->private_data);
380 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 1);
381 return 0;
382}
383
384static int vt1724_midi_input_close(struct snd_rawmidi_substream *s)
385{
386 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 0);
387 return 0;
388}
389
390static void vt1724_midi_input_trigger(struct snd_rawmidi_substream *s, int up)
391{
392 struct snd_ice1712 *ice = s->rmidi->private_data;
393 unsigned long flags;
394
395 spin_lock_irqsave(&ice->reg_lock, flags);
396 if (up) {
397 ice->midi_input = 1;
398 vt1724_midi_read(ice);
399 } else {
400 ice->midi_input = 0;
401 }
402 spin_unlock_irqrestore(&ice->reg_lock, flags);
403}
404
405static struct snd_rawmidi_ops vt1724_midi_input_ops = {
406 .open = vt1724_midi_input_open,
407 .close = vt1724_midi_input_close,
408 .trigger = vt1724_midi_input_trigger,
409};
410
Takashi Iwai3a841d52008-04-23 17:47:28 +0200411
412/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 * Interrupt handler
414 */
415
David Howells7d12e782006-10-05 14:55:46 +0100416static irqreturn_t snd_vt1724_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100418 struct snd_ice1712 *ice = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 unsigned char status;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200420 unsigned char status_mask =
421 VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX | VT1724_IRQ_MTPCM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 int handled = 0;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200423 int timeout = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
425 while (1) {
426 status = inb(ICEREG1724(ice, IRQSTAT));
Takashi Iwai3a841d52008-04-23 17:47:28 +0200427 status &= status_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (status == 0)
429 break;
Takashi Iwaie683ec42008-11-12 16:42:44 +0100430 spin_lock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200431 if (++timeout > 10) {
Takashi Iwai10832062008-08-11 10:18:39 +0200432 status = inb(ICEREG1724(ice, IRQSTAT));
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100433 dev_err(ice->card->dev,
434 "Too long irq loop, status = 0x%x\n", status);
Takashi Iwai10832062008-08-11 10:18:39 +0200435 if (status & VT1724_IRQ_MPU_TX) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100436 dev_err(ice->card->dev, "Disabling MPU_TX\n");
Takashi Iwaie683ec42008-11-12 16:42:44 +0100437 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
Takashi Iwai10832062008-08-11 10:18:39 +0200438 }
Takashi Iwaie683ec42008-11-12 16:42:44 +0100439 spin_unlock(&ice->reg_lock);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400442 handled = 1;
Takashi Iwai3a841d52008-04-23 17:47:28 +0200443 if (status & VT1724_IRQ_MPU_TX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200444 if (ice->midi_output)
445 vt1724_midi_write(ice);
Takashi Iwaie683ec42008-11-12 16:42:44 +0100446 else
447 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200448 /* Due to mysterical reasons, MPU_TX is always
449 * generated (and can't be cleared) when a PCM
450 * playback is going. So let's ignore at the
451 * next loop.
452 */
453 status_mask &= ~VT1724_IRQ_MPU_TX;
454 }
455 if (status & VT1724_IRQ_MPU_RX) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200456 if (ice->midi_input)
457 vt1724_midi_read(ice);
458 else
459 vt1724_midi_clear_rx(ice);
Takashi Iwai3a841d52008-04-23 17:47:28 +0200460 }
461 /* ack MPU irq */
462 outb(status, ICEREG1724(ice, IRQSTAT));
Takashi Iwaie683ec42008-11-12 16:42:44 +0100463 spin_unlock(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 if (status & VT1724_IRQ_MTPCM) {
465 /*
466 * Multi-track PCM
467 * PCM assignment are:
468 * Playback DMA0 (M/C) = playback_pro_substream
469 * Playback DMA1 = playback_con_substream_ds[0]
470 * Playback DMA2 = playback_con_substream_ds[1]
471 * Playback DMA3 = playback_con_substream_ds[2]
472 * Playback DMA4 (SPDIF) = playback_con_substream
473 * Record DMA0 = capture_pro_substream
474 * Record DMA1 = capture_con_substream
475 */
476 unsigned char mtstat = inb(ICEMT1724(ice, IRQ));
477 if (mtstat & VT1724_MULTI_PDMA0) {
478 if (ice->playback_pro_substream)
479 snd_pcm_period_elapsed(ice->playback_pro_substream);
480 }
481 if (mtstat & VT1724_MULTI_RDMA0) {
482 if (ice->capture_pro_substream)
483 snd_pcm_period_elapsed(ice->capture_pro_substream);
484 }
485 if (mtstat & VT1724_MULTI_PDMA1) {
486 if (ice->playback_con_substream_ds[0])
487 snd_pcm_period_elapsed(ice->playback_con_substream_ds[0]);
488 }
489 if (mtstat & VT1724_MULTI_PDMA2) {
490 if (ice->playback_con_substream_ds[1])
491 snd_pcm_period_elapsed(ice->playback_con_substream_ds[1]);
492 }
493 if (mtstat & VT1724_MULTI_PDMA3) {
494 if (ice->playback_con_substream_ds[2])
495 snd_pcm_period_elapsed(ice->playback_con_substream_ds[2]);
496 }
497 if (mtstat & VT1724_MULTI_PDMA4) {
498 if (ice->playback_con_substream)
499 snd_pcm_period_elapsed(ice->playback_con_substream);
500 }
501 if (mtstat & VT1724_MULTI_RDMA1) {
502 if (ice->capture_con_substream)
503 snd_pcm_period_elapsed(ice->capture_con_substream);
504 }
505 /* ack anyway to avoid freeze */
506 outb(mtstat, ICEMT1724(ice, IRQ));
507 /* ought to really handle this properly */
508 if (mtstat & VT1724_MULTI_FIFO_ERR) {
509 unsigned char fstat = inb(ICEMT1724(ice, DMA_FIFO_ERR));
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400510 outb(fstat, ICEMT1724(ice, DMA_FIFO_ERR));
511 outb(VT1724_MULTI_FIFO_ERR | inb(ICEMT1724(ice, DMA_INT_MASK)), ICEMT1724(ice, DMA_INT_MASK));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 /* If I don't do this, I get machine lockup due to continual interrupts */
513 }
514
515 }
516 }
517 return IRQ_RETVAL(handled);
518}
519
520/*
521 * PCM code - professional part (multitrack)
522 */
523
524static unsigned int rates[] = {
525 8000, 9600, 11025, 12000, 16000, 22050, 24000,
526 32000, 44100, 48000, 64000, 88200, 96000,
527 176400, 192000,
528};
529
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100530static struct snd_pcm_hw_constraint_list hw_constraints_rates_96 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 .count = ARRAY_SIZE(rates) - 2, /* up to 96000 */
532 .list = rates,
533 .mask = 0,
534};
535
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100536static struct snd_pcm_hw_constraint_list hw_constraints_rates_48 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 .count = ARRAY_SIZE(rates) - 5, /* up to 48000 */
538 .list = rates,
539 .mask = 0,
540};
541
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100542static struct snd_pcm_hw_constraint_list hw_constraints_rates_192 = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .count = ARRAY_SIZE(rates),
544 .list = rates,
545 .mask = 0,
546};
547
548struct vt1724_pcm_reg {
549 unsigned int addr; /* ADDR register offset */
550 unsigned int size; /* SIZE register offset */
551 unsigned int count; /* COUNT register offset */
552 unsigned int start; /* start & pause bit */
553};
554
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100555static int snd_vt1724_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100557 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 unsigned char what;
559 unsigned char old;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100560 struct snd_pcm_substream *s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
562 what = 0;
Takashi Iwaief991b92007-02-22 12:52:53 +0100563 snd_pcm_group_for_each_entry(s, substream) {
Clemens Ladisch29998d22007-07-30 08:14:31 +0200564 if (snd_pcm_substream_chip(s) == ice) {
565 const struct vt1724_pcm_reg *reg;
566 reg = s->runtime->private_data;
567 what |= reg->start;
568 snd_pcm_trigger_done(s, substream);
569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
572 switch (cmd) {
573 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
574 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
575 spin_lock(&ice->reg_lock);
576 old = inb(ICEMT1724(ice, DMA_PAUSE));
577 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
578 old |= what;
579 else
580 old &= ~what;
581 outb(old, ICEMT1724(ice, DMA_PAUSE));
582 spin_unlock(&ice->reg_lock);
583 break;
584
585 case SNDRV_PCM_TRIGGER_START:
586 case SNDRV_PCM_TRIGGER_STOP:
Igor Chernyshevb40e9532009-06-25 09:31:07 +0200587 case SNDRV_PCM_TRIGGER_SUSPEND:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 spin_lock(&ice->reg_lock);
589 old = inb(ICEMT1724(ice, DMA_CONTROL));
590 if (cmd == SNDRV_PCM_TRIGGER_START)
591 old |= what;
592 else
593 old &= ~what;
594 outb(old, ICEMT1724(ice, DMA_CONTROL));
595 spin_unlock(&ice->reg_lock);
596 break;
597
Igor Chernyshevb40e9532009-06-25 09:31:07 +0200598 case SNDRV_PCM_TRIGGER_RESUME:
599 /* apps will have to restart stream */
600 break;
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 default:
603 return -EINVAL;
604 }
605 return 0;
606}
607
608/*
609 */
610
611#define DMA_STARTS (VT1724_RDMA0_START|VT1724_PDMA0_START|VT1724_RDMA1_START|\
612 VT1724_PDMA1_START|VT1724_PDMA2_START|VT1724_PDMA3_START|VT1724_PDMA4_START)
613#define DMA_PAUSES (VT1724_RDMA0_PAUSE|VT1724_PDMA0_PAUSE|VT1724_RDMA1_PAUSE|\
614 VT1724_PDMA1_PAUSE|VT1724_PDMA2_PAUSE|VT1724_PDMA3_PAUSE|VT1724_PDMA4_PAUSE)
615
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100616static const unsigned int stdclock_rate_list[16] = {
617 48000, 24000, 12000, 9600, 32000, 16000, 8000, 96000, 44100,
618 22050, 11025, 88200, 176400, 0, 192000, 64000
619};
620
621static unsigned int stdclock_get_rate(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100623 unsigned int rate;
624 rate = stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
625 return rate;
626}
627
628static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
629{
630 int i;
631 for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
632 if (stdclock_rate_list[i] == rate) {
633 outb(i, ICEMT1724(ice, RATE));
634 return;
635 }
636 }
637}
638
639static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
640 unsigned int rate)
641{
642 unsigned char val, old;
643 /* check MT02 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100645 val = old = inb(ICEMT1724(ice, I2S_FORMAT));
646 if (rate > 96000)
647 val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 else
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100649 val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
650 if (val != old) {
651 outb(val, ICEMT1724(ice, I2S_FORMAT));
652 /* master clock changed */
653 return 1;
654 }
655 }
656 /* no change in master clock */
657 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Takashi Iwai92d71002009-05-06 17:18:34 +0200660static int snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100661 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
663 unsigned long flags;
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100664 unsigned char mclk_change;
665 unsigned int i, old_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100667 if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
Takashi Iwai92d71002009-05-06 17:18:34 +0200668 return -EINVAL;
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 spin_lock_irqsave(&ice->reg_lock, flags);
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100671 if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
673 /* running? we cannot change the rate now... */
674 spin_unlock_irqrestore(&ice->reg_lock, flags);
David Henningssonbd3c2002009-10-11 11:37:22 +0200675 return ((rate == ice->cur_rate) && !force) ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
677 if (!force && is_pro_rate_locked(ice)) {
Pavel Hofman6796d5a2009-09-16 22:25:39 +0200678 /* comparing required and current rate - makes sense for
679 * internal clock only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 spin_unlock_irqrestore(&ice->reg_lock, flags);
Takashi Iwai92d71002009-05-06 17:18:34 +0200681 return (rate == ice->cur_rate) ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
683
Pavel Hofman6796d5a2009-09-16 22:25:39 +0200684 if (force || !ice->is_spdif_master(ice)) {
685 /* force means the rate was switched by ucontrol, otherwise
686 * setting clock rate for internal clock mode */
687 old_rate = ice->get_rate(ice);
688 if (force || (old_rate != rate))
689 ice->set_rate(ice, rate);
690 else if (rate == ice->cur_rate) {
691 spin_unlock_irqrestore(&ice->reg_lock, flags);
692 return 0;
693 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
695
696 ice->cur_rate = rate;
697
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100698 /* setting master clock */
699 mclk_change = ice->set_mclk(ice, rate);
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 spin_unlock_irqrestore(&ice->reg_lock, flags);
702
703 if (mclk_change && ice->gpio.i2s_mclk_changed)
704 ice->gpio.i2s_mclk_changed(ice);
705 if (ice->gpio.set_pro_rate)
706 ice->gpio.set_pro_rate(ice, rate);
707
708 /* set up codecs */
709 for (i = 0; i < ice->akm_codecs; i++) {
710 if (ice->akm[i].ops.set_rate_val)
711 ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
712 }
713 if (ice->spdif.ops.setup_rate)
714 ice->spdif.ops.setup_rate(ice, rate);
Takashi Iwai92d71002009-05-06 17:18:34 +0200715
716 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
718
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100719static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
720 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100722 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai92d71002009-05-06 17:18:34 +0200723 int i, chs, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 chs = params_channels(hw_params);
Ingo Molnar62932df2006-01-16 16:34:20 +0100726 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /* mark surround channels */
728 if (substream == ice->playback_pro_substream) {
729 /* PDMA0 can be multi-channel up to 8 */
730 chs = chs / 2 - 1;
731 for (i = 0; i < chs; i++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100732 if (ice->pcm_reserved[i] &&
733 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100734 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return -EBUSY;
736 }
737 ice->pcm_reserved[i] = substream;
738 }
739 for (; i < 3; i++) {
740 if (ice->pcm_reserved[i] == substream)
741 ice->pcm_reserved[i] = NULL;
742 }
743 } else {
744 for (i = 0; i < 3; i++) {
745 /* check individual playback stream */
746 if (ice->playback_con_substream_ds[i] == substream) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100747 if (ice->pcm_reserved[i] &&
748 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100749 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return -EBUSY;
751 }
752 ice->pcm_reserved[i] = substream;
753 break;
754 }
755 }
756 }
Ingo Molnar62932df2006-01-16 16:34:20 +0100757 mutex_unlock(&ice->open_mutex);
Takashi Iwai92d71002009-05-06 17:18:34 +0200758
759 err = snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
760 if (err < 0)
761 return err;
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
764}
765
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100766static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100768 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 int i;
770
Ingo Molnar62932df2006-01-16 16:34:20 +0100771 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 /* unmark surround channels */
773 for (i = 0; i < 3; i++)
774 if (ice->pcm_reserved[i] == substream)
775 ice->pcm_reserved[i] = NULL;
Ingo Molnar62932df2006-01-16 16:34:20 +0100776 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return snd_pcm_lib_free_pages(substream);
778}
779
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100780static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100782 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 unsigned char val;
784 unsigned int size;
785
786 spin_lock_irq(&ice->reg_lock);
787 val = (8 - substream->runtime->channels) >> 1;
788 outb(val, ICEMT1724(ice, BURST));
789
790 outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));
791
792 size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400793 /* outl(size, ICEMT1724(ice, PLAYBACK_SIZE)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
795 outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
796 size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400797 /* outl(size, ICEMT1724(ice, PLAYBACK_COUNT)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
799 outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);
800
801 spin_unlock_irq(&ice->reg_lock);
802
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +0100803 /*
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100804 dev_dbg(ice->card->dev, "pro prepare: ch = %d, addr = 0x%x, "
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +0100805 "buffer = 0x%x, period = 0x%x\n",
806 substream->runtime->channels,
807 (unsigned int)substream->runtime->dma_addr,
808 snd_pcm_lib_buffer_bytes(substream),
809 snd_pcm_lib_period_bytes(substream));
810 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return 0;
812}
813
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100814static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 size_t ptr;
818
819 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
820 return 0;
821#if 0 /* read PLAYBACK_ADDR */
822 ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
823 if (ptr < substream->runtime->dma_addr) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100824 dev_dbg(ice->card->dev, "invalid negative ptr\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return 0;
826 }
827 ptr -= substream->runtime->dma_addr;
828 ptr = bytes_to_frames(substream->runtime, ptr);
829 if (ptr >= substream->runtime->buffer_size) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100830 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100831 (int)ptr, (int)substream->runtime->period_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return 0;
833 }
834#else /* read PLAYBACK_SIZE */
835 ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
836 ptr = (ptr + 1) << 2;
837 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400838 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 ;
840 else if (ptr <= substream->runtime->buffer_size)
841 ptr = substream->runtime->buffer_size - ptr;
842 else {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100843 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100844 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 ptr = 0;
846 }
847#endif
848 return ptr;
849}
850
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100851static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100853 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100854 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 spin_lock_irq(&ice->reg_lock);
857 outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100858 outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
859 ice->profi_port + reg->size);
860 outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
861 ice->profi_port + reg->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 spin_unlock_irq(&ice->reg_lock);
863 return 0;
864}
865
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100866static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100868 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100869 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 size_t ptr;
871
872 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
873 return 0;
874#if 0 /* use ADDR register */
875 ptr = inl(ice->profi_port + reg->addr);
876 ptr -= substream->runtime->dma_addr;
877 return bytes_to_frames(substream->runtime, ptr);
878#else /* use SIZE register */
879 ptr = inw(ice->profi_port + reg->size);
880 ptr = (ptr + 1) << 2;
881 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400882 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 ;
884 else if (ptr <= substream->runtime->buffer_size)
885 ptr = substream->runtime->buffer_size - ptr;
886 else {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100887 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100888 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 ptr = 0;
890 }
891 return ptr;
892#endif
893}
894
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200895static const struct vt1724_pcm_reg vt1724_pdma0_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 .addr = VT1724_MT_PLAYBACK_ADDR,
897 .size = VT1724_MT_PLAYBACK_SIZE,
898 .count = VT1724_MT_PLAYBACK_COUNT,
899 .start = VT1724_PDMA0_START,
900};
901
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200902static const struct vt1724_pcm_reg vt1724_pdma4_reg = {
903 .addr = VT1724_MT_PDMA4_ADDR,
904 .size = VT1724_MT_PDMA4_SIZE,
905 .count = VT1724_MT_PDMA4_COUNT,
906 .start = VT1724_PDMA4_START,
907};
908
909static const struct vt1724_pcm_reg vt1724_rdma0_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 .addr = VT1724_MT_CAPTURE_ADDR,
911 .size = VT1724_MT_CAPTURE_SIZE,
912 .count = VT1724_MT_CAPTURE_COUNT,
913 .start = VT1724_RDMA0_START,
914};
915
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200916static const struct vt1724_pcm_reg vt1724_rdma1_reg = {
917 .addr = VT1724_MT_RDMA1_ADDR,
918 .size = VT1724_MT_RDMA1_SIZE,
919 .count = VT1724_MT_RDMA1_COUNT,
920 .start = VT1724_RDMA1_START,
921};
922
923#define vt1724_playback_pro_reg vt1724_pdma0_reg
924#define vt1724_playback_spdif_reg vt1724_pdma4_reg
925#define vt1724_capture_pro_reg vt1724_rdma0_reg
926#define vt1724_capture_spdif_reg vt1724_rdma1_reg
927
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400928static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
930 SNDRV_PCM_INFO_BLOCK_TRANSFER |
931 SNDRV_PCM_INFO_MMAP_VALID |
932 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
933 .formats = SNDRV_PCM_FMTBIT_S32_LE,
934 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
935 .rate_min = 8000,
936 .rate_max = 192000,
937 .channels_min = 2,
938 .channels_max = 8,
939 .buffer_bytes_max = (1UL << 21), /* 19bits dword */
940 .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
941 .period_bytes_max = (1UL << 21),
942 .periods_min = 2,
943 .periods_max = 1024,
944};
945
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400946static const struct snd_pcm_hardware snd_vt1724_spdif = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
948 SNDRV_PCM_INFO_BLOCK_TRANSFER |
949 SNDRV_PCM_INFO_MMAP_VALID |
950 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
951 .formats = SNDRV_PCM_FMTBIT_S32_LE,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200952 .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
953 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
954 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
955 SNDRV_PCM_RATE_192000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 .rate_min = 32000,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200957 .rate_max = 192000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 .channels_min = 2,
959 .channels_max = 2,
960 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
961 .period_bytes_min = 2 * 4 * 2,
962 .period_bytes_max = (1UL << 18),
963 .periods_min = 2,
964 .periods_max = 1024,
965};
966
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400967static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
969 SNDRV_PCM_INFO_BLOCK_TRANSFER |
970 SNDRV_PCM_INFO_MMAP_VALID |
971 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
972 .formats = SNDRV_PCM_FMTBIT_S32_LE,
973 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
974 .rate_min = 8000,
975 .rate_max = 192000,
976 .channels_min = 2,
977 .channels_max = 2,
978 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
979 .period_bytes_min = 2 * 4 * 2,
980 .period_bytes_max = (1UL << 18),
981 .periods_min = 2,
982 .periods_max = 1024,
983};
984
985/*
986 * set rate constraints
987 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100988static void set_std_hw_rates(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
991 /* I2S */
992 /* VT1720 doesn't support more than 96kHz */
993 if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100994 ice->hw_rates = &hw_constraints_rates_192;
995 else
996 ice->hw_rates = &hw_constraints_rates_96;
997 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /* ACLINK */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100999 ice->hw_rates = &hw_constraints_rates_48;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001001}
1002
1003static int set_rate_constraints(struct snd_ice1712 *ice,
1004 struct snd_pcm_substream *substream)
1005{
1006 struct snd_pcm_runtime *runtime = substream->runtime;
1007
1008 runtime->hw.rate_min = ice->hw_rates->list[0];
1009 runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
1010 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
1011 return snd_pcm_hw_constraint_list(runtime, 0,
1012 SNDRV_PCM_HW_PARAM_RATE,
1013 ice->hw_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014}
1015
Pavel Hofmandb058282012-03-02 22:09:39 +01001016/* if the card has the internal rate locked (is_pro_locked), limit runtime
1017 hw rates to the current internal rate only.
1018*/
1019static void constrain_rate_if_locked(struct snd_pcm_substream *substream)
1020{
1021 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1022 struct snd_pcm_runtime *runtime = substream->runtime;
1023 unsigned int rate;
1024 if (is_pro_rate_locked(ice)) {
1025 rate = ice->get_rate(ice);
1026 if (rate >= runtime->hw.rate_min
1027 && rate <= runtime->hw.rate_max) {
1028 runtime->hw.rate_min = rate;
1029 runtime->hw.rate_max = rate;
1030 }
1031 }
1032}
1033
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035/* multi-channel playback needs alignment 8x32bit regardless of the channels
1036 * actually used
1037 */
1038#define VT1724_BUFFER_ALIGN 0x20
1039
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001040static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001042 struct snd_pcm_runtime *runtime = substream->runtime;
1043 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwaia6b936b2008-08-29 16:17:25 +02001044 int chs, num_indeps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Takashi Iwai32b47da2007-01-29 15:26:36 +01001046 runtime->private_data = (void *)&vt1724_playback_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 ice->playback_pro_substream = substream;
1048 runtime->hw = snd_vt1724_playback_pro;
1049 snd_pcm_set_sync(substream);
1050 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1051 set_rate_constraints(ice, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001052 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 /* calculate the currently available channels */
Takashi Iwaia6b936b2008-08-29 16:17:25 +02001054 num_indeps = ice->num_total_dacs / 2 - 1;
1055 for (chs = 0; chs < num_indeps; chs++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (ice->pcm_reserved[chs])
1057 break;
1058 }
1059 chs = (chs + 1) * 2;
1060 runtime->hw.channels_max = chs;
1061 if (chs > 2) /* channels must be even */
1062 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Ingo Molnar62932df2006-01-16 16:34:20 +01001063 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1065 VT1724_BUFFER_ALIGN);
1066 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1067 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001068 constrain_rate_if_locked(substream);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001069 if (ice->pro_open)
1070 ice->pro_open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 return 0;
1072}
1073
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001074static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001076 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1077 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Takashi Iwai32b47da2007-01-29 15:26:36 +01001079 runtime->private_data = (void *)&vt1724_capture_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 ice->capture_pro_substream = substream;
1081 runtime->hw = snd_vt1724_2ch_stereo;
1082 snd_pcm_set_sync(substream);
1083 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1084 set_rate_constraints(ice, substream);
1085 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1086 VT1724_BUFFER_ALIGN);
1087 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1088 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001089 constrain_rate_if_locked(substream);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001090 if (ice->pro_open)
1091 ice->pro_open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return 0;
1093}
1094
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001095static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001097 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001100 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 ice->playback_pro_substream = NULL;
1102
1103 return 0;
1104}
1105
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001106static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001108 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001111 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 ice->capture_pro_substream = NULL;
1113 return 0;
1114}
1115
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001116static struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 .open = snd_vt1724_playback_pro_open,
1118 .close = snd_vt1724_playback_pro_close,
1119 .ioctl = snd_pcm_lib_ioctl,
1120 .hw_params = snd_vt1724_pcm_hw_params,
1121 .hw_free = snd_vt1724_pcm_hw_free,
1122 .prepare = snd_vt1724_playback_pro_prepare,
1123 .trigger = snd_vt1724_pcm_trigger,
1124 .pointer = snd_vt1724_playback_pro_pointer,
1125};
1126
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001127static struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 .open = snd_vt1724_capture_pro_open,
1129 .close = snd_vt1724_capture_pro_close,
1130 .ioctl = snd_pcm_lib_ioctl,
1131 .hw_params = snd_vt1724_pcm_hw_params,
1132 .hw_free = snd_vt1724_pcm_hw_free,
1133 .prepare = snd_vt1724_pcm_prepare,
1134 .trigger = snd_vt1724_pcm_trigger,
1135 .pointer = snd_vt1724_pcm_pointer,
1136};
1137
Bill Pembertone23e7a12012-12-06 12:35:10 -05001138static int snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001140 struct snd_pcm *pcm;
Pavel Hofmanffd364d2012-01-10 20:45:28 +01001141 int capt, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Pavel Hofmanffd364d2012-01-10 20:45:28 +01001143 if ((ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_ADC_MASK) ==
1144 VT1724_CFG_ADC_NONE)
1145 capt = 0;
1146 else
1147 capt = 1;
1148 err = snd_pcm_new(ice->card, "ICE1724", device, 1, capt, &pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 if (err < 0)
1150 return err;
1151
1152 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
Pavel Hofmanffd364d2012-01-10 20:45:28 +01001153 if (capt)
1154 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1155 &snd_vt1724_capture_pro_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
1157 pcm->private_data = ice;
1158 pcm->info_flags = 0;
1159 strcpy(pcm->name, "ICE1724");
1160
1161 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001162 snd_dma_pci_data(ice->pci),
1163 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
1165 ice->pcm_pro = pcm;
1166
1167 return 0;
1168}
1169
1170
1171/*
1172 * SPDIF PCM
1173 */
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/* update spdif control bits; call with reg_lock */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001176static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
1178 unsigned char cbit, disabled;
1179
1180 cbit = inb(ICEREG1724(ice, SPDIF_CFG));
1181 disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
1182 if (cbit != disabled)
1183 outb(disabled, ICEREG1724(ice, SPDIF_CFG));
1184 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1185 if (cbit != disabled)
1186 outb(cbit, ICEREG1724(ice, SPDIF_CFG));
1187 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1188}
1189
1190/* update SPDIF control bits according to the given rate */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001191static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192{
1193 unsigned int val, nval;
1194 unsigned long flags;
1195
1196 spin_lock_irqsave(&ice->reg_lock, flags);
1197 nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
1198 nval &= ~(7 << 12);
1199 switch (rate) {
1200 case 44100: break;
1201 case 48000: nval |= 2 << 12; break;
1202 case 32000: nval |= 3 << 12; break;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001203 case 88200: nval |= 4 << 12; break;
1204 case 96000: nval |= 5 << 12; break;
1205 case 192000: nval |= 6 << 12; break;
1206 case 176400: nval |= 7 << 12; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
1208 if (val != nval)
1209 update_spdif_bits(ice, nval);
1210 spin_unlock_irqrestore(&ice->reg_lock, flags);
1211}
1212
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001213static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001215 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001216 if (!ice->force_pdma4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 update_spdif_rate(ice, substream->runtime->rate);
1218 return snd_vt1724_pcm_prepare(substream);
1219}
1220
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001221static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001223 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1224 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Takashi Iwai32b47da2007-01-29 15:26:36 +01001226 runtime->private_data = (void *)&vt1724_playback_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 ice->playback_con_substream = substream;
1228 if (ice->force_pdma4) {
1229 runtime->hw = snd_vt1724_2ch_stereo;
1230 set_rate_constraints(ice, substream);
1231 } else
1232 runtime->hw = snd_vt1724_spdif;
1233 snd_pcm_set_sync(substream);
1234 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1235 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1236 VT1724_BUFFER_ALIGN);
1237 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1238 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001239 constrain_rate_if_locked(substream);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001240 if (ice->spdif.ops.open)
1241 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 return 0;
1243}
1244
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001245static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001247 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
1249 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001250 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 ice->playback_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001252 if (ice->spdif.ops.close)
1253 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 return 0;
1256}
1257
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001258static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001260 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1261 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262
Takashi Iwai32b47da2007-01-29 15:26:36 +01001263 runtime->private_data = (void *)&vt1724_capture_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 ice->capture_con_substream = substream;
1265 if (ice->force_rdma1) {
1266 runtime->hw = snd_vt1724_2ch_stereo;
1267 set_rate_constraints(ice, substream);
1268 } else
1269 runtime->hw = snd_vt1724_spdif;
1270 snd_pcm_set_sync(substream);
1271 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1272 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1273 VT1724_BUFFER_ALIGN);
1274 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1275 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001276 constrain_rate_if_locked(substream);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001277 if (ice->spdif.ops.open)
1278 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return 0;
1280}
1281
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001282static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001284 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001287 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 ice->capture_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001289 if (ice->spdif.ops.close)
1290 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 return 0;
1293}
1294
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001295static struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 .open = snd_vt1724_playback_spdif_open,
1297 .close = snd_vt1724_playback_spdif_close,
1298 .ioctl = snd_pcm_lib_ioctl,
1299 .hw_params = snd_vt1724_pcm_hw_params,
1300 .hw_free = snd_vt1724_pcm_hw_free,
1301 .prepare = snd_vt1724_playback_spdif_prepare,
1302 .trigger = snd_vt1724_pcm_trigger,
1303 .pointer = snd_vt1724_pcm_pointer,
1304};
1305
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001306static struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 .open = snd_vt1724_capture_spdif_open,
1308 .close = snd_vt1724_capture_spdif_close,
1309 .ioctl = snd_pcm_lib_ioctl,
1310 .hw_params = snd_vt1724_pcm_hw_params,
1311 .hw_free = snd_vt1724_pcm_hw_free,
1312 .prepare = snd_vt1724_pcm_prepare,
1313 .trigger = snd_vt1724_pcm_trigger,
1314 .pointer = snd_vt1724_pcm_pointer,
1315};
1316
1317
Bill Pembertone23e7a12012-12-06 12:35:10 -05001318static int snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
1320 char *name;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001321 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 int play, capt;
1323 int err;
1324
1325 if (ice->force_pdma4 ||
1326 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
1327 play = 1;
1328 ice->has_spdif = 1;
1329 } else
1330 play = 0;
1331 if (ice->force_rdma1 ||
1332 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
1333 capt = 1;
1334 ice->has_spdif = 1;
1335 } else
1336 capt = 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001337 if (!play && !capt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 return 0; /* no spdif device */
1339
1340 if (ice->force_pdma4 || ice->force_rdma1)
1341 name = "ICE1724 Secondary";
1342 else
Alan Horstmann8eca7532009-01-05 18:30:04 +01001343 name = "ICE1724 IEC958";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
1345 if (err < 0)
1346 return err;
1347
1348 if (play)
1349 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1350 &snd_vt1724_playback_spdif_ops);
1351 if (capt)
1352 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1353 &snd_vt1724_capture_spdif_ops);
1354
1355 pcm->private_data = ice;
1356 pcm->info_flags = 0;
1357 strcpy(pcm->name, name);
1358
1359 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001360 snd_dma_pci_data(ice->pci),
Robert Hancock1d4efa62009-10-07 20:19:21 -06001361 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
1363 ice->pcm = pcm;
1364
1365 return 0;
1366}
1367
1368
1369/*
1370 * independent surround PCMs
1371 */
1372
Takashi Iwai32b47da2007-01-29 15:26:36 +01001373static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 {
1375 .addr = VT1724_MT_PDMA1_ADDR,
1376 .size = VT1724_MT_PDMA1_SIZE,
1377 .count = VT1724_MT_PDMA1_COUNT,
1378 .start = VT1724_PDMA1_START,
1379 },
1380 {
1381 .addr = VT1724_MT_PDMA2_ADDR,
1382 .size = VT1724_MT_PDMA2_SIZE,
1383 .count = VT1724_MT_PDMA2_COUNT,
1384 .start = VT1724_PDMA2_START,
1385 },
1386 {
1387 .addr = VT1724_MT_PDMA3_ADDR,
1388 .size = VT1724_MT_PDMA3_SIZE,
1389 .count = VT1724_MT_PDMA3_COUNT,
1390 .start = VT1724_PDMA3_START,
1391 },
1392};
1393
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001394static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001396 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 unsigned char val;
1398
1399 spin_lock_irq(&ice->reg_lock);
1400 val = 3 - substream->number;
1401 if (inb(ICEMT1724(ice, BURST)) < val)
1402 outb(val, ICEMT1724(ice, BURST));
1403 spin_unlock_irq(&ice->reg_lock);
1404 return snd_vt1724_pcm_prepare(substream);
1405}
1406
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001407static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001409 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1410 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Ingo Molnar62932df2006-01-16 16:34:20 +01001412 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 /* already used by PDMA0? */
1414 if (ice->pcm_reserved[substream->number]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001415 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 return -EBUSY; /* FIXME: should handle blocking mode properly */
1417 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001418 mutex_unlock(&ice->open_mutex);
Takashi Iwai32b47da2007-01-29 15:26:36 +01001419 runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 ice->playback_con_substream_ds[substream->number] = substream;
1421 runtime->hw = snd_vt1724_2ch_stereo;
1422 snd_pcm_set_sync(substream);
1423 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1424 set_rate_constraints(ice, substream);
1425 return 0;
1426}
1427
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001428static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001430 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
1432 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001433 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 ice->playback_con_substream_ds[substream->number] = NULL;
1435 ice->pcm_reserved[substream->number] = NULL;
1436
1437 return 0;
1438}
1439
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001440static struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 .open = snd_vt1724_playback_indep_open,
1442 .close = snd_vt1724_playback_indep_close,
1443 .ioctl = snd_pcm_lib_ioctl,
1444 .hw_params = snd_vt1724_pcm_hw_params,
1445 .hw_free = snd_vt1724_pcm_hw_free,
1446 .prepare = snd_vt1724_playback_indep_prepare,
1447 .trigger = snd_vt1724_pcm_trigger,
1448 .pointer = snd_vt1724_pcm_pointer,
1449};
1450
1451
Bill Pembertone23e7a12012-12-06 12:35:10 -05001452static int snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001454 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 int play;
1456 int err;
1457
1458 play = ice->num_total_dacs / 2 - 1;
1459 if (play <= 0)
1460 return 0;
1461
1462 err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
1463 if (err < 0)
1464 return err;
1465
1466 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1467 &snd_vt1724_playback_indep_ops);
1468
1469 pcm->private_data = ice;
1470 pcm->info_flags = 0;
1471 strcpy(pcm->name, "ICE1724 Surround PCM");
1472
1473 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001474 snd_dma_pci_data(ice->pci),
Robert Hancock1d4efa62009-10-07 20:19:21 -06001475 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 ice->pcm_ds = pcm;
1478
1479 return 0;
1480}
1481
1482
1483/*
1484 * Mixer section
1485 */
1486
Bill Pembertone23e7a12012-12-06 12:35:10 -05001487static int snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
1489 int err;
1490
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001491 if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001492 struct snd_ac97_bus *pbus;
1493 struct snd_ac97_template ac97;
1494 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 .write = snd_vt1724_ac97_write,
1496 .read = snd_vt1724_ac97_read,
1497 };
1498
1499 /* cold reset */
1500 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
1501 mdelay(5); /* FIXME */
1502 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
1503
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001504 err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
1505 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 return err;
1507 memset(&ac97, 0, sizeof(ac97));
1508 ac97.private_data = ice;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001509 err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
1510 if (err < 0)
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01001511 dev_warn(ice->card->dev,
1512 "cannot initialize pro ac97, skipped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 else
1514 return 0;
1515 }
1516 /* I2S mixer only */
1517 strcat(ice->card->mixername, "ICE1724 - multitrack");
1518 return 0;
1519}
1520
1521/*
1522 *
1523 */
1524
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001525static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
1527 return (unsigned int)ice->eeprom.data[idx] | \
1528 ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
1529 ((unsigned int)ice->eeprom.data[idx + 2] << 16);
1530}
1531
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001532static void snd_vt1724_proc_read(struct snd_info_entry *entry,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001533 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001535 struct snd_ice1712 *ice = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 unsigned int idx;
1537
1538 snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1539 snd_iprintf(buffer, "EEPROM:\n");
1540
1541 snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
1542 snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
1543 snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001544 snd_iprintf(buffer, " System Config : 0x%x\n",
1545 ice->eeprom.data[ICE_EEP2_SYSCONF]);
1546 snd_iprintf(buffer, " ACLink : 0x%x\n",
1547 ice->eeprom.data[ICE_EEP2_ACLINK]);
1548 snd_iprintf(buffer, " I2S : 0x%x\n",
1549 ice->eeprom.data[ICE_EEP2_I2S]);
1550 snd_iprintf(buffer, " S/PDIF : 0x%x\n",
1551 ice->eeprom.data[ICE_EEP2_SPDIF]);
1552 snd_iprintf(buffer, " GPIO direction : 0x%x\n",
1553 ice->eeprom.gpiodir);
1554 snd_iprintf(buffer, " GPIO mask : 0x%x\n",
1555 ice->eeprom.gpiomask);
1556 snd_iprintf(buffer, " GPIO state : 0x%x\n",
1557 ice->eeprom.gpiostate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 for (idx = 0x12; idx < ice->eeprom.size; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001559 snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
1560 idx, ice->eeprom.data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 snd_iprintf(buffer, "\nRegisters:\n");
1563
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001564 snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
1565 (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 for (idx = 0x0; idx < 0x20 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001567 snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
1568 idx, inb(ice->port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 for (idx = 0x0; idx < 0x30 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001570 snd_iprintf(buffer, " MT%02x : 0x%02x\n",
1571 idx, inb(ice->profi_port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Bill Pembertone23e7a12012-12-06 12:35:10 -05001574static void snd_vt1724_proc_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001576 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001578 if (!snd_card_proc_new(ice->card, "ice1724", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02001579 snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580}
1581
1582/*
1583 *
1584 */
1585
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001586static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
1587 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588{
1589 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001590 uinfo->count = sizeof(struct snd_ice1712_eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return 0;
1592}
1593
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001594static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
1595 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001597 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1600 return 0;
1601}
1602
Bill Pembertone23e7a12012-12-06 12:35:10 -05001603static struct snd_kcontrol_new snd_vt1724_eeprom = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1605 .name = "ICE1724 EEPROM",
1606 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1607 .info = snd_vt1724_eeprom_info,
1608 .get = snd_vt1724_eeprom_get
1609};
1610
1611/*
1612 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001613static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
1614 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
1616 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1617 uinfo->count = 1;
1618 return 0;
1619}
1620
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001621static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622{
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001623 unsigned int val, rbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 val = diga->status[0] & 0x03; /* professional, non-audio */
1626 if (val & 0x01) {
1627 /* professional */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001628 if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
1629 IEC958_AES0_PRO_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 val |= 1U << 3;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001631 rbits = (diga->status[4] >> 3) & 0x0f;
1632 if (rbits) {
1633 switch (rbits) {
1634 case 2: val |= 5 << 12; break; /* 96k */
1635 case 3: val |= 6 << 12; break; /* 192k */
1636 case 10: val |= 4 << 12; break; /* 88.2k */
1637 case 11: val |= 7 << 12; break; /* 176.4k */
1638 }
1639 } else {
1640 switch (diga->status[0] & IEC958_AES0_PRO_FS) {
1641 case IEC958_AES0_PRO_FS_44100:
1642 break;
1643 case IEC958_AES0_PRO_FS_32000:
1644 val |= 3U << 12;
1645 break;
1646 default:
1647 val |= 2U << 12;
1648 break;
1649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651 } else {
1652 /* consumer */
1653 val |= diga->status[1] & 0x04; /* copyright */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001654 if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
1655 IEC958_AES0_CON_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 val |= 1U << 3;
1657 val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
1658 val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
1659 }
1660 return val;
1661}
1662
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001663static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664{
1665 memset(diga->status, 0, sizeof(diga->status));
1666 diga->status[0] = val & 0x03; /* professional, non-audio */
1667 if (val & 0x01) {
1668 /* professional */
1669 if (val & (1U << 3))
1670 diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
1671 switch ((val >> 12) & 0x7) {
1672 case 0:
1673 break;
1674 case 2:
1675 diga->status[0] |= IEC958_AES0_PRO_FS_32000;
1676 break;
1677 default:
1678 diga->status[0] |= IEC958_AES0_PRO_FS_48000;
1679 break;
1680 }
1681 } else {
1682 /* consumer */
1683 diga->status[0] |= val & (1U << 2); /* copyright */
1684 if (val & (1U << 3))
1685 diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
1686 diga->status[1] |= (val >> 4) & 0x3f; /* category */
1687 diga->status[3] |= (val >> 12) & 0x07; /* fs */
1688 }
1689}
1690
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001691static int snd_vt1724_spdif_default_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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 unsigned int val;
1696 val = inw(ICEMT1724(ice, SPDIF_CTRL));
1697 decode_spdif_bits(&ucontrol->value.iec958, val);
1698 return 0;
1699}
1700
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001701static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
1702 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001704 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 unsigned int val, old;
1706
1707 val = encode_spdif_bits(&ucontrol->value.iec958);
1708 spin_lock_irq(&ice->reg_lock);
1709 old = inw(ICEMT1724(ice, SPDIF_CTRL));
1710 if (val != old)
1711 update_spdif_bits(ice, val);
1712 spin_unlock_irq(&ice->reg_lock);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001713 return val != old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714}
1715
Bill Pembertone23e7a12012-12-06 12:35:10 -05001716static struct snd_kcontrol_new snd_vt1724_spdif_default =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717{
1718 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001719 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 .info = snd_vt1724_spdif_info,
1721 .get = snd_vt1724_spdif_default_get,
1722 .put = snd_vt1724_spdif_default_put
1723};
1724
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001725static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
1726 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
1728 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1729 IEC958_AES0_PROFESSIONAL |
1730 IEC958_AES0_CON_NOT_COPYRIGHT |
1731 IEC958_AES0_CON_EMPHASIS;
1732 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1733 IEC958_AES1_CON_CATEGORY;
1734 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1735 return 0;
1736}
1737
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001738static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
1739 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740{
1741 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1742 IEC958_AES0_PROFESSIONAL |
1743 IEC958_AES0_PRO_FS |
1744 IEC958_AES0_PRO_EMPHASIS;
1745 return 0;
1746}
1747
Bill Pembertone23e7a12012-12-06 12:35:10 -05001748static struct snd_kcontrol_new snd_vt1724_spdif_maskc =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
1750 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001751 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001752 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 .info = snd_vt1724_spdif_info,
1754 .get = snd_vt1724_spdif_maskc_get,
1755};
1756
Bill Pembertone23e7a12012-12-06 12:35:10 -05001757static struct snd_kcontrol_new snd_vt1724_spdif_maskp =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
1759 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001760 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001761 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 .info = snd_vt1724_spdif_info,
1763 .get = snd_vt1724_spdif_maskp_get,
1764};
1765
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001766#define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001768static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
1769 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001771 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1772 ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
1773 VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 return 0;
1775}
1776
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001777static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
1778 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001780 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 unsigned char old, val;
1782
1783 spin_lock_irq(&ice->reg_lock);
1784 old = val = inb(ICEREG1724(ice, SPDIF_CFG));
1785 val &= ~VT1724_CFG_SPDIF_OUT_EN;
1786 if (ucontrol->value.integer.value[0])
1787 val |= VT1724_CFG_SPDIF_OUT_EN;
1788 if (old != val)
1789 outb(val, ICEREG1724(ice, SPDIF_CFG));
1790 spin_unlock_irq(&ice->reg_lock);
1791 return old != val;
1792}
1793
Bill Pembertone23e7a12012-12-06 12:35:10 -05001794static struct snd_kcontrol_new snd_vt1724_spdif_switch =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
1796 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1797 /* FIXME: the following conflict with IEC958 Playback Route */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001798 /* .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
1799 .name = SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 .info = snd_vt1724_spdif_sw_info,
1801 .get = snd_vt1724_spdif_sw_get,
1802 .put = snd_vt1724_spdif_sw_put
1803};
1804
1805
1806#if 0 /* NOT USED YET */
1807/*
1808 * GPIO access from extern
1809 */
1810
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001811#define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001813int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
1814 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001816 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 int shift = kcontrol->private_value & 0xff;
1818 int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001819
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 snd_ice1712_save_gpio_status(ice);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001821 ucontrol->value.integer.value[0] =
1822 (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 snd_ice1712_restore_gpio_status(ice);
1824 return 0;
1825}
1826
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001827int snd_ice1712_gpio_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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 int shift = kcontrol->private_value & 0xff;
1832 int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1833 unsigned int val, nval;
1834
1835 if (kcontrol->private_value & (1 << 31))
1836 return -EPERM;
1837 nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
1838 snd_ice1712_save_gpio_status(ice);
1839 val = snd_ice1712_gpio_read(ice);
1840 nval |= val & ~(1 << shift);
1841 if (val != nval)
1842 snd_ice1712_gpio_write(ice, nval);
1843 snd_ice1712_restore_gpio_status(ice);
1844 return val != nval;
1845}
1846#endif /* NOT USED YET */
1847
1848/*
1849 * rate
1850 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001851static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
1852 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001854 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001855 int hw_rates_count = ice->hw_rates->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1857 uinfo->count = 1;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001858
Pavel Hofman219e2cd2012-01-05 22:01:56 +01001859 /* internal clocks */
1860 uinfo->value.enumerated.items = hw_rates_count;
1861 /* external clocks */
1862 if (ice->force_rdma1 ||
1863 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN))
1864 uinfo->value.enumerated.items += ice->ext_clock_count;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001865 /* upper limit - keep at top */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1867 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001868 if (uinfo->value.enumerated.item >= hw_rates_count)
1869 /* ext_clock items */
1870 strcpy(uinfo->value.enumerated.name,
1871 ice->ext_clock_names[
1872 uinfo->value.enumerated.item - hw_rates_count]);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001873 else
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001874 /* int clock items */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001875 sprintf(uinfo->value.enumerated.name, "%d",
1876 ice->hw_rates->list[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return 0;
1878}
1879
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001880static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
1881 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001883 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001884 unsigned int i, rate;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001887 if (ice->is_spdif_master(ice)) {
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001888 ucontrol->value.enumerated.item[0] = ice->hw_rates->count +
1889 ice->get_spdif_master_type(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001891 rate = ice->get_rate(ice);
1892 ucontrol->value.enumerated.item[0] = 0;
1893 for (i = 0; i < ice->hw_rates->count; i++) {
1894 if (ice->hw_rates->list[i] == rate) {
1895 ucontrol->value.enumerated.item[0] = i;
1896 break;
1897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 }
1900 spin_unlock_irq(&ice->reg_lock);
1901 return 0;
1902}
1903
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001904static int stdclock_get_spdif_master_type(struct snd_ice1712 *ice)
1905{
1906 /* standard external clock - only single type - SPDIF IN */
1907 return 0;
1908}
1909
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001910/* setting clock to external - SPDIF */
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001911static int stdclock_set_spdif_clock(struct snd_ice1712 *ice, int type)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001912{
1913 unsigned char oval;
1914 unsigned char i2s_oval;
1915 oval = inb(ICEMT1724(ice, RATE));
1916 outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
1917 /* setting 256fs */
1918 i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
1919 outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001920 return 0;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001921}
1922
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001923
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001924static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
1925 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001927 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001928 unsigned int old_rate, new_rate;
1929 unsigned int item = ucontrol->value.enumerated.item[0];
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001930 unsigned int first_ext_clock = ice->hw_rates->count;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001931
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001932 if (item > first_ext_clock + ice->ext_clock_count - 1)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001933 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001935 /* if rate = 0 => external clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001937 if (ice->is_spdif_master(ice))
1938 old_rate = 0;
1939 else
1940 old_rate = ice->get_rate(ice);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001941 if (item >= first_ext_clock) {
1942 /* switching to external clock */
1943 ice->set_spdif_clock(ice, item - first_ext_clock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001944 new_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001946 /* internal on-card clock */
1947 new_rate = ice->hw_rates->list[item];
1948 ice->pro_rate_default = new_rate;
1949 spin_unlock_irq(&ice->reg_lock);
1950 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
1951 spin_lock_irq(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 spin_unlock_irq(&ice->reg_lock);
1954
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001955 /* the first switch to the ext. clock mode? */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001956 if (old_rate != new_rate && !new_rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /* notify akm chips as well */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001958 unsigned int i;
1959 if (ice->gpio.set_pro_rate)
1960 ice->gpio.set_pro_rate(ice, 0);
1961 for (i = 0; i < ice->akm_codecs; i++) {
1962 if (ice->akm[i].ops.set_rate_val)
1963 ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
1965 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001966 return old_rate != new_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
Bill Pembertone23e7a12012-12-06 12:35:10 -05001969static struct snd_kcontrol_new snd_vt1724_pro_internal_clock = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1971 .name = "Multi Track Internal Clock",
1972 .info = snd_vt1724_pro_internal_clock_info,
1973 .get = snd_vt1724_pro_internal_clock_get,
1974 .put = snd_vt1724_pro_internal_clock_put
1975};
1976
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001977#define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001979static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
1980 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
1982 ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1983 return 0;
1984}
1985
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001986static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
1987 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001989 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 int change = 0, nval;
1991
1992 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1993 spin_lock_irq(&ice->reg_lock);
1994 change = PRO_RATE_LOCKED != nval;
1995 PRO_RATE_LOCKED = nval;
1996 spin_unlock_irq(&ice->reg_lock);
1997 return change;
1998}
1999
Bill Pembertone23e7a12012-12-06 12:35:10 -05002000static struct snd_kcontrol_new snd_vt1724_pro_rate_locking = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2002 .name = "Multi Track Rate Locking",
2003 .info = snd_vt1724_pro_rate_locking_info,
2004 .get = snd_vt1724_pro_rate_locking_get,
2005 .put = snd_vt1724_pro_rate_locking_put
2006};
2007
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002008#define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002010static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
2011 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012{
2013 ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
2014 return 0;
2015}
2016
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002017static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
2018 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002020 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 int change = 0, nval;
2022
2023 nval = ucontrol->value.integer.value[0] ? 1 : 0;
2024 spin_lock_irq(&ice->reg_lock);
2025 change = PRO_RATE_RESET != nval;
2026 PRO_RATE_RESET = nval;
2027 spin_unlock_irq(&ice->reg_lock);
2028 return change;
2029}
2030
Bill Pembertone23e7a12012-12-06 12:35:10 -05002031static struct snd_kcontrol_new snd_vt1724_pro_rate_reset = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2033 .name = "Multi Track Rate Reset",
2034 .info = snd_vt1724_pro_rate_reset_info,
2035 .get = snd_vt1724_pro_rate_reset_get,
2036 .put = snd_vt1724_pro_rate_reset_put
2037};
2038
2039
2040/*
2041 * routing
2042 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002043static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
2044 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Takashi Iwaia2af0502012-10-17 09:21:48 +02002046 static const char * const texts[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 "PCM Out", /* 0 */
2048 "H/W In 0", "H/W In 1", /* 1-2 */
2049 "IEC958 In L", "IEC958 In R", /* 3-4 */
2050 };
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002051
Takashi Iwai597da2e2014-10-20 18:18:50 +02002052 return snd_ctl_enum_info(uinfo, 1, 5, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053}
2054
2055static inline int analog_route_shift(int idx)
2056{
2057 return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
2058}
2059
2060static inline int digital_route_shift(int idx)
2061{
2062 return idx * 3;
2063}
2064
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002065int snd_ice1724_get_route_val(struct snd_ice1712 *ice, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
2067 unsigned long val;
2068 unsigned char eitem;
Takashi Iwai32b47da2007-01-29 15:26:36 +01002069 static const unsigned char xlate[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 0, 255, 1, 2, 255, 255, 3, 4,
2071 };
2072
2073 val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2074 val >>= shift;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002075 val &= 7; /* we now have 3 bits per output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 eitem = xlate[val];
2077 if (eitem == 255) {
2078 snd_BUG();
2079 return 0;
2080 }
2081 return eitem;
2082}
2083
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002084int snd_ice1724_put_route_val(struct snd_ice1712 *ice, unsigned int val,
2085 int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 unsigned int old_val, nval;
2088 int change;
Takashi Iwai32b47da2007-01-29 15:26:36 +01002089 static const unsigned char xroute[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 0, /* PCM */
2091 2, /* PSDIN0 Left */
2092 3, /* PSDIN0 Right */
2093 6, /* SPDIN Left */
2094 7, /* SPDIN Right */
2095 };
2096
2097 nval = xroute[val % 5];
2098 val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2099 val &= ~(0x07 << shift);
2100 val |= nval << shift;
2101 change = val != old_val;
2102 if (change)
2103 outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
2104 return change;
2105}
2106
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002107static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
2108 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002110 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002112 ucontrol->value.enumerated.item[0] =
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002113 snd_ice1724_get_route_val(ice, analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return 0;
2115}
2116
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002117static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
2118 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002120 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002122 return snd_ice1724_put_route_val(ice,
2123 ucontrol->value.enumerated.item[0],
2124 analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002127static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
2128 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002130 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002132 ucontrol->value.enumerated.item[0] =
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002133 snd_ice1724_get_route_val(ice, digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 return 0;
2135}
2136
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002137static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
2138 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002140 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002142 return snd_ice1724_put_route_val(ice,
2143 ucontrol->value.enumerated.item[0],
2144 digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145}
2146
Bill Pembertone23e7a12012-12-06 12:35:10 -05002147static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route =
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002148{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2150 .name = "H/W Playback Route",
2151 .info = snd_vt1724_pro_route_info,
2152 .get = snd_vt1724_pro_route_analog_get,
2153 .put = snd_vt1724_pro_route_analog_put,
2154};
2155
Bill Pembertone23e7a12012-12-06 12:35:10 -05002156static struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002158 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 .info = snd_vt1724_pro_route_info,
2160 .get = snd_vt1724_pro_route_spdif_get,
2161 .put = snd_vt1724_pro_route_spdif_put,
2162 .count = 2,
2163};
2164
2165
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002166static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
2167 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2170 uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
2171 uinfo->value.integer.min = 0;
2172 uinfo->value.integer.max = 255;
2173 return 0;
2174}
2175
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002176static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
2177 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002179 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 int idx;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002181
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 spin_lock_irq(&ice->reg_lock);
2183 for (idx = 0; idx < 22; idx++) {
2184 outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002185 ucontrol->value.integer.value[idx] =
2186 inb(ICEMT1724(ice, MONITOR_PEAKDATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
2188 spin_unlock_irq(&ice->reg_lock);
2189 return 0;
2190}
2191
Bill Pembertone23e7a12012-12-06 12:35:10 -05002192static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak = {
Pavel Hofman2bdf6632009-10-06 16:04:11 +02002193 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 .name = "Multi Track Peak",
2195 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2196 .info = snd_vt1724_pro_peak_info,
2197 .get = snd_vt1724_pro_peak_get
2198};
2199
2200/*
2201 *
2202 */
2203
Bill Pembertone23e7a12012-12-06 12:35:10 -05002204static struct snd_ice1712_card_info no_matched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002206
2207/*
2208 ooAoo cards with no controls
2209*/
Bill Pembertone23e7a12012-12-06 12:35:10 -05002210static unsigned char ooaoo_sq210_eeprom[] = {
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002211 [ICE_EEP2_SYSCONF] = 0x4c, /* 49MHz crystal, no mpu401, no ADC,
2212 1xDACs */
2213 [ICE_EEP2_ACLINK] = 0x80, /* I2S */
2214 [ICE_EEP2_I2S] = 0x78, /* no volume, 96k, 24bit, 192k */
2215 [ICE_EEP2_SPDIF] = 0xc1, /* out-en, out-int, out-ext */
2216 [ICE_EEP2_GPIO_DIR] = 0x00, /* no GPIOs are used */
2217 [ICE_EEP2_GPIO_DIR1] = 0x00,
2218 [ICE_EEP2_GPIO_DIR2] = 0x00,
2219 [ICE_EEP2_GPIO_MASK] = 0xff,
2220 [ICE_EEP2_GPIO_MASK1] = 0xff,
2221 [ICE_EEP2_GPIO_MASK2] = 0xff,
2222
2223 [ICE_EEP2_GPIO_STATE] = 0x00, /* inputs */
2224 [ICE_EEP2_GPIO_STATE1] = 0x00, /* all 1, but GPIO_CPLD_RW
2225 and GPIO15 always zero */
2226 [ICE_EEP2_GPIO_STATE2] = 0x00, /* inputs */
2227};
2228
2229
Bill Pembertone23e7a12012-12-06 12:35:10 -05002230static struct snd_ice1712_card_info snd_vt1724_ooaoo_cards[] = {
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002231 {
2232 .name = "ooAoo SQ210a",
2233 .model = "sq210a",
2234 .eeprom_size = sizeof(ooaoo_sq210_eeprom),
2235 .eeprom_data = ooaoo_sq210_eeprom,
2236 },
2237 { } /* terminator */
2238};
2239
Bill Pembertone23e7a12012-12-06 12:35:10 -05002240static struct snd_ice1712_card_info *card_tables[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 snd_vt1724_revo_cards,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002242 snd_vt1724_amp_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 snd_vt1724_aureon_cards,
2244 snd_vt1720_mobo_cards,
2245 snd_vt1720_pontis_cards,
Julian Scheel6b8d6e52008-01-16 19:50:00 +01002246 snd_vt1724_prodigy_hifi_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 snd_vt1724_prodigy192_cards,
2248 snd_vt1724_juli_cards,
Takashi Iwai72cbfd42009-05-06 17:33:19 +02002249 snd_vt1724_maya44_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 snd_vt1724_phase_cards,
Clement Guedezf6cdab52007-01-08 10:48:41 +01002251 snd_vt1724_wtm_cards,
Shin-ya Okadaf31639b2007-10-23 15:08:18 +02002252 snd_vt1724_se_cards,
Pavel Hofman6ef80702009-09-16 22:25:41 +02002253 snd_vt1724_qtet_cards,
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002254 snd_vt1724_ooaoo_cards,
Ondrej Zary77b0b252012-10-14 21:09:22 +02002255 snd_vt1724_psc724_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 NULL,
2257};
2258
2259
2260/*
2261 */
2262
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002263static void wait_i2c_busy(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
2265 int t = 0x10000;
2266 while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
2267 ;
2268 if (t == -1)
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002269 dev_err(ice->card->dev, "i2c busy timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002272unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
2273 unsigned char dev, unsigned char addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
2275 unsigned char val;
2276
Ingo Molnar62932df2006-01-16 16:34:20 +01002277 mutex_lock(&ice->i2c_mutex);
Pavel Hofmanacec30f2007-12-03 12:37:17 +01002278 wait_i2c_busy(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2280 outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2281 wait_i2c_busy(ice);
2282 val = inb(ICEREG1724(ice, I2C_DATA));
Ingo Molnar62932df2006-01-16 16:34:20 +01002283 mutex_unlock(&ice->i2c_mutex);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002284 /*
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002285 dev_dbg(ice->card->dev, "i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002286 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 return val;
2288}
2289
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002290void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
2291 unsigned char dev, unsigned char addr, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
Ingo Molnar62932df2006-01-16 16:34:20 +01002293 mutex_lock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 wait_i2c_busy(ice);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002295 /*
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002296 dev_dbg(ice->card->dev, "i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002297 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2299 outb(data, ICEREG1724(ice, I2C_DATA));
2300 outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2301 wait_i2c_busy(ice);
Ingo Molnar62932df2006-01-16 16:34:20 +01002302 mutex_unlock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303}
2304
Bill Pembertone23e7a12012-12-06 12:35:10 -05002305static int snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
2306 const char *modelname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
2308 const int dev = 0xa0; /* EEPROM device address */
2309 unsigned int i, size;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002310 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002312 if (!modelname || !*modelname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 ice->eeprom.subvendor = 0;
2314 if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
2315 ice->eeprom.subvendor =
2316 (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002317 (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
2318 (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002320 if (ice->eeprom.subvendor == 0 ||
2321 ice->eeprom.subvendor == (unsigned int)-1) {
2322 /* invalid subvendor from EEPROM, try the PCI
2323 * subststem ID instead
2324 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 u16 vendor, device;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002326 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
2327 &vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002329 ice->eeprom.subvendor =
2330 ((unsigned int)swab16(vendor) << 16) | swab16(device);
2331 if (ice->eeprom.subvendor == 0 ||
2332 ice->eeprom.subvendor == (unsigned int)-1) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002333 dev_err(ice->card->dev,
2334 "No valid ID is found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 return -ENXIO;
2336 }
2337 }
2338 }
2339 for (tbl = card_tables; *tbl; tbl++) {
Pavel Hofman2b151ef2012-01-10 20:28:47 +01002340 for (c = *tbl; c->name; c++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002341 if (modelname && c->model &&
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002342 !strcmp(modelname, c->model)) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002343 dev_info(ice->card->dev,
2344 "Using board model %s\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002345 c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 ice->eeprom.subvendor = c->subvendor;
2347 } else if (c->subvendor != ice->eeprom.subvendor)
2348 continue;
Ondrej Zary267bcca2012-10-14 21:09:19 +02002349 ice->card_info = c;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002350 if (!c->eeprom_size || !c->eeprom_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 goto found;
2352 /* if the EEPROM is given by the driver, use it */
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002353 dev_dbg(ice->card->dev, "using the defined eeprom..\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 ice->eeprom.version = 2;
2355 ice->eeprom.size = c->eeprom_size + 6;
2356 memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
2357 goto read_skipped;
2358 }
2359 }
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002360 dev_warn(ice->card->dev, "No matching model found for ID 0x%x\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002361 ice->eeprom.subvendor);
Takashi Iwai063f6032012-11-12 11:38:10 +01002362#ifdef CONFIG_PM_SLEEP
Ondrej Zaryef878442012-11-11 22:10:13 +01002363 /* assume AC97-only card which can suspend without additional code */
2364 ice->pm_suspend_enabled = 1;
Takashi Iwai063f6032012-11-12 11:38:10 +01002365#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
2367 found:
2368 ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
2369 if (ice->eeprom.size < 6)
2370 ice->eeprom.size = 32;
2371 else if (ice->eeprom.size > 32) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002372 dev_err(ice->card->dev, "Invalid EEPROM (size = %i)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002373 ice->eeprom.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 return -EIO;
2375 }
2376 ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
Ondrej Zary77b0b252012-10-14 21:09:22 +02002377 if (ice->eeprom.version != 1 && ice->eeprom.version != 2)
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002378 dev_warn(ice->card->dev, "Invalid EEPROM version %i\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002379 ice->eeprom.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 size = ice->eeprom.size - 6;
2381 for (i = 0; i < size; i++)
2382 ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
2383
2384 read_skipped:
2385 ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
2386 ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
2387 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
2388
2389 return 0;
2390}
2391
2392
2393
Takashi Iwaicd775382009-07-02 10:28:56 +02002394static void snd_vt1724_chip_reset(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
2396 outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
Takashi Iwaid82b64f2009-05-06 17:25:42 +02002397 inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
Karsten Wiese988f0662008-04-22 12:52:15 +02002398 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 outb(0, ICEREG1724(ice, CONTROL));
Takashi Iwaid82b64f2009-05-06 17:25:42 +02002400 inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
Karsten Wiese988f0662008-04-22 12:52:15 +02002401 msleep(10);
2402}
2403
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002404static int snd_vt1724_chip_init(struct snd_ice1712 *ice)
Karsten Wiese988f0662008-04-22 12:52:15 +02002405{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
2407 outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
2408 outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
2409 outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
2410
2411 ice->gpio.write_mask = ice->eeprom.gpiomask;
2412 ice->gpio.direction = ice->eeprom.gpiodir;
2413 snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
2414 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
2415 snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
2416
2417 outb(0, ICEREG1724(ice, POWERDOWN));
2418
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002419 /* MPU_RX and TX irq masks are cleared later dynamically */
2420 outb(VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX , ICEREG1724(ice, IRQMASK));
2421
2422 /* don't handle FIFO overrun/underruns (just yet),
2423 * since they cause machine lockups
2424 */
2425 outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 return 0;
2428}
2429
Bill Pembertone23e7a12012-12-06 12:35:10 -05002430static int snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431{
2432 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002433 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Takashi Iwaida3cec32008-08-08 17:12:14 +02002435 if (snd_BUG_ON(!ice->pcm))
2436 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002438 if (!ice->own_routing) {
2439 err = snd_ctl_add(ice->card,
2440 snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
2441 if (err < 0)
2442 return err;
2443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
2445 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
2446 if (err < 0)
2447 return err;
2448
2449 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
2450 if (err < 0)
2451 return err;
2452 kctl->id.device = ice->pcm->device;
2453 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
2454 if (err < 0)
2455 return err;
2456 kctl->id.device = ice->pcm->device;
2457 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
2458 if (err < 0)
2459 return err;
2460 kctl->id.device = ice->pcm->device;
2461#if 0 /* use default only */
2462 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
2463 if (err < 0)
2464 return err;
2465 kctl->id.device = ice->pcm->device;
2466 ice->spdif.stream_ctl = kctl;
2467#endif
2468 return 0;
2469}
2470
2471
Bill Pembertone23e7a12012-12-06 12:35:10 -05002472static int snd_vt1724_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473{
2474 int err;
2475
2476 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
2477 if (err < 0)
2478 return err;
2479 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
2480 if (err < 0)
2481 return err;
2482
2483 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
2484 if (err < 0)
2485 return err;
2486 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
2487 if (err < 0)
2488 return err;
2489
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002490 if (!ice->own_routing && ice->num_total_dacs > 0) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002491 struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 tmp.count = ice->num_total_dacs;
2493 if (ice->vt1720 && tmp.count > 2)
2494 tmp.count = 2;
2495 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2496 if (err < 0)
2497 return err;
2498 }
2499
Sudip Mukherjee387417b2014-11-14 16:09:05 +05302500 return snd_ctl_add(ice->card,
2501 snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502}
2503
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002504static int snd_vt1724_free(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002506 if (!ice->port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 goto __hw_end;
2508 /* mask all interrupts */
2509 outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
2510 outb(0xff, ICEREG1724(ice, IRQMASK));
2511 /* --- */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002512__hw_end:
Jeff Garzikf000fd82008-04-22 13:50:34 +02002513 if (ice->irq >= 0)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002514 free_irq(ice->irq, ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 pci_release_regions(ice->pci);
2516 snd_ice1712_akm4xxx_free(ice);
2517 pci_disable_device(ice->pci);
Takashi Iwai7cda8ba2008-01-18 13:36:07 +01002518 kfree(ice->spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 kfree(ice);
2520 return 0;
2521}
2522
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002523static int snd_vt1724_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002525 struct snd_ice1712 *ice = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return snd_vt1724_free(ice);
2527}
2528
Bill Pembertone23e7a12012-12-06 12:35:10 -05002529static int snd_vt1724_create(struct snd_card *card,
2530 struct pci_dev *pci,
2531 const char *modelname,
2532 struct snd_ice1712 **r_ice1712)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002534 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002536 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 .dev_free = snd_vt1724_dev_free,
2538 };
2539
2540 *r_ice1712 = NULL;
2541
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002542 /* enable PCI device */
2543 err = pci_enable_device(pci);
2544 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 return err;
2546
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002547 ice = kzalloc(sizeof(*ice), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (ice == NULL) {
2549 pci_disable_device(pci);
2550 return -ENOMEM;
2551 }
2552 ice->vt1724 = 1;
2553 spin_lock_init(&ice->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002554 mutex_init(&ice->gpio_mutex);
2555 mutex_init(&ice->open_mutex);
2556 mutex_init(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
Pavel Hofman49470302009-09-16 22:25:38 +02002558 ice->gpio.get_mask = snd_vt1724_get_gpio_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
Pavel Hofman49470302009-09-16 22:25:38 +02002560 ice->gpio.get_dir = snd_vt1724_get_gpio_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 ice->gpio.set_data = snd_vt1724_set_gpio_data;
2562 ice->gpio.get_data = snd_vt1724_get_gpio_data;
2563 ice->card = card;
2564 ice->pci = pci;
2565 ice->irq = -1;
2566 pci_set_master(pci);
2567 snd_vt1724_proc_init(ice);
2568 synchronize_irq(pci->irq);
2569
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002570 card->private_data = ice;
2571
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002572 err = pci_request_regions(pci, "ICE1724");
2573 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 kfree(ice);
2575 pci_disable_device(pci);
2576 return err;
2577 }
2578 ice->port = pci_resource_start(pci, 0);
2579 ice->profi_port = pci_resource_start(pci, 1);
2580
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002581 if (request_irq(pci->irq, snd_vt1724_interrupt,
Takashi Iwai934c2b62011-06-10 16:36:37 +02002582 IRQF_SHARED, KBUILD_MODNAME, ice)) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002583 dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 snd_vt1724_free(ice);
2585 return -EIO;
2586 }
2587
2588 ice->irq = pci->irq;
2589
Karsten Wiese988f0662008-04-22 12:52:15 +02002590 snd_vt1724_chip_reset(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
2592 snd_vt1724_free(ice);
2593 return -EIO;
2594 }
2595 if (snd_vt1724_chip_init(ice) < 0) {
2596 snd_vt1724_free(ice);
2597 return -EIO;
2598 }
2599
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002600 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
2601 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 snd_vt1724_free(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002603 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 }
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 *r_ice1712 = ice;
2607 return 0;
2608}
2609
2610
2611/*
2612 *
2613 * Registration
2614 *
2615 */
2616
Bill Pembertone23e7a12012-12-06 12:35:10 -05002617static int snd_vt1724_probe(struct pci_dev *pci,
2618 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
2620 static int dev;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002621 struct snd_card *card;
2622 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 int pcm_dev = 0, err;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002624 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626 if (dev >= SNDRV_CARDS)
2627 return -ENODEV;
2628 if (!enable[dev]) {
2629 dev++;
2630 return -ENOENT;
2631 }
2632
Takashi Iwai60c57722014-01-29 14:20:19 +01002633 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
2634 0, &card);
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002635 if (err < 0)
2636 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 strcpy(card->driver, "ICE1724");
2639 strcpy(card->shortname, "ICEnsemble ICE1724");
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002640
2641 err = snd_vt1724_create(card, pci, model[dev], &ice);
2642 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 snd_card_free(card);
2644 return err;
2645 }
2646
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02002647 /* field init before calling chip_init */
2648 ice->ext_clock_count = 0;
2649
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 for (tbl = card_tables; *tbl; tbl++) {
Pavel Hofman2b151ef2012-01-10 20:28:47 +01002651 for (c = *tbl; c->name; c++) {
2652 if ((model[dev] && c->model &&
2653 !strcmp(model[dev], c->model)) ||
2654 (c->subvendor == ice->eeprom.subvendor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 strcpy(card->shortname, c->name);
2656 if (c->driver) /* specific driver? */
2657 strcpy(card->driver, c->driver);
2658 if (c->chip_init) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002659 err = c->chip_init(ice);
2660 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 snd_card_free(card);
2662 return err;
2663 }
2664 }
2665 goto __found;
2666 }
2667 }
2668 }
2669 c = &no_matched;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002670__found:
2671 /*
2672 * VT1724 has separate DMAs for the analog and the SPDIF streams while
2673 * ICE1712 has only one for both (mixed up).
2674 *
2675 * Confusingly the analog PCM is named "professional" here because it
2676 * was called so in ice1712 driver, and vt1724 driver is derived from
2677 * ice1712 driver.
2678 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002679 ice->pro_rate_default = PRO_RATE_DEFAULT;
2680 if (!ice->is_spdif_master)
2681 ice->is_spdif_master = stdclock_is_spdif_master;
2682 if (!ice->get_rate)
2683 ice->get_rate = stdclock_get_rate;
2684 if (!ice->set_rate)
2685 ice->set_rate = stdclock_set_rate;
2686 if (!ice->set_mclk)
2687 ice->set_mclk = stdclock_set_mclk;
2688 if (!ice->set_spdif_clock)
2689 ice->set_spdif_clock = stdclock_set_spdif_clock;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02002690 if (!ice->get_spdif_master_type)
2691 ice->get_spdif_master_type = stdclock_get_spdif_master_type;
2692 if (!ice->ext_clock_names)
2693 ice->ext_clock_names = ext_clock_names;
2694 if (!ice->ext_clock_count)
2695 ice->ext_clock_count = ARRAY_SIZE(ext_clock_names);
2696
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002697 if (!ice->hw_rates)
2698 set_std_hw_rates(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002700 err = snd_vt1724_pcm_profi(ice, pcm_dev++);
2701 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 snd_card_free(card);
2703 return err;
2704 }
2705
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002706 err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
2707 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 snd_card_free(card);
2709 return err;
2710 }
2711
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002712 err = snd_vt1724_pcm_indep(ice, pcm_dev++);
2713 if (err < 0) {
2714 snd_card_free(card);
2715 return err;
2716 }
2717
2718 err = snd_vt1724_ac97_mixer(ice);
2719 if (err < 0) {
2720 snd_card_free(card);
2721 return err;
2722 }
2723
2724 err = snd_vt1724_build_controls(ice);
2725 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 snd_card_free(card);
2727 return err;
2728 }
2729
2730 if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002731 err = snd_vt1724_spdif_build_controls(ice);
2732 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 snd_card_free(card);
2734 return err;
2735 }
2736 }
2737
2738 if (c->build_controls) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002739 err = c->build_controls(ice);
2740 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 snd_card_free(card);
2742 return err;
2743 }
2744 }
2745
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002746 if (!c->no_mpu401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002748 struct snd_rawmidi *rmidi;
2749
2750 err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
2751 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 snd_card_free(card);
2753 return err;
2754 }
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002755 ice->rmidi[0] = rmidi;
2756 rmidi->private_data = ice;
2757 strcpy(rmidi->name, "ICE1724 MIDI");
2758 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2759 SNDRV_RAWMIDI_INFO_INPUT |
2760 SNDRV_RAWMIDI_INFO_DUPLEX;
2761 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
2762 &vt1724_midi_output_ops);
2763 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
2764 &vt1724_midi_input_ops);
2765
Takashi Iwai3a841d52008-04-23 17:47:28 +02002766 /* set watermarks */
2767 outb(VT1724_MPU_RX_FIFO | 0x1,
2768 ICEREG1724(ice, MPU_FIFO_WM));
2769 outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002770 /* set UART mode */
2771 outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 }
2773 }
2774
2775 sprintf(card->longname, "%s at 0x%lx, irq %i",
2776 card->shortname, ice->port, ice->irq);
2777
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002778 err = snd_card_register(card);
2779 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 snd_card_free(card);
2781 return err;
2782 }
2783 pci_set_drvdata(pci, card);
2784 dev++;
2785 return 0;
2786}
2787
Bill Pembertone23e7a12012-12-06 12:35:10 -05002788static void snd_vt1724_remove(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
Ondrej Zary267bcca2012-10-14 21:09:19 +02002790 struct snd_card *card = pci_get_drvdata(pci);
2791 struct snd_ice1712 *ice = card->private_data;
2792
2793 if (ice->card_info && ice->card_info->chip_exit)
2794 ice->card_info->chip_exit(ice);
2795 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796}
2797
Takashi Iwaic7561cd2012-08-14 18:12:04 +02002798#ifdef CONFIG_PM_SLEEP
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002799static int snd_vt1724_suspend(struct device *dev)
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002800{
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002801 struct snd_card *card = dev_get_drvdata(dev);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002802 struct snd_ice1712 *ice = card->private_data;
2803
2804 if (!ice->pm_suspend_enabled)
2805 return 0;
2806
2807 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
2808
2809 snd_pcm_suspend_all(ice->pcm);
2810 snd_pcm_suspend_all(ice->pcm_pro);
2811 snd_pcm_suspend_all(ice->pcm_ds);
2812 snd_ac97_suspend(ice->ac97);
2813
2814 spin_lock_irq(&ice->reg_lock);
2815 ice->pm_saved_is_spdif_master = ice->is_spdif_master(ice);
2816 ice->pm_saved_spdif_ctrl = inw(ICEMT1724(ice, SPDIF_CTRL));
2817 ice->pm_saved_spdif_cfg = inb(ICEREG1724(ice, SPDIF_CFG));
2818 ice->pm_saved_route = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2819 spin_unlock_irq(&ice->reg_lock);
2820
2821 if (ice->pm_suspend)
2822 ice->pm_suspend(ice);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002823 return 0;
2824}
2825
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002826static int snd_vt1724_resume(struct device *dev)
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002827{
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002828 struct snd_card *card = dev_get_drvdata(dev);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002829 struct snd_ice1712 *ice = card->private_data;
2830
2831 if (!ice->pm_suspend_enabled)
2832 return 0;
2833
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002834 snd_vt1724_chip_reset(ice);
2835
2836 if (snd_vt1724_chip_init(ice) < 0) {
2837 snd_card_disconnect(card);
2838 return -EIO;
2839 }
2840
2841 if (ice->pm_resume)
2842 ice->pm_resume(ice);
2843
2844 if (ice->pm_saved_is_spdif_master) {
2845 /* switching to external clock via SPDIF */
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02002846 ice->set_spdif_clock(ice, 0);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002847 } else {
2848 /* internal on-card clock */
Takashi Iwai16c2e1f2012-10-31 07:41:42 +01002849 int rate;
2850 if (ice->cur_rate)
2851 rate = ice->cur_rate;
2852 else
2853 rate = ice->pro_rate_default;
2854 snd_vt1724_set_pro_rate(ice, rate, 1);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002855 }
2856
2857 update_spdif_bits(ice, ice->pm_saved_spdif_ctrl);
2858
2859 outb(ice->pm_saved_spdif_cfg, ICEREG1724(ice, SPDIF_CFG));
2860 outl(ice->pm_saved_route, ICEMT1724(ice, ROUTE_PLAYBACK));
2861
Markus Elfringae1b2262014-11-17 11:28:02 +01002862 snd_ac97_resume(ice->ac97);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002863
2864 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
2865 return 0;
2866}
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002867
2868static SIMPLE_DEV_PM_OPS(snd_vt1724_pm, snd_vt1724_suspend, snd_vt1724_resume);
2869#define SND_VT1724_PM_OPS &snd_vt1724_pm
2870#else
2871#define SND_VT1724_PM_OPS NULL
Takashi Iwaic7561cd2012-08-14 18:12:04 +02002872#endif /* CONFIG_PM_SLEEP */
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002873
Takashi Iwaie9f66d92012-04-24 12:25:00 +02002874static struct pci_driver vt1724_driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +02002875 .name = KBUILD_MODNAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 .id_table = snd_vt1724_ids,
2877 .probe = snd_vt1724_probe,
Bill Pembertone23e7a12012-12-06 12:35:10 -05002878 .remove = snd_vt1724_remove,
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002879 .driver = {
2880 .pm = SND_VT1724_PM_OPS,
2881 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882};
2883
Takashi Iwaie9f66d92012-04-24 12:25:00 +02002884module_pci_driver(vt1724_driver);