]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - sound/pci/ice1712/pontis.c
ALSA: pci: Clean up with new procfs helpers
[thirdparty/kernel/stable.git] / sound / pci / ice1712 / pontis.c
CommitLineData
1da177e4
LT
1/*
2 * ALSA driver for ICEnsemble VT1724 (Envy24HT)
3 *
4 * Lowlevel functions for Pontis MS300
5 *
6 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 */
23
1da177e4
LT
24#include <linux/delay.h>
25#include <linux/interrupt.h>
26#include <linux/init.h>
27#include <linux/slab.h>
62932df8
IM
28#include <linux/mutex.h>
29
1da177e4
LT
30#include <sound/core.h>
31#include <sound/info.h>
f640c320 32#include <sound/tlv.h>
1da177e4
LT
33
34#include "ice1712.h"
35#include "envy24ht.h"
36#include "pontis.h"
37
38/* I2C addresses */
39#define WM_DEV 0x34
40#define CS_DEV 0x20
41
42/* WM8776 registers */
43#define WM_HP_ATTEN_L 0x00 /* headphone left attenuation */
44#define WM_HP_ATTEN_R 0x01 /* headphone left attenuation */
cc67b7f7
VM
45#define WM_HP_MASTER 0x02 /* headphone master (both channels) */
46 /* override LLR */
1da177e4
LT
47#define WM_DAC_ATTEN_L 0x03 /* digital left attenuation */
48#define WM_DAC_ATTEN_R 0x04
49#define WM_DAC_MASTER 0x05
50#define WM_PHASE_SWAP 0x06 /* DAC phase swap */
51#define WM_DAC_CTRL1 0x07
52#define WM_DAC_MUTE 0x08
53#define WM_DAC_CTRL2 0x09
54#define WM_DAC_INT 0x0a
55#define WM_ADC_INT 0x0b
56#define WM_MASTER_CTRL 0x0c
57#define WM_POWERDOWN 0x0d
58#define WM_ADC_ATTEN_L 0x0e
59#define WM_ADC_ATTEN_R 0x0f
60#define WM_ALC_CTRL1 0x10
61#define WM_ALC_CTRL2 0x11
62#define WM_ALC_CTRL3 0x12
63#define WM_NOISE_GATE 0x13
64#define WM_LIMITER 0x14
65#define WM_ADC_MUX 0x15
66#define WM_OUT_MUX 0x16
67#define WM_RESET 0x17
68
69/*
70 * GPIO
71 */
72#define PONTIS_CS_CS (1<<4) /* CS */
73#define PONTIS_CS_CLK (1<<5) /* CLK */
74#define PONTIS_CS_RDATA (1<<6) /* CS8416 -> VT1720 */
75#define PONTIS_CS_WDATA (1<<7) /* VT1720 -> CS8416 */
76
77
78/*
79 * get the current register value of WM codec
80 */
ab0c7d72 81static unsigned short wm_get(struct snd_ice1712 *ice, int reg)
1da177e4
LT
82{
83 reg <<= 1;
84 return ((unsigned short)ice->akm[0].images[reg] << 8) |
85 ice->akm[0].images[reg + 1];
86}
87
88/*
89 * set the register value of WM codec and remember it
90 */
ab0c7d72 91static void wm_put_nocache(struct snd_ice1712 *ice, int reg, unsigned short val)
1da177e4
LT
92{
93 unsigned short cval;
94 cval = (reg << 9) | val;
95 snd_vt1724_write_i2c(ice, WM_DEV, cval >> 8, cval & 0xff);
96}
97
ab0c7d72 98static void wm_put(struct snd_ice1712 *ice, int reg, unsigned short val)
1da177e4
LT
99{
100 wm_put_nocache(ice, reg, val);
101 reg <<= 1;
102 ice->akm[0].images[reg] = val >> 8;
103 ice->akm[0].images[reg + 1] = val;
104}
105
106/*
107 * DAC volume attenuation mixer control (-64dB to 0dB)
108 */
109
110#define DAC_0dB 0xff
111#define DAC_RES 128
112#define DAC_MIN (DAC_0dB - DAC_RES)
113
ab0c7d72 114static int wm_dac_vol_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4
LT
115{
116 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
117 uinfo->count = 2;
118 uinfo->value.integer.min = 0; /* mute */
119 uinfo->value.integer.max = DAC_RES; /* 0dB, 0.5dB step */
120 return 0;
121}
122
ab0c7d72 123static int wm_dac_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 124{
ab0c7d72 125 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
126 unsigned short val;
127 int i;
128
62932df8 129 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
130 for (i = 0; i < 2; i++) {
131 val = wm_get(ice, WM_DAC_ATTEN_L + i) & 0xff;
132 val = val > DAC_MIN ? (val - DAC_MIN) : 0;
133 ucontrol->value.integer.value[i] = val;
134 }
62932df8 135 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
136 return 0;
137}
138
ab0c7d72 139static int wm_dac_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 140{
ab0c7d72 141 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
142 unsigned short oval, nval;
143 int i, idx, change = 0;
144
62932df8 145 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
146 for (i = 0; i < 2; i++) {
147 nval = ucontrol->value.integer.value[i];
148 nval = (nval ? (nval + DAC_MIN) : 0) & 0xff;
149 idx = WM_DAC_ATTEN_L + i;
150 oval = wm_get(ice, idx) & 0xff;
151 if (oval != nval) {
152 wm_put(ice, idx, nval);
153 wm_put_nocache(ice, idx, nval | 0x100);
154 change = 1;
155 }
156 }
62932df8 157 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
158 return change;
159}
160
161/*
162 * ADC gain mixer control (-64dB to 0dB)
163 */
164
165#define ADC_0dB 0xcf
166#define ADC_RES 128
167#define ADC_MIN (ADC_0dB - ADC_RES)
168
ab0c7d72 169static int wm_adc_vol_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4
LT
170{
171 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
172 uinfo->count = 2;
173 uinfo->value.integer.min = 0; /* mute (-64dB) */
174 uinfo->value.integer.max = ADC_RES; /* 0dB, 0.5dB step */
175 return 0;
176}
177
ab0c7d72 178static int wm_adc_vol_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 179{
ab0c7d72 180 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
181 unsigned short val;
182 int i;
183
62932df8 184 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
185 for (i = 0; i < 2; i++) {
186 val = wm_get(ice, WM_ADC_ATTEN_L + i) & 0xff;
187 val = val > ADC_MIN ? (val - ADC_MIN) : 0;
188 ucontrol->value.integer.value[i] = val;
189 }
62932df8 190 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
191 return 0;
192}
193
ab0c7d72 194static int wm_adc_vol_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 195{
ab0c7d72 196 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
197 unsigned short ovol, nvol;
198 int i, idx, change = 0;
199
62932df8 200 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
201 for (i = 0; i < 2; i++) {
202 nvol = ucontrol->value.integer.value[i];
203 nvol = nvol ? (nvol + ADC_MIN) : 0;
204 idx = WM_ADC_ATTEN_L + i;
205 ovol = wm_get(ice, idx) & 0xff;
206 if (ovol != nvol) {
207 wm_put(ice, idx, nvol);
208 change = 1;
209 }
210 }
62932df8 211 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
212 return change;
213}
214
215/*
216 * ADC input mux mixer control
217 */
a5ce8890 218#define wm_adc_mux_info snd_ctl_boolean_mono_info
1da177e4 219
ab0c7d72 220static int wm_adc_mux_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 221{
ab0c7d72 222 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
223 int bit = kcontrol->private_value;
224
62932df8 225 mutex_lock(&ice->gpio_mutex);
1da177e4 226 ucontrol->value.integer.value[0] = (wm_get(ice, WM_ADC_MUX) & (1 << bit)) ? 1 : 0;
62932df8 227 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
228 return 0;
229}
230
ab0c7d72 231static int wm_adc_mux_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 232{
ab0c7d72 233 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
234 int bit = kcontrol->private_value;
235 unsigned short oval, nval;
236 int change;
237
62932df8 238 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
239 nval = oval = wm_get(ice, WM_ADC_MUX);
240 if (ucontrol->value.integer.value[0])
241 nval |= (1 << bit);
242 else
243 nval &= ~(1 << bit);
244 change = nval != oval;
245 if (change) {
246 wm_put(ice, WM_ADC_MUX, nval);
247 }
62932df8 248 mutex_unlock(&ice->gpio_mutex);
43337ac0 249 return change;
1da177e4
LT
250}
251
252/*
253 * Analog bypass (In -> Out)
254 */
a5ce8890 255#define wm_bypass_info snd_ctl_boolean_mono_info
1da177e4 256
ab0c7d72 257static int wm_bypass_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 258{
ab0c7d72 259 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 260
62932df8 261 mutex_lock(&ice->gpio_mutex);
1da177e4 262 ucontrol->value.integer.value[0] = (wm_get(ice, WM_OUT_MUX) & 0x04) ? 1 : 0;
62932df8 263 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
264 return 0;
265}
266
ab0c7d72 267static int wm_bypass_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 268{
ab0c7d72 269 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
270 unsigned short val, oval;
271 int change = 0;
272
62932df8 273 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
274 val = oval = wm_get(ice, WM_OUT_MUX);
275 if (ucontrol->value.integer.value[0])
276 val |= 0x04;
277 else
278 val &= ~0x04;
279 if (val != oval) {
280 wm_put(ice, WM_OUT_MUX, val);
281 change = 1;
282 }
62932df8 283 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
284 return change;
285}
286
287/*
288 * Left/Right swap
289 */
a5ce8890 290#define wm_chswap_info snd_ctl_boolean_mono_info
1da177e4 291
ab0c7d72 292static int wm_chswap_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 293{
ab0c7d72 294 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 295
62932df8 296 mutex_lock(&ice->gpio_mutex);
1da177e4 297 ucontrol->value.integer.value[0] = (wm_get(ice, WM_DAC_CTRL1) & 0xf0) != 0x90;
62932df8 298 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
299 return 0;
300}
301
ab0c7d72 302static int wm_chswap_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 303{
ab0c7d72 304 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
305 unsigned short val, oval;
306 int change = 0;
307
62932df8 308 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
309 oval = wm_get(ice, WM_DAC_CTRL1);
310 val = oval & 0x0f;
311 if (ucontrol->value.integer.value[0])
312 val |= 0x60;
313 else
314 val |= 0x90;
315 if (val != oval) {
316 wm_put(ice, WM_DAC_CTRL1, val);
317 wm_put_nocache(ice, WM_DAC_CTRL1, val);
318 change = 1;
319 }
62932df8 320 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
321 return change;
322}
323
324/*
325 * write data in the SPI mode
326 */
ab0c7d72 327static void set_gpio_bit(struct snd_ice1712 *ice, unsigned int bit, int val)
1da177e4
LT
328{
329 unsigned int tmp = snd_ice1712_gpio_read(ice);
330 if (val)
331 tmp |= bit;
332 else
333 tmp &= ~bit;
334 snd_ice1712_gpio_write(ice, tmp);
335}
336
ab0c7d72 337static void spi_send_byte(struct snd_ice1712 *ice, unsigned char data)
1da177e4
LT
338{
339 int i;
340 for (i = 0; i < 8; i++) {
341 set_gpio_bit(ice, PONTIS_CS_CLK, 0);
342 udelay(1);
343 set_gpio_bit(ice, PONTIS_CS_WDATA, data & 0x80);
344 udelay(1);
345 set_gpio_bit(ice, PONTIS_CS_CLK, 1);
346 udelay(1);
347 data <<= 1;
348 }
349}
350
ab0c7d72 351static unsigned int spi_read_byte(struct snd_ice1712 *ice)
1da177e4
LT
352{
353 int i;
354 unsigned int val = 0;
355
356 for (i = 0; i < 8; i++) {
357 val <<= 1;
358 set_gpio_bit(ice, PONTIS_CS_CLK, 0);
359 udelay(1);
360 if (snd_ice1712_gpio_read(ice) & PONTIS_CS_RDATA)
361 val |= 1;
362 udelay(1);
363 set_gpio_bit(ice, PONTIS_CS_CLK, 1);
364 udelay(1);
365 }
366 return val;
367}
368
369
ab0c7d72 370static void spi_write(struct snd_ice1712 *ice, unsigned int dev, unsigned int reg, unsigned int data)
1da177e4
LT
371{
372 snd_ice1712_gpio_set_dir(ice, PONTIS_CS_CS|PONTIS_CS_WDATA|PONTIS_CS_CLK);
373 snd_ice1712_gpio_set_mask(ice, ~(PONTIS_CS_CS|PONTIS_CS_WDATA|PONTIS_CS_CLK));
374 set_gpio_bit(ice, PONTIS_CS_CS, 0);
375 spi_send_byte(ice, dev & ~1); /* WRITE */
376 spi_send_byte(ice, reg); /* MAP */
377 spi_send_byte(ice, data); /* DATA */
378 /* trigger */
379 set_gpio_bit(ice, PONTIS_CS_CS, 1);
380 udelay(1);
381 /* restore */
382 snd_ice1712_gpio_set_mask(ice, ice->gpio.write_mask);
383 snd_ice1712_gpio_set_dir(ice, ice->gpio.direction);
384}
385
ab0c7d72 386static unsigned int spi_read(struct snd_ice1712 *ice, unsigned int dev, unsigned int reg)
1da177e4
LT
387{
388 unsigned int val;
389 snd_ice1712_gpio_set_dir(ice, PONTIS_CS_CS|PONTIS_CS_WDATA|PONTIS_CS_CLK);
390 snd_ice1712_gpio_set_mask(ice, ~(PONTIS_CS_CS|PONTIS_CS_WDATA|PONTIS_CS_CLK));
391 set_gpio_bit(ice, PONTIS_CS_CS, 0);
392 spi_send_byte(ice, dev & ~1); /* WRITE */
393 spi_send_byte(ice, reg); /* MAP */
394 /* trigger */
395 set_gpio_bit(ice, PONTIS_CS_CS, 1);
396 udelay(1);
397 set_gpio_bit(ice, PONTIS_CS_CS, 0);
398 spi_send_byte(ice, dev | 1); /* READ */
399 val = spi_read_byte(ice);
400 /* trigger */
401 set_gpio_bit(ice, PONTIS_CS_CS, 1);
402 udelay(1);
403 /* restore */
404 snd_ice1712_gpio_set_mask(ice, ice->gpio.write_mask);
405 snd_ice1712_gpio_set_dir(ice, ice->gpio.direction);
406 return val;
407}
408
409
410/*
411 * SPDIF input source
412 */
ab0c7d72 413static int cs_source_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4 414{
32b47da0 415 static const char * const texts[] = {
1da177e4
LT
416 "Coax", /* RXP0 */
417 "Optical", /* RXP1 */
418 "CD", /* RXP2 */
419 };
597da2e4 420 return snd_ctl_enum_info(uinfo, 1, 3, texts);
1da177e4
LT
421}
422
ab0c7d72 423static int cs_source_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 424{
ab0c7d72 425 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4 426
62932df8 427 mutex_lock(&ice->gpio_mutex);
1da177e4 428 ucontrol->value.enumerated.item[0] = ice->gpio.saved[0];
62932df8 429 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
430 return 0;
431}
432
ab0c7d72 433static int cs_source_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 434{
ab0c7d72 435 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
436 unsigned char val;
437 int change = 0;
438
62932df8 439 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
440 if (ucontrol->value.enumerated.item[0] != ice->gpio.saved[0]) {
441 ice->gpio.saved[0] = ucontrol->value.enumerated.item[0] & 3;
442 val = 0x80 | (ice->gpio.saved[0] << 3);
443 spi_write(ice, CS_DEV, 0x04, val);
444 change = 1;
445 }
62932df8 446 mutex_unlock(&ice->gpio_mutex);
43337ac0 447 return change;
1da177e4
LT
448}
449
450
451/*
452 * GPIO controls
453 */
ab0c7d72 454static int pontis_gpio_mask_info(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo)
1da177e4
LT
455{
456 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
457 uinfo->count = 1;
458 uinfo->value.integer.min = 0;
459 uinfo->value.integer.max = 0xffff; /* 16bit */
460 return 0;
461}
462
ab0c7d72 463static int pontis_gpio_mask_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 464{
ab0c7d72 465 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
62932df8 466 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
467 /* 4-7 reserved */
468 ucontrol->value.integer.value[0] = (~ice->gpio.write_mask & 0xffff) | 0x00f0;
62932df8 469 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
470 return 0;
471}
472
ab0c7d72 473static int pontis_gpio_mask_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 474{
ab0c7d72 475 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
476 unsigned int val;
477 int changed;
62932df8 478 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
479 /* 4-7 reserved */
480 val = (~ucontrol->value.integer.value[0] & 0xffff) | 0x00f0;
481 changed = val != ice->gpio.write_mask;
482 ice->gpio.write_mask = val;
62932df8 483 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
484 return changed;
485}
486
ab0c7d72 487static int pontis_gpio_dir_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 488{
ab0c7d72 489 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
62932df8 490 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
491 /* 4-7 reserved */
492 ucontrol->value.integer.value[0] = ice->gpio.direction & 0xff0f;
62932df8 493 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
494 return 0;
495}
496
ab0c7d72 497static int pontis_gpio_dir_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 498{
ab0c7d72 499 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
500 unsigned int val;
501 int changed;
62932df8 502 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
503 /* 4-7 reserved */
504 val = ucontrol->value.integer.value[0] & 0xff0f;
505 changed = (val != ice->gpio.direction);
506 ice->gpio.direction = val;
62932df8 507 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
508 return changed;
509}
510
ab0c7d72 511static int pontis_gpio_data_get(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 512{
ab0c7d72 513 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
62932df8 514 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
515 snd_ice1712_gpio_set_dir(ice, ice->gpio.direction);
516 snd_ice1712_gpio_set_mask(ice, ice->gpio.write_mask);
517 ucontrol->value.integer.value[0] = snd_ice1712_gpio_read(ice) & 0xffff;
62932df8 518 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
519 return 0;
520}
521
ab0c7d72 522static int pontis_gpio_data_put(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol)
1da177e4 523{
ab0c7d72 524 struct snd_ice1712 *ice = snd_kcontrol_chip(kcontrol);
1da177e4
LT
525 unsigned int val, nval;
526 int changed = 0;
62932df8 527 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
528 snd_ice1712_gpio_set_dir(ice, ice->gpio.direction);
529 snd_ice1712_gpio_set_mask(ice, ice->gpio.write_mask);
530 val = snd_ice1712_gpio_read(ice) & 0xffff;
531 nval = ucontrol->value.integer.value[0] & 0xffff;
532 if (val != nval) {
533 snd_ice1712_gpio_write(ice, nval);
534 changed = 1;
535 }
62932df8 536 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
537 return changed;
538}
539
0cb29ea0 540static const DECLARE_TLV_DB_SCALE(db_scale_volume, -6400, 50, 1);
f640c320 541
1da177e4
LT
542/*
543 * mixers
544 */
545
e23e7a14 546static struct snd_kcontrol_new pontis_controls[] = {
1da177e4
LT
547 {
548 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
f640c320
TI
549 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
550 SNDRV_CTL_ELEM_ACCESS_TLV_READ),
1da177e4
LT
551 .name = "PCM Playback Volume",
552 .info = wm_dac_vol_info,
553 .get = wm_dac_vol_get,
554 .put = wm_dac_vol_put,
f640c320 555 .tlv = { .p = db_scale_volume },
1da177e4
LT
556 },
557 {
558 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
f640c320
TI
559 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE |
560 SNDRV_CTL_ELEM_ACCESS_TLV_READ),
1da177e4
LT
561 .name = "Capture Volume",
562 .info = wm_adc_vol_info,
563 .get = wm_adc_vol_get,
564 .put = wm_adc_vol_put,
f640c320 565 .tlv = { .p = db_scale_volume },
1da177e4
LT
566 },
567 {
568 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
569 .name = "CD Capture Switch",
570 .info = wm_adc_mux_info,
571 .get = wm_adc_mux_get,
572 .put = wm_adc_mux_put,
573 .private_value = 0,
574 },
575 {
576 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
577 .name = "Line Capture Switch",
578 .info = wm_adc_mux_info,
579 .get = wm_adc_mux_get,
580 .put = wm_adc_mux_put,
581 .private_value = 1,
582 },
583 {
584 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
585 .name = "Analog Bypass Switch",
586 .info = wm_bypass_info,
587 .get = wm_bypass_get,
588 .put = wm_bypass_put,
589 },
590 {
591 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
592 .name = "Swap Output Channels",
593 .info = wm_chswap_info,
594 .get = wm_chswap_get,
595 .put = wm_chswap_put,
596 },
597 {
598 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
599 .name = "IEC958 Input Source",
600 .info = cs_source_info,
601 .get = cs_source_get,
602 .put = cs_source_put,
603 },
604 /* FIXME: which interface? */
605 {
606 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
607 .name = "GPIO Mask",
608 .info = pontis_gpio_mask_info,
609 .get = pontis_gpio_mask_get,
610 .put = pontis_gpio_mask_put,
611 },
612 {
613 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
614 .name = "GPIO Direction",
615 .info = pontis_gpio_mask_info,
616 .get = pontis_gpio_dir_get,
617 .put = pontis_gpio_dir_put,
618 },
619 {
620 .iface = SNDRV_CTL_ELEM_IFACE_CARD,
621 .name = "GPIO Data",
622 .info = pontis_gpio_mask_info,
623 .get = pontis_gpio_data_get,
624 .put = pontis_gpio_data_put,
625 },
626};
627
628
629/*
630 * WM codec registers
631 */
ab0c7d72 632static void wm_proc_regs_write(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
1da177e4 633{
9fe856e4 634 struct snd_ice1712 *ice = entry->private_data;
1da177e4
LT
635 char line[64];
636 unsigned int reg, val;
62932df8 637 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
638 while (!snd_info_get_line(buffer, line, sizeof(line))) {
639 if (sscanf(line, "%x %x", &reg, &val) != 2)
640 continue;
641 if (reg <= 0x17 && val <= 0xffff)
642 wm_put(ice, reg, val);
643 }
62932df8 644 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
645}
646
ab0c7d72 647static void wm_proc_regs_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
1da177e4 648{
9fe856e4 649 struct snd_ice1712 *ice = entry->private_data;
1da177e4
LT
650 int reg, val;
651
62932df8 652 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
653 for (reg = 0; reg <= 0x17; reg++) {
654 val = wm_get(ice, reg);
655 snd_iprintf(buffer, "%02x = %04x\n", reg, val);
656 }
62932df8 657 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
658}
659
ab0c7d72 660static void wm_proc_init(struct snd_ice1712 *ice)
1da177e4 661{
47f2769b
TI
662 snd_card_rw_proc_new(ice->card, "wm_codec", ice, wm_proc_regs_read,
663 wm_proc_regs_write);
1da177e4
LT
664}
665
ab0c7d72 666static void cs_proc_regs_read(struct snd_info_entry *entry, struct snd_info_buffer *buffer)
1da177e4 667{
9fe856e4 668 struct snd_ice1712 *ice = entry->private_data;
1da177e4
LT
669 int reg, val;
670
62932df8 671 mutex_lock(&ice->gpio_mutex);
1da177e4
LT
672 for (reg = 0; reg <= 0x26; reg++) {
673 val = spi_read(ice, CS_DEV, reg);
674 snd_iprintf(buffer, "%02x = %02x\n", reg, val);
675 }
676 val = spi_read(ice, CS_DEV, 0x7f);
677 snd_iprintf(buffer, "%02x = %02x\n", 0x7f, val);
62932df8 678 mutex_unlock(&ice->gpio_mutex);
1da177e4
LT
679}
680
ab0c7d72 681static void cs_proc_init(struct snd_ice1712 *ice)
1da177e4 682{
47f2769b 683 snd_card_ro_proc_new(ice->card, "cs_codec", ice, cs_proc_regs_read);
1da177e4
LT
684}
685
686
e23e7a14 687static int pontis_add_controls(struct snd_ice1712 *ice)
1da177e4
LT
688{
689 unsigned int i;
690 int err;
691
692 for (i = 0; i < ARRAY_SIZE(pontis_controls); i++) {
693 err = snd_ctl_add(ice->card, snd_ctl_new1(&pontis_controls[i], ice));
694 if (err < 0)
695 return err;
696 }
697
698 wm_proc_init(ice);
699 cs_proc_init(ice);
700
701 return 0;
702}
703
704
705/*
706 * initialize the chip
707 */
e23e7a14 708static int pontis_init(struct snd_ice1712 *ice)
1da177e4 709{
32b47da0 710 static const unsigned short wm_inits[] = {
1da177e4
LT
711 /* These come first to reduce init pop noise */
712 WM_ADC_MUX, 0x00c0, /* ADC mute */
713 WM_DAC_MUTE, 0x0001, /* DAC softmute */
714 WM_DAC_CTRL1, 0x0000, /* DAC mute */
715
716 WM_POWERDOWN, 0x0008, /* All power-up except HP */
717 WM_RESET, 0x0000, /* reset */
718 };
32b47da0 719 static const unsigned short wm_inits2[] = {
1da177e4
LT
720 WM_MASTER_CTRL, 0x0022, /* 256fs, slave mode */
721 WM_DAC_INT, 0x0022, /* I2S, normal polarity, 24bit */
722 WM_ADC_INT, 0x0022, /* I2S, normal polarity, 24bit */
723 WM_DAC_CTRL1, 0x0090, /* DAC L/R */
724 WM_OUT_MUX, 0x0001, /* OUT DAC */
725 WM_HP_ATTEN_L, 0x0179, /* HP 0dB */
726 WM_HP_ATTEN_R, 0x0179, /* HP 0dB */
727 WM_DAC_ATTEN_L, 0x0000, /* DAC 0dB */
728 WM_DAC_ATTEN_L, 0x0100, /* DAC 0dB */
729 WM_DAC_ATTEN_R, 0x0000, /* DAC 0dB */
730 WM_DAC_ATTEN_R, 0x0100, /* DAC 0dB */
cc67b7f7 731 /* WM_DAC_MASTER, 0x0100, */ /* DAC master muted */
1da177e4
LT
732 WM_PHASE_SWAP, 0x0000, /* phase normal */
733 WM_DAC_CTRL2, 0x0000, /* no deemphasis, no ZFLG */
734 WM_ADC_ATTEN_L, 0x0000, /* ADC muted */
735 WM_ADC_ATTEN_R, 0x0000, /* ADC muted */
736#if 0
737 WM_ALC_CTRL1, 0x007b, /* */
738 WM_ALC_CTRL2, 0x0000, /* */
739 WM_ALC_CTRL3, 0x0000, /* */
740 WM_NOISE_GATE, 0x0000, /* */
741#endif
742 WM_DAC_MUTE, 0x0000, /* DAC unmute */
743 WM_ADC_MUX, 0x0003, /* ADC unmute, both CD/Line On */
744 };
32b47da0 745 static const unsigned char cs_inits[] = {
1da177e4
LT
746 0x04, 0x80, /* RUN, RXP0 */
747 0x05, 0x05, /* slave, 24bit */
748 0x01, 0x00,
749 0x02, 0x00,
750 0x03, 0x00,
751 };
752 unsigned int i;
753
754 ice->vt1720 = 1;
755 ice->num_total_dacs = 2;
756 ice->num_total_adcs = 2;
757
25985edc 758 /* to remember the register values */
ab0c7d72 759 ice->akm = kzalloc(sizeof(struct snd_akm4xxx), GFP_KERNEL);
1da177e4
LT
760 if (! ice->akm)
761 return -ENOMEM;
762 ice->akm_codecs = 1;
763
764 /* HACK - use this as the SPDIF source.
765 * don't call snd_ice1712_gpio_get/put(), otherwise it's overwritten
766 */
767 ice->gpio.saved[0] = 0;
768
769 /* initialize WM8776 codec */
770 for (i = 0; i < ARRAY_SIZE(wm_inits); i += 2)
771 wm_put(ice, wm_inits[i], wm_inits[i+1]);
8433a509 772 schedule_timeout_uninterruptible(1);
1da177e4
LT
773 for (i = 0; i < ARRAY_SIZE(wm_inits2); i += 2)
774 wm_put(ice, wm_inits2[i], wm_inits2[i+1]);
775
776 /* initialize CS8416 codec */
777 /* assert PRST#; MT05 bit 7 */
778 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
779 mdelay(5);
780 /* deassert PRST# */
781 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
782
783 for (i = 0; i < ARRAY_SIZE(cs_inits); i += 2)
784 spi_write(ice, CS_DEV, cs_inits[i], cs_inits[i+1]);
785
786 return 0;
787}
788
789
790/*
791 * Pontis boards don't provide the EEPROM data at all.
792 * hence the driver needs to sets up it properly.
793 */
794
e23e7a14 795static unsigned char pontis_eeprom[] = {
189bc171
TI
796 [ICE_EEP2_SYSCONF] = 0x08, /* clock 256, mpu401, spdif-in/ADC, 1DAC */
797 [ICE_EEP2_ACLINK] = 0x80, /* I2S */
798 [ICE_EEP2_I2S] = 0xf8, /* vol, 96k, 24bit, 192k */
799 [ICE_EEP2_SPDIF] = 0xc3, /* out-en, out-int, spdif-in */
800 [ICE_EEP2_GPIO_DIR] = 0x07,
801 [ICE_EEP2_GPIO_DIR1] = 0x00,
802 [ICE_EEP2_GPIO_DIR2] = 0x00, /* ignored */
803 [ICE_EEP2_GPIO_MASK] = 0x0f, /* 4-7 reserved for CS8416 */
804 [ICE_EEP2_GPIO_MASK1] = 0xff,
805 [ICE_EEP2_GPIO_MASK2] = 0x00, /* ignored */
806 [ICE_EEP2_GPIO_STATE] = 0x06, /* 0-low, 1-high, 2-high */
807 [ICE_EEP2_GPIO_STATE1] = 0x00,
808 [ICE_EEP2_GPIO_STATE2] = 0x00, /* ignored */
1da177e4
LT
809};
810
811/* entry point */
e23e7a14 812struct snd_ice1712_card_info snd_vt1720_pontis_cards[] = {
1da177e4
LT
813 {
814 .subvendor = VT1720_SUBDEVICE_PONTIS_MS300,
815 .name = "Pontis MS300",
816 .model = "ms300",
817 .chip_init = pontis_init,
818 .build_controls = pontis_add_controls,
819 .eeprom_size = sizeof(pontis_eeprom),
820 .eeprom_data = pontis_eeprom,
821 },
822 { } /* terminator */
823};