ice1724.c 72.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
/*
 *   ALSA driver for VT1724 ICEnsemble ICE1724 / VIA VT1724 (Envy24HT)
 *                   VIA VT1720 (Envy24PT)
 *
5
 *	Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
L
Linus Torvalds 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 *                    2002 James Stafford <jstafford@ampltd.com>
 *                    2003 Takashi Iwai <tiwai@suse.de>
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 *
23
 */
L
Linus Torvalds 已提交
24

25
#include <linux/io.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31
#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/pci.h>
#include <linux/slab.h>
#include <linux/moduleparam.h>
32
#include <linux/mutex.h>
L
Linus Torvalds 已提交
33 34
#include <sound/core.h>
#include <sound/info.h>
C
Clemens Ladisch 已提交
35
#include <sound/rawmidi.h>
L
Linus Torvalds 已提交
36 37 38 39 40 41 42 43 44 45 46 47 48 49
#include <sound/initval.h>

#include <sound/asoundef.h>

#include "ice1712.h"
#include "envy24ht.h"

/* lowlevel routines */
#include "amp.h"
#include "revo.h"
#include "aureon.h"
#include "vt1720_mobo.h"
#include "pontis.h"
#include "prodigy192.h"
50
#include "prodigy_hifi.h"
L
Linus Torvalds 已提交
51
#include "juli.h"
52
#include "maya44.h"
L
Linus Torvalds 已提交
53
#include "phase.h"
54
#include "wtm.h"
55
#include "se.h"
L
Linus Torvalds 已提交
56

57
MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
L
Linus Torvalds 已提交
58 59 60 61 62 63 64 65 66
MODULE_DESCRIPTION("VIA ICEnsemble ICE1724/1720 (Envy24HT/PT)");
MODULE_LICENSE("GPL");
MODULE_SUPPORTED_DEVICE("{"
	       REVO_DEVICE_DESC
	       AMP_AUDIO2000_DEVICE_DESC
	       AUREON_DEVICE_DESC
	       VT1720_MOBO_DEVICE_DESC
	       PONTIS_DEVICE_DESC
	       PRODIGY192_DEVICE_DESC
67
	       PRODIGY_HIFI_DEVICE_DESC
L
Linus Torvalds 已提交
68
	       JULI_DEVICE_DESC
69
	       MAYA44_DEVICE_DESC
L
Linus Torvalds 已提交
70
	       PHASE_DEVICE_DESC
71
	       WTM_DEVICE_DESC
72
	       SE_DEVICE_DESC
L
Linus Torvalds 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
		"{VIA,VT1720},"
		"{VIA,VT1724},"
		"{ICEnsemble,Generic ICE1724},"
		"{ICEnsemble,Generic Envy24HT}"
		"{ICEnsemble,Generic Envy24PT}}");

static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;		/* Enable this card */
static char *model[SNDRV_CARDS];

module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "Index value for ICE1724 soundcard.");
module_param_array(id, charp, NULL, 0444);
MODULE_PARM_DESC(id, "ID string for ICE1724 soundcard.");
module_param_array(enable, bool, NULL, 0444);
MODULE_PARM_DESC(enable, "Enable ICE1724 soundcard.");
module_param_array(model, charp, NULL, 0444);
MODULE_PARM_DESC(model, "Use the given board model.");


/* Both VT1720 and VT1724 have the same PCI IDs */
95
static const struct pci_device_id snd_vt1724_ids[] = {
J
Joe Perches 已提交
96
	{ PCI_VDEVICE(ICE, PCI_DEVICE_ID_VT1724), 0 },
L
Linus Torvalds 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109
	{ 0, }
};

MODULE_DEVICE_TABLE(pci, snd_vt1724_ids);


static int PRO_RATE_LOCKED;
static int PRO_RATE_RESET = 1;
static unsigned int PRO_RATE_DEFAULT = 44100;

/*
 *  Basic I/O
 */
110

111 112 113 114
/*
 *  default rates, default clock routines
 */

L
Linus Torvalds 已提交
115
/* check whether the clock mode is spdif-in */
116
static inline int stdclock_is_spdif_master(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
117 118 119 120
{
	return (inb(ICEMT1724(ice, RATE)) & VT1724_SPDIF_MASTER) ? 1 : 0;
}

121
static inline int is_pro_rate_locked(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
122
{
123
	return ice->is_spdif_master(ice) || PRO_RATE_LOCKED;
L
Linus Torvalds 已提交
124 125 126 127 128 129
}

/*
 * ac97 section
 */

130
static unsigned char snd_vt1724_ac97_ready(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
{
	unsigned char old_cmd;
	int tm;
	for (tm = 0; tm < 0x10000; tm++) {
		old_cmd = inb(ICEMT1724(ice, AC97_CMD));
		if (old_cmd & (VT1724_AC97_WRITE | VT1724_AC97_READ))
			continue;
		if (!(old_cmd & VT1724_AC97_READY))
			continue;
		return old_cmd;
	}
	snd_printd(KERN_ERR "snd_vt1724_ac97_ready: timeout\n");
	return old_cmd;
}

146
static int snd_vt1724_ac97_wait_bit(struct snd_ice1712 *ice, unsigned char bit)
L
Linus Torvalds 已提交
147 148 149 150 151 152 153 154 155
{
	int tm;
	for (tm = 0; tm < 0x10000; tm++)
		if ((inb(ICEMT1724(ice, AC97_CMD)) & bit) == 0)
			return 0;
	snd_printd(KERN_ERR "snd_vt1724_ac97_wait_bit: timeout\n");
	return -EIO;
}

156
static void snd_vt1724_ac97_write(struct snd_ac97 *ac97,
L
Linus Torvalds 已提交
157 158 159
				  unsigned short reg,
				  unsigned short val)
{
160
	struct snd_ice1712 *ice = ac97->private_data;
L
Linus Torvalds 已提交
161 162 163 164 165 166 167 168 169 170 171
	unsigned char old_cmd;

	old_cmd = snd_vt1724_ac97_ready(ice);
	old_cmd &= ~VT1724_AC97_ID_MASK;
	old_cmd |= ac97->num;
	outb(reg, ICEMT1724(ice, AC97_INDEX));
	outw(val, ICEMT1724(ice, AC97_DATA));
	outb(old_cmd | VT1724_AC97_WRITE, ICEMT1724(ice, AC97_CMD));
	snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_WRITE);
}

172
static unsigned short snd_vt1724_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
L
Linus Torvalds 已提交
173
{
174
	struct snd_ice1712 *ice = ac97->private_data;
L
Linus Torvalds 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
	unsigned char old_cmd;

	old_cmd = snd_vt1724_ac97_ready(ice);
	old_cmd &= ~VT1724_AC97_ID_MASK;
	old_cmd |= ac97->num;
	outb(reg, ICEMT1724(ice, AC97_INDEX));
	outb(old_cmd | VT1724_AC97_READ, ICEMT1724(ice, AC97_CMD));
	if (snd_vt1724_ac97_wait_bit(ice, VT1724_AC97_READ) < 0)
		return ~0;
	return inw(ICEMT1724(ice, AC97_DATA));
}


/*
 * GPIO operations
 */

/* set gpio direction 0 = read, 1 = write */
193
static void snd_vt1724_set_gpio_dir(struct snd_ice1712 *ice, unsigned int data)
L
Linus Torvalds 已提交
194 195 196 197 198 199
{
	outl(data, ICEREG1724(ice, GPIO_DIRECTION));
	inw(ICEREG1724(ice, GPIO_DIRECTION)); /* dummy read for pci-posting */
}

/* set the gpio mask (0 = writable) */
200
static void snd_vt1724_set_gpio_mask(struct snd_ice1712 *ice, unsigned int data)
L
Linus Torvalds 已提交
201 202
{
	outw(data, ICEREG1724(ice, GPIO_WRITE_MASK));
203
	if (!ice->vt1720) /* VT1720 supports only 16 GPIO bits */
L
Linus Torvalds 已提交
204 205 206 207
		outb((data >> 16) & 0xff, ICEREG1724(ice, GPIO_WRITE_MASK_22));
	inw(ICEREG1724(ice, GPIO_WRITE_MASK)); /* dummy read for pci-posting */
}

208
static void snd_vt1724_set_gpio_data(struct snd_ice1712 *ice, unsigned int data)
L
Linus Torvalds 已提交
209 210
{
	outw(data, ICEREG1724(ice, GPIO_DATA));
211
	if (!ice->vt1720)
L
Linus Torvalds 已提交
212 213 214 215
		outb(data >> 16, ICEREG1724(ice, GPIO_DATA_22));
	inw(ICEREG1724(ice, GPIO_DATA)); /* dummy read for pci-posting */
}

216
static unsigned int snd_vt1724_get_gpio_data(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
217 218
{
	unsigned int data;
219
	if (!ice->vt1720)
L
Linus Torvalds 已提交
220 221 222 223 224 225 226
		data = (unsigned int)inb(ICEREG1724(ice, GPIO_DATA_22));
	else
		data = 0;
	data = (data << 16) | inw(ICEREG1724(ice, GPIO_DATA));
	return data;
}

227
/*
C
Clemens Ladisch 已提交
228
 * MIDI
229
 */
C
Clemens Ladisch 已提交
230 231 232 233 234 235 236 237 238 239 240

static void vt1724_midi_clear_rx(struct snd_ice1712 *ice)
{
	unsigned int count;

	for (count = inb(ICEREG1724(ice, MPU_RXFIFO)); count > 0; --count)
		inb(ICEREG1724(ice, MPU_DATA));
}

static inline struct snd_rawmidi_substream *
get_rawmidi_substream(struct snd_ice1712 *ice, unsigned int stream)
241
{
C
Clemens Ladisch 已提交
242 243 244 245
	return list_first_entry(&ice->rmidi[0]->streams[stream].substreams,
				struct snd_rawmidi_substream, list);
}

246 247
static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable);

C
Clemens Ladisch 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260
static void vt1724_midi_write(struct snd_ice1712 *ice)
{
	struct snd_rawmidi_substream *s;
	int count, i;
	u8 buffer[32];

	s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_OUTPUT);
	count = 31 - inb(ICEREG1724(ice, MPU_TXFIFO));
	if (count > 0) {
		count = snd_rawmidi_transmit(s, buffer, count);
		for (i = 0; i < count; ++i)
			outb(buffer[i], ICEREG1724(ice, MPU_DATA));
	}
261 262 263 264 265
	/* mask irq when all bytes have been transmitted.
	 * enabled again in output_trigger when the new data comes in.
	 */
	enable_midi_irq(ice, VT1724_IRQ_MPU_TX,
			!snd_rawmidi_transmit_empty(s));
C
Clemens Ladisch 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
}

static void vt1724_midi_read(struct snd_ice1712 *ice)
{
	struct snd_rawmidi_substream *s;
	int count, i;
	u8 buffer[32];

	s = get_rawmidi_substream(ice, SNDRV_RAWMIDI_STREAM_INPUT);
	count = inb(ICEREG1724(ice, MPU_RXFIFO));
	if (count > 0) {
		count = min(count, 32);
		for (i = 0; i < count; ++i)
			buffer[i] = inb(ICEREG1724(ice, MPU_DATA));
		snd_rawmidi_receive(s, buffer, count);
	}
}

284 285
/* call with ice->reg_lock */
static void enable_midi_irq(struct snd_ice1712 *ice, u8 flag, int enable)
C
Clemens Ladisch 已提交
286
{
287
	u8 mask = inb(ICEREG1724(ice, IRQMASK));
C
Clemens Ladisch 已提交
288 289
	if (enable)
		mask &= ~flag;
290
	else
C
Clemens Ladisch 已提交
291 292
		mask |= flag;
	outb(mask, ICEREG1724(ice, IRQMASK));
293 294 295 296 297 298 299 300 301
}

static void vt1724_enable_midi_irq(struct snd_rawmidi_substream *substream,
				   u8 flag, int enable)
{
	struct snd_ice1712 *ice = substream->rmidi->private_data;

	spin_lock_irq(&ice->reg_lock);
	enable_midi_irq(ice, flag, enable);
C
Clemens Ladisch 已提交
302
	spin_unlock_irq(&ice->reg_lock);
303 304
}

C
Clemens Ladisch 已提交
305
static int vt1724_midi_output_open(struct snd_rawmidi_substream *s)
306
{
C
Clemens Ladisch 已提交
307 308 309 310 311 312
	return 0;
}

static int vt1724_midi_output_close(struct snd_rawmidi_substream *s)
{
	return 0;
313 314
}

C
Clemens Ladisch 已提交
315 316 317 318 319 320 321 322 323 324 325
static void vt1724_midi_output_trigger(struct snd_rawmidi_substream *s, int up)
{
	struct snd_ice1712 *ice = s->rmidi->private_data;
	unsigned long flags;

	spin_lock_irqsave(&ice->reg_lock, flags);
	if (up) {
		ice->midi_output = 1;
		vt1724_midi_write(ice);
	} else {
		ice->midi_output = 0;
326
		enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
C
Clemens Ladisch 已提交
327 328 329 330 331 332 333 334 335
	}
	spin_unlock_irqrestore(&ice->reg_lock, flags);
}

static void vt1724_midi_output_drain(struct snd_rawmidi_substream *s)
{
	struct snd_ice1712 *ice = s->rmidi->private_data;
	unsigned long timeout;

336
	vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_TX, 0);
C
Clemens Ladisch 已提交
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
	/* 32 bytes should be transmitted in less than about 12 ms */
	timeout = jiffies + msecs_to_jiffies(15);
	do {
		if (inb(ICEREG1724(ice, MPU_CTRL)) & VT1724_MPU_TX_EMPTY)
			break;
		schedule_timeout_uninterruptible(1);
	} while (time_after(timeout, jiffies));
}

static struct snd_rawmidi_ops vt1724_midi_output_ops = {
	.open = vt1724_midi_output_open,
	.close = vt1724_midi_output_close,
	.trigger = vt1724_midi_output_trigger,
	.drain = vt1724_midi_output_drain,
};

static int vt1724_midi_input_open(struct snd_rawmidi_substream *s)
{
	vt1724_midi_clear_rx(s->rmidi->private_data);
	vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 1);
	return 0;
}

static int vt1724_midi_input_close(struct snd_rawmidi_substream *s)
{
	vt1724_enable_midi_irq(s, VT1724_IRQ_MPU_RX, 0);
	return 0;
}

static void vt1724_midi_input_trigger(struct snd_rawmidi_substream *s, int up)
{
	struct snd_ice1712 *ice = s->rmidi->private_data;
	unsigned long flags;

	spin_lock_irqsave(&ice->reg_lock, flags);
	if (up) {
		ice->midi_input = 1;
		vt1724_midi_read(ice);
	} else {
		ice->midi_input = 0;
	}
	spin_unlock_irqrestore(&ice->reg_lock, flags);
}

static struct snd_rawmidi_ops vt1724_midi_input_ops = {
	.open = vt1724_midi_input_open,
	.close = vt1724_midi_input_close,
	.trigger = vt1724_midi_input_trigger,
};

387

L
Linus Torvalds 已提交
388 389 390 391
/*
 *  Interrupt handler
 */

392
static irqreturn_t snd_vt1724_interrupt(int irq, void *dev_id)
L
Linus Torvalds 已提交
393
{
394
	struct snd_ice1712 *ice = dev_id;
L
Linus Torvalds 已提交
395
	unsigned char status;
396 397
	unsigned char status_mask =
		VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX | VT1724_IRQ_MTPCM;
L
Linus Torvalds 已提交
398
	int handled = 0;
399
	int timeout = 0;
L
Linus Torvalds 已提交
400 401 402

	while (1) {
		status = inb(ICEREG1724(ice, IRQSTAT));
403
		status &= status_mask;
L
Linus Torvalds 已提交
404 405
		if (status == 0)
			break;
406
		spin_lock(&ice->reg_lock);
407
		if (++timeout > 10) {
T
Takashi Iwai 已提交
408 409 410 411 412
			status = inb(ICEREG1724(ice, IRQSTAT));
			printk(KERN_ERR "ice1724: Too long irq loop, "
			       "status = 0x%x\n", status);
			if (status & VT1724_IRQ_MPU_TX) {
				printk(KERN_ERR "ice1724: Disabling MPU_TX\n");
413
				enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
T
Takashi Iwai 已提交
414
			}
415
			spin_unlock(&ice->reg_lock);
416 417
			break;
		}
418
		handled = 1;
419
		if (status & VT1724_IRQ_MPU_TX) {
C
Clemens Ladisch 已提交
420 421
			if (ice->midi_output)
				vt1724_midi_write(ice);
422 423
			else
				enable_midi_irq(ice, VT1724_IRQ_MPU_TX, 0);
424 425 426 427 428 429 430 431
			/* Due to mysterical reasons, MPU_TX is always
			 * generated (and can't be cleared) when a PCM
			 * playback is going.  So let's ignore at the
			 * next loop.
			 */
			status_mask &= ~VT1724_IRQ_MPU_TX;
		}
		if (status & VT1724_IRQ_MPU_RX) {
C
Clemens Ladisch 已提交
432 433 434 435
			if (ice->midi_input)
				vt1724_midi_read(ice);
			else
				vt1724_midi_clear_rx(ice);
L
Linus Torvalds 已提交
436
		}
437 438
		/* ack MPU irq */
		outb(status, ICEREG1724(ice, IRQSTAT));
439
		spin_unlock(&ice->reg_lock);
L
Linus Torvalds 已提交
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
		if (status & VT1724_IRQ_MTPCM) {
			/*
			 * Multi-track PCM
			 * PCM assignment are:
			 * Playback DMA0 (M/C) = playback_pro_substream
			 * Playback DMA1 = playback_con_substream_ds[0]
			 * Playback DMA2 = playback_con_substream_ds[1]
			 * Playback DMA3 = playback_con_substream_ds[2]
			 * Playback DMA4 (SPDIF) = playback_con_substream
			 * Record DMA0 = capture_pro_substream
			 * Record DMA1 = capture_con_substream
			 */
			unsigned char mtstat = inb(ICEMT1724(ice, IRQ));
			if (mtstat & VT1724_MULTI_PDMA0) {
				if (ice->playback_pro_substream)
					snd_pcm_period_elapsed(ice->playback_pro_substream);
			}
			if (mtstat & VT1724_MULTI_RDMA0) {
				if (ice->capture_pro_substream)
					snd_pcm_period_elapsed(ice->capture_pro_substream);
			}
			if (mtstat & VT1724_MULTI_PDMA1) {
				if (ice->playback_con_substream_ds[0])
					snd_pcm_period_elapsed(ice->playback_con_substream_ds[0]);
			}
			if (mtstat & VT1724_MULTI_PDMA2) {
				if (ice->playback_con_substream_ds[1])
					snd_pcm_period_elapsed(ice->playback_con_substream_ds[1]);
			}
			if (mtstat & VT1724_MULTI_PDMA3) {
				if (ice->playback_con_substream_ds[2])
					snd_pcm_period_elapsed(ice->playback_con_substream_ds[2]);
			}
			if (mtstat & VT1724_MULTI_PDMA4) {
				if (ice->playback_con_substream)
					snd_pcm_period_elapsed(ice->playback_con_substream);
			}
			if (mtstat & VT1724_MULTI_RDMA1) {
				if (ice->capture_con_substream)
					snd_pcm_period_elapsed(ice->capture_con_substream);
			}
			/* ack anyway to avoid freeze */
			outb(mtstat, ICEMT1724(ice, IRQ));
			/* ought to really handle this properly */
			if (mtstat & VT1724_MULTI_FIFO_ERR) {
				unsigned char fstat = inb(ICEMT1724(ice, DMA_FIFO_ERR));
486 487
				outb(fstat, ICEMT1724(ice, DMA_FIFO_ERR));
				outb(VT1724_MULTI_FIFO_ERR | inb(ICEMT1724(ice, DMA_INT_MASK)), ICEMT1724(ice, DMA_INT_MASK));
L
Linus Torvalds 已提交
488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
				/* If I don't do this, I get machine lockup due to continual interrupts */
			}

		}
	}
	return IRQ_RETVAL(handled);
}

/*
 *  PCM code - professional part (multitrack)
 */

static unsigned int rates[] = {
	8000, 9600, 11025, 12000, 16000, 22050, 24000,
	32000, 44100, 48000, 64000, 88200, 96000,
	176400, 192000,
};

506
static struct snd_pcm_hw_constraint_list hw_constraints_rates_96 = {
L
Linus Torvalds 已提交
507 508 509 510 511
	.count = ARRAY_SIZE(rates) - 2, /* up to 96000 */
	.list = rates,
	.mask = 0,
};

512
static struct snd_pcm_hw_constraint_list hw_constraints_rates_48 = {
L
Linus Torvalds 已提交
513 514 515 516 517
	.count = ARRAY_SIZE(rates) - 5, /* up to 48000 */
	.list = rates,
	.mask = 0,
};

518
static struct snd_pcm_hw_constraint_list hw_constraints_rates_192 = {
L
Linus Torvalds 已提交
519 520 521 522 523 524 525 526 527 528 529 530
	.count = ARRAY_SIZE(rates),
	.list = rates,
	.mask = 0,
};

struct vt1724_pcm_reg {
	unsigned int addr;	/* ADDR register offset */
	unsigned int size;	/* SIZE register offset */
	unsigned int count;	/* COUNT register offset */
	unsigned int start;	/* start & pause bit */
};

531
static int snd_vt1724_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
L
Linus Torvalds 已提交
532
{
533
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
534 535
	unsigned char what;
	unsigned char old;
536
	struct snd_pcm_substream *s;
L
Linus Torvalds 已提交
537 538

	what = 0;
539
	snd_pcm_group_for_each_entry(s, substream) {
540 541 542 543 544 545
		if (snd_pcm_substream_chip(s) == ice) {
			const struct vt1724_pcm_reg *reg;
			reg = s->runtime->private_data;
			what |= reg->start;
			snd_pcm_trigger_done(s, substream);
		}
L
Linus Torvalds 已提交
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
	}

	switch (cmd) {
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
		spin_lock(&ice->reg_lock);
		old = inb(ICEMT1724(ice, DMA_PAUSE));
		if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
			old |= what;
		else
			old &= ~what;
		outb(old, ICEMT1724(ice, DMA_PAUSE));
		spin_unlock(&ice->reg_lock);
		break;

	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_STOP:
		spin_lock(&ice->reg_lock);
		old = inb(ICEMT1724(ice, DMA_CONTROL));
		if (cmd == SNDRV_PCM_TRIGGER_START)
			old |= what;
		else
			old &= ~what;
		outb(old, ICEMT1724(ice, DMA_CONTROL));
		spin_unlock(&ice->reg_lock);
		break;

	default:
		return -EINVAL;
	}
	return 0;
}

/*
 */

#define DMA_STARTS	(VT1724_RDMA0_START|VT1724_PDMA0_START|VT1724_RDMA1_START|\
	VT1724_PDMA1_START|VT1724_PDMA2_START|VT1724_PDMA3_START|VT1724_PDMA4_START)
#define DMA_PAUSES	(VT1724_RDMA0_PAUSE|VT1724_PDMA0_PAUSE|VT1724_RDMA1_PAUSE|\
	VT1724_PDMA1_PAUSE|VT1724_PDMA2_PAUSE|VT1724_PDMA3_PAUSE|VT1724_PDMA4_PAUSE)

587 588 589 590 591 592
static const unsigned int stdclock_rate_list[16] = {
	48000, 24000, 12000, 9600, 32000, 16000, 8000, 96000, 44100,
	22050, 11025, 88200, 176400, 0, 192000, 64000
};

static unsigned int stdclock_get_rate(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
593
{
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614
	unsigned int rate;
	rate = stdclock_rate_list[inb(ICEMT1724(ice, RATE)) & 15];
	return rate;
}

static void stdclock_set_rate(struct snd_ice1712 *ice, unsigned int rate)
{
	int i;
	for (i = 0; i < ARRAY_SIZE(stdclock_rate_list); i++) {
		if (stdclock_rate_list[i] == rate) {
			outb(i, ICEMT1724(ice, RATE));
			return;
		}
	}
}

static unsigned char stdclock_set_mclk(struct snd_ice1712 *ice,
				       unsigned int rate)
{
	unsigned char val, old;
	/* check MT02 */
L
Linus Torvalds 已提交
615
	if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
616 617 618
		val = old = inb(ICEMT1724(ice, I2S_FORMAT));
		if (rate > 96000)
			val |= VT1724_MT_I2S_MCLK_128X; /* 128x MCLK */
L
Linus Torvalds 已提交
619
		else
620 621 622 623 624 625 626 627 628
			val &= ~VT1724_MT_I2S_MCLK_128X; /* 256x MCLK */
		if (val != old) {
			outb(val, ICEMT1724(ice, I2S_FORMAT));
			/* master clock changed */
			return 1;
		}
	}
	/* no change in master clock */
	return 0;
L
Linus Torvalds 已提交
629 630
}

631
static int snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate,
632
				    int force)
L
Linus Torvalds 已提交
633 634
{
	unsigned long flags;
635 636
	unsigned char mclk_change;
	unsigned int i, old_rate;
L
Linus Torvalds 已提交
637

638
	if (rate > ice->hw_rates->list[ice->hw_rates->count - 1])
639 640
		return -EINVAL;

L
Linus Torvalds 已提交
641
	spin_lock_irqsave(&ice->reg_lock, flags);
642
	if ((inb(ICEMT1724(ice, DMA_CONTROL)) & DMA_STARTS) ||
L
Linus Torvalds 已提交
643 644 645
	    (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) {
		/* running? we cannot change the rate now... */
		spin_unlock_irqrestore(&ice->reg_lock, flags);
646
		return -EBUSY;
L
Linus Torvalds 已提交
647 648 649
	}
	if (!force && is_pro_rate_locked(ice)) {
		spin_unlock_irqrestore(&ice->reg_lock, flags);
650
		return (rate == ice->cur_rate) ? 0 : -EBUSY;
L
Linus Torvalds 已提交
651 652
	}

653 654 655
	old_rate = ice->get_rate(ice);
	if (force || (old_rate != rate))
		ice->set_rate(ice, rate);
L
Linus Torvalds 已提交
656 657
	else if (rate == ice->cur_rate) {
		spin_unlock_irqrestore(&ice->reg_lock, flags);
658
		return 0;
L
Linus Torvalds 已提交
659 660 661 662
	}

	ice->cur_rate = rate;

663 664 665
	/* setting master clock */
	mclk_change = ice->set_mclk(ice, rate);

L
Linus Torvalds 已提交
666 667 668 669 670 671 672 673 674 675 676 677 678 679
	spin_unlock_irqrestore(&ice->reg_lock, flags);

	if (mclk_change && ice->gpio.i2s_mclk_changed)
		ice->gpio.i2s_mclk_changed(ice);
	if (ice->gpio.set_pro_rate)
		ice->gpio.set_pro_rate(ice, rate);

	/* set up codecs */
	for (i = 0; i < ice->akm_codecs; i++) {
		if (ice->akm[i].ops.set_rate_val)
			ice->akm[i].ops.set_rate_val(&ice->akm[i], rate);
	}
	if (ice->spdif.ops.setup_rate)
		ice->spdif.ops.setup_rate(ice, rate);
680 681

	return 0;
L
Linus Torvalds 已提交
682 683
}

684 685
static int snd_vt1724_pcm_hw_params(struct snd_pcm_substream *substream,
				    struct snd_pcm_hw_params *hw_params)
L
Linus Torvalds 已提交
686
{
687
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
688
	int i, chs, err;
L
Linus Torvalds 已提交
689 690

	chs = params_channels(hw_params);
691
	mutex_lock(&ice->open_mutex);
L
Linus Torvalds 已提交
692 693 694 695 696
	/* mark surround channels */
	if (substream == ice->playback_pro_substream) {
		/* PDMA0 can be multi-channel up to 8 */
		chs = chs / 2 - 1;
		for (i = 0; i < chs; i++) {
697 698
			if (ice->pcm_reserved[i] &&
			    ice->pcm_reserved[i] != substream) {
699
				mutex_unlock(&ice->open_mutex);
L
Linus Torvalds 已提交
700 701 702 703 704 705 706 707 708 709 710 711
				return -EBUSY;
			}
			ice->pcm_reserved[i] = substream;
		}
		for (; i < 3; i++) {
			if (ice->pcm_reserved[i] == substream)
				ice->pcm_reserved[i] = NULL;
		}
	} else {
		for (i = 0; i < 3; i++) {
			/* check individual playback stream */
			if (ice->playback_con_substream_ds[i] == substream) {
712 713
				if (ice->pcm_reserved[i] &&
				    ice->pcm_reserved[i] != substream) {
714
					mutex_unlock(&ice->open_mutex);
L
Linus Torvalds 已提交
715 716 717 718 719 720 721
					return -EBUSY;
				}
				ice->pcm_reserved[i] = substream;
				break;
			}
		}
	}
722
	mutex_unlock(&ice->open_mutex);
723 724 725 726 727

	err = snd_vt1724_set_pro_rate(ice, params_rate(hw_params), 0);
	if (err < 0)
		return err;

L
Linus Torvalds 已提交
728 729 730
	return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
}

731
static int snd_vt1724_pcm_hw_free(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
732
{
733
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
734 735
	int i;

736
	mutex_lock(&ice->open_mutex);
L
Linus Torvalds 已提交
737 738 739 740
	/* unmark surround channels */
	for (i = 0; i < 3; i++)
		if (ice->pcm_reserved[i] == substream)
			ice->pcm_reserved[i] = NULL;
741
	mutex_unlock(&ice->open_mutex);
L
Linus Torvalds 已提交
742 743 744
	return snd_pcm_lib_free_pages(substream);
}

745
static int snd_vt1724_playback_pro_prepare(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
746
{
747
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
748 749 750 751 752 753 754 755 756 757
	unsigned char val;
	unsigned int size;

	spin_lock_irq(&ice->reg_lock);
	val = (8 - substream->runtime->channels) >> 1;
	outb(val, ICEMT1724(ice, BURST));

	outl(substream->runtime->dma_addr, ICEMT1724(ice, PLAYBACK_ADDR));

	size = (snd_pcm_lib_buffer_bytes(substream) >> 2) - 1;
758
	/* outl(size, ICEMT1724(ice, PLAYBACK_SIZE)); */
L
Linus Torvalds 已提交
759 760 761
	outw(size, ICEMT1724(ice, PLAYBACK_SIZE));
	outb(size >> 16, ICEMT1724(ice, PLAYBACK_SIZE) + 2);
	size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
762
	/* outl(size, ICEMT1724(ice, PLAYBACK_COUNT)); */
L
Linus Torvalds 已提交
763 764 765 766 767
	outw(size, ICEMT1724(ice, PLAYBACK_COUNT));
	outb(size >> 16, ICEMT1724(ice, PLAYBACK_COUNT) + 2);

	spin_unlock_irq(&ice->reg_lock);

768 769 770 771 772 773 774 775
	/*
	printk(KERN_DEBUG "pro prepare: ch = %d, addr = 0x%x, "
	       "buffer = 0x%x, period = 0x%x\n",
	       substream->runtime->channels,
	       (unsigned int)substream->runtime->dma_addr,
	       snd_pcm_lib_buffer_bytes(substream),
	       snd_pcm_lib_period_bytes(substream));
	*/
L
Linus Torvalds 已提交
776 777 778
	return 0;
}

779
static snd_pcm_uframes_t snd_vt1724_playback_pro_pointer(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
780
{
781
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
782 783 784 785 786 787 788 789 790 791 792 793 794
	size_t ptr;

	if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & VT1724_PDMA0_START))
		return 0;
#if 0 /* read PLAYBACK_ADDR */
	ptr = inl(ICEMT1724(ice, PLAYBACK_ADDR));
	if (ptr < substream->runtime->dma_addr) {
		snd_printd("ice1724: invalid negative ptr\n");
		return 0;
	}
	ptr -= substream->runtime->dma_addr;
	ptr = bytes_to_frames(substream->runtime, ptr);
	if (ptr >= substream->runtime->buffer_size) {
795 796
		snd_printd("ice1724: invalid ptr %d (size=%d)\n",
			   (int)ptr, (int)substream->runtime->period_size);
L
Linus Torvalds 已提交
797 798 799 800 801 802
		return 0;
	}
#else /* read PLAYBACK_SIZE */
	ptr = inl(ICEMT1724(ice, PLAYBACK_SIZE)) & 0xffffff;
	ptr = (ptr + 1) << 2;
	ptr = bytes_to_frames(substream->runtime, ptr);
803
	if (!ptr)
L
Linus Torvalds 已提交
804 805 806 807
		;
	else if (ptr <= substream->runtime->buffer_size)
		ptr = substream->runtime->buffer_size - ptr;
	else {
808 809
		snd_printd("ice1724: invalid ptr %d (size=%d)\n",
			   (int)ptr, (int)substream->runtime->buffer_size);
L
Linus Torvalds 已提交
810 811 812 813 814 815
		ptr = 0;
	}
#endif
	return ptr;
}

816
static int snd_vt1724_pcm_prepare(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
817
{
818
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
819
	const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
L
Linus Torvalds 已提交
820 821 822

	spin_lock_irq(&ice->reg_lock);
	outl(substream->runtime->dma_addr, ice->profi_port + reg->addr);
823 824 825 826
	outw((snd_pcm_lib_buffer_bytes(substream) >> 2) - 1,
	     ice->profi_port + reg->size);
	outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1,
	     ice->profi_port + reg->count);
L
Linus Torvalds 已提交
827 828 829 830
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

831
static snd_pcm_uframes_t snd_vt1724_pcm_pointer(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
832
{
833
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
834
	const struct vt1724_pcm_reg *reg = substream->runtime->private_data;
L
Linus Torvalds 已提交
835 836 837 838 839 840 841 842 843 844 845 846
	size_t ptr;

	if (!(inl(ICEMT1724(ice, DMA_CONTROL)) & reg->start))
		return 0;
#if 0 /* use ADDR register */
	ptr = inl(ice->profi_port + reg->addr);
	ptr -= substream->runtime->dma_addr;
	return bytes_to_frames(substream->runtime, ptr);
#else /* use SIZE register */
	ptr = inw(ice->profi_port + reg->size);
	ptr = (ptr + 1) << 2;
	ptr = bytes_to_frames(substream->runtime, ptr);
847
	if (!ptr)
L
Linus Torvalds 已提交
848 849 850 851
		;
	else if (ptr <= substream->runtime->buffer_size)
		ptr = substream->runtime->buffer_size - ptr;
	else {
852 853
		snd_printd("ice1724: invalid ptr %d (size=%d)\n",
			   (int)ptr, (int)substream->runtime->buffer_size);
L
Linus Torvalds 已提交
854 855 856 857 858 859
		ptr = 0;
	}
	return ptr;
#endif
}

860
static const struct vt1724_pcm_reg vt1724_pdma0_reg = {
L
Linus Torvalds 已提交
861 862 863 864 865 866
	.addr = VT1724_MT_PLAYBACK_ADDR,
	.size = VT1724_MT_PLAYBACK_SIZE,
	.count = VT1724_MT_PLAYBACK_COUNT,
	.start = VT1724_PDMA0_START,
};

867 868 869 870 871 872 873 874
static const struct vt1724_pcm_reg vt1724_pdma4_reg = {
	.addr = VT1724_MT_PDMA4_ADDR,
	.size = VT1724_MT_PDMA4_SIZE,
	.count = VT1724_MT_PDMA4_COUNT,
	.start = VT1724_PDMA4_START,
};

static const struct vt1724_pcm_reg vt1724_rdma0_reg = {
L
Linus Torvalds 已提交
875 876 877 878 879 880
	.addr = VT1724_MT_CAPTURE_ADDR,
	.size = VT1724_MT_CAPTURE_SIZE,
	.count = VT1724_MT_CAPTURE_COUNT,
	.start = VT1724_RDMA0_START,
};

881 882 883 884 885 886 887 888 889 890 891 892
static const struct vt1724_pcm_reg vt1724_rdma1_reg = {
	.addr = VT1724_MT_RDMA1_ADDR,
	.size = VT1724_MT_RDMA1_SIZE,
	.count = VT1724_MT_RDMA1_COUNT,
	.start = VT1724_RDMA1_START,
};

#define vt1724_playback_pro_reg vt1724_pdma0_reg
#define vt1724_playback_spdif_reg vt1724_pdma4_reg
#define vt1724_capture_pro_reg vt1724_rdma0_reg
#define vt1724_capture_spdif_reg vt1724_rdma1_reg

893
static const struct snd_pcm_hardware snd_vt1724_playback_pro = {
L
Linus Torvalds 已提交
894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910
	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
				 SNDRV_PCM_INFO_MMAP_VALID |
				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
	.formats =		SNDRV_PCM_FMTBIT_S32_LE,
	.rates =		SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
	.rate_min =		8000,
	.rate_max =		192000,
	.channels_min =		2,
	.channels_max =		8,
	.buffer_bytes_max =	(1UL << 21),	/* 19bits dword */
	.period_bytes_min =	8 * 4 * 2,	/* FIXME: constraints needed */
	.period_bytes_max =	(1UL << 21),
	.periods_min =		2,
	.periods_max =		1024,
};

911
static const struct snd_pcm_hardware snd_vt1724_spdif = {
L
Linus Torvalds 已提交
912 913 914 915 916
	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
				 SNDRV_PCM_INFO_MMAP_VALID |
				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
	.formats =		SNDRV_PCM_FMTBIT_S32_LE,
917 918 919 920
	.rates =	        (SNDRV_PCM_RATE_32000|SNDRV_PCM_RATE_44100|
				 SNDRV_PCM_RATE_48000|SNDRV_PCM_RATE_88200|
				 SNDRV_PCM_RATE_96000|SNDRV_PCM_RATE_176400|
				 SNDRV_PCM_RATE_192000),
L
Linus Torvalds 已提交
921
	.rate_min =		32000,
922
	.rate_max =		192000,
L
Linus Torvalds 已提交
923 924 925 926 927 928 929 930 931
	.channels_min =		2,
	.channels_max =		2,
	.buffer_bytes_max =	(1UL << 18),	/* 16bits dword */
	.period_bytes_min =	2 * 4 * 2,
	.period_bytes_max =	(1UL << 18),
	.periods_min =		2,
	.periods_max =		1024,
};

932
static const struct snd_pcm_hardware snd_vt1724_2ch_stereo = {
L
Linus Torvalds 已提交
933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952
	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
				 SNDRV_PCM_INFO_MMAP_VALID |
				 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
	.formats =		SNDRV_PCM_FMTBIT_S32_LE,
	.rates =		SNDRV_PCM_RATE_KNOT | SNDRV_PCM_RATE_8000_192000,
	.rate_min =		8000,
	.rate_max =		192000,
	.channels_min =		2,
	.channels_max =		2,
	.buffer_bytes_max =	(1UL << 18),	/* 16bits dword */
	.period_bytes_min =	2 * 4 * 2,
	.period_bytes_max =	(1UL << 18),
	.periods_min =		2,
	.periods_max =		1024,
};

/*
 * set rate constraints
 */
953
static void set_std_hw_rates(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
954 955 956 957 958
{
	if (ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S) {
		/* I2S */
		/* VT1720 doesn't support more than 96kHz */
		if ((ice->eeprom.data[ICE_EEP2_I2S] & 0x08) && !ice->vt1720)
959 960 961 962
			ice->hw_rates = &hw_constraints_rates_192;
		else
			ice->hw_rates = &hw_constraints_rates_96;
	} else {
L
Linus Torvalds 已提交
963
		/* ACLINK */
964
		ice->hw_rates = &hw_constraints_rates_48;
L
Linus Torvalds 已提交
965
	}
966 967 968 969 970 971 972 973 974 975 976 977 978
}

static int set_rate_constraints(struct snd_ice1712 *ice,
				struct snd_pcm_substream *substream)
{
	struct snd_pcm_runtime *runtime = substream->runtime;

	runtime->hw.rate_min = ice->hw_rates->list[0];
	runtime->hw.rate_max = ice->hw_rates->list[ice->hw_rates->count - 1];
	runtime->hw.rates = SNDRV_PCM_RATE_KNOT;
	return snd_pcm_hw_constraint_list(runtime, 0,
					  SNDRV_PCM_HW_PARAM_RATE,
					  ice->hw_rates);
L
Linus Torvalds 已提交
979 980 981 982 983 984 985
}

/* multi-channel playback needs alignment 8x32bit regardless of the channels
 * actually used
 */
#define VT1724_BUFFER_ALIGN	0x20

986
static int snd_vt1724_playback_pro_open(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
987
{
988 989
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
990
	int chs, num_indeps;
L
Linus Torvalds 已提交
991

992
	runtime->private_data = (void *)&vt1724_playback_pro_reg;
L
Linus Torvalds 已提交
993 994 995 996 997
	ice->playback_pro_substream = substream;
	runtime->hw = snd_vt1724_playback_pro;
	snd_pcm_set_sync(substream);
	snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
	set_rate_constraints(ice, substream);
998
	mutex_lock(&ice->open_mutex);
L
Linus Torvalds 已提交
999
	/* calculate the currently available channels */
1000 1001
	num_indeps = ice->num_total_dacs / 2 - 1;
	for (chs = 0; chs < num_indeps; chs++) {
L
Linus Torvalds 已提交
1002 1003 1004 1005 1006 1007 1008
		if (ice->pcm_reserved[chs])
			break;
	}
	chs = (chs + 1) * 2;
	runtime->hw.channels_max = chs;
	if (chs > 2) /* channels must be even */
		snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_CHANNELS, 2);
1009
	mutex_unlock(&ice->open_mutex);
L
Linus Torvalds 已提交
1010 1011 1012 1013 1014 1015 1016
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
				   VT1724_BUFFER_ALIGN);
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
				   VT1724_BUFFER_ALIGN);
	return 0;
}

1017
static int snd_vt1724_capture_pro_open(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1018
{
1019 1020
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
1021

1022
	runtime->private_data = (void *)&vt1724_capture_pro_reg;
L
Linus Torvalds 已提交
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
	ice->capture_pro_substream = substream;
	runtime->hw = snd_vt1724_2ch_stereo;
	snd_pcm_set_sync(substream);
	snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
	set_rate_constraints(ice, substream);
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
				   VT1724_BUFFER_ALIGN);
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
				   VT1724_BUFFER_ALIGN);
	return 0;
}

1035
static int snd_vt1724_playback_pro_close(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1036
{
1037
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
1038 1039

	if (PRO_RATE_RESET)
1040
		snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
L
Linus Torvalds 已提交
1041 1042 1043 1044 1045
	ice->playback_pro_substream = NULL;

	return 0;
}

1046
static int snd_vt1724_capture_pro_close(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1047
{
1048
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
1049 1050

	if (PRO_RATE_RESET)
1051
		snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
L
Linus Torvalds 已提交
1052 1053 1054 1055
	ice->capture_pro_substream = NULL;
	return 0;
}

1056
static struct snd_pcm_ops snd_vt1724_playback_pro_ops = {
L
Linus Torvalds 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
	.open =		snd_vt1724_playback_pro_open,
	.close =	snd_vt1724_playback_pro_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_vt1724_pcm_hw_params,
	.hw_free =	snd_vt1724_pcm_hw_free,
	.prepare =	snd_vt1724_playback_pro_prepare,
	.trigger =	snd_vt1724_pcm_trigger,
	.pointer =	snd_vt1724_playback_pro_pointer,
};

1067
static struct snd_pcm_ops snd_vt1724_capture_pro_ops = {
L
Linus Torvalds 已提交
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
	.open =		snd_vt1724_capture_pro_open,
	.close =	snd_vt1724_capture_pro_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_vt1724_pcm_hw_params,
	.hw_free =	snd_vt1724_pcm_hw_free,
	.prepare =	snd_vt1724_pcm_prepare,
	.trigger =	snd_vt1724_pcm_trigger,
	.pointer =	snd_vt1724_pcm_pointer,
};

1078
static int __devinit snd_vt1724_pcm_profi(struct snd_ice1712 *ice, int device)
L
Linus Torvalds 已提交
1079
{
1080
	struct snd_pcm *pcm;
L
Linus Torvalds 已提交
1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
	int err;

	err = snd_pcm_new(ice->card, "ICE1724", device, 1, 1, &pcm);
	if (err < 0)
		return err;

	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_vt1724_playback_pro_ops);
	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_vt1724_capture_pro_ops);

	pcm->private_data = ice;
	pcm->info_flags = 0;
	strcpy(pcm->name, "ICE1724");

	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1095 1096
					      snd_dma_pci_data(ice->pci),
					      256*1024, 256*1024);
L
Linus Torvalds 已提交
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108

	ice->pcm_pro = pcm;

	return 0;
}


/*
 * SPDIF PCM
 */

/* update spdif control bits; call with reg_lock */
1109
static void update_spdif_bits(struct snd_ice1712 *ice, unsigned int val)
L
Linus Torvalds 已提交
1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
{
	unsigned char cbit, disabled;

	cbit = inb(ICEREG1724(ice, SPDIF_CFG));
	disabled = cbit & ~VT1724_CFG_SPDIF_OUT_EN;
	if (cbit != disabled)
		outb(disabled, ICEREG1724(ice, SPDIF_CFG));
	outw(val, ICEMT1724(ice, SPDIF_CTRL));
	if (cbit != disabled)
		outb(cbit, ICEREG1724(ice, SPDIF_CFG));
	outw(val, ICEMT1724(ice, SPDIF_CTRL));
}

/* update SPDIF control bits according to the given rate */
1124
static void update_spdif_rate(struct snd_ice1712 *ice, unsigned int rate)
L
Linus Torvalds 已提交
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
{
	unsigned int val, nval;
	unsigned long flags;

	spin_lock_irqsave(&ice->reg_lock, flags);
	nval = val = inw(ICEMT1724(ice, SPDIF_CTRL));
	nval &= ~(7 << 12);
	switch (rate) {
	case 44100: break;
	case 48000: nval |= 2 << 12; break;
	case 32000: nval |= 3 << 12; break;
1136 1137 1138 1139
	case 88200: nval |= 4 << 12; break;
	case 96000: nval |= 5 << 12; break;
	case 192000: nval |= 6 << 12; break;
	case 176400: nval |= 7 << 12; break;
L
Linus Torvalds 已提交
1140 1141 1142 1143 1144 1145
	}
	if (val != nval)
		update_spdif_bits(ice, nval);
	spin_unlock_irqrestore(&ice->reg_lock, flags);
}

1146
static int snd_vt1724_playback_spdif_prepare(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1147
{
1148
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
1149
	if (!ice->force_pdma4)
L
Linus Torvalds 已提交
1150 1151 1152 1153
		update_spdif_rate(ice, substream->runtime->rate);
	return snd_vt1724_pcm_prepare(substream);
}

1154
static int snd_vt1724_playback_spdif_open(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1155
{
1156 1157
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
1158

1159
	runtime->private_data = (void *)&vt1724_playback_spdif_reg;
L
Linus Torvalds 已提交
1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171
	ice->playback_con_substream = substream;
	if (ice->force_pdma4) {
		runtime->hw = snd_vt1724_2ch_stereo;
		set_rate_constraints(ice, substream);
	} else
		runtime->hw = snd_vt1724_spdif;
	snd_pcm_set_sync(substream);
	snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
				   VT1724_BUFFER_ALIGN);
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
				   VT1724_BUFFER_ALIGN);
1172 1173
	if (ice->spdif.ops.open)
		ice->spdif.ops.open(ice, substream);
L
Linus Torvalds 已提交
1174 1175 1176
	return 0;
}

1177
static int snd_vt1724_playback_spdif_close(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1178
{
1179
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
1180 1181

	if (PRO_RATE_RESET)
1182
		snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
L
Linus Torvalds 已提交
1183
	ice->playback_con_substream = NULL;
1184 1185
	if (ice->spdif.ops.close)
		ice->spdif.ops.close(ice, substream);
L
Linus Torvalds 已提交
1186 1187 1188 1189

	return 0;
}

1190
static int snd_vt1724_capture_spdif_open(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1191
{
1192 1193
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
1194

1195
	runtime->private_data = (void *)&vt1724_capture_spdif_reg;
L
Linus Torvalds 已提交
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
	ice->capture_con_substream = substream;
	if (ice->force_rdma1) {
		runtime->hw = snd_vt1724_2ch_stereo;
		set_rate_constraints(ice, substream);
	} else
		runtime->hw = snd_vt1724_spdif;
	snd_pcm_set_sync(substream);
	snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_PERIOD_BYTES,
				   VT1724_BUFFER_ALIGN);
	snd_pcm_hw_constraint_step(runtime, 0, SNDRV_PCM_HW_PARAM_BUFFER_BYTES,
				   VT1724_BUFFER_ALIGN);
1208 1209
	if (ice->spdif.ops.open)
		ice->spdif.ops.open(ice, substream);
L
Linus Torvalds 已提交
1210 1211 1212
	return 0;
}

1213
static int snd_vt1724_capture_spdif_close(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1214
{
1215
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
1216 1217

	if (PRO_RATE_RESET)
1218
		snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
L
Linus Torvalds 已提交
1219
	ice->capture_con_substream = NULL;
1220 1221
	if (ice->spdif.ops.close)
		ice->spdif.ops.close(ice, substream);
L
Linus Torvalds 已提交
1222 1223 1224 1225

	return 0;
}

1226
static struct snd_pcm_ops snd_vt1724_playback_spdif_ops = {
L
Linus Torvalds 已提交
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236
	.open =		snd_vt1724_playback_spdif_open,
	.close =	snd_vt1724_playback_spdif_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_vt1724_pcm_hw_params,
	.hw_free =	snd_vt1724_pcm_hw_free,
	.prepare =	snd_vt1724_playback_spdif_prepare,
	.trigger =	snd_vt1724_pcm_trigger,
	.pointer =	snd_vt1724_pcm_pointer,
};

1237
static struct snd_pcm_ops snd_vt1724_capture_spdif_ops = {
L
Linus Torvalds 已提交
1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
	.open =		snd_vt1724_capture_spdif_open,
	.close =	snd_vt1724_capture_spdif_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_vt1724_pcm_hw_params,
	.hw_free =	snd_vt1724_pcm_hw_free,
	.prepare =	snd_vt1724_pcm_prepare,
	.trigger =	snd_vt1724_pcm_trigger,
	.pointer =	snd_vt1724_pcm_pointer,
};


1249
static int __devinit snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device)
L
Linus Torvalds 已提交
1250 1251
{
	char *name;
1252
	struct snd_pcm *pcm;
L
Linus Torvalds 已提交
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
	int play, capt;
	int err;

	if (ice->force_pdma4 ||
	    (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_OUT_INT)) {
		play = 1;
		ice->has_spdif = 1;
	} else
		play = 0;
	if (ice->force_rdma1 ||
	    (ice->eeprom.data[ICE_EEP2_SPDIF] & VT1724_CFG_SPDIF_IN)) {
		capt = 1;
		ice->has_spdif = 1;
	} else
		capt = 0;
1268
	if (!play && !capt)
L
Linus Torvalds 已提交
1269 1270 1271 1272 1273
		return 0; /* no spdif device */

	if (ice->force_pdma4 || ice->force_rdma1)
		name = "ICE1724 Secondary";
	else
1274
		name = "ICE1724 IEC958";
L
Linus Torvalds 已提交
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
	err = snd_pcm_new(ice->card, name, device, play, capt, &pcm);
	if (err < 0)
		return err;

	if (play)
		snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
				&snd_vt1724_playback_spdif_ops);
	if (capt)
		snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE,
				&snd_vt1724_capture_spdif_ops);

	pcm->private_data = ice;
	pcm->info_flags = 0;
	strcpy(pcm->name, name);

	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1291 1292
					      snd_dma_pci_data(ice->pci),
					      64*1024, 64*1024);
L
Linus Torvalds 已提交
1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303

	ice->pcm = pcm;

	return 0;
}


/*
 * independent surround PCMs
 */

1304
static const struct vt1724_pcm_reg vt1724_playback_dma_regs[3] = {
L
Linus Torvalds 已提交
1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
	{
		.addr = VT1724_MT_PDMA1_ADDR,
		.size = VT1724_MT_PDMA1_SIZE,
		.count = VT1724_MT_PDMA1_COUNT,
		.start = VT1724_PDMA1_START,
	},
	{
		.addr = VT1724_MT_PDMA2_ADDR,
		.size = VT1724_MT_PDMA2_SIZE,
		.count = VT1724_MT_PDMA2_COUNT,
		.start = VT1724_PDMA2_START,
	},
	{
		.addr = VT1724_MT_PDMA3_ADDR,
		.size = VT1724_MT_PDMA3_SIZE,
		.count = VT1724_MT_PDMA3_COUNT,
		.start = VT1724_PDMA3_START,
	},
};

1325
static int snd_vt1724_playback_indep_prepare(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1326
{
1327
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
	unsigned char val;

	spin_lock_irq(&ice->reg_lock);
	val = 3 - substream->number;
	if (inb(ICEMT1724(ice, BURST)) < val)
		outb(val, ICEMT1724(ice, BURST));
	spin_unlock_irq(&ice->reg_lock);
	return snd_vt1724_pcm_prepare(substream);
}

1338
static int snd_vt1724_playback_indep_open(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1339
{
1340 1341
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
L
Linus Torvalds 已提交
1342

1343
	mutex_lock(&ice->open_mutex);
L
Linus Torvalds 已提交
1344 1345
	/* already used by PDMA0? */
	if (ice->pcm_reserved[substream->number]) {
1346
		mutex_unlock(&ice->open_mutex);
L
Linus Torvalds 已提交
1347 1348
		return -EBUSY; /* FIXME: should handle blocking mode properly */
	}
1349
	mutex_unlock(&ice->open_mutex);
1350
	runtime->private_data = (void *)&vt1724_playback_dma_regs[substream->number];
L
Linus Torvalds 已提交
1351 1352 1353 1354 1355 1356 1357 1358
	ice->playback_con_substream_ds[substream->number] = substream;
	runtime->hw = snd_vt1724_2ch_stereo;
	snd_pcm_set_sync(substream);
	snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
	set_rate_constraints(ice, substream);
	return 0;
}

1359
static int snd_vt1724_playback_indep_close(struct snd_pcm_substream *substream)
L
Linus Torvalds 已提交
1360
{
1361
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
L
Linus Torvalds 已提交
1362 1363

	if (PRO_RATE_RESET)
1364
		snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 0);
L
Linus Torvalds 已提交
1365 1366 1367 1368 1369 1370
	ice->playback_con_substream_ds[substream->number] = NULL;
	ice->pcm_reserved[substream->number] = NULL;

	return 0;
}

1371
static struct snd_pcm_ops snd_vt1724_playback_indep_ops = {
L
Linus Torvalds 已提交
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
	.open =		snd_vt1724_playback_indep_open,
	.close =	snd_vt1724_playback_indep_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_vt1724_pcm_hw_params,
	.hw_free =	snd_vt1724_pcm_hw_free,
	.prepare =	snd_vt1724_playback_indep_prepare,
	.trigger =	snd_vt1724_pcm_trigger,
	.pointer =	snd_vt1724_pcm_pointer,
};


1383
static int __devinit snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device)
L
Linus Torvalds 已提交
1384
{
1385
	struct snd_pcm *pcm;
L
Linus Torvalds 已提交
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404
	int play;
	int err;

	play = ice->num_total_dacs / 2 - 1;
	if (play <= 0)
		return 0;

	err = snd_pcm_new(ice->card, "ICE1724 Surrounds", device, play, 0, &pcm);
	if (err < 0)
		return err;

	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK,
			&snd_vt1724_playback_indep_ops);

	pcm->private_data = ice;
	pcm->info_flags = 0;
	strcpy(pcm->name, "ICE1724 Surround PCM");

	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
1405 1406
					      snd_dma_pci_data(ice->pci),
					      64*1024, 64*1024);
L
Linus Torvalds 已提交
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417

	ice->pcm_ds = pcm;

	return 0;
}


/*
 *  Mixer section
 */

1418
static int __devinit snd_vt1724_ac97_mixer(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
1419 1420 1421
{
	int err;

1422
	if (!(ice->eeprom.data[ICE_EEP2_ACLINK] & VT1724_CFG_PRO_I2S)) {
1423 1424 1425
		struct snd_ac97_bus *pbus;
		struct snd_ac97_template ac97;
		static struct snd_ac97_bus_ops ops = {
L
Linus Torvalds 已提交
1426 1427 1428 1429 1430 1431 1432 1433 1434
			.write = snd_vt1724_ac97_write,
			.read = snd_vt1724_ac97_read,
		};

		/* cold reset */
		outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
		mdelay(5); /* FIXME */
		outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));

1435 1436
		err = snd_ac97_bus(ice->card, 0, &ops, NULL, &pbus);
		if (err < 0)
L
Linus Torvalds 已提交
1437 1438 1439
			return err;
		memset(&ac97, 0, sizeof(ac97));
		ac97.private_data = ice;
1440 1441
		err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
		if (err < 0)
L
Linus Torvalds 已提交
1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454
			printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
		else
			return 0;
	}
	/* I2S mixer only */
	strcat(ice->card->mixername, "ICE1724 - multitrack");
	return 0;
}

/*
 *
 */

1455
static inline unsigned int eeprom_triple(struct snd_ice1712 *ice, int idx)
L
Linus Torvalds 已提交
1456 1457 1458 1459 1460 1461
{
	return (unsigned int)ice->eeprom.data[idx] | \
		((unsigned int)ice->eeprom.data[idx + 1] << 8) | \
		((unsigned int)ice->eeprom.data[idx + 2] << 16);
}

1462
static void snd_vt1724_proc_read(struct snd_info_entry *entry,
1463
				 struct snd_info_buffer *buffer)
L
Linus Torvalds 已提交
1464
{
1465
	struct snd_ice1712 *ice = entry->private_data;
L
Linus Torvalds 已提交
1466 1467 1468 1469 1470 1471 1472 1473
	unsigned int idx;

	snd_iprintf(buffer, "%s\n\n", ice->card->longname);
	snd_iprintf(buffer, "EEPROM:\n");

	snd_iprintf(buffer, "  Subvendor        : 0x%x\n", ice->eeprom.subvendor);
	snd_iprintf(buffer, "  Size             : %i bytes\n", ice->eeprom.size);
	snd_iprintf(buffer, "  Version          : %i\n", ice->eeprom.version);
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
	snd_iprintf(buffer, "  System Config    : 0x%x\n",
		    ice->eeprom.data[ICE_EEP2_SYSCONF]);
	snd_iprintf(buffer, "  ACLink           : 0x%x\n",
		    ice->eeprom.data[ICE_EEP2_ACLINK]);
	snd_iprintf(buffer, "  I2S              : 0x%x\n",
		    ice->eeprom.data[ICE_EEP2_I2S]);
	snd_iprintf(buffer, "  S/PDIF           : 0x%x\n",
		    ice->eeprom.data[ICE_EEP2_SPDIF]);
	snd_iprintf(buffer, "  GPIO direction   : 0x%x\n",
		    ice->eeprom.gpiodir);
	snd_iprintf(buffer, "  GPIO mask        : 0x%x\n",
		    ice->eeprom.gpiomask);
	snd_iprintf(buffer, "  GPIO state       : 0x%x\n",
		    ice->eeprom.gpiostate);
L
Linus Torvalds 已提交
1488
	for (idx = 0x12; idx < ice->eeprom.size; idx++)
1489 1490
		snd_iprintf(buffer, "  Extra #%02i        : 0x%x\n",
			    idx, ice->eeprom.data[idx]);
L
Linus Torvalds 已提交
1491 1492 1493

	snd_iprintf(buffer, "\nRegisters:\n");

1494 1495
	snd_iprintf(buffer, "  PSDOUT03 : 0x%08x\n",
		    (unsigned)inl(ICEMT1724(ice, ROUTE_PLAYBACK)));
L
Linus Torvalds 已提交
1496
	for (idx = 0x0; idx < 0x20 ; idx++)
1497 1498
		snd_iprintf(buffer, "  CCS%02x    : 0x%02x\n",
			    idx, inb(ice->port+idx));
L
Linus Torvalds 已提交
1499
	for (idx = 0x0; idx < 0x30 ; idx++)
1500 1501
		snd_iprintf(buffer, "  MT%02x     : 0x%02x\n",
			    idx, inb(ice->profi_port+idx));
L
Linus Torvalds 已提交
1502 1503
}

1504
static void __devinit snd_vt1724_proc_init(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
1505
{
1506
	struct snd_info_entry *entry;
L
Linus Torvalds 已提交
1507

1508
	if (!snd_card_proc_new(ice->card, "ice1724", &entry))
1509
		snd_info_set_text_ops(entry, ice, snd_vt1724_proc_read);
L
Linus Torvalds 已提交
1510 1511 1512 1513 1514 1515
}

/*
 *
 */

1516 1517
static int snd_vt1724_eeprom_info(struct snd_kcontrol *kcontrol,
				  struct snd_ctl_elem_info *uinfo)
L
Linus Torvalds 已提交
1518 1519
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
1520
	uinfo->count = sizeof(struct snd_ice1712_eeprom);
L
Linus Torvalds 已提交
1521 1522 1523
	return 0;
}

1524 1525
static int snd_vt1724_eeprom_get(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1526
{
1527
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1528

L
Linus Torvalds 已提交
1529 1530 1531 1532
	memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
	return 0;
}

1533
static struct snd_kcontrol_new snd_vt1724_eeprom __devinitdata = {
L
Linus Torvalds 已提交
1534 1535 1536 1537 1538 1539 1540 1541 1542
	.iface = SNDRV_CTL_ELEM_IFACE_CARD,
	.name = "ICE1724 EEPROM",
	.access = SNDRV_CTL_ELEM_ACCESS_READ,
	.info = snd_vt1724_eeprom_info,
	.get = snd_vt1724_eeprom_get
};

/*
 */
1543 1544
static int snd_vt1724_spdif_info(struct snd_kcontrol *kcontrol,
				 struct snd_ctl_elem_info *uinfo)
L
Linus Torvalds 已提交
1545 1546 1547 1548 1549 1550
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
	uinfo->count = 1;
	return 0;
}

1551
static unsigned int encode_spdif_bits(struct snd_aes_iec958 *diga)
L
Linus Torvalds 已提交
1552
{
1553
	unsigned int val, rbits;
L
Linus Torvalds 已提交
1554 1555 1556 1557

	val = diga->status[0] & 0x03; /* professional, non-audio */
	if (val & 0x01) {
		/* professional */
1558 1559
		if ((diga->status[0] & IEC958_AES0_PRO_EMPHASIS) ==
		    IEC958_AES0_PRO_EMPHASIS_5015)
L
Linus Torvalds 已提交
1560
			val |= 1U << 3;
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579
		rbits = (diga->status[4] >> 3) & 0x0f;
		if (rbits) {
			switch (rbits) {
			case 2: val |= 5 << 12; break; /* 96k */
			case 3: val |= 6 << 12; break; /* 192k */
			case 10: val |= 4 << 12; break; /* 88.2k */
			case 11: val |= 7 << 12; break; /* 176.4k */
			}
		} else {
			switch (diga->status[0] & IEC958_AES0_PRO_FS) {
			case IEC958_AES0_PRO_FS_44100:
				break;
			case IEC958_AES0_PRO_FS_32000:
				val |= 3U << 12;
				break;
			default:
				val |= 2U << 12;
				break;
			}
L
Linus Torvalds 已提交
1580 1581 1582 1583
		}
	} else {
		/* consumer */
		val |= diga->status[1] & 0x04; /* copyright */
1584 1585
		if ((diga->status[0] & IEC958_AES0_CON_EMPHASIS) ==
		    IEC958_AES0_CON_EMPHASIS_5015)
L
Linus Torvalds 已提交
1586 1587 1588 1589 1590 1591 1592
			val |= 1U << 3;
		val |= (unsigned int)(diga->status[1] & 0x3f) << 4; /* category */
		val |= (unsigned int)(diga->status[3] & IEC958_AES3_CON_FS) << 12; /* fs */
	}
	return val;
}

1593
static void decode_spdif_bits(struct snd_aes_iec958 *diga, unsigned int val)
L
Linus Torvalds 已提交
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620
{
	memset(diga->status, 0, sizeof(diga->status));
	diga->status[0] = val & 0x03; /* professional, non-audio */
	if (val & 0x01) {
		/* professional */
		if (val & (1U << 3))
			diga->status[0] |= IEC958_AES0_PRO_EMPHASIS_5015;
		switch ((val >> 12) & 0x7) {
		case 0:
			break;
		case 2:
			diga->status[0] |= IEC958_AES0_PRO_FS_32000;
			break;
		default:
			diga->status[0] |= IEC958_AES0_PRO_FS_48000;
			break;
		}
	} else {
		/* consumer */
		diga->status[0] |= val & (1U << 2); /* copyright */
		if (val & (1U << 3))
			diga->status[0] |= IEC958_AES0_CON_EMPHASIS_5015;
		diga->status[1] |= (val >> 4) & 0x3f; /* category */
		diga->status[3] |= (val >> 12) & 0x07; /* fs */
	}
}

1621 1622
static int snd_vt1724_spdif_default_get(struct snd_kcontrol *kcontrol,
					struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1623
{
1624
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1625 1626 1627 1628 1629 1630
	unsigned int val;
	val = inw(ICEMT1724(ice, SPDIF_CTRL));
	decode_spdif_bits(&ucontrol->value.iec958, val);
	return 0;
}

1631 1632
static int snd_vt1724_spdif_default_put(struct snd_kcontrol *kcontrol,
					 struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1633
{
1634
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1635 1636 1637 1638 1639 1640 1641 1642
	unsigned int val, old;

	val = encode_spdif_bits(&ucontrol->value.iec958);
	spin_lock_irq(&ice->reg_lock);
	old = inw(ICEMT1724(ice, SPDIF_CTRL));
	if (val != old)
		update_spdif_bits(ice, val);
	spin_unlock_irq(&ice->reg_lock);
1643
	return val != old;
L
Linus Torvalds 已提交
1644 1645
}

1646
static struct snd_kcontrol_new snd_vt1724_spdif_default __devinitdata =
L
Linus Torvalds 已提交
1647 1648
{
	.iface =	SNDRV_CTL_ELEM_IFACE_PCM,
1649
	.name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
L
Linus Torvalds 已提交
1650 1651 1652 1653 1654
	.info =		snd_vt1724_spdif_info,
	.get =		snd_vt1724_spdif_default_get,
	.put =		snd_vt1724_spdif_default_put
};

1655 1656
static int snd_vt1724_spdif_maskc_get(struct snd_kcontrol *kcontrol,
				       struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
{
	ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
						     IEC958_AES0_PROFESSIONAL |
						     IEC958_AES0_CON_NOT_COPYRIGHT |
						     IEC958_AES0_CON_EMPHASIS;
	ucontrol->value.iec958.status[1] = IEC958_AES1_CON_ORIGINAL |
						     IEC958_AES1_CON_CATEGORY;
	ucontrol->value.iec958.status[3] = IEC958_AES3_CON_FS;
	return 0;
}

1668 1669
static int snd_vt1724_spdif_maskp_get(struct snd_kcontrol *kcontrol,
				       struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1670 1671 1672 1673 1674 1675 1676 1677
{
	ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
						     IEC958_AES0_PROFESSIONAL |
						     IEC958_AES0_PRO_FS |
						     IEC958_AES0_PRO_EMPHASIS;
	return 0;
}

1678
static struct snd_kcontrol_new snd_vt1724_spdif_maskc __devinitdata =
L
Linus Torvalds 已提交
1679 1680
{
	.access =	SNDRV_CTL_ELEM_ACCESS_READ,
1681
	.iface =	SNDRV_CTL_ELEM_IFACE_PCM,
1682
	.name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
L
Linus Torvalds 已提交
1683 1684 1685 1686
	.info =		snd_vt1724_spdif_info,
	.get =		snd_vt1724_spdif_maskc_get,
};

1687
static struct snd_kcontrol_new snd_vt1724_spdif_maskp __devinitdata =
L
Linus Torvalds 已提交
1688 1689
{
	.access =	SNDRV_CTL_ELEM_ACCESS_READ,
1690
	.iface =	SNDRV_CTL_ELEM_IFACE_PCM,
1691
	.name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
L
Linus Torvalds 已提交
1692 1693 1694 1695
	.info =		snd_vt1724_spdif_info,
	.get =		snd_vt1724_spdif_maskp_get,
};

1696
#define snd_vt1724_spdif_sw_info		snd_ctl_boolean_mono_info
L
Linus Torvalds 已提交
1697

1698 1699
static int snd_vt1724_spdif_sw_get(struct snd_kcontrol *kcontrol,
				   struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1700
{
1701 1702 1703
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
	ucontrol->value.integer.value[0] = inb(ICEREG1724(ice, SPDIF_CFG)) &
		VT1724_CFG_SPDIF_OUT_EN ? 1 : 0;
L
Linus Torvalds 已提交
1704 1705 1706
	return 0;
}

1707 1708
static int snd_vt1724_spdif_sw_put(struct snd_kcontrol *kcontrol,
				   struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1709
{
1710
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
	unsigned char old, val;

	spin_lock_irq(&ice->reg_lock);
	old = val = inb(ICEREG1724(ice, SPDIF_CFG));
	val &= ~VT1724_CFG_SPDIF_OUT_EN;
	if (ucontrol->value.integer.value[0])
		val |= VT1724_CFG_SPDIF_OUT_EN;
	if (old != val)
		outb(val, ICEREG1724(ice, SPDIF_CFG));
	spin_unlock_irq(&ice->reg_lock);
	return old != val;
}

1724
static struct snd_kcontrol_new snd_vt1724_spdif_switch __devinitdata =
L
Linus Torvalds 已提交
1725 1726 1727
{
	.iface =	SNDRV_CTL_ELEM_IFACE_MIXER,
	/* FIXME: the following conflict with IEC958 Playback Route */
1728 1729
	/* .name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH), */
	.name =         SNDRV_CTL_NAME_IEC958("Output ", NONE, SWITCH),
L
Linus Torvalds 已提交
1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740
	.info =		snd_vt1724_spdif_sw_info,
	.get =		snd_vt1724_spdif_sw_get,
	.put =		snd_vt1724_spdif_sw_put
};


#if 0 /* NOT USED YET */
/*
 * GPIO access from extern
 */

1741
#define snd_vt1724_gpio_info		snd_ctl_boolean_mono_info
L
Linus Torvalds 已提交
1742

1743 1744
int snd_vt1724_gpio_get(struct snd_kcontrol *kcontrol,
			struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1745
{
1746
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1747 1748
	int shift = kcontrol->private_value & 0xff;
	int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
1749

L
Linus Torvalds 已提交
1750
	snd_ice1712_save_gpio_status(ice);
1751 1752
	ucontrol->value.integer.value[0] =
		(snd_ice1712_gpio_read(ice) & (1 << shift) ? 1 : 0) ^ invert;
L
Linus Torvalds 已提交
1753 1754 1755 1756
	snd_ice1712_restore_gpio_status(ice);
	return 0;
}

1757 1758
int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
			 struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1759
{
1760
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780
	int shift = kcontrol->private_value & 0xff;
	int invert = (kcontrol->private_value & (1<<24)) ? mask : 0;
	unsigned int val, nval;

	if (kcontrol->private_value & (1 << 31))
		return -EPERM;
	nval = (ucontrol->value.integer.value[0] ? (1 << shift) : 0) ^ invert;
	snd_ice1712_save_gpio_status(ice);
	val = snd_ice1712_gpio_read(ice);
	nval |= val & ~(1 << shift);
	if (val != nval)
		snd_ice1712_gpio_write(ice, nval);
	snd_ice1712_restore_gpio_status(ice);
	return val != nval;
}
#endif /* NOT USED YET */

/*
 *  rate
 */
1781 1782
static int snd_vt1724_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
					      struct snd_ctl_elem_info *uinfo)
L
Linus Torvalds 已提交
1783
{
1784
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1785 1786 1787

	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
	uinfo->count = 1;
1788
	uinfo->value.enumerated.items = ice->hw_rates->count + 1;
L
Linus Torvalds 已提交
1789 1790
	if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
		uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1791 1792 1793 1794 1795
	if (uinfo->value.enumerated.item == uinfo->value.enumerated.items - 1)
		strcpy(uinfo->value.enumerated.name, "IEC958 Input");
	else
		sprintf(uinfo->value.enumerated.name, "%d",
			ice->hw_rates->list[uinfo->value.enumerated.item]);
L
Linus Torvalds 已提交
1796 1797 1798
	return 0;
}

1799 1800
static int snd_vt1724_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
					     struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1801
{
1802
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1803
	unsigned int i, rate;
1804

L
Linus Torvalds 已提交
1805
	spin_lock_irq(&ice->reg_lock);
1806 1807
	if (ice->is_spdif_master(ice)) {
		ucontrol->value.enumerated.item[0] = ice->hw_rates->count;
L
Linus Torvalds 已提交
1808
	} else {
1809 1810 1811 1812 1813 1814 1815
		rate = ice->get_rate(ice);
		ucontrol->value.enumerated.item[0] = 0;
		for (i = 0; i < ice->hw_rates->count; i++) {
			if (ice->hw_rates->list[i] == rate) {
				ucontrol->value.enumerated.item[0] = i;
				break;
			}
L
Linus Torvalds 已提交
1816 1817 1818 1819 1820 1821
		}
	}
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833
/* setting clock to external - SPDIF */
static void stdclock_set_spdif_clock(struct snd_ice1712 *ice)
{
	unsigned char oval;
	unsigned char i2s_oval;
	oval = inb(ICEMT1724(ice, RATE));
	outb(oval | VT1724_SPDIF_MASTER, ICEMT1724(ice, RATE));
	/* setting 256fs */
	i2s_oval = inb(ICEMT1724(ice, I2S_FORMAT));
	outb(i2s_oval & ~VT1724_MT_I2S_MCLK_128X, ICEMT1724(ice, I2S_FORMAT));
}

1834 1835
static int snd_vt1724_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
					     struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1836
{
1837
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1838 1839 1840 1841 1842 1843
	unsigned int old_rate, new_rate;
	unsigned int item = ucontrol->value.enumerated.item[0];
	unsigned int spdif = ice->hw_rates->count;

	if (item > spdif)
		return -EINVAL;
L
Linus Torvalds 已提交
1844 1845

	spin_lock_irq(&ice->reg_lock);
1846 1847 1848 1849 1850 1851 1852 1853
	if (ice->is_spdif_master(ice))
		old_rate = 0;
	else
		old_rate = ice->get_rate(ice);
	if (item == spdif) {
		/* switching to external clock via SPDIF */
		ice->set_spdif_clock(ice);
		new_rate = 0;
L
Linus Torvalds 已提交
1854
	} else {
1855 1856 1857 1858 1859 1860
		/* internal on-card clock */
		new_rate = ice->hw_rates->list[item];
		ice->pro_rate_default = new_rate;
		spin_unlock_irq(&ice->reg_lock);
		snd_vt1724_set_pro_rate(ice, ice->pro_rate_default, 1);
		spin_lock_irq(&ice->reg_lock);
L
Linus Torvalds 已提交
1861 1862 1863
	}
	spin_unlock_irq(&ice->reg_lock);

1864 1865
	/* the first reset to the SPDIF master mode? */
	if (old_rate != new_rate && !new_rate) {
L
Linus Torvalds 已提交
1866
		/* notify akm chips as well */
1867 1868 1869 1870 1871 1872
		unsigned int i;
		if (ice->gpio.set_pro_rate)
			ice->gpio.set_pro_rate(ice, 0);
		for (i = 0; i < ice->akm_codecs; i++) {
			if (ice->akm[i].ops.set_rate_val)
				ice->akm[i].ops.set_rate_val(&ice->akm[i], 0);
L
Linus Torvalds 已提交
1873 1874
		}
	}
1875
	return old_rate != new_rate;
L
Linus Torvalds 已提交
1876 1877
}

1878
static struct snd_kcontrol_new snd_vt1724_pro_internal_clock __devinitdata = {
L
Linus Torvalds 已提交
1879 1880 1881 1882 1883 1884 1885
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Internal Clock",
	.info = snd_vt1724_pro_internal_clock_info,
	.get = snd_vt1724_pro_internal_clock_get,
	.put = snd_vt1724_pro_internal_clock_put
};

1886
#define snd_vt1724_pro_rate_locking_info	snd_ctl_boolean_mono_info
L
Linus Torvalds 已提交
1887

1888 1889
static int snd_vt1724_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1890 1891 1892 1893 1894
{
	ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
	return 0;
}

1895 1896
static int snd_vt1724_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1897
{
1898
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1899 1900 1901 1902 1903 1904 1905 1906 1907 1908
	int change = 0, nval;

	nval = ucontrol->value.integer.value[0] ? 1 : 0;
	spin_lock_irq(&ice->reg_lock);
	change = PRO_RATE_LOCKED != nval;
	PRO_RATE_LOCKED = nval;
	spin_unlock_irq(&ice->reg_lock);
	return change;
}

1909
static struct snd_kcontrol_new snd_vt1724_pro_rate_locking __devinitdata = {
L
Linus Torvalds 已提交
1910 1911 1912 1913 1914 1915 1916
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Rate Locking",
	.info = snd_vt1724_pro_rate_locking_info,
	.get = snd_vt1724_pro_rate_locking_get,
	.put = snd_vt1724_pro_rate_locking_put
};

1917
#define snd_vt1724_pro_rate_reset_info		snd_ctl_boolean_mono_info
L
Linus Torvalds 已提交
1918

1919 1920
static int snd_vt1724_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
					 struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1921 1922 1923 1924 1925
{
	ucontrol->value.integer.value[0] = PRO_RATE_RESET ? 1 : 0;
	return 0;
}

1926 1927
static int snd_vt1724_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
					 struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
1928
{
1929
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
1930 1931 1932 1933 1934 1935 1936 1937 1938 1939
	int change = 0, nval;

	nval = ucontrol->value.integer.value[0] ? 1 : 0;
	spin_lock_irq(&ice->reg_lock);
	change = PRO_RATE_RESET != nval;
	PRO_RATE_RESET = nval;
	spin_unlock_irq(&ice->reg_lock);
	return change;
}

1940
static struct snd_kcontrol_new snd_vt1724_pro_rate_reset __devinitdata = {
L
Linus Torvalds 已提交
1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Rate Reset",
	.info = snd_vt1724_pro_rate_reset_info,
	.get = snd_vt1724_pro_rate_reset_get,
	.put = snd_vt1724_pro_rate_reset_put
};


/*
 * routing
 */
1952 1953
static int snd_vt1724_pro_route_info(struct snd_kcontrol *kcontrol,
				     struct snd_ctl_elem_info *uinfo)
L
Linus Torvalds 已提交
1954 1955 1956 1957 1958 1959
{
	static char *texts[] = {
		"PCM Out", /* 0 */
		"H/W In 0", "H/W In 1", /* 1-2 */
		"IEC958 In L", "IEC958 In R", /* 3-4 */
	};
1960

L
Linus Torvalds 已提交
1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979
	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
	uinfo->count = 1;
	uinfo->value.enumerated.items = 5;
	if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
		uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
	strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
	return 0;
}

static inline int analog_route_shift(int idx)
{
	return (idx % 2) * 12 + ((idx / 2) * 3) + 8;
}

static inline int digital_route_shift(int idx)
{
	return idx * 3;
}

1980
int snd_ice1724_get_route_val(struct snd_ice1712 *ice, int shift)
L
Linus Torvalds 已提交
1981 1982 1983
{
	unsigned long val;
	unsigned char eitem;
1984
	static const unsigned char xlate[8] = {
L
Linus Torvalds 已提交
1985 1986 1987 1988 1989
		0, 255, 1, 2, 255, 255, 3, 4,
	};

	val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
	val >>= shift;
1990
	val &= 7; /* we now have 3 bits per output */
L
Linus Torvalds 已提交
1991 1992 1993 1994 1995 1996 1997 1998
	eitem = xlate[val];
	if (eitem == 255) {
		snd_BUG();
		return 0;
	}
	return eitem;
}

1999 2000
int snd_ice1724_put_route_val(struct snd_ice1712 *ice, unsigned int val,
								int shift)
L
Linus Torvalds 已提交
2001 2002 2003
{
	unsigned int old_val, nval;
	int change;
2004
	static const unsigned char xroute[8] = {
L
Linus Torvalds 已提交
2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021
		0, /* PCM */
		2, /* PSDIN0 Left */
		3, /* PSDIN0 Right */
		6, /* SPDIN Left */
		7, /* SPDIN Right */
	};

	nval = xroute[val % 5];
	val = old_val = inl(ICEMT1724(ice, ROUTE_PLAYBACK));
	val &= ~(0x07 << shift);
	val |= nval << shift;
	change = val != old_val;
	if (change)
		outl(val, ICEMT1724(ice, ROUTE_PLAYBACK));
	return change;
}

2022 2023
static int snd_vt1724_pro_route_analog_get(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
2024
{
2025
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
2026
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2027
	ucontrol->value.enumerated.item[0] =
2028
		snd_ice1724_get_route_val(ice, analog_route_shift(idx));
L
Linus Torvalds 已提交
2029 2030 2031
	return 0;
}

2032 2033
static int snd_vt1724_pro_route_analog_put(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
2034
{
2035
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
2036
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2037 2038 2039
	return snd_ice1724_put_route_val(ice,
					 ucontrol->value.enumerated.item[0],
					 analog_route_shift(idx));
L
Linus Torvalds 已提交
2040 2041
}

2042 2043
static int snd_vt1724_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
					  struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
2044
{
2045
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
2046
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2047
	ucontrol->value.enumerated.item[0] =
2048
		snd_ice1724_get_route_val(ice, digital_route_shift(idx));
L
Linus Torvalds 已提交
2049 2050 2051
	return 0;
}

2052 2053
static int snd_vt1724_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
					  struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
2054
{
2055
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
2056
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
2057 2058 2059
	return snd_ice1724_put_route_val(ice,
					 ucontrol->value.enumerated.item[0],
					 digital_route_shift(idx));
L
Linus Torvalds 已提交
2060 2061
}

2062 2063
static struct snd_kcontrol_new snd_vt1724_mixer_pro_analog_route __devinitdata =
{
L
Linus Torvalds 已提交
2064 2065 2066 2067 2068 2069 2070
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "H/W Playback Route",
	.info = snd_vt1724_pro_route_info,
	.get = snd_vt1724_pro_route_analog_get,
	.put = snd_vt1724_pro_route_analog_put,
};

2071
static struct snd_kcontrol_new snd_vt1724_mixer_pro_spdif_route __devinitdata = {
L
Linus Torvalds 已提交
2072
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2073
	.name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
L
Linus Torvalds 已提交
2074 2075 2076 2077 2078 2079 2080
	.info = snd_vt1724_pro_route_info,
	.get = snd_vt1724_pro_route_spdif_get,
	.put = snd_vt1724_pro_route_spdif_put,
	.count = 2,
};


2081 2082
static int snd_vt1724_pro_peak_info(struct snd_kcontrol *kcontrol,
				    struct snd_ctl_elem_info *uinfo)
L
Linus Torvalds 已提交
2083 2084 2085 2086 2087 2088 2089 2090
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 22; /* FIXME: for compatibility with ice1712... */
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = 255;
	return 0;
}

2091 2092
static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol,
				   struct snd_ctl_elem_value *ucontrol)
L
Linus Torvalds 已提交
2093
{
2094
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
L
Linus Torvalds 已提交
2095
	int idx;
2096

L
Linus Torvalds 已提交
2097 2098 2099
	spin_lock_irq(&ice->reg_lock);
	for (idx = 0; idx < 22; idx++) {
		outb(idx, ICEMT1724(ice, MONITOR_PEAKINDEX));
2100 2101
		ucontrol->value.integer.value[idx] =
			inb(ICEMT1724(ice, MONITOR_PEAKDATA));
L
Linus Torvalds 已提交
2102 2103 2104 2105 2106
	}
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

2107
static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = {
L
Linus Torvalds 已提交
2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Peak",
	.access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
	.info = snd_vt1724_pro_peak_info,
	.get = snd_vt1724_pro_peak_get
};

/*
 *
 */

2119
static struct snd_ice1712_card_info no_matched __devinitdata;
L
Linus Torvalds 已提交
2120

2121
static struct snd_ice1712_card_info *card_tables[] __devinitdata = {
L
Linus Torvalds 已提交
2122
	snd_vt1724_revo_cards,
2123
	snd_vt1724_amp_cards,
L
Linus Torvalds 已提交
2124 2125 2126
	snd_vt1724_aureon_cards,
	snd_vt1720_mobo_cards,
	snd_vt1720_pontis_cards,
2127
	snd_vt1724_prodigy_hifi_cards,
L
Linus Torvalds 已提交
2128 2129
	snd_vt1724_prodigy192_cards,
	snd_vt1724_juli_cards,
2130
	snd_vt1724_maya44_cards,
L
Linus Torvalds 已提交
2131
	snd_vt1724_phase_cards,
2132
	snd_vt1724_wtm_cards,
2133
	snd_vt1724_se_cards,
L
Linus Torvalds 已提交
2134 2135 2136 2137 2138 2139 2140
	NULL,
};


/*
 */

2141
static void wait_i2c_busy(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
2142 2143 2144 2145 2146 2147 2148 2149
{
	int t = 0x10000;
	while ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_BUSY) && t--)
		;
	if (t == -1)
		printk(KERN_ERR "ice1724: i2c busy timeout\n");
}

2150 2151
unsigned char snd_vt1724_read_i2c(struct snd_ice1712 *ice,
				  unsigned char dev, unsigned char addr)
L
Linus Torvalds 已提交
2152 2153 2154
{
	unsigned char val;

2155
	mutex_lock(&ice->i2c_mutex);
P
Pavel Hofman 已提交
2156
	wait_i2c_busy(ice);
L
Linus Torvalds 已提交
2157 2158 2159 2160
	outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
	outb(dev & ~VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
	wait_i2c_busy(ice);
	val = inb(ICEREG1724(ice, I2C_DATA));
2161
	mutex_unlock(&ice->i2c_mutex);
2162 2163 2164
	/*
	printk(KERN_DEBUG "i2c_read: [0x%x,0x%x] = 0x%x\n", dev, addr, val);
	*/
L
Linus Torvalds 已提交
2165 2166 2167
	return val;
}

2168 2169
void snd_vt1724_write_i2c(struct snd_ice1712 *ice,
			  unsigned char dev, unsigned char addr, unsigned char data)
L
Linus Torvalds 已提交
2170
{
2171
	mutex_lock(&ice->i2c_mutex);
L
Linus Torvalds 已提交
2172
	wait_i2c_busy(ice);
2173 2174 2175
	/*
	printk(KERN_DEBUG "i2c_write: [0x%x,0x%x] = 0x%x\n", dev, addr, data);
	*/
L
Linus Torvalds 已提交
2176 2177 2178 2179
	outb(addr, ICEREG1724(ice, I2C_BYTE_ADDR));
	outb(data, ICEREG1724(ice, I2C_DATA));
	outb(dev | VT1724_I2C_WRITE, ICEREG1724(ice, I2C_DEV_ADDR));
	wait_i2c_busy(ice);
2180
	mutex_unlock(&ice->i2c_mutex);
L
Linus Torvalds 已提交
2181 2182
}

2183 2184
static int __devinit snd_vt1724_read_eeprom(struct snd_ice1712 *ice,
					    const char *modelname)
L
Linus Torvalds 已提交
2185 2186 2187
{
	const int dev = 0xa0;		/* EEPROM device address */
	unsigned int i, size;
2188
	struct snd_ice1712_card_info * const *tbl, *c;
L
Linus Torvalds 已提交
2189

2190
	if (!modelname || !*modelname) {
L
Linus Torvalds 已提交
2191 2192 2193 2194
		ice->eeprom.subvendor = 0;
		if ((inb(ICEREG1724(ice, I2C_CTRL)) & VT1724_I2C_EEPROM) != 0)
			ice->eeprom.subvendor =
				(snd_vt1724_read_i2c(ice, dev, 0x00) << 0) |
2195 2196
				(snd_vt1724_read_i2c(ice, dev, 0x01) << 8) |
				(snd_vt1724_read_i2c(ice, dev, 0x02) << 16) |
L
Linus Torvalds 已提交
2197
				(snd_vt1724_read_i2c(ice, dev, 0x03) << 24);
2198 2199 2200 2201 2202
		if (ice->eeprom.subvendor == 0 ||
		    ice->eeprom.subvendor == (unsigned int)-1) {
			/* invalid subvendor from EEPROM, try the PCI
			 * subststem ID instead
			 */
L
Linus Torvalds 已提交
2203
			u16 vendor, device;
2204 2205
			pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID,
					     &vendor);
L
Linus Torvalds 已提交
2206
			pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
2207 2208 2209 2210
			ice->eeprom.subvendor =
				((unsigned int)swab16(vendor) << 16) | swab16(device);
			if (ice->eeprom.subvendor == 0 ||
			    ice->eeprom.subvendor == (unsigned int)-1) {
L
Linus Torvalds 已提交
2211 2212 2213 2214 2215 2216 2217
				printk(KERN_ERR "ice1724: No valid ID is found\n");
				return -ENXIO;
			}
		}
	}
	for (tbl = card_tables; *tbl; tbl++) {
		for (c = *tbl; c->subvendor; c++) {
2218
			if (modelname && c->model &&
2219
			    !strcmp(modelname, c->model)) {
2220 2221
				printk(KERN_INFO "ice1724: Using board model %s\n",
				       c->name);
L
Linus Torvalds 已提交
2222 2223 2224
				ice->eeprom.subvendor = c->subvendor;
			} else if (c->subvendor != ice->eeprom.subvendor)
				continue;
2225
			if (!c->eeprom_size || !c->eeprom_data)
L
Linus Torvalds 已提交
2226 2227 2228 2229 2230 2231 2232 2233 2234
				goto found;
			/* if the EEPROM is given by the driver, use it */
			snd_printdd("using the defined eeprom..\n");
			ice->eeprom.version = 2;
			ice->eeprom.size = c->eeprom_size + 6;
			memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
			goto read_skipped;
		}
	}
2235 2236
	printk(KERN_WARNING "ice1724: No matching model found for ID 0x%x\n",
	       ice->eeprom.subvendor);
L
Linus Torvalds 已提交
2237 2238 2239 2240 2241 2242

 found:
	ice->eeprom.size = snd_vt1724_read_i2c(ice, dev, 0x04);
	if (ice->eeprom.size < 6)
		ice->eeprom.size = 32;
	else if (ice->eeprom.size > 32) {
2243 2244
		printk(KERN_ERR "ice1724: Invalid EEPROM (size = %i)\n",
		       ice->eeprom.size);
L
Linus Torvalds 已提交
2245 2246 2247 2248
		return -EIO;
	}
	ice->eeprom.version = snd_vt1724_read_i2c(ice, dev, 0x05);
	if (ice->eeprom.version != 2)
2249 2250
		printk(KERN_WARNING "ice1724: Invalid EEPROM version %i\n",
		       ice->eeprom.version);
L
Linus Torvalds 已提交
2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264
	size = ice->eeprom.size - 6;
	for (i = 0; i < size; i++)
		ice->eeprom.data[i] = snd_vt1724_read_i2c(ice, dev, i + 6);

 read_skipped:
	ice->eeprom.gpiomask = eeprom_triple(ice, ICE_EEP2_GPIO_MASK);
	ice->eeprom.gpiostate = eeprom_triple(ice, ICE_EEP2_GPIO_STATE);
	ice->eeprom.gpiodir = eeprom_triple(ice, ICE_EEP2_GPIO_DIR);

	return 0;
}



2265
static void __devinit snd_vt1724_chip_reset(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
2266 2267
{
	outb(VT1724_RESET , ICEREG1724(ice, CONTROL));
2268
	inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
2269
	msleep(10);
L
Linus Torvalds 已提交
2270
	outb(0, ICEREG1724(ice, CONTROL));
2271
	inb(ICEREG1724(ice, CONTROL)); /* pci posting flush */
2272 2273 2274 2275 2276
	msleep(10);
}

static int __devinit snd_vt1724_chip_init(struct snd_ice1712 *ice)
{
L
Linus Torvalds 已提交
2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292
	outb(ice->eeprom.data[ICE_EEP2_SYSCONF], ICEREG1724(ice, SYS_CFG));
	outb(ice->eeprom.data[ICE_EEP2_ACLINK], ICEREG1724(ice, AC97_CFG));
	outb(ice->eeprom.data[ICE_EEP2_I2S], ICEREG1724(ice, I2S_FEATURES));
	outb(ice->eeprom.data[ICE_EEP2_SPDIF], ICEREG1724(ice, SPDIF_CFG));

	ice->gpio.write_mask = ice->eeprom.gpiomask;
	ice->gpio.direction = ice->eeprom.gpiodir;
	snd_vt1724_set_gpio_mask(ice, ice->eeprom.gpiomask);
	snd_vt1724_set_gpio_dir(ice, ice->eeprom.gpiodir);
	snd_vt1724_set_gpio_data(ice, ice->eeprom.gpiostate);

	outb(0, ICEREG1724(ice, POWERDOWN));

	return 0;
}

2293
static int __devinit snd_vt1724_spdif_build_controls(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
2294 2295
{
	int err;
2296
	struct snd_kcontrol *kctl;
L
Linus Torvalds 已提交
2297

2298 2299
	if (snd_BUG_ON(!ice->pcm))
		return -EIO;
L
Linus Torvalds 已提交
2300

2301 2302 2303 2304 2305 2306
	if (!ice->own_routing) {
		err = snd_ctl_add(ice->card,
			snd_ctl_new1(&snd_vt1724_mixer_pro_spdif_route, ice));
		if (err < 0)
			return err;
	}
L
Linus Torvalds 已提交
2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334

	err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_spdif_switch, ice));
	if (err < 0)
		return err;

	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_default, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm->device;
	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskc, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm->device;
	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_maskp, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm->device;
#if 0 /* use default only */
	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_vt1724_spdif_stream, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm->device;
	ice->spdif.stream_ctl = kctl;
#endif
	return 0;
}


2335
static int __devinit snd_vt1724_build_controls(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352
{
	int err;

	err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_eeprom, ice));
	if (err < 0)
		return err;
	err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_internal_clock, ice));
	if (err < 0)
		return err;

	err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_locking, ice));
	if (err < 0)
		return err;
	err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_pro_rate_reset, ice));
	if (err < 0)
		return err;

2353
	if (!ice->own_routing && ice->num_total_dacs > 0) {
2354
		struct snd_kcontrol_new tmp = snd_vt1724_mixer_pro_analog_route;
L
Linus Torvalds 已提交
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369
		tmp.count = ice->num_total_dacs;
		if (ice->vt1720 && tmp.count > 2)
			tmp.count = 2;
		err = snd_ctl_add(ice->card, snd_ctl_new1(&tmp, ice));
		if (err < 0)
			return err;
	}

	err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_vt1724_mixer_pro_peak, ice));
	if (err < 0)
		return err;

	return 0;
}

2370
static int snd_vt1724_free(struct snd_ice1712 *ice)
L
Linus Torvalds 已提交
2371
{
2372
	if (!ice->port)
L
Linus Torvalds 已提交
2373 2374 2375 2376 2377
		goto __hw_end;
	/* mask all interrupts */
	outb(0xff, ICEMT1724(ice, DMA_INT_MASK));
	outb(0xff, ICEREG1724(ice, IRQMASK));
	/* --- */
2378
__hw_end:
2379
	if (ice->irq >= 0)
2380
		free_irq(ice->irq, ice);
L
Linus Torvalds 已提交
2381 2382 2383
	pci_release_regions(ice->pci);
	snd_ice1712_akm4xxx_free(ice);
	pci_disable_device(ice->pci);
2384
	kfree(ice->spec);
L
Linus Torvalds 已提交
2385 2386 2387 2388
	kfree(ice);
	return 0;
}

2389
static int snd_vt1724_dev_free(struct snd_device *device)
L
Linus Torvalds 已提交
2390
{
2391
	struct snd_ice1712 *ice = device->device_data;
L
Linus Torvalds 已提交
2392 2393 2394
	return snd_vt1724_free(ice);
}

2395
static int __devinit snd_vt1724_create(struct snd_card *card,
L
Linus Torvalds 已提交
2396 2397
				       struct pci_dev *pci,
				       const char *modelname,
2398
				       struct snd_ice1712 **r_ice1712)
L
Linus Torvalds 已提交
2399
{
2400
	struct snd_ice1712 *ice;
L
Linus Torvalds 已提交
2401
	int err;
2402
	static struct snd_device_ops ops = {
L
Linus Torvalds 已提交
2403 2404 2405 2406 2407
		.dev_free =	snd_vt1724_dev_free,
	};

	*r_ice1712 = NULL;

2408 2409 2410
	/* enable PCI device */
	err = pci_enable_device(pci);
	if (err < 0)
L
Linus Torvalds 已提交
2411 2412
		return err;

2413
	ice = kzalloc(sizeof(*ice), GFP_KERNEL);
L
Linus Torvalds 已提交
2414 2415 2416 2417 2418 2419
	if (ice == NULL) {
		pci_disable_device(pci);
		return -ENOMEM;
	}
	ice->vt1724 = 1;
	spin_lock_init(&ice->reg_lock);
2420 2421 2422
	mutex_init(&ice->gpio_mutex);
	mutex_init(&ice->open_mutex);
	mutex_init(&ice->i2c_mutex);
L
Linus Torvalds 已提交
2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433
	ice->gpio.set_mask = snd_vt1724_set_gpio_mask;
	ice->gpio.set_dir = snd_vt1724_set_gpio_dir;
	ice->gpio.set_data = snd_vt1724_set_gpio_data;
	ice->gpio.get_data = snd_vt1724_get_gpio_data;
	ice->card = card;
	ice->pci = pci;
	ice->irq = -1;
	pci_set_master(pci);
	snd_vt1724_proc_init(ice);
	synchronize_irq(pci->irq);

2434 2435
	err = pci_request_regions(pci, "ICE1724");
	if (err < 0) {
L
Linus Torvalds 已提交
2436 2437 2438 2439 2440 2441 2442
		kfree(ice);
		pci_disable_device(pci);
		return err;
	}
	ice->port = pci_resource_start(pci, 0);
	ice->profi_port = pci_resource_start(pci, 1);

2443
	if (request_irq(pci->irq, snd_vt1724_interrupt,
2444
			IRQF_SHARED, "ICE1724", ice)) {
2445
		snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
L
Linus Torvalds 已提交
2446 2447 2448 2449 2450 2451
		snd_vt1724_free(ice);
		return -EIO;
	}

	ice->irq = pci->irq;

2452
	snd_vt1724_chip_reset(ice);
L
Linus Torvalds 已提交
2453 2454 2455 2456 2457 2458 2459 2460 2461
	if (snd_vt1724_read_eeprom(ice, modelname) < 0) {
		snd_vt1724_free(ice);
		return -EIO;
	}
	if (snd_vt1724_chip_init(ice) < 0) {
		snd_vt1724_free(ice);
		return -EIO;
	}

2462 2463
	/* MPU_RX and TX irq masks are cleared later dynamically */
	outb(VT1724_IRQ_MPU_RX | VT1724_IRQ_MPU_TX , ICEREG1724(ice, IRQMASK));
2464

2465 2466 2467
	/* don't handle FIFO overrun/underruns (just yet),
	 * since they cause machine lockups
	 */
L
Linus Torvalds 已提交
2468 2469
	outb(VT1724_MULTI_FIFO_ERR, ICEMT1724(ice, DMA_INT_MASK));

2470 2471
	err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
	if (err < 0) {
L
Linus Torvalds 已提交
2472
		snd_vt1724_free(ice);
2473
		return err;
L
Linus Torvalds 已提交
2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492
	}

	snd_card_set_dev(card, &pci->dev);

	*r_ice1712 = ice;
	return 0;
}


/*
 *
 * Registration
 *
 */

static int __devinit snd_vt1724_probe(struct pci_dev *pci,
				      const struct pci_device_id *pci_id)
{
	static int dev;
2493 2494
	struct snd_card *card;
	struct snd_ice1712 *ice;
L
Linus Torvalds 已提交
2495
	int pcm_dev = 0, err;
2496
	struct snd_ice1712_card_info * const *tbl, *c;
L
Linus Torvalds 已提交
2497 2498 2499 2500 2501 2502 2503 2504

	if (dev >= SNDRV_CARDS)
		return -ENODEV;
	if (!enable[dev]) {
		dev++;
		return -ENOENT;
	}

2505 2506 2507
	err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
	if (err < 0)
		return err;
L
Linus Torvalds 已提交
2508 2509 2510

	strcpy(card->driver, "ICE1724");
	strcpy(card->shortname, "ICEnsemble ICE1724");
2511 2512 2513

	err = snd_vt1724_create(card, pci, model[dev], &ice);
	if (err < 0) {
L
Linus Torvalds 已提交
2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524
		snd_card_free(card);
		return err;
	}

	for (tbl = card_tables; *tbl; tbl++) {
		for (c = *tbl; c->subvendor; c++) {
			if (c->subvendor == ice->eeprom.subvendor) {
				strcpy(card->shortname, c->name);
				if (c->driver) /* specific driver? */
					strcpy(card->driver, c->driver);
				if (c->chip_init) {
2525 2526
					err = c->chip_init(ice);
					if (err < 0) {
L
Linus Torvalds 已提交
2527 2528 2529 2530 2531 2532 2533 2534 2535
						snd_card_free(card);
						return err;
					}
				}
				goto __found;
			}
		}
	}
	c = &no_matched;
2536 2537 2538 2539 2540 2541 2542 2543 2544
__found:
	/*
	* VT1724 has separate DMAs for the analog and the SPDIF streams while
	* ICE1712 has only one for both (mixed up).
	*
	* Confusingly the analog PCM is named "professional" here because it
	* was called so in ice1712 driver, and vt1724 driver is derived from
	* ice1712 driver.
	*/
2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557
	ice->pro_rate_default = PRO_RATE_DEFAULT;
	if (!ice->is_spdif_master)
		ice->is_spdif_master = stdclock_is_spdif_master;
	if (!ice->get_rate)
		ice->get_rate = stdclock_get_rate;
	if (!ice->set_rate)
		ice->set_rate = stdclock_set_rate;
	if (!ice->set_mclk)
		ice->set_mclk = stdclock_set_mclk;
	if (!ice->set_spdif_clock)
		ice->set_spdif_clock = stdclock_set_spdif_clock;
	if (!ice->hw_rates)
		set_std_hw_rates(ice);
L
Linus Torvalds 已提交
2558

2559 2560
	err = snd_vt1724_pcm_profi(ice, pcm_dev++);
	if (err < 0) {
L
Linus Torvalds 已提交
2561 2562 2563
		snd_card_free(card);
		return err;
	}
2564 2565 2566

	err = snd_vt1724_pcm_spdif(ice, pcm_dev++);
	if (err < 0) {
L
Linus Torvalds 已提交
2567 2568 2569
		snd_card_free(card);
		return err;
	}
2570 2571 2572

	err = snd_vt1724_pcm_indep(ice, pcm_dev++);
	if (err < 0) {
L
Linus Torvalds 已提交
2573 2574 2575 2576
		snd_card_free(card);
		return err;
	}

2577 2578
	err = snd_vt1724_ac97_mixer(ice);
	if (err < 0) {
L
Linus Torvalds 已提交
2579 2580 2581 2582
		snd_card_free(card);
		return err;
	}

2583 2584
	err = snd_vt1724_build_controls(ice);
	if (err < 0) {
L
Linus Torvalds 已提交
2585 2586 2587 2588 2589
		snd_card_free(card);
		return err;
	}

	if (ice->pcm && ice->has_spdif) { /* has SPDIF I/O */
2590 2591
		err = snd_vt1724_spdif_build_controls(ice);
		if (err < 0) {
L
Linus Torvalds 已提交
2592 2593 2594 2595 2596 2597
			snd_card_free(card);
			return err;
		}
	}

	if (c->build_controls) {
2598 2599
		err = c->build_controls(ice);
		if (err < 0) {
L
Linus Torvalds 已提交
2600 2601 2602 2603 2604
			snd_card_free(card);
			return err;
		}
	}

2605
	if (!c->no_mpu401) {
L
Linus Torvalds 已提交
2606
		if (ice->eeprom.data[ICE_EEP2_SYSCONF] & VT1724_CFG_MPU401) {
C
Clemens Ladisch 已提交
2607 2608 2609 2610
			struct snd_rawmidi *rmidi;

			err = snd_rawmidi_new(card, "MIDI", 0, 1, 1, &rmidi);
			if (err < 0) {
L
Linus Torvalds 已提交
2611 2612 2613
				snd_card_free(card);
				return err;
			}
C
Clemens Ladisch 已提交
2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624
			ice->rmidi[0] = rmidi;
			rmidi->private_data = ice;
			strcpy(rmidi->name, "ICE1724 MIDI");
			rmidi->info_flags = SNDRV_RAWMIDI_INFO_OUTPUT |
					    SNDRV_RAWMIDI_INFO_INPUT |
					    SNDRV_RAWMIDI_INFO_DUPLEX;
			snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT,
					    &vt1724_midi_output_ops);
			snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT,
					    &vt1724_midi_input_ops);

2625 2626 2627 2628
			/* set watermarks */
			outb(VT1724_MPU_RX_FIFO | 0x1,
			     ICEREG1724(ice, MPU_FIFO_WM));
			outb(0x1, ICEREG1724(ice, MPU_FIFO_WM));
C
Clemens Ladisch 已提交
2629 2630
			/* set UART mode */
			outb(VT1724_MPU_UART, ICEREG1724(ice, MPU_CTRL));
L
Linus Torvalds 已提交
2631 2632 2633 2634 2635 2636
		}
	}

	sprintf(card->longname, "%s at 0x%lx, irq %i",
		card->shortname, ice->port, ice->irq);

2637 2638
	err = snd_card_register(card);
	if (err < 0) {
L
Linus Torvalds 已提交
2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661
		snd_card_free(card);
		return err;
	}
	pci_set_drvdata(pci, card);
	dev++;
	return 0;
}

static void __devexit snd_vt1724_remove(struct pci_dev *pci)
{
	snd_card_free(pci_get_drvdata(pci));
	pci_set_drvdata(pci, NULL);
}

static struct pci_driver driver = {
	.name = "ICE1724",
	.id_table = snd_vt1724_ids,
	.probe = snd_vt1724_probe,
	.remove = __devexit_p(snd_vt1724_remove),
};

static int __init alsa_card_ice1724_init(void)
{
2662
	return pci_register_driver(&driver);
L
Linus Torvalds 已提交
2663 2664 2665 2666 2667 2668 2669 2670 2671
}

static void __exit alsa_card_ice1724_exit(void)
{
	pci_unregister_driver(&driver);
}

module_init(alsa_card_ice1724_init)
module_exit(alsa_card_ice1724_exit)