ice1712.c 81.8 KB
Newer Older
Linus Torvalds's avatar
Linus Torvalds committed
1 2 3
/*
 *   ALSA driver for ICEnsemble ICE1712 (Envy24)
 *
4
 *	Copyright (c) 2000 Jaroslav Kysela <perex@perex.cz>
Linus Torvalds's avatar
Linus Torvalds committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
 *
 *   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
 *
20
 */
Linus Torvalds's avatar
Linus Torvalds committed
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

/*
  NOTES:
  - spdif nonaudio consumer mode does not work (at least with my
    Sony STR-DB830)
*/

/*
 * Changes:
 *
 *  2002.09.09	Takashi Iwai <tiwai@suse.de>
 *	split the code to several files.  each low-level routine
 *	is stored in the local file and called from registration
 *	function from card_info struct.
 *
 *  2002.11.26	James Stafford <jstafford@ampltd.com>
 *	Added support for VT1724 (Envy24HT)
38
 *	I have left out support for 176.4 and 192 KHz for the moment.
Linus Torvalds's avatar
Linus Torvalds committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
 *  I also haven't done anything with the internal S/PDIF transmitter or the MPU-401
 *
 *  2003.02.20  Taksahi Iwai <tiwai@suse.de>
 *	Split vt1724 part to an independent driver.
 *	The GPIO is accessed through the callback functions now.
 *
 * 2004.03.31 Doug McLain <nostar@comcast.net>
 *    Added support for Event Electronics EZ8 card to hoontech.c.
 */


#include <linux/delay.h>
#include <linux/interrupt.h>
#include <linux/init.h>
#include <linux/pci.h>
54
#include <linux/dma-mapping.h>
Linus Torvalds's avatar
Linus Torvalds committed
55
#include <linux/slab.h>
56
#include <linux/module.h>
57
#include <linux/mutex.h>
58

Linus Torvalds's avatar
Linus Torvalds committed
59 60 61 62
#include <sound/core.h>
#include <sound/cs8427.h>
#include <sound/info.h>
#include <sound/initval.h>
63
#include <sound/tlv.h>
Linus Torvalds's avatar
Linus Torvalds committed
64 65 66 67 68 69 70 71 72 73

#include <sound/asoundef.h>

#include "ice1712.h"

/* lowlevel routines */
#include "delta.h"
#include "ews.h"
#include "hoontech.h"

74
MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>");
Linus Torvalds's avatar
Linus Torvalds committed
75 76 77 78 79 80 81 82 83 84 85
MODULE_DESCRIPTION("ICEnsemble ICE1712 (Envy24)");
MODULE_LICENSE("GPL");
MODULE_SUPPORTED_DEVICE("{"
	       HOONTECH_DEVICE_DESC
	       DELTA_DEVICE_DESC
	       EWS_DEVICE_DESC
	       "{ICEnsemble,Generic ICE1712},"
	       "{ICEnsemble,Generic Envy24}}");

static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;	/* Index 0-MAX */
static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;	/* ID for this card */
86
static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;/* Enable this card */
Linus Torvalds's avatar
Linus Torvalds committed
87
static char *model[SNDRV_CARDS];
88
static bool omni[SNDRV_CARDS];				/* Delta44 & 66 Omni I/O support */
89
static int cs8427_timeout[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = 500}; /* CS8427 S/PDIF transceiver reset timeout value in msec */
90
static int dxr_enable[SNDRV_CARDS];			/* DXR enable for DMX6FIRE */
Linus Torvalds's avatar
Linus Torvalds committed
91 92 93 94 95 96 97 98 99 100 101 102 103

module_param_array(index, int, NULL, 0444);
MODULE_PARM_DESC(index, "Index value for ICE1712 soundcard.");
module_param_array(id, charp, NULL, 0444);
MODULE_PARM_DESC(id, "ID string for ICE1712 soundcard.");
module_param_array(enable, bool, NULL, 0444);
MODULE_PARM_DESC(enable, "Enable ICE1712 soundcard.");
module_param_array(omni, bool, NULL, 0444);
MODULE_PARM_DESC(omni, "Enable Midiman M-Audio Delta Omni I/O support.");
module_param_array(cs8427_timeout, int, NULL, 0444);
MODULE_PARM_DESC(cs8427_timeout, "Define reset timeout for cs8427 chip in msec resolution.");
module_param_array(model, charp, NULL, 0444);
MODULE_PARM_DESC(model, "Use the given board model.");
104
module_param_array(dxr_enable, int, NULL, 0444);
105
MODULE_PARM_DESC(dxr_enable, "Enable DXR support for Terratec DMX6FIRE.");
Linus Torvalds's avatar
Linus Torvalds committed
106 107


108
static DEFINE_PCI_DEVICE_TABLE(snd_ice1712_ids) = {
Joe Perches's avatar
Joe Perches committed
109
	{ PCI_VDEVICE(ICE, PCI_DEVICE_ID_ICE_1712), 0 },   /* ICE1712 */
Linus Torvalds's avatar
Linus Torvalds committed
110 111 112 113 114
	{ 0, }
};

MODULE_DEVICE_TABLE(pci, snd_ice1712_ids);

115 116
static int snd_ice1712_build_pro_mixer(struct snd_ice1712 *ice);
static int snd_ice1712_build_controls(struct snd_ice1712 *ice);
Linus Torvalds's avatar
Linus Torvalds committed
117 118 119 120 121 122 123 124

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

/*
 *  Basic I/O
 */
125

Linus Torvalds's avatar
Linus Torvalds committed
126
/* check whether the clock mode is spdif-in */
127
static inline int is_spdif_master(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
128 129 130 131
{
	return (inb(ICEMT(ice, RATE)) & ICE1712_SPDIF_MASTER) ? 1 : 0;
}

132
static inline int is_pro_rate_locked(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
133 134 135 136
{
	return is_spdif_master(ice) || PRO_RATE_LOCKED;
}

137
static inline void snd_ice1712_ds_write(struct snd_ice1712 *ice, u8 channel, u8 addr, u32 data)
Linus Torvalds's avatar
Linus Torvalds committed
138 139 140 141 142
{
	outb((channel << 4) | addr, ICEDS(ice, INDEX));
	outl(data, ICEDS(ice, DATA));
}

143
static inline u32 snd_ice1712_ds_read(struct snd_ice1712 *ice, u8 channel, u8 addr)
Linus Torvalds's avatar
Linus Torvalds committed
144 145 146 147 148
{
	outb((channel << 4) | addr, ICEDS(ice, INDEX));
	return inl(ICEDS(ice, DATA));
}

149
static void snd_ice1712_ac97_write(struct snd_ac97 *ac97,
Linus Torvalds's avatar
Linus Torvalds committed
150 151 152
				   unsigned short reg,
				   unsigned short val)
{
153
	struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds's avatar
Linus Torvalds committed
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	int tm;
	unsigned char old_cmd = 0;

	for (tm = 0; tm < 0x10000; tm++) {
		old_cmd = inb(ICEREG(ice, AC97_CMD));
		if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
			continue;
		if (!(old_cmd & ICE1712_AC97_READY))
			continue;
		break;
	}
	outb(reg, ICEREG(ice, AC97_INDEX));
	outw(val, ICEREG(ice, AC97_DATA));
	old_cmd &= ~(ICE1712_AC97_PBK_VSR | ICE1712_AC97_CAP_VSR);
	outb(old_cmd | ICE1712_AC97_WRITE, ICEREG(ice, AC97_CMD));
	for (tm = 0; tm < 0x10000; tm++)
		if ((inb(ICEREG(ice, AC97_CMD)) & ICE1712_AC97_WRITE) == 0)
			break;
}

174
static unsigned short snd_ice1712_ac97_read(struct snd_ac97 *ac97,
Linus Torvalds's avatar
Linus Torvalds committed
175 176
					    unsigned short reg)
{
177
	struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds's avatar
Linus Torvalds committed
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
	int tm;
	unsigned char old_cmd = 0;

	for (tm = 0; tm < 0x10000; tm++) {
		old_cmd = inb(ICEREG(ice, AC97_CMD));
		if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
			continue;
		if (!(old_cmd & ICE1712_AC97_READY))
			continue;
		break;
	}
	outb(reg, ICEREG(ice, AC97_INDEX));
	outb(old_cmd | ICE1712_AC97_READ, ICEREG(ice, AC97_CMD));
	for (tm = 0; tm < 0x10000; tm++)
		if ((inb(ICEREG(ice, AC97_CMD)) & ICE1712_AC97_READ) == 0)
			break;
	if (tm >= 0x10000)		/* timeout */
		return ~0;
	return inw(ICEREG(ice, AC97_DATA));
}

/*
 * pro ac97 section
 */

203
static void snd_ice1712_pro_ac97_write(struct snd_ac97 *ac97,
Linus Torvalds's avatar
Linus Torvalds committed
204 205 206
				       unsigned short reg,
				       unsigned short val)
{
207
	struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds's avatar
Linus Torvalds committed
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228
	int tm;
	unsigned char old_cmd = 0;

	for (tm = 0; tm < 0x10000; tm++) {
		old_cmd = inb(ICEMT(ice, AC97_CMD));
		if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
			continue;
		if (!(old_cmd & ICE1712_AC97_READY))
			continue;
		break;
	}
	outb(reg, ICEMT(ice, AC97_INDEX));
	outw(val, ICEMT(ice, AC97_DATA));
	old_cmd &= ~(ICE1712_AC97_PBK_VSR | ICE1712_AC97_CAP_VSR);
	outb(old_cmd | ICE1712_AC97_WRITE, ICEMT(ice, AC97_CMD));
	for (tm = 0; tm < 0x10000; tm++)
		if ((inb(ICEMT(ice, AC97_CMD)) & ICE1712_AC97_WRITE) == 0)
			break;
}


229
static unsigned short snd_ice1712_pro_ac97_read(struct snd_ac97 *ac97,
Linus Torvalds's avatar
Linus Torvalds committed
230 231
						unsigned short reg)
{
232
	struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds's avatar
Linus Torvalds committed
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
	int tm;
	unsigned char old_cmd = 0;

	for (tm = 0; tm < 0x10000; tm++) {
		old_cmd = inb(ICEMT(ice, AC97_CMD));
		if (old_cmd & (ICE1712_AC97_WRITE | ICE1712_AC97_READ))
			continue;
		if (!(old_cmd & ICE1712_AC97_READY))
			continue;
		break;
	}
	outb(reg, ICEMT(ice, AC97_INDEX));
	outb(old_cmd | ICE1712_AC97_READ, ICEMT(ice, AC97_CMD));
	for (tm = 0; tm < 0x10000; tm++)
		if ((inb(ICEMT(ice, AC97_CMD)) & ICE1712_AC97_READ) == 0)
			break;
	if (tm >= 0x10000)		/* timeout */
		return ~0;
	return inw(ICEMT(ice, AC97_DATA));
}

/*
 * consumer ac97 digital mix
 */
257
#define snd_ice1712_digmix_route_ac97_info	snd_ctl_boolean_mono_info
Linus Torvalds's avatar
Linus Torvalds committed
258

259
static int snd_ice1712_digmix_route_ac97_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
260
{
261
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
262

Linus Torvalds's avatar
Linus Torvalds committed
263 264 265 266
	ucontrol->value.integer.value[0] = inb(ICEMT(ice, MONITOR_ROUTECTRL)) & ICE1712_ROUTE_AC97 ? 1 : 0;
	return 0;
}

267
static int snd_ice1712_digmix_route_ac97_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
268
{
269
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
270
	unsigned char val, nval;
271

Linus Torvalds's avatar
Linus Torvalds committed
272 273 274
	spin_lock_irq(&ice->reg_lock);
	val = inb(ICEMT(ice, MONITOR_ROUTECTRL));
	nval = val & ~ICE1712_ROUTE_AC97;
275 276
	if (ucontrol->value.integer.value[0])
		nval |= ICE1712_ROUTE_AC97;
Linus Torvalds's avatar
Linus Torvalds committed
277 278 279 280 281
	outb(nval, ICEMT(ice, MONITOR_ROUTECTRL));
	spin_unlock_irq(&ice->reg_lock);
	return val != nval;
}

282
static struct snd_kcontrol_new snd_ice1712_mixer_digmix_route_ac97 = {
Linus Torvalds's avatar
Linus Torvalds committed
283 284 285 286 287 288 289 290 291 292 293
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Digital Mixer To AC97",
	.info = snd_ice1712_digmix_route_ac97_info,
	.get = snd_ice1712_digmix_route_ac97_get,
	.put = snd_ice1712_digmix_route_ac97_put,
};


/*
 * gpio operations
 */
294
static void snd_ice1712_set_gpio_dir(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds's avatar
Linus Torvalds committed
295 296 297 298 299
{
	snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, data);
	inb(ICEREG(ice, DATA)); /* dummy read for pci-posting */
}

300 301 302 303 304 305 306 307 308 309
static unsigned int snd_ice1712_get_gpio_dir(struct snd_ice1712 *ice)
{
	return snd_ice1712_read(ice, ICE1712_IREG_GPIO_DIRECTION);
}

static unsigned int snd_ice1712_get_gpio_mask(struct snd_ice1712 *ice)
{
	return snd_ice1712_read(ice, ICE1712_IREG_GPIO_WRITE_MASK);
}

310
static void snd_ice1712_set_gpio_mask(struct snd_ice1712 *ice, unsigned int data)
Linus Torvalds's avatar
Linus Torvalds committed
311 312 313 314 315
{
	snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, data);
	inb(ICEREG(ice, DATA)); /* dummy read for pci-posting */
}

316
static unsigned int snd_ice1712_get_gpio_data(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
317 318 319 320
{
	return snd_ice1712_read(ice, ICE1712_IREG_GPIO_DATA);
}

321
static void snd_ice1712_set_gpio_data(struct snd_ice1712 *ice, unsigned int val)
Linus Torvalds's avatar
Linus Torvalds committed
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
{
	snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA, val);
	inb(ICEREG(ice, DATA)); /* dummy read for pci-posting */
}

/*
 *
 * CS8427 interface
 *
 */

/*
 * change the input clock selection
 * spdif_clock = 1 - IEC958 input, 0 - Envy24
 */
337
static int snd_ice1712_cs8427_set_input_clock(struct snd_ice1712 *ice, int spdif_clock)
Linus Torvalds's avatar
Linus Torvalds committed
338 339 340 341
{
	unsigned char reg[2] = { 0x80 | 4, 0 };   /* CS8427 auto increment | register number 4 + data */
	unsigned char val, nval;
	int res = 0;
342

Linus Torvalds's avatar
Linus Torvalds committed
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
	snd_i2c_lock(ice->i2c);
	if (snd_i2c_sendbytes(ice->cs8427, reg, 1) != 1) {
		snd_i2c_unlock(ice->i2c);
		return -EIO;
	}
	if (snd_i2c_readbytes(ice->cs8427, &val, 1) != 1) {
		snd_i2c_unlock(ice->i2c);
		return -EIO;
	}
	nval = val & 0xf0;
	if (spdif_clock)
		nval |= 0x01;
	else
		nval |= 0x04;
	if (val != nval) {
		reg[1] = nval;
		if (snd_i2c_sendbytes(ice->cs8427, reg, 2) != 2) {
			res = -EIO;
		} else {
			res++;
		}
	}
	snd_i2c_unlock(ice->i2c);
	return res;
}

/*
 * spdif callbacks
 */
372
static void open_cs8427(struct snd_ice1712 *ice, struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
373 374 375 376
{
	snd_cs8427_iec958_active(ice->cs8427, 1);
}

377
static void close_cs8427(struct snd_ice1712 *ice, struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
378 379 380 381
{
	snd_cs8427_iec958_active(ice->cs8427, 0);
}

382
static void setup_cs8427(struct snd_ice1712 *ice, int rate)
Linus Torvalds's avatar
Linus Torvalds committed
383 384 385 386 387 388 389
{
	snd_cs8427_iec958_pcm(ice->cs8427, rate);
}

/*
 * create and initialize callbacks for cs8427 interface
 */
390
int snd_ice1712_init_cs8427(struct snd_ice1712 *ice, int addr)
Linus Torvalds's avatar
Linus Torvalds committed
391 392 393
{
	int err;

394 395 396
	err = snd_cs8427_create(ice->i2c, addr,
		(ice->cs8427_timeout * HZ) / 1000, &ice->cs8427);
	if (err < 0) {
397
		snd_printk(KERN_ERR "CS8427 initialization failed\n");
Linus Torvalds's avatar
Linus Torvalds committed
398 399 400 401 402 403 404 405
		return err;
	}
	ice->spdif.ops.open = open_cs8427;
	ice->spdif.ops.close = close_cs8427;
	ice->spdif.ops.setup_rate = setup_cs8427;
	return 0;
}

406 407
static void snd_ice1712_set_input_clock_source(struct snd_ice1712 *ice, int spdif_is_master)
{
408 409 410
	/* change CS8427 clock source too */
	if (ice->cs8427)
		snd_ice1712_cs8427_set_input_clock(ice, spdif_is_master);
411 412 413 414 415 416 417 418 419
	/* notify ak4524 chip as well */
	if (spdif_is_master) {
		unsigned int i;
		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);
		}
	}
}
Linus Torvalds's avatar
Linus Torvalds committed
420 421 422 423 424

/*
 *  Interrupt handler
 */

425
static irqreturn_t snd_ice1712_interrupt(int irq, void *dev_id)
Linus Torvalds's avatar
Linus Torvalds committed
426
{
427
	struct snd_ice1712 *ice = dev_id;
Linus Torvalds's avatar
Linus Torvalds committed
428 429 430 431 432 433 434 435 436 437
	unsigned char status;
	int handled = 0;

	while (1) {
		status = inb(ICEREG(ice, IRQSTAT));
		if (status == 0)
			break;
		handled = 1;
		if (status & ICE1712_IRQ_MPU1) {
			if (ice->rmidi[0])
438
				snd_mpu401_uart_interrupt(irq, ice->rmidi[0]->private_data);
Linus Torvalds's avatar
Linus Torvalds committed
439 440 441 442 443 444 445
			outb(ICE1712_IRQ_MPU1, ICEREG(ice, IRQSTAT));
			status &= ~ICE1712_IRQ_MPU1;
		}
		if (status & ICE1712_IRQ_TIMER)
			outb(ICE1712_IRQ_TIMER, ICEREG(ice, IRQSTAT));
		if (status & ICE1712_IRQ_MPU2) {
			if (ice->rmidi[1])
446
				snd_mpu401_uart_interrupt(irq, ice->rmidi[1]->private_data);
Linus Torvalds's avatar
Linus Torvalds committed
447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467
			outb(ICE1712_IRQ_MPU2, ICEREG(ice, IRQSTAT));
			status &= ~ICE1712_IRQ_MPU2;
		}
		if (status & ICE1712_IRQ_PROPCM) {
			unsigned char mtstat = inb(ICEMT(ice, IRQ));
			if (mtstat & ICE1712_MULTI_PBKSTATUS) {
				if (ice->playback_pro_substream)
					snd_pcm_period_elapsed(ice->playback_pro_substream);
				outb(ICE1712_MULTI_PBKSTATUS, ICEMT(ice, IRQ));
			}
			if (mtstat & ICE1712_MULTI_CAPSTATUS) {
				if (ice->capture_pro_substream)
					snd_pcm_period_elapsed(ice->capture_pro_substream);
				outb(ICE1712_MULTI_CAPSTATUS, ICEMT(ice, IRQ));
			}
		}
		if (status & ICE1712_IRQ_FM)
			outb(ICE1712_IRQ_FM, ICEREG(ice, IRQSTAT));
		if (status & ICE1712_IRQ_PBKDS) {
			u32 idx;
			u16 pbkstatus;
468
			struct snd_pcm_substream *substream;
Linus Torvalds's avatar
Linus Torvalds committed
469
			pbkstatus = inw(ICEDS(ice, INTSTAT));
470
			/* printk(KERN_DEBUG "pbkstatus = 0x%x\n", pbkstatus); */
Linus Torvalds's avatar
Linus Torvalds committed
471 472 473
			for (idx = 0; idx < 6; idx++) {
				if ((pbkstatus & (3 << (idx * 2))) == 0)
					continue;
474 475
				substream = ice->playback_con_substream_ds[idx];
				if (substream != NULL)
Linus Torvalds's avatar
Linus Torvalds committed
476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
					snd_pcm_period_elapsed(substream);
				outw(3 << (idx * 2), ICEDS(ice, INTSTAT));
			}
			outb(ICE1712_IRQ_PBKDS, ICEREG(ice, IRQSTAT));
		}
		if (status & ICE1712_IRQ_CONCAP) {
			if (ice->capture_con_substream)
				snd_pcm_period_elapsed(ice->capture_con_substream);
			outb(ICE1712_IRQ_CONCAP, ICEREG(ice, IRQSTAT));
		}
		if (status & ICE1712_IRQ_CONPBK) {
			if (ice->playback_con_substream)
				snd_pcm_period_elapsed(ice->playback_con_substream);
			outb(ICE1712_IRQ_CONPBK, ICEREG(ice, IRQSTAT));
		}
	}
	return IRQ_RETVAL(handled);
}


/*
 *  PCM part - misc
 */

500 501
static int snd_ice1712_hw_params(struct snd_pcm_substream *substream,
				 struct snd_pcm_hw_params *hw_params)
Linus Torvalds's avatar
Linus Torvalds committed
502 503 504 505
{
	return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
}

506
static int snd_ice1712_hw_free(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
507 508 509 510 511 512 513 514
{
	return snd_pcm_lib_free_pages(substream);
}

/*
 *  PCM part - consumer I/O
 */

515
static int snd_ice1712_playback_trigger(struct snd_pcm_substream *substream,
Linus Torvalds's avatar
Linus Torvalds committed
516 517
					int cmd)
{
518
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
519 520
	int result = 0;
	u32 tmp;
521

Linus Torvalds's avatar
Linus Torvalds committed
522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
	spin_lock(&ice->reg_lock);
	tmp = snd_ice1712_read(ice, ICE1712_IREG_PBK_CTRL);
	if (cmd == SNDRV_PCM_TRIGGER_START) {
		tmp |= 1;
	} else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
		tmp &= ~1;
	} else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH) {
		tmp |= 2;
	} else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_RELEASE) {
		tmp &= ~2;
	} else {
		result = -EINVAL;
	}
	snd_ice1712_write(ice, ICE1712_IREG_PBK_CTRL, tmp);
	spin_unlock(&ice->reg_lock);
	return result;
}

540
static int snd_ice1712_playback_ds_trigger(struct snd_pcm_substream *substream,
Linus Torvalds's avatar
Linus Torvalds committed
541 542
					   int cmd)
{
543
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
544 545
	int result = 0;
	u32 tmp;
546

Linus Torvalds's avatar
Linus Torvalds committed
547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
	spin_lock(&ice->reg_lock);
	tmp = snd_ice1712_ds_read(ice, substream->number * 2, ICE1712_DSC_CONTROL);
	if (cmd == SNDRV_PCM_TRIGGER_START) {
		tmp |= 1;
	} else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
		tmp &= ~1;
	} else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH) {
		tmp |= 2;
	} else if (cmd == SNDRV_PCM_TRIGGER_PAUSE_RELEASE) {
		tmp &= ~2;
	} else {
		result = -EINVAL;
	}
	snd_ice1712_ds_write(ice, substream->number * 2, ICE1712_DSC_CONTROL, tmp);
	spin_unlock(&ice->reg_lock);
	return result;
}

565
static int snd_ice1712_capture_trigger(struct snd_pcm_substream *substream,
Linus Torvalds's avatar
Linus Torvalds committed
566 567
				       int cmd)
{
568
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
569 570
	int result = 0;
	u8 tmp;
571

Linus Torvalds's avatar
Linus Torvalds committed
572 573 574 575 576 577 578 579 580 581 582 583 584 585
	spin_lock(&ice->reg_lock);
	tmp = snd_ice1712_read(ice, ICE1712_IREG_CAP_CTRL);
	if (cmd == SNDRV_PCM_TRIGGER_START) {
		tmp |= 1;
	} else if (cmd == SNDRV_PCM_TRIGGER_STOP) {
		tmp &= ~1;
	} else {
		result = -EINVAL;
	}
	snd_ice1712_write(ice, ICE1712_IREG_CAP_CTRL, tmp);
	spin_unlock(&ice->reg_lock);
	return result;
}

586
static int snd_ice1712_playback_prepare(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
587
{
588 589
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds's avatar
Linus Torvalds committed
590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
	u32 period_size, buf_size, rate, tmp;

	period_size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
	buf_size = snd_pcm_lib_buffer_bytes(substream) - 1;
	tmp = 0x0000;
	if (snd_pcm_format_width(runtime->format) == 16)
		tmp |= 0x10;
	if (runtime->channels == 2)
		tmp |= 0x08;
	rate = (runtime->rate * 8192) / 375;
	if (rate > 0x000fffff)
		rate = 0x000fffff;
	spin_lock_irq(&ice->reg_lock);
	outb(0, ice->ddma_port + 15);
	outb(ICE1712_DMA_MODE_WRITE | ICE1712_DMA_AUTOINIT, ice->ddma_port + 0x0b);
	outl(runtime->dma_addr, ice->ddma_port + 0);
	outw(buf_size, ice->ddma_port + 4);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_RATE_LO, rate & 0xff);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_RATE_MID, (rate >> 8) & 0xff);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_RATE_HI, (rate >> 16) & 0xff);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_CTRL, tmp);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_COUNT_LO, period_size & 0xff);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_COUNT_HI, period_size >> 8);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_LEFT, 0);
	snd_ice1712_write(ice, ICE1712_IREG_PBK_RIGHT, 0);
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

619
static int snd_ice1712_playback_ds_prepare(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
620
{
621 622
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds's avatar
Linus Torvalds committed
623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653
	u32 period_size, buf_size, rate, tmp, chn;

	period_size = snd_pcm_lib_period_bytes(substream) - 1;
	buf_size = snd_pcm_lib_buffer_bytes(substream) - 1;
	tmp = 0x0064;
	if (snd_pcm_format_width(runtime->format) == 16)
		tmp &= ~0x04;
	if (runtime->channels == 2)
		tmp |= 0x08;
	rate = (runtime->rate * 8192) / 375;
	if (rate > 0x000fffff)
		rate = 0x000fffff;
	ice->playback_con_active_buf[substream->number] = 0;
	ice->playback_con_virt_addr[substream->number] = runtime->dma_addr;
	chn = substream->number * 2;
	spin_lock_irq(&ice->reg_lock);
	snd_ice1712_ds_write(ice, chn, ICE1712_DSC_ADDR0, runtime->dma_addr);
	snd_ice1712_ds_write(ice, chn, ICE1712_DSC_COUNT0, period_size);
	snd_ice1712_ds_write(ice, chn, ICE1712_DSC_ADDR1, runtime->dma_addr + (runtime->periods > 1 ? period_size + 1 : 0));
	snd_ice1712_ds_write(ice, chn, ICE1712_DSC_COUNT1, period_size);
	snd_ice1712_ds_write(ice, chn, ICE1712_DSC_RATE, rate);
	snd_ice1712_ds_write(ice, chn, ICE1712_DSC_VOLUME, 0);
	snd_ice1712_ds_write(ice, chn, ICE1712_DSC_CONTROL, tmp);
	if (runtime->channels == 2) {
		snd_ice1712_ds_write(ice, chn + 1, ICE1712_DSC_RATE, rate);
		snd_ice1712_ds_write(ice, chn + 1, ICE1712_DSC_VOLUME, 0);
	}
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

654
static int snd_ice1712_capture_prepare(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
655
{
656 657
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds's avatar
Linus Torvalds committed
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
	u32 period_size, buf_size;
	u8 tmp;

	period_size = (snd_pcm_lib_period_bytes(substream) >> 2) - 1;
	buf_size = snd_pcm_lib_buffer_bytes(substream) - 1;
	tmp = 0x06;
	if (snd_pcm_format_width(runtime->format) == 16)
		tmp &= ~0x04;
	if (runtime->channels == 2)
		tmp &= ~0x02;
	spin_lock_irq(&ice->reg_lock);
	outl(ice->capture_con_virt_addr = runtime->dma_addr, ICEREG(ice, CONCAP_ADDR));
	outw(buf_size, ICEREG(ice, CONCAP_COUNT));
	snd_ice1712_write(ice, ICE1712_IREG_CAP_COUNT_HI, period_size >> 8);
	snd_ice1712_write(ice, ICE1712_IREG_CAP_COUNT_LO, period_size & 0xff);
	snd_ice1712_write(ice, ICE1712_IREG_CAP_CTRL, tmp);
	spin_unlock_irq(&ice->reg_lock);
	snd_ac97_set_rate(ice->ac97, AC97_PCM_LR_ADC_RATE, runtime->rate);
	return 0;
}

679
static snd_pcm_uframes_t snd_ice1712_playback_pointer(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
680
{
681 682
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds's avatar
Linus Torvalds committed
683 684 685 686 687
	size_t ptr;

	if (!(snd_ice1712_read(ice, ICE1712_IREG_PBK_CTRL) & 1))
		return 0;
	ptr = runtime->buffer_size - inw(ice->ddma_port + 4);
688
	ptr = bytes_to_frames(substream->runtime, ptr);
Linus Torvalds's avatar
Linus Torvalds committed
689 690
	if (ptr == runtime->buffer_size)
		ptr = 0;
691
	return ptr;
Linus Torvalds's avatar
Linus Torvalds committed
692 693
}

694
static snd_pcm_uframes_t snd_ice1712_playback_ds_pointer(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
695
{
696
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
697 698 699 700 701 702 703 704 705 706 707
	u8 addr;
	size_t ptr;

	if (!(snd_ice1712_ds_read(ice, substream->number * 2, ICE1712_DSC_CONTROL) & 1))
		return 0;
	if (ice->playback_con_active_buf[substream->number])
		addr = ICE1712_DSC_ADDR1;
	else
		addr = ICE1712_DSC_ADDR0;
	ptr = snd_ice1712_ds_read(ice, substream->number * 2, addr) -
		ice->playback_con_virt_addr[substream->number];
708
	ptr = bytes_to_frames(substream->runtime, ptr);
Linus Torvalds's avatar
Linus Torvalds committed
709 710
	if (ptr == substream->runtime->buffer_size)
		ptr = 0;
711
	return ptr;
Linus Torvalds's avatar
Linus Torvalds committed
712 713
}

714
static snd_pcm_uframes_t snd_ice1712_capture_pointer(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
715
{
716
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
717 718 719 720 721
	size_t ptr;

	if (!(snd_ice1712_read(ice, ICE1712_IREG_CAP_CTRL) & 1))
		return 0;
	ptr = inl(ICEREG(ice, CONCAP_ADDR)) - ice->capture_con_virt_addr;
722
	ptr = bytes_to_frames(substream->runtime, ptr);
Linus Torvalds's avatar
Linus Torvalds committed
723 724
	if (ptr == substream->runtime->buffer_size)
		ptr = 0;
725
	return ptr;
Linus Torvalds's avatar
Linus Torvalds committed
726 727
}

728
static const struct snd_pcm_hardware snd_ice1712_playback = {
Linus Torvalds's avatar
Linus Torvalds committed
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
				 SNDRV_PCM_INFO_MMAP_VALID |
				 SNDRV_PCM_INFO_PAUSE),
	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
	.rates =		SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
	.rate_min =		4000,
	.rate_max =		48000,
	.channels_min =		1,
	.channels_max =		2,
	.buffer_bytes_max =	(64*1024),
	.period_bytes_min =	64,
	.period_bytes_max =	(64*1024),
	.periods_min =		1,
	.periods_max =		1024,
	.fifo_size =		0,
};

747
static const struct snd_pcm_hardware snd_ice1712_playback_ds = {
Linus Torvalds's avatar
Linus Torvalds committed
748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
				 SNDRV_PCM_INFO_MMAP_VALID |
				 SNDRV_PCM_INFO_PAUSE),
	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
	.rates =		SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
	.rate_min =		4000,
	.rate_max =		48000,
	.channels_min =		1,
	.channels_max =		2,
	.buffer_bytes_max =	(128*1024),
	.period_bytes_min =	64,
	.period_bytes_max =	(128*1024),
	.periods_min =		2,
	.periods_max =		2,
	.fifo_size =		0,
};

766
static const struct snd_pcm_hardware snd_ice1712_capture = {
Linus Torvalds's avatar
Linus Torvalds committed
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783
	.info =			(SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
				 SNDRV_PCM_INFO_BLOCK_TRANSFER |
				 SNDRV_PCM_INFO_MMAP_VALID),
	.formats =		SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
	.rates =		SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
	.rate_min =		4000,
	.rate_max =		48000,
	.channels_min =		1,
	.channels_max =		2,
	.buffer_bytes_max =	(64*1024),
	.period_bytes_min =	64,
	.period_bytes_max =	(64*1024),
	.periods_min =		1,
	.periods_max =		1024,
	.fifo_size =		0,
};

784
static int snd_ice1712_playback_open(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
785
{
786 787
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
788 789 790 791 792 793

	ice->playback_con_substream = substream;
	runtime->hw = snd_ice1712_playback;
	return 0;
}

794
static int snd_ice1712_playback_ds_open(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
795
{
796 797
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
798 799 800 801
	u32 tmp;

	ice->playback_con_substream_ds[substream->number] = substream;
	runtime->hw = snd_ice1712_playback_ds;
802
	spin_lock_irq(&ice->reg_lock);
Linus Torvalds's avatar
Linus Torvalds committed
803 804 805 806 807 808
	tmp = inw(ICEDS(ice, INTMASK)) & ~(1 << (substream->number * 2));
	outw(tmp, ICEDS(ice, INTMASK));
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

809
static int snd_ice1712_capture_open(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
810
{
811 812
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
813 814 815 816 817 818 819 820 821

	ice->capture_con_substream = substream;
	runtime->hw = snd_ice1712_capture;
	runtime->hw.rates = ice->ac97->rates[AC97_RATES_ADC];
	if (!(runtime->hw.rates & SNDRV_PCM_RATE_8000))
		runtime->hw.rate_min = 48000;
	return 0;
}

822
static int snd_ice1712_playback_close(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
823
{
824
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
825 826 827 828 829

	ice->playback_con_substream = NULL;
	return 0;
}

830
static int snd_ice1712_playback_ds_close(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
831
{
832
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
833 834
	u32 tmp;

835
	spin_lock_irq(&ice->reg_lock);
Linus Torvalds's avatar
Linus Torvalds committed
836 837 838 839 840 841 842
	tmp = inw(ICEDS(ice, INTMASK)) | (3 << (substream->number * 2));
	outw(tmp, ICEDS(ice, INTMASK));
	spin_unlock_irq(&ice->reg_lock);
	ice->playback_con_substream_ds[substream->number] = NULL;
	return 0;
}

843
static int snd_ice1712_capture_close(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
844
{
845
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
846 847 848 849 850

	ice->capture_con_substream = NULL;
	return 0;
}

851
static struct snd_pcm_ops snd_ice1712_playback_ops = {
Linus Torvalds's avatar
Linus Torvalds committed
852 853 854 855 856 857 858 859 860 861
	.open =		snd_ice1712_playback_open,
	.close =	snd_ice1712_playback_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_ice1712_hw_params,
	.hw_free =	snd_ice1712_hw_free,
	.prepare =	snd_ice1712_playback_prepare,
	.trigger =	snd_ice1712_playback_trigger,
	.pointer =	snd_ice1712_playback_pointer,
};

862
static struct snd_pcm_ops snd_ice1712_playback_ds_ops = {
Linus Torvalds's avatar
Linus Torvalds committed
863 864 865 866 867 868 869 870 871 872
	.open =		snd_ice1712_playback_ds_open,
	.close =	snd_ice1712_playback_ds_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_ice1712_hw_params,
	.hw_free =	snd_ice1712_hw_free,
	.prepare =	snd_ice1712_playback_ds_prepare,
	.trigger =	snd_ice1712_playback_ds_trigger,
	.pointer =	snd_ice1712_playback_ds_pointer,
};

873
static struct snd_pcm_ops snd_ice1712_capture_ops = {
Linus Torvalds's avatar
Linus Torvalds committed
874 875 876 877 878 879 880 881 882 883
	.open =		snd_ice1712_capture_open,
	.close =	snd_ice1712_capture_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_ice1712_hw_params,
	.hw_free =	snd_ice1712_hw_free,
	.prepare =	snd_ice1712_capture_prepare,
	.trigger =	snd_ice1712_capture_trigger,
	.pointer =	snd_ice1712_capture_pointer,
};

884
static int snd_ice1712_pcm(struct snd_ice1712 *ice, int device, struct snd_pcm **rpcm)
Linus Torvalds's avatar
Linus Torvalds committed
885
{
886
	struct snd_pcm *pcm;
Linus Torvalds's avatar
Linus Torvalds committed
887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	int err;

	if (rpcm)
		*rpcm = NULL;
	err = snd_pcm_new(ice->card, "ICE1712 consumer", device, 1, 1, &pcm);
	if (err < 0)
		return err;

	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ice1712_playback_ops);
	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ice1712_capture_ops);

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

	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
					      snd_dma_pci_data(ice->pci), 64*1024, 64*1024);

	if (rpcm)
		*rpcm = pcm;

	printk(KERN_WARNING "Consumer PCM code does not work well at the moment --jk\n");

	return 0;
}

914
static int snd_ice1712_pcm_ds(struct snd_ice1712 *ice, int device, struct snd_pcm **rpcm)
Linus Torvalds's avatar
Linus Torvalds committed
915
{
916
	struct snd_pcm *pcm;
Linus Torvalds's avatar
Linus Torvalds committed
917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
	int err;

	if (rpcm)
		*rpcm = NULL;
	err = snd_pcm_new(ice->card, "ICE1712 consumer (DS)", device, 6, 0, &pcm);
	if (err < 0)
		return err;

	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ice1712_playback_ds_ops);

	pcm->private_data = ice;
	pcm->info_flags = 0;
	strcpy(pcm->name, "ICE1712 consumer (DS)");
	ice->pcm_ds = pcm;

	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
					      snd_dma_pci_data(ice->pci), 64*1024, 128*1024);

	if (rpcm)
		*rpcm = pcm;

	return 0;
}

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

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

948
static struct snd_pcm_hw_constraint_list hw_constraints_rates = {
Linus Torvalds's avatar
Linus Torvalds committed
949 950 951 952 953
	.count = ARRAY_SIZE(rates),
	.list = rates,
	.mask = 0,
};

954
static int snd_ice1712_pro_trigger(struct snd_pcm_substream *substream,
Linus Torvalds's avatar
Linus Torvalds committed
955 956
				   int cmd)
{
957
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
	switch (cmd) {
	case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
	case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
	{
		unsigned int what;
		unsigned int old;
		if (substream->stream != SNDRV_PCM_STREAM_PLAYBACK)
			return -EINVAL;
		what = ICE1712_PLAYBACK_PAUSE;
		snd_pcm_trigger_done(substream, substream);
		spin_lock(&ice->reg_lock);
		old = inl(ICEMT(ice, PLAYBACK_CONTROL));
		if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
			old |= what;
		else
			old &= ~what;
		outl(old, ICEMT(ice, PLAYBACK_CONTROL));
		spin_unlock(&ice->reg_lock);
		break;
	}
	case SNDRV_PCM_TRIGGER_START:
	case SNDRV_PCM_TRIGGER_STOP:
	{
		unsigned int what = 0;
		unsigned int old;
983
		struct snd_pcm_substream *s;
Linus Torvalds's avatar
Linus Torvalds committed
984

985
		snd_pcm_group_for_each_entry(s, substream) {
Linus Torvalds's avatar
Linus Torvalds committed
986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
			if (s == ice->playback_pro_substream) {
				what |= ICE1712_PLAYBACK_START;
				snd_pcm_trigger_done(s, substream);
			} else if (s == ice->capture_pro_substream) {
				what |= ICE1712_CAPTURE_START_SHADOW;
				snd_pcm_trigger_done(s, substream);
			}
		}
		spin_lock(&ice->reg_lock);
		old = inl(ICEMT(ice, PLAYBACK_CONTROL));
		if (cmd == SNDRV_PCM_TRIGGER_START)
			old |= what;
		else
			old &= ~what;
		outl(old, ICEMT(ice, PLAYBACK_CONTROL));
		spin_unlock(&ice->reg_lock);
		break;
	}
	default:
		return -EINVAL;
	}
	return 0;
}

/*
 */
1012
static void snd_ice1712_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate, int force)
Linus Torvalds's avatar
Linus Torvalds committed
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
{
	unsigned long flags;
	unsigned char val, old;
	unsigned int i;

	switch (rate) {
	case 8000: val = 6; break;
	case 9600: val = 3; break;
	case 11025: val = 10; break;
	case 12000: val = 2; break;
	case 16000: val = 5; break;
	case 22050: val = 9; break;
	case 24000: val = 1; break;
	case 32000: val = 4; break;
	case 44100: val = 8; break;
	case 48000: val = 0; break;
	case 64000: val = 15; break;
	case 88200: val = 11; break;
	case 96000: val = 7; break;
	default:
		snd_BUG();
		val = 0;
		rate = 48000;
		break;
	}

	spin_lock_irqsave(&ice->reg_lock, flags);
	if (inb(ICEMT(ice, PLAYBACK_CONTROL)) & (ICE1712_CAPTURE_START_SHADOW|
						 ICE1712_PLAYBACK_PAUSE|
						 ICE1712_PLAYBACK_START)) {
1043
__out:
Linus Torvalds's avatar
Linus Torvalds committed
1044 1045 1046 1047 1048 1049
		spin_unlock_irqrestore(&ice->reg_lock, flags);
		return;
	}
	if (!force && is_pro_rate_locked(ice))
		goto __out;

1050
	old = inb(ICEMT(ice, RATE));
Linus Torvalds's avatar
Linus Torvalds committed
1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065
	if (!force && old == val)
		goto __out;
	outb(val, ICEMT(ice, RATE));
	spin_unlock_irqrestore(&ice->reg_lock, flags);

	if (ice->gpio.set_pro_rate)
		ice->gpio.set_pro_rate(ice, rate);
	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);
}

1066
static int snd_ice1712_playback_pro_prepare(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1067
{
1068
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

	ice->playback_pro_size = snd_pcm_lib_buffer_bytes(substream);
	spin_lock_irq(&ice->reg_lock);
	outl(substream->runtime->dma_addr, ICEMT(ice, PLAYBACK_ADDR));
	outw((ice->playback_pro_size >> 2) - 1, ICEMT(ice, PLAYBACK_SIZE));
	outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1, ICEMT(ice, PLAYBACK_COUNT));
	spin_unlock_irq(&ice->reg_lock);

	return 0;
}

1080 1081
static int snd_ice1712_playback_pro_hw_params(struct snd_pcm_substream *substream,
					      struct snd_pcm_hw_params *hw_params)
Linus Torvalds's avatar
Linus Torvalds committed
1082
{
1083
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1084 1085 1086 1087 1088

	snd_ice1712_set_pro_rate(ice, params_rate(hw_params), 0);
	return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
}

1089
static int snd_ice1712_capture_pro_prepare(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1090
{
1091
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101

	ice->capture_pro_size = snd_pcm_lib_buffer_bytes(substream);
	spin_lock_irq(&ice->reg_lock);
	outl(substream->runtime->dma_addr, ICEMT(ice, CAPTURE_ADDR));
	outw((ice->capture_pro_size >> 2) - 1, ICEMT(ice, CAPTURE_SIZE));
	outw((snd_pcm_lib_period_bytes(substream) >> 2) - 1, ICEMT(ice, CAPTURE_COUNT));
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

1102 1103
static int snd_ice1712_capture_pro_hw_params(struct snd_pcm_substream *substream,
					     struct snd_pcm_hw_params *hw_params)
Linus Torvalds's avatar
Linus Torvalds committed
1104
{
1105
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1106 1107 1108 1109 1110

	snd_ice1712_set_pro_rate(ice, params_rate(hw_params), 0);
	return snd_pcm_lib_malloc_pages(substream, params_buffer_bytes(hw_params));
}

1111
static snd_pcm_uframes_t snd_ice1712_playback_pro_pointer(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1112
{
1113
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1114 1115 1116 1117 1118
	size_t ptr;

	if (!(inl(ICEMT(ice, PLAYBACK_CONTROL)) & ICE1712_PLAYBACK_START))
		return 0;
	ptr = ice->playback_pro_size - (inw(ICEMT(ice, PLAYBACK_SIZE)) << 2);
1119
	ptr = bytes_to_frames(substream->runtime, ptr);
Linus Torvalds's avatar
Linus Torvalds committed
1120 1121
	if (ptr == substream->runtime->buffer_size)
		ptr = 0;
1122
	return ptr;
Linus Torvalds's avatar
Linus Torvalds committed
1123 1124
}

1125
static snd_pcm_uframes_t snd_ice1712_capture_pro_pointer(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1126
{
1127
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1128 1129 1130 1131 1132
	size_t ptr;

	if (!(inl(ICEMT(ice, PLAYBACK_CONTROL)) & ICE1712_CAPTURE_START_SHADOW))
		return 0;
	ptr = ice->capture_pro_size - (inw(ICEMT(ice, CAPTURE_SIZE)) << 2);
1133
	ptr = bytes_to_frames(substream->runtime, ptr);
Linus Torvalds's avatar
Linus Torvalds committed
1134 1135
	if (ptr == substream->runtime->buffer_size)
		ptr = 0;
1136
	return ptr;
Linus Torvalds's avatar
Linus Torvalds committed
1137 1138
}

1139
static const struct snd_pcm_hardware snd_ice1712_playback_pro = {
Linus Torvalds's avatar
Linus Torvalds committed
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
	.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_96000,
	.rate_min =		4000,
	.rate_max =		96000,
	.channels_min =		10,
	.channels_max =		10,
	.buffer_bytes_max =	(256*1024),
	.period_bytes_min =	10 * 4 * 2,
	.period_bytes_max =	131040,
	.periods_min =		1,
	.periods_max =		1024,
	.fifo_size =		0,
};

1158
static const struct snd_pcm_hardware snd_ice1712_capture_pro = {
Linus Torvalds's avatar
Linus Torvalds committed
1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
	.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_96000,
	.rate_min =		4000,
	.rate_max =		96000,
	.channels_min =		12,
	.channels_max =		12,
	.buffer_bytes_max =	(256*1024),
	.period_bytes_min =	12 * 4 * 2,
	.period_bytes_max =	131040,
	.periods_min =		1,
	.periods_max =		1024,
	.fifo_size =		0,
};

1177
static int snd_ice1712_playback_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1178
{
1179 1180
	struct snd_pcm_runtime *runtime = substream->runtime;
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1181 1182 1183 1184 1185 1186

	ice->playback_pro_substream = substream;
	runtime->hw = snd_ice1712_playback_pro;
	snd_pcm_set_sync(substream);
	snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
	snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
1187 1188 1189 1190
	if (is_pro_rate_locked(ice)) {
		runtime->hw.rate_min = PRO_RATE_DEFAULT;
		runtime->hw.rate_max = PRO_RATE_DEFAULT;
	}
Linus Torvalds's avatar
Linus Torvalds committed
1191 1192 1193 1194 1195 1196 1197

	if (ice->spdif.ops.open)
		ice->spdif.ops.open(ice, substream);

	return 0;
}

1198
static int snd_ice1712_capture_pro_open(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1199
{
1200 1201
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
	struct snd_pcm_runtime *runtime = substream->runtime;
Linus Torvalds's avatar
Linus Torvalds committed
1202 1203 1204 1205 1206 1207

	ice->capture_pro_substream = substream;
	runtime->hw = snd_ice1712_capture_pro;
	snd_pcm_set_sync(substream);
	snd_pcm_hw_constraint_msbits(runtime, 0, 32, 24);
	snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE, &hw_constraints_rates);
1208 1209 1210 1211 1212
	if (is_pro_rate_locked(ice)) {
		runtime->hw.rate_min = PRO_RATE_DEFAULT;
		runtime->hw.rate_max = PRO_RATE_DEFAULT;
	}

Linus Torvalds's avatar
Linus Torvalds committed
1213 1214 1215
	return 0;
}

1216
static int snd_ice1712_playback_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1217
{
1218
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228

	if (PRO_RATE_RESET)
		snd_ice1712_set_pro_rate(ice, PRO_RATE_DEFAULT, 0);
	ice->playback_pro_substream = NULL;
	if (ice->spdif.ops.close)
		ice->spdif.ops.close(ice, substream);

	return 0;
}

1229
static int snd_ice1712_capture_pro_close(struct snd_pcm_substream *substream)
Linus Torvalds's avatar
Linus Torvalds committed
1230
{
1231
	struct snd_ice1712 *ice = snd_pcm_substream_chip(substream);
Linus Torvalds's avatar
Linus Torvalds committed
1232 1233 1234 1235 1236 1237 1238

	if (PRO_RATE_RESET)
		snd_ice1712_set_pro_rate(ice, PRO_RATE_DEFAULT, 0);
	ice->capture_pro_substream = NULL;
	return 0;
}

1239
static struct snd_pcm_ops snd_ice1712_playback_pro_ops = {
Linus Torvalds's avatar
Linus Torvalds committed
1240 1241 1242 1243 1244 1245 1246 1247 1248 1249
	.open =		snd_ice1712_playback_pro_open,
	.close =	snd_ice1712_playback_pro_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_ice1712_playback_pro_hw_params,
	.hw_free =	snd_ice1712_hw_free,
	.prepare =	snd_ice1712_playback_pro_prepare,
	.trigger =	snd_ice1712_pro_trigger,
	.pointer =	snd_ice1712_playback_pro_pointer,
};

1250
static struct snd_pcm_ops snd_ice1712_capture_pro_ops = {
Linus Torvalds's avatar
Linus Torvalds committed
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260
	.open =		snd_ice1712_capture_pro_open,
	.close =	snd_ice1712_capture_pro_close,
	.ioctl =	snd_pcm_lib_ioctl,
	.hw_params =	snd_ice1712_capture_pro_hw_params,
	.hw_free =	snd_ice1712_hw_free,
	.prepare =	snd_ice1712_capture_pro_prepare,
	.trigger =	snd_ice1712_pro_trigger,
	.pointer =	snd_ice1712_capture_pro_pointer,
};

1261
static int snd_ice1712_pcm_profi(struct snd_ice1712 *ice, int device, struct snd_pcm **rpcm)
Linus Torvalds's avatar
Linus Torvalds committed
1262
{
1263
	struct snd_pcm *pcm;
Linus Torvalds's avatar
Linus Torvalds committed
1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
	int err;

	if (rpcm)
		*rpcm = NULL;
	err = snd_pcm_new(ice->card, "ICE1712 multi", device, 1, 1, &pcm);
	if (err < 0)
		return err;

	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ice1712_playback_pro_ops);
	snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ice1712_capture_pro_ops);

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

	snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV,
					      snd_dma_pci_data(ice->pci), 256*1024, 256*1024);

	ice->pcm_pro = pcm;
	if (rpcm)
		*rpcm = pcm;
1285

Linus Torvalds's avatar
Linus Torvalds committed
1286 1287 1288 1289 1290 1291 1292 1293 1294
	if (ice->cs8427) {
		/* assign channels to iec958 */
		err = snd_cs8427_iec958_build(ice->cs8427,
					      pcm->streams[0].substream,
					      pcm->streams[1].substream);
		if (err < 0)
			return err;
	}

1295 1296
	err = snd_ice1712_build_pro_mixer(ice);
	if (err < 0)
Linus Torvalds's avatar
Linus Torvalds committed
1297 1298 1299 1300 1301 1302 1303 1304
		return err;
	return 0;
}

/*
 *  Mixer section
 */

1305
static void snd_ice1712_update_volume(struct snd_ice1712 *ice, int index)
Linus Torvalds's avatar
Linus Torvalds committed
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
{
	unsigned int vol = ice->pro_volumes[index];
	unsigned short val = 0;

	val |= (vol & 0x8000) == 0 ? (96 - (vol & 0x7f)) : 0x7f;
	val |= ((vol & 0x80000000) == 0 ? (96 - ((vol >> 16) & 0x7f)) : 0x7f) << 8;
	outb(index, ICEMT(ice, MONITOR_INDEX));
	outw(val, ICEMT(ice, MONITOR_VOLUME));
}

1316
#define snd_ice1712_pro_mixer_switch_info	snd_ctl_boolean_stereo_info
Linus Torvalds's avatar
Linus Torvalds committed
1317

1318
static int snd_ice1712_pro_mixer_switch_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1319
{
1320
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1321 1322
	int priv_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) +
		kcontrol->private_value;
1323

Linus Torvalds's avatar
Linus Torvalds committed
1324
	spin_lock_irq(&ice->reg_lock);
1325 1326 1327 1328
	ucontrol->value.integer.value[0] =
		!((ice->pro_volumes[priv_idx] >> 15) & 1);
	ucontrol->value.integer.value[1] =
		!((ice->pro_volumes[priv_idx] >> 31) & 1);
Linus Torvalds's avatar
Linus Torvalds committed
1329 1330 1331 1332
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

1333
static int snd_ice1712_pro_mixer_switch_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1334
{
1335
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1336 1337
	int priv_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) +
		kcontrol->private_value;
Linus Torvalds's avatar
Linus Torvalds committed
1338 1339 1340 1341 1342
	unsigned int nval, change;

	nval = (ucontrol->value.integer.value[0] ? 0 : 0x00008000) |
	       (ucontrol->value.integer.value[1] ? 0 : 0x80000000);
	spin_lock_irq(&ice->reg_lock);
1343 1344 1345 1346
	nval |= ice->pro_volumes[priv_idx] & ~0x80008000;
	change = nval != ice->pro_volumes[priv_idx];
	ice->pro_volumes[priv_idx] = nval;
	snd_ice1712_update_volume(ice, priv_idx);
Linus Torvalds's avatar
Linus Torvalds committed
1347 1348 1349 1350
	spin_unlock_irq(&ice->reg_lock);
	return change;
}

1351
static int snd_ice1712_pro_mixer_volume_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
1352 1353 1354 1355 1356 1357 1358 1359
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 2;
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = 96;
	return 0;
}

1360
static int snd_ice1712_pro_mixer_volume_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1361
{
1362
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1363 1364
	int priv_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) +
		kcontrol->private_value;
1365

Linus Torvalds's avatar
Linus Torvalds committed
1366
	spin_lock_irq(&ice->reg_lock);
1367 1368 1369 1370
	ucontrol->value.integer.value[0] =
		(ice->pro_volumes[priv_idx] >> 0) & 127;
	ucontrol->value.integer.value[1] =
		(ice->pro_volumes[priv_idx] >> 16) & 127;
Linus Torvalds's avatar
Linus Torvalds committed
1371 1372 1373 1374
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

1375
static int snd_ice1712_pro_mixer_volume_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1376
{
1377
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1378 1379
	int priv_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id) +
		kcontrol->private_value;
Linus Torvalds's avatar
Linus Torvalds committed
1380 1381 1382 1383 1384
	unsigned int nval, change;

	nval = (ucontrol->value.integer.value[0] & 127) |
	       ((ucontrol->value.integer.value[1] & 127) << 16);
	spin_lock_irq(&ice->reg_lock);
1385 1386 1387 1388
	nval |= ice->pro_volumes[priv_idx] & ~0x007f007f;
	change = nval != ice->pro_volumes[priv_idx];
	ice->pro_volumes[priv_idx] = nval;
	snd_ice1712_update_volume(ice, priv_idx);
Linus Torvalds's avatar
Linus Torvalds committed
1389 1390 1391 1392
	spin_unlock_irq(&ice->reg_lock);
	return change;
}

1393
static const DECLARE_TLV_DB_SCALE(db_scale_playback, -14400, 150, 0);
Linus Torvalds's avatar
Linus Torvalds committed
1394

1395
static struct snd_kcontrol_new snd_ice1712_multi_playback_ctrls[] = {
Linus Torvalds's avatar
Linus Torvalds committed
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
	{
		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
		.name = "Multi Playback Switch",
		.info = snd_ice1712_pro_mixer_switch_info,
		.get = snd_ice1712_pro_mixer_switch_get,
		.put = snd_ice1712_pro_mixer_switch_put,
		.private_value = 0,
		.count = 10,
	},
	{
		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1407 1408
		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
			   SNDRV_CTL_ELEM_ACCESS_TLV_READ),
Linus Torvalds's avatar
Linus Torvalds committed
1409 1410 1411 1412 1413 1414
		.name = "Multi Playback Volume",
		.info = snd_ice1712_pro_mixer_volume_info,
		.get = snd_ice1712_pro_mixer_volume_get,
		.put = snd_ice1712_pro_mixer_volume_put,
		.private_value = 0,
		.count = 10,
1415
		.tlv = { .p = db_scale_playback }
Linus Torvalds's avatar
Linus Torvalds committed
1416 1417 1418
	},
};

1419
static struct snd_kcontrol_new snd_ice1712_multi_capture_analog_switch = {
Linus Torvalds's avatar
Linus Torvalds committed
1420 1421 1422 1423 1424 1425 1426 1427
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "H/W Multi Capture Switch",
	.info = snd_ice1712_pro_mixer_switch_info,
	.get = snd_ice1712_pro_mixer_switch_get,
	.put = snd_ice1712_pro_mixer_switch_put,
	.private_value = 10,
};

1428
static struct snd_kcontrol_new snd_ice1712_multi_capture_spdif_switch = {
Linus Torvalds's avatar
Linus Torvalds committed
1429
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1430
	.name = SNDRV_CTL_NAME_IEC958("Multi ", CAPTURE, SWITCH),
Linus Torvalds's avatar
Linus Torvalds committed
1431 1432 1433 1434 1435 1436 1437
	.info = snd_ice1712_pro_mixer_switch_info,
	.get = snd_ice1712_pro_mixer_switch_get,
	.put = snd_ice1712_pro_mixer_switch_put,
	.private_value = 18,
	.count = 2,
};

1438
static struct snd_kcontrol_new snd_ice1712_multi_capture_analog_volume = {
Linus Torvalds's avatar
Linus Torvalds committed
1439
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1440 1441
	.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
		   SNDRV_CTL_ELEM_ACCESS_TLV_READ),
Linus Torvalds's avatar
Linus Torvalds committed
1442 1443 1444 1445 1446
	.name = "H/W Multi Capture Volume",
	.info = snd_ice1712_pro_mixer_volume_info,
	.get = snd_ice1712_pro_mixer_volume_get,
	.put = snd_ice1712_pro_mixer_volume_put,
	.private_value = 10,
1447
	.tlv = { .p = db_scale_playback }
Linus Torvalds's avatar
Linus Torvalds committed
1448 1449
};

1450
static struct snd_kcontrol_new snd_ice1712_multi_capture_spdif_volume = {
Linus Torvalds's avatar
Linus Torvalds committed
1451
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1452
	.name = SNDRV_CTL_NAME_IEC958("Multi ", CAPTURE, VOLUME),
Linus Torvalds's avatar
Linus Torvalds committed
1453 1454 1455 1456 1457 1458 1459
	.info = snd_ice1712_pro_mixer_volume_info,
	.get = snd_ice1712_pro_mixer_volume_get,
	.put = snd_ice1712_pro_mixer_volume_put,
	.private_value = 18,
	.count = 2,
};

1460
static int snd_ice1712_build_pro_mixer(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
1461
{
1462
	struct snd_card *card = ice->card;
Linus Torvalds's avatar
Linus Torvalds committed
1463 1464 1465 1466 1467 1468 1469 1470 1471
	unsigned int idx;
	int err;

	/* multi-channel mixer */
	for (idx = 0; idx < ARRAY_SIZE(snd_ice1712_multi_playback_ctrls); idx++) {
		err = snd_ctl_add(card, snd_ctl_new1(&snd_ice1712_multi_playback_ctrls[idx], ice));
		if (err < 0)
			return err;
	}
1472

Linus Torvalds's avatar
Linus Torvalds committed
1473
	if (ice->num_total_adcs > 0) {
1474
		struct snd_kcontrol_new tmp = snd_ice1712_multi_capture_analog_switch;
Linus Torvalds's avatar
Linus Torvalds committed
1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
		tmp.count = ice->num_total_adcs;
		err = snd_ctl_add(card, snd_ctl_new1(&tmp, ice));
		if (err < 0)
			return err;
	}

	err = snd_ctl_add(card, snd_ctl_new1(&snd_ice1712_multi_capture_spdif_switch, ice));
	if (err < 0)
		return err;

	if (ice->num_total_adcs > 0) {
1486
		struct snd_kcontrol_new tmp = snd_ice1712_multi_capture_analog_volume;
Linus Torvalds's avatar
Linus Torvalds committed
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
		tmp.count = ice->num_total_adcs;
		err = snd_ctl_add(card, snd_ctl_new1(&tmp, ice));
		if (err < 0)
			return err;
	}

	err = snd_ctl_add(card, snd_ctl_new1(&snd_ice1712_multi_capture_spdif_volume, ice));
	if (err < 0)
		return err;

	/* initialize volumes */
	for (idx = 0; idx < 10; idx++) {
		ice->pro_volumes[idx] = 0x80008000;	/* mute */
		snd_ice1712_update_volume(ice, idx);
	}
	for (idx = 10; idx < 10 + ice->num_total_adcs; idx++) {
		ice->pro_volumes[idx] = 0x80008000;	/* mute */
		snd_ice1712_update_volume(ice, idx);
	}
	for (idx = 18; idx < 20; idx++) {
		ice->pro_volumes[idx] = 0x80008000;	/* mute */
		snd_ice1712_update_volume(ice, idx);
	}
	return 0;
}

1513
static void snd_ice1712_mixer_free_ac97(struct snd_ac97 *ac97)
Linus Torvalds's avatar
Linus Torvalds committed
1514
{
1515
	struct snd_ice1712 *ice = ac97->private_data;
Linus Torvalds's avatar
Linus Torvalds committed
1516 1517 1518
	ice->ac97 = NULL;
}

1519
static int snd_ice1712_ac97_mixer(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
1520 1521
{
	int err, bus_num = 0;
1522 1523 1524
	struct snd_ac97_template ac97;
	struct snd_ac97_bus *pbus;
	static struct snd_ac97_bus_ops con_ops = {
Linus Torvalds's avatar
Linus Torvalds committed
1525 1526 1527
		.write = snd_ice1712_ac97_write,
		.read = snd_ice1712_ac97_read,
	};
1528
	static struct snd_ac97_bus_ops pro_ops = {
Linus Torvalds's avatar
Linus Torvalds committed
1529 1530 1531 1532 1533
		.write = snd_ice1712_pro_ac97_write,
		.read = snd_ice1712_pro_ac97_read,
	};

	if (ice_has_con_ac97(ice)) {
1534 1535
		err = snd_ac97_bus(ice->card, bus_num++, &con_ops, NULL, &pbus);
		if (err < 0)
Linus Torvalds's avatar
Linus Torvalds committed
1536 1537 1538 1539
			return err;
		memset(&ac97, 0, sizeof(ac97));
		ac97.private_data = ice;
		ac97.private_free = snd_ice1712_mixer_free_ac97;
1540 1541
		err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
		if (err < 0)
Linus Torvalds's avatar
Linus Torvalds committed
1542 1543
			printk(KERN_WARNING "ice1712: cannot initialize ac97 for consumer, skipped\n");
		else {
1544 1545
			err = snd_ctl_add(ice->card, snd_ctl_new1(&snd_ice1712_mixer_digmix_route_ac97, ice));
			if (err < 0)
Linus Torvalds's avatar
Linus Torvalds committed
1546 1547 1548 1549 1550
				return err;
			return 0;
		}
	}

1551 1552 1553
	if (!(ice->eeprom.data[ICE_EEP1_ACLINK] & ICE1712_CFG_PRO_I2S)) {
		err = snd_ac97_bus(ice->card, bus_num, &pro_ops, NULL, &pbus);
		if (err < 0)
Linus Torvalds's avatar
Linus Torvalds committed
1554 1555 1556 1557
			return err;
		memset(&ac97, 0, sizeof(ac97));
		ac97.private_data = ice;
		ac97.private_free = snd_ice1712_mixer_free_ac97;
1558 1559
		err = snd_ac97_mixer(pbus, &ac97, &ice->ac97);
		if (err < 0)
Linus Torvalds's avatar
Linus Torvalds committed
1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
			printk(KERN_WARNING "ice1712: cannot initialize pro ac97, skipped\n");
		else
			return 0;
	}
	/* I2S mixer only */
	strcat(ice->card->mixername, "ICE1712 - multitrack");
	return 0;
}

/*
 *
 */

1573
static inline unsigned int eeprom_double(struct snd_ice1712 *ice, int idx)
Linus Torvalds's avatar
Linus Torvalds committed
1574 1575 1576 1577
{
	return (unsigned int)ice->eeprom.data[idx] | ((unsigned int)ice->eeprom.data[idx + 1] << 8);
}

1578
static void snd_ice1712_proc_read(struct snd_info_entry *entry,
1579
				  struct snd_info_buffer *buffer)
Linus Torvalds's avatar
Linus Torvalds committed
1580
{
1581
	struct snd_ice1712 *ice = entry->private_data;
Linus Torvalds's avatar
Linus Torvalds committed
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612
	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);
	snd_iprintf(buffer, "  Codec            : 0x%x\n", ice->eeprom.data[ICE_EEP1_CODEC]);
	snd_iprintf(buffer, "  ACLink           : 0x%x\n", ice->eeprom.data[ICE_EEP1_ACLINK]);
	snd_iprintf(buffer, "  I2S ID           : 0x%x\n", ice->eeprom.data[ICE_EEP1_I2SID]);
	snd_iprintf(buffer, "  S/PDIF           : 0x%x\n", ice->eeprom.data[ICE_EEP1_SPDIF]);
	snd_iprintf(buffer, "  GPIO mask        : 0x%x\n", ice->eeprom.gpiomask);
	snd_iprintf(buffer, "  GPIO state       : 0x%x\n", ice->eeprom.gpiostate);
	snd_iprintf(buffer, "  GPIO direction   : 0x%x\n", ice->eeprom.gpiodir);
	snd_iprintf(buffer, "  AC'97 main       : 0x%x\n", eeprom_double(ice, ICE_EEP1_AC97_MAIN_LO));
	snd_iprintf(buffer, "  AC'97 pcm        : 0x%x\n", eeprom_double(ice, ICE_EEP1_AC97_PCM_LO));
	snd_iprintf(buffer, "  AC'97 record     : 0x%x\n", eeprom_double(ice, ICE_EEP1_AC97_REC_LO));
	snd_iprintf(buffer, "  AC'97 record src : 0x%x\n", ice->eeprom.data[ICE_EEP1_AC97_RECSRC]);
	for (idx = 0; idx < 4; idx++)
		snd_iprintf(buffer, "  DAC ID #%i        : 0x%x\n", idx, ice->eeprom.data[ICE_EEP1_DAC_ID + idx]);
	for (idx = 0; idx < 4; idx++)
		snd_iprintf(buffer, "  ADC ID #%i        : 0x%x\n", idx, ice->eeprom.data[ICE_EEP1_ADC_ID + idx]);
	for (idx = 0x1c; idx < ice->eeprom.size; idx++)
		snd_iprintf(buffer, "  Extra #%02i        : 0x%x\n", idx, ice->eeprom.data[idx]);

	snd_iprintf(buffer, "\nRegisters:\n");
	snd_iprintf(buffer, "  PSDOUT03         : 0x%04x\n", (unsigned)inw(ICEMT(ice, ROUTE_PSDOUT03)));
	snd_iprintf(buffer, "  CAPTURE          : 0x%08x\n", inl(ICEMT(ice, ROUTE_CAPTURE)));
	snd_iprintf(buffer, "  SPDOUT           : 0x%04x\n", (unsigned)inw(ICEMT(ice, ROUTE_SPDOUT)));
	snd_iprintf(buffer, "  RATE             : 0x%02x\n", (unsigned)inb(ICEMT(ice, RATE)));
1613
	snd_iprintf(buffer, "  GPIO_DATA        : 0x%02x\n", (unsigned)snd_ice1712_get_gpio_data(ice));
1614
	snd_iprintf(buffer, "  GPIO_WRITE_MASK  : 0x%02x\n", (unsigned)snd_ice1712_read(ice, ICE1712_IREG_GPIO_WRITE_MASK));
1615
	snd_iprintf(buffer, "  GPIO_DIRECTION   : 0x%02x\n", (unsigned)snd_ice1712_read(ice, ICE1712_IREG_GPIO_DIRECTION));
Linus Torvalds's avatar
Linus Torvalds committed
1616 1617
}

1618
static void snd_ice1712_proc_init(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
1619
{
1620
	struct snd_info_entry *entry;
Linus Torvalds's avatar
Linus Torvalds committed
1621

1622
	if (!snd_card_proc_new(ice->card, "ice1712", &entry))
1623
		snd_info_set_text_ops(entry, ice, snd_ice1712_proc_read);
Linus Torvalds's avatar
Linus Torvalds committed
1624 1625 1626 1627 1628 1629
}

/*
 *
 */

1630 1631
static int snd_ice1712_eeprom_info(struct snd_kcontrol *kcontrol,
				   struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
1632 1633
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
1634
	uinfo->count = sizeof(struct snd_ice1712_eeprom);
Linus Torvalds's avatar
Linus Torvalds committed
1635 1636 1637
	return 0;
}

1638 1639
static int snd_ice1712_eeprom_get(struct snd_kcontrol *kcontrol,
				  struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1640
{
1641
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1642

Linus Torvalds's avatar
Linus Torvalds committed
1643 1644 1645 1646
	memcpy(ucontrol->value.bytes.data, &ice->eeprom, sizeof(ice->eeprom));
	return 0;
}

1647
static struct snd_kcontrol_new snd_ice1712_eeprom = {
Linus Torvalds's avatar
Linus Torvalds committed
1648 1649 1650 1651 1652 1653 1654 1655 1656
	.iface = SNDRV_CTL_ELEM_IFACE_CARD,
	.name = "ICE1712 EEPROM",
	.access = SNDRV_CTL_ELEM_ACCESS_READ,
	.info = snd_ice1712_eeprom_info,
	.get = snd_ice1712_eeprom_get
};

/*
 */
1657 1658
static int snd_ice1712_spdif_info(struct snd_kcontrol *kcontrol,
				  struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
1659 1660 1661 1662 1663 1664
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
	uinfo->count = 1;
	return 0;
}

1665 1666
static int snd_ice1712_spdif_default_get(struct snd_kcontrol *kcontrol,
					 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1667
{
1668
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1669
	if (ice->spdif.ops.default_get)
1670
		ice->spdif.ops.default_get(ice, ucontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1671 1672 1673
	return 0;
}

1674 1675
static int snd_ice1712_spdif_default_put(struct snd_kcontrol *kcontrol,
					 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1676
{
1677
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1678 1679 1680 1681 1682
	if (ice->spdif.ops.default_put)
		return ice->spdif.ops.default_put(ice, ucontrol);
	return 0;
}

1683
static struct snd_kcontrol_new snd_ice1712_spdif_default =
Linus Torvalds's avatar
Linus Torvalds committed
1684 1685
{
	.iface =	SNDRV_CTL_ELEM_IFACE_PCM,
1686
	.name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds's avatar
Linus Torvalds committed
1687 1688 1689 1690 1691
	.info =		snd_ice1712_spdif_info,
	.get =		snd_ice1712_spdif_default_get,
	.put =		snd_ice1712_spdif_default_put
};

1692 1693
static int snd_ice1712_spdif_maskc_get(struct snd_kcontrol *kcontrol,
				       struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1694
{
1695
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713
	if (ice->spdif.ops.default_get) {
		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;
	} else {
		ucontrol->value.iec958.status[0] = 0xff;
		ucontrol->value.iec958.status[1] = 0xff;
		ucontrol->value.iec958.status[2] = 0xff;
		ucontrol->value.iec958.status[3] = 0xff;
		ucontrol->value.iec958.status[4] = 0xff;
	}
	return 0;
}

1714 1715
static int snd_ice1712_spdif_maskp_get(struct snd_kcontrol *kcontrol,
				       struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1716
{
1717
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
	if (ice->spdif.ops.default_get) {
		ucontrol->value.iec958.status[0] = IEC958_AES0_NONAUDIO |
						     IEC958_AES0_PROFESSIONAL |
						     IEC958_AES0_PRO_FS |
						     IEC958_AES0_PRO_EMPHASIS;
		ucontrol->value.iec958.status[1] = IEC958_AES1_PRO_MODE;
	} else {
		ucontrol->value.iec958.status[0] = 0xff;
		ucontrol->value.iec958.status[1] = 0xff;
		ucontrol->value.iec958.status[2] = 0xff;
		ucontrol->value.iec958.status[3] = 0xff;
		ucontrol->value.iec958.status[4] = 0xff;
	}
	return 0;
}

1734
static struct snd_kcontrol_new snd_ice1712_spdif_maskc =
Linus Torvalds's avatar
Linus Torvalds committed
1735 1736
{
	.access =	SNDRV_CTL_ELEM_ACCESS_READ,
1737
	.iface =	SNDRV_CTL_ELEM_IFACE_PCM,
1738
	.name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds's avatar
Linus Torvalds committed
1739 1740 1741 1742
	.info =		snd_ice1712_spdif_info,
	.get =		snd_ice1712_spdif_maskc_get,
};

1743
static struct snd_kcontrol_new snd_ice1712_spdif_maskp =
Linus Torvalds's avatar
Linus Torvalds committed
1744 1745
{
	.access =	SNDRV_CTL_ELEM_ACCESS_READ,
1746
	.iface =	SNDRV_CTL_ELEM_IFACE_PCM,
1747
	.name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds's avatar
Linus Torvalds committed
1748 1749 1750 1751
	.info =		snd_ice1712_spdif_info,
	.get =		snd_ice1712_spdif_maskp_get,
};

1752 1753
static int snd_ice1712_spdif_stream_get(struct snd_kcontrol *kcontrol,
					struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1754
{
1755
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1756 1757 1758 1759 1760
	if (ice->spdif.ops.stream_get)
		ice->spdif.ops.stream_get(ice, ucontrol);
	return 0;
}

1761 1762
static int snd_ice1712_spdif_stream_put(struct snd_kcontrol *kcontrol,
					struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1763
{
1764
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1765 1766 1767 1768 1769
	if (ice->spdif.ops.stream_put)
		return ice->spdif.ops.stream_put(ice, ucontrol);
	return 0;
}

1770
static struct snd_kcontrol_new snd_ice1712_spdif_stream =
Linus Torvalds's avatar
Linus Torvalds committed
1771
{
1772 1773
	.access =	(SNDRV_CTL_ELEM_ACCESS_READWRITE |
			 SNDRV_CTL_ELEM_ACCESS_INACTIVE),
Linus Torvalds's avatar
Linus Torvalds committed
1774
	.iface =	SNDRV_CTL_ELEM_IFACE_PCM,
1775
	.name =         SNDRV_CTL_NAME_IEC958("", PLAYBACK, PCM_STREAM),
Linus Torvalds's avatar
Linus Torvalds committed
1776 1777 1778 1779 1780
	.info =		snd_ice1712_spdif_info,
	.get =		snd_ice1712_spdif_stream_get,
	.put =		snd_ice1712_spdif_stream_put
};

1781 1782
int snd_ice1712_gpio_get(struct snd_kcontrol *kcontrol,
			 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1783
{
1784
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1785 1786
	unsigned char mask = kcontrol->private_value & 0xff;
	int invert = (kcontrol->private_value & (1<<24)) ? 1 : 0;
1787

Linus Torvalds's avatar
Linus Torvalds committed
1788
	snd_ice1712_save_gpio_status(ice);
1789 1790
	ucontrol->value.integer.value[0] =
		(snd_ice1712_gpio_read(ice) & mask ? 1 : 0) ^ invert;
Linus Torvalds's avatar
Linus Torvalds committed
1791 1792 1793 1794
	snd_ice1712_restore_gpio_status(ice);
	return 0;
}

1795 1796
int snd_ice1712_gpio_put(struct snd_kcontrol *kcontrol,
			 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1797
{
1798
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817
	unsigned char mask = 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] ? mask : 0) ^ invert;
	snd_ice1712_save_gpio_status(ice);
	val = snd_ice1712_gpio_read(ice);
	nval |= val & ~mask;
	if (val != nval)
		snd_ice1712_gpio_write(ice, nval);
	snd_ice1712_restore_gpio_status(ice);
	return val != nval;
}

/*
 *  rate
 */
1818 1819
static int snd_ice1712_pro_internal_clock_info(struct snd_kcontrol *kcontrol,
					       struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
1820
{
1821
	static const char * const texts[] = {
Linus Torvalds's avatar
Linus Torvalds committed
1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
		"8000",		/* 0: 6 */
		"9600",		/* 1: 3 */
		"11025",	/* 2: 10 */
		"12000",	/* 3: 2 */
		"16000",	/* 4: 5 */
		"22050",	/* 5: 9 */
		"24000",	/* 6: 1 */
		"32000",	/* 7: 4 */
		"44100",	/* 8: 8 */
		"48000",	/* 9: 0 */
		"64000",	/* 10: 15 */
		"88200",	/* 11: 11 */
		"96000",	/* 12: 7 */
		"IEC958 Input",	/* 13: -- */
	};
	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
	uinfo->count = 1;
	uinfo->value.enumerated.items = 14;
	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;
}

1846 1847
static int snd_ice1712_pro_internal_clock_get(struct snd_kcontrol *kcontrol,
					      struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1848
{
1849
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1850
	static const unsigned char xlate[16] = {
Linus Torvalds's avatar
Linus Torvalds committed
1851 1852 1853
		9, 6, 3, 1, 7, 4, 0, 12, 8, 5, 2, 11, 255, 255, 255, 10
	};
	unsigned char val;
1854

Linus Torvalds's avatar
Linus Torvalds committed
1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869
	spin_lock_irq(&ice->reg_lock);
	if (is_spdif_master(ice)) {
		ucontrol->value.enumerated.item[0] = 13;
	} else {
		val = xlate[inb(ICEMT(ice, RATE)) & 15];
		if (val == 255) {
			snd_BUG();
			val = 0;
		}
		ucontrol->value.enumerated.item[0] = val;
	}
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

1870 1871
static int snd_ice1712_pro_internal_clock_put(struct snd_kcontrol *kcontrol,
					      struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1872
{
1873
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1874
	static const unsigned int xrate[13] = {
1875
		8000, 9600, 11025, 12000, 16000, 22050, 24000,
Linus Torvalds's avatar
Linus Torvalds committed
1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893
		32000, 44100, 48000, 64000, 88200, 96000
	};
	unsigned char oval;
	int change = 0;

	spin_lock_irq(&ice->reg_lock);
	oval = inb(ICEMT(ice, RATE));
	if (ucontrol->value.enumerated.item[0] == 13) {
		outb(oval | ICE1712_SPDIF_MASTER, ICEMT(ice, RATE));
	} else {
		PRO_RATE_DEFAULT = xrate[ucontrol->value.integer.value[0] % 13];
		spin_unlock_irq(&ice->reg_lock);
		snd_ice1712_set_pro_rate(ice, PRO_RATE_DEFAULT, 1);
		spin_lock_irq(&ice->reg_lock);
	}
	change = inb(ICEMT(ice, RATE)) != oval;
	spin_unlock_irq(&ice->reg_lock);

1894
	if ((oval & ICE1712_SPDIF_MASTER) !=
1895
	    (inb(ICEMT(ice, RATE)) & ICE1712_SPDIF_MASTER))
1896
		snd_ice1712_set_input_clock_source(ice, is_spdif_master(ice));
Linus Torvalds's avatar
Linus Torvalds committed
1897 1898 1899 1900

	return change;
}

1901
static struct snd_kcontrol_new snd_ice1712_pro_internal_clock = {
Linus Torvalds's avatar
Linus Torvalds committed
1902 1903 1904 1905 1906 1907 1908
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Internal Clock",
	.info = snd_ice1712_pro_internal_clock_info,
	.get = snd_ice1712_pro_internal_clock_get,
	.put = snd_ice1712_pro_internal_clock_put
};

1909 1910
static int snd_ice1712_pro_internal_clock_default_info(struct snd_kcontrol *kcontrol,
						       struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
1911
{
1912
	static const char * const texts[] = {
Linus Torvalds's avatar
Linus Torvalds committed
1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925
		"8000",		/* 0: 6 */
		"9600",		/* 1: 3 */
		"11025",	/* 2: 10 */
		"12000",	/* 3: 2 */
		"16000",	/* 4: 5 */
		"22050",	/* 5: 9 */
		"24000",	/* 6: 1 */
		"32000",	/* 7: 4 */
		"44100",	/* 8: 8 */
		"48000",	/* 9: 0 */
		"64000",	/* 10: 15 */
		"88200",	/* 11: 11 */
		"96000",	/* 12: 7 */
1926
		/* "IEC958 Input",	13: -- */
Linus Torvalds's avatar
Linus Torvalds committed
1927 1928 1929 1930 1931 1932 1933 1934 1935 1936
	};
	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
	uinfo->count = 1;
	uinfo->value.enumerated.items = 13;
	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;
}

1937 1938
static int snd_ice1712_pro_internal_clock_default_get(struct snd_kcontrol *kcontrol,
						      struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1939 1940
{
	int val;
1941
	static const unsigned int xrate[13] = {
1942
		8000, 9600, 11025, 12000, 16000, 22050, 24000,
Linus Torvalds's avatar
Linus Torvalds committed
1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954
		32000, 44100, 48000, 64000, 88200, 96000
	};

	for (val = 0; val < 13; val++) {
		if (xrate[val] == PRO_RATE_DEFAULT)
			break;
	}

	ucontrol->value.enumerated.item[0] = val;
	return 0;
}

1955 1956
static int snd_ice1712_pro_internal_clock_default_put(struct snd_kcontrol *kcontrol,
						      struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1957
{
1958
	static const unsigned int xrate[13] = {
1959
		8000, 9600, 11025, 12000, 16000, 22050, 24000,
Linus Torvalds's avatar
Linus Torvalds committed
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
		32000, 44100, 48000, 64000, 88200, 96000
	};
	unsigned char oval;
	int change = 0;

	oval = PRO_RATE_DEFAULT;
	PRO_RATE_DEFAULT = xrate[ucontrol->value.integer.value[0] % 13];
	change = PRO_RATE_DEFAULT != oval;

	return change;
}

1972
static struct snd_kcontrol_new snd_ice1712_pro_internal_clock_default = {
Linus Torvalds's avatar
Linus Torvalds committed
1973 1974 1975 1976 1977 1978 1979
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Internal Clock Default",
	.info = snd_ice1712_pro_internal_clock_default_info,
	.get = snd_ice1712_pro_internal_clock_default_get,
	.put = snd_ice1712_pro_internal_clock_default_put
};

1980
#define snd_ice1712_pro_rate_locking_info	snd_ctl_boolean_mono_info
Linus Torvalds's avatar
Linus Torvalds committed
1981

1982 1983
static int snd_ice1712_pro_rate_locking_get(struct snd_kcontrol *kcontrol,
					    struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1984 1985 1986 1987 1988
{
	ucontrol->value.integer.value[0] = PRO_RATE_LOCKED;
	return 0;
}

1989 1990
static int snd_ice1712_pro_rate_locking_put(struct snd_kcontrol *kcontrol,
					    struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
1991
{
1992
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
1993 1994 1995 1996 1997 1998 1999 2000 2001 2002
	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;
}

2003
static struct snd_kcontrol_new snd_ice1712_pro_rate_locking = {
Linus Torvalds's avatar
Linus Torvalds committed
2004 2005 2006 2007 2008 2009 2010
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Rate Locking",
	.info = snd_ice1712_pro_rate_locking_info,
	.get = snd_ice1712_pro_rate_locking_get,
	.put = snd_ice1712_pro_rate_locking_put
};

2011
#define snd_ice1712_pro_rate_reset_info		snd_ctl_boolean_mono_info
Linus Torvalds's avatar
Linus Torvalds committed
2012

2013 2014
static int snd_ice1712_pro_rate_reset_get(struct snd_kcontrol *kcontrol,
					  struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2015 2016 2017 2018 2019
{
	ucontrol->value.integer.value[0] = PRO_RATE_RESET;
	return 0;
}

2020 2021
static int snd_ice1712_pro_rate_reset_put(struct snd_kcontrol *kcontrol,
					  struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2022
{
2023
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
	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;
}

2034
static struct snd_kcontrol_new snd_ice1712_pro_rate_reset = {
Linus Torvalds's avatar
Linus Torvalds committed
2035 2036 2037 2038 2039 2040 2041 2042 2043 2044
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Rate Reset",
	.info = snd_ice1712_pro_rate_reset_info,
	.get = snd_ice1712_pro_rate_reset_get,
	.put = snd_ice1712_pro_rate_reset_put
};

/*
 * routing
 */
2045 2046
static int snd_ice1712_pro_route_info(struct snd_kcontrol *kcontrol,
				      struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
2047
{
2048
	static const char * const texts[] = {
Linus Torvalds's avatar
Linus Torvalds committed
2049 2050 2051 2052 2053 2054
		"PCM Out", /* 0 */
		"H/W In 0", "H/W In 1", "H/W In 2", "H/W In 3", /* 1-4 */
		"H/W In 4", "H/W In 5", "H/W In 6", "H/W In 7", /* 5-8 */
		"IEC958 In L", "IEC958 In R", /* 9-10 */
		"Digital Mixer", /* 11 - optional */
	};
2055

Linus Torvalds's avatar
Linus Torvalds committed
2056 2057
	uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
	uinfo->count = 1;
2058 2059
	uinfo->value.enumerated.items =
		snd_ctl_get_ioffidx(kcontrol, &uinfo->id) < 2 ? 12 : 11;
Linus Torvalds's avatar
Linus Torvalds committed
2060 2061 2062 2063 2064 2065
	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;
}

2066 2067
static int snd_ice1712_pro_route_analog_get(struct snd_kcontrol *kcontrol,
					    struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2068
{
2069
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
	unsigned int val, cval;

	spin_lock_irq(&ice->reg_lock);
	val = inw(ICEMT(ice, ROUTE_PSDOUT03));
	cval = inl(ICEMT(ice, ROUTE_CAPTURE));
	spin_unlock_irq(&ice->reg_lock);

	val >>= ((idx % 2) * 8) + ((idx / 2) * 2);
	val &= 3;
	cval >>= ((idx / 2) * 8) + ((idx % 2) * 4);
	if (val == 1 && idx < 2)
		ucontrol->value.enumerated.item[0] = 11;
	else if (val == 2)
		ucontrol->value.enumerated.item[0] = (cval & 7) + 1;
	else if (val == 3)
		ucontrol->value.enumerated.item[0] = ((cval >> 3) & 1) + 9;
	else
		ucontrol->value.enumerated.item[0] = 0;
	return 0;
}

2092 2093
static int snd_ice1712_pro_route_analog_put(struct snd_kcontrol *kcontrol,
					    struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2094
{
2095
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
2096 2097 2098
	int change, shift;
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
	unsigned int val, old_val, nval;
2099

Linus Torvalds's avatar
Linus Torvalds committed
2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141
	/* update PSDOUT */
	if (ucontrol->value.enumerated.item[0] >= 11)
		nval = idx < 2 ? 1 : 0; /* dig mixer (or pcm) */
	else if (ucontrol->value.enumerated.item[0] >= 9)
		nval = 3; /* spdif in */
	else if (ucontrol->value.enumerated.item[0] >= 1)
		nval = 2; /* analog in */
	else
		nval = 0; /* pcm */
	shift = ((idx % 2) * 8) + ((idx / 2) * 2);
	spin_lock_irq(&ice->reg_lock);
	val = old_val = inw(ICEMT(ice, ROUTE_PSDOUT03));
	val &= ~(0x03 << shift);
	val |= nval << shift;
	change = val != old_val;
	if (change)
		outw(val, ICEMT(ice, ROUTE_PSDOUT03));
	spin_unlock_irq(&ice->reg_lock);
	if (nval < 2) /* dig mixer of pcm */
		return change;

	/* update CAPTURE */
	spin_lock_irq(&ice->reg_lock);
	val = old_val = inl(ICEMT(ice, ROUTE_CAPTURE));
	shift = ((idx / 2) * 8) + ((idx % 2) * 4);
	if (nval == 2) { /* analog in */
		nval = ucontrol->value.enumerated.item[0] - 1;
		val &= ~(0x07 << shift);
		val |= nval << shift;
	} else { /* spdif in */
		nval = (ucontrol->value.enumerated.item[0] - 9) << 3;
		val &= ~(0x08 << shift);
		val |= nval << shift;
	}
	if (val != old_val) {
		change = 1;
		outl(val, ICEMT(ice, ROUTE_CAPTURE));
	}
	spin_unlock_irq(&ice->reg_lock);
	return change;
}

2142 2143
static int snd_ice1712_pro_route_spdif_get(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2144
{
2145
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
	unsigned int val, cval;
	val = inw(ICEMT(ice, ROUTE_SPDOUT));
	cval = (val >> (idx * 4 + 8)) & 0x0f;
	val = (val >> (idx * 2)) & 0x03;
	if (val == 1)
		ucontrol->value.enumerated.item[0] = 11;
	else if (val == 2)
		ucontrol->value.enumerated.item[0] = (cval & 7) + 1;
	else if (val == 3)
		ucontrol->value.enumerated.item[0] = ((cval >> 3) & 1) + 9;
	else
		ucontrol->value.enumerated.item[0] = 0;
	return 0;
}

2162 2163
static int snd_ice1712_pro_route_spdif_put(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2164
{
2165
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
2166 2167 2168
	int change, shift;
	int idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
	unsigned int val, old_val, nval;
2169

Linus Torvalds's avatar
Linus Torvalds committed
2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
	/* update SPDOUT */
	spin_lock_irq(&ice->reg_lock);
	val = old_val = inw(ICEMT(ice, ROUTE_SPDOUT));
	if (ucontrol->value.enumerated.item[0] >= 11)
		nval = 1;
	else if (ucontrol->value.enumerated.item[0] >= 9)
		nval = 3;
	else if (ucontrol->value.enumerated.item[0] >= 1)
		nval = 2;
	else
		nval = 0;
	shift = idx * 2;
	val &= ~(0x03 << shift);
	val |= nval << shift;
	shift = idx * 4 + 8;
	if (nval == 2) {
		nval = ucontrol->value.enumerated.item[0] - 1;
		val &= ~(0x07 << shift);
		val |= nval << shift;
	} else if (nval == 3) {
		nval = (ucontrol->value.enumerated.item[0] - 9) << 3;
		val &= ~(0x08 << shift);
		val |= nval << shift;
	}
	change = val != old_val;
	if (change)
		outw(val, ICEMT(ice, ROUTE_SPDOUT));
	spin_unlock_irq(&ice->reg_lock);
	return change;
}

2201
static struct snd_kcontrol_new snd_ice1712_mixer_pro_analog_route = {
Linus Torvalds's avatar
Linus Torvalds committed
2202 2203 2204 2205 2206 2207 2208
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "H/W Playback Route",
	.info = snd_ice1712_pro_route_info,
	.get = snd_ice1712_pro_route_analog_get,
	.put = snd_ice1712_pro_route_analog_put,
};

2209
static struct snd_kcontrol_new snd_ice1712_mixer_pro_spdif_route = {
Linus Torvalds's avatar
Linus Torvalds committed
2210
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2211
	.name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, NONE) "Route",
Linus Torvalds's avatar
Linus Torvalds committed
2212 2213 2214 2215 2216 2217 2218
	.info = snd_ice1712_pro_route_info,
	.get = snd_ice1712_pro_route_spdif_get,
	.put = snd_ice1712_pro_route_spdif_put,
	.count = 2,
};


2219 2220
static int snd_ice1712_pro_volume_rate_info(struct snd_kcontrol *kcontrol,
					    struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
2221 2222 2223 2224 2225 2226 2227 2228
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 1;
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = 255;
	return 0;
}

2229 2230
static int snd_ice1712_pro_volume_rate_get(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2231
{
2232
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
2233

Linus Torvalds's avatar
Linus Torvalds committed
2234 2235 2236 2237
	ucontrol->value.integer.value[0] = inb(ICEMT(ice, MONITOR_RATE));
	return 0;
}

2238 2239
static int snd_ice1712_pro_volume_rate_put(struct snd_kcontrol *kcontrol,
					   struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2240
{
2241
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
2242 2243 2244 2245 2246 2247 2248 2249 2250
	int change;

	spin_lock_irq(&ice->reg_lock);
	change = inb(ICEMT(ice, MONITOR_RATE)) != ucontrol->value.integer.value[0];
	outb(ucontrol->value.integer.value[0], ICEMT(ice, MONITOR_RATE));
	spin_unlock_irq(&ice->reg_lock);
	return change;
}

2251
static struct snd_kcontrol_new snd_ice1712_mixer_pro_volume_rate = {
Linus Torvalds's avatar
Linus Torvalds committed
2252 2253 2254 2255 2256 2257 2258
	.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
	.name = "Multi Track Volume Rate",
	.info = snd_ice1712_pro_volume_rate_info,
	.get = snd_ice1712_pro_volume_rate_get,
	.put = snd_ice1712_pro_volume_rate_put
};

2259 2260
static int snd_ice1712_pro_peak_info(struct snd_kcontrol *kcontrol,
				     struct snd_ctl_elem_info *uinfo)
Linus Torvalds's avatar
Linus Torvalds committed
2261 2262 2263 2264 2265 2266 2267 2268
{
	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
	uinfo->count = 22;
	uinfo->value.integer.min = 0;
	uinfo->value.integer.max = 255;
	return 0;
}

2269 2270
static int snd_ice1712_pro_peak_get(struct snd_kcontrol *kcontrol,
				    struct snd_ctl_elem_value *ucontrol)
Linus Torvalds's avatar
Linus Torvalds committed
2271
{
2272
	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
Linus Torvalds's avatar
Linus Torvalds committed
2273
	int idx;
2274

Linus Torvalds's avatar
Linus Torvalds committed
2275 2276 2277 2278 2279 2280 2281 2282 2283
	spin_lock_irq(&ice->reg_lock);
	for (idx = 0; idx < 22; idx++) {
		outb(idx, ICEMT(ice, MONITOR_PEAKINDEX));
		ucontrol->value.integer.value[idx] = inb(ICEMT(ice, MONITOR_PEAKDATA));
	}
	spin_unlock_irq(&ice->reg_lock);
	return 0;
}

2284
static struct snd_kcontrol_new snd_ice1712_mixer_pro_peak = {
2285
	.iface = SNDRV_CTL_ELEM_IFACE_PCM,
Linus Torvalds's avatar
Linus Torvalds committed
2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298
	.name = "Multi Track Peak",
	.access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE,
	.info = snd_ice1712_pro_peak_info,
	.get = snd_ice1712_pro_peak_get
};

/*
 *
 */

/*
 * list of available boards
 */
2299
static struct snd_ice1712_card_info *card_tables[] = {
Linus Torvalds's avatar
Linus Torvalds committed
2300 2301 2302 2303 2304 2305
	snd_ice1712_hoontech_cards,
	snd_ice1712_delta_cards,
	snd_ice1712_ews_cards,
	NULL,
};

2306 2307 2308
static unsigned char snd_ice1712_read_i2c(struct snd_ice1712 *ice,
					  unsigned char dev,
					  unsigned char addr)
Linus Torvalds's avatar
Linus Torvalds committed
2309 2310 2311 2312 2313 2314 2315 2316 2317
{
	long t = 0x10000;

	outb(addr, ICEREG(ice, I2C_BYTE_ADDR));
	outb(dev & ~ICE1712_I2C_WRITE, ICEREG(ice, I2C_DEV_ADDR));
	while (t-- > 0 && (inb(ICEREG(ice, I2C_CTRL)) & ICE1712_I2C_BUSY)) ;
	return inb(ICEREG(ice, I2C_DATA));
}

2318 2319
static int snd_ice1712_read_eeprom(struct snd_ice1712 *ice,
				   const char *modelname)
Linus Torvalds's avatar
Linus Torvalds committed
2320 2321 2322
{
	int dev = 0xa0;		/* EEPROM device address */
	unsigned int i, size;
Ralf Baechle's avatar
Ralf Baechle committed
2323
	struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds's avatar
Linus Torvalds committed
2324

2325
	if (!modelname || !*modelname) {
Linus Torvalds's avatar
Linus Torvalds committed
2326 2327 2328
		ice->eeprom.subvendor = 0;
		if ((inb(ICEREG(ice, I2C_CTRL)) & ICE1712_I2C_EEPROM) != 0)
			ice->eeprom.subvendor = (snd_ice1712_read_i2c(ice, dev, 0x00) << 0) |
2329 2330
				(snd_ice1712_read_i2c(ice, dev, 0x01) << 8) |
				(snd_ice1712_read_i2c(ice, dev, 0x02) << 16) |
Linus Torvalds's avatar
Linus Torvalds committed
2331
				(snd_ice1712_read_i2c(ice, dev, 0x03) << 24);
2332 2333
		if (ice->eeprom.subvendor == 0 ||
		    ice->eeprom.subvendor == (unsigned int)-1) {
Linus Torvalds's avatar
Linus Torvalds committed
2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346
			/* invalid subvendor from EEPROM, try the PCI subststem ID instead */
			u16 vendor, device;
			pci_read_config_word(ice->pci, PCI_SUBSYSTEM_VENDOR_ID, &vendor);
			pci_read_config_word(ice->pci, PCI_SUBSYSTEM_ID, &device);
			ice->eeprom.subvendor = ((unsigned int)swab16(vendor) << 16) | swab16(device);
			if (ice->eeprom.subvendor == 0 || ice->eeprom.subvendor == (unsigned int)-1) {
				printk(KERN_ERR "ice1712: No valid ID is found\n");
				return -ENXIO;
			}
		}
	}
	for (tbl = card_tables; *tbl; tbl++) {
		for (c = *tbl; c->subvendor; c++) {
2347
			if (modelname && c->model && !strcmp(modelname, c->model)) {
Linus Torvalds's avatar
Linus Torvalds committed
2348 2349 2350 2351
				printk(KERN_INFO "ice1712: Using board model %s\n", c->name);
				ice->eeprom.subvendor = c->subvendor;
			} else if (c->subvendor != ice->eeprom.subvendor)
				continue;
2352
			if (!c->eeprom_size || !c->eeprom_data)
Linus Torvalds's avatar
Linus Torvalds committed
2353 2354 2355 2356 2357 2358 2359 2360 2361
				goto found;
			/* if the EEPROM is given by the driver, use it */
			snd_printdd("using the defined eeprom..\n");
			ice->eeprom.version = 1;
			ice->eeprom.size = c->eeprom_size + 6;
			memcpy(ice->eeprom.data, c->eeprom_data, c->eeprom_size);
			goto read_skipped;
		}
	}
2362 2363
	printk(KERN_WARNING "ice1712: No matching model found for ID 0x%x\n",
	       ice->eeprom.subvendor);
Linus Torvalds's avatar
Linus Torvalds committed
2364 2365 2366 2367 2368 2369

 found:
	ice->eeprom.size = snd_ice1712_read_i2c(ice, dev, 0x04);
	if (ice->eeprom.size < 6)
		ice->eeprom.size = 32; /* FIXME: any cards without the correct size? */
	else if (ice->eeprom.size > 32) {
2370
		snd_printk(KERN_ERR "invalid EEPROM (size = %i)\n", ice->eeprom.size);
Linus Torvalds's avatar
Linus Torvalds committed
2371 2372 2373 2374
		return -EIO;
	}
	ice->eeprom.version = snd_ice1712_read_i2c(ice, dev, 0x05);
	if (ice->eeprom.version != 1) {
2375 2376
		snd_printk(KERN_ERR "invalid EEPROM version %i\n",
			   ice->eeprom.version);
Linus Torvalds's avatar
Linus Torvalds committed
2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392
		/* return -EIO; */
	}
	size = ice->eeprom.size - 6;
	for (i = 0; i < size; i++)
		ice->eeprom.data[i] = snd_ice1712_read_i2c(ice, dev, i + 6);

 read_skipped:
	ice->eeprom.gpiomask = ice->eeprom.data[ICE_EEP1_GPIO_MASK];
	ice->eeprom.gpiostate = ice->eeprom.data[ICE_EEP1_GPIO_STATE];
	ice->eeprom.gpiodir = ice->eeprom.data[ICE_EEP1_GPIO_DIR];

	return 0;
}



2393
static int snd_ice1712_chip_init(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
2394 2395 2396 2397 2398
{
	outb(ICE1712_RESET | ICE1712_NATIVE, ICEREG(ice, CONTROL));
	udelay(200);
	outb(ICE1712_NATIVE, ICEREG(ice, CONTROL));
	udelay(200);
2399 2400 2401 2402 2403 2404 2405 2406
	if (ice->eeprom.subvendor == ICE1712_SUBDEVICE_DMX6FIRE &&
	    !ice->dxr_enable)
		/*  Set eeprom value to limit active ADCs and DACs to 6;
		 *  Also disable AC97 as no hardware in standard 6fire card/box
		 *  Note: DXR extensions are not currently supported
		 */
		ice->eeprom.data[ICE_EEP1_CODEC] = 0x3a;
	pci_write_config_byte(ice->pci, 0x60, ice->eeprom.data[ICE_EEP1_CODEC]);
Linus Torvalds's avatar
Linus Torvalds committed
2407 2408 2409 2410 2411 2412
	pci_write_config_byte(ice->pci, 0x61, ice->eeprom.data[ICE_EEP1_ACLINK]);
	pci_write_config_byte(ice->pci, 0x62, ice->eeprom.data[ICE_EEP1_I2SID]);
	pci_write_config_byte(ice->pci, 0x63, ice->eeprom.data[ICE_EEP1_SPDIF]);
	if (ice->eeprom.subvendor != ICE1712_SUBDEVICE_STDSP24) {
		ice->gpio.write_mask = ice->eeprom.gpiomask;
		ice->gpio.direction = ice->eeprom.gpiodir;
2413 2414 2415 2416 2417 2418
		snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK,
				  ice->eeprom.gpiomask);
		snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION,
				  ice->eeprom.gpiodir);
		snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA,
				  ice->eeprom.gpiostate);
Linus Torvalds's avatar
Linus Torvalds committed
2419 2420 2421 2422 2423
	} else {
		ice->gpio.write_mask = 0xc0;
		ice->gpio.direction = 0xff;
		snd_ice1712_write(ice, ICE1712_IREG_GPIO_WRITE_MASK, 0xc0);
		snd_ice1712_write(ice, ICE1712_IREG_GPIO_DIRECTION, 0xff);
2424 2425
		snd_ice1712_write(ice, ICE1712_IREG_GPIO_DATA,
				  ICE1712_STDSP24_CLOCK_BIT);
Linus Torvalds's avatar
Linus Torvalds committed
2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439
	}
	snd_ice1712_write(ice, ICE1712_IREG_PRO_POWERDOWN, 0);
	if (!(ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_NO_CON_AC97)) {
		outb(ICE1712_AC97_WARM, ICEREG(ice, AC97_CMD));
		udelay(100);
		outb(0, ICEREG(ice, AC97_CMD));
		udelay(200);
		snd_ice1712_write(ice, ICE1712_IREG_CONSUMER_POWERDOWN, 0);
	}
	snd_ice1712_set_pro_rate(ice, 48000, 1);

	return 0;
}

2440
int snd_ice1712_spdif_build_controls(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
2441 2442
{
	int err;
2443
	struct snd_kcontrol *kctl;
Linus Torvalds's avatar
Linus Torvalds committed
2444

2445 2446
	if (snd_BUG_ON(!ice->pcm_pro))
		return -EIO;
Linus Torvalds's avatar
Linus Torvalds committed
2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467
	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_default, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm_pro->device;
	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskc, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm_pro->device;
	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_maskp, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm_pro->device;
	err = snd_ctl_add(ice->card, kctl = snd_ctl_new1(&snd_ice1712_spdif_stream, ice));
	if (err < 0)
		return err;
	kctl->id.device = ice->pcm_pro->device;
	ice->spdif.stream_ctl = kctl;
	return 0;
}


2468
static int snd_ice1712_build_controls(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489
{
	int err;

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

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

	if (ice->num_total_dacs > 0) {
2490
		struct snd_kcontrol_new tmp = snd_ice1712_mixer_pro_analog_route;
Linus Torvalds's avatar
Linus Torvalds committed
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510
		tmp.count = ice->num_total_dacs;
		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_ice1712_mixer_pro_spdif_route, ice));
	if (err < 0)
		return err;

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

	return 0;
}

2511
static int snd_ice1712_free(struct snd_ice1712 *ice)
Linus Torvalds's avatar
Linus Torvalds committed
2512
{
2513
	if (!ice->port)
Linus Torvalds's avatar
Linus Torvalds committed
2514 2515 2516 2517 2518
		goto __hw_end;
	/* mask all interrupts */
	outb(0xc0, ICEMT(ice, IRQ));
	outb(0xff, ICEREG(ice, IRQMASK));
	/* --- */
2519
__hw_end:
2520
	if (ice->irq >= 0)
2521
		free_irq(ice->irq, ice);
2522

Linus Torvalds's avatar
Linus Torvalds committed
2523 2524 2525 2526
	if (ice->port)
		pci_release_regions(ice->pci);
	snd_ice1712_akm4xxx_free(ice);
	pci_disable_device(ice->pci);
2527
	kfree(ice->spec);
Linus Torvalds's avatar
Linus Torvalds committed
2528 2529 2530 2531
	kfree(ice);
	return 0;
}

2532
static int snd_ice1712_dev_free(struct snd_device *device)
Linus Torvalds's avatar
Linus Torvalds committed
2533
{
2534
	struct snd_ice1712 *ice = device->device_data;
Linus Torvalds's avatar
Linus Torvalds committed
2535 2536 2537
	return snd_ice1712_free(ice);
}

2538 2539 2540 2541 2542 2543 2544
static int snd_ice1712_create(struct snd_card *card,
			      struct pci_dev *pci,
			      const char *modelname,
			      int omni,
			      int cs8427_timeout,
			      int dxr_enable,
			      struct snd_ice1712 **r_ice1712)
Linus Torvalds's avatar
Linus Torvalds committed
2545
{
2546
	struct snd_ice1712 *ice;
Linus Torvalds's avatar
Linus Torvalds committed
2547
	int err;
2548
	static struct snd_device_ops ops = {
Linus Torvalds's avatar
Linus Torvalds committed
2549 2550 2551 2552 2553
		.dev_free =	snd_ice1712_dev_free,
	};

	*r_ice1712 = NULL;

2554 2555 2556
	/* enable PCI device */
	err = pci_enable_device(pci);
	if (err < 0)
Linus Torvalds's avatar
Linus Torvalds committed
2557 2558
		return err;
	/* check, if we can restrict PCI DMA transfers to 28 bits */
2559 2560
	if (pci_set_dma_mask(pci, DMA_BIT_MASK(28)) < 0 ||
	    pci_set_consistent_dma_mask(pci, DMA_BIT_MASK(28)) < 0) {
2561
		snd_printk(KERN_ERR "architecture does not support 28bit PCI busmaster DMA\n");
Linus Torvalds's avatar
Linus Torvalds committed
2562 2563 2564 2565
		pci_disable_device(pci);
		return -ENXIO;
	}

2566
	ice = kzalloc(sizeof(*ice), GFP_KERNEL);
Linus Torvalds's avatar
Linus Torvalds committed
2567 2568 2569 2570 2571 2572 2573 2574 2575 2576
	if (ice == NULL) {
		pci_disable_device(pci);
		return -ENOMEM;
	}
	ice->omni = omni ? 1 : 0;
	if (cs8427_timeout < 1)
		cs8427_timeout = 1;
	else if (cs8427_timeout > 1000)
		cs8427_timeout = 1000;
	ice->cs8427_timeout = cs8427_timeout;
2577
	ice->dxr_enable = dxr_enable;
Linus Torvalds's avatar
Linus Torvalds committed
2578
	spin_lock_init(&ice->reg_lock);
2579 2580 2581
	mutex_init(&ice->gpio_mutex);
	mutex_init(&ice->i2c_mutex);
	mutex_init(&ice->open_mutex);
Linus Torvalds's avatar
Linus Torvalds committed
2582
	ice->gpio.set_mask = snd_ice1712_set_gpio_mask;
2583
	ice->gpio.get_mask = snd_ice1712_get_gpio_mask;
Linus Torvalds's avatar
Linus Torvalds committed
2584
	ice->gpio.set_dir = snd_ice1712_set_gpio_dir;
2585
	ice->gpio.get_dir = snd_ice1712_get_gpio_dir;
Linus Torvalds's avatar
Linus Torvalds committed
2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601
	ice->gpio.set_data = snd_ice1712_set_gpio_data;
	ice->gpio.get_data = snd_ice1712_get_gpio_data;

	ice->spdif.cs8403_bits =
		ice->spdif.cs8403_stream_bits = (0x01 |	/* consumer format */
						 0x10 |	/* no emphasis */
						 0x20);	/* PCM encoder/decoder */
	ice->card = card;
	ice->pci = pci;
	ice->irq = -1;
	pci_set_master(pci);
	pci_write_config_word(ice->pci, 0x40, 0x807f);
	pci_write_config_word(ice->pci, 0x42, 0x0006);
	snd_ice1712_proc_init(ice);
	synchronize_irq(pci->irq);

2602 2603
	card->private_data = ice;

2604 2605
	err = pci_request_regions(pci, "ICE1712");
	if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2606 2607 2608 2609 2610 2611 2612 2613 2614
		kfree(ice);
		pci_disable_device(pci);
		return err;
	}
	ice->port = pci_resource_start(pci, 0);
	ice->ddma_port = pci_resource_start(pci, 1);
	ice->dmapath_port = pci_resource_start(pci, 2);
	ice->profi_port = pci_resource_start(pci, 3);

2615
	if (request_irq(pci->irq, snd_ice1712_interrupt, IRQF_SHARED,
2616
			KBUILD_MODNAME, ice)) {
2617
		snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq);
Linus Torvalds's avatar
Linus Torvalds committed
2618 2619 2620
		snd_ice1712_free(ice);
		return -EIO;
	}
2621

Linus Torvalds's avatar
Linus Torvalds committed
2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633
	ice->irq = pci->irq;

	if (snd_ice1712_read_eeprom(ice, modelname) < 0) {
		snd_ice1712_free(ice);
		return -EIO;
	}
	if (snd_ice1712_chip_init(ice) < 0) {
		snd_ice1712_free(ice);
		return -EIO;
	}

	/* unmask used interrupts */
2634 2635 2636 2637
	outb(((ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_2xMPU401) == 0 ?
	      ICE1712_IRQ_MPU2 : 0) |
	     ((ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_NO_CON_AC97) ?
	      ICE1712_IRQ_PBKDS | ICE1712_IRQ_CONCAP | ICE1712_IRQ_CONPBK : 0),
Linus Torvalds's avatar
Linus Torvalds committed
2638 2639 2640
	     ICEREG(ice, IRQMASK));
	outb(0x00, ICEMT(ice, IRQ));

2641 2642
	err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, ice, &ops);
	if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2643
		snd_ice1712_free(ice);
2644
		return err;
Linus Torvalds's avatar
Linus Torvalds committed
2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659
	}

	snd_card_set_dev(card, &pci->dev);

	*r_ice1712 = ice;
	return 0;
}


/*
 *
 * Registration
 *
 */

2660
static struct snd_ice1712_card_info no_matched;
Linus Torvalds's avatar
Linus Torvalds committed
2661

2662 2663
static int snd_ice1712_probe(struct pci_dev *pci,
			     const struct pci_device_id *pci_id)
Linus Torvalds's avatar
Linus Torvalds committed
2664 2665
{
	static int dev;
2666 2667
	struct snd_card *card;
	struct snd_ice1712 *ice;
Linus Torvalds's avatar
Linus Torvalds committed
2668
	int pcm_dev = 0, err;
Ralf Baechle's avatar
Ralf Baechle committed
2669
	struct snd_ice1712_card_info * const *tbl, *c;
Linus Torvalds's avatar
Linus Torvalds committed
2670 2671 2672 2673 2674 2675 2676 2677

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

2678 2679 2680
	err = snd_card_create(index[dev], id[dev], THIS_MODULE, 0, &card);
	if (err < 0)
		return err;
Linus Torvalds's avatar
Linus Torvalds committed
2681 2682 2683

	strcpy(card->driver, "ICE1712");
	strcpy(card->shortname, "ICEnsemble ICE1712");
2684 2685 2686 2687

	err = snd_ice1712_create(card, pci, model[dev], omni[dev],
		cs8427_timeout[dev], dxr_enable[dev], &ice);
	if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2688 2689 2690 2691 2692 2693 2694
		snd_card_free(card);
		return err;
	}

	for (tbl = card_tables; *tbl; tbl++) {
		for (c = *tbl; c->subvendor; c++) {
			if (c->subvendor == ice->eeprom.subvendor) {
2695
				ice->card_info = c;
Linus Torvalds's avatar
Linus Torvalds committed
2696 2697 2698 2699
				strcpy(card->shortname, c->name);
				if (c->driver) /* specific driver? */
					strcpy(card->driver, c->driver);
				if (c->chip_init) {
2700 2701
					err = c->chip_init(ice);
					if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712
						snd_card_free(card);
						return err;
					}
				}
				goto __found;
			}
		}
	}
	c = &no_matched;
 __found:

2713 2714
	err = snd_ice1712_pcm_profi(ice, pcm_dev++, NULL);
	if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2715 2716 2717
		snd_card_free(card);
		return err;
	}
2718

2719
	if (ice_has_con_ac97(ice)) {
2720 2721
		err = snd_ice1712_pcm(ice, pcm_dev++, NULL);
		if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2722 2723 2724
			snd_card_free(card);
			return err;
		}
2725
	}
Linus Torvalds's avatar
Linus Torvalds committed
2726

2727 2728
	err = snd_ice1712_ac97_mixer(ice);
	if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2729 2730 2731 2732
		snd_card_free(card);
		return err;
	}

2733 2734
	err = snd_ice1712_build_controls(ice);
	if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2735 2736 2737 2738 2739
		snd_card_free(card);
		return err;
	}

	if (c->build_controls) {
2740 2741
		err = c->build_controls(ice);
		if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2742 2743 2744 2745 2746
			snd_card_free(card);
			return err;
		}
	}

2747
	if (ice_has_con_ac97(ice)) {
2748 2749
		err = snd_ice1712_pcm_ds(ice, pcm_dev++, NULL);
		if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2750 2751 2752
			snd_card_free(card);
			return err;
		}
2753
	}
Linus Torvalds's avatar
Linus Torvalds committed
2754

2755 2756 2757
	if (!c->no_mpu401) {
		err = snd_mpu401_uart_new(card, 0, MPU401_HW_ICE1712,
			ICEREG(ice, MPU1_CTRL),
2758 2759 2760
			c->mpu401_1_info_flags |
			MPU401_INFO_INTEGRATED | MPU401_INFO_IRQ_HOOK,
			-1, &ice->rmidi[0]);
2761
		if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2762 2763 2764
			snd_card_free(card);
			return err;
		}
2765
		if (c->mpu401_1_name)
Lucas De Marchi's avatar
Lucas De Marchi committed
2766
			/*  Preferred name available in card_info */
2767 2768 2769 2770 2771 2772
			snprintf(ice->rmidi[0]->name,
				 sizeof(ice->rmidi[0]->name),
				 "%s %d", c->mpu401_1_name, card->number);

		if (ice->eeprom.data[ICE_EEP1_CODEC] & ICE1712_CFG_2xMPU401) {
			/*  2nd port used  */
2773 2774
			err = snd_mpu401_uart_new(card, 1, MPU401_HW_ICE1712,
				ICEREG(ice, MPU2_CTRL),
2775 2776 2777
				c->mpu401_2_info_flags |
				MPU401_INFO_INTEGRATED | MPU401_INFO_IRQ_HOOK,
				-1, &ice->rmidi[1]);
2778 2779

			if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2780 2781 2782
				snd_card_free(card);
				return err;
			}
2783
			if (c->mpu401_2_name)
Lucas De Marchi's avatar
Lucas De Marchi committed
2784
				/*  Preferred name available in card_info */
2785 2786 2787 2788 2789
				snprintf(ice->rmidi[1]->name,
					 sizeof(ice->rmidi[1]->name),
					 "%s %d", c->mpu401_2_name,
					 card->number);
		}
Linus Torvalds's avatar
Linus Torvalds committed
2790 2791
	}

2792 2793
	snd_ice1712_set_input_clock_source(ice, 0);

Linus Torvalds's avatar
Linus Torvalds committed
2794 2795 2796
	sprintf(card->longname, "%s at 0x%lx, irq %i",
		card->shortname, ice->port, ice->irq);

2797 2798
	err = snd_card_register(card);
	if (err < 0) {
Linus Torvalds's avatar
Linus Torvalds committed
2799 2800 2801 2802 2803 2804 2805 2806
		snd_card_free(card);
		return err;
	}
	pci_set_drvdata(pci, card);
	dev++;
	return 0;
}

2807
static void snd_ice1712_remove(struct pci_dev *pci)
Linus Torvalds's avatar
Linus Torvalds committed
2808
{
2809 2810 2811 2812 2813 2814
	struct snd_card *card = pci_get_drvdata(pci);
	struct snd_ice1712 *ice = card->private_data;

	if (ice->card_info && ice->card_info->chip_exit)
		ice->card_info->chip_exit(ice);
	snd_card_free(card);
Linus Torvalds's avatar
Linus Torvalds committed
2815 2816 2817
	pci_set_drvdata(pci, NULL);
}

2818
static struct pci_driver ice1712_driver = {
2819
	.name = KBUILD_MODNAME,
Linus Torvalds's avatar
Linus Torvalds committed
2820 2821
	.id_table = snd_ice1712_ids,
	.probe = snd_ice1712_probe,
2822
	.remove = snd_ice1712_remove,
Linus Torvalds's avatar
Linus Torvalds committed
2823 2824
};

2825
module_pci_driver(ice1712_driver);