ALSA: pci: Avoid non-standard macro usage
[linux-2.6-block.git] / sound / pci / ice1712 / ice1724.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * ALSA driver for VT1724 ICEnsemble ICE1724 / VIA VT1724 (Envy24HT)
4 * VIA VT1720 (Envy24PT)
5 *
c1017a4c 6 * Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
1da177e4
LT
7 * 2002 James Stafford <jstafford@ampltd.com>
8 * 2003 Takashi Iwai <tiwai@suse.de>
1de9fdc2 9 */
1da177e4 10
1da177e4
LT
11#include <linux/delay.h>
12#include <linux/interrupt.h>
13#include <linux/init.h>
14#include <linux/pci.h>
15#include <linux/slab.h>
65a77217 16#include <linux/module.h>
62932df8 17#include <linux/mutex.h>
1da177e4
LT
18#include <sound/core.h>
19#include <sound/info.h>
aea3bfbc 20#include <sound/rawmidi.h>
1da177e4
LT
21#include <sound/initval.h>
22
23#include <sound/asoundef.h>
24
25#include "ice1712.h"
26#include "envy24ht.h"
27
28/* lowlevel routines */
29#include "amp.h"
30#include "revo.h"
31#include "aureon.h"
32#include "vt1720_mobo.h"
33#include "pontis.h"
34#include "prodigy192.h"
6b8d6e55 35#include "prodigy_hifi.h"
1da177e4 36#include "juli.h"
72cbfd45 37#include "maya44.h"
1da177e4 38#include "phase.h"
f6cdab5f 39#include "wtm.h"
f31639b8 40#include "se.h"
6ef80706 41#include "quartet.h"
77b0b254 42#include "psc724.h"
1da177e4 43
c1017a4c 44MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
1da177e4
LT
45MODULE_DESCRIPTION("VIA ICEnsemble ICE1724/1720 (Envy24HT/PT)");
46MODULE_LICENSE("GPL");
47MODULE_SUPPORTED_DEVICE("{"
48 REVO_DEVICE_DESC
49 AMP_AUDIO2000_DEVICE_DESC
50 AUREON_DEVICE_DESC
51 VT1720_MOBO_DEVICE_DESC
52 PONTIS_DEVICE_DESC
53 PRODIGY192_DEVICE_DESC
6b8d6e55 54 PRODIGY_HIFI_DEVICE_DESC
1da177e4 55 JULI_DEVICE_DESC
72cbfd45 56 MAYA44_DEVICE_DESC
1da177e4 57 PHASE_DEVICE_DESC
f6cdab5f 58 WTM_DEVICE_DESC
f31639b8 59 SE_DEVICE_DESC
6ef80706 60 QTET_DEVICE_DESC
1da177e4
LT
61 "{VIA,VT1720},"
62 "{VIA,VT1724},"
63 "{ICEnsemble,Generic ICE1724},"
64 "{ICEnsemble,Generic Envy24HT}"
65 "{ICEnsemble,Generic Envy24PT}}");
66
67static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */
68static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */
a67ff6a5 69static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; /* Enable this card */
1da177e4
LT
70static char *model[SNDRV_CARDS];
71
72module_param_array(index, int, NULL, 0444);
73MODULE_PARM_DESC(index, "Index value for ICE1724 soundcard.");
74module_param_array(id, charp, NULL, 0444);
75MODULE_PARM_DESC(id, "ID string for ICE1724 soundcard.");
76module_param_array(enable, bool, NULL, 0444);
77MODULE_PARM_DESC(enable, "Enable ICE1724 soundcard.");
78module_param_array(model, charp, NULL, 0444);
79MODULE_PARM_DESC(model, "Use the given board model.");
80
1da177e4
LT
81
82/* Both VT1720 and VT1724 have the same PCI IDs */
9baa3c34 83static const struct pci_device_id snd_vt1724_ids[] = {
28d27aae 84 { PCI_VDEVICE(ICE, PCI_DEVICE_ID_VT1724), 0 },
1da177e4
LT
85 { 0, }
86};
87
88MODULE_DEVICE_TABLE(pci, snd_vt1724_ids);
89
90
91static int PRO_RATE_LOCKED;
92static int PRO_RATE_RESET = 1;
93static unsigned int PRO_RATE_DEFAULT = 44100;
94
a2af050f 95static const char * const ext_clock_names[1] = { "IEC958 In" };
1ff97cb9 96
1da177e4
LT
97/*
98 * Basic I/O
99 */
1de9fdc2 100
d16be8ed
PH
101/*
102 * default rates, default clock routines
103 */
104
1da177e4 105/* check whether the clock mode is spdif-in */
d16be8ed 106static inline int stdclock_is_spdif_master(struct snd_ice1712 *ice)
1da177e4
LT
107{
108 return (inb(ICEMT1724(ice, RATE)) & VT1724_SPDIF_MASTER) ? 1 : 0;
109}
110
6796d5a0
PH
111/*
112 * locking rate makes sense only for internal clock mode
113 */
ab0c7d72 114static inline int is_pro_rate_locked(struct snd_ice1712 *ice)
1da177e4 115{
6796d5a0 116 return (!ice->is_spdif_master(ice)) && PRO_RATE_LOCKED;
1da177e4
LT
117}
118
119/*
120 * ac97 section
121 */
122
ab0c7d72 123static unsigned char snd_vt1724_ac97_ready(struct snd_ice1712 *ice)
1da177e4
LT
124{
125 unsigned char old_cmd;
126 int tm;
127 for (tm = 0; tm < 0x10000; tm++) {
128 old_cmd = inb(ICEMT1724(ice, AC97_CMD));
129 if (old_cmd & (VT1724_AC97_WRITE | VT1724_AC97_READ))
130 continue;
131 if (!(old_cmd & VT1724_AC97_READY))
132 continue;
133 return old_cmd;
134 }
6dfb5aff 135 dev_dbg(ice->card->dev, "snd_vt1724_ac97_ready: timeout\n");
1da177e4
LT
136 return old_cmd;
137}
138
ab0c7d72 139static int snd_vt1724_ac97_wait_bit(struct snd_ice1712 *ice, unsigned char bit)
1da177e4
LT
140{
141 int tm;
142 for (tm = 0; tm < 0x10000; tm++)
143 if ((inb(ICEMT1724(ice, AC97_CMD)) & bit) == 0)
144 return 0;
6dfb5aff 145 dev_dbg(ice->card->dev, "snd_vt1724_ac97_wait_bit: timeout\n");
1da177e4
LT
146 return -EIO;
147}
148
ab0c7d72 149static void snd_vt1724_ac97_write(struct snd_ac97 *ac97,
1da177e4
LT
150 unsigned short reg,
151 unsigned short val)
152{
ab0c7d72 153 struct snd_ice1712 *ice = ac97->private_data;
1da177e4
LT
154 unsigned char old_cmd;
155
156 old_cmd = snd_vt1724_ac97_ready(ice);
157 old_cmd &= ~VT1724_AC97_ID_MASK;
158 old_cmd |= ac97->num;
159 outb(reg, ICEMT1724(ice, AC97_INDEX));
160 outw(val, ICEMT1724(ice, AC97_DATA));
161 outb(old_cmd | VT1724_AC97_WRITE, ICEMT1724(ice, AC97_CMD));
162 snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_WRITE);
163}
164
ab0c7d72 165static unsigned short snd_vt1724_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
1da177e4 166{
ab0c7d72 167 struct snd_ice1712 *ice = ac97->private_data;
1da177e4
LT
168 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 outb(old_cmd | VT1724_AC97_READ, ICEMT1724(ice, AC97_CMD));
175 if (snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_READ) < 0)
176 return ~0;
177 return inw(ICEMT1724(ice, AC97_DATA));
178}
179
180
181/*
182 * GPIO operations
183 */
184
185/* set gpio direction 0 = read, 1 = write */
ab0c7d72 186static void snd_vt1724_set_gpio_dir(struct snd_ice1712 *ice, unsigned int data)
1da177e4
LT
187{
188 outl(data, ICEREG1724(ice, GPIO_DIRECTION));
189 inw(ICEREG1724(ice, GPIO_DIRECTION)); /* dummy read for pci-posting */
190}
191
49470306
PH
192/* get gpio direction 0 = read, 1 = write */
193static unsigned int snd_vt1724_get_gpio_dir(struct snd_ice1712 *ice)
194{
195 return inl(ICEREG1724(ice, GPIO_DIRECTION));
196}
197
1da177e4 198/* set the gpio mask (0 = writable) */
ab0c7d72 199static void snd_vt1724_set_gpio_mask(struct snd_ice1712 *ice, unsigned int data)
1da177e4
LT
200{
201 outw(data, ICEREG1724(ice, GPIO_WRITE_MASK));
1de9fdc2 202 if (!ice->vt1720) /* VT1720 supports only 16 GPIO bits */
1da177e4
LT
203 outb((data >> 16) & 0xff, ICEREG1724(ice, GPIO_WRITE_MASK_22));
204 inw(ICEREG1724(ice, GPIO_WRITE_MASK)); /* dummy read for pci-posting */
205}
206
49470306
PH
207static unsigned int snd_vt1724_get_gpio_mask(struct snd_ice1712 *ice)
208{
209 unsigned int mask;
210 if (!ice->vt1720)
211 mask = (unsigned int)inb(ICEREG1724(ice, GPIO_WRITE_MASK_22));
212 else
213 mask = 0;
214 mask = (mask << 16) | inw(ICEREG1724(ice, GPIO_WRITE_MASK));
215 return mask;
216}
217
ab0c7d72 218static void snd_vt1724_set_gpio_data(struct snd_ice1712 *ice, unsigned int data)
1da177e4
LT
219{
220 outw(data, ICEREG1724(ice, GPIO_DATA));
1de9fdc2 221 if (!ice->vt1720)
1da177e4
LT
222 outb(data >> 16, ICEREG1724(ice, GPIO_DATA_22));
223 inw(ICEREG1724(ice, GPIO_DATA)); /* dummy read for pci-posting */
224}
225
ab0c7d72 226static unsigned int snd_vt1724_get_gpio_data(struct snd_ice1712 *ice)
1da177e4
LT
227{
228 unsigned int data;
1de9fdc2 229 if (!ice->vt1720)
1da177e4
LT
230 data = (unsigned int)inb(ICEREG1724(ice, GPIO_DATA_22));
231 else
232 data = 0;
233 data = (data << 16) | inw(ICEREG1724(ice, GPIO_DATA));
234 return data;
235}
236
3a841d51 237/*
aea3bfbc 238 * MIDI
3a841d51 239 */
aea3bfbc
CL
240
241static void vt1724_midi_clear_rx(struct snd_ice1712 *ice)
242{
243 unsigned int count;
244
245 for (count = inb(ICEREG1724(ice, MPU_RXFIFO)); count > 0; --count)
246 inb(ICEREG1724(ice, MPU_DATA));
247}
248
249static inline struct snd_rawmidi_substream *
250get_rawmidi_substream(struct snd_ice1712 *ice, unsigned int stream)
3a841d51 251{
aea3bfbc
CL
252 return list_first_entry(&ice->rmidi[0]->streams[stream].substreams,
253 struct snd_rawmidi_substream, list);
254}
255
e683ec46
TI
256static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable);
257
aea3bfbc
CL
258static void vt1724_midi_write(struct snd_ice1712 *ice)
259{
260 struct snd_rawmidi_substream *s;
261 int count, i;
262 u8 buffer[32];
263
264 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_OUTPUT);
265 count = 31 - inb(ICEREG1724(ice, MPU_TXFIFO));
266 if (count > 0) {
267 count = snd_rawmidi_transmit(s, buffer, count);
268 for (i = 0; i < count; ++i)
269 outb(buffer[i], ICEREG1724(ice, MPU_DATA));
270 }
e683ec46
TI
271 /* mask irq when all bytes have been transmitted.
272 * enabled again in output_trigger when the new data comes in.
273 */
274 enable_midi_irq(ice, VT1724_IRQ_MPU_TX,
275 !snd_rawmidi_transmit_empty(s));
aea3bfbc
CL
276}
277
278static void vt1724_midi_read(struct snd_ice1712 *ice)
279{
280 struct snd_rawmidi_substream *s;
281 int count, i;
282 u8 buffer[32];
283
284 s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_INPUT);
285 count = inb(ICEREG1724(ice, MPU_RXFIFO));
286 if (count > 0) {
287 count = min(count, 32);
288 for (i = 0; i < count; ++i)
289 buffer[i] = inb(ICEREG1724(ice, MPU_DATA));
290 snd_rawmidi_receive(s, buffer, count);
291 }
292}
293
e683ec46
TI
294/* call with ice->reg_lock */
295static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable)
aea3bfbc 296{
e683ec46 297 u8 mask = inb(ICEREG1724(ice, IRQMASK));
aea3bfbc
CL
298 if (enable)
299 mask &= ~flag;
3a841d51 300 else
aea3bfbc
CL
301 mask |= flag;
302 outb(mask, ICEREG1724(ice, IRQMASK));
e683ec46
TI
303}
304
305static void vt1724_enable_midi_irq(struct snd_rawmidi_substream *substream,
306 u8 flag, int enable)
307{
308 struct snd_ice1712 *ice = substream->rmidi->private_data;
309
310 spin_lock_irq(&ice->reg_lock);
311 enable_midi_irq(ice, flag, enable);
aea3bfbc 312 spin_unlock_irq(&ice->reg_lock);
3a841d51
TI
313}
314
aea3bfbc 315static int vt1724_midi_output_open(struct snd_rawmidi_substream *s)
3a841d51 316{
aea3bfbc
CL
317 return 0;
318}
319
320static int vt1724_midi_output_close(struct snd_rawmidi_substream *s)
321{
aea3bfbc 322 return 0;
3a841d51
TI
323}
324
aea3bfbc
CL
325static void vt1724_midi_output_trigger(struct snd_rawmidi_substream *s, int up)
326{
327 struct snd_ice1712 *ice = s->rmidi->private_data;
328 unsigned long flags;
329
330 spin_lock_irqsave(&ice->reg_lock, flags);
331 if (up) {
332 ice->midi_output = 1;
333 vt1724_midi_write(ice);
334 } else {
335 ice->midi_output = 0;
e683ec46 336 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
aea3bfbc
CL
337 }
338 spin_unlock_irqrestore(&ice->reg_lock, flags);
339}
340
341static void vt1724_midi_output_drain(struct snd_rawmidi_substream *s)
342{
343 struct snd_ice1712 *ice = s->rmidi->private_data;
344 unsigned long timeout;
345
e683ec46 346 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 0);
aea3bfbc
CL
347 /* 32 bytes should be transmitted in less than about 12 ms */
348 timeout = jiffies + msecs_to_jiffies(15);
349 do {
350 if (inb(ICEREG1724(ice, MPU_CTRL)) & VT1724_MPU_TX_EMPTY)
351 break;
352 schedule_timeout_uninterruptible(1);
353 } while (time_after(timeout, jiffies));
354}
355
485885b9 356static const struct snd_rawmidi_ops vt1724_midi_output_ops = {
aea3bfbc
CL
357 .open = vt1724_midi_output_open,
358 .close = vt1724_midi_output_close,
359 .trigger = vt1724_midi_output_trigger,
360 .drain = vt1724_midi_output_drain,
361};
362
363static int vt1724_midi_input_open(struct snd_rawmidi_substream *s)
364{
365 vt1724_midi_clear_rx(s->rmidi->private_data);
366 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 1);
367 return 0;
368}
369
370static int vt1724_midi_input_close(struct snd_rawmidi_substream *s)
371{
372 vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 0);
373 return 0;
374}
375
376static void vt1724_midi_input_trigger(struct snd_rawmidi_substream *s, int up)
377{
378 struct snd_ice1712 *ice = s->rmidi->private_data;
379 unsigned long flags;
380
381 spin_lock_irqsave(&ice->reg_lock, flags);
382 if (up) {
383 ice->midi_input = 1;
384 vt1724_midi_read(ice);
385 } else {
386 ice->midi_input = 0;
387 }
388 spin_unlock_irqrestore(&ice->reg_lock, flags);
389}
390
485885b9 391static const struct snd_rawmidi_ops vt1724_midi_input_ops = {
aea3bfbc
CL
392 .open = vt1724_midi_input_open,
393 .close = vt1724_midi_input_close,
394 .trigger = vt1724_midi_input_trigger,
395};
396
3a841d51 397
1da177e4
LT
398/*
399 * Interrupt handler
400 */
401
7d12e780 402static irqreturn_t snd_vt1724_interrupt(int irq, void *dev_id)
1da177e4 403{
ab0c7d72 404 struct snd_ice1712 *ice = dev_id;
1da177e4 405 unsigned char status;
3a841d51
TI
406 unsigned char status_mask =
407 VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX | VT1724_IRQ_MTPCM;
1da177e4 408 int handled = 0;
3a841d51 409 int timeout = 0;
1da177e4
LT
410
411 while (1) {
412 status = inb(ICEREG1724(ice, IRQSTAT));
3a841d51 413 status &= status_mask;
1da177e4
LT
414 if (status == 0)
415 break;
e683ec46 416 spin_lock(&ice->reg_lock);
3a841d51 417 if (++timeout > 10) {
1083206f 418 status = inb(ICEREG1724(ice, IRQSTAT));
6dfb5aff
TI
419 dev_err(ice->card->dev,
420 "Too long irq loop, status = 0x%x\n", status);
1083206f 421 if (status & VT1724_IRQ_MPU_TX) {
6dfb5aff 422 dev_err(ice->card->dev, "Disabling MPU_TX\n");
e683ec46 423 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
1083206f 424 }
e683ec46 425 spin_unlock(&ice->reg_lock);
3a841d51
TI
426 break;
427 }
1de9fdc2 428 handled = 1;
3a841d51 429 if (status & VT1724_IRQ_MPU_TX) {
aea3bfbc
CL
430 if (ice->midi_output)
431 vt1724_midi_write(ice);
e683ec46
TI
432 else
433 enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
3a841d51
TI
434 /* Due to mysterical reasons, MPU_TX is always
435 * generated (and can't be cleared) when a PCM
436 * playback is going. So let's ignore at the
437 * next loop.
438 */
439 status_mask &= ~VT1724_IRQ_MPU_TX;
440 }
441 if (status & VT1724_IRQ_MPU_RX) {
aea3bfbc
CL
442 if (ice->midi_input)
443 vt1724_midi_read(ice);
444 else
445 vt1724_midi_clear_rx(ice);
1da177e4 446 }
3a841d51
TI
447 /* ack MPU irq */
448 outb(status, ICEREG1724(ice, IRQSTAT));
e683ec46 449 spin_unlock(&ice->reg_lock);
1da177e4
LT
450 if (status & VT1724_IRQ_MTPCM) {
451 /*
452 * Multi-track PCM
453 * PCM assignment are:
454 * Playback DMA0 (M/C) = playback_pro_substream
455 * Playback DMA1 = playback_con_substream_ds[0]
456 * Playback DMA2 = playback_con_substream_ds[1]
457 * Playback DMA3 = playback_con_substream_ds[2]
458 * Playback DMA4 (SPDIF) = playback_con_substream
459 * Record DMA0 = capture_pro_substream
460 * Record DMA1 = capture_con_substream
461 */
462 unsigned char mtstat = inb(ICEMT1724(ice, IRQ));
463 if (mtstat & VT1724_MULTI_PDMA0) {
464 if (ice->playback_pro_substream)
465 snd_pcm_period_elapsed(ice->playback_pro_substream);
466 }
467 if (mtstat & VT1724_MULTI_RDMA0) {
468 if (ice->capture_pro_substream)
469 snd_pcm_period_elapsed(ice->capture_pro_substream);
470 }
471 if (mtstat & VT1724_MULTI_PDMA1) {
472 if (ice->playback_con_substream_ds[0])
473 snd_pcm_period_elapsed(ice->playback_con_substream_ds[0]);
474 }
475 if (mtstat & VT1724_MULTI_PDMA2) {
476 if (ice->playback_con_substream_ds[1])
477 snd_pcm_period_elapsed(ice->playback_con_substream_ds[1]);
478 }
479 if (mtstat & VT1724_MULTI_PDMA3) {
480 if (ice->playback_con_substream_ds[2])
481 snd_pcm_period_elapsed(ice->playback_con_substream_ds[2]);
482 }
483 if (mtstat & VT1724_MULTI_PDMA4) {
484 if (ice->playback_con_substream)
485 snd_pcm_period_elapsed(ice->playback_con_substream);
486 }
487 if (mtstat & VT1724_MULTI_RDMA1) {
488 if (ice->capture_con_substream)
489 snd_pcm_period_elapsed(ice->capture_con_substream);
490 }
491 /* ack anyway to avoid freeze */
492 outb(mtstat, ICEMT1724(ice, IRQ));
493 /* ought to really handle this properly */
494 if (mtstat & VT1724_MULTI_FIFO_ERR) {
495 unsigned char fstat = inb(ICEMT1724(ice, DMA_FIFO_ERR));
1de9fdc2
AB
496 outb(fstat, ICEMT1724(ice, DMA_FIFO_ERR));
497 outb(VT1724_MULTI_FIFO_ERR | inb(ICEMT1724(ice, DMA_INT_MASK)), ICEMT1724(ice, DMA_INT_MASK));
1da177e4
LT
498 /* If I don't do this, I get machine lockup due to continual interrupts */
499 }
500
501 }
502 }
503 return IRQ_RETVAL(handled);
504}
505
506/*
507 * PCM code - professional part (multitrack)
508 */
509
965f19be 510static const unsigned int rates[] = {
1da177e4
LT
511 8000, 9600, 11025, 12000, 16000, 22050, 24000,
512 32000, 44100, 48000, 64000, 88200, 96000,
513 176400, 192000,
514};
515
965f19be 516static const struct snd_pcm_hw_constraint_list hw_constraints_rates_96 = {
1da177e4
LT
517 .count = ARRAY_SIZE(rates) - 2, /* up to 96000 */
518 .list = rates,
519 .mask = 0,
520};
521
965f19be 522static const struct snd_pcm_hw_constraint_list hw_constraints_rates_48 = {
1da177e4
LT
523 .count = ARRAY_SIZE(rates) - 5, /* up to 48000 */
524 .list = rates,
525 .mask = 0,
526};
527
965f19be 528static const struct snd_pcm_hw_constraint_list hw_constraints_rates_192 = {
1da177e4
LT
529 .count = ARRAY_SIZE(rates),
530 .list = rates,
531 .mask = 0,
532};
533
534struct vt1724_pcm_reg {
535 unsigned int addr; /* ADDR register offset */
536 unsigned int size; /* SIZE register offset */
537 unsigned int count; /* COUNT register offset */
538 unsigned int start; /* start & pause bit */
539};
540
ab0c7d72 541static int snd_vt1724_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
1da177e4 542{
ab0c7d72 543 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
544 unsigned char what;
545 unsigned char old;
ab0c7d72 546 struct snd_pcm_substream *s;
1da177e4
LT
547
548 what = 0;
ef991b95 549 snd_pcm_group_for_each_entry(s, substream) {
29998d24
CL
550 if (snd_pcm_substream_chip(s) == ice) {
551 const struct vt1724_pcm_reg *reg;
552 reg = s->runtime->private_data;
553 what |= reg->start;
554 snd_pcm_trigger_done(s, substream);
555 }
1da177e4
LT
556 }
557
558 switch (cmd) {
559 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
560 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
561 spin_lock(&ice->reg_lock);
562 old = inb(ICEMT1724(ice, DMA_PAUSE));
563 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
564 old |= what;
565 else
566 old &= ~what;
567 outb(old, ICEMT1724(ice, DMA_PAUSE));
568 spin_unlock(&ice->reg_lock);
569 break;
570
571 case SNDRV_PCM_TRIGGER_START:
572 case SNDRV_PCM_TRIGGER_STOP:
b40e9538 573 case SNDRV_PCM_TRIGGER_SUSPEND:
1da177e4
LT
574 spin_lock(&ice->reg_lock);
575 old = inb(ICEMT1724(ice, DMA_CONTROL));
576 if (cmd == SNDRV_PCM_TRIGGER_START)
577 old |= what;
578 else
579 old &= ~what;
580 outb(old, ICEMT1724(ice, DMA_CONTROL));
581 spin_unlock(&ice->reg_lock);
582 break;
583
b40e9538
IC
584 case SNDRV_PCM_TRIGGER_RESUME:
585 /* apps will have to restart stream */
586 break;
587
1da177e4
LT
588 default:
589 return -EINVAL;
590 }
591 return 0;
592}
593
594/*
595 */
596
597#define DMA_STARTS (VT1724_RDMA0_START|VT1724_PDMA0_START|VT1724_RDMA1_START|\
598 VT1724_PDMA1_START|VT1724_PDMA2_START|VT1724_PDMA3_START|VT1724_PDMA4_START)
599#define DMA_PAUSES (VT1724_RDMA0_PAUSE|VT1724_PDMA0_PAUSE|VT1724_RDMA1_PAUSE|\
600 VT1724_PDMA1_PAUSE|VT1724_PDMA2_PAUSE|VT1724_PDMA3_PAUSE|VT1724_PDMA4_PAUSE)
601
d16be8ed
PH
602static const unsigned int stdclock_rate_list[16] = {
603 48000, 24000, 12000, 9600, 32000, 16000, 8000, 96000, 44100,
604 22050, 11025, 88200, 176400, 0, 192000, 64000
605};
606
607static unsigned int stdclock_get_rate(struct snd_ice1712 *ice)
1da177e4 608{
44cc4a01 609 return stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
d16be8ed
PH
610}
611
612static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
613{
614 int i;
615 for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
616 if (stdclock_rate_list[i] == rate) {
617 outb(i, ICEMT1724(ice, RATE));
618 return;
619 }
620 }
621}
622
623static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
624 unsigned int rate)
625{
626 unsigned char val, old;
627 /* check MT02 */
1da177e4 628 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
d16be8ed
PH
629 val = old = inb(ICEMT1724(ice, I2S_FORMAT));
630 if (rate > 96000)
631 val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
1da177e4 632 else
d16be8ed
PH
633 val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
634 if (val != old) {
635 outb(val, ICEMT1724(ice, I2S_FORMAT));
636 /* master clock changed */
637 return 1;
638 }
639 }
640 /* no change in master clock */
641 return 0;
1da177e4
LT
642}
643
92d71005 644static int snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
ab0c7d72 645 int force)
1da177e4
LT
646{
647 unsigned long flags;
d16be8ed
PH
648 unsigned char mclk_change;
649 unsigned int i, old_rate;
1da177e4 650
d16be8ed 651 if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
92d71005
TI
652 return -EINVAL;
653
1da177e4 654 spin_lock_irqsave(&ice->reg_lock, flags);
d16be8ed 655 if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
1da177e4
LT
656 (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
657 /* running? we cannot change the rate now... */
658 spin_unlock_irqrestore(&ice->reg_lock, flags);
bd3c200e 659 return ((rate == ice->cur_rate) && !force) ? 0 : -EBUSY;
1da177e4
LT
660 }
661 if (!force && is_pro_rate_locked(ice)) {
6796d5a0
PH
662 /* comparing required and current rate - makes sense for
663 * internal clock only */
1da177e4 664 spin_unlock_irqrestore(&ice->reg_lock, flags);
92d71005 665 return (rate == ice->cur_rate) ? 0 : -EBUSY;
1da177e4
LT
666 }
667
6796d5a0
PH
668 if (force || !ice->is_spdif_master(ice)) {
669 /* force means the rate was switched by ucontrol, otherwise
670 * setting clock rate for internal clock mode */
671 old_rate = ice->get_rate(ice);
672 if (force || (old_rate != rate))
673 ice->set_rate(ice, rate);
674 else if (rate == ice->cur_rate) {
675 spin_unlock_irqrestore(&ice->reg_lock, flags);
676 return 0;
677 }
1da177e4
LT
678 }
679
680 ice->cur_rate = rate;
681
d16be8ed
PH
682 /* setting master clock */
683 mclk_change = ice->set_mclk(ice, rate);
684
1da177e4
LT
685 spin_unlock_irqrestore(&ice->reg_lock, flags);
686
687 if (mclk_change && ice->gpio.i2s_mclk_changed)
688 ice->gpio.i2s_mclk_changed(ice);
689 if (ice->gpio.set_pro_rate)
690 ice->gpio.set_pro_rate(ice, rate);
691
692 /* set up codecs */
693 for (i = 0; i < ice->akm_codecs; i++) {
694 if (ice->akm[i].ops.set_rate_val)
695 ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
696 }
697 if (ice->spdif.ops.setup_rate)
698 ice->spdif.ops.setup_rate(ice, rate);
92d71005
TI
699
700 return 0;
1da177e4
LT
701}
702
ab0c7d72
TI
703static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
704 struct snd_pcm_hw_params *hw_params)
1da177e4 705{
ab0c7d72 706 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
92d71005 707 int i, chs, err;
1da177e4
LT
708
709 chs = params_channels(hw_params);
62932df8 710 mutex_lock(&ice->open_mutex);
1da177e4
LT
711 /* mark surround channels */
712 if (substream == ice->playback_pro_substream) {
713 /* PDMA0 can be multi-channel up to 8 */
714 chs = chs / 2 - 1;
715 for (i = 0; i < chs; i++) {
ab0c7d72
TI
716 if (ice->pcm_reserved[i] &&
717 ice->pcm_reserved[i] != substream) {
62932df8 718 mutex_unlock(&ice->open_mutex);
1da177e4
LT
719 return -EBUSY;
720 }
721 ice->pcm_reserved[i] = substream;
722 }
723 for (; i < 3; i++) {
724 if (ice->pcm_reserved[i] == substream)
725 ice->pcm_reserved[i] = NULL;
726 }
727 } else {
728 for (i = 0; i < 3; i++) {
729 /* check individual playback stream */
730 if (ice->playback_con_substream_ds[i] == substream) {
ab0c7d72
TI
731 if (ice->pcm_reserved[i] &&
732 ice->pcm_reserved[i] != substream) {
62932df8 733 mutex_unlock(&ice->open_mutex);
1da177e4
LT
734 return -EBUSY;
735 }
736 ice->pcm_reserved[i] = substream;
737 break;
738 }
739 }
740 }
62932df8 741 mutex_unlock(&ice->open_mutex);
92d71005
TI
742
743 err = snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
744 if (err < 0)
745 return err;
746
1da177e4
LT
747 return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
748}
749
ab0c7d72 750static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
1da177e4 751{
ab0c7d72 752 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
753 int i;
754
62932df8 755 mutex_lock(&ice->open_mutex);
1da177e4
LT
756 /* unmark surround channels */
757 for (i = 0; i < 3; i++)
758 if (ice->pcm_reserved[i] == substream)
759 ice->pcm_reserved[i] = NULL;
62932df8 760 mutex_unlock(&ice->open_mutex);
1da177e4
LT
761 return snd_pcm_lib_free_pages(substream);
762}
763
ab0c7d72 764static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
1da177e4 765{
ab0c7d72 766 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
767 unsigned char val;
768 unsigned int size;
769
770 spin_lock_irq(&ice->reg_lock);
771 val = (8 - substream->runtime->channels) >> 1;
772 outb(val, ICEMT1724(ice, BURST));
773
774 outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));
775
776 size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
1de9fdc2 777 /* outl(size, ICEMT1724(ice, PLAYBACK_SIZE)); */
1da177e4
LT
778 outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
779 outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
780 size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
1de9fdc2 781 /* outl(size, ICEMT1724(ice, PLAYBACK_COUNT)); */
1da177e4
LT
782 outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
783 outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);
784
785 spin_unlock_irq(&ice->reg_lock);
786
e2ea7cfc 787 /*
6dfb5aff 788 dev_dbg(ice->card->dev, "pro prepare: ch = %d, addr = 0x%x, "
e2ea7cfc
TI
789 "buffer = 0x%x, period = 0x%x\n",
790 substream->runtime->channels,
791 (unsigned int)substream->runtime->dma_addr,
792 snd_pcm_lib_buffer_bytes(substream),
793 snd_pcm_lib_period_bytes(substream));
794 */
1da177e4
LT
795 return 0;
796}
797
ab0c7d72 798static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(struct snd_pcm_substream *substream)
1da177e4 799{
ab0c7d72 800 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
801 size_t ptr;
802
803 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
804 return 0;
805#if 0 /* read PLAYBACK_ADDR */
806 ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
807 if (ptr < substream->runtime->dma_addr) {
6dfb5aff 808 dev_dbg(ice->card->dev, "invalid negative ptr\n");
1da177e4
LT
809 return 0;
810 }
811 ptr -= substream->runtime->dma_addr;
812 ptr = bytes_to_frames(substream->runtime, ptr);
813 if (ptr >= substream->runtime->buffer_size) {
6dfb5aff 814 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
ab0c7d72 815 (int)ptr, (int)substream->runtime->period_size);
1da177e4
LT
816 return 0;
817 }
818#else /* read PLAYBACK_SIZE */
819 ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
820 ptr = (ptr + 1) << 2;
821 ptr = bytes_to_frames(substream->runtime, ptr);
1de9fdc2 822 if (!ptr)
1da177e4
LT
823 ;
824 else if (ptr <= substream->runtime->buffer_size)
825 ptr = substream->runtime->buffer_size - ptr;
826 else {
6dfb5aff 827 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
ab0c7d72 828 (int)ptr, (int)substream->runtime->buffer_size);
1da177e4
LT
829 ptr = 0;
830 }
831#endif
832 return ptr;
833}
834
ab0c7d72 835static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
1da177e4 836{
ab0c7d72 837 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
32b47da0 838 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
1da177e4
LT
839
840 spin_lock_irq(&ice->reg_lock);
841 outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
ab0c7d72
TI
842 outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
843 ice->profi_port + reg->size);
844 outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
845 ice->profi_port + reg->count);
1da177e4
LT
846 spin_unlock_irq(&ice->reg_lock);
847 return 0;
848}
849
ab0c7d72 850static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
1da177e4 851{
ab0c7d72 852 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
32b47da0 853 const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
1da177e4
LT
854 size_t ptr;
855
856 if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
857 return 0;
858#if 0 /* use ADDR register */
859 ptr = inl(ice->profi_port + reg->addr);
860 ptr -= substream->runtime->dma_addr;
861 return bytes_to_frames(substream->runtime, ptr);
862#else /* use SIZE register */
863 ptr = inw(ice->profi_port + reg->size);
864 ptr = (ptr + 1) << 2;
865 ptr = bytes_to_frames(substream->runtime, ptr);
1de9fdc2 866 if (!ptr)
1da177e4
LT
867 ;
868 else if (ptr <= substream->runtime->buffer_size)
869 ptr = substream->runtime->buffer_size - ptr;
870 else {
6dfb5aff 871 dev_dbg(ice->card->dev, "invalid ptr %d (size=%d)\n",
ab0c7d72 872 (int)ptr, (int)substream->runtime->buffer_size);
1da177e4
LT
873 ptr = 0;
874 }
875 return ptr;
876#endif
877}
878
a5b7b5c1 879static const struct vt1724_pcm_reg vt1724_pdma0_reg = {
1da177e4
LT
880 .addr = VT1724_MT_PLAYBACK_ADDR,
881 .size = VT1724_MT_PLAYBACK_SIZE,
882 .count = VT1724_MT_PLAYBACK_COUNT,
883 .start = VT1724_PDMA0_START,
884};
885
a5b7b5c1
TI
886static const struct vt1724_pcm_reg vt1724_pdma4_reg = {
887 .addr = VT1724_MT_PDMA4_ADDR,
888 .size = VT1724_MT_PDMA4_SIZE,
889 .count = VT1724_MT_PDMA4_COUNT,
890 .start = VT1724_PDMA4_START,
891};
892
893static const struct vt1724_pcm_reg vt1724_rdma0_reg = {
1da177e4
LT
894 .addr = VT1724_MT_CAPTURE_ADDR,
895 .size = VT1724_MT_CAPTURE_SIZE,
896 .count = VT1724_MT_CAPTURE_COUNT,
897 .start = VT1724_RDMA0_START,
898};
899
a5b7b5c1
TI
900static const struct vt1724_pcm_reg vt1724_rdma1_reg = {
901 .addr = VT1724_MT_RDMA1_ADDR,
902 .size = VT1724_MT_RDMA1_SIZE,
903 .count = VT1724_MT_RDMA1_COUNT,
904 .start = VT1724_RDMA1_START,
905};
906
907#define vt1724_playback_pro_reg vt1724_pdma0_reg
908#define vt1724_playback_spdif_reg vt1724_pdma4_reg
909#define vt1724_capture_pro_reg vt1724_rdma0_reg
910#define vt1724_capture_spdif_reg vt1724_rdma1_reg
911
1de9fdc2 912static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
1da177e4
LT
913 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
914 SNDRV_PCM_INFO_BLOCK_TRANSFER |
915 SNDRV_PCM_INFO_MMAP_VALID |
916 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
917 .formats = SNDRV_PCM_FMTBIT_S32_LE,
918 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
919 .rate_min = 8000,
920 .rate_max = 192000,
921 .channels_min = 2,
922 .channels_max = 8,
923 .buffer_bytes_max = (1UL << 21), /* 19bits dword */
924 .period_bytes_min = 8 * 4 * 2, /* FIXME: constraints needed */
925 .period_bytes_max = (1UL << 21),
926 .periods_min = 2,
927 .periods_max = 1024,
928};
929
1de9fdc2 930static const struct snd_pcm_hardware snd_vt1724_spdif = {
1da177e4
LT
931 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
932 SNDRV_PCM_INFO_BLOCK_TRANSFER |
933 SNDRV_PCM_INFO_MMAP_VALID |
934 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
935 .formats = SNDRV_PCM_FMTBIT_S32_LE,
2dfbeca9
TI
936 .rates = (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
937 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
938 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
939 SNDRV_PCM_RATE_192000),
1da177e4 940 .rate_min = 32000,
2dfbeca9 941 .rate_max = 192000,
1da177e4
LT
942 .channels_min = 2,
943 .channels_max = 2,
944 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
945 .period_bytes_min = 2 * 4 * 2,
946 .period_bytes_max = (1UL << 18),
947 .periods_min = 2,
948 .periods_max = 1024,
949};
950
1de9fdc2 951static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
1da177e4
LT
952 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
953 SNDRV_PCM_INFO_BLOCK_TRANSFER |
954 SNDRV_PCM_INFO_MMAP_VALID |
955 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
956 .formats = SNDRV_PCM_FMTBIT_S32_LE,
957 .rates = SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
958 .rate_min = 8000,
959 .rate_max = 192000,
960 .channels_min = 2,
961 .channels_max = 2,
962 .buffer_bytes_max = (1UL << 18), /* 16bits dword */
963 .period_bytes_min = 2 * 4 * 2,
964 .period_bytes_max = (1UL << 18),
965 .periods_min = 2,
966 .periods_max = 1024,
967};
968
969/*
970 * set rate constraints
971 */
d16be8ed 972static void set_std_hw_rates(struct snd_ice1712 *ice)
1da177e4 973{
1da177e4
LT
974 if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
975 /* I2S */
976 /* VT1720 doesn't support more than 96kHz */
977 if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
d16be8ed
PH
978 ice->hw_rates = &hw_constraints_rates_192;
979 else
980 ice->hw_rates = &hw_constraints_rates_96;
981 } else {
1da177e4 982 /* ACLINK */
d16be8ed 983 ice->hw_rates = &hw_constraints_rates_48;
1da177e4 984 }
d16be8ed
PH
985}
986
987static int set_rate_constraints(struct snd_ice1712 *ice,
988 struct snd_pcm_substream *substream)
989{
990 struct snd_pcm_runtime *runtime = substream->runtime;
991
992 runtime->hw.rate_min = ice->hw_rates->list[0];
993 runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
994 runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
995 return snd_pcm_hw_constraint_list(runtime, 0,
996 SNDRV_PCM_HW_PARAM_RATE,
997 ice->hw_rates);
1da177e4
LT
998}
999
db05828a
PH
1000/* if the card has the internal rate locked (is_pro_locked), limit runtime
1001 hw rates to the current internal rate only.
1002*/
1003static void constrain_rate_if_locked(struct snd_pcm_substream *substream)
1004{
1005 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1006 struct snd_pcm_runtime *runtime = substream->runtime;
1007 unsigned int rate;
1008 if (is_pro_rate_locked(ice)) {
1009 rate = ice->get_rate(ice);
1010 if (rate >= runtime->hw.rate_min
1011 && rate <= runtime->hw.rate_max) {
1012 runtime->hw.rate_min = rate;
1013 runtime->hw.rate_max = rate;
1014 }
1015 }
1016}
1017
1018
1da177e4
LT
1019/* multi-channel playback needs alignment 8x32bit regardless of the channels
1020 * actually used
1021 */
1022#define VT1724_BUFFER_ALIGN 0x20
1023
ab0c7d72 1024static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
1da177e4 1025{
ab0c7d72
TI
1026 struct snd_pcm_runtime *runtime = substream->runtime;
1027 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
a6b936b9 1028 int chs, num_indeps;
1da177e4 1029
32b47da0 1030 runtime->private_data = (void *)&vt1724_playback_pro_reg;
1da177e4
LT
1031 ice->playback_pro_substream = substream;
1032 runtime->hw = snd_vt1724_playback_pro;
1033 snd_pcm_set_sync(substream);
1034 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1035 set_rate_constraints(ice, substream);
62932df8 1036 mutex_lock(&ice->open_mutex);
1da177e4 1037 /* calculate the currently available channels */
a6b936b9
TI
1038 num_indeps = ice->num_total_dacs / 2 - 1;
1039 for (chs = 0; chs < num_indeps; chs++) {
1da177e4
LT
1040 if (ice->pcm_reserved[chs])
1041 break;
1042 }
1043 chs = (chs + 1) * 2;
1044 runtime->hw.channels_max = chs;
1045 if (chs > 2) /* channels must be even */
1046 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
62932df8 1047 mutex_unlock(&ice->open_mutex);
1da177e4
LT
1048 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1049 VT1724_BUFFER_ALIGN);
1050 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1051 VT1724_BUFFER_ALIGN);
db05828a 1052 constrain_rate_if_locked(substream);
1ff97cb9
PH
1053 if (ice->pro_open)
1054 ice->pro_open(ice, substream);
1da177e4
LT
1055 return 0;
1056}
1057
ab0c7d72 1058static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
1da177e4 1059{
ab0c7d72
TI
1060 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1061 struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4 1062
32b47da0 1063 runtime->private_data = (void *)&vt1724_capture_pro_reg;
1da177e4
LT
1064 ice->capture_pro_substream = substream;
1065 runtime->hw = snd_vt1724_2ch_stereo;
1066 snd_pcm_set_sync(substream);
1067 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1068 set_rate_constraints(ice, substream);
1069 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1070 VT1724_BUFFER_ALIGN);
1071 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1072 VT1724_BUFFER_ALIGN);
db05828a 1073 constrain_rate_if_locked(substream);
1ff97cb9
PH
1074 if (ice->pro_open)
1075 ice->pro_open(ice, substream);
1da177e4
LT
1076 return 0;
1077}
1078
ab0c7d72 1079static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
1da177e4 1080{
ab0c7d72 1081 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
1082
1083 if (PRO_RATE_RESET)
d16be8ed 1084 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
1da177e4
LT
1085 ice->playback_pro_substream = NULL;
1086
1087 return 0;
1088}
1089
ab0c7d72 1090static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
1da177e4 1091{
ab0c7d72 1092 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
1093
1094 if (PRO_RATE_RESET)
d16be8ed 1095 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
1da177e4
LT
1096 ice->capture_pro_substream = NULL;
1097 return 0;
1098}
1099
6769e988 1100static const struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
1da177e4
LT
1101 .open = snd_vt1724_playback_pro_open,
1102 .close = snd_vt1724_playback_pro_close,
1103 .ioctl = snd_pcm_lib_ioctl,
1104 .hw_params = snd_vt1724_pcm_hw_params,
1105 .hw_free = snd_vt1724_pcm_hw_free,
1106 .prepare = snd_vt1724_playback_pro_prepare,
1107 .trigger = snd_vt1724_pcm_trigger,
1108 .pointer = snd_vt1724_playback_pro_pointer,
1109};
1110
6769e988 1111static const struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
1da177e4
LT
1112 .open = snd_vt1724_capture_pro_open,
1113 .close = snd_vt1724_capture_pro_close,
1114 .ioctl = snd_pcm_lib_ioctl,
1115 .hw_params = snd_vt1724_pcm_hw_params,
1116 .hw_free = snd_vt1724_pcm_hw_free,
1117 .prepare = snd_vt1724_pcm_prepare,
1118 .trigger = snd_vt1724_pcm_trigger,
1119 .pointer = snd_vt1724_pcm_pointer,
1120};
1121
e23e7a14 1122static int snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
1da177e4 1123{
ab0c7d72 1124 struct snd_pcm *pcm;
ffd364dd 1125 int capt, err;
1da177e4 1126
ffd364dd
PH
1127 if ((ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_ADC_MASK) ==
1128 VT1724_CFG_ADC_NONE)
1129 capt = 0;
1130 else
1131 capt = 1;
1132 err = snd_pcm_new(ice->card, "ICE1724", device, 1, capt, &pcm);
1da177e4
LT
1133 if (err < 0)
1134 return err;
1135
1136 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
ffd364dd
PH
1137 if (capt)
1138 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1139 &snd_vt1724_capture_pro_ops);
1da177e4
LT
1140
1141 pcm->private_data = ice;
1142 pcm->info_flags = 0;
1143 strcpy(pcm->name, "ICE1724");
1144
1145 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
6974f8ad 1146 &ice->pci->dev,
ab0c7d72 1147 256*1024, 256*1024);
1da177e4
LT
1148
1149 ice->pcm_pro = pcm;
1150
1151 return 0;
1152}
1153
1154
1155/*
1156 * SPDIF PCM
1157 */
1158
1da177e4 1159/* update spdif control bits; call with reg_lock */
ab0c7d72 1160static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
1da177e4
LT
1161{
1162 unsigned char cbit, disabled;
1163
1164 cbit = inb(ICEREG1724(ice, SPDIF_CFG));
1165 disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
1166 if (cbit != disabled)
1167 outb(disabled, ICEREG1724(ice, SPDIF_CFG));
1168 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1169 if (cbit != disabled)
1170 outb(cbit, ICEREG1724(ice, SPDIF_CFG));
1171 outw(val, ICEMT1724(ice, SPDIF_CTRL));
1172}
1173
1174/* update SPDIF control bits according to the given rate */
ab0c7d72 1175static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
1da177e4
LT
1176{
1177 unsigned int val, nval;
1178 unsigned long flags;
1179
1180 spin_lock_irqsave(&ice->reg_lock, flags);
1181 nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
1182 nval &= ~(7 << 12);
1183 switch (rate) {
1184 case 44100: break;
1185 case 48000: nval |= 2 << 12; break;
1186 case 32000: nval |= 3 << 12; break;
2dfbeca9
TI
1187 case 88200: nval |= 4 << 12; break;
1188 case 96000: nval |= 5 << 12; break;
1189 case 192000: nval |= 6 << 12; break;
1190 case 176400: nval |= 7 << 12; break;
1da177e4
LT
1191 }
1192 if (val != nval)
1193 update_spdif_bits(ice, nval);
1194 spin_unlock_irqrestore(&ice->reg_lock, flags);
1195}
1196
ab0c7d72 1197static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
1da177e4 1198{
ab0c7d72 1199 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1de9fdc2 1200 if (!ice->force_pdma4)
1da177e4
LT
1201 update_spdif_rate(ice, substream->runtime->rate);
1202 return snd_vt1724_pcm_prepare(substream);
1203}
1204
ab0c7d72 1205static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
1da177e4 1206{
ab0c7d72
TI
1207 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1208 struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4 1209
32b47da0 1210 runtime->private_data = (void *)&vt1724_playback_spdif_reg;
1da177e4
LT
1211 ice->playback_con_substream = substream;
1212 if (ice->force_pdma4) {
1213 runtime->hw = snd_vt1724_2ch_stereo;
1214 set_rate_constraints(ice, substream);
1215 } else
1216 runtime->hw = snd_vt1724_spdif;
1217 snd_pcm_set_sync(substream);
1218 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1219 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1220 VT1724_BUFFER_ALIGN);
1221 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1222 VT1724_BUFFER_ALIGN);
db05828a 1223 constrain_rate_if_locked(substream);
c93f5a1e
TI
1224 if (ice->spdif.ops.open)
1225 ice->spdif.ops.open(ice, substream);
1da177e4
LT
1226 return 0;
1227}
1228
ab0c7d72 1229static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
1da177e4 1230{
ab0c7d72 1231 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
1232
1233 if (PRO_RATE_RESET)
d16be8ed 1234 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
1da177e4 1235 ice->playback_con_substream = NULL;
c93f5a1e
TI
1236 if (ice->spdif.ops.close)
1237 ice->spdif.ops.close(ice, substream);
1da177e4
LT
1238
1239 return 0;
1240}
1241
ab0c7d72 1242static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
1da177e4 1243{
ab0c7d72
TI
1244 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1245 struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4 1246
32b47da0 1247 runtime->private_data = (void *)&vt1724_capture_spdif_reg;
1da177e4
LT
1248 ice->capture_con_substream = substream;
1249 if (ice->force_rdma1) {
1250 runtime->hw = snd_vt1724_2ch_stereo;
1251 set_rate_constraints(ice, substream);
1252 } else
1253 runtime->hw = snd_vt1724_spdif;
1254 snd_pcm_set_sync(substream);
1255 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1256 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
1257 VT1724_BUFFER_ALIGN);
1258 snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
1259 VT1724_BUFFER_ALIGN);
db05828a 1260 constrain_rate_if_locked(substream);
c93f5a1e
TI
1261 if (ice->spdif.ops.open)
1262 ice->spdif.ops.open(ice, substream);
1da177e4
LT
1263 return 0;
1264}
1265
ab0c7d72 1266static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
1da177e4 1267{
ab0c7d72 1268 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
1269
1270 if (PRO_RATE_RESET)
d16be8ed 1271 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
1da177e4 1272 ice->capture_con_substream = NULL;
c93f5a1e
TI
1273 if (ice->spdif.ops.close)
1274 ice->spdif.ops.close(ice, substream);
1da177e4
LT
1275
1276 return 0;
1277}
1278
6769e988 1279static const struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
1da177e4
LT
1280 .open = snd_vt1724_playback_spdif_open,
1281 .close = snd_vt1724_playback_spdif_close,
1282 .ioctl = snd_pcm_lib_ioctl,
1283 .hw_params = snd_vt1724_pcm_hw_params,
1284 .hw_free = snd_vt1724_pcm_hw_free,
1285 .prepare = snd_vt1724_playback_spdif_prepare,
1286 .trigger = snd_vt1724_pcm_trigger,
1287 .pointer = snd_vt1724_pcm_pointer,
1288};
1289
6769e988 1290static const struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
1da177e4
LT
1291 .open = snd_vt1724_capture_spdif_open,
1292 .close = snd_vt1724_capture_spdif_close,
1293 .ioctl = snd_pcm_lib_ioctl,
1294 .hw_params = snd_vt1724_pcm_hw_params,
1295 .hw_free = snd_vt1724_pcm_hw_free,
1296 .prepare = snd_vt1724_pcm_prepare,
1297 .trigger = snd_vt1724_pcm_trigger,
1298 .pointer = snd_vt1724_pcm_pointer,
1299};
1300
1301
e23e7a14 1302static int snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
1da177e4
LT
1303{
1304 char *name;
ab0c7d72 1305 struct snd_pcm *pcm;
1da177e4
LT
1306 int play, capt;
1307 int err;
1308
1309 if (ice->force_pdma4 ||
1310 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
1311 play = 1;
1312 ice->has_spdif = 1;
1313 } else
1314 play = 0;
1315 if (ice->force_rdma1 ||
1316 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
1317 capt = 1;
1318 ice->has_spdif = 1;
1319 } else
1320 capt = 0;
1de9fdc2 1321 if (!play && !capt)
1da177e4
LT
1322 return 0; /* no spdif device */
1323
1324 if (ice->force_pdma4 || ice->force_rdma1)
1325 name = "ICE1724 Secondary";
1326 else
8eca7538 1327 name = "ICE1724 IEC958";
1da177e4
LT
1328 err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
1329 if (err < 0)
1330 return err;
1331
1332 if (play)
1333 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1334 &snd_vt1724_playback_spdif_ops);
1335 if (capt)
1336 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
1337 &snd_vt1724_capture_spdif_ops);
1338
1339 pcm->private_data = ice;
1340 pcm->info_flags = 0;
1341 strcpy(pcm->name, name);
1342
1343 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
6974f8ad 1344 &ice->pci->dev,
1d4efa66 1345 256*1024, 256*1024);
1da177e4
LT
1346
1347 ice->pcm = pcm;
1348
1349 return 0;
1350}
1351
1352
1353/*
1354 * independent surround PCMs
1355 */
1356
32b47da0 1357static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
1da177e4
LT
1358 {
1359 .addr = VT1724_MT_PDMA1_ADDR,
1360 .size = VT1724_MT_PDMA1_SIZE,
1361 .count = VT1724_MT_PDMA1_COUNT,
1362 .start = VT1724_PDMA1_START,
1363 },
1364 {
1365 .addr = VT1724_MT_PDMA2_ADDR,
1366 .size = VT1724_MT_PDMA2_SIZE,
1367 .count = VT1724_MT_PDMA2_COUNT,
1368 .start = VT1724_PDMA2_START,
1369 },
1370 {
1371 .addr = VT1724_MT_PDMA3_ADDR,
1372 .size = VT1724_MT_PDMA3_SIZE,
1373 .count = VT1724_MT_PDMA3_COUNT,
1374 .start = VT1724_PDMA3_START,
1375 },
1376};
1377
ab0c7d72 1378static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
1da177e4 1379{
ab0c7d72 1380 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
1381 unsigned char val;
1382
1383 spin_lock_irq(&ice->reg_lock);
1384 val = 3 - substream->number;
1385 if (inb(ICEMT1724(ice, BURST)) < val)
1386 outb(val, ICEMT1724(ice, BURST));
1387 spin_unlock_irq(&ice->reg_lock);
1388 return snd_vt1724_pcm_prepare(substream);
1389}
1390
ab0c7d72 1391static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
1da177e4 1392{
ab0c7d72
TI
1393 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1394 struct snd_pcm_runtime *runtime = substream->runtime;
1da177e4 1395
62932df8 1396 mutex_lock(&ice->open_mutex);
1da177e4
LT
1397 /* already used by PDMA0? */
1398 if (ice->pcm_reserved[substream->number]) {
62932df8 1399 mutex_unlock(&ice->open_mutex);
1da177e4
LT
1400 return -EBUSY; /* FIXME: should handle blocking mode properly */
1401 }
62932df8 1402 mutex_unlock(&ice->open_mutex);
32b47da0 1403 runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
1da177e4
LT
1404 ice->playback_con_substream_ds[substream->number] = substream;
1405 runtime->hw = snd_vt1724_2ch_stereo;
1406 snd_pcm_set_sync(substream);
1407 snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
1408 set_rate_constraints(ice, substream);
1409 return 0;
1410}
1411
ab0c7d72 1412static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
1da177e4 1413{
ab0c7d72 1414 struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1da177e4
LT
1415
1416 if (PRO_RATE_RESET)
d16be8ed 1417 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
1da177e4
LT
1418 ice->playback_con_substream_ds[substream->number] = NULL;
1419 ice->pcm_reserved[substream->number] = NULL;
1420
1421 return 0;
1422}
1423
6769e988 1424static const struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
1da177e4
LT
1425 .open = snd_vt1724_playback_indep_open,
1426 .close = snd_vt1724_playback_indep_close,
1427 .ioctl = snd_pcm_lib_ioctl,
1428 .hw_params = snd_vt1724_pcm_hw_params,
1429 .hw_free = snd_vt1724_pcm_hw_free,
1430 .prepare = snd_vt1724_playback_indep_prepare,
1431 .trigger = snd_vt1724_pcm_trigger,
1432 .pointer = snd_vt1724_pcm_pointer,
1433};
1434
1435
e23e7a14 1436static int snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
1da177e4 1437{
ab0c7d72 1438 struct snd_pcm *pcm;
1da177e4
LT
1439 int play;
1440 int err;
1441
1442 play = ice->num_total_dacs / 2 - 1;
1443 if (play <= 0)
1444 return 0;
1445
1446 err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
1447 if (err < 0)
1448 return err;
1449
1450 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1451 &snd_vt1724_playback_indep_ops);
1452
1453 pcm->private_data = ice;
1454 pcm->info_flags = 0;
1455 strcpy(pcm->name, "ICE1724 Surround PCM");
1456
1457 snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
6974f8ad 1458 &ice->pci->dev,
1d4efa66 1459 256*1024, 256*1024);
1da177e4
LT
1460
1461 ice->pcm_ds = pcm;
1462
1463 return 0;
1464}
1465
1466
1467/*
1468 * Mixer section
1469 */
1470
e23e7a14 1471static int snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
1da177e4
LT
1472{
1473 int err;
1474
1de9fdc2 1475 if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
ab0c7d72
TI
1476 struct snd_ac97_bus *pbus;
1477 struct snd_ac97_template ac97;
1478 static struct snd_ac97_bus_ops ops = {
1da177e4
LT
1479 .write = snd_vt1724_ac97_write,
1480 .read = snd_vt1724_ac97_read,
1481 };
1482
1483 /* cold reset */
1484 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
1485 mdelay(5); /* FIXME */
1486 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
1487
1de9fdc2
AB
1488 err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
1489 if (err < 0)
1da177e4
LT
1490 return err;
1491 memset(&ac97, 0, sizeof(ac97));
1492 ac97.private_data = ice;
1de9fdc2
AB
1493 err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
1494 if (err < 0)
6dfb5aff
TI
1495 dev_warn(ice->card->dev,
1496 "cannot initialize pro ac97, skipped\n");
1da177e4
LT
1497 else
1498 return 0;
1499 }
1500 /* I2S mixer only */
1501 strcat(ice->card->mixername, "ICE1724 - multitrack");
1502 return 0;
1503}
1504
1505/*
1506 *
1507 */
1508
ab0c7d72 1509static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
1da177e4
LT
1510{
1511 return (unsigned int)ice->eeprom.data[idx] | \
1512 ((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
1513 ((unsigned int)ice->eeprom.data[idx + 2] << 16);
1514}
1515
1de9fdc2 1516static void snd_vt1724_proc_read(struct snd_info_entry *entry,
ab0c7d72 1517 struct snd_info_buffer *buffer)
1da177e4 1518{
ab0c7d72 1519 struct snd_ice1712 *ice = entry->private_data;
1da177e4
LT
1520 unsigned int idx;
1521
1522 snd_iprintf(buffer, "%s\n\n", ice->card->longname);
1523 snd_iprintf(buffer, "EEPROM:\n");
1524
1525 snd_iprintf(buffer, " Subvendor : 0x%x\n", ice->eeprom.subvendor);
1526 snd_iprintf(buffer, " Size : %i bytes\n", ice->eeprom.size);
1527 snd_iprintf(buffer, " Version : %i\n", ice->eeprom.version);
ab0c7d72
TI
1528 snd_iprintf(buffer, " System Config : 0x%x\n",
1529 ice->eeprom.data[ICE_EEP2_SYSCONF]);
1530 snd_iprintf(buffer, " ACLink : 0x%x\n",
1531 ice->eeprom.data[ICE_EEP2_ACLINK]);
1532 snd_iprintf(buffer, " I2S : 0x%x\n",
1533 ice->eeprom.data[ICE_EEP2_I2S]);
1534 snd_iprintf(buffer, " S/PDIF : 0x%x\n",
1535 ice->eeprom.data[ICE_EEP2_SPDIF]);
1536 snd_iprintf(buffer, " GPIO direction : 0x%x\n",
1537 ice->eeprom.gpiodir);
1538 snd_iprintf(buffer, " GPIO mask : 0x%x\n",
1539 ice->eeprom.gpiomask);
1540 snd_iprintf(buffer, " GPIO state : 0x%x\n",
1541 ice->eeprom.gpiostate);
1da177e4 1542 for (idx = 0x12; idx < ice->eeprom.size; idx++)
ab0c7d72
TI
1543 snd_iprintf(buffer, " Extra #%02i : 0x%x\n",
1544 idx, ice->eeprom.data[idx]);
1da177e4
LT
1545
1546 snd_iprintf(buffer, "\nRegisters:\n");
1547
ab0c7d72
TI
1548 snd_iprintf(buffer, " PSDOUT03 : 0x%08x\n",
1549 (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
1da177e4 1550 for (idx = 0x0; idx < 0x20 ; idx++)
ab0c7d72
TI
1551 snd_iprintf(buffer, " CCS%02x : 0x%02x\n",
1552 idx, inb(ice->port+idx));
1da177e4 1553 for (idx = 0x0; idx < 0x30 ; idx++)
ab0c7d72
TI
1554 snd_iprintf(buffer, " MT%02x : 0x%02x\n",
1555 idx, inb(ice->profi_port+idx));
1da177e4
LT
1556}
1557
e23e7a14 1558static void snd_vt1724_proc_init(struct snd_ice1712 *ice)
1da177e4 1559{
47f2769b 1560 snd_card_ro_proc_new(ice->card, "ice1724", ice, snd_vt1724_proc_read);
1da177e4
LT
1561}
1562
1563/*
1564 *
1565 */
1566
ab0c7d72
TI
1567static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
1568 struct snd_ctl_elem_info *uinfo)
1da177e4
LT
1569{
1570 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
ab0c7d72 1571 uinfo->count = sizeof(struct snd_ice1712_eeprom);
1da177e4
LT
1572 return 0;
1573}
1574
ab0c7d72
TI
1575static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
1576 struct snd_ctl_elem_value *ucontrol)
1da177e4 1577{
ab0c7d72 1578 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1de9fdc2 1579
1da177e4
LT
1580 memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
1581 return 0;
1582}
1583
f3b827e0 1584static const struct snd_kcontrol_new snd_vt1724_eeprom = {
1da177e4
LT
1585 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
1586 .name = "ICE1724 EEPROM",
1587 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1588 .info = snd_vt1724_eeprom_info,
1589 .get = snd_vt1724_eeprom_get
1590};
1591
1592/*
1593 */
ab0c7d72
TI
1594static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
1595 struct snd_ctl_elem_info *uinfo)
1da177e4
LT
1596{
1597 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1598 uinfo->count = 1;
1599 return 0;
1600}
1601
ab0c7d72 1602static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
1da177e4 1603{
2dfbeca9 1604 unsigned int val, rbits;
1da177e4
LT
1605
1606 val = diga->status[0] & 0x03; /* professional, non-audio */
1607 if (val & 0x01) {
1608 /* professional */
ab0c7d72
TI
1609 if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
1610 IEC958_AES0_PRO_EMPHASIS_5015)
1da177e4 1611 val |= 1U << 3;
2dfbeca9
TI
1612 rbits = (diga->status[4] >> 3) & 0x0f;
1613 if (rbits) {
1614 switch (rbits) {
1615 case 2: val |= 5 << 12; break; /* 96k */
1616 case 3: val |= 6 << 12; break; /* 192k */
1617 case 10: val |= 4 << 12; break; /* 88.2k */
1618 case 11: val |= 7 << 12; break; /* 176.4k */
1619 }
1620 } else {
1621 switch (diga->status[0] & IEC958_AES0_PRO_FS) {
1622 case IEC958_AES0_PRO_FS_44100:
1623 break;
1624 case IEC958_AES0_PRO_FS_32000:
1625 val |= 3U << 12;
1626 break;
1627 default:
1628 val |= 2U << 12;
1629 break;
1630 }
1da177e4
LT
1631 }
1632 } else {
1633 /* consumer */
1634 val |= diga->status[1] & 0x04; /* copyright */
ab0c7d72
TI
1635 if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
1636 IEC958_AES0_CON_EMPHASIS_5015)
1da177e4
LT
1637 val |= 1U << 3;
1638 val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
1639 val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
1640 }
1641 return val;
1642}
1643
ab0c7d72 1644static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
1da177e4
LT
1645{
1646 memset(diga->status, 0, sizeof(diga->status));
1647 diga->status[0] = val & 0x03; /* professional, non-audio */
1648 if (val & 0x01) {
1649 /* professional */
1650 if (val & (1U << 3))
1651 diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
1652 switch ((val >> 12) & 0x7) {
1653 case 0:
1654 break;
1655 case 2:
1656 diga->status[0] |= IEC958_AES0_PRO_FS_32000;
1657 break;
1658 default:
1659 diga->status[0] |= IEC958_AES0_PRO_FS_48000;
1660 break;
1661 }
1662 } else {
1663 /* consumer */
1664 diga->status[0] |= val & (1U << 2); /* copyright */
1665 if (val & (1U << 3))
1666 diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
1667 diga->status[1] |= (val >> 4) & 0x3f; /* category */
1668 diga->status[3] |= (val >> 12) & 0x07; /* fs */
1669 }
1670}
1671
ab0c7d72
TI
1672static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
1673 struct snd_ctl_elem_value *ucontrol)
1da177e4 1674{
ab0c7d72 1675 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
1676 unsigned int val;
1677 val = inw(ICEMT1724(ice, SPDIF_CTRL));
1678 decode_spdif_bits(&ucontrol->value.iec958, val);
1679 return 0;
1680}
1681
ab0c7d72
TI
1682static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
1683 struct snd_ctl_elem_value *ucontrol)
1da177e4 1684{
ab0c7d72 1685 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
1686 unsigned int val, old;
1687
1688 val = encode_spdif_bits(&ucontrol->value.iec958);
1689 spin_lock_irq(&ice->reg_lock);
1690 old = inw(ICEMT1724(ice, SPDIF_CTRL));
1691 if (val != old)
1692 update_spdif_bits(ice, val);
1693 spin_unlock_irq(&ice->reg_lock);
1de9fdc2 1694 return val != old;
1da177e4
LT
1695}
1696
f3b827e0 1697static const struct snd_kcontrol_new snd_vt1724_spdif_default =
1da177e4
LT
1698{
1699 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1de9fdc2 1700 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
1da177e4
LT
1701 .info = snd_vt1724_spdif_info,
1702 .get = snd_vt1724_spdif_default_get,
1703 .put = snd_vt1724_spdif_default_put
1704};
1705
ab0c7d72
TI
1706static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
1707 struct snd_ctl_elem_value *ucontrol)
1da177e4
LT
1708{
1709 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1710 IEC958_AES0_PROFESSIONAL |
1711 IEC958_AES0_CON_NOT_COPYRIGHT |
1712 IEC958_AES0_CON_EMPHASIS;
1713 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
1714 IEC958_AES1_CON_CATEGORY;
1715 ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
1716 return 0;
1717}
1718
ab0c7d72
TI
1719static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
1720 struct snd_ctl_elem_value *ucontrol)
1da177e4
LT
1721{
1722 ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
1723 IEC958_AES0_PROFESSIONAL |
1724 IEC958_AES0_PRO_FS |
1725 IEC958_AES0_PRO_EMPHASIS;
1726 return 0;
1727}
1728
f3b827e0 1729static const struct snd_kcontrol_new snd_vt1724_spdif_maskc =
1da177e4
LT
1730{
1731 .access = SNDRV_CTL_ELEM_ACCESS_READ,
67ed4161 1732 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1de9fdc2 1733 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
1da177e4
LT
1734 .info = snd_vt1724_spdif_info,
1735 .get = snd_vt1724_spdif_maskc_get,
1736};
1737
f3b827e0 1738static const struct snd_kcontrol_new snd_vt1724_spdif_maskp =
1da177e4
LT
1739{
1740 .access = SNDRV_CTL_ELEM_ACCESS_READ,
67ed4161 1741 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1de9fdc2 1742 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
1da177e4
LT
1743 .info = snd_vt1724_spdif_info,
1744 .get = snd_vt1724_spdif_maskp_get,
1745};
1746
a5ce8890 1747#define snd_vt1724_spdif_sw_info snd_ctl_boolean_mono_info
1da177e4 1748
ab0c7d72
TI
1749static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
1750 struct snd_ctl_elem_value *ucontrol)
1da177e4 1751{
ab0c7d72
TI
1752 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1753 ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
1754 VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
1da177e4
LT
1755 return 0;
1756}
1757
ab0c7d72
TI
1758static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
1759 struct snd_ctl_elem_value *ucontrol)
1da177e4 1760{
ab0c7d72 1761 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
1762 unsigned char old, val;
1763
1764 spin_lock_irq(&ice->reg_lock);
1765 old = val = inb(ICEREG1724(ice, SPDIF_CFG));
1766 val &= ~VT1724_CFG_SPDIF_OUT_EN;
1767 if (ucontrol->value.integer.value[0])
1768 val |= VT1724_CFG_SPDIF_OUT_EN;
1769 if (old != val)
1770 outb(val, ICEREG1724(ice, SPDIF_CFG));
1771 spin_unlock_irq(&ice->reg_lock);
1772 return old != val;
1773}
1774
f3b827e0 1775static const struct snd_kcontrol_new snd_vt1724_spdif_switch =
1da177e4
LT
1776{
1777 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1778 /* FIXME: the following conflict with IEC958 Playback Route */
1de9fdc2
AB
1779 /* .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
1780 .name = SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
1da177e4
LT
1781 .info = snd_vt1724_spdif_sw_info,
1782 .get = snd_vt1724_spdif_sw_get,
1783 .put = snd_vt1724_spdif_sw_put
1784};
1785
1786
1787#if 0 /* NOT USED YET */
1788/*
1789 * GPIO access from extern
1790 */
1791
a5ce8890 1792#define snd_vt1724_gpio_info snd_ctl_boolean_mono_info
1da177e4 1793
ab0c7d72
TI
1794int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
1795 struct snd_ctl_elem_value *ucontrol)
1da177e4 1796{
ab0c7d72 1797 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
1798 int shift = kcontrol->private_value & 0xff;
1799 int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
1de9fdc2 1800
1da177e4 1801 snd_ice1712_save_gpio_status(ice);
ab0c7d72
TI
1802 ucontrol->value.integer.value[0] =
1803 (snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
1da177e4
LT
1804 snd_ice1712_restore_gpio_status(ice);
1805 return 0;
1806}
1807
ab0c7d72
TI
1808int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
1809 struct snd_ctl_elem_value *ucontrol)
1da177e4 1810{
ab0c7d72 1811 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
1812 int shift = kcontrol->private_value & 0xff;
1813 int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
1814 unsigned int val, nval;
1815
1816 if (kcontrol->private_value & (1 << 31))
1817 return -EPERM;
1818 nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
1819 snd_ice1712_save_gpio_status(ice);
1820 val = snd_ice1712_gpio_read(ice);
1821 nval |= val & ~(1 << shift);
1822 if (val != nval)
1823 snd_ice1712_gpio_write(ice, nval);
1824 snd_ice1712_restore_gpio_status(ice);
1825 return val != nval;
1826}
1827#endif /* NOT USED YET */
1828
1829/*
1830 * rate
1831 */
ab0c7d72
TI
1832static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
1833 struct snd_ctl_elem_info *uinfo)
1da177e4 1834{
ab0c7d72 1835 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1ff97cb9 1836 int hw_rates_count = ice->hw_rates->count;
1da177e4
LT
1837 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
1838 uinfo->count = 1;
1ff97cb9 1839
219e2cd4
PH
1840 /* internal clocks */
1841 uinfo->value.enumerated.items = hw_rates_count;
1842 /* external clocks */
1843 if (ice->force_rdma1 ||
1844 (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN))
1845 uinfo->value.enumerated.items += ice->ext_clock_count;
1ff97cb9 1846 /* upper limit - keep at top */
1da177e4
LT
1847 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
1848 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1ff97cb9
PH
1849 if (uinfo->value.enumerated.item >= hw_rates_count)
1850 /* ext_clock items */
1851 strcpy(uinfo->value.enumerated.name,
1852 ice->ext_clock_names[
1853 uinfo->value.enumerated.item - hw_rates_count]);
d16be8ed 1854 else
1ff97cb9 1855 /* int clock items */
d16be8ed
PH
1856 sprintf(uinfo->value.enumerated.name, "%d",
1857 ice->hw_rates->list[uinfo->value.enumerated.item]);
1da177e4
LT
1858 return 0;
1859}
1860
ab0c7d72
TI
1861static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
1862 struct snd_ctl_elem_value *ucontrol)
1da177e4 1863{
ab0c7d72 1864 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
d16be8ed 1865 unsigned int i, rate;
1de9fdc2 1866
1da177e4 1867 spin_lock_irq(&ice->reg_lock);
d16be8ed 1868 if (ice->is_spdif_master(ice)) {
1ff97cb9
PH
1869 ucontrol->value.enumerated.item[0] = ice->hw_rates->count +
1870 ice->get_spdif_master_type(ice);
1da177e4 1871 } else {
d16be8ed
PH
1872 rate = ice->get_rate(ice);
1873 ucontrol->value.enumerated.item[0] = 0;
1874 for (i = 0; i < ice->hw_rates->count; i++) {
1875 if (ice->hw_rates->list[i] == rate) {
1876 ucontrol->value.enumerated.item[0] = i;
1877 break;
1878 }
1da177e4 1879 }
1da177e4
LT
1880 }
1881 spin_unlock_irq(&ice->reg_lock);
1882 return 0;
1883}
1884
1ff97cb9
PH
1885static int stdclock_get_spdif_master_type(struct snd_ice1712 *ice)
1886{
1887 /* standard external clock - only single type - SPDIF IN */
1888 return 0;
1889}
1890
d16be8ed 1891/* setting clock to external - SPDIF */
1ff97cb9 1892static int stdclock_set_spdif_clock(struct snd_ice1712 *ice, int type)
d16be8ed
PH
1893{
1894 unsigned char oval;
1895 unsigned char i2s_oval;
1896 oval = inb(ICEMT1724(ice, RATE));
1897 outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
1898 /* setting 256fs */
1899 i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
1900 outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
1ff97cb9 1901 return 0;
d16be8ed
PH
1902}
1903
1ff97cb9 1904
ab0c7d72
TI
1905static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
1906 struct snd_ctl_elem_value *ucontrol)
1da177e4 1907{
ab0c7d72 1908 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
d16be8ed
PH
1909 unsigned int old_rate, new_rate;
1910 unsigned int item = ucontrol->value.enumerated.item[0];
1ff97cb9 1911 unsigned int first_ext_clock = ice->hw_rates->count;
d16be8ed 1912
1ff97cb9 1913 if (item > first_ext_clock + ice->ext_clock_count - 1)
d16be8ed 1914 return -EINVAL;
1da177e4 1915
1ff97cb9 1916 /* if rate = 0 => external clock */
1da177e4 1917 spin_lock_irq(&ice->reg_lock);
d16be8ed
PH
1918 if (ice->is_spdif_master(ice))
1919 old_rate = 0;
1920 else
1921 old_rate = ice->get_rate(ice);
1ff97cb9
PH
1922 if (item >= first_ext_clock) {
1923 /* switching to external clock */
1924 ice->set_spdif_clock(ice, item - first_ext_clock);
d16be8ed 1925 new_rate = 0;
1da177e4 1926 } else {
d16be8ed
PH
1927 /* internal on-card clock */
1928 new_rate = ice->hw_rates->list[item];
1929 ice->pro_rate_default = new_rate;
1930 spin_unlock_irq(&ice->reg_lock);
1931 snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
1932 spin_lock_irq(&ice->reg_lock);
1da177e4 1933 }
1da177e4
LT
1934 spin_unlock_irq(&ice->reg_lock);
1935
1ff97cb9 1936 /* the first switch to the ext. clock mode? */
d16be8ed 1937 if (old_rate != new_rate && !new_rate) {
1da177e4 1938 /* notify akm chips as well */
d16be8ed
PH
1939 unsigned int i;
1940 if (ice->gpio.set_pro_rate)
1941 ice->gpio.set_pro_rate(ice, 0);
1942 for (i = 0; i < ice->akm_codecs; i++) {
1943 if (ice->akm[i].ops.set_rate_val)
1944 ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
1da177e4
LT
1945 }
1946 }
d16be8ed 1947 return old_rate != new_rate;
1da177e4
LT
1948}
1949
f3b827e0 1950static const struct snd_kcontrol_new snd_vt1724_pro_internal_clock = {
1da177e4
LT
1951 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1952 .name = "Multi Track Internal Clock",
1953 .info = snd_vt1724_pro_internal_clock_info,
1954 .get = snd_vt1724_pro_internal_clock_get,
1955 .put = snd_vt1724_pro_internal_clock_put
1956};
1957
a5ce8890 1958#define snd_vt1724_pro_rate_locking_info snd_ctl_boolean_mono_info
1da177e4 1959
ab0c7d72
TI
1960static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
1961 struct snd_ctl_elem_value *ucontrol)
1da177e4
LT
1962{
1963 ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
1964 return 0;
1965}
1966
ab0c7d72
TI
1967static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
1968 struct snd_ctl_elem_value *ucontrol)
1da177e4 1969{
ab0c7d72 1970 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
1971 int change = 0, nval;
1972
1973 nval = ucontrol->value.integer.value[0] ? 1 : 0;
1974 spin_lock_irq(&ice->reg_lock);
1975 change = PRO_RATE_LOCKED != nval;
1976 PRO_RATE_LOCKED = nval;
1977 spin_unlock_irq(&ice->reg_lock);
1978 return change;
1979}
1980
f3b827e0 1981static const struct snd_kcontrol_new snd_vt1724_pro_rate_locking = {
1da177e4
LT
1982 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1983 .name = "Multi Track Rate Locking",
1984 .info = snd_vt1724_pro_rate_locking_info,
1985 .get = snd_vt1724_pro_rate_locking_get,
1986 .put = snd_vt1724_pro_rate_locking_put
1987};
1988
a5ce8890 1989#define snd_vt1724_pro_rate_reset_info snd_ctl_boolean_mono_info
1da177e4 1990
ab0c7d72
TI
1991static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
1992 struct snd_ctl_elem_value *ucontrol)
1da177e4
LT
1993{
1994 ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
1995 return 0;
1996}
1997
ab0c7d72
TI
1998static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
1999 struct snd_ctl_elem_value *ucontrol)
1da177e4 2000{
ab0c7d72 2001 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
2002 int change = 0, nval;
2003
2004 nval = ucontrol->value.integer.value[0] ? 1 : 0;
2005 spin_lock_irq(&ice->reg_lock);
2006 change = PRO_RATE_RESET != nval;
2007 PRO_RATE_RESET = nval;
2008 spin_unlock_irq(&ice->reg_lock);
2009 return change;
2010}
2011
f3b827e0 2012static const struct snd_kcontrol_new snd_vt1724_pro_rate_reset = {
1da177e4
LT
2013 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2014 .name = "Multi Track Rate Reset",
2015 .info = snd_vt1724_pro_rate_reset_info,
2016 .get = snd_vt1724_pro_rate_reset_get,
2017 .put = snd_vt1724_pro_rate_reset_put
2018};
2019
2020
2021/*
2022 * routing
2023 */
ab0c7d72
TI
2024static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
2025 struct snd_ctl_elem_info *uinfo)
1da177e4 2026{
a2af050f 2027 static const char * const texts[] = {
1da177e4
LT
2028 "PCM Out", /* 0 */
2029 "H/W In 0", "H/W In 1", /* 1-2 */
2030 "IEC958 In L", "IEC958 In R", /* 3-4 */
2031 };
1de9fdc2 2032
597da2e4 2033 return snd_ctl_enum_info(uinfo, 1, 5, texts);
1da177e4
LT
2034}
2035
2036static inline int analog_route_shift(int idx)
2037{
2038 return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
2039}
2040
2041static inline int digital_route_shift(int idx)
2042{
2043 return idx * 3;
2044}
2045
2bf864ac 2046int snd_ice1724_get_route_val(struct snd_ice1712 *ice, int shift)
1da177e4
LT
2047{
2048 unsigned long val;
2049 unsigned char eitem;
32b47da0 2050 static const unsigned char xlate[8] = {
1da177e4
LT
2051 0, 255, 1, 2, 255, 255, 3, 4,
2052 };
2053
2054 val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2055 val >>= shift;
1de9fdc2 2056 val &= 7; /* we now have 3 bits per output */
1da177e4
LT
2057 eitem = xlate[val];
2058 if (eitem == 255) {
2059 snd_BUG();
2060 return 0;
2061 }
2062 return eitem;
2063}
2064
2bf864ac
TI
2065int snd_ice1724_put_route_val(struct snd_ice1712 *ice, unsigned int val,
2066 int shift)
1da177e4
LT
2067{
2068 unsigned int old_val, nval;
2069 int change;
32b47da0 2070 static const unsigned char xroute[8] = {
1da177e4
LT
2071 0, /* PCM */
2072 2, /* PSDIN0 Left */
2073 3, /* PSDIN0 Right */
2074 6, /* SPDIN Left */
2075 7, /* SPDIN Right */
2076 };
2077
2078 nval = xroute[val % 5];
2079 val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2080 val &= ~(0x07 << shift);
2081 val |= nval << shift;
2082 change = val != old_val;
2083 if (change)
2084 outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
2085 return change;
2086}
2087
ab0c7d72
TI
2088static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
2089 struct snd_ctl_elem_value *ucontrol)
1da177e4 2090{
ab0c7d72 2091 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 2092 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
ab0c7d72 2093 ucontrol->value.enumerated.item[0] =
2bf864ac 2094 snd_ice1724_get_route_val(ice, analog_route_shift(idx));
1da177e4
LT
2095 return 0;
2096}
2097
ab0c7d72
TI
2098static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
2099 struct snd_ctl_elem_value *ucontrol)
1da177e4 2100{
ab0c7d72 2101 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 2102 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2bf864ac
TI
2103 return snd_ice1724_put_route_val(ice,
2104 ucontrol->value.enumerated.item[0],
2105 analog_route_shift(idx));
1da177e4
LT
2106}
2107
ab0c7d72
TI
2108static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
2109 struct snd_ctl_elem_value *ucontrol)
1da177e4 2110{
ab0c7d72 2111 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 2112 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
ab0c7d72 2113 ucontrol->value.enumerated.item[0] =
2bf864ac 2114 snd_ice1724_get_route_val(ice, digital_route_shift(idx));
1da177e4
LT
2115 return 0;
2116}
2117
ab0c7d72
TI
2118static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
2119 struct snd_ctl_elem_value *ucontrol)
1da177e4 2120{
ab0c7d72 2121 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 2122 int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2bf864ac
TI
2123 return snd_ice1724_put_route_val(ice,
2124 ucontrol->value.enumerated.item[0],
2125 digital_route_shift(idx));
1da177e4
LT
2126}
2127
6ba1ad38 2128static const struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route =
2bf864ac 2129{
1da177e4
LT
2130 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2131 .name = "H/W Playback Route",
2132 .info = snd_vt1724_pro_route_info,
2133 .get = snd_vt1724_pro_route_analog_get,
2134 .put = snd_vt1724_pro_route_analog_put,
2135};
2136
f3b827e0 2137static const struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route = {
1da177e4 2138 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1de9fdc2 2139 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
1da177e4
LT
2140 .info = snd_vt1724_pro_route_info,
2141 .get = snd_vt1724_pro_route_spdif_get,
2142 .put = snd_vt1724_pro_route_spdif_put,
2143 .count = 2,
2144};
2145
2146
ab0c7d72
TI
2147static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
2148 struct snd_ctl_elem_info *uinfo)
1da177e4
LT
2149{
2150 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
2151 uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
2152 uinfo->value.integer.min = 0;
2153 uinfo->value.integer.max = 255;
2154 return 0;
2155}
2156
ab0c7d72
TI
2157static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
2158 struct snd_ctl_elem_value *ucontrol)
1da177e4 2159{
ab0c7d72 2160 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 2161 int idx;
1de9fdc2 2162
1da177e4
LT
2163 spin_lock_irq(&ice->reg_lock);
2164 for (idx = 0; idx < 22; idx++) {
2165 outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
ab0c7d72
TI
2166 ucontrol->value.integer.value[idx] =
2167 inb(ICEMT1724(ice, MONITOR_PEAKDATA));
1da177e4
LT
2168 }
2169 spin_unlock_irq(&ice->reg_lock);
2170 return 0;
2171}
2172
f3b827e0 2173static const struct snd_kcontrol_new snd_vt1724_mixer_pro_peak = {
2bdf6633 2174 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1da177e4
LT
2175 .name = "Multi Track Peak",
2176 .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
2177 .info = snd_vt1724_pro_peak_info,
2178 .get = snd_vt1724_pro_peak_get
2179};
2180
2181/*
2182 *
2183 */
2184
e23e7a14 2185static struct snd_ice1712_card_info no_matched;
1da177e4 2186
52cd0a76
PH
2187
2188/*
2189 ooAoo cards with no controls
2190*/
e23e7a14 2191static unsigned char ooaoo_sq210_eeprom[] = {
52cd0a76
PH
2192 [ICE_EEP2_SYSCONF] = 0x4c, /* 49MHz crystal, no mpu401, no ADC,
2193 1xDACs */
2194 [ICE_EEP2_ACLINK] = 0x80, /* I2S */
2195 [ICE_EEP2_I2S] = 0x78, /* no volume, 96k, 24bit, 192k */
2196 [ICE_EEP2_SPDIF] = 0xc1, /* out-en, out-int, out-ext */
2197 [ICE_EEP2_GPIO_DIR] = 0x00, /* no GPIOs are used */
2198 [ICE_EEP2_GPIO_DIR1] = 0x00,
2199 [ICE_EEP2_GPIO_DIR2] = 0x00,
2200 [ICE_EEP2_GPIO_MASK] = 0xff,
2201 [ICE_EEP2_GPIO_MASK1] = 0xff,
2202 [ICE_EEP2_GPIO_MASK2] = 0xff,
2203
2204 [ICE_EEP2_GPIO_STATE] = 0x00, /* inputs */
2205 [ICE_EEP2_GPIO_STATE1] = 0x00, /* all 1, but GPIO_CPLD_RW
2206 and GPIO15 always zero */
2207 [ICE_EEP2_GPIO_STATE2] = 0x00, /* inputs */
2208};
2209
2210
e23e7a14 2211static struct snd_ice1712_card_info snd_vt1724_ooaoo_cards[] = {
52cd0a76
PH
2212 {
2213 .name = "ooAoo SQ210a",
2214 .model = "sq210a",
2215 .eeprom_size = sizeof(ooaoo_sq210_eeprom),
2216 .eeprom_data = ooaoo_sq210_eeprom,
2217 },
2218 { } /* terminator */
2219};
2220
e23e7a14 2221static struct snd_ice1712_card_info *card_tables[] = {
1da177e4 2222 snd_vt1724_revo_cards,
1de9fdc2 2223 snd_vt1724_amp_cards,
1da177e4
LT
2224 snd_vt1724_aureon_cards,
2225 snd_vt1720_mobo_cards,
2226 snd_vt1720_pontis_cards,
6b8d6e55 2227 snd_vt1724_prodigy_hifi_cards,
1da177e4
LT
2228 snd_vt1724_prodigy192_cards,
2229 snd_vt1724_juli_cards,
72cbfd45 2230 snd_vt1724_maya44_cards,
1da177e4 2231 snd_vt1724_phase_cards,
f6cdab5f 2232 snd_vt1724_wtm_cards,
f31639b8 2233 snd_vt1724_se_cards,
6ef80706 2234 snd_vt1724_qtet_cards,
52cd0a76 2235 snd_vt1724_ooaoo_cards,
77b0b254 2236 snd_vt1724_psc724_cards,
1da177e4
LT
2237 NULL,
2238};
2239
2240
2241/*
2242 */
2243
ab0c7d72 2244static void wait_i2c_busy(struct snd_ice1712 *ice)
1da177e4
LT
2245{
2246 int t = 0x10000;
2247 while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
2248 ;
2249 if (t == -1)
6dfb5aff 2250 dev_err(ice->card->dev, "i2c busy timeout\n");
1da177e4
LT
2251}
2252
ab0c7d72
TI
2253unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
2254 unsigned char dev, unsigned char addr)
1da177e4
LT
2255{
2256 unsigned char val;
2257
62932df8 2258 mutex_lock(&ice->i2c_mutex);
acec30ff 2259 wait_i2c_busy(ice);
1da177e4
LT
2260 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2261 outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2262 wait_i2c_busy(ice);
2263 val = inb(ICEREG1724(ice, I2C_DATA));
62932df8 2264 mutex_unlock(&ice->i2c_mutex);
e2ea7cfc 2265 /*
6dfb5aff 2266 dev_dbg(ice->card->dev, "i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val);
e2ea7cfc 2267 */
1da177e4
LT
2268 return val;
2269}
2270
ab0c7d72
TI
2271void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
2272 unsigned char dev, unsigned char addr, unsigned char data)
1da177e4 2273{
62932df8 2274 mutex_lock(&ice->i2c_mutex);
1da177e4 2275 wait_i2c_busy(ice);
e2ea7cfc 2276 /*
6dfb5aff 2277 dev_dbg(ice->card->dev, "i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data);
e2ea7cfc 2278 */
1da177e4
LT
2279 outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
2280 outb(data, ICEREG1724(ice, I2C_DATA));
2281 outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
2282 wait_i2c_busy(ice);
62932df8 2283 mutex_unlock(&ice->i2c_mutex);
1da177e4
LT
2284}
2285
e23e7a14
BP
2286static int snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
2287 const char *modelname)
1da177e4
LT
2288{
2289 const int dev = 0xa0; /* EEPROM device address */
2290 unsigned int i, size;
1b60f6b0 2291 struct snd_ice1712_card_info * const *tbl, *c;
1da177e4 2292
1de9fdc2 2293 if (!modelname || !*modelname) {
1da177e4
LT
2294 ice->eeprom.subvendor = 0;
2295 if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
2296 ice->eeprom.subvendor =
2297 (snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
1de9fdc2
AB
2298 (snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
2299 (snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
1da177e4 2300 (snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
ab0c7d72
TI
2301 if (ice->eeprom.subvendor == 0 ||
2302 ice->eeprom.subvendor == (unsigned int)-1) {
2303 /* invalid subvendor from EEPROM, try the PCI
2304 * subststem ID instead
2305 */
1da177e4 2306 u16 vendor, device;
ab0c7d72
TI
2307 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
2308 &vendor);
1da177e4 2309 pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
ab0c7d72
TI
2310 ice->eeprom.subvendor =
2311 ((unsigned int)swab16(vendor) << 16) | swab16(device);
2312 if (ice->eeprom.subvendor == 0 ||
2313 ice->eeprom.subvendor == (unsigned int)-1) {
6dfb5aff
TI
2314 dev_err(ice->card->dev,
2315 "No valid ID is found\n");
1da177e4
LT
2316 return -ENXIO;
2317 }
2318 }
2319 }
2320 for (tbl = card_tables; *tbl; tbl++) {
2b151ef7 2321 for (c = *tbl; c->name; c++) {
ab0c7d72 2322 if (modelname && c->model &&
1de9fdc2 2323 !strcmp(modelname, c->model)) {
6dfb5aff
TI
2324 dev_info(ice->card->dev,
2325 "Using board model %s\n",
ab0c7d72 2326 c->name);
1da177e4
LT
2327 ice->eeprom.subvendor = c->subvendor;
2328 } else if (c->subvendor != ice->eeprom.subvendor)
2329 continue;
267bccaf 2330 ice->card_info = c;
1de9fdc2 2331 if (!c->eeprom_size || !c->eeprom_data)
1da177e4
LT
2332 goto found;
2333 /* if the EEPROM is given by the driver, use it */
6dfb5aff 2334 dev_dbg(ice->card->dev, "using the defined eeprom..\n");
1da177e4
LT
2335 ice->eeprom.version = 2;
2336 ice->eeprom.size = c->eeprom_size + 6;
2337 memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
2338 goto read_skipped;
2339 }
2340 }
6dfb5aff 2341 dev_warn(ice->card->dev, "No matching model found for ID 0x%x\n",
ab0c7d72 2342 ice->eeprom.subvendor);
063f603c 2343#ifdef CONFIG_PM_SLEEP
ef878445
OZ
2344 /* assume AC97-only card which can suspend without additional code */
2345 ice->pm_suspend_enabled = 1;
063f603c 2346#endif
1da177e4
LT
2347
2348 found:
2349 ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
2350 if (ice->eeprom.size < 6)
2351 ice->eeprom.size = 32;
2352 else if (ice->eeprom.size > 32) {
6dfb5aff 2353 dev_err(ice->card->dev, "Invalid EEPROM (size = %i)\n",
ab0c7d72 2354 ice->eeprom.size);
1da177e4
LT
2355 return -EIO;
2356 }
2357 ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
77b0b254 2358 if (ice->eeprom.version != 1 && ice->eeprom.version != 2)
6dfb5aff 2359 dev_warn(ice->card->dev, "Invalid EEPROM version %i\n",
ab0c7d72 2360 ice->eeprom.version);
1da177e4
LT
2361 size = ice->eeprom.size - 6;
2362 for (i = 0; i < size; i++)
2363 ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);
2364
2365 read_skipped:
2366 ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
2367 ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
2368 ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);
2369
2370 return 0;
2371}
2372
2373
2374
cd775387 2375static void snd_vt1724_chip_reset(struct snd_ice1712 *ice)
1da177e4
LT
2376{
2377 outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
d82b64f4 2378 inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
988f0664 2379 msleep(10);
1da177e4 2380 outb(0, ICEREG1724(ice, CONTROL));
d82b64f4 2381 inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
988f0664
KW
2382 msleep(10);
2383}
2384
b40e9538 2385static int snd_vt1724_chip_init(struct snd_ice1712 *ice)
988f0664 2386{
1da177e4
LT
2387 outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
2388 outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
2389 outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
2390 outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));
2391
2392 ice->gpio.write_mask = ice->eeprom.gpiomask;
2393 ice->gpio.direction = ice->eeprom.gpiodir;
2394 snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
2395 snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
2396 snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);
2397
2398 outb(0, ICEREG1724(ice, POWERDOWN));
2399
b40e9538
IC
2400 /* MPU_RX and TX irq masks are cleared later dynamically */
2401 outb(VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX , ICEREG1724(ice, IRQMASK));
2402
2403 /* don't handle FIFO overrun/underruns (just yet),
2404 * since they cause machine lockups
2405 */
2406 outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));
2407
1da177e4
LT
2408 return 0;
2409}
2410
e23e7a14 2411static int snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
1da177e4
LT
2412{
2413 int err;
ab0c7d72 2414 struct snd_kcontrol *kctl;
1da177e4 2415
da3cec35
TI
2416 if (snd_BUG_ON(!ice->pcm))
2417 return -EIO;
1da177e4 2418
2bf864ac
TI
2419 if (!ice->own_routing) {
2420 err = snd_ctl_add(ice->card,
2421 snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
2422 if (err < 0)
2423 return err;
2424 }
1da177e4
LT
2425
2426 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
2427 if (err < 0)
2428 return err;
2429
2430 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
2431 if (err < 0)
2432 return err;
2433 kctl->id.device = ice->pcm->device;
2434 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
2435 if (err < 0)
2436 return err;
2437 kctl->id.device = ice->pcm->device;
2438 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
2439 if (err < 0)
2440 return err;
2441 kctl->id.device = ice->pcm->device;
2442#if 0 /* use default only */
2443 err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
2444 if (err < 0)
2445 return err;
2446 kctl->id.device = ice->pcm->device;
2447 ice->spdif.stream_ctl = kctl;
2448#endif
2449 return 0;
2450}
2451
2452
e23e7a14 2453static int snd_vt1724_build_controls(struct snd_ice1712 *ice)
1da177e4
LT
2454{
2455 int err;
2456
2457 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
2458 if (err < 0)
2459 return err;
2460 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
2461 if (err < 0)
2462 return err;
2463
2464 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
2465 if (err < 0)
2466 return err;
2467 err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
2468 if (err < 0)
2469 return err;
2470
2bf864ac 2471 if (!ice->own_routing && ice->num_total_dacs > 0) {
ab0c7d72 2472 struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
1da177e4
LT
2473 tmp.count = ice->num_total_dacs;
2474 if (ice->vt1720 && tmp.count > 2)
2475 tmp.count = 2;
2476 err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
2477 if (err < 0)
2478 return err;
2479 }
2480
387417b5
SM
2481 return snd_ctl_add(ice->card,
2482 snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
1da177e4
LT
2483}
2484
ab0c7d72 2485static int snd_vt1724_free(struct snd_ice1712 *ice)
1da177e4 2486{
1de9fdc2 2487 if (!ice->port)
1da177e4
LT
2488 goto __hw_end;
2489 /* mask all interrupts */
2490 outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
2491 outb(0xff, ICEREG1724(ice, IRQMASK));
2492 /* --- */
1de9fdc2 2493__hw_end:
f000fd80 2494 if (ice->irq >= 0)
ab0c7d72 2495 free_irq(ice->irq, ice);
1da177e4
LT
2496 pci_release_regions(ice->pci);
2497 snd_ice1712_akm4xxx_free(ice);
2498 pci_disable_device(ice->pci);
7cda8ba9 2499 kfree(ice->spec);
1da177e4
LT
2500 kfree(ice);
2501 return 0;
2502}
2503
ab0c7d72 2504static int snd_vt1724_dev_free(struct snd_device *device)
1da177e4 2505{
ab0c7d72 2506 struct snd_ice1712 *ice = device->device_data;
1da177e4
LT
2507 return snd_vt1724_free(ice);
2508}
2509
e23e7a14
BP
2510static int snd_vt1724_create(struct snd_card *card,
2511 struct pci_dev *pci,
2512 const char *modelname,
2513 struct snd_ice1712 **r_ice1712)
1da177e4 2514{
ab0c7d72 2515 struct snd_ice1712 *ice;
1da177e4 2516 int err;
ab0c7d72 2517 static struct snd_device_ops ops = {
1da177e4
LT
2518 .dev_free = snd_vt1724_dev_free,
2519 };
2520
2521 *r_ice1712 = NULL;
2522
1de9fdc2
AB
2523 /* enable PCI device */
2524 err = pci_enable_device(pci);
2525 if (err < 0)
1da177e4
LT
2526 return err;
2527
e560d8d8 2528 ice = kzalloc(sizeof(*ice), GFP_KERNEL);
1da177e4
LT
2529 if (ice == NULL) {
2530 pci_disable_device(pci);
2531 return -ENOMEM;
2532 }
2533 ice->vt1724 = 1;
2534 spin_lock_init(&ice->reg_lock);
62932df8
IM
2535 mutex_init(&ice->gpio_mutex);
2536 mutex_init(&ice->open_mutex);
2537 mutex_init(&ice->i2c_mutex);
1da177e4 2538 ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
49470306 2539 ice->gpio.get_mask = snd_vt1724_get_gpio_mask;
1da177e4 2540 ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
49470306 2541 ice->gpio.get_dir = snd_vt1724_get_gpio_dir;
1da177e4
LT
2542 ice->gpio.set_data = snd_vt1724_set_gpio_data;
2543 ice->gpio.get_data = snd_vt1724_get_gpio_data;
2544 ice->card = card;
2545 ice->pci = pci;
2546 ice->irq = -1;
2547 pci_set_master(pci);
2548 snd_vt1724_proc_init(ice);
2549 synchronize_irq(pci->irq);
2550
b40e9538
IC
2551 card->private_data = ice;
2552
1de9fdc2
AB
2553 err = pci_request_regions(pci, "ICE1724");
2554 if (err < 0) {
1da177e4
LT
2555 kfree(ice);
2556 pci_disable_device(pci);
2557 return err;
2558 }
2559 ice->port = pci_resource_start(pci, 0);
2560 ice->profi_port = pci_resource_start(pci, 1);
2561
ab0c7d72 2562 if (request_irq(pci->irq, snd_vt1724_interrupt,
934c2b6d 2563 IRQF_SHARED, KBUILD_MODNAME, ice)) {
6dfb5aff 2564 dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq);
1da177e4
LT
2565 snd_vt1724_free(ice);
2566 return -EIO;
2567 }
2568
2569 ice->irq = pci->irq;
2570
988f0664 2571 snd_vt1724_chip_reset(ice);
1da177e4
LT
2572 if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
2573 snd_vt1724_free(ice);
2574 return -EIO;
2575 }
2576 if (snd_vt1724_chip_init(ice) < 0) {
2577 snd_vt1724_free(ice);
2578 return -EIO;
2579 }
2580
1de9fdc2
AB
2581 err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
2582 if (err < 0) {
1da177e4 2583 snd_vt1724_free(ice);
1de9fdc2 2584 return err;
1da177e4
LT
2585 }
2586
1da177e4
LT
2587 *r_ice1712 = ice;
2588 return 0;
2589}
2590
2591
2592/*
2593 *
2594 * Registration
2595 *
2596 */
2597
e23e7a14
BP
2598static int snd_vt1724_probe(struct pci_dev *pci,
2599 const struct pci_device_id *pci_id)
1da177e4
LT
2600{
2601 static int dev;
ab0c7d72
TI
2602 struct snd_card *card;
2603 struct snd_ice1712 *ice;
1da177e4 2604 int pcm_dev = 0, err;
1b60f6b0 2605 struct snd_ice1712_card_info * const *tbl, *c;
1da177e4
LT
2606
2607 if (dev >= SNDRV_CARDS)
2608 return -ENODEV;
2609 if (!enable[dev]) {
2610 dev++;
2611 return -ENOENT;
2612 }
2613
60c5772b
TI
2614 err = snd_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
2615 0, &card);
e58de7ba
TI
2616 if (err < 0)
2617 return err;
1da177e4
LT
2618
2619 strcpy(card->driver, "ICE1724");
2620 strcpy(card->shortname, "ICEnsemble ICE1724");
1de9fdc2
AB
2621
2622 err = snd_vt1724_create(card, pci, model[dev], &ice);
2623 if (err < 0) {
1da177e4
LT
2624 snd_card_free(card);
2625 return err;
2626 }
2627
1ff97cb9
PH
2628 /* field init before calling chip_init */
2629 ice->ext_clock_count = 0;
2630
1da177e4 2631 for (tbl = card_tables; *tbl; tbl++) {
2b151ef7
PH
2632 for (c = *tbl; c->name; c++) {
2633 if ((model[dev] && c->model &&
2634 !strcmp(model[dev], c->model)) ||
2635 (c->subvendor == ice->eeprom.subvendor)) {
1da177e4
LT
2636 strcpy(card->shortname, c->name);
2637 if (c->driver) /* specific driver? */
2638 strcpy(card->driver, c->driver);
2639 if (c->chip_init) {
1de9fdc2
AB
2640 err = c->chip_init(ice);
2641 if (err < 0) {
1da177e4
LT
2642 snd_card_free(card);
2643 return err;
2644 }
2645 }
2646 goto __found;
2647 }
2648 }
2649 }
2650 c = &no_matched;
1de9fdc2
AB
2651__found:
2652 /*
2653 * VT1724 has separate DMAs for the analog and the SPDIF streams while
2654 * ICE1712 has only one for both (mixed up).
2655 *
2656 * Confusingly the analog PCM is named "professional" here because it
2657 * was called so in ice1712 driver, and vt1724 driver is derived from
2658 * ice1712 driver.
2659 */
d16be8ed
PH
2660 ice->pro_rate_default = PRO_RATE_DEFAULT;
2661 if (!ice->is_spdif_master)
2662 ice->is_spdif_master = stdclock_is_spdif_master;
2663 if (!ice->get_rate)
2664 ice->get_rate = stdclock_get_rate;
2665 if (!ice->set_rate)
2666 ice->set_rate = stdclock_set_rate;
2667 if (!ice->set_mclk)
2668 ice->set_mclk = stdclock_set_mclk;
2669 if (!ice->set_spdif_clock)
2670 ice->set_spdif_clock = stdclock_set_spdif_clock;
1ff97cb9
PH
2671 if (!ice->get_spdif_master_type)
2672 ice->get_spdif_master_type = stdclock_get_spdif_master_type;
2673 if (!ice->ext_clock_names)
2674 ice->ext_clock_names = ext_clock_names;
2675 if (!ice->ext_clock_count)
2676 ice->ext_clock_count = ARRAY_SIZE(ext_clock_names);
2677
d16be8ed
PH
2678 if (!ice->hw_rates)
2679 set_std_hw_rates(ice);
1da177e4 2680
1de9fdc2
AB
2681 err = snd_vt1724_pcm_profi(ice, pcm_dev++);
2682 if (err < 0) {
1da177e4
LT
2683 snd_card_free(card);
2684 return err;
2685 }
1de9fdc2
AB
2686
2687 err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
2688 if (err < 0) {
1da177e4
LT
2689 snd_card_free(card);
2690 return err;
2691 }
1de9fdc2
AB
2692
2693 err = snd_vt1724_pcm_indep(ice, pcm_dev++);
2694 if (err < 0) {
1da177e4
LT
2695 snd_card_free(card);
2696 return err;
2697 }
2698
1de9fdc2
AB
2699 err = snd_vt1724_ac97_mixer(ice);
2700 if (err < 0) {
1da177e4
LT
2701 snd_card_free(card);
2702 return err;
2703 }
2704
1de9fdc2
AB
2705 err = snd_vt1724_build_controls(ice);
2706 if (err < 0) {
1da177e4
LT
2707 snd_card_free(card);
2708 return err;
2709 }
2710
2711 if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
1de9fdc2
AB
2712 err = snd_vt1724_spdif_build_controls(ice);
2713 if (err < 0) {
1da177e4
LT
2714 snd_card_free(card);
2715 return err;
2716 }
2717 }
2718
2719 if (c->build_controls) {
1de9fdc2
AB
2720 err = c->build_controls(ice);
2721 if (err < 0) {
1da177e4
LT
2722 snd_card_free(card);
2723 return err;
2724 }
2725 }
2726
1de9fdc2 2727 if (!c->no_mpu401) {
1da177e4 2728 if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
aea3bfbc
CL
2729 struct snd_rawmidi *rmidi;
2730
2731 err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
2732 if (err < 0) {
1da177e4
LT
2733 snd_card_free(card);
2734 return err;
2735 }
aea3bfbc
CL
2736 ice->rmidi[0] = rmidi;
2737 rmidi->private_data = ice;
2738 strcpy(rmidi->name, "ICE1724 MIDI");
2739 rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
2740 SNDRV_RAWMIDI_INFO_INPUT |
2741 SNDRV_RAWMIDI_INFO_DUPLEX;
2742 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
2743 &vt1724_midi_output_ops);
2744 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
2745 &vt1724_midi_input_ops);
2746
3a841d51
TI
2747 /* set watermarks */
2748 outb(VT1724_MPU_RX_FIFO | 0x1,
2749 ICEREG1724(ice, MPU_FIFO_WM));
2750 outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
aea3bfbc
CL
2751 /* set UART mode */
2752 outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
1da177e4
LT
2753 }
2754 }
2755
2756 sprintf(card->longname, "%s at 0x%lx, irq %i",
2757 card->shortname, ice->port, ice->irq);
2758
1de9fdc2
AB
2759 err = snd_card_register(card);
2760 if (err < 0) {
1da177e4
LT
2761 snd_card_free(card);
2762 return err;
2763 }
2764 pci_set_drvdata(pci, card);
2765 dev++;
2766 return 0;
2767}
2768
e23e7a14 2769static void snd_vt1724_remove(struct pci_dev *pci)
1da177e4 2770{
267bccaf
OZ
2771 struct snd_card *card = pci_get_drvdata(pci);
2772 struct snd_ice1712 *ice = card->private_data;
2773
2774 if (ice->card_info && ice->card_info->chip_exit)
2775 ice->card_info->chip_exit(ice);
2776 snd_card_free(card);
1da177e4
LT
2777}
2778
c7561cd8 2779#ifdef CONFIG_PM_SLEEP
68cb2b55 2780static int snd_vt1724_suspend(struct device *dev)
b40e9538 2781{
68cb2b55 2782 struct snd_card *card = dev_get_drvdata(dev);
b40e9538
IC
2783 struct snd_ice1712 *ice = card->private_data;
2784
2785 if (!ice->pm_suspend_enabled)
2786 return 0;
2787
2788 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
2789
b40e9538
IC
2790 snd_ac97_suspend(ice->ac97);
2791
2792 spin_lock_irq(&ice->reg_lock);
2793 ice->pm_saved_is_spdif_master = ice->is_spdif_master(ice);
2794 ice->pm_saved_spdif_ctrl = inw(ICEMT1724(ice, SPDIF_CTRL));
2795 ice->pm_saved_spdif_cfg = inb(ICEREG1724(ice, SPDIF_CFG));
2796 ice->pm_saved_route = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
2797 spin_unlock_irq(&ice->reg_lock);
2798
2799 if (ice->pm_suspend)
2800 ice->pm_suspend(ice);
b40e9538
IC
2801 return 0;
2802}
2803
68cb2b55 2804static int snd_vt1724_resume(struct device *dev)
b40e9538 2805{
68cb2b55 2806 struct snd_card *card = dev_get_drvdata(dev);
b40e9538
IC
2807 struct snd_ice1712 *ice = card->private_data;
2808
2809 if (!ice->pm_suspend_enabled)
2810 return 0;
2811
b40e9538
IC
2812 snd_vt1724_chip_reset(ice);
2813
2814 if (snd_vt1724_chip_init(ice) < 0) {
2815 snd_card_disconnect(card);
2816 return -EIO;
2817 }
2818
2819 if (ice->pm_resume)
2820 ice->pm_resume(ice);
2821
2822 if (ice->pm_saved_is_spdif_master) {
2823 /* switching to external clock via SPDIF */
1ff97cb9 2824 ice->set_spdif_clock(ice, 0);
b40e9538
IC
2825 } else {
2826 /* internal on-card clock */
16c2e1fa
TI
2827 int rate;
2828 if (ice->cur_rate)
2829 rate = ice->cur_rate;
2830 else
2831 rate = ice->pro_rate_default;
2832 snd_vt1724_set_pro_rate(ice, rate, 1);
b40e9538
IC
2833 }
2834
2835 update_spdif_bits(ice, ice->pm_saved_spdif_ctrl);
2836
2837 outb(ice->pm_saved_spdif_cfg, ICEREG1724(ice, SPDIF_CFG));
2838 outl(ice->pm_saved_route, ICEMT1724(ice, ROUTE_PLAYBACK));
2839
ae1b2265 2840 snd_ac97_resume(ice->ac97);
b40e9538
IC
2841
2842 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
2843 return 0;
2844}
68cb2b55
TI
2845
2846static SIMPLE_DEV_PM_OPS(snd_vt1724_pm, snd_vt1724_suspend, snd_vt1724_resume);
2847#define SND_VT1724_PM_OPS &snd_vt1724_pm
2848#else
2849#define SND_VT1724_PM_OPS NULL
c7561cd8 2850#endif /* CONFIG_PM_SLEEP */
b40e9538 2851
e9f66d9b 2852static struct pci_driver vt1724_driver = {
3733e424 2853 .name = KBUILD_MODNAME,
1da177e4
LT
2854 .id_table = snd_vt1724_ids,
2855 .probe = snd_vt1724_probe,
e23e7a14 2856 .remove = snd_vt1724_remove,
68cb2b55
TI
2857 .driver = {
2858 .pm = SND_VT1724_PM_OPS,
2859 },
1da177e4
LT
2860};
2861
e9f66d9b 2862module_pci_driver(vt1724_driver);