blob: 9cd6e55c0642386c835a4d1277e3463e6ef9067d [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
Takashi Iwai485885b2017-01-05 17:29:31 +0100370static const struct snd_rawmidi_ops vt1724_midi_output_ops = {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200371 .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
Takashi Iwai485885b2017-01-05 17:29:31 +0100405static const struct snd_rawmidi_ops vt1724_midi_input_ops = {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +0200406 .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{
Masahiro Yamada44cc4a02016-09-06 20:41:19 +0900623 return stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100624}
625
626static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
627{
628 int i;
629 for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
630 if (stdclock_rate_list[i] == rate) {
631 outb(i, ICEMT1724(ice, RATE));
632 return;
633 }
634 }
635}
636
637static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
638 unsigned int rate)
639{
640 unsigned char val, old;
641 /* check MT02 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100643 val = old = inb(ICEMT1724(ice, I2S_FORMAT));
644 if (rate > 96000)
645 val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 else
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100647 val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
648 if (val != old) {
649 outb(val, ICEMT1724(ice, I2S_FORMAT));
650 /* master clock changed */
651 return 1;
652 }
653 }
654 /* no change in master clock */
655 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
Takashi Iwai92d71002009-05-06 17:18:34 +0200658static int snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100659 int force)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
661 unsigned long flags;
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100662 unsigned char mclk_change;
663 unsigned int i, old_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100665 if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
Takashi Iwai92d71002009-05-06 17:18:34 +0200666 return -EINVAL;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 spin_lock_irqsave(&ice->reg_lock, flags);
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100669 if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
671 /* running? we cannot change the rate now... */
672 spin_unlock_irqrestore(&ice->reg_lock, flags);
David Henningssonbd3c2002009-10-11 11:37:22 +0200673 return ((rate == ice->cur_rate) && !force) ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
675 if (!force && is_pro_rate_locked(ice)) {
Pavel Hofman6796d5a2009-09-16 22:25:39 +0200676 /* comparing required and current rate - makes sense for
677 * internal clock only */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 spin_unlock_irqrestore(&ice->reg_lock, flags);
Takashi Iwai92d71002009-05-06 17:18:34 +0200679 return (rate == ice->cur_rate) ? 0 : -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681
Pavel Hofman6796d5a2009-09-16 22:25:39 +0200682 if (force || !ice->is_spdif_master(ice)) {
683 /* force means the rate was switched by ucontrol, otherwise
684 * setting clock rate for internal clock mode */
685 old_rate = ice->get_rate(ice);
686 if (force || (old_rate != rate))
687 ice->set_rate(ice, rate);
688 else if (rate == ice->cur_rate) {
689 spin_unlock_irqrestore(&ice->reg_lock, flags);
690 return 0;
691 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693
694 ice->cur_rate = rate;
695
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100696 /* setting master clock */
697 mclk_change = ice->set_mclk(ice, rate);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 spin_unlock_irqrestore(&ice->reg_lock, flags);
700
701 if (mclk_change && ice->gpio.i2s_mclk_changed)
702 ice->gpio.i2s_mclk_changed(ice);
703 if (ice->gpio.set_pro_rate)
704 ice->gpio.set_pro_rate(ice, rate);
705
706 /* set up codecs */
707 for (i = 0; i < ice->akm_codecs; i++) {
708 if (ice->akm[i].ops.set_rate_val)
709 ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
710 }
711 if (ice->spdif.ops.setup_rate)
712 ice->spdif.ops.setup_rate(ice, rate);
Takashi Iwai92d71002009-05-06 17:18:34 +0200713
714 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715}
716
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100717static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
718 struct snd_pcm_hw_params *hw_params)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100720 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai92d71002009-05-06 17:18:34 +0200721 int i, chs, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 chs = params_channels(hw_params);
Ingo Molnar62932df2006-01-16 16:34:20 +0100724 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /* mark surround channels */
726 if (substream == ice->playback_pro_substream) {
727 /* PDMA0 can be multi-channel up to 8 */
728 chs = chs / 2 - 1;
729 for (i = 0; i < chs; i++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100730 if (ice->pcm_reserved[i] &&
731 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100732 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return -EBUSY;
734 }
735 ice->pcm_reserved[i] = substream;
736 }
737 for (; i < 3; i++) {
738 if (ice->pcm_reserved[i] == substream)
739 ice->pcm_reserved[i] = NULL;
740 }
741 } else {
742 for (i = 0; i < 3; i++) {
743 /* check individual playback stream */
744 if (ice->playback_con_substream_ds[i] == substream) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100745 if (ice->pcm_reserved[i] &&
746 ice->pcm_reserved[i] != substream) {
Ingo Molnar62932df2006-01-16 16:34:20 +0100747 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 return -EBUSY;
749 }
750 ice->pcm_reserved[i] = substream;
751 break;
752 }
753 }
754 }
Ingo Molnar62932df2006-01-16 16:34:20 +0100755 mutex_unlock(&ice->open_mutex);
Takashi Iwai92d71002009-05-06 17:18:34 +0200756
757 err = snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
758 if (err < 0)
759 return err;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
762}
763
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100764static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100766 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 int i;
768
Ingo Molnar62932df2006-01-16 16:34:20 +0100769 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 /* unmark surround channels */
771 for (i = 0; i < 3; i++)
772 if (ice->pcm_reserved[i] == substream)
773 ice->pcm_reserved[i] = NULL;
Ingo Molnar62932df2006-01-16 16:34:20 +0100774 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return snd_pcm_lib_free_pages(substream);
776}
777
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100778static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100780 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 unsigned char val;
782 unsigned int size;
783
784 spin_lock_irq(&ice->reg_lock);
785 val = (8 - substream->runtime->channels) >> 1;
786 outb(val, ICEMT1724(ice, BURST));
787
788 outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));
789
790 size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400791 /* outl(size, ICEMT1724(ice, PLAYBACK_SIZE)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
793 outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
794 size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400795 /* outl(size, ICEMT1724(ice, PLAYBACK_COUNT)); */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
797 outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);
798
799 spin_unlock_irq(&ice->reg_lock);
800
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +0100801 /*
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100802 dev_dbg(ice->card->dev, "pro prepare: ch = %d, addr = 0x%x, "
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +0100803 "buffer = 0x%x, period = 0x%x\n",
804 substream->runtime->channels,
805 (unsigned int)substream->runtime->dma_addr,
806 snd_pcm_lib_buffer_bytes(substream),
807 snd_pcm_lib_period_bytes(substream));
808 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return 0;
810}
811
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100812static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100814 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 size_t ptr;
816
817 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
818 return 0;
819#if 0 /* read PLAYBACK_ADDR */
820 ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
821 if (ptr < substream->runtime->dma_addr) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100822 dev_dbg(ice->card->dev, "invalid negative ptr\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 return 0;
824 }
825 ptr -= substream->runtime->dma_addr;
826 ptr = bytes_to_frames(substream->runtime, ptr);
827 if (ptr >= substream->runtime->buffer_size) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100828 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100829 (int)ptr, (int)substream->runtime->period_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return 0;
831 }
832#else /* read PLAYBACK_SIZE */
833 ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
834 ptr = (ptr + 1) << 2;
835 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400836 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 ;
838 else if (ptr <= substream->runtime->buffer_size)
839 ptr = substream->runtime->buffer_size - ptr;
840 else {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100841 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100842 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 ptr = 0;
844 }
845#endif
846 return ptr;
847}
848
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100849static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100851 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100852 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 spin_lock_irq(&ice->reg_lock);
855 outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100856 outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
857 ice->profi_port + reg->size);
858 outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
859 ice->profi_port + reg->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 spin_unlock_irq(&ice->reg_lock);
861 return 0;
862}
863
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100864static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100866 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwai32b47da2007-01-29 15:26:36 +0100867 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 size_t ptr;
869
870 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
871 return 0;
872#if 0 /* use ADDR register */
873 ptr = inl(ice->profi_port + reg->addr);
874 ptr -= substream->runtime->dma_addr;
875 return bytes_to_frames(substream->runtime, ptr);
876#else /* use SIZE register */
877 ptr = inw(ice->profi_port + reg->size);
878 ptr = (ptr + 1) << 2;
879 ptr = bytes_to_frames(substream->runtime, ptr);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400880 if (!ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 ;
882 else if (ptr <= substream->runtime->buffer_size)
883 ptr = substream->runtime->buffer_size - ptr;
884 else {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +0100885 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100886 (int)ptr, (int)substream->runtime->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 ptr = 0;
888 }
889 return ptr;
890#endif
891}
892
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200893static const struct vt1724_pcm_reg vt1724_pdma0_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 .addr = VT1724_MT_PLAYBACK_ADDR,
895 .size = VT1724_MT_PLAYBACK_SIZE,
896 .count = VT1724_MT_PLAYBACK_COUNT,
897 .start = VT1724_PDMA0_START,
898};
899
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200900static const struct vt1724_pcm_reg vt1724_pdma4_reg = {
901 .addr = VT1724_MT_PDMA4_ADDR,
902 .size = VT1724_MT_PDMA4_SIZE,
903 .count = VT1724_MT_PDMA4_COUNT,
904 .start = VT1724_PDMA4_START,
905};
906
907static const struct vt1724_pcm_reg vt1724_rdma0_reg = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 .addr = VT1724_MT_CAPTURE_ADDR,
909 .size = VT1724_MT_CAPTURE_SIZE,
910 .count = VT1724_MT_CAPTURE_COUNT,
911 .start = VT1724_RDMA0_START,
912};
913
Takashi Iwaia5b7b5c2009-05-06 17:22:07 +0200914static const struct vt1724_pcm_reg vt1724_rdma1_reg = {
915 .addr = VT1724_MT_RDMA1_ADDR,
916 .size = VT1724_MT_RDMA1_SIZE,
917 .count = VT1724_MT_RDMA1_COUNT,
918 .start = VT1724_RDMA1_START,
919};
920
921#define vt1724_playback_pro_reg vt1724_pdma0_reg
922#define vt1724_playback_spdif_reg vt1724_pdma4_reg
923#define vt1724_capture_pro_reg vt1724_rdma0_reg
924#define vt1724_capture_spdif_reg vt1724_rdma1_reg
925
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400926static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
928 SNDRV_PCM_INFO_BLOCK_TRANSFER |
929 SNDRV_PCM_INFO_MMAP_VALID |
930 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
931 .formats = SNDRV_PCM_FMTBIT_S32_LE,
932 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
933 .rate_min = 8000,
934 .rate_max = 192000,
935 .channels_min = 2,
936 .channels_max = 8,
937 .buffer_bytes_max = (1UL << 21), /* 19bits dword */
938 .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
939 .period_bytes_max = (1UL << 21),
940 .periods_min = 2,
941 .periods_max = 1024,
942};
943
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400944static const struct snd_pcm_hardware snd_vt1724_spdif = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
946 SNDRV_PCM_INFO_BLOCK_TRANSFER |
947 SNDRV_PCM_INFO_MMAP_VALID |
948 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
949 .formats = SNDRV_PCM_FMTBIT_S32_LE,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200950 .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
951 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
952 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
953 SNDRV_PCM_RATE_192000),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 .rate_min = 32000,
Takashi Iwai2dfbeca2005-10-12 10:04:42 +0200955 .rate_max = 192000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 .channels_min = 2,
957 .channels_max = 2,
958 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
959 .period_bytes_min = 2 * 4 * 2,
960 .period_bytes_max = (1UL << 18),
961 .periods_min = 2,
962 .periods_max = 1024,
963};
964
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +0400965static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
967 SNDRV_PCM_INFO_BLOCK_TRANSFER |
968 SNDRV_PCM_INFO_MMAP_VALID |
969 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
970 .formats = SNDRV_PCM_FMTBIT_S32_LE,
971 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
972 .rate_min = 8000,
973 .rate_max = 192000,
974 .channels_min = 2,
975 .channels_max = 2,
976 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
977 .period_bytes_min = 2 * 4 * 2,
978 .period_bytes_max = (1UL << 18),
979 .periods_min = 2,
980 .periods_max = 1024,
981};
982
983/*
984 * set rate constraints
985 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100986static void set_std_hw_rates(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
989 /* I2S */
990 /* VT1720 doesn't support more than 96kHz */
991 if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100992 ice->hw_rates = &hw_constraints_rates_192;
993 else
994 ice->hw_rates = &hw_constraints_rates_96;
995 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 /* ACLINK */
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100997 ice->hw_rates = &hw_constraints_rates_48;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +0100999}
1000
1001static int set_rate_constraints(struct snd_ice1712 *ice,
1002 struct snd_pcm_substream *substream)
1003{
1004 struct snd_pcm_runtime *runtime = substream->runtime;
1005
1006 runtime->hw.rate_min = ice->hw_rates->list[0];
1007 runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
1008 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
1009 return snd_pcm_hw_constraint_list(runtime, 0,
1010 SNDRV_PCM_HW_PARAM_RATE,
1011 ice->hw_rates);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012}
1013
Pavel Hofmandb058282012-03-02 22:09:39 +01001014/* if the card has the internal rate locked (is_pro_locked), limit runtime
1015 hw rates to the current internal rate only.
1016*/
1017static void constrain_rate_if_locked(struct snd_pcm_substream *substream)
1018{
1019 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1020 struct snd_pcm_runtime *runtime = substream->runtime;
1021 unsigned int rate;
1022 if (is_pro_rate_locked(ice)) {
1023 rate = ice->get_rate(ice);
1024 if (rate >= runtime->hw.rate_min
1025 && rate <= runtime->hw.rate_max) {
1026 runtime->hw.rate_min = rate;
1027 runtime->hw.rate_max = rate;
1028 }
1029 }
1030}
1031
1032
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033/* multi-channel playback needs alignment 8x32bit regardless of the channels
1034 * actually used
1035 */
1036#define VT1724_BUFFER_ALIGN 0x20
1037
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001038static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001040 struct snd_pcm_runtime *runtime = substream->runtime;
1041 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Takashi Iwaia6b936b2008-08-29 16:17:25 +02001042 int chs, num_indeps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Takashi Iwai32b47da2007-01-29 15:26:36 +01001044 runtime->private_data = (void *)&vt1724_playback_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 ice->playback_pro_substream = substream;
1046 runtime->hw = snd_vt1724_playback_pro;
1047 snd_pcm_set_sync(substream);
1048 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1049 set_rate_constraints(ice, substream);
Ingo Molnar62932df2006-01-16 16:34:20 +01001050 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 /* calculate the currently available channels */
Takashi Iwaia6b936b2008-08-29 16:17:25 +02001052 num_indeps = ice->num_total_dacs / 2 - 1;
1053 for (chs = 0; chs < num_indeps; chs++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 if (ice->pcm_reserved[chs])
1055 break;
1056 }
1057 chs = (chs + 1) * 2;
1058 runtime->hw.channels_max = chs;
1059 if (chs > 2) /* channels must be even */
1060 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
Ingo Molnar62932df2006-01-16 16:34:20 +01001061 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1063 VT1724_BUFFER_ALIGN);
1064 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1065 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001066 constrain_rate_if_locked(substream);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001067 if (ice->pro_open)
1068 ice->pro_open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return 0;
1070}
1071
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001072static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001074 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1075 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Takashi Iwai32b47da2007-01-29 15:26:36 +01001077 runtime->private_data = (void *)&vt1724_capture_pro_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 ice->capture_pro_substream = substream;
1079 runtime->hw = snd_vt1724_2ch_stereo;
1080 snd_pcm_set_sync(substream);
1081 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1082 set_rate_constraints(ice, substream);
1083 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1084 VT1724_BUFFER_ALIGN);
1085 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1086 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001087 constrain_rate_if_locked(substream);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001088 if (ice->pro_open)
1089 ice->pro_open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return 0;
1091}
1092
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001093static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001095 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001098 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 ice->playback_pro_substream = NULL;
1100
1101 return 0;
1102}
1103
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001104static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001106 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001109 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 ice->capture_pro_substream = NULL;
1111 return 0;
1112}
1113
Julia Lawall6769e9882016-09-02 00:13:10 +02001114static const struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 .open = snd_vt1724_playback_pro_open,
1116 .close = snd_vt1724_playback_pro_close,
1117 .ioctl = snd_pcm_lib_ioctl,
1118 .hw_params = snd_vt1724_pcm_hw_params,
1119 .hw_free = snd_vt1724_pcm_hw_free,
1120 .prepare = snd_vt1724_playback_pro_prepare,
1121 .trigger = snd_vt1724_pcm_trigger,
1122 .pointer = snd_vt1724_playback_pro_pointer,
1123};
1124
Julia Lawall6769e9882016-09-02 00:13:10 +02001125static const struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 .open = snd_vt1724_capture_pro_open,
1127 .close = snd_vt1724_capture_pro_close,
1128 .ioctl = snd_pcm_lib_ioctl,
1129 .hw_params = snd_vt1724_pcm_hw_params,
1130 .hw_free = snd_vt1724_pcm_hw_free,
1131 .prepare = snd_vt1724_pcm_prepare,
1132 .trigger = snd_vt1724_pcm_trigger,
1133 .pointer = snd_vt1724_pcm_pointer,
1134};
1135
Bill Pembertone23e7a12012-12-06 12:35:10 -05001136static int snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001138 struct snd_pcm *pcm;
Pavel Hofmanffd364d2012-01-10 20:45:28 +01001139 int capt, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Pavel Hofmanffd364d2012-01-10 20:45:28 +01001141 if ((ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_ADC_MASK) ==
1142 VT1724_CFG_ADC_NONE)
1143 capt = 0;
1144 else
1145 capt = 1;
1146 err = snd_pcm_new(ice->card, "ICE1724", device, 1, capt, &pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (err < 0)
1148 return err;
1149
1150 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
Pavel Hofmanffd364d2012-01-10 20:45:28 +01001151 if (capt)
1152 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1153 &snd_vt1724_capture_pro_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 pcm->private_data = ice;
1156 pcm->info_flags = 0;
1157 strcpy(pcm->name, "ICE1724");
1158
1159 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001160 snd_dma_pci_data(ice->pci),
1161 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 ice->pcm_pro = pcm;
1164
1165 return 0;
1166}
1167
1168
1169/*
1170 * SPDIF PCM
1171 */
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173/* update spdif control bits; call with reg_lock */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001174static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175{
1176 unsigned char cbit, disabled;
1177
1178 cbit = inb(ICEREG1724(ice, SPDIF_CFG));
1179 disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
1180 if (cbit != disabled)
1181 outb(disabled, ICEREG1724(ice, SPDIF_CFG));
1182 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1183 if (cbit != disabled)
1184 outb(cbit, ICEREG1724(ice, SPDIF_CFG));
1185 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1186}
1187
1188/* update SPDIF control bits according to the given rate */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001189static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190{
1191 unsigned int val, nval;
1192 unsigned long flags;
1193
1194 spin_lock_irqsave(&ice->reg_lock, flags);
1195 nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
1196 nval &= ~(7 << 12);
1197 switch (rate) {
1198 case 44100: break;
1199 case 48000: nval |= 2 << 12; break;
1200 case 32000: nval |= 3 << 12; break;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001201 case 88200: nval |= 4 << 12; break;
1202 case 96000: nval |= 5 << 12; break;
1203 case 192000: nval |= 6 << 12; break;
1204 case 176400: nval |= 7 << 12; break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
1206 if (val != nval)
1207 update_spdif_bits(ice, nval);
1208 spin_unlock_irqrestore(&ice->reg_lock, flags);
1209}
1210
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001211static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001213 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001214 if (!ice->force_pdma4)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 update_spdif_rate(ice, substream->runtime->rate);
1216 return snd_vt1724_pcm_prepare(substream);
1217}
1218
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001219static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001221 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1222 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Takashi Iwai32b47da2007-01-29 15:26:36 +01001224 runtime->private_data = (void *)&vt1724_playback_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 ice->playback_con_substream = substream;
1226 if (ice->force_pdma4) {
1227 runtime->hw = snd_vt1724_2ch_stereo;
1228 set_rate_constraints(ice, substream);
1229 } else
1230 runtime->hw = snd_vt1724_spdif;
1231 snd_pcm_set_sync(substream);
1232 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1233 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1234 VT1724_BUFFER_ALIGN);
1235 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1236 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001237 constrain_rate_if_locked(substream);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001238 if (ice->spdif.ops.open)
1239 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 return 0;
1241}
1242
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001243static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001245 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001248 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 ice->playback_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001250 if (ice->spdif.ops.close)
1251 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
1253 return 0;
1254}
1255
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001256static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001258 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1259 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Takashi Iwai32b47da2007-01-29 15:26:36 +01001261 runtime->private_data = (void *)&vt1724_capture_spdif_reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 ice->capture_con_substream = substream;
1263 if (ice->force_rdma1) {
1264 runtime->hw = snd_vt1724_2ch_stereo;
1265 set_rate_constraints(ice, substream);
1266 } else
1267 runtime->hw = snd_vt1724_spdif;
1268 snd_pcm_set_sync(substream);
1269 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1270 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1271 VT1724_BUFFER_ALIGN);
1272 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1273 VT1724_BUFFER_ALIGN);
Pavel Hofmandb058282012-03-02 22:09:39 +01001274 constrain_rate_if_locked(substream);
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001275 if (ice->spdif.ops.open)
1276 ice->spdif.ops.open(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 return 0;
1278}
1279
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001280static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001282 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001285 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 ice->capture_con_substream = NULL;
Takashi Iwaic93f5a12008-03-14 17:17:09 +01001287 if (ice->spdif.ops.close)
1288 ice->spdif.ops.close(ice, substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 return 0;
1291}
1292
Julia Lawall6769e9882016-09-02 00:13:10 +02001293static const struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 .open = snd_vt1724_playback_spdif_open,
1295 .close = snd_vt1724_playback_spdif_close,
1296 .ioctl = snd_pcm_lib_ioctl,
1297 .hw_params = snd_vt1724_pcm_hw_params,
1298 .hw_free = snd_vt1724_pcm_hw_free,
1299 .prepare = snd_vt1724_playback_spdif_prepare,
1300 .trigger = snd_vt1724_pcm_trigger,
1301 .pointer = snd_vt1724_pcm_pointer,
1302};
1303
Julia Lawall6769e9882016-09-02 00:13:10 +02001304static const struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 .open = snd_vt1724_capture_spdif_open,
1306 .close = snd_vt1724_capture_spdif_close,
1307 .ioctl = snd_pcm_lib_ioctl,
1308 .hw_params = snd_vt1724_pcm_hw_params,
1309 .hw_free = snd_vt1724_pcm_hw_free,
1310 .prepare = snd_vt1724_pcm_prepare,
1311 .trigger = snd_vt1724_pcm_trigger,
1312 .pointer = snd_vt1724_pcm_pointer,
1313};
1314
1315
Bill Pembertone23e7a12012-12-06 12:35:10 -05001316static int snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
1318 char *name;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001319 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 int play, capt;
1321 int err;
1322
1323 if (ice->force_pdma4 ||
1324 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
1325 play = 1;
1326 ice->has_spdif = 1;
1327 } else
1328 play = 0;
1329 if (ice->force_rdma1 ||
1330 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
1331 capt = 1;
1332 ice->has_spdif = 1;
1333 } else
1334 capt = 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001335 if (!play && !capt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 return 0; /* no spdif device */
1337
1338 if (ice->force_pdma4 || ice->force_rdma1)
1339 name = "ICE1724 Secondary";
1340 else
Alan Horstmann8eca7532009-01-05 18:30:04 +01001341 name = "ICE1724 IEC958";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
1343 if (err < 0)
1344 return err;
1345
1346 if (play)
1347 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1348 &snd_vt1724_playback_spdif_ops);
1349 if (capt)
1350 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1351 &snd_vt1724_capture_spdif_ops);
1352
1353 pcm->private_data = ice;
1354 pcm->info_flags = 0;
1355 strcpy(pcm->name, name);
1356
1357 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001358 snd_dma_pci_data(ice->pci),
Robert Hancock1d4efa62009-10-07 20:19:21 -06001359 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
1361 ice->pcm = pcm;
1362
1363 return 0;
1364}
1365
1366
1367/*
1368 * independent surround PCMs
1369 */
1370
Takashi Iwai32b47da2007-01-29 15:26:36 +01001371static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 {
1373 .addr = VT1724_MT_PDMA1_ADDR,
1374 .size = VT1724_MT_PDMA1_SIZE,
1375 .count = VT1724_MT_PDMA1_COUNT,
1376 .start = VT1724_PDMA1_START,
1377 },
1378 {
1379 .addr = VT1724_MT_PDMA2_ADDR,
1380 .size = VT1724_MT_PDMA2_SIZE,
1381 .count = VT1724_MT_PDMA2_COUNT,
1382 .start = VT1724_PDMA2_START,
1383 },
1384 {
1385 .addr = VT1724_MT_PDMA3_ADDR,
1386 .size = VT1724_MT_PDMA3_SIZE,
1387 .count = VT1724_MT_PDMA3_COUNT,
1388 .start = VT1724_PDMA3_START,
1389 },
1390};
1391
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001392static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001394 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 unsigned char val;
1396
1397 spin_lock_irq(&ice->reg_lock);
1398 val = 3 - substream->number;
1399 if (inb(ICEMT1724(ice, BURST)) < val)
1400 outb(val, ICEMT1724(ice, BURST));
1401 spin_unlock_irq(&ice->reg_lock);
1402 return snd_vt1724_pcm_prepare(substream);
1403}
1404
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001405static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001407 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1408 struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Ingo Molnar62932df2006-01-16 16:34:20 +01001410 mutex_lock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 /* already used by PDMA0? */
1412 if (ice->pcm_reserved[substream->number]) {
Ingo Molnar62932df2006-01-16 16:34:20 +01001413 mutex_unlock(&ice->open_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EBUSY; /* FIXME: should handle blocking mode properly */
1415 }
Ingo Molnar62932df2006-01-16 16:34:20 +01001416 mutex_unlock(&ice->open_mutex);
Takashi Iwai32b47da2007-01-29 15:26:36 +01001417 runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 ice->playback_con_substream_ds[substream->number] = substream;
1419 runtime->hw = snd_vt1724_2ch_stereo;
1420 snd_pcm_set_sync(substream);
1421 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1422 set_rate_constraints(ice, substream);
1423 return 0;
1424}
1425
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001426static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001428 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 if (PRO_RATE_RESET)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001431 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 ice->playback_con_substream_ds[substream->number] = NULL;
1433 ice->pcm_reserved[substream->number] = NULL;
1434
1435 return 0;
1436}
1437
Julia Lawall6769e9882016-09-02 00:13:10 +02001438static const struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 .open = snd_vt1724_playback_indep_open,
1440 .close = snd_vt1724_playback_indep_close,
1441 .ioctl = snd_pcm_lib_ioctl,
1442 .hw_params = snd_vt1724_pcm_hw_params,
1443 .hw_free = snd_vt1724_pcm_hw_free,
1444 .prepare = snd_vt1724_playback_indep_prepare,
1445 .trigger = snd_vt1724_pcm_trigger,
1446 .pointer = snd_vt1724_pcm_pointer,
1447};
1448
1449
Bill Pembertone23e7a12012-12-06 12:35:10 -05001450static int snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001452 struct snd_pcm *pcm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 int play;
1454 int err;
1455
1456 play = ice->num_total_dacs / 2 - 1;
1457 if (play <= 0)
1458 return 0;
1459
1460 err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
1461 if (err < 0)
1462 return err;
1463
1464 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1465 &snd_vt1724_playback_indep_ops);
1466
1467 pcm->private_data = ice;
1468 pcm->info_flags = 0;
1469 strcpy(pcm->name, "ICE1724 Surround PCM");
1470
1471 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001472 snd_dma_pci_data(ice->pci),
Robert Hancock1d4efa62009-10-07 20:19:21 -06001473 256*1024, 256*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 ice->pcm_ds = pcm;
1476
1477 return 0;
1478}
1479
1480
1481/*
1482 * Mixer section
1483 */
1484
Bill Pembertone23e7a12012-12-06 12:35:10 -05001485static int snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 int err;
1488
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001489 if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001490 struct snd_ac97_bus *pbus;
1491 struct snd_ac97_template ac97;
1492 static struct snd_ac97_bus_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 .write = snd_vt1724_ac97_write,
1494 .read = snd_vt1724_ac97_read,
1495 };
1496
1497 /* cold reset */
1498 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
1499 mdelay(5); /* FIXME */
1500 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
1501
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001502 err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
1503 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return err;
1505 memset(&ac97, 0, sizeof(ac97));
1506 ac97.private_data = ice;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001507 err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
1508 if (err < 0)
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01001509 dev_warn(ice->card->dev,
1510 "cannot initialize pro ac97, skipped\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 else
1512 return 0;
1513 }
1514 /* I2S mixer only */
1515 strcat(ice->card->mixername, "ICE1724 - multitrack");
1516 return 0;
1517}
1518
1519/*
1520 *
1521 */
1522
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001523static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524{
1525 return (unsigned int)ice->eeprom.data[idx] | \
1526 ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
1527 ((unsigned int)ice->eeprom.data[idx + 2] << 16);
1528}
1529
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001530static void snd_vt1724_proc_read(struct snd_info_entry *entry,
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001531 struct snd_info_buffer *buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001533 struct snd_ice1712 *ice = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 unsigned int idx;
1535
1536 snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1537 snd_iprintf(buffer, "EEPROM:\n");
1538
1539 snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
1540 snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
1541 snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001542 snd_iprintf(buffer, " System Config : 0x%x\n",
1543 ice->eeprom.data[ICE_EEP2_SYSCONF]);
1544 snd_iprintf(buffer, " ACLink : 0x%x\n",
1545 ice->eeprom.data[ICE_EEP2_ACLINK]);
1546 snd_iprintf(buffer, " I2S : 0x%x\n",
1547 ice->eeprom.data[ICE_EEP2_I2S]);
1548 snd_iprintf(buffer, " S/PDIF : 0x%x\n",
1549 ice->eeprom.data[ICE_EEP2_SPDIF]);
1550 snd_iprintf(buffer, " GPIO direction : 0x%x\n",
1551 ice->eeprom.gpiodir);
1552 snd_iprintf(buffer, " GPIO mask : 0x%x\n",
1553 ice->eeprom.gpiomask);
1554 snd_iprintf(buffer, " GPIO state : 0x%x\n",
1555 ice->eeprom.gpiostate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 for (idx = 0x12; idx < ice->eeprom.size; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001557 snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
1558 idx, ice->eeprom.data[idx]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 snd_iprintf(buffer, "\nRegisters:\n");
1561
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001562 snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
1563 (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 for (idx = 0x0; idx < 0x20 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001565 snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
1566 idx, inb(ice->port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 for (idx = 0x0; idx < 0x30 ; idx++)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001568 snd_iprintf(buffer, " MT%02x : 0x%02x\n",
1569 idx, inb(ice->profi_port+idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570}
1571
Bill Pembertone23e7a12012-12-06 12:35:10 -05001572static void snd_vt1724_proc_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001574 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001576 if (!snd_card_proc_new(ice->card, "ice1724", &entry))
Takashi Iwaibf850202006-04-28 15:13:41 +02001577 snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578}
1579
1580/*
1581 *
1582 */
1583
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001584static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
1585 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586{
1587 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001588 uinfo->count = sizeof(struct snd_ice1712_eeprom);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 return 0;
1590}
1591
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001592static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
1593 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001595 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1598 return 0;
1599}
1600
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05301601static const struct snd_kcontrol_new snd_vt1724_eeprom = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1603 .name = "ICE1724 EEPROM",
1604 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1605 .info = snd_vt1724_eeprom_info,
1606 .get = snd_vt1724_eeprom_get
1607};
1608
1609/*
1610 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001611static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
1612 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613{
1614 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1615 uinfo->count = 1;
1616 return 0;
1617}
1618
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001619static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001621 unsigned int val, rbits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 val = diga->status[0] & 0x03; /* professional, non-audio */
1624 if (val & 0x01) {
1625 /* professional */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001626 if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
1627 IEC958_AES0_PRO_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 val |= 1U << 3;
Takashi Iwai2dfbeca2005-10-12 10:04:42 +02001629 rbits = (diga->status[4] >> 3) & 0x0f;
1630 if (rbits) {
1631 switch (rbits) {
1632 case 2: val |= 5 << 12; break; /* 96k */
1633 case 3: val |= 6 << 12; break; /* 192k */
1634 case 10: val |= 4 << 12; break; /* 88.2k */
1635 case 11: val |= 7 << 12; break; /* 176.4k */
1636 }
1637 } else {
1638 switch (diga->status[0] & IEC958_AES0_PRO_FS) {
1639 case IEC958_AES0_PRO_FS_44100:
1640 break;
1641 case IEC958_AES0_PRO_FS_32000:
1642 val |= 3U << 12;
1643 break;
1644 default:
1645 val |= 2U << 12;
1646 break;
1647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649 } else {
1650 /* consumer */
1651 val |= diga->status[1] & 0x04; /* copyright */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001652 if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
1653 IEC958_AES0_CON_EMPHASIS_5015)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 val |= 1U << 3;
1655 val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
1656 val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
1657 }
1658 return val;
1659}
1660
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001661static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
1663 memset(diga->status, 0, sizeof(diga->status));
1664 diga->status[0] = val & 0x03; /* professional, non-audio */
1665 if (val & 0x01) {
1666 /* professional */
1667 if (val & (1U << 3))
1668 diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
1669 switch ((val >> 12) & 0x7) {
1670 case 0:
1671 break;
1672 case 2:
1673 diga->status[0] |= IEC958_AES0_PRO_FS_32000;
1674 break;
1675 default:
1676 diga->status[0] |= IEC958_AES0_PRO_FS_48000;
1677 break;
1678 }
1679 } else {
1680 /* consumer */
1681 diga->status[0] |= val & (1U << 2); /* copyright */
1682 if (val & (1U << 3))
1683 diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
1684 diga->status[1] |= (val >> 4) & 0x3f; /* category */
1685 diga->status[3] |= (val >> 12) & 0x07; /* fs */
1686 }
1687}
1688
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001689static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
1690 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001692 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 unsigned int val;
1694 val = inw(ICEMT1724(ice, SPDIF_CTRL));
1695 decode_spdif_bits(&ucontrol->value.iec958, val);
1696 return 0;
1697}
1698
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001699static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
1700 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001702 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 unsigned int val, old;
1704
1705 val = encode_spdif_bits(&ucontrol->value.iec958);
1706 spin_lock_irq(&ice->reg_lock);
1707 old = inw(ICEMT1724(ice, SPDIF_CTRL));
1708 if (val != old)
1709 update_spdif_bits(ice, val);
1710 spin_unlock_irq(&ice->reg_lock);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001711 return val != old;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712}
1713
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05301714static const struct snd_kcontrol_new snd_vt1724_spdif_default =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001717 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 .info = snd_vt1724_spdif_info,
1719 .get = snd_vt1724_spdif_default_get,
1720 .put = snd_vt1724_spdif_default_put
1721};
1722
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001723static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
1724 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
1726 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1727 IEC958_AES0_PROFESSIONAL |
1728 IEC958_AES0_CON_NOT_COPYRIGHT |
1729 IEC958_AES0_CON_EMPHASIS;
1730 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1731 IEC958_AES1_CON_CATEGORY;
1732 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1733 return 0;
1734}
1735
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001736static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
1737 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738{
1739 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1740 IEC958_AES0_PROFESSIONAL |
1741 IEC958_AES0_PRO_FS |
1742 IEC958_AES0_PRO_EMPHASIS;
1743 return 0;
1744}
1745
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05301746static const struct snd_kcontrol_new snd_vt1724_spdif_maskc =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
1748 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001749 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001750 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 .info = snd_vt1724_spdif_info,
1752 .get = snd_vt1724_spdif_maskc_get,
1753};
1754
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05301755static const struct snd_kcontrol_new snd_vt1724_spdif_maskp =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
1757 .access = SNDRV_CTL_ELEM_ACCESS_READ,
Clemens Ladisch67ed4162005-07-29 15:32:58 +02001758 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001759 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 .info = snd_vt1724_spdif_info,
1761 .get = snd_vt1724_spdif_maskp_get,
1762};
1763
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001764#define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001766static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
1767 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001769 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1770 ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
1771 VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 return 0;
1773}
1774
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001775static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
1776 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001778 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 unsigned char old, val;
1780
1781 spin_lock_irq(&ice->reg_lock);
1782 old = val = inb(ICEREG1724(ice, SPDIF_CFG));
1783 val &= ~VT1724_CFG_SPDIF_OUT_EN;
1784 if (ucontrol->value.integer.value[0])
1785 val |= VT1724_CFG_SPDIF_OUT_EN;
1786 if (old != val)
1787 outb(val, ICEREG1724(ice, SPDIF_CFG));
1788 spin_unlock_irq(&ice->reg_lock);
1789 return old != val;
1790}
1791
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05301792static const struct snd_kcontrol_new snd_vt1724_spdif_switch =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
1794 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1795 /* FIXME: the following conflict with IEC958 Playback Route */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001796 /* .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
1797 .name = SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 .info = snd_vt1724_spdif_sw_info,
1799 .get = snd_vt1724_spdif_sw_get,
1800 .put = snd_vt1724_spdif_sw_put
1801};
1802
1803
1804#if 0 /* NOT USED YET */
1805/*
1806 * GPIO access from extern
1807 */
1808
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001809#define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001811int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
1812 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001814 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 int shift = kcontrol->private_value & 0xff;
1816 int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 snd_ice1712_save_gpio_status(ice);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001819 ucontrol->value.integer.value[0] =
1820 (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 snd_ice1712_restore_gpio_status(ice);
1822 return 0;
1823}
1824
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001825int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
1826 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001828 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 int shift = kcontrol->private_value & 0xff;
1830 int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1831 unsigned int val, nval;
1832
1833 if (kcontrol->private_value & (1 << 31))
1834 return -EPERM;
1835 nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
1836 snd_ice1712_save_gpio_status(ice);
1837 val = snd_ice1712_gpio_read(ice);
1838 nval |= val & ~(1 << shift);
1839 if (val != nval)
1840 snd_ice1712_gpio_write(ice, nval);
1841 snd_ice1712_restore_gpio_status(ice);
1842 return val != nval;
1843}
1844#endif /* NOT USED YET */
1845
1846/*
1847 * rate
1848 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001849static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
1850 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001852 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001853 int hw_rates_count = ice->hw_rates->count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1855 uinfo->count = 1;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001856
Pavel Hofman219e2cd2012-01-05 22:01:56 +01001857 /* internal clocks */
1858 uinfo->value.enumerated.items = hw_rates_count;
1859 /* external clocks */
1860 if (ice->force_rdma1 ||
1861 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN))
1862 uinfo->value.enumerated.items += ice->ext_clock_count;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001863 /* upper limit - keep at top */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1865 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001866 if (uinfo->value.enumerated.item >= hw_rates_count)
1867 /* ext_clock items */
1868 strcpy(uinfo->value.enumerated.name,
1869 ice->ext_clock_names[
1870 uinfo->value.enumerated.item - hw_rates_count]);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001871 else
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001872 /* int clock items */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001873 sprintf(uinfo->value.enumerated.name, "%d",
1874 ice->hw_rates->list[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return 0;
1876}
1877
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001878static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
1879 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001881 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001882 unsigned int i, rate;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04001883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001885 if (ice->is_spdif_master(ice)) {
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001886 ucontrol->value.enumerated.item[0] = ice->hw_rates->count +
1887 ice->get_spdif_master_type(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001889 rate = ice->get_rate(ice);
1890 ucontrol->value.enumerated.item[0] = 0;
1891 for (i = 0; i < ice->hw_rates->count; i++) {
1892 if (ice->hw_rates->list[i] == rate) {
1893 ucontrol->value.enumerated.item[0] = i;
1894 break;
1895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 }
1898 spin_unlock_irq(&ice->reg_lock);
1899 return 0;
1900}
1901
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001902static int stdclock_get_spdif_master_type(struct snd_ice1712 *ice)
1903{
1904 /* standard external clock - only single type - SPDIF IN */
1905 return 0;
1906}
1907
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001908/* setting clock to external - SPDIF */
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001909static int stdclock_set_spdif_clock(struct snd_ice1712 *ice, int type)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001910{
1911 unsigned char oval;
1912 unsigned char i2s_oval;
1913 oval = inb(ICEMT1724(ice, RATE));
1914 outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
1915 /* setting 256fs */
1916 i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
1917 outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001918 return 0;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001919}
1920
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001921
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001922static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
1923 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001925 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001926 unsigned int old_rate, new_rate;
1927 unsigned int item = ucontrol->value.enumerated.item[0];
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001928 unsigned int first_ext_clock = ice->hw_rates->count;
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001929
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001930 if (item > first_ext_clock + ice->ext_clock_count - 1)
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001931 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001933 /* if rate = 0 => external clock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 spin_lock_irq(&ice->reg_lock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001935 if (ice->is_spdif_master(ice))
1936 old_rate = 0;
1937 else
1938 old_rate = ice->get_rate(ice);
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001939 if (item >= first_ext_clock) {
1940 /* switching to external clock */
1941 ice->set_spdif_clock(ice, item - first_ext_clock);
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001942 new_rate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 } else {
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001944 /* internal on-card clock */
1945 new_rate = ice->hw_rates->list[item];
1946 ice->pro_rate_default = new_rate;
1947 spin_unlock_irq(&ice->reg_lock);
1948 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
1949 spin_lock_irq(&ice->reg_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 spin_unlock_irq(&ice->reg_lock);
1952
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02001953 /* the first switch to the ext. clock mode? */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001954 if (old_rate != new_rate && !new_rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 /* notify akm chips as well */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001956 unsigned int i;
1957 if (ice->gpio.set_pro_rate)
1958 ice->gpio.set_pro_rate(ice, 0);
1959 for (i = 0; i < ice->akm_codecs; i++) {
1960 if (ice->akm[i].ops.set_rate_val)
1961 ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963 }
Pavel Hofmand16be8e2008-03-20 12:10:27 +01001964 return old_rate != new_rate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05301967static const struct snd_kcontrol_new snd_vt1724_pro_internal_clock = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1969 .name = "Multi Track Internal Clock",
1970 .info = snd_vt1724_pro_internal_clock_info,
1971 .get = snd_vt1724_pro_internal_clock_get,
1972 .put = snd_vt1724_pro_internal_clock_put
1973};
1974
Takashi Iwaia5ce8892007-07-23 15:42:26 +02001975#define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001977static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
1978 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1981 return 0;
1982}
1983
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001984static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
1985 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01001987 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 int change = 0, nval;
1989
1990 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1991 spin_lock_irq(&ice->reg_lock);
1992 change = PRO_RATE_LOCKED != nval;
1993 PRO_RATE_LOCKED = nval;
1994 spin_unlock_irq(&ice->reg_lock);
1995 return change;
1996}
1997
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05301998static const struct snd_kcontrol_new snd_vt1724_pro_rate_locking = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2000 .name = "Multi Track Rate Locking",
2001 .info = snd_vt1724_pro_rate_locking_info,
2002 .get = snd_vt1724_pro_rate_locking_get,
2003 .put = snd_vt1724_pro_rate_locking_put
2004};
2005
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002006#define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002008static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
2009 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010{
2011 ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
2012 return 0;
2013}
2014
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002015static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
2016 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002018 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 int change = 0, nval;
2020
2021 nval = ucontrol->value.integer.value[0] ? 1 : 0;
2022 spin_lock_irq(&ice->reg_lock);
2023 change = PRO_RATE_RESET != nval;
2024 PRO_RATE_RESET = nval;
2025 spin_unlock_irq(&ice->reg_lock);
2026 return change;
2027}
2028
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05302029static const struct snd_kcontrol_new snd_vt1724_pro_rate_reset = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2031 .name = "Multi Track Rate Reset",
2032 .info = snd_vt1724_pro_rate_reset_info,
2033 .get = snd_vt1724_pro_rate_reset_get,
2034 .put = snd_vt1724_pro_rate_reset_put
2035};
2036
2037
2038/*
2039 * routing
2040 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002041static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
2042 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
Takashi Iwaia2af0502012-10-17 09:21:48 +02002044 static const char * const texts[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 "PCM Out", /* 0 */
2046 "H/W In 0", "H/W In 1", /* 1-2 */
2047 "IEC958 In L", "IEC958 In R", /* 3-4 */
2048 };
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002049
Takashi Iwai597da2e2014-10-20 18:18:50 +02002050 return snd_ctl_enum_info(uinfo, 1, 5, texts);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051}
2052
2053static inline int analog_route_shift(int idx)
2054{
2055 return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
2056}
2057
2058static inline int digital_route_shift(int idx)
2059{
2060 return idx * 3;
2061}
2062
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002063int snd_ice1724_get_route_val(struct snd_ice1712 *ice, int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 unsigned long val;
2066 unsigned char eitem;
Takashi Iwai32b47da2007-01-29 15:26:36 +01002067 static const unsigned char xlate[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 0, 255, 1, 2, 255, 255, 3, 4,
2069 };
2070
2071 val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2072 val >>= shift;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002073 val &= 7; /* we now have 3 bits per output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 eitem = xlate[val];
2075 if (eitem == 255) {
2076 snd_BUG();
2077 return 0;
2078 }
2079 return eitem;
2080}
2081
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002082int snd_ice1724_put_route_val(struct snd_ice1712 *ice, unsigned int val,
2083 int shift)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 unsigned int old_val, nval;
2086 int change;
Takashi Iwai32b47da2007-01-29 15:26:36 +01002087 static const unsigned char xroute[8] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 0, /* PCM */
2089 2, /* PSDIN0 Left */
2090 3, /* PSDIN0 Right */
2091 6, /* SPDIN Left */
2092 7, /* SPDIN Right */
2093 };
2094
2095 nval = xroute[val % 5];
2096 val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2097 val &= ~(0x07 << shift);
2098 val |= nval << shift;
2099 change = val != old_val;
2100 if (change)
2101 outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
2102 return change;
2103}
2104
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002105static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
2106 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002108 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002110 ucontrol->value.enumerated.item[0] =
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002111 snd_ice1724_get_route_val(ice, analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 return 0;
2113}
2114
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002115static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
2116 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002118 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002120 return snd_ice1724_put_route_val(ice,
2121 ucontrol->value.enumerated.item[0],
2122 analog_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123}
2124
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002125static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
2126 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002128 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002130 ucontrol->value.enumerated.item[0] =
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002131 snd_ice1724_get_route_val(ice, digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 return 0;
2133}
2134
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002135static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
2136 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002138 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002140 return snd_ice1724_put_route_val(ice,
2141 ucontrol->value.enumerated.item[0],
2142 digital_route_shift(idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143}
2144
Bill Pembertone23e7a12012-12-06 12:35:10 -05002145static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route =
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002146{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2148 .name = "H/W Playback Route",
2149 .info = snd_vt1724_pro_route_info,
2150 .get = snd_vt1724_pro_route_analog_get,
2151 .put = snd_vt1724_pro_route_analog_put,
2152};
2153
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05302154static const struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002156 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 .info = snd_vt1724_pro_route_info,
2158 .get = snd_vt1724_pro_route_spdif_get,
2159 .put = snd_vt1724_pro_route_spdif_put,
2160 .count = 2,
2161};
2162
2163
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002164static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
2165 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2168 uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
2169 uinfo->value.integer.min = 0;
2170 uinfo->value.integer.max = 255;
2171 return 0;
2172}
2173
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002174static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
2175 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002177 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 int idx;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002179
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 spin_lock_irq(&ice->reg_lock);
2181 for (idx = 0; idx < 22; idx++) {
2182 outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002183 ucontrol->value.integer.value[idx] =
2184 inb(ICEMT1724(ice, MONITOR_PEAKDATA));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186 spin_unlock_irq(&ice->reg_lock);
2187 return 0;
2188}
2189
Bhumika Goyalf3b827e2017-02-20 00:18:09 +05302190static const struct snd_kcontrol_new snd_vt1724_mixer_pro_peak = {
Pavel Hofman2bdf6632009-10-06 16:04:11 +02002191 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 .name = "Multi Track Peak",
2193 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2194 .info = snd_vt1724_pro_peak_info,
2195 .get = snd_vt1724_pro_peak_get
2196};
2197
2198/*
2199 *
2200 */
2201
Bill Pembertone23e7a12012-12-06 12:35:10 -05002202static struct snd_ice1712_card_info no_matched;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002204
2205/*
2206 ooAoo cards with no controls
2207*/
Bill Pembertone23e7a12012-12-06 12:35:10 -05002208static unsigned char ooaoo_sq210_eeprom[] = {
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002209 [ICE_EEP2_SYSCONF] = 0x4c, /* 49MHz crystal, no mpu401, no ADC,
2210 1xDACs */
2211 [ICE_EEP2_ACLINK] = 0x80, /* I2S */
2212 [ICE_EEP2_I2S] = 0x78, /* no volume, 96k, 24bit, 192k */
2213 [ICE_EEP2_SPDIF] = 0xc1, /* out-en, out-int, out-ext */
2214 [ICE_EEP2_GPIO_DIR] = 0x00, /* no GPIOs are used */
2215 [ICE_EEP2_GPIO_DIR1] = 0x00,
2216 [ICE_EEP2_GPIO_DIR2] = 0x00,
2217 [ICE_EEP2_GPIO_MASK] = 0xff,
2218 [ICE_EEP2_GPIO_MASK1] = 0xff,
2219 [ICE_EEP2_GPIO_MASK2] = 0xff,
2220
2221 [ICE_EEP2_GPIO_STATE] = 0x00, /* inputs */
2222 [ICE_EEP2_GPIO_STATE1] = 0x00, /* all 1, but GPIO_CPLD_RW
2223 and GPIO15 always zero */
2224 [ICE_EEP2_GPIO_STATE2] = 0x00, /* inputs */
2225};
2226
2227
Bill Pembertone23e7a12012-12-06 12:35:10 -05002228static struct snd_ice1712_card_info snd_vt1724_ooaoo_cards[] = {
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002229 {
2230 .name = "ooAoo SQ210a",
2231 .model = "sq210a",
2232 .eeprom_size = sizeof(ooaoo_sq210_eeprom),
2233 .eeprom_data = ooaoo_sq210_eeprom,
2234 },
2235 { } /* terminator */
2236};
2237
Bill Pembertone23e7a12012-12-06 12:35:10 -05002238static struct snd_ice1712_card_info *card_tables[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 snd_vt1724_revo_cards,
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002240 snd_vt1724_amp_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 snd_vt1724_aureon_cards,
2242 snd_vt1720_mobo_cards,
2243 snd_vt1720_pontis_cards,
Julian Scheel6b8d6e52008-01-16 19:50:00 +01002244 snd_vt1724_prodigy_hifi_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 snd_vt1724_prodigy192_cards,
2246 snd_vt1724_juli_cards,
Takashi Iwai72cbfd42009-05-06 17:33:19 +02002247 snd_vt1724_maya44_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 snd_vt1724_phase_cards,
Clement Guedezf6cdab52007-01-08 10:48:41 +01002249 snd_vt1724_wtm_cards,
Shin-ya Okadaf31639b2007-10-23 15:08:18 +02002250 snd_vt1724_se_cards,
Pavel Hofman6ef80702009-09-16 22:25:41 +02002251 snd_vt1724_qtet_cards,
Pavel Hofman52cd0a72012-01-10 20:28:48 +01002252 snd_vt1724_ooaoo_cards,
Ondrej Zary77b0b252012-10-14 21:09:22 +02002253 snd_vt1724_psc724_cards,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 NULL,
2255};
2256
2257
2258/*
2259 */
2260
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002261static void wait_i2c_busy(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
2263 int t = 0x10000;
2264 while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
2265 ;
2266 if (t == -1)
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002267 dev_err(ice->card->dev, "i2c busy timeout\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002270unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
2271 unsigned char dev, unsigned char addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272{
2273 unsigned char val;
2274
Ingo Molnar62932df2006-01-16 16:34:20 +01002275 mutex_lock(&ice->i2c_mutex);
Pavel Hofmanacec30f2007-12-03 12:37:17 +01002276 wait_i2c_busy(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2278 outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2279 wait_i2c_busy(ice);
2280 val = inb(ICEREG1724(ice, I2C_DATA));
Ingo Molnar62932df2006-01-16 16:34:20 +01002281 mutex_unlock(&ice->i2c_mutex);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002282 /*
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002283 dev_dbg(ice->card->dev, "i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002284 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 return val;
2286}
2287
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002288void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
2289 unsigned char dev, unsigned char addr, unsigned char data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
Ingo Molnar62932df2006-01-16 16:34:20 +01002291 mutex_lock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 wait_i2c_busy(ice);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002293 /*
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002294 dev_dbg(ice->card->dev, "i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data);
Takashi Iwaie2ea7cfc2009-02-05 16:07:02 +01002295 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2297 outb(data, ICEREG1724(ice, I2C_DATA));
2298 outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2299 wait_i2c_busy(ice);
Ingo Molnar62932df2006-01-16 16:34:20 +01002300 mutex_unlock(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301}
2302
Bill Pembertone23e7a12012-12-06 12:35:10 -05002303static int snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
2304 const char *modelname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305{
2306 const int dev = 0xa0; /* EEPROM device address */
2307 unsigned int i, size;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002308 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002310 if (!modelname || !*modelname) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 ice->eeprom.subvendor = 0;
2312 if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
2313 ice->eeprom.subvendor =
2314 (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002315 (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
2316 (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002318 if (ice->eeprom.subvendor == 0 ||
2319 ice->eeprom.subvendor == (unsigned int)-1) {
2320 /* invalid subvendor from EEPROM, try the PCI
2321 * subststem ID instead
2322 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 u16 vendor, device;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002324 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
2325 &vendor);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002327 ice->eeprom.subvendor =
2328 ((unsigned int)swab16(vendor) << 16) | swab16(device);
2329 if (ice->eeprom.subvendor == 0 ||
2330 ice->eeprom.subvendor == (unsigned int)-1) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002331 dev_err(ice->card->dev,
2332 "No valid ID is found\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 return -ENXIO;
2334 }
2335 }
2336 }
2337 for (tbl = card_tables; *tbl; tbl++) {
Pavel Hofman2b151ef2012-01-10 20:28:47 +01002338 for (c = *tbl; c->name; c++) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002339 if (modelname && c->model &&
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002340 !strcmp(modelname, c->model)) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002341 dev_info(ice->card->dev,
2342 "Using board model %s\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002343 c->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 ice->eeprom.subvendor = c->subvendor;
2345 } else if (c->subvendor != ice->eeprom.subvendor)
2346 continue;
Ondrej Zary267bcca2012-10-14 21:09:19 +02002347 ice->card_info = c;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002348 if (!c->eeprom_size || !c->eeprom_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 goto found;
2350 /* if the EEPROM is given by the driver, use it */
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002351 dev_dbg(ice->card->dev, "using the defined eeprom..\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 ice->eeprom.version = 2;
2353 ice->eeprom.size = c->eeprom_size + 6;
2354 memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
2355 goto read_skipped;
2356 }
2357 }
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002358 dev_warn(ice->card->dev, "No matching model found for ID 0x%x\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002359 ice->eeprom.subvendor);
Takashi Iwai063f6032012-11-12 11:38:10 +01002360#ifdef CONFIG_PM_SLEEP
Ondrej Zaryef878442012-11-11 22:10:13 +01002361 /* assume AC97-only card which can suspend without additional code */
2362 ice->pm_suspend_enabled = 1;
Takashi Iwai063f6032012-11-12 11:38:10 +01002363#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
2365 found:
2366 ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
2367 if (ice->eeprom.size < 6)
2368 ice->eeprom.size = 32;
2369 else if (ice->eeprom.size > 32) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002370 dev_err(ice->card->dev, "Invalid EEPROM (size = %i)\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002371 ice->eeprom.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 return -EIO;
2373 }
2374 ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
Ondrej Zary77b0b252012-10-14 21:09:22 +02002375 if (ice->eeprom.version != 1 && ice->eeprom.version != 2)
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002376 dev_warn(ice->card->dev, "Invalid EEPROM version %i\n",
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002377 ice->eeprom.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 size = ice->eeprom.size - 6;
2379 for (i = 0; i < size; i++)
2380 ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
2381
2382 read_skipped:
2383 ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
2384 ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
2385 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
2386
2387 return 0;
2388}
2389
2390
2391
Takashi Iwaicd775382009-07-02 10:28:56 +02002392static void snd_vt1724_chip_reset(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393{
2394 outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
Takashi Iwaid82b64f2009-05-06 17:25:42 +02002395 inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
Karsten Wiese988f0662008-04-22 12:52:15 +02002396 msleep(10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 outb(0, ICEREG1724(ice, CONTROL));
Takashi Iwaid82b64f2009-05-06 17:25:42 +02002398 inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
Karsten Wiese988f0662008-04-22 12:52:15 +02002399 msleep(10);
2400}
2401
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002402static int snd_vt1724_chip_init(struct snd_ice1712 *ice)
Karsten Wiese988f0662008-04-22 12:52:15 +02002403{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
2405 outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
2406 outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
2407 outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
2408
2409 ice->gpio.write_mask = ice->eeprom.gpiomask;
2410 ice->gpio.direction = ice->eeprom.gpiodir;
2411 snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
2412 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
2413 snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
2414
2415 outb(0, ICEREG1724(ice, POWERDOWN));
2416
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002417 /* MPU_RX and TX irq masks are cleared later dynamically */
2418 outb(VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX , ICEREG1724(ice, IRQMASK));
2419
2420 /* don't handle FIFO overrun/underruns (just yet),
2421 * since they cause machine lockups
2422 */
2423 outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
2424
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 return 0;
2426}
2427
Bill Pembertone23e7a12012-12-06 12:35:10 -05002428static int snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429{
2430 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002431 struct snd_kcontrol *kctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Takashi Iwaida3cec32008-08-08 17:12:14 +02002433 if (snd_BUG_ON(!ice->pcm))
2434 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002436 if (!ice->own_routing) {
2437 err = snd_ctl_add(ice->card,
2438 snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
2439 if (err < 0)
2440 return err;
2441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
2443 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
2444 if (err < 0)
2445 return err;
2446
2447 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
2448 if (err < 0)
2449 return err;
2450 kctl->id.device = ice->pcm->device;
2451 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
2452 if (err < 0)
2453 return err;
2454 kctl->id.device = ice->pcm->device;
2455 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
2456 if (err < 0)
2457 return err;
2458 kctl->id.device = ice->pcm->device;
2459#if 0 /* use default only */
2460 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
2461 if (err < 0)
2462 return err;
2463 kctl->id.device = ice->pcm->device;
2464 ice->spdif.stream_ctl = kctl;
2465#endif
2466 return 0;
2467}
2468
2469
Bill Pembertone23e7a12012-12-06 12:35:10 -05002470static int snd_vt1724_build_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 int err;
2473
2474 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
2475 if (err < 0)
2476 return err;
2477 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
2478 if (err < 0)
2479 return err;
2480
2481 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
2482 if (err < 0)
2483 return err;
2484 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
2485 if (err < 0)
2486 return err;
2487
Takashi Iwai2bf864a2009-05-06 17:30:17 +02002488 if (!ice->own_routing && ice->num_total_dacs > 0) {
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002489 struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 tmp.count = ice->num_total_dacs;
2491 if (ice->vt1720 && tmp.count > 2)
2492 tmp.count = 2;
2493 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2494 if (err < 0)
2495 return err;
2496 }
2497
Sudip Mukherjee387417b2014-11-14 16:09:05 +05302498 return snd_ctl_add(ice->card,
2499 snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
2501
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002502static int snd_vt1724_free(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002504 if (!ice->port)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 goto __hw_end;
2506 /* mask all interrupts */
2507 outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
2508 outb(0xff, ICEREG1724(ice, IRQMASK));
2509 /* --- */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002510__hw_end:
Jeff Garzikf000fd82008-04-22 13:50:34 +02002511 if (ice->irq >= 0)
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002512 free_irq(ice->irq, ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 pci_release_regions(ice->pci);
2514 snd_ice1712_akm4xxx_free(ice);
2515 pci_disable_device(ice->pci);
Takashi Iwai7cda8ba2008-01-18 13:36:07 +01002516 kfree(ice->spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 kfree(ice);
2518 return 0;
2519}
2520
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002521static int snd_vt1724_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002523 struct snd_ice1712 *ice = device->device_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return snd_vt1724_free(ice);
2525}
2526
Bill Pembertone23e7a12012-12-06 12:35:10 -05002527static int snd_vt1724_create(struct snd_card *card,
2528 struct pci_dev *pci,
2529 const char *modelname,
2530 struct snd_ice1712 **r_ice1712)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002532 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 int err;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002534 static struct snd_device_ops ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 .dev_free = snd_vt1724_dev_free,
2536 };
2537
2538 *r_ice1712 = NULL;
2539
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002540 /* enable PCI device */
2541 err = pci_enable_device(pci);
2542 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 return err;
2544
Takashi Iwaie560d8d2005-09-09 14:21:46 +02002545 ice = kzalloc(sizeof(*ice), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 if (ice == NULL) {
2547 pci_disable_device(pci);
2548 return -ENOMEM;
2549 }
2550 ice->vt1724 = 1;
2551 spin_lock_init(&ice->reg_lock);
Ingo Molnar62932df2006-01-16 16:34:20 +01002552 mutex_init(&ice->gpio_mutex);
2553 mutex_init(&ice->open_mutex);
2554 mutex_init(&ice->i2c_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
Pavel Hofman49470302009-09-16 22:25:38 +02002556 ice->gpio.get_mask = snd_vt1724_get_gpio_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
Pavel Hofman49470302009-09-16 22:25:38 +02002558 ice->gpio.get_dir = snd_vt1724_get_gpio_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 ice->gpio.set_data = snd_vt1724_set_gpio_data;
2560 ice->gpio.get_data = snd_vt1724_get_gpio_data;
2561 ice->card = card;
2562 ice->pci = pci;
2563 ice->irq = -1;
2564 pci_set_master(pci);
2565 snd_vt1724_proc_init(ice);
2566 synchronize_irq(pci->irq);
2567
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002568 card->private_data = ice;
2569
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002570 err = pci_request_regions(pci, "ICE1724");
2571 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 kfree(ice);
2573 pci_disable_device(pci);
2574 return err;
2575 }
2576 ice->port = pci_resource_start(pci, 0);
2577 ice->profi_port = pci_resource_start(pci, 1);
2578
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002579 if (request_irq(pci->irq, snd_vt1724_interrupt,
Takashi Iwai934c2b62011-06-10 16:36:37 +02002580 IRQF_SHARED, KBUILD_MODNAME, ice)) {
Takashi Iwai6dfb5af2014-02-25 17:16:16 +01002581 dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 snd_vt1724_free(ice);
2583 return -EIO;
2584 }
2585
2586 ice->irq = pci->irq;
2587
Karsten Wiese988f0662008-04-22 12:52:15 +02002588 snd_vt1724_chip_reset(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
2590 snd_vt1724_free(ice);
2591 return -EIO;
2592 }
2593 if (snd_vt1724_chip_init(ice) < 0) {
2594 snd_vt1724_free(ice);
2595 return -EIO;
2596 }
2597
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002598 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
2599 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 snd_vt1724_free(ice);
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002601 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 }
2603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 *r_ice1712 = ice;
2605 return 0;
2606}
2607
2608
2609/*
2610 *
2611 * Registration
2612 *
2613 */
2614
Bill Pembertone23e7a12012-12-06 12:35:10 -05002615static int snd_vt1724_probe(struct pci_dev *pci,
2616 const struct pci_device_id *pci_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617{
2618 static int dev;
Takashi Iwaiab0c7d72005-11-17 15:00:18 +01002619 struct snd_card *card;
2620 struct snd_ice1712 *ice;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 int pcm_dev = 0, err;
Takashi Iwai1b60f6b2007-03-13 22:13:47 +01002622 struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624 if (dev >= SNDRV_CARDS)
2625 return -ENODEV;
2626 if (!enable[dev]) {
2627 dev++;
2628 return -ENOENT;
2629 }
2630
Takashi Iwai60c57722014-01-29 14:20:19 +01002631 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
2632 0, &card);
Takashi Iwaie58de7b2008-12-28 16:44:30 +01002633 if (err < 0)
2634 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 strcpy(card->driver, "ICE1724");
2637 strcpy(card->shortname, "ICEnsemble ICE1724");
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002638
2639 err = snd_vt1724_create(card, pci, model[dev], &ice);
2640 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 snd_card_free(card);
2642 return err;
2643 }
2644
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02002645 /* field init before calling chip_init */
2646 ice->ext_clock_count = 0;
2647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 for (tbl = card_tables; *tbl; tbl++) {
Pavel Hofman2b151ef2012-01-10 20:28:47 +01002649 for (c = *tbl; c->name; c++) {
2650 if ((model[dev] && c->model &&
2651 !strcmp(model[dev], c->model)) ||
2652 (c->subvendor == ice->eeprom.subvendor)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 strcpy(card->shortname, c->name);
2654 if (c->driver) /* specific driver? */
2655 strcpy(card->driver, c->driver);
2656 if (c->chip_init) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002657 err = c->chip_init(ice);
2658 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 snd_card_free(card);
2660 return err;
2661 }
2662 }
2663 goto __found;
2664 }
2665 }
2666 }
2667 c = &no_matched;
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002668__found:
2669 /*
2670 * VT1724 has separate DMAs for the analog and the SPDIF streams while
2671 * ICE1712 has only one for both (mixed up).
2672 *
2673 * Confusingly the analog PCM is named "professional" here because it
2674 * was called so in ice1712 driver, and vt1724 driver is derived from
2675 * ice1712 driver.
2676 */
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002677 ice->pro_rate_default = PRO_RATE_DEFAULT;
2678 if (!ice->is_spdif_master)
2679 ice->is_spdif_master = stdclock_is_spdif_master;
2680 if (!ice->get_rate)
2681 ice->get_rate = stdclock_get_rate;
2682 if (!ice->set_rate)
2683 ice->set_rate = stdclock_set_rate;
2684 if (!ice->set_mclk)
2685 ice->set_mclk = stdclock_set_mclk;
2686 if (!ice->set_spdif_clock)
2687 ice->set_spdif_clock = stdclock_set_spdif_clock;
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02002688 if (!ice->get_spdif_master_type)
2689 ice->get_spdif_master_type = stdclock_get_spdif_master_type;
2690 if (!ice->ext_clock_names)
2691 ice->ext_clock_names = ext_clock_names;
2692 if (!ice->ext_clock_count)
2693 ice->ext_clock_count = ARRAY_SIZE(ext_clock_names);
2694
Pavel Hofmand16be8e2008-03-20 12:10:27 +01002695 if (!ice->hw_rates)
2696 set_std_hw_rates(ice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002698 err = snd_vt1724_pcm_profi(ice, pcm_dev++);
2699 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 snd_card_free(card);
2701 return err;
2702 }
2703
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002704 err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
2705 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 snd_card_free(card);
2707 return err;
2708 }
2709
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002710 err = snd_vt1724_pcm_indep(ice, pcm_dev++);
2711 if (err < 0) {
2712 snd_card_free(card);
2713 return err;
2714 }
2715
2716 err = snd_vt1724_ac97_mixer(ice);
2717 if (err < 0) {
2718 snd_card_free(card);
2719 return err;
2720 }
2721
2722 err = snd_vt1724_build_controls(ice);
2723 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 snd_card_free(card);
2725 return err;
2726 }
2727
2728 if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002729 err = snd_vt1724_spdif_build_controls(ice);
2730 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 snd_card_free(card);
2732 return err;
2733 }
2734 }
2735
2736 if (c->build_controls) {
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002737 err = c->build_controls(ice);
2738 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 snd_card_free(card);
2740 return err;
2741 }
2742 }
2743
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002744 if (!c->no_mpu401) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002746 struct snd_rawmidi *rmidi;
2747
2748 err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
2749 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 snd_card_free(card);
2751 return err;
2752 }
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002753 ice->rmidi[0] = rmidi;
2754 rmidi->private_data = ice;
2755 strcpy(rmidi->name, "ICE1724 MIDI");
2756 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2757 SNDRV_RAWMIDI_INFO_INPUT |
2758 SNDRV_RAWMIDI_INFO_DUPLEX;
2759 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
2760 &vt1724_midi_output_ops);
2761 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
2762 &vt1724_midi_input_ops);
2763
Takashi Iwai3a841d52008-04-23 17:47:28 +02002764 /* set watermarks */
2765 outb(VT1724_MPU_RX_FIFO | 0x1,
2766 ICEREG1724(ice, MPU_FIFO_WM));
2767 outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
Clemens Ladischaea3bfb2008-05-20 14:22:44 +02002768 /* set UART mode */
2769 outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 }
2771 }
2772
2773 sprintf(card->longname, "%s at 0x%lx, irq %i",
2774 card->shortname, ice->port, ice->irq);
2775
Alexander Beregalov1de9fdc2008-09-07 14:11:04 +04002776 err = snd_card_register(card);
2777 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 snd_card_free(card);
2779 return err;
2780 }
2781 pci_set_drvdata(pci, card);
2782 dev++;
2783 return 0;
2784}
2785
Bill Pembertone23e7a12012-12-06 12:35:10 -05002786static void snd_vt1724_remove(struct pci_dev *pci)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787{
Ondrej Zary267bcca2012-10-14 21:09:19 +02002788 struct snd_card *card = pci_get_drvdata(pci);
2789 struct snd_ice1712 *ice = card->private_data;
2790
2791 if (ice->card_info && ice->card_info->chip_exit)
2792 ice->card_info->chip_exit(ice);
2793 snd_card_free(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794}
2795
Takashi Iwaic7561cd2012-08-14 18:12:04 +02002796#ifdef CONFIG_PM_SLEEP
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002797static int snd_vt1724_suspend(struct device *dev)
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002798{
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002799 struct snd_card *card = dev_get_drvdata(dev);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002800 struct snd_ice1712 *ice = card->private_data;
2801
2802 if (!ice->pm_suspend_enabled)
2803 return 0;
2804
2805 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
2806
2807 snd_pcm_suspend_all(ice->pcm);
2808 snd_pcm_suspend_all(ice->pcm_pro);
2809 snd_pcm_suspend_all(ice->pcm_ds);
2810 snd_ac97_suspend(ice->ac97);
2811
2812 spin_lock_irq(&ice->reg_lock);
2813 ice->pm_saved_is_spdif_master = ice->is_spdif_master(ice);
2814 ice->pm_saved_spdif_ctrl = inw(ICEMT1724(ice, SPDIF_CTRL));
2815 ice->pm_saved_spdif_cfg = inb(ICEREG1724(ice, SPDIF_CFG));
2816 ice->pm_saved_route = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2817 spin_unlock_irq(&ice->reg_lock);
2818
2819 if (ice->pm_suspend)
2820 ice->pm_suspend(ice);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002821 return 0;
2822}
2823
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002824static int snd_vt1724_resume(struct device *dev)
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002825{
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002826 struct snd_card *card = dev_get_drvdata(dev);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002827 struct snd_ice1712 *ice = card->private_data;
2828
2829 if (!ice->pm_suspend_enabled)
2830 return 0;
2831
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002832 snd_vt1724_chip_reset(ice);
2833
2834 if (snd_vt1724_chip_init(ice) < 0) {
2835 snd_card_disconnect(card);
2836 return -EIO;
2837 }
2838
2839 if (ice->pm_resume)
2840 ice->pm_resume(ice);
2841
2842 if (ice->pm_saved_is_spdif_master) {
2843 /* switching to external clock via SPDIF */
Pavel Hofman1ff97cb2009-09-16 22:25:40 +02002844 ice->set_spdif_clock(ice, 0);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002845 } else {
2846 /* internal on-card clock */
Takashi Iwai16c2e1f2012-10-31 07:41:42 +01002847 int rate;
2848 if (ice->cur_rate)
2849 rate = ice->cur_rate;
2850 else
2851 rate = ice->pro_rate_default;
2852 snd_vt1724_set_pro_rate(ice, rate, 1);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002853 }
2854
2855 update_spdif_bits(ice, ice->pm_saved_spdif_ctrl);
2856
2857 outb(ice->pm_saved_spdif_cfg, ICEREG1724(ice, SPDIF_CFG));
2858 outl(ice->pm_saved_route, ICEMT1724(ice, ROUTE_PLAYBACK));
2859
Markus Elfringae1b2262014-11-17 11:28:02 +01002860 snd_ac97_resume(ice->ac97);
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002861
2862 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
2863 return 0;
2864}
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002865
2866static SIMPLE_DEV_PM_OPS(snd_vt1724_pm, snd_vt1724_suspend, snd_vt1724_resume);
2867#define SND_VT1724_PM_OPS &snd_vt1724_pm
2868#else
2869#define SND_VT1724_PM_OPS NULL
Takashi Iwaic7561cd2012-08-14 18:12:04 +02002870#endif /* CONFIG_PM_SLEEP */
Igor Chernyshevb40e9532009-06-25 09:31:07 +02002871
Takashi Iwaie9f66d92012-04-24 12:25:00 +02002872static struct pci_driver vt1724_driver = {
Takashi Iwai3733e422011-06-10 16:20:20 +02002873 .name = KBUILD_MODNAME,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 .id_table = snd_vt1724_ids,
2875 .probe = snd_vt1724_probe,
Bill Pembertone23e7a12012-12-06 12:35:10 -05002876 .remove = snd_vt1724_remove,
Takashi Iwai68cb2b52012-07-02 15:20:37 +02002877 .driver = {
2878 .pm = SND_VT1724_PM_OPS,
2879 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880};
2881
Takashi Iwaie9f66d92012-04-24 12:25:00 +02002882module_pci_driver(vt1724_driver);