2 * ALSA driver for ICEnsemble ICE1712 (Envy24)
4 * Lowlevel functions for M-Audio Revolution 7.1
6 * Copyright (c) 2003 Takashi Iwai <tiwai@suse.de>
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.
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.
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
24 #include <sound/driver.h>
26 #include <linux/delay.h>
27 #include <linux/interrupt.h>
28 #include <linux/init.h>
29 #include <linux/slab.h>
30 #include <sound/core.h>
36 static void revo_i2s_mclk_changed(struct snd_ice1712 *ice)
38 /* assert PRST# to converters; MT05 bit 7 */
39 outb(inb(ICEMT1724(ice, AC97_CMD)) | 0x80, ICEMT1724(ice, AC97_CMD));
42 outb(inb(ICEMT1724(ice, AC97_CMD)) & ~0x80, ICEMT1724(ice, AC97_CMD));
46 * change the rate of envy24HT, AK4355 and AK4381
48 static void revo_set_rate_val(struct snd_akm4xxx *ak, unsigned int rate)
50 unsigned char old, tmp, dfs;
53 if (rate == 0) /* no hint - S/PDIF input is master, simply return */
56 /* adjust DFS on codecs */
59 else if (rate > 48000)
64 if (ak->type == SND_AK4355 || ak->type == SND_AK4358) {
71 tmp = snd_akm4xxx_get(ak, 0, reg);
72 old = (tmp >> shift) & 0x03;
77 snd_akm4xxx_reset(ak, 1);
78 tmp = snd_akm4xxx_get(ak, 0, reg);
79 tmp &= ~(0x03 << shift);
81 // snd_akm4xxx_write(ak, 0, reg, tmp);
82 snd_akm4xxx_set(ak, 0, reg, tmp); /* the value is written in reset(0) */
83 snd_akm4xxx_reset(ak, 0);
87 * initialize the chips on M-Audio Revolution cards
90 static struct snd_akm4xxx akm_revo_front __devinitdata = {
94 .set_rate_val = revo_set_rate_val
98 static struct snd_ak4xxx_private akm_revo_front_priv __devinitdata = {
101 .data_mask = VT1724_REVO_CDOUT,
102 .clk_mask = VT1724_REVO_CCLK,
103 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
104 .cs_addr = VT1724_REVO_CS0 | VT1724_REVO_CS2,
105 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
106 .add_flags = VT1724_REVO_CCLK, /* high at init */
110 static struct snd_akm4xxx akm_revo_surround __devinitdata = {
115 .set_rate_val = revo_set_rate_val
119 static struct snd_ak4xxx_private akm_revo_surround_priv __devinitdata = {
122 .data_mask = VT1724_REVO_CDOUT,
123 .clk_mask = VT1724_REVO_CCLK,
124 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
125 .cs_addr = VT1724_REVO_CS0 | VT1724_REVO_CS1,
126 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
127 .add_flags = VT1724_REVO_CCLK, /* high at init */
131 static struct snd_akm4xxx akm_revo51 __devinitdata = {
135 .set_rate_val = revo_set_rate_val
139 static struct snd_ak4xxx_private akm_revo51_priv __devinitdata = {
142 .data_mask = VT1724_REVO_CDOUT,
143 .clk_mask = VT1724_REVO_CCLK,
144 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
146 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
147 .add_flags = VT1724_REVO_CCLK, /* high at init */
151 static int __devinit revo_init(struct snd_ice1712 *ice)
153 struct snd_akm4xxx *ak;
156 /* determine I2C, DACs and ADCs */
157 switch (ice->eeprom.subvendor) {
158 case VT1724_SUBDEVICE_REVOLUTION71:
159 ice->num_total_dacs = 8;
160 ice->num_total_adcs = 2;
161 ice->gpio.i2s_mclk_changed = revo_i2s_mclk_changed;
163 case VT1724_SUBDEVICE_REVOLUTION51:
164 ice->num_total_dacs = 6;
165 ice->num_total_adcs = 2;
172 /* second stage of initialization, analog parts and others */
173 ak = ice->akm = kcalloc(2, sizeof(struct snd_akm4xxx), GFP_KERNEL);
177 switch (ice->eeprom.subvendor) {
178 case VT1724_SUBDEVICE_REVOLUTION71:
180 if ((err = snd_ice1712_akm4xxx_init(ak, &akm_revo_front, &akm_revo_front_priv, ice)) < 0)
182 if ((err = snd_ice1712_akm4xxx_init(ak + 1, &akm_revo_surround, &akm_revo_surround_priv, ice)) < 0)
184 /* unmute all codecs */
185 snd_ice1712_gpio_write_bits(ice, VT1724_REVO_MUTE, VT1724_REVO_MUTE);
187 case VT1724_SUBDEVICE_REVOLUTION51:
189 if ((err = snd_ice1712_akm4xxx_init(ak, &akm_revo51, &akm_revo51_priv, ice)) < 0)
191 /* unmute all codecs - needed! */
192 snd_ice1712_gpio_write_bits(ice, VT1724_REVO_MUTE, VT1724_REVO_MUTE);
200 static int __devinit revo_add_controls(struct snd_ice1712 *ice)
204 switch (ice->eeprom.subvendor) {
205 case VT1724_SUBDEVICE_REVOLUTION71:
206 case VT1724_SUBDEVICE_REVOLUTION51:
207 err = snd_ice1712_akm4xxx_build_controls(ice);
215 struct snd_ice1712_card_info snd_vt1724_revo_cards[] __devinitdata = {
217 .subvendor = VT1724_SUBDEVICE_REVOLUTION71,
218 .name = "M Audio Revolution-7.1",
220 .chip_init = revo_init,
221 .build_controls = revo_add_controls,
224 .subvendor = VT1724_SUBDEVICE_REVOLUTION51,
225 .name = "M Audio Revolution-5.1",
227 .chip_init = revo_init,
228 .build_controls = revo_add_controls,