blob: 7641080a9b5d33bc853821a135eeca9bd62ab84d [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA driver for ICEnsemble ICE1712 (Envy24)
3 *
Vedran Mileticcc67b7f2008-09-07 12:00:02 +02004 * Lowlevel functions for M-Audio Audiophile 192, Revolution 7.1 and 5.1
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright (c) 2003 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/delay.h>
25#include <linux/interrupt.h>
26#include <linux/init.h>
27#include <linux/slab.h>
28#include <sound/core.h>
29
30#include "ice1712.h"
31#include "envy24ht.h"
32#include "revo.h"
33
Takashi Iwai7cda8ba2008-01-18 13:36:07 +010034/* a non-standard I2C device for revo51 */
35struct revo51_spec {
36 struct snd_i2c_device *dev;
37 struct snd_pt2258 *pt2258;
Harvey Harrison008f3592008-02-29 11:46:32 +010038};
Takashi Iwai7cda8ba2008-01-18 13:36:07 +010039
Takashi Iwaiab0c7d72005-11-17 15:00:18 +010040static void revo_i2s_mclk_changed(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
42 /* assert PRST# to converters; MT05 bit 7 */
43 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
44 mdelay(5);
45 /* deassert PRST# */
46 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
47}
48
49/*
Vedran Mileticcc67b7f2008-09-07 12:00:02 +020050 * change the rate of Envy24HT, AK4355 and AK4381
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +010052static void revo_set_rate_val(struct snd_akm4xxx *ak, unsigned int rate)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 unsigned char old, tmp, dfs;
55 int reg, shift;
56
57 if (rate == 0) /* no hint - S/PDIF input is master, simply return */
58 return;
59
60 /* adjust DFS on codecs */
61 if (rate > 96000)
62 dfs = 2;
63 else if (rate > 48000)
64 dfs = 1;
65 else
66 dfs = 0;
67
Takashi Iwai59acf762005-12-05 19:22:34 +010068 if (ak->type == SND_AK4355 || ak->type == SND_AK4358) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 reg = 2;
70 shift = 4;
71 } else {
72 reg = 1;
73 shift = 3;
74 }
75 tmp = snd_akm4xxx_get(ak, 0, reg);
76 old = (tmp >> shift) & 0x03;
77 if (old == dfs)
78 return;
79
80 /* reset DFS */
81 snd_akm4xxx_reset(ak, 1);
82 tmp = snd_akm4xxx_get(ak, 0, reg);
83 tmp &= ~(0x03 << shift);
84 tmp |= dfs << shift;
Vedran Mileticcc67b7f2008-09-07 12:00:02 +020085 /* snd_akm4xxx_write(ak, 0, reg, tmp); */
86 snd_akm4xxx_set(ak, 0, reg, tmp); /* value is written in reset(0) */
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 snd_akm4xxx_reset(ak, 0);
88}
89
90/*
Jochen Vossfeaa6a72006-10-04 18:08:43 +020091 * I2C access to the PT2258 volume controller on GPIO 6/7 (Revolution 5.1)
92 */
93
94static void revo_i2c_start(struct snd_i2c_bus *bus)
95{
96 struct snd_ice1712 *ice = bus->private_data;
97 snd_ice1712_save_gpio_status(ice);
98}
99
100static void revo_i2c_stop(struct snd_i2c_bus *bus)
101{
102 struct snd_ice1712 *ice = bus->private_data;
103 snd_ice1712_restore_gpio_status(ice);
104}
105
106static void revo_i2c_direction(struct snd_i2c_bus *bus, int clock, int data)
107{
108 struct snd_ice1712 *ice = bus->private_data;
109 unsigned int mask, val;
110
111 val = 0;
112 if (clock)
113 val |= VT1724_REVO_I2C_CLOCK; /* write SCL */
114 if (data)
115 val |= VT1724_REVO_I2C_DATA; /* write SDA */
116 mask = VT1724_REVO_I2C_CLOCK | VT1724_REVO_I2C_DATA;
117 ice->gpio.direction &= ~mask;
118 ice->gpio.direction |= val;
119 snd_ice1712_gpio_set_dir(ice, ice->gpio.direction);
120 snd_ice1712_gpio_set_mask(ice, ~mask);
121}
122
123static void revo_i2c_setlines(struct snd_i2c_bus *bus, int clk, int data)
124{
125 struct snd_ice1712 *ice = bus->private_data;
126 unsigned int val = 0;
127
128 if (clk)
129 val |= VT1724_REVO_I2C_CLOCK;
130 if (data)
131 val |= VT1724_REVO_I2C_DATA;
132 snd_ice1712_gpio_write_bits(ice,
133 VT1724_REVO_I2C_DATA |
134 VT1724_REVO_I2C_CLOCK, val);
135 udelay(5);
136}
137
138static int revo_i2c_getdata(struct snd_i2c_bus *bus, int ack)
139{
140 struct snd_ice1712 *ice = bus->private_data;
141 int bit;
142
143 if (ack)
144 udelay(5);
145 bit = snd_ice1712_gpio_read_bits(ice, VT1724_REVO_I2C_DATA) ? 1 : 0;
146 return bit;
147}
148
149static struct snd_i2c_bit_ops revo51_bit_ops = {
150 .start = revo_i2c_start,
151 .stop = revo_i2c_stop,
152 .direction = revo_i2c_direction,
153 .setlines = revo_i2c_setlines,
154 .getdata = revo_i2c_getdata,
155};
156
157static int revo51_i2c_init(struct snd_ice1712 *ice,
158 struct snd_pt2258 *pt)
159{
Takashi Iwai7cda8ba2008-01-18 13:36:07 +0100160 struct revo51_spec *spec;
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200161 int err;
162
Takashi Iwai7cda8ba2008-01-18 13:36:07 +0100163 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
164 if (!spec)
165 return -ENOMEM;
166 ice->spec = spec;
167
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200168 /* create the I2C bus */
169 err = snd_i2c_bus_create(ice->card, "ICE1724 GPIO6", NULL, &ice->i2c);
170 if (err < 0)
171 return err;
172
173 ice->i2c->private_data = ice;
174 ice->i2c->hw_ops.bit = &revo51_bit_ops;
175
176 /* create the I2C device */
Takashi Iwai7cda8ba2008-01-18 13:36:07 +0100177 err = snd_i2c_device_create(ice->i2c, "PT2258", 0x40, &spec->dev);
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200178 if (err < 0)
179 return err;
180
181 pt->card = ice->card;
182 pt->i2c_bus = ice->i2c;
Takashi Iwai7cda8ba2008-01-18 13:36:07 +0100183 pt->i2c_dev = spec->dev;
184 spec->pt2258 = pt;
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200185
186 snd_pt2258_reset(pt);
187
188 return 0;
189}
190
191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * initialize the chips on M-Audio Revolution cards
193 */
194
Takashi Iwai723b2b02006-08-30 16:49:54 +0200195#define AK_DAC(xname,xch) { .name = xname, .num_channels = xch }
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200196
Takashi Iwai517400c2007-01-29 15:27:56 +0100197static const struct snd_akm4xxx_dac_channel revo71_front[] = {
Pavel Hofmanea7cfcd2007-05-19 17:21:04 +0200198 {
199 .name = "PCM Playback Volume",
200 .num_channels = 2,
201 /* front channels DAC supports muting */
202 .switch_name = "PCM Playback Switch",
203 },
Takashi Iwai723b2b02006-08-30 16:49:54 +0200204};
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200205
Takashi Iwai517400c2007-01-29 15:27:56 +0100206static const struct snd_akm4xxx_dac_channel revo71_surround[] = {
Takashi Iwai723b2b02006-08-30 16:49:54 +0200207 AK_DAC("PCM Center Playback Volume", 1),
208 AK_DAC("PCM LFE Playback Volume", 1),
209 AK_DAC("PCM Side Playback Volume", 2),
210 AK_DAC("PCM Rear Playback Volume", 2),
211};
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200212
Takashi Iwai517400c2007-01-29 15:27:56 +0100213static const struct snd_akm4xxx_dac_channel revo51_dac[] = {
Takashi Iwai723b2b02006-08-30 16:49:54 +0200214 AK_DAC("PCM Playback Volume", 2),
215 AK_DAC("PCM Center Playback Volume", 1),
216 AK_DAC("PCM LFE Playback Volume", 1),
217 AK_DAC("PCM Rear Playback Volume", 2),
Alexander Beregalov46480b32008-08-21 08:28:42 +0400218 AK_DAC("PCM Headphone Volume", 2),
Takashi Iwai723b2b02006-08-30 16:49:54 +0200219};
220
Jochen Vossa58e7cb2006-10-04 18:04:10 +0200221static const char *revo51_adc_input_names[] = {
222 "Mic",
223 "Line",
224 "CD",
225 NULL
226};
227
Takashi Iwai517400c2007-01-29 15:27:56 +0100228static const struct snd_akm4xxx_adc_channel revo51_adc[] = {
Takashi Iwai723b2b02006-08-30 16:49:54 +0200229 {
230 .name = "PCM Capture Volume",
Takashi Iwai723b2b02006-08-30 16:49:54 +0200231 .switch_name = "PCM Capture Switch",
Jochen Vossa58e7cb2006-10-04 18:04:10 +0200232 .num_channels = 2,
233 .input_names = revo51_adc_input_names
Takashi Iwai723b2b02006-08-30 16:49:54 +0200234 },
235};
Jochen Voss96d9e932006-08-08 21:13:42 +0200236
Bill Pembertone23e7a12012-12-06 12:35:10 -0500237static struct snd_akm4xxx akm_revo_front = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 .type = SND_AK4381,
239 .num_dacs = 2,
240 .ops = {
241 .set_rate_val = revo_set_rate_val
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200242 },
Takashi Iwai723b2b02006-08-30 16:49:54 +0200243 .dac_info = revo71_front,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244};
245
Bill Pembertone23e7a12012-12-06 12:35:10 -0500246static struct snd_ak4xxx_private akm_revo_front_priv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .caddr = 1,
248 .cif = 0,
249 .data_mask = VT1724_REVO_CDOUT,
250 .clk_mask = VT1724_REVO_CCLK,
251 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
252 .cs_addr = VT1724_REVO_CS0 | VT1724_REVO_CS2,
253 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
254 .add_flags = VT1724_REVO_CCLK, /* high at init */
255 .mask_flags = 0,
256};
257
Bill Pembertone23e7a12012-12-06 12:35:10 -0500258static struct snd_akm4xxx akm_revo_surround = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 .type = SND_AK4355,
260 .idx_offset = 1,
261 .num_dacs = 6,
262 .ops = {
263 .set_rate_val = revo_set_rate_val
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200264 },
Takashi Iwai723b2b02006-08-30 16:49:54 +0200265 .dac_info = revo71_surround,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266};
267
Bill Pembertone23e7a12012-12-06 12:35:10 -0500268static struct snd_ak4xxx_private akm_revo_surround_priv = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 .caddr = 3,
270 .cif = 0,
271 .data_mask = VT1724_REVO_CDOUT,
272 .clk_mask = VT1724_REVO_CCLK,
273 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
274 .cs_addr = VT1724_REVO_CS0 | VT1724_REVO_CS1,
275 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
276 .add_flags = VT1724_REVO_CCLK, /* high at init */
277 .mask_flags = 0,
278};
279
Bill Pembertone23e7a12012-12-06 12:35:10 -0500280static struct snd_akm4xxx akm_revo51 = {
Takashi Iwai59acf762005-12-05 19:22:34 +0100281 .type = SND_AK4358,
Alexander Beregalov46480b32008-08-21 08:28:42 +0400282 .num_dacs = 8,
Takashi Iwai59acf762005-12-05 19:22:34 +0100283 .ops = {
284 .set_rate_val = revo_set_rate_val
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200285 },
Takashi Iwai723b2b02006-08-30 16:49:54 +0200286 .dac_info = revo51_dac,
Takashi Iwai59acf762005-12-05 19:22:34 +0100287};
288
Bill Pembertone23e7a12012-12-06 12:35:10 -0500289static struct snd_ak4xxx_private akm_revo51_priv = {
Takashi Iwai59acf762005-12-05 19:22:34 +0100290 .caddr = 2,
291 .cif = 0,
292 .data_mask = VT1724_REVO_CDOUT,
293 .clk_mask = VT1724_REVO_CCLK,
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200294 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1,
295 .cs_addr = VT1724_REVO_CS1,
296 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1,
Jochen Voss96d9e932006-08-08 21:13:42 +0200297 .add_flags = VT1724_REVO_CCLK, /* high at init */
298 .mask_flags = 0,
299};
300
Bill Pembertone23e7a12012-12-06 12:35:10 -0500301static struct snd_akm4xxx akm_revo51_adc = {
Jochen Voss96d9e932006-08-08 21:13:42 +0200302 .type = SND_AK5365,
303 .num_adcs = 2,
Takashi Iwai723b2b02006-08-30 16:49:54 +0200304 .adc_info = revo51_adc,
Jochen Voss96d9e932006-08-08 21:13:42 +0200305};
306
Bill Pembertone23e7a12012-12-06 12:35:10 -0500307static struct snd_ak4xxx_private akm_revo51_adc_priv = {
Jochen Voss96d9e932006-08-08 21:13:42 +0200308 .caddr = 2,
309 .cif = 0,
310 .data_mask = VT1724_REVO_CDOUT,
311 .clk_mask = VT1724_REVO_CCLK,
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200312 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1,
313 .cs_addr = VT1724_REVO_CS0,
314 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1,
Takashi Iwai59acf762005-12-05 19:22:34 +0100315 .add_flags = VT1724_REVO_CCLK, /* high at init */
316 .mask_flags = 0,
317};
318
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200319static struct snd_pt2258 ptc_revo51_volume;
320
Takashi Iwai56255062006-11-09 16:47:26 +0100321/* AK4358 for AP192 DAC, AK5385A for ADC */
322static void ap192_set_rate_val(struct snd_akm4xxx *ak, unsigned int rate)
323{
324 struct snd_ice1712 *ice = ak->private_data[0];
Takashi Iwaia7696922008-02-04 12:36:32 +0100325 int dfs;
Takashi Iwai56255062006-11-09 16:47:26 +0100326
327 revo_set_rate_val(ak, rate);
328
Takashi Iwaia7696922008-02-04 12:36:32 +0100329 /* reset CKS */
Karsten Wiese8a87c9c2008-04-22 12:53:12 +0200330 snd_ice1712_gpio_write_bits(ice, 1 << 8, rate > 96000 ? 1 << 8 : 0);
Takashi Iwaia7696922008-02-04 12:36:32 +0100331 /* reset DFS pins of AK5385A for ADC, too */
332 if (rate > 96000)
333 dfs = 2;
334 else if (rate > 48000)
335 dfs = 1;
336 else
337 dfs = 0;
338 snd_ice1712_gpio_write_bits(ice, 3 << 9, dfs << 9);
339 /* reset ADC */
340 snd_ice1712_gpio_write_bits(ice, 1 << 11, 0);
Karsten Wiese8a87c9c2008-04-22 12:53:12 +0200341 snd_ice1712_gpio_write_bits(ice, 1 << 11, 1 << 11);
Takashi Iwai56255062006-11-09 16:47:26 +0100342}
343
Takashi Iwai517400c2007-01-29 15:27:56 +0100344static const struct snd_akm4xxx_dac_channel ap192_dac[] = {
Takashi Iwai56255062006-11-09 16:47:26 +0100345 AK_DAC("PCM Playback Volume", 2)
346};
347
Bill Pembertone23e7a12012-12-06 12:35:10 -0500348static struct snd_akm4xxx akm_ap192 = {
Takashi Iwai56255062006-11-09 16:47:26 +0100349 .type = SND_AK4358,
350 .num_dacs = 2,
351 .ops = {
352 .set_rate_val = ap192_set_rate_val
353 },
354 .dac_info = ap192_dac,
355};
356
Bill Pembertone23e7a12012-12-06 12:35:10 -0500357static struct snd_ak4xxx_private akm_ap192_priv = {
Takashi Iwai56255062006-11-09 16:47:26 +0100358 .caddr = 2,
359 .cif = 0,
360 .data_mask = VT1724_REVO_CDOUT,
361 .clk_mask = VT1724_REVO_CCLK,
Takashi Iwaif339eb02008-02-04 12:34:59 +0100362 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1,
363 .cs_addr = VT1724_REVO_CS1,
364 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1,
Takashi Iwai56255062006-11-09 16:47:26 +0100365 .add_flags = VT1724_REVO_CCLK, /* high at init */
366 .mask_flags = 0,
367};
368
Takashi Iwai56255062006-11-09 16:47:26 +0100369/* AK4114 support on Audiophile 192 */
370/* CDTO (pin 32) -- GPIO2 pin 52
371 * CDTI (pin 33) -- GPIO3 pin 53 (shared with AK4358)
372 * CCLK (pin 34) -- GPIO1 pin 51 (shared with AK4358)
373 * CSN (pin 35) -- GPIO7 pin 59
374 */
Takashi Iwaif339eb02008-02-04 12:34:59 +0100375#define AK4114_ADDR 0x02
Takashi Iwai56255062006-11-09 16:47:26 +0100376
377static void write_data(struct snd_ice1712 *ice, unsigned int gpio,
378 unsigned int data, int idx)
379{
380 for (; idx >= 0; idx--) {
381 /* drop clock */
382 gpio &= ~VT1724_REVO_CCLK;
383 snd_ice1712_gpio_write(ice, gpio);
384 udelay(1);
385 /* set data */
386 if (data & (1 << idx))
387 gpio |= VT1724_REVO_CDOUT;
388 else
389 gpio &= ~VT1724_REVO_CDOUT;
390 snd_ice1712_gpio_write(ice, gpio);
391 udelay(1);
392 /* raise clock */
393 gpio |= VT1724_REVO_CCLK;
394 snd_ice1712_gpio_write(ice, gpio);
395 udelay(1);
396 }
397}
398
399static unsigned char read_data(struct snd_ice1712 *ice, unsigned int gpio,
400 int idx)
401{
402 unsigned char data = 0;
403
404 for (; idx >= 0; idx--) {
405 /* drop clock */
406 gpio &= ~VT1724_REVO_CCLK;
407 snd_ice1712_gpio_write(ice, gpio);
408 udelay(1);
409 /* read data */
410 if (snd_ice1712_gpio_read(ice) & VT1724_REVO_CDIN)
411 data |= (1 << idx);
412 udelay(1);
413 /* raise clock */
414 gpio |= VT1724_REVO_CCLK;
415 snd_ice1712_gpio_write(ice, gpio);
416 udelay(1);
417 }
418 return data;
419}
420
Takashi Iwaic052f042007-03-29 12:34:15 +0200421static unsigned int ap192_4wire_start(struct snd_ice1712 *ice)
Takashi Iwai56255062006-11-09 16:47:26 +0100422{
423 unsigned int tmp;
424
425 snd_ice1712_save_gpio_status(ice);
426 tmp = snd_ice1712_gpio_read(ice);
427 tmp |= VT1724_REVO_CCLK; /* high at init */
428 tmp |= VT1724_REVO_CS0;
Takashi Iwaif339eb02008-02-04 12:34:59 +0100429 tmp &= ~VT1724_REVO_CS1;
Takashi Iwai56255062006-11-09 16:47:26 +0100430 snd_ice1712_gpio_write(ice, tmp);
431 udelay(1);
432 return tmp;
433}
434
435static void ap192_4wire_finish(struct snd_ice1712 *ice, unsigned int tmp)
436{
Takashi Iwaif339eb02008-02-04 12:34:59 +0100437 tmp |= VT1724_REVO_CS1;
Takashi Iwai56255062006-11-09 16:47:26 +0100438 tmp |= VT1724_REVO_CS0;
439 snd_ice1712_gpio_write(ice, tmp);
440 udelay(1);
441 snd_ice1712_restore_gpio_status(ice);
442}
443
444static void ap192_ak4114_write(void *private_data, unsigned char addr,
445 unsigned char data)
446{
447 struct snd_ice1712 *ice = private_data;
448 unsigned int tmp, addrdata;
449
450 tmp = ap192_4wire_start(ice);
451 addrdata = (AK4114_ADDR << 6) | 0x20 | (addr & 0x1f);
452 addrdata = (addrdata << 8) | data;
453 write_data(ice, tmp, addrdata, 15);
454 ap192_4wire_finish(ice, tmp);
455}
456
457static unsigned char ap192_ak4114_read(void *private_data, unsigned char addr)
458{
459 struct snd_ice1712 *ice = private_data;
460 unsigned int tmp;
461 unsigned char data;
462
463 tmp = ap192_4wire_start(ice);
464 write_data(ice, tmp, (AK4114_ADDR << 6) | (addr & 0x1f), 7);
465 data = read_data(ice, tmp, 7);
466 ap192_4wire_finish(ice, tmp);
467 return data;
468}
469
Bill Pembertone23e7a12012-12-06 12:35:10 -0500470static int ap192_ak4114_init(struct snd_ice1712 *ice)
Takashi Iwai56255062006-11-09 16:47:26 +0100471{
Takashi Iwai32b47da2007-01-29 15:26:36 +0100472 static const unsigned char ak4114_init_vals[] = {
Takashi Iwai56255062006-11-09 16:47:26 +0100473 AK4114_RST | AK4114_PWN | AK4114_OCKS0 | AK4114_OCKS1,
474 AK4114_DIF_I24I2S,
475 AK4114_TX1E,
476 AK4114_EFH_1024 | AK4114_DIT | AK4114_IPS(1),
477 0,
478 0
479 };
Takashi Iwai32b47da2007-01-29 15:26:36 +0100480 static const unsigned char ak4114_init_txcsb[] = {
Takashi Iwai56255062006-11-09 16:47:26 +0100481 0x41, 0x02, 0x2c, 0x00, 0x00
482 };
483 struct ak4114 *ak;
484 int err;
485
Takashi Iwaif339eb02008-02-04 12:34:59 +0100486 err = snd_ak4114_create(ice->card,
Takashi Iwai56255062006-11-09 16:47:26 +0100487 ap192_ak4114_read,
488 ap192_ak4114_write,
489 ak4114_init_vals, ak4114_init_txcsb,
490 ice, &ak);
Pavel Hofman841b23d2008-03-17 08:45:33 +0100491 /* AK4114 in Revo cannot detect external rate correctly.
492 * No reason to stop capture stream due to incorrect checks */
493 ak->check_flags = AK4114_CHECK_NO_RATE;
494
Takashi Iwaif339eb02008-02-04 12:34:59 +0100495 return 0; /* error ignored; it's no fatal error */
Takashi Iwai56255062006-11-09 16:47:26 +0100496}
Takashi Iwai56255062006-11-09 16:47:26 +0100497
Bill Pembertone23e7a12012-12-06 12:35:10 -0500498static int revo_init(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100500 struct snd_akm4xxx *ak;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 int err;
502
503 /* determine I2C, DACs and ADCs */
504 switch (ice->eeprom.subvendor) {
505 case VT1724_SUBDEVICE_REVOLUTION71:
506 ice->num_total_dacs = 8;
507 ice->num_total_adcs = 2;
Takashi Iwai59acf762005-12-05 19:22:34 +0100508 ice->gpio.i2s_mclk_changed = revo_i2s_mclk_changed;
509 break;
510 case VT1724_SUBDEVICE_REVOLUTION51:
Alexander Beregalov46480b32008-08-21 08:28:42 +0400511 ice->num_total_dacs = 8;
Takashi Iwai59acf762005-12-05 19:22:34 +0100512 ice->num_total_adcs = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 break;
Takashi Iwai56255062006-11-09 16:47:26 +0100514 case VT1724_SUBDEVICE_AUDIOPHILE192:
515 ice->num_total_dacs = 2;
516 ice->num_total_adcs = 2;
517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 default:
519 snd_BUG();
520 return -EINVAL;
521 }
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /* second stage of initialization, analog parts and others */
Takashi Iwaiab0c7d72005-11-17 15:00:18 +0100524 ak = ice->akm = kcalloc(2, sizeof(struct snd_akm4xxx), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (! ak)
526 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 switch (ice->eeprom.subvendor) {
528 case VT1724_SUBDEVICE_REVOLUTION71:
Takashi Iwai59acf762005-12-05 19:22:34 +0100529 ice->akm_codecs = 2;
Alexander Beregalovfaa09c92008-08-11 02:09:04 +0400530 err = snd_ice1712_akm4xxx_init(ak, &akm_revo_front,
531 &akm_revo_front_priv, ice);
532 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return err;
Alexander Beregalovfaa09c92008-08-11 02:09:04 +0400534 err = snd_ice1712_akm4xxx_init(ak+1, &akm_revo_surround,
535 &akm_revo_surround_priv, ice);
536 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return err;
538 /* unmute all codecs */
Alexander Beregalovfaa09c92008-08-11 02:09:04 +0400539 snd_ice1712_gpio_write_bits(ice, VT1724_REVO_MUTE,
540 VT1724_REVO_MUTE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 break;
Takashi Iwai59acf762005-12-05 19:22:34 +0100542 case VT1724_SUBDEVICE_REVOLUTION51:
Jochen Voss96d9e932006-08-08 21:13:42 +0200543 ice->akm_codecs = 2;
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200544 err = snd_ice1712_akm4xxx_init(ak, &akm_revo51,
545 &akm_revo51_priv, ice);
546 if (err < 0)
Takashi Iwai59acf762005-12-05 19:22:34 +0100547 return err;
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200548 err = snd_ice1712_akm4xxx_init(ak+1, &akm_revo51_adc,
Jochen Voss96d9e932006-08-08 21:13:42 +0200549 &akm_revo51_adc_priv, ice);
550 if (err < 0)
551 return err;
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200552 err = revo51_i2c_init(ice, &ptc_revo51_volume);
553 if (err < 0)
554 return err;
555 /* unmute all codecs */
556 snd_ice1712_gpio_write_bits(ice, VT1724_REVO_MUTE,
557 VT1724_REVO_MUTE);
Takashi Iwai59acf762005-12-05 19:22:34 +0100558 break;
Takashi Iwai56255062006-11-09 16:47:26 +0100559 case VT1724_SUBDEVICE_AUDIOPHILE192:
560 ice->akm_codecs = 1;
561 err = snd_ice1712_akm4xxx_init(ak, &akm_ap192, &akm_ap192_priv,
562 ice);
563 if (err < 0)
564 return err;
565
Takashi Iwaia7696922008-02-04 12:36:32 +0100566 /* unmute all codecs */
567 snd_ice1712_gpio_write_bits(ice, VT1724_REVO_MUTE,
568 VT1724_REVO_MUTE);
Takashi Iwai56255062006-11-09 16:47:26 +0100569 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 }
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return 0;
573}
574
575
Bill Pembertone23e7a12012-12-06 12:35:10 -0500576static int revo_add_controls(struct snd_ice1712 *ice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Takashi Iwai7cda8ba2008-01-18 13:36:07 +0100578 struct revo51_spec *spec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 int err;
580
581 switch (ice->eeprom.subvendor) {
582 case VT1724_SUBDEVICE_REVOLUTION71:
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200583 err = snd_ice1712_akm4xxx_build_controls(ice);
584 if (err < 0)
585 return err;
586 break;
Takashi Iwai59acf762005-12-05 19:22:34 +0100587 case VT1724_SUBDEVICE_REVOLUTION51:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 err = snd_ice1712_akm4xxx_build_controls(ice);
589 if (err < 0)
590 return err;
Takashi Iwai7cda8ba2008-01-18 13:36:07 +0100591 spec = ice->spec;
592 err = snd_pt2258_build_controls(spec->pt2258);
Jochen Vossfeaa6a72006-10-04 18:08:43 +0200593 if (err < 0)
594 return err;
595 break;
Takashi Iwai56255062006-11-09 16:47:26 +0100596 case VT1724_SUBDEVICE_AUDIOPHILE192:
597 err = snd_ice1712_akm4xxx_build_controls(ice);
598 if (err < 0)
599 return err;
Takashi Iwai56255062006-11-09 16:47:26 +0100600 err = ap192_ak4114_init(ice);
601 if (err < 0)
602 return err;
Takashi Iwai56255062006-11-09 16:47:26 +0100603 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
605 return 0;
606}
607
608/* entry point */
Bill Pembertone23e7a12012-12-06 12:35:10 -0500609struct snd_ice1712_card_info snd_vt1724_revo_cards[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 {
611 .subvendor = VT1724_SUBDEVICE_REVOLUTION71,
612 .name = "M Audio Revolution-7.1",
613 .model = "revo71",
614 .chip_init = revo_init,
615 .build_controls = revo_add_controls,
616 },
Takashi Iwai59acf762005-12-05 19:22:34 +0100617 {
618 .subvendor = VT1724_SUBDEVICE_REVOLUTION51,
619 .name = "M Audio Revolution-5.1",
620 .model = "revo51",
621 .chip_init = revo_init,
622 .build_controls = revo_add_controls,
623 },
Takashi Iwai56255062006-11-09 16:47:26 +0100624 {
625 .subvendor = VT1724_SUBDEVICE_AUDIOPHILE192,
626 .name = "M Audio Audiophile192",
627 .model = "ap192",
628 .chip_init = revo_init,
629 .build_controls = revo_add_controls,
630 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 { } /* terminator */
632};