| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  *   ALSA driver for ICEnsemble VT1724 (Envy24HT) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   Lowlevel functions for Terratec Aureon cards | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *	Copyright (c) 2003 Takashi Iwai <tiwai@suse.de> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  *   it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  *   the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  *   (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  *   but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  *   GNU General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  *   along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * NOTES: | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  |  * - we reuse the struct snd_akm4xxx record for storing the wm8770 codec data. | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  *   both wm and akm codecs are pretty similar, so we can integrate | 
					
						
							|  |  |  |  *   both controls in the future, once if wm codecs are reused in | 
					
						
							|  |  |  |  *   many boards. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * - DAC digital volumes are not implemented in the mixer. | 
					
						
							|  |  |  |  *   if they show better response than DAC analog volumes, we can use them | 
					
						
							|  |  |  |  *   instead. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   Lowlevel functions for AudioTrak Prodigy 7.1 (and possibly 192) cards | 
					
						
							|  |  |  |  *      Copyright (c) 2003 Dimitromanolakis Apostolos <apostol@cs.utoronto.ca> | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   version 0.82: Stable / not all features work yet (no communication with AC97 secondary) | 
					
						
							|  |  |  |  *       added 64x/128x oversampling switch (should be 64x only for 96khz) | 
					
						
							|  |  |  |  *       fixed some recording labels (still need to check the rest) | 
					
						
							|  |  |  |  *       recording is working probably thanks to correct wm8770 initialization | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   version 0.5: Initial release: | 
					
						
							|  |  |  |  *           working: analog output, mixer, headphone amplifier switch | 
					
						
							|  |  |  |  *       not working: prety much everything else, at least i could verify that | 
					
						
							|  |  |  |  *                    we have no digital output, no capture, pretty bad clicks and poops | 
					
						
							|  |  |  |  *                    on mixer switch and other coll stuff. | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <linux/delay.h>
 | 
					
						
							|  |  |  | #include <linux/interrupt.h>
 | 
					
						
							|  |  |  | #include <linux/init.h>
 | 
					
						
							|  |  |  | #include <linux/slab.h>
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | #include <linux/mutex.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #include <sound/core.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ice1712.h"
 | 
					
						
							|  |  |  | #include "envy24ht.h"
 | 
					
						
							|  |  |  | #include "aureon.h"
 | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | #include <sound/tlv.h>
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | /* AC97 register cache for Aureon */ | 
					
						
							|  |  |  | struct aureon_spec { | 
					
						
							|  |  |  | 	unsigned short stac9744[64]; | 
					
						
							|  |  |  | 	unsigned int cs8415_mux; | 
					
						
							|  |  |  | 	unsigned short master[2]; | 
					
						
							|  |  |  | 	unsigned short vol[8]; | 
					
						
							|  |  |  | 	unsigned char pca9554_out; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* WM8770 registers */ | 
					
						
							|  |  |  | #define WM_DAC_ATTEN		0x00	/* DAC1-8 analog attenuation */
 | 
					
						
							|  |  |  | #define WM_DAC_MASTER_ATTEN	0x08	/* DAC master analog attenuation */
 | 
					
						
							|  |  |  | #define WM_DAC_DIG_ATTEN	0x09	/* DAC1-8 digital attenuation */
 | 
					
						
							|  |  |  | #define WM_DAC_DIG_MASTER_ATTEN	0x11	/* DAC master digital attenuation */
 | 
					
						
							|  |  |  | #define WM_PHASE_SWAP		0x12	/* DAC phase */
 | 
					
						
							|  |  |  | #define WM_DAC_CTRL1		0x13	/* DAC control bits */
 | 
					
						
							|  |  |  | #define WM_MUTE			0x14	/* mute controls */
 | 
					
						
							|  |  |  | #define WM_DAC_CTRL2		0x15	/* de-emphasis and zefo-flag */
 | 
					
						
							|  |  |  | #define WM_INT_CTRL		0x16	/* interface control */
 | 
					
						
							|  |  |  | #define WM_MASTER		0x17	/* master clock and mode */
 | 
					
						
							|  |  |  | #define WM_POWERDOWN		0x18	/* power-down controls */
 | 
					
						
							|  |  |  | #define WM_ADC_GAIN		0x19	/* ADC gain L(19)/R(1a) */
 | 
					
						
							|  |  |  | #define WM_ADC_MUX		0x1b	/* input MUX */
 | 
					
						
							|  |  |  | #define WM_OUT_MUX1		0x1c	/* output MUX */
 | 
					
						
							|  |  |  | #define WM_OUT_MUX2		0x1e	/* output MUX */
 | 
					
						
							|  |  |  | #define WM_RESET		0x1f	/* software reset */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* CS8415A registers */ | 
					
						
							|  |  |  | #define CS8415_CTRL1	0x01
 | 
					
						
							|  |  |  | #define CS8415_CTRL2	0x02
 | 
					
						
							|  |  |  | #define CS8415_QSUB		0x14
 | 
					
						
							|  |  |  | #define CS8415_RATIO	0x1E
 | 
					
						
							|  |  |  | #define CS8415_C_BUFFER	0x20
 | 
					
						
							|  |  |  | #define CS8415_ID		0x7F
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | /* PCA9554 registers */ | 
					
						
							|  |  |  | #define PCA9554_DEV     0x40            /* I2C device address */
 | 
					
						
							|  |  |  | #define PCA9554_IN      0x00            /* input port */
 | 
					
						
							|  |  |  | #define PCA9554_OUT     0x01            /* output port */
 | 
					
						
							|  |  |  | #define PCA9554_INVERT  0x02            /* input invert */
 | 
					
						
							|  |  |  | #define PCA9554_DIR     0x03            /* port directions */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Aureon Universe additional controls using PCA9554 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Send data to pca9554 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void aureon_pca9554_write(struct snd_ice1712 *ice, unsigned char reg, | 
					
						
							|  |  |  | 				 unsigned char data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 	int i, j; | 
					
						
							|  |  |  | 	unsigned char dev = PCA9554_DEV;  /* ID 0100000, write */ | 
					
						
							|  |  |  | 	unsigned char val = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmp = snd_ice1712_gpio_read(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_gpio_set_mask(ice, ~(AUREON_SPI_MOSI|AUREON_SPI_CLK| | 
					
						
							|  |  |  | 					 AUREON_WM_RW|AUREON_WM_CS| | 
					
						
							|  |  |  | 					 AUREON_CS8415_CS)); | 
					
						
							|  |  |  | 	tmp |= AUREON_WM_RW; | 
					
						
							|  |  |  | 	tmp |= AUREON_CS8415_CS | AUREON_WM_CS; /* disable SPI devices */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmp &= ~AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 	tmp &= ~AUREON_SPI_CLK; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(50); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	/*
 | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	 * send i2c stop condition and start condition | 
					
						
							|  |  |  | 	 * to obtain sane state | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	tmp |= AUREON_SPI_CLK; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(50); | 
					
						
							|  |  |  | 	tmp |= AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(100); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(50); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_SPI_CLK; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(100); | 
					
						
							|  |  |  | 	/*
 | 
					
						
							|  |  |  | 	 * send device address, command and value, | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  | 	 * skipping ack cycles in between | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	for (j = 0; j < 3; j++) { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		switch (j) { | 
					
						
							|  |  |  | 		case 0: | 
					
						
							|  |  |  | 			val = dev; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 1: | 
					
						
							|  |  |  | 			val = reg; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case 2: | 
					
						
							|  |  |  | 			val = data; | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		for (i = 7; i >= 0; i--) { | 
					
						
							|  |  |  | 			tmp &= ~AUREON_SPI_CLK; | 
					
						
							|  |  |  | 			snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 			udelay(40); | 
					
						
							|  |  |  | 			if (val & (1 << i)) | 
					
						
							|  |  |  | 				tmp |= AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				tmp &= ~AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 			snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 			udelay(40); | 
					
						
							|  |  |  | 			tmp |= AUREON_SPI_CLK; | 
					
						
							|  |  |  | 			snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 			udelay(40); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		tmp &= ~AUREON_SPI_CLK; | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(40); | 
					
						
							|  |  |  | 		tmp |= AUREON_SPI_CLK; | 
					
						
							|  |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(40); | 
					
						
							|  |  |  | 		tmp &= ~AUREON_SPI_CLK; | 
					
						
							|  |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(40); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	tmp &= ~AUREON_SPI_CLK; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(40); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(40); | 
					
						
							|  |  |  | 	tmp |= AUREON_SPI_CLK; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(50); | 
					
						
							|  |  |  | 	tmp |= AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(100); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int aureon_universe_inmux_info(struct snd_kcontrol *kcontrol, | 
					
						
							|  |  |  | 				      struct snd_ctl_elem_info *uinfo) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-17 09:21:48 +02:00
										 |  |  | 	static const char * const texts[3] = | 
					
						
							|  |  |  | 		{"Internal Aux", "Wavetable", "Rear Line-In"}; | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 18:18:50 +02:00
										 |  |  | 	return snd_ctl_enum_info(uinfo, 1, 3, texts); | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int aureon_universe_inmux_get(struct snd_kcontrol *kcontrol, | 
					
						
							|  |  |  | 				     struct snd_ctl_elem_value *ucontrol) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							|  |  |  | 	ucontrol->value.enumerated.item[0] = spec->pca9554_out; | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int aureon_universe_inmux_put(struct snd_kcontrol *kcontrol, | 
					
						
							|  |  |  | 				     struct snd_ctl_elem_value *ucontrol) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	unsigned char oval, nval; | 
					
						
							|  |  |  | 	int change; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-15 15:56:07 +01:00
										 |  |  | 	nval = ucontrol->value.enumerated.item[0]; | 
					
						
							|  |  |  | 	if (nval >= 3) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	oval = spec->pca9554_out; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	change = (oval != nval); | 
					
						
							|  |  |  | 	if (change) { | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 		aureon_pca9554_write(ice, PCA9554_OUT, nval); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		spec->pca9554_out = nval; | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void aureon_ac97_write(struct snd_ice1712 *ice, unsigned short reg, | 
					
						
							|  |  |  | 			      unsigned short val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Send address to XILINX chip */ | 
					
						
							|  |  |  | 	tmp = (snd_ice1712_gpio_read(ice) & ~0xFF) | (reg & 0x7F); | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							|  |  |  | 	tmp |= AUREON_AC97_ADDR; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_AC97_ADDR; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	udelay(10); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Send low-order byte to XILINX chip */ | 
					
						
							|  |  |  | 	tmp &= ~AUREON_AC97_DATA_MASK; | 
					
						
							|  |  |  | 	tmp |= val & AUREON_AC97_DATA_MASK; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							|  |  |  | 	tmp |= AUREON_AC97_DATA_LOW; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_AC97_DATA_LOW; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Send high-order byte to XILINX chip */ | 
					
						
							|  |  |  | 	tmp &= ~AUREON_AC97_DATA_MASK; | 
					
						
							|  |  |  | 	tmp |= (val >> 8) & AUREON_AC97_DATA_MASK; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							|  |  |  | 	tmp |= AUREON_AC97_DATA_HIGH; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_AC97_DATA_HIGH; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Instruct XILINX chip to parse the data to the STAC9744 chip */ | 
					
						
							|  |  |  | 	tmp |= AUREON_AC97_COMMIT; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_AC97_COMMIT; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(10); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	/* Store the data in out private buffer */ | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	spec->stac9744[(reg & 0x7F) >> 1] = val; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static unsigned short aureon_ac97_read(struct snd_ice1712 *ice, unsigned short reg) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							|  |  |  | 	return spec->stac9744[(reg & 0x7F) >> 1]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Initialize STAC9744 chip | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_ac97_init(struct snd_ice1712 *ice) | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const unsigned short ac97_defaults[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		0x00, 0x9640, | 
					
						
							|  |  |  | 		0x02, 0x8000, | 
					
						
							|  |  |  | 		0x04, 0x8000, | 
					
						
							|  |  |  | 		0x06, 0x8000, | 
					
						
							|  |  |  | 		0x0C, 0x8008, | 
					
						
							|  |  |  | 		0x0E, 0x8008, | 
					
						
							|  |  |  | 		0x10, 0x8808, | 
					
						
							|  |  |  | 		0x12, 0x8808, | 
					
						
							|  |  |  | 		0x14, 0x8808, | 
					
						
							|  |  |  | 		0x16, 0x8808, | 
					
						
							|  |  |  | 		0x18, 0x8808, | 
					
						
							|  |  |  | 		0x1C, 0x8000, | 
					
						
							|  |  |  | 		0x26, 0x000F, | 
					
						
							|  |  |  | 		0x28, 0x0201, | 
					
						
							|  |  |  | 		0x2C, 0xBB80, | 
					
						
							|  |  |  | 		0x32, 0xBB80, | 
					
						
							|  |  |  | 		0x7C, 0x8384, | 
					
						
							|  |  |  | 		0x7E, 0x7644, | 
					
						
							|  |  |  | 		(unsigned short)-1 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Cold reset */ | 
					
						
							|  |  |  | 	tmp = (snd_ice1712_gpio_read(ice) | AUREON_AC97_RESET) & ~AUREON_AC97_DATA_MASK; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(3); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	tmp &= ~AUREON_AC97_RESET; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(3); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	tmp |= AUREON_AC97_RESET; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(3); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	memset(&spec->stac9744, 0, sizeof(spec->stac9744)); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	for (i = 0; ac97_defaults[i] != (unsigned short)-1; i += 2) | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		spec->stac9744[(ac97_defaults[i]) >> 1] = ac97_defaults[i+1]; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Unmute AC'97 master volume permanently - muting is done by WM8770 */ | 
					
						
							|  |  |  | 	aureon_ac97_write(ice, AC97_MASTER, 0x0000); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define AUREON_AC97_STEREO	0x80
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * AC'97 volume controls | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_vol_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 
					
						
							|  |  |  | 	uinfo->count = kcontrol->private_value & AUREON_AC97_STEREO ? 2 : 1; | 
					
						
							|  |  |  | 	uinfo->value.integer.min = 0; | 
					
						
							|  |  |  | 	uinfo->value.integer.max = 31; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short vol; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	vol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[0] = 0x1F - (vol & 0x1F); | 
					
						
							|  |  |  | 	if (kcontrol->private_value & AUREON_AC97_STEREO) | 
					
						
							|  |  |  | 		ucontrol->value.integer.value[1] = 0x1F - ((vol >> 8) & 0x1F); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short ovol, nvol; | 
					
						
							|  |  |  | 	int change; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); | 
					
						
							|  |  |  | 	nvol = (0x1F - ucontrol->value.integer.value[0]) & 0x001F; | 
					
						
							|  |  |  | 	if (kcontrol->private_value & AUREON_AC97_STEREO) | 
					
						
							|  |  |  | 		nvol |= ((0x1F - ucontrol->value.integer.value[1]) << 8) & 0x1F00; | 
					
						
							|  |  |  | 	nvol |= ovol & ~0x1F1F; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	change = (ovol != nvol); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		aureon_ac97_write(ice, kcontrol->private_value & 0x7F, nvol); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	return change; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * AC'97 mute controls | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define aureon_ac97_mute_info	snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_mute_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	ucontrol->value.integer.value[0] = aureon_ac97_read(ice, | 
					
						
							|  |  |  | 			kcontrol->private_value & 0x7F) & 0x8000 ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_mute_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short ovol, nvol; | 
					
						
							|  |  |  | 	int change; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ovol = aureon_ac97_read(ice, kcontrol->private_value & 0x7F); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x8000) | (ovol & ~0x8000); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	change = (ovol != nvol); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		aureon_ac97_write(ice, kcontrol->private_value & 0x7F, nvol); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * AC'97 mute controls | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define aureon_ac97_micboost_info	snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_micboost_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[0] = aureon_ac97_read(ice, AC97_MIC) & 0x0020 ? 0 : 1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_micboost_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short ovol, nvol; | 
					
						
							|  |  |  | 	int change; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ovol = aureon_ac97_read(ice, AC97_MIC); | 
					
						
							|  |  |  | 	nvol = (ucontrol->value.integer.value[0] ? 0x0000 : 0x0020) | (ovol & ~0x0020); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	change = (ovol != nvol); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		aureon_ac97_write(ice, AC97_MIC, nvol); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * write data in the SPI mode | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static void aureon_spi_write(struct snd_ice1712 *ice, unsigned int cs, unsigned int data, int bits) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 	unsigned int mosi, clk; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	tmp = snd_ice1712_gpio_read(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71LT || | 
					
						
							|  |  |  | 	    ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71XT) { | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 		snd_ice1712_gpio_set_mask(ice, ~(PRODIGY_SPI_MOSI|PRODIGY_SPI_CLK|PRODIGY_WM_CS)); | 
					
						
							|  |  |  | 		mosi = PRODIGY_SPI_MOSI; | 
					
						
							|  |  |  | 		clk = PRODIGY_SPI_CLK; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 		snd_ice1712_gpio_set_mask(ice, ~(AUREON_WM_RW|AUREON_SPI_MOSI|AUREON_SPI_CLK| | 
					
						
							|  |  |  | 						 AUREON_WM_CS|AUREON_CS8415_CS)); | 
					
						
							|  |  |  | 		mosi = AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 		clk = AUREON_SPI_CLK; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 		tmp |= AUREON_WM_RW; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	tmp &= ~cs; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = bits - 1; i >= 0; i--) { | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 		tmp &= ~clk; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							|  |  |  | 		if (data & (1 << i)) | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 			tmp |= mosi; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 			tmp &= ~mosi; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 		tmp |= clk; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 	tmp &= ~clk; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	tmp |= cs; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(1); | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 	tmp |= clk; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(1); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Read data in SPI mode | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static void aureon_spi_read(struct snd_ice1712 *ice, unsigned int cs, | 
					
						
							|  |  |  | 		unsigned int data, int bits, unsigned char *buffer, int size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, j; | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmp = (snd_ice1712_gpio_read(ice) & ~AUREON_SPI_CLK) | AUREON_CS8415_CS|AUREON_WM_CS; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	tmp &= ~cs; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	for (i = bits-1; i >= 0; i--) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (data & (1 << i)) | 
					
						
							|  |  |  | 			tmp |= AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			tmp &= ~AUREON_SPI_MOSI; | 
					
						
							|  |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		tmp |= AUREON_SPI_CLK; | 
					
						
							|  |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		tmp &= ~AUREON_SPI_CLK; | 
					
						
							|  |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		udelay(1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	for (j = 0; j < size; j++) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		unsigned char outdata = 0; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		for (i = 7; i >= 0; i--) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			tmp = snd_ice1712_gpio_read(ice); | 
					
						
							|  |  |  | 			outdata <<= 1; | 
					
						
							|  |  |  | 			outdata |= (tmp & AUREON_SPI_MISO) ? 1 : 0; | 
					
						
							|  |  |  | 			udelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			tmp |= AUREON_SPI_CLK; | 
					
						
							|  |  |  | 			snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 			udelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			tmp &= ~AUREON_SPI_CLK; | 
					
						
							|  |  |  | 			snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 			udelay(1); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		buffer[j] = outdata; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmp |= cs; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static unsigned char aureon_cs8415_get(struct snd_ice1712 *ice, int reg) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned char val; | 
					
						
							|  |  |  | 	aureon_spi_write(ice, AUREON_CS8415_CS, 0x2000 | reg, 16); | 
					
						
							|  |  |  | 	aureon_spi_read(ice, AUREON_CS8415_CS, 0x21, 8, &val, 1); | 
					
						
							|  |  |  | 	return val; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static void aureon_cs8415_read(struct snd_ice1712 *ice, int reg, | 
					
						
							|  |  |  | 				unsigned char *buffer, int size) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	aureon_spi_write(ice, AUREON_CS8415_CS, 0x2000 | reg, 16); | 
					
						
							|  |  |  | 	aureon_spi_read(ice, AUREON_CS8415_CS, 0x21, 8, buffer, size); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static void aureon_cs8415_put(struct snd_ice1712 *ice, int reg, | 
					
						
							|  |  |  | 						unsigned char val) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	aureon_spi_write(ice, AUREON_CS8415_CS, 0x200000 | (reg << 8) | val, 24); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * get the current register value of WM codec | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static unsigned short wm_get(struct snd_ice1712 *ice, int reg) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	reg <<= 1; | 
					
						
							|  |  |  | 	return ((unsigned short)ice->akm[0].images[reg] << 8) | | 
					
						
							|  |  |  | 		ice->akm[0].images[reg + 1]; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * set the register value of WM codec | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static void wm_put_nocache(struct snd_ice1712 *ice, int reg, unsigned short val) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 	aureon_spi_write(ice, | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 			 ((ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71LT || | 
					
						
							|  |  |  | 			   ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71XT) ? | 
					
						
							|  |  |  | 			 PRODIGY_WM_CS : AUREON_WM_CS), | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 			(reg << 9) | (val & 0x1ff), 16); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * set the register value of WM codec and remember it | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static void wm_put(struct snd_ice1712 *ice, int reg, unsigned short val) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	wm_put_nocache(ice, reg, val); | 
					
						
							|  |  |  | 	reg <<= 1; | 
					
						
							|  |  |  | 	ice->akm[0].images[reg] = val >> 8; | 
					
						
							|  |  |  | 	ice->akm[0].images[reg + 1] = val; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define aureon_mono_bool_info		snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * AC'97 master playback mute controls (Mute on WM8770 chip) | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define aureon_ac97_mmute_info		snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_ac97_mmute_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[0] = (wm_get(ice, WM_OUT_MUX1) >> 1) & 0x01; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_ac97_mmute_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short ovol, nvol; | 
					
						
							|  |  |  | 	int change; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ovol = wm_get(ice, WM_OUT_MUX1); | 
					
						
							|  |  |  | 	nvol = (ovol & ~0x02) | (ucontrol->value.integer.value[0] ? 0x02 : 0x00); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	change = (ovol != nvol); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		wm_put(ice, WM_OUT_MUX1, nvol); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-09 12:43:44 +01:00
										 |  |  | static const DECLARE_TLV_DB_SCALE(db_scale_wm_dac, -10000, 100, 1); | 
					
						
							| 
									
										
										
										
											2007-01-29 15:33:49 +01:00
										 |  |  | static const DECLARE_TLV_DB_SCALE(db_scale_wm_pcm, -6400, 50, 1); | 
					
						
							|  |  |  | static const DECLARE_TLV_DB_SCALE(db_scale_wm_adc, -1200, 100, 0); | 
					
						
							|  |  |  | static const DECLARE_TLV_DB_SCALE(db_scale_ac97_master, -4650, 150, 0); | 
					
						
							|  |  |  | static const DECLARE_TLV_DB_SCALE(db_scale_ac97_gain, -3450, 150, 0); | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-09 12:43:44 +01:00
										 |  |  | #define WM_VOL_MAX	100
 | 
					
						
							|  |  |  | #define WM_VOL_CNT	101	/* 0dB .. -100dB */
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | #define WM_VOL_MUTE	0x8000
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static void wm_set_vol(struct snd_ice1712 *ice, unsigned int index, unsigned short vol, unsigned short master) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned char nvol; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-05 10:19:41 +01:00
										 |  |  | 	if ((master & WM_VOL_MUTE) || (vol & WM_VOL_MUTE)) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		nvol = 0; | 
					
						
							| 
									
										
										
										
											2010-02-05 10:19:41 +01:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2009-12-09 12:43:44 +01:00
										 |  |  | 		nvol = ((vol % WM_VOL_CNT) * (master % WM_VOL_CNT)) / | 
					
						
							|  |  |  | 								WM_VOL_MAX; | 
					
						
							| 
									
										
										
										
											2010-02-05 10:19:41 +01:00
										 |  |  | 		nvol += 0x1b; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	wm_put(ice, index, nvol); | 
					
						
							|  |  |  | 	wm_put_nocache(ice, index, 0x180 | nvol); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * DAC mute control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define wm_pcm_mute_info	snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_pcm_mute_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ucontrol->value.integer.value[0] = (wm_get(ice, WM_MUTE) & 0x10) ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_pcm_mute_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short nval, oval; | 
					
						
							|  |  |  | 	int change; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	oval = wm_get(ice, WM_MUTE); | 
					
						
							|  |  |  | 	nval = (oval & ~0x10) | (ucontrol->value.integer.value[0] ? 0 : 0x10); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	change = (oval != nval); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		wm_put(ice, WM_MUTE, nval); | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Master volume attenuation mixer control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_master_vol_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 
					
						
							|  |  |  | 	uinfo->count = 2; | 
					
						
							|  |  |  | 	uinfo->value.integer.min = 0; | 
					
						
							|  |  |  | 	uinfo->value.integer.max = WM_VOL_MAX; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_master_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	for (i = 0; i < 2; i++) | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		ucontrol->value.integer.value[i] = | 
					
						
							|  |  |  | 			spec->master[i] & ~WM_VOL_MUTE; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_master_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int ch, change = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	for (ch = 0; ch < 2; ch++) { | 
					
						
							| 
									
										
										
										
											2007-11-15 15:56:07 +01:00
										 |  |  | 		unsigned int vol = ucontrol->value.integer.value[ch]; | 
					
						
							|  |  |  | 		if (vol > WM_VOL_MAX) | 
					
						
							| 
									
										
										
										
											2010-02-05 10:19:41 +01:00
										 |  |  | 			vol = WM_VOL_MAX; | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		vol |= spec->master[ch] & WM_VOL_MUTE; | 
					
						
							|  |  |  | 		if (vol != spec->master[ch]) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			int dac; | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 			spec->master[ch] = vol; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			for (dac = 0; dac < ice->num_total_dacs; dac += 2) | 
					
						
							|  |  |  | 				wm_set_vol(ice, WM_DAC_ATTEN + dac + ch, | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 					   spec->vol[dac + ch], | 
					
						
							|  |  |  | 					   spec->master[ch]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			change = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * DAC volume attenuation mixer control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_vol_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int voices = kcontrol->private_value >> 8; | 
					
						
							|  |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 
					
						
							|  |  |  | 	uinfo->count = voices; | 
					
						
							|  |  |  | 	uinfo->value.integer.min = 0;		/* mute (-101dB) */ | 
					
						
							| 
									
										
										
										
											2009-12-09 12:43:44 +01:00
										 |  |  | 	uinfo->value.integer.max = WM_VOL_MAX;	/* 0dB */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, ofs, voices; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	voices = kcontrol->private_value >> 8; | 
					
						
							|  |  |  | 	ofs = kcontrol->private_value & 0xff; | 
					
						
							|  |  |  | 	for (i = 0; i < voices; i++) | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		ucontrol->value.integer.value[i] = | 
					
						
							|  |  |  | 			spec->vol[ofs+i] & ~WM_VOL_MUTE; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, idx, ofs, voices; | 
					
						
							|  |  |  | 	int change = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	voices = kcontrol->private_value >> 8; | 
					
						
							|  |  |  | 	ofs = kcontrol->private_value & 0xff; | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	for (i = 0; i < voices; i++) { | 
					
						
							| 
									
										
										
										
											2007-11-15 15:56:07 +01:00
										 |  |  | 		unsigned int vol = ucontrol->value.integer.value[i]; | 
					
						
							| 
									
										
										
										
											2009-12-09 12:43:44 +01:00
										 |  |  | 		if (vol > WM_VOL_MAX) | 
					
						
							| 
									
										
										
										
											2010-02-05 10:19:41 +01:00
										 |  |  | 			vol = WM_VOL_MAX; | 
					
						
							|  |  |  | 		vol |= spec->vol[ofs+i] & WM_VOL_MUTE; | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		if (vol != spec->vol[ofs+i]) { | 
					
						
							|  |  |  | 			spec->vol[ofs+i] = vol; | 
					
						
							| 
									
										
										
										
											2007-11-15 15:56:07 +01:00
										 |  |  | 			idx  = WM_DAC_ATTEN + ofs + i; | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 			wm_set_vol(ice, idx, spec->vol[ofs + i], | 
					
						
							|  |  |  | 				   spec->master[i]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			change = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * WM8770 mute control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int wm_mute_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; | 
					
						
							|  |  |  | 	uinfo->count = kcontrol->private_value >> 8; | 
					
						
							|  |  |  | 	uinfo->value.integer.min = 0; | 
					
						
							|  |  |  | 	uinfo->value.integer.max = 1; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_mute_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int voices, ofs, i; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	voices = kcontrol->private_value >> 8; | 
					
						
							|  |  |  | 	ofs = kcontrol->private_value & 0xFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < voices; i++) | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		ucontrol->value.integer.value[i] = | 
					
						
							|  |  |  | 			(spec->vol[ofs + i] & WM_VOL_MUTE) ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_mute_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int change = 0, voices, ofs, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	voices = kcontrol->private_value >> 8; | 
					
						
							|  |  |  | 	ofs = kcontrol->private_value & 0xFF; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	for (i = 0; i < voices; i++) { | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		int val = (spec->vol[ofs + i] & WM_VOL_MUTE) ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (ucontrol->value.integer.value[i] != val) { | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 			spec->vol[ofs + i] &= ~WM_VOL_MUTE; | 
					
						
							|  |  |  | 			spec->vol[ofs + i] |= | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				ucontrol->value.integer.value[i] ? 0 : WM_VOL_MUTE; | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 			wm_set_vol(ice, ofs + i, spec->vol[ofs + i], | 
					
						
							|  |  |  | 				   spec->master[i]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			change = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * WM8770 master mute control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define wm_master_mute_info		snd_ctl_boolean_stereo_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_master_mute_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	ucontrol->value.integer.value[0] = | 
					
						
							|  |  |  | 		(spec->master[0] & WM_VOL_MUTE) ? 0 : 1; | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[1] = | 
					
						
							|  |  |  | 		(spec->master[1] & WM_VOL_MUTE) ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_master_mute_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int change = 0, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	for (i = 0; i < 2; i++) { | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		int val = (spec->master[i] & WM_VOL_MUTE) ? 0 : 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		if (ucontrol->value.integer.value[i] != val) { | 
					
						
							|  |  |  | 			int dac; | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 			spec->master[i] &= ~WM_VOL_MUTE; | 
					
						
							|  |  |  | 			spec->master[i] |= | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				ucontrol->value.integer.value[i] ? 0 : WM_VOL_MUTE; | 
					
						
							|  |  |  | 			for (dac = 0; dac < ice->num_total_dacs; dac += 2) | 
					
						
							|  |  |  | 				wm_set_vol(ice, WM_DAC_ATTEN + dac + i, | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 					   spec->vol[dac + i], | 
					
						
							|  |  |  | 					   spec->master[i]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 			change = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* digital master volume */ | 
					
						
							|  |  |  | #define PCM_0dB 0xff
 | 
					
						
							|  |  |  | #define PCM_RES 128	/* -64dB */
 | 
					
						
							|  |  |  | #define PCM_MIN (PCM_0dB - PCM_RES)
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_pcm_vol_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 
					
						
							|  |  |  | 	uinfo->count = 1; | 
					
						
							|  |  |  | 	uinfo->value.integer.min = 0;		/* mute (-64dB) */ | 
					
						
							|  |  |  | 	uinfo->value.integer.max = PCM_RES;	/* 0dB */ | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_pcm_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short val; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	val = wm_get(ice, WM_DAC_DIG_MASTER_ATTEN) & 0xff; | 
					
						
							|  |  |  | 	val = val > PCM_MIN ? (val - PCM_MIN) : 0; | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[0] = val; | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_pcm_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short ovol, nvol; | 
					
						
							|  |  |  | 	int change = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	nvol = ucontrol->value.integer.value[0]; | 
					
						
							| 
									
										
										
										
											2007-11-15 15:56:07 +01:00
										 |  |  | 	if (nvol > PCM_RES) | 
					
						
							|  |  |  | 		return -EINVAL; | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	nvol = (nvol ? (nvol + PCM_MIN) : 0) & 0xff; | 
					
						
							|  |  |  | 	ovol = wm_get(ice, WM_DAC_DIG_MASTER_ATTEN) & 0xff; | 
					
						
							|  |  |  | 	if (ovol != nvol) { | 
					
						
							|  |  |  | 		wm_put(ice, WM_DAC_DIG_MASTER_ATTEN, nvol); /* prelatch */ | 
					
						
							|  |  |  | 		wm_put_nocache(ice, WM_DAC_DIG_MASTER_ATTEN, nvol | 0x100); /* update */ | 
					
						
							|  |  |  | 		change = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * ADC mute control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define wm_adc_mute_info		snd_ctl_boolean_stereo_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_mute_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short val; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	for (i = 0; i < 2; i++) { | 
					
						
							|  |  |  | 		val = wm_get(ice, WM_ADC_GAIN + i); | 
					
						
							|  |  |  | 		ucontrol->value.integer.value[i] = ~val>>5 & 0x1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_mute_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short new, old; | 
					
						
							|  |  |  | 	int i, change = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	for (i = 0; i < 2; i++) { | 
					
						
							|  |  |  | 		old = wm_get(ice, WM_ADC_GAIN + i); | 
					
						
							|  |  |  | 		new = (~ucontrol->value.integer.value[i]<<5&0x20) | (old&~0x20); | 
					
						
							|  |  |  | 		if (new != old) { | 
					
						
							|  |  |  | 			wm_put(ice, WM_ADC_GAIN + i, new); | 
					
						
							|  |  |  | 			change = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * ADC gain mixer control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_vol_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 
					
						
							|  |  |  | 	uinfo->count = 2; | 
					
						
							|  |  |  | 	uinfo->value.integer.min = 0;		/* -12dB */ | 
					
						
							|  |  |  | 	uinfo->value.integer.max = 0x1f;	/* 19dB */ | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, idx; | 
					
						
							|  |  |  | 	unsigned short vol; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	for (i = 0; i < 2; i++) { | 
					
						
							|  |  |  | 		idx = WM_ADC_GAIN + i; | 
					
						
							|  |  |  | 		vol = wm_get(ice, idx) & 0x1f; | 
					
						
							|  |  |  | 		ucontrol->value.integer.value[i] = vol; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int i, idx; | 
					
						
							|  |  |  | 	unsigned short ovol, nvol; | 
					
						
							|  |  |  | 	int change = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	for (i = 0; i < 2; i++) { | 
					
						
							|  |  |  | 		idx  = WM_ADC_GAIN + i; | 
					
						
							| 
									
										
										
										
											2007-11-15 15:56:07 +01:00
										 |  |  | 		nvol = ucontrol->value.integer.value[i] & 0x1f; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		ovol = wm_get(ice, idx); | 
					
						
							|  |  |  | 		if ((ovol & 0x1f) != nvol) { | 
					
						
							|  |  |  | 			wm_put(ice, idx, nvol | (ovol & ~0x1f)); | 
					
						
							|  |  |  | 			change = 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * ADC input mux mixer control | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_mux_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const char * const texts[] = { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		"CD",		/* AIN1 */ | 
					
						
							|  |  |  | 		"Aux",		/* AIN2 */ | 
					
						
							|  |  |  | 		"Line",		/* AIN3 */ | 
					
						
							|  |  |  | 		"Mic",		/* AIN4 */ | 
					
						
							|  |  |  | 		"AC97"		/* AIN5 */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const char * const universe_texts[] = { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		"Aux1",		/* AIN1 */ | 
					
						
							|  |  |  | 		"CD",		/* AIN2 */ | 
					
						
							|  |  |  | 		"Phono",	/* AIN3 */ | 
					
						
							|  |  |  | 		"Line",		/* AIN4 */ | 
					
						
							|  |  |  | 		"Aux2",		/* AIN5 */ | 
					
						
							|  |  |  | 		"Mic",		/* AIN6 */ | 
					
						
							|  |  |  | 		"Aux3",		/* AIN7 */ | 
					
						
							|  |  |  | 		"AC97"		/* AIN8 */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 18:18:50 +02:00
										 |  |  | 	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AUREON71_UNIVERSE) | 
					
						
							|  |  |  | 		return snd_ctl_enum_info(uinfo, 2, 8, universe_texts); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return snd_ctl_enum_info(uinfo, 2, 5, texts); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_mux_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short val; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_lock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	val = wm_get(ice, WM_ADC_MUX); | 
					
						
							| 
									
										
										
										
											2006-03-20 18:31:57 +01:00
										 |  |  | 	ucontrol->value.enumerated.item[0] = val & 7; | 
					
						
							|  |  |  | 	ucontrol->value.enumerated.item[1] = (val >> 4) & 7; | 
					
						
							| 
									
										
										
										
											2006-01-16 16:34:20 +01:00
										 |  |  | 	mutex_unlock(&ice->gpio_mutex); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int wm_adc_mux_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short oval, nval; | 
					
						
							|  |  |  | 	int change; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	oval = wm_get(ice, WM_ADC_MUX); | 
					
						
							|  |  |  | 	nval = oval & ~0x77; | 
					
						
							| 
									
										
										
										
											2006-03-20 18:31:57 +01:00
										 |  |  | 	nval |= ucontrol->value.enumerated.item[0] & 7; | 
					
						
							|  |  |  | 	nval |= (ucontrol->value.enumerated.item[1] & 7) << 4; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	change = (oval != nval); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							|  |  |  | 		wm_put(ice, WM_ADC_MUX, nval); | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2005-11-04 13:58:11 +01:00
										 |  |  | 	return change; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * CS8415 Input mux | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_cs8415_mux_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const char * const aureon_texts[] = { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		"CD",		/* RXP0 */ | 
					
						
							|  |  |  | 		"Optical"	/* RXP1 */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const char * const prodigy_texts[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		"CD", | 
					
						
							|  |  |  | 		"Coax" | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71) | 
					
						
							| 
									
										
										
										
											2014-10-20 18:18:50 +02:00
										 |  |  | 		return snd_ctl_enum_info(uinfo, 1, 2, prodigy_texts); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-10-20 18:18:50 +02:00
										 |  |  | 		return snd_ctl_enum_info(uinfo, 1, 2, aureon_texts); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_cs8415_mux_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	/* snd_ice1712_save_gpio_status(ice); */ | 
					
						
							|  |  |  | 	/* val = aureon_cs8415_get(ice, CS8415_CTRL2); */ | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	ucontrol->value.enumerated.item[0] = spec->cs8415_mux; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	/* snd_ice1712_restore_gpio_status(ice); */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_cs8415_mux_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned short oval, nval; | 
					
						
							|  |  |  | 	int change; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	oval = aureon_cs8415_get(ice, CS8415_CTRL2); | 
					
						
							|  |  |  | 	nval = oval & ~0x07; | 
					
						
							| 
									
										
										
										
											2006-03-20 18:31:57 +01:00
										 |  |  | 	nval |= ucontrol->value.enumerated.item[0] & 7; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	change = (oval != nval); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							|  |  |  | 		aureon_cs8415_put(ice, CS8415_CTRL2, nval); | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	spec->cs8415_mux = ucontrol->value.enumerated.item[0]; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_rate_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 
					
						
							|  |  |  | 	uinfo->count = 1; | 
					
						
							|  |  |  | 	uinfo->value.integer.min = 0; | 
					
						
							|  |  |  | 	uinfo->value.integer.max = 192000; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_rate_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned char ratio; | 
					
						
							|  |  |  | 	ratio = aureon_cs8415_get(ice, CS8415_RATIO); | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[0] = (int)((unsigned int)ratio * 750); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * CS8415A Mute | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define aureon_cs8415_mute_info		snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_mute_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[0] = (aureon_cs8415_get(ice, CS8415_CTRL1) & 0x20) ? 0 : 1; | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_mute_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	unsigned char oval, nval; | 
					
						
							|  |  |  | 	int change; | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	oval = aureon_cs8415_get(ice, CS8415_CTRL1); | 
					
						
							|  |  |  | 	if (ucontrol->value.integer.value[0]) | 
					
						
							|  |  |  | 		nval = oval & ~0x20; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		nval = oval | 0x20; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	change = (oval != nval); | 
					
						
							|  |  |  | 	if (change) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		aureon_cs8415_put(ice, CS8415_CTRL1, nval); | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return change; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * CS8415A Q-Sub info | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_qsub_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES; | 
					
						
							|  |  |  | 	uinfo->count = 10; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_qsub_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	aureon_cs8415_read(ice, CS8415_QSUB, ucontrol->value.bytes.data, 10); | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_spdif_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958; | 
					
						
							|  |  |  | 	uinfo->count = 1; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_mask_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	memset(ucontrol->value.iec958.status, 0xFF, 24); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | static int aureon_cs8415_spdif_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	aureon_cs8415_read(ice, CS8415_C_BUFFER, ucontrol->value.iec958.status, 24); | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Headphone Amplifier | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_set_headphone_amp(struct snd_ice1712 *ice, int enable) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned int tmp, tmp2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmp2 = tmp = snd_ice1712_gpio_read(ice); | 
					
						
							|  |  |  | 	if (enable) | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 		if (ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71LT && | 
					
						
							|  |  |  | 		    ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71XT) | 
					
						
							| 
									
										
										
										
											2006-05-23 15:46:10 +02:00
										 |  |  | 			tmp |= AUREON_HP_SEL; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			tmp |= PRODIGY_HP_SEL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	else | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 		if (ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71LT && | 
					
						
							|  |  |  | 		    ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71XT) | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 			tmp &= ~AUREON_HP_SEL; | 
					
						
							| 
									
										
										
										
											2006-05-23 15:46:10 +02:00
										 |  |  | 		else | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 			tmp &= ~PRODIGY_HP_SEL; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (tmp != tmp2) { | 
					
						
							|  |  |  | 		snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_get_headphone_amp(struct snd_ice1712 *ice) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned int tmp = snd_ice1712_gpio_read(ice); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	return (tmp & AUREON_HP_SEL) != 0; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define aureon_hpamp_info	snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_hpamp_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ucontrol->value.integer.value[0] = aureon_get_headphone_amp(ice); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_hpamp_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	return aureon_set_headphone_amp(ice, ucontrol->value.integer.value[0]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Deemphasis | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-23 15:42:26 +02:00
										 |  |  | #define aureon_deemp_info	snd_ctl_boolean_mono_info
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_deemp_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ucontrol->value.integer.value[0] = (wm_get(ice, WM_DAC_CTRL2) & 0xf) == 0xf; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_deemp_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	int temp, temp2; | 
					
						
							|  |  |  | 	temp2 = temp = wm_get(ice, WM_DAC_CTRL2); | 
					
						
							|  |  |  | 	if (ucontrol->value.integer.value[0]) | 
					
						
							|  |  |  | 		temp |= 0xf; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		temp &= ~0xf; | 
					
						
							|  |  |  | 	if (temp != temp2) { | 
					
						
							|  |  |  | 		wm_put(ice, WM_DAC_CTRL2, temp); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * ADC Oversampling | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_oversampling_info(struct snd_kcontrol *k, struct snd_ctl_elem_info *uinfo) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const char * const texts[2] = { "128x", "64x"	}; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-10-20 18:18:50 +02:00
										 |  |  | 	return snd_ctl_enum_info(uinfo, 1, 2, texts); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_oversampling_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	ucontrol->value.enumerated.item[0] = (wm_get(ice, WM_MASTER) & 0x8) == 0x8; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | static int aureon_oversampling_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int temp, temp2; | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 	struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	temp2 = temp = wm_get(ice, WM_MASTER); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ucontrol->value.enumerated.item[0]) | 
					
						
							|  |  |  | 		temp |= 0x8; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		temp &= ~0x8; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (temp != temp2) { | 
					
						
							|  |  |  | 		wm_put(ice, WM_MASTER, temp); | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * mixers | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static struct snd_kcontrol_new aureon_dac_controls[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Master Playback Switch", | 
					
						
							|  |  |  | 		.info = wm_master_mute_info, | 
					
						
							|  |  |  | 		.get = wm_master_mute_get, | 
					
						
							|  |  |  | 		.put = wm_master_mute_put | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "Master Playback Volume", | 
					
						
							|  |  |  | 		.info = wm_master_vol_info, | 
					
						
							|  |  |  | 		.get = wm_master_vol_get, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.put = wm_master_vol_put, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_dac } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Front Playback Switch", | 
					
						
							|  |  |  | 		.info = wm_mute_info, | 
					
						
							|  |  |  | 		.get = wm_mute_get, | 
					
						
							|  |  |  | 		.put = wm_mute_put, | 
					
						
							|  |  |  | 		.private_value = (2 << 8) | 0 | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "Front Playback Volume", | 
					
						
							|  |  |  | 		.info = wm_vol_info, | 
					
						
							|  |  |  | 		.get = wm_vol_get, | 
					
						
							|  |  |  | 		.put = wm_vol_put, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.private_value = (2 << 8) | 0, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_dac } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Rear Playback Switch", | 
					
						
							|  |  |  | 		.info = wm_mute_info, | 
					
						
							|  |  |  | 		.get = wm_mute_get, | 
					
						
							|  |  |  | 		.put = wm_mute_put, | 
					
						
							|  |  |  | 		.private_value = (2 << 8) | 2 | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "Rear Playback Volume", | 
					
						
							|  |  |  | 		.info = wm_vol_info, | 
					
						
							|  |  |  | 		.get = wm_vol_get, | 
					
						
							|  |  |  | 		.put = wm_vol_put, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.private_value = (2 << 8) | 2, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_dac } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Center Playback Switch", | 
					
						
							|  |  |  | 		.info = wm_mute_info, | 
					
						
							|  |  |  | 		.get = wm_mute_get, | 
					
						
							|  |  |  | 		.put = wm_mute_put, | 
					
						
							|  |  |  | 		.private_value = (1 << 8) | 4 | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "Center Playback Volume", | 
					
						
							|  |  |  | 		.info = wm_vol_info, | 
					
						
							|  |  |  | 		.get = wm_vol_get, | 
					
						
							|  |  |  | 		.put = wm_vol_put, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.private_value = (1 << 8) | 4, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_dac } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "LFE Playback Switch", | 
					
						
							|  |  |  | 		.info = wm_mute_info, | 
					
						
							|  |  |  | 		.get = wm_mute_get, | 
					
						
							|  |  |  | 		.put = wm_mute_put, | 
					
						
							|  |  |  | 		.private_value = (1 << 8) | 5 | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "LFE Playback Volume", | 
					
						
							|  |  |  | 		.info = wm_vol_info, | 
					
						
							|  |  |  | 		.get = wm_vol_get, | 
					
						
							|  |  |  | 		.put = wm_vol_put, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.private_value = (1 << 8) | 5, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_dac } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Side Playback Switch", | 
					
						
							|  |  |  | 		.info = wm_mute_info, | 
					
						
							|  |  |  | 		.get = wm_mute_get, | 
					
						
							|  |  |  | 		.put = wm_mute_put, | 
					
						
							|  |  |  | 		.private_value = (2 << 8) | 6 | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "Side Playback Volume", | 
					
						
							|  |  |  | 		.info = wm_vol_info, | 
					
						
							|  |  |  | 		.get = wm_vol_get, | 
					
						
							|  |  |  | 		.put = wm_vol_put, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.private_value = (2 << 8) | 6, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_dac } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static struct snd_kcontrol_new wm_controls[] = { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "PCM Playback Switch", | 
					
						
							|  |  |  | 		.info = wm_pcm_mute_info, | 
					
						
							|  |  |  | 		.get = wm_pcm_mute_get, | 
					
						
							|  |  |  | 		.put = wm_pcm_mute_put | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "PCM Playback Volume", | 
					
						
							|  |  |  | 		.info = wm_pcm_vol_info, | 
					
						
							|  |  |  | 		.get = wm_pcm_vol_get, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.put = wm_pcm_vol_put, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_pcm } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Capture Switch", | 
					
						
							|  |  |  | 		.info = wm_adc_mute_info, | 
					
						
							|  |  |  | 		.get = wm_adc_mute_get, | 
					
						
							|  |  |  | 		.put = wm_adc_mute_put, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "Capture Volume", | 
					
						
							|  |  |  | 		.info = wm_adc_vol_info, | 
					
						
							|  |  |  | 		.get = wm_adc_vol_get, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.put = wm_adc_vol_put, | 
					
						
							|  |  |  | 		.tlv = { .p = db_scale_wm_adc } | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Capture Source", | 
					
						
							|  |  |  | 		.info = wm_adc_mux_info, | 
					
						
							|  |  |  | 		.get = wm_adc_mux_get, | 
					
						
							|  |  |  | 		.put = wm_adc_mux_put, | 
					
						
							|  |  |  | 		.private_value = 5 | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "External Amplifier", | 
					
						
							|  |  |  | 		.info = aureon_hpamp_info, | 
					
						
							|  |  |  | 		.get = aureon_hpamp_get, | 
					
						
							|  |  |  | 		.put = aureon_hpamp_put | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "DAC Deemphasis Switch", | 
					
						
							|  |  |  | 		.info = aureon_deemp_info, | 
					
						
							|  |  |  | 		.get = aureon_deemp_get, | 
					
						
							|  |  |  | 		.put = aureon_deemp_put | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "ADC Oversampling", | 
					
						
							|  |  |  | 		.info = aureon_oversampling_info, | 
					
						
							|  |  |  | 		.get = aureon_oversampling_get, | 
					
						
							|  |  |  | 		.put = aureon_oversampling_put | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static struct snd_kcontrol_new ac97_controls[] = { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "AC97 Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mmute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mmute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mmute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MASTER | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "AC97 Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MASTER|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_master } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "CD Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_CD | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "CD Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_CD|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Aux Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_AUX, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "Aux Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_AUX|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Line Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_LINE | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "Line Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_LINE|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Mic Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MIC | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "Mic Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MIC, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Mic Boost (+20dB)", | 
					
						
							|  |  |  | 		.info = aureon_ac97_micboost_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_micboost_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_micboost_put | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static struct snd_kcontrol_new universe_ac97_controls[] = { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.name = "AC97 Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mmute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mmute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mmute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MASTER | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "AC97 Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MASTER|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_master } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "CD Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_AUX | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "CD Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_AUX|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Phono Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_CD | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "Phono Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_CD|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Line Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_LINE | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "Line Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_LINE|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Mic Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MIC | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "Mic Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_MIC, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Mic Boost (+20dB)", | 
					
						
							|  |  |  | 		.info = aureon_ac97_micboost_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_micboost_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_micboost_put | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Aux Playback Switch", | 
					
						
							|  |  |  | 		.info = aureon_ac97_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_mute_put, | 
					
						
							|  |  |  | 		.private_value = AC97_VIDEO, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 				SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 
					
						
							|  |  |  | 		.name = "Aux Playback Volume", | 
					
						
							|  |  |  | 		.info = aureon_ac97_vol_info, | 
					
						
							|  |  |  | 		.get = aureon_ac97_vol_get, | 
					
						
							|  |  |  | 		.put = aureon_ac97_vol_put, | 
					
						
							|  |  |  | 		.private_value = AC97_VIDEO|AUREON_AC97_STEREO, | 
					
						
							| 
									
										
										
										
											2006-08-30 16:57:37 +02:00
										 |  |  | 		.tlv = { .p = db_scale_ac97_gain } | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = "Aux Source", | 
					
						
							|  |  |  | 		.info = aureon_universe_inmux_info, | 
					
						
							|  |  |  | 		.get = aureon_universe_inmux_get, | 
					
						
							|  |  |  | 		.put = aureon_universe_inmux_put | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static struct snd_kcontrol_new cs8415_controls[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		.name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.info = aureon_cs8415_mute_info, | 
					
						
							|  |  |  | 		.get = aureon_cs8415_mute_get, | 
					
						
							|  |  |  | 		.put = aureon_cs8415_mute_put | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 
					
						
							|  |  |  | 		.name = SNDRV_CTL_NAME_IEC958("", CAPTURE, NONE) "Source", | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.info = aureon_cs8415_mux_info, | 
					
						
							|  |  |  | 		.get = aureon_cs8415_mux_get, | 
					
						
							|  |  |  | 		.put = aureon_cs8415_mux_put, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_PCM, | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		.name = SNDRV_CTL_NAME_IEC958("Q-subcode ", CAPTURE, DEFAULT), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, | 
					
						
							|  |  |  | 		.info = aureon_cs8415_qsub_info, | 
					
						
							|  |  |  | 		.get = aureon_cs8415_qsub_get, | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_PCM, | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		.name = SNDRV_CTL_NAME_IEC958("", CAPTURE, MASK), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.access = SNDRV_CTL_ELEM_ACCESS_READ, | 
					
						
							|  |  |  | 		.info = aureon_cs8415_spdif_info, | 
					
						
							|  |  |  | 		.get = aureon_cs8415_mask_get | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_PCM, | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		.name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT), | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, | 
					
						
							|  |  |  | 		.info = aureon_cs8415_spdif_info, | 
					
						
							|  |  |  | 		.get = aureon_cs8415_spdif_get | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.iface = SNDRV_CTL_ELEM_IFACE_PCM, | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		.name = SNDRV_CTL_NAME_IEC958("", CAPTURE, NONE) "Rate", | 
					
						
							|  |  |  | 		.access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.info = aureon_cs8415_rate_info, | 
					
						
							|  |  |  | 		.get = aureon_cs8415_rate_get | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static int aureon_add_controls(struct snd_ice1712 *ice) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned int i, counts; | 
					
						
							|  |  |  | 	int err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	counts = ARRAY_SIZE(aureon_dac_controls); | 
					
						
							|  |  |  | 	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AUREON51_SKY) | 
					
						
							|  |  |  | 		counts -= 2; /* no side */ | 
					
						
							|  |  |  | 	for (i = 0; i < counts; i++) { | 
					
						
							|  |  |  | 		err = snd_ctl_add(ice->card, snd_ctl_new1(&aureon_dac_controls[i], ice)); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (i = 0; i < ARRAY_SIZE(wm_controls); i++) { | 
					
						
							|  |  |  | 		err = snd_ctl_add(ice->card, snd_ctl_new1(&wm_controls[i], ice)); | 
					
						
							|  |  |  | 		if (err < 0) | 
					
						
							|  |  |  | 			return err; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AUREON71_UNIVERSE) { | 
					
						
							|  |  |  | 		for (i = 0; i < ARRAY_SIZE(universe_ac97_controls); i++) { | 
					
						
							|  |  |  | 			err = snd_ctl_add(ice->card, snd_ctl_new1(&universe_ac97_controls[i], ice)); | 
					
						
							|  |  |  | 			if (err < 0) | 
					
						
							|  |  |  | 				return err; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	} else if (ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71LT && | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 		 ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71XT) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		for (i = 0; i < ARRAY_SIZE(ac97_controls); i++) { | 
					
						
							|  |  |  | 			err = snd_ctl_add(ice->card, snd_ctl_new1(&ac97_controls[i], ice)); | 
					
						
							|  |  |  | 			if (err < 0) | 
					
						
							|  |  |  | 				return err; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 	if (ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71LT && | 
					
						
							|  |  |  | 	    ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71XT) { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		unsigned char id; | 
					
						
							|  |  |  | 		snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 		id = aureon_cs8415_get(ice, CS8415_ID); | 
					
						
							|  |  |  | 		if (id != 0x41) | 
					
						
							| 
									
										
										
										
											2014-02-25 17:16:16 +01:00
										 |  |  | 			dev_info(ice->card->dev, | 
					
						
							|  |  |  | 				 "No CS8415 chip. Skipping CS8415 controls.\n"); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		else if ((id & 0x0F) != 0x01) | 
					
						
							| 
									
										
										
										
											2014-02-25 17:16:16 +01:00
										 |  |  | 			dev_info(ice->card->dev, | 
					
						
							|  |  |  | 				 "Detected unsupported CS8415 rev. (%c)\n", | 
					
						
							|  |  |  | 				 (char)((id & 0x0F) + 'A' - 1)); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 			for (i = 0; i < ARRAY_SIZE(cs8415_controls); i++) { | 
					
						
							| 
									
										
										
										
											2005-11-17 15:00:18 +01:00
										 |  |  | 				struct snd_kcontrol *kctl; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 				err = snd_ctl_add(ice->card, (kctl = snd_ctl_new1(&cs8415_controls[i], ice))); | 
					
						
							|  |  |  | 				if (err < 0) | 
					
						
							|  |  |  | 					return err; | 
					
						
							|  |  |  | 				if (i > 1) | 
					
						
							|  |  |  | 					kctl->id.device = ice->pcm->device; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		snd_ice1712_restore_gpio_status(ice); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  |  * reset the chip | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  | static int aureon_reset(struct snd_ice1712 *ice) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const unsigned short wm_inits_aureon[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		/* These come first to reduce init pop noise */ | 
					
						
							|  |  |  | 		0x1b, 0x044,		/* ADC Mux (AC'97 source) */ | 
					
						
							|  |  |  | 		0x1c, 0x00B,		/* Out Mux1 (VOUT1 = DAC+AUX, VOUT2 = DAC) */ | 
					
						
							|  |  |  | 		0x1d, 0x009,		/* Out Mux2 (VOUT2 = DAC, VOUT3 = DAC) */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x18, 0x000,		/* All power-up */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x16, 0x122,		/* I2S, normal polarity, 24bit */ | 
					
						
							|  |  |  | 		0x17, 0x022,		/* 256fs, slave mode */ | 
					
						
							|  |  |  | 		0x00, 0,		/* DAC1 analog mute */ | 
					
						
							|  |  |  | 		0x01, 0,		/* DAC2 analog mute */ | 
					
						
							|  |  |  | 		0x02, 0,		/* DAC3 analog mute */ | 
					
						
							|  |  |  | 		0x03, 0,		/* DAC4 analog mute */ | 
					
						
							|  |  |  | 		0x04, 0,		/* DAC5 analog mute */ | 
					
						
							|  |  |  | 		0x05, 0,		/* DAC6 analog mute */ | 
					
						
							|  |  |  | 		0x06, 0,		/* DAC7 analog mute */ | 
					
						
							|  |  |  | 		0x07, 0,		/* DAC8 analog mute */ | 
					
						
							|  |  |  | 		0x08, 0x100,		/* master analog mute */ | 
					
						
							|  |  |  | 		0x09, 0xff,		/* DAC1 digital full */ | 
					
						
							|  |  |  | 		0x0a, 0xff,		/* DAC2 digital full */ | 
					
						
							|  |  |  | 		0x0b, 0xff,		/* DAC3 digital full */ | 
					
						
							|  |  |  | 		0x0c, 0xff,		/* DAC4 digital full */ | 
					
						
							|  |  |  | 		0x0d, 0xff,		/* DAC5 digital full */ | 
					
						
							|  |  |  | 		0x0e, 0xff,		/* DAC6 digital full */ | 
					
						
							|  |  |  | 		0x0f, 0xff,		/* DAC7 digital full */ | 
					
						
							|  |  |  | 		0x10, 0xff,		/* DAC8 digital full */ | 
					
						
							|  |  |  | 		0x11, 0x1ff,		/* master digital full */ | 
					
						
							|  |  |  | 		0x12, 0x000,		/* phase normal */ | 
					
						
							|  |  |  | 		0x13, 0x090,		/* unmute DAC L/R */ | 
					
						
							|  |  |  | 		0x14, 0x000,		/* all unmute */ | 
					
						
							|  |  |  | 		0x15, 0x000,		/* no deemphasis, no ZFLG */ | 
					
						
							|  |  |  | 		0x19, 0x000,		/* -12dB ADC/L */ | 
					
						
							|  |  |  | 		0x1a, 0x000,		/* -12dB ADC/R */ | 
					
						
							|  |  |  | 		(unsigned short)-1 | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const unsigned short wm_inits_prodigy[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* These come first to reduce init pop noise */ | 
					
						
							|  |  |  | 		0x1b, 0x000,		/* ADC Mux */ | 
					
						
							|  |  |  | 		0x1c, 0x009,		/* Out Mux1 */ | 
					
						
							|  |  |  | 		0x1d, 0x009,		/* Out Mux2 */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x18, 0x000,		/* All power-up */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x16, 0x022,		/* I2S, normal polarity, 24bit, high-pass on */ | 
					
						
							|  |  |  | 		0x17, 0x006,		/* 128fs, slave mode */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x00, 0,		/* DAC1 analog mute */ | 
					
						
							|  |  |  | 		0x01, 0,		/* DAC2 analog mute */ | 
					
						
							|  |  |  | 		0x02, 0,		/* DAC3 analog mute */ | 
					
						
							|  |  |  | 		0x03, 0,		/* DAC4 analog mute */ | 
					
						
							|  |  |  | 		0x04, 0,		/* DAC5 analog mute */ | 
					
						
							|  |  |  | 		0x05, 0,		/* DAC6 analog mute */ | 
					
						
							|  |  |  | 		0x06, 0,		/* DAC7 analog mute */ | 
					
						
							|  |  |  | 		0x07, 0,		/* DAC8 analog mute */ | 
					
						
							|  |  |  | 		0x08, 0x100,		/* master analog mute */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x09, 0x7f,		/* DAC1 digital full */ | 
					
						
							|  |  |  | 		0x0a, 0x7f,		/* DAC2 digital full */ | 
					
						
							|  |  |  | 		0x0b, 0x7f,		/* DAC3 digital full */ | 
					
						
							|  |  |  | 		0x0c, 0x7f,		/* DAC4 digital full */ | 
					
						
							|  |  |  | 		0x0d, 0x7f,		/* DAC5 digital full */ | 
					
						
							|  |  |  | 		0x0e, 0x7f,		/* DAC6 digital full */ | 
					
						
							|  |  |  | 		0x0f, 0x7f,		/* DAC7 digital full */ | 
					
						
							|  |  |  | 		0x10, 0x7f,		/* DAC8 digital full */ | 
					
						
							|  |  |  | 		0x11, 0x1FF,		/* master digital full */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x12, 0x000,		/* phase normal */ | 
					
						
							|  |  |  | 		0x13, 0x090,		/* unmute DAC L/R */ | 
					
						
							|  |  |  | 		0x14, 0x000,		/* all unmute */ | 
					
						
							|  |  |  | 		0x15, 0x000,		/* no deemphasis, no ZFLG */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		0x19, 0x000,		/* -12dB ADC/L */ | 
					
						
							|  |  |  | 		0x1a, 0x000,		/* -12dB ADC/R */ | 
					
						
							|  |  |  | 		(unsigned short)-1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	static const unsigned short cs_inits[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		0x0441, /* RUN */ | 
					
						
							|  |  |  | 		0x0180, /* no mute, OMCK output on RMCK pin */ | 
					
						
							|  |  |  | 		0x0201, /* S/PDIF source on RXP1 */ | 
					
						
							|  |  |  | 		0x0605, /* slave, 24bit, MSB on second OSCLK, SDOUT for right channel when OLRCK is high */ | 
					
						
							|  |  |  | 		(unsigned short)-1 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 	unsigned int tmp; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:26:36 +01:00
										 |  |  | 	const unsigned short *p; | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  | 	int err; | 
					
						
							|  |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	err = aureon_ac97_init(ice); | 
					
						
							|  |  |  | 	if (err != 0) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_gpio_set_dir(ice, 0x5fffff); /* fix this for the time being */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* reset the wm codec as the SPI mode */ | 
					
						
							|  |  |  | 	snd_ice1712_save_gpio_status(ice); | 
					
						
							|  |  |  | 	snd_ice1712_gpio_set_mask(ice, ~(AUREON_WM_RESET|AUREON_WM_CS|AUREON_CS8415_CS|AUREON_HP_SEL)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tmp = snd_ice1712_gpio_read(ice); | 
					
						
							|  |  |  | 	tmp &= ~AUREON_WM_RESET; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(1); | 
					
						
							|  |  |  | 	tmp |= AUREON_WM_CS | AUREON_CS8415_CS; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(1); | 
					
						
							|  |  |  | 	tmp |= AUREON_WM_RESET; | 
					
						
							|  |  |  | 	snd_ice1712_gpio_write(ice, tmp); | 
					
						
							|  |  |  | 	udelay(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* initialize WM8770 codec */ | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71 || | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 		ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71LT || | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		ice->eeprom.subvendor == VT1724_SUBDEVICE_PRODIGY71XT) | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		p = wm_inits_prodigy; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		p = wm_inits_aureon; | 
					
						
							|  |  |  | 	for (; *p != (unsigned short)-1; p += 2) | 
					
						
							|  |  |  | 		wm_put(ice, p[0], p[1]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* initialize CS8415A codec */ | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 	if (ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71LT && | 
					
						
							|  |  |  | 	    ice->eeprom.subvendor != VT1724_SUBDEVICE_PRODIGY71XT) { | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 		for (p = cs_inits; *p != (unsigned short)-1; p++) | 
					
						
							|  |  |  | 			aureon_spi_write(ice, AUREON_CS8415_CS, *p | 0x200000, 24); | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		spec->cs8415_mux = 1; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 		aureon_set_headphone_amp(ice, 1); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	snd_ice1712_restore_gpio_status(ice); | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	/* initialize PCA9554 pin directions & set default input */ | 
					
						
							| 
									
										
										
										
											2006-03-31 13:10:35 +02:00
										 |  |  | 	aureon_pca9554_write(ice, PCA9554_DIR, 0x00); | 
					
						
							|  |  |  | 	aureon_pca9554_write(ice, PCA9554_OUT, 0x00);   /* internal AUX */ | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * suspend/resume | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-08-14 18:12:04 +02:00
										 |  |  | #ifdef CONFIG_PM_SLEEP
 | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  | static int aureon_resume(struct snd_ice1712 *ice) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct aureon_spec *spec = ice->spec; | 
					
						
							|  |  |  | 	int err, i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = aureon_reset(ice); | 
					
						
							|  |  |  | 	if (err != 0) | 
					
						
							|  |  |  | 		return err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* workaround for poking volume with alsamixer after resume:
 | 
					
						
							|  |  |  | 	 * just set stored volume again */ | 
					
						
							|  |  |  | 	for (i = 0; i < ice->num_total_dacs; i++) | 
					
						
							|  |  |  | 		wm_set_vol(ice, i, spec->vol[i], spec->master[i % 2]); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * initialize the chip | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static int aureon_init(struct snd_ice1712 *ice) | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct aureon_spec *spec; | 
					
						
							|  |  |  | 	int i, err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!spec) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	ice->spec = spec; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AUREON51_SKY) { | 
					
						
							|  |  |  | 		ice->num_total_dacs = 6; | 
					
						
							|  |  |  | 		ice->num_total_adcs = 2; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		/* aureon 7.1 and prodigy 7.1 */ | 
					
						
							|  |  |  | 		ice->num_total_dacs = 8; | 
					
						
							|  |  |  | 		ice->num_total_adcs = 2; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-30 22:57:33 -03:00
										 |  |  | 	/* to remember the register values of CS8415 */ | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  | 	ice->akm = kzalloc(sizeof(struct snd_akm4xxx), GFP_KERNEL); | 
					
						
							|  |  |  | 	if (!ice->akm) | 
					
						
							|  |  |  | 		return -ENOMEM; | 
					
						
							|  |  |  | 	ice->akm_codecs = 1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	err = aureon_reset(ice); | 
					
						
							|  |  |  | 	if (err != 0) | 
					
						
							|  |  |  | 		return err; | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 	spec->master[0] = WM_VOL_MUTE; | 
					
						
							|  |  |  | 	spec->master[1] = WM_VOL_MUTE; | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	for (i = 0; i < ice->num_total_dacs; i++) { | 
					
						
							| 
									
										
										
										
											2008-01-18 13:36:07 +01:00
										 |  |  | 		spec->vol[i] = WM_VOL_MUTE; | 
					
						
							|  |  |  | 		wm_set_vol(ice, i, spec->vol[i], spec->master[i % 2]); | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-14 18:12:04 +02:00
										 |  |  | #ifdef CONFIG_PM_SLEEP
 | 
					
						
							| 
									
										
										
										
											2010-03-23 04:12:38 +01:00
										 |  |  | 	ice->pm_resume = aureon_resume; | 
					
						
							|  |  |  | 	ice->pm_suspend_enabled = 1; | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Aureon boards don't provide the EEPROM data except for the vendor IDs. | 
					
						
							|  |  |  |  * hence the driver needs to sets up it properly. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static unsigned char aureon51_eeprom[] = { | 
					
						
							| 
									
										
										
										
											2007-01-29 15:25:40 +01:00
										 |  |  | 	[ICE_EEP2_SYSCONF]     = 0x0a,	/* clock 512, spdif-in/ADC, 3DACs */ | 
					
						
							|  |  |  | 	[ICE_EEP2_ACLINK]      = 0x80,	/* I2S */ | 
					
						
							|  |  |  | 	[ICE_EEP2_I2S]         = 0xfc,	/* vol, 96k, 24bit, 192k */ | 
					
						
							|  |  |  | 	[ICE_EEP2_SPDIF]       = 0xc3,	/* out-en, out-int, spdif-in */ | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR]    = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR1]   = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR2]   = 0x5f, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK]   = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK1]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK2]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE1] = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE2] = 0x00, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static unsigned char aureon71_eeprom[] = { | 
					
						
							| 
									
										
										
										
											2007-01-29 15:25:40 +01:00
										 |  |  | 	[ICE_EEP2_SYSCONF]     = 0x0b,	/* clock 512, spdif-in/ADC, 4DACs */ | 
					
						
							|  |  |  | 	[ICE_EEP2_ACLINK]      = 0x80,	/* I2S */ | 
					
						
							|  |  |  | 	[ICE_EEP2_I2S]         = 0xfc,	/* vol, 96k, 24bit, 192k */ | 
					
						
							|  |  |  | 	[ICE_EEP2_SPDIF]       = 0xc3,	/* out-en, out-int, spdif-in */ | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR]    = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR1]   = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR2]   = 0x5f, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK]   = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK1]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK2]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE1] = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE2] = 0x00, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:25:40 +01:00
										 |  |  | #define prodigy71_eeprom aureon71_eeprom
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static unsigned char aureon71_universe_eeprom[] = { | 
					
						
							| 
									
										
										
										
											2008-08-29 14:11:10 +02:00
										 |  |  | 	[ICE_EEP2_SYSCONF]     = 0x2b,	/* clock 512, mpu401, spdif-in/ADC,
 | 
					
						
							|  |  |  | 					 * 4DACs | 
					
						
							|  |  |  | 					 */ | 
					
						
							|  |  |  | 	[ICE_EEP2_ACLINK]      = 0x80,	/* I2S */ | 
					
						
							|  |  |  | 	[ICE_EEP2_I2S]         = 0xfc,	/* vol, 96k, 24bit, 192k */ | 
					
						
							|  |  |  | 	[ICE_EEP2_SPDIF]       = 0xc3,	/* out-en, out-int, spdif-in */ | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR]    = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR1]   = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR2]   = 0x5f, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK]   = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK1]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK2]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE1] = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE2] = 0x00, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | static unsigned char prodigy71lt_eeprom[] = { | 
					
						
							| 
									
										
										
										
											2007-01-29 15:25:40 +01:00
										 |  |  | 	[ICE_EEP2_SYSCONF]     = 0x4b,	/* clock 384, spdif-in/ADC, 4DACs */ | 
					
						
							|  |  |  | 	[ICE_EEP2_ACLINK]      = 0x80,	/* I2S */ | 
					
						
							|  |  |  | 	[ICE_EEP2_I2S]         = 0xfc,	/* vol, 96k, 24bit, 192k */ | 
					
						
							|  |  |  | 	[ICE_EEP2_SPDIF]       = 0xc3,	/* out-en, out-int, spdif-in */ | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR]    = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR1]   = 0xff, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_DIR2]   = 0x5f, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK]   = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK1]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_MASK2]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE]  = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE1] = 0x00, | 
					
						
							|  |  |  | 	[ICE_EEP2_GPIO_STATE2] = 0x00, | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2007-01-29 15:25:40 +01:00
										 |  |  | #define prodigy71xt_eeprom prodigy71lt_eeprom
 | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | /* entry point */ | 
					
						
							| 
									
										
										
										
											2012-12-06 12:35:10 -05:00
										 |  |  | struct snd_ice1712_card_info snd_vt1724_aureon_cards[] = { | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.subvendor = VT1724_SUBDEVICE_AUREON51_SKY, | 
					
						
							|  |  |  | 		.name = "Terratec Aureon 5.1-Sky", | 
					
						
							|  |  |  | 		.model = "aureon51", | 
					
						
							|  |  |  | 		.chip_init = aureon_init, | 
					
						
							|  |  |  | 		.build_controls = aureon_add_controls, | 
					
						
							|  |  |  | 		.eeprom_size = sizeof(aureon51_eeprom), | 
					
						
							|  |  |  | 		.eeprom_data = aureon51_eeprom, | 
					
						
							|  |  |  | 		.driver = "Aureon51", | 
					
						
							|  |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.subvendor = VT1724_SUBDEVICE_AUREON71_SPACE, | 
					
						
							|  |  |  | 		.name = "Terratec Aureon 7.1-Space", | 
					
						
							|  |  |  | 		.model = "aureon71", | 
					
						
							|  |  |  | 		.chip_init = aureon_init, | 
					
						
							|  |  |  | 		.build_controls = aureon_add_controls, | 
					
						
							|  |  |  | 		.eeprom_size = sizeof(aureon71_eeprom), | 
					
						
							|  |  |  | 		.eeprom_data = aureon71_eeprom, | 
					
						
							|  |  |  | 		.driver = "Aureon71", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.subvendor = VT1724_SUBDEVICE_AUREON71_UNIVERSE, | 
					
						
							|  |  |  | 		.name = "Terratec Aureon 7.1-Universe", | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 		.model = "universe", | 
					
						
							| 
									
										
										
										
											2008-09-07 01:19:00 +04:00
										 |  |  | 		.chip_init = aureon_init, | 
					
						
							|  |  |  | 		.build_controls = aureon_add_controls, | 
					
						
							| 
									
										
										
										
											2008-08-29 14:11:10 +02:00
										 |  |  | 		.eeprom_size = sizeof(aureon71_universe_eeprom), | 
					
						
							|  |  |  | 		.eeprom_data = aureon71_universe_eeprom, | 
					
						
							| 
									
										
										
										
											2006-06-29 16:40:21 +02:00
										 |  |  | 		.driver = "Aureon71Univ", /* keep in 15 letters */ | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	}, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		.subvendor = VT1724_SUBDEVICE_PRODIGY71, | 
					
						
							|  |  |  | 		.name = "Audiotrak Prodigy 7.1", | 
					
						
							|  |  |  | 		.model = "prodigy71", | 
					
						
							|  |  |  | 		.chip_init = aureon_init, | 
					
						
							|  |  |  | 		.build_controls = aureon_add_controls, | 
					
						
							|  |  |  | 		.eeprom_size = sizeof(prodigy71_eeprom), | 
					
						
							|  |  |  | 		.eeprom_data = prodigy71_eeprom, | 
					
						
							|  |  |  | 		.driver = "Prodigy71", /* should be identical with Aureon71 */ | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2006-01-13 13:50:16 +01:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.subvendor = VT1724_SUBDEVICE_PRODIGY71LT, | 
					
						
							|  |  |  | 		.name = "Audiotrak Prodigy 7.1 LT", | 
					
						
							|  |  |  | 		.model = "prodigy71lt", | 
					
						
							|  |  |  | 		.chip_init = aureon_init, | 
					
						
							|  |  |  | 		.build_controls = aureon_add_controls, | 
					
						
							|  |  |  | 		.eeprom_size = sizeof(prodigy71lt_eeprom), | 
					
						
							|  |  |  | 		.eeprom_data = prodigy71lt_eeprom, | 
					
						
							|  |  |  | 		.driver = "Prodigy71LT", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2006-12-18 13:12:18 +01:00
										 |  |  | 	{ | 
					
						
							|  |  |  | 		.subvendor = VT1724_SUBDEVICE_PRODIGY71XT, | 
					
						
							|  |  |  | 		.name = "Audiotrak Prodigy 7.1 XT", | 
					
						
							|  |  |  | 		.model = "prodigy71xt", | 
					
						
							|  |  |  | 		.chip_init = aureon_init, | 
					
						
							|  |  |  | 		.build_controls = aureon_add_controls, | 
					
						
							|  |  |  | 		.eeprom_size = sizeof(prodigy71xt_eeprom), | 
					
						
							|  |  |  | 		.eeprom_data = prodigy71xt_eeprom, | 
					
						
							|  |  |  | 		.driver = "Prodigy71LT", | 
					
						
							|  |  |  | 	}, | 
					
						
							| 
									
										
										
										
											2005-04-16 15:20:36 -07:00
										 |  |  | 	{ } /* terminator */ | 
					
						
							|  |  |  | }; |