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 unsigned int revo71_num_stereo_front[] = {2};
91 static char *revo71_channel_names_front[] = {"PCM Playback Volume"};
93 static unsigned int revo71_num_stereo_surround[] = {1, 1, 2, 2};
94 static char *revo71_channel_names_surround[] = {"PCM Center Playback Volume", "PCM LFE Playback Volume",
95 "PCM Side Playback Volume", "PCM Rear Playback Volume"};
97 static unsigned int revo51_num_stereo[] = {2, 1, 1, 2};
98 static char *revo51_channel_names[] = {"PCM Playback Volume", "PCM Center Playback Volume",
99 "PCM LFE Playback Volume", "PCM Rear Playback Volume"};
101 static struct snd_akm4xxx akm_revo_front __devinitdata = {
105 .set_rate_val = revo_set_rate_val
107 .num_stereo = revo71_num_stereo_front,
108 .channel_names = revo71_channel_names_front
111 static struct snd_ak4xxx_private akm_revo_front_priv __devinitdata = {
114 .data_mask = VT1724_REVO_CDOUT,
115 .clk_mask = VT1724_REVO_CCLK,
116 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
117 .cs_addr = VT1724_REVO_CS0 | VT1724_REVO_CS2,
118 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
119 .add_flags = VT1724_REVO_CCLK, /* high at init */
123 static struct snd_akm4xxx akm_revo_surround __devinitdata = {
128 .set_rate_val = revo_set_rate_val
130 .num_stereo = revo71_num_stereo_surround,
131 .channel_names = revo71_channel_names_surround
134 static struct snd_ak4xxx_private akm_revo_surround_priv __devinitdata = {
137 .data_mask = VT1724_REVO_CDOUT,
138 .clk_mask = VT1724_REVO_CCLK,
139 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
140 .cs_addr = VT1724_REVO_CS0 | VT1724_REVO_CS1,
141 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
142 .add_flags = VT1724_REVO_CCLK, /* high at init */
146 static struct snd_akm4xxx akm_revo51 __devinitdata = {
150 .set_rate_val = revo_set_rate_val
152 .num_stereo = revo51_num_stereo,
153 .channel_names = revo51_channel_names
156 static struct snd_ak4xxx_private akm_revo51_priv __devinitdata = {
159 .data_mask = VT1724_REVO_CDOUT,
160 .clk_mask = VT1724_REVO_CCLK,
161 .cs_mask = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
163 .cs_none = VT1724_REVO_CS0 | VT1724_REVO_CS1 | VT1724_REVO_CS2,
164 .add_flags = VT1724_REVO_CCLK, /* high at init */
168 static int __devinit revo_init(struct snd_ice1712 *ice)
170 struct snd_akm4xxx *ak;
173 /* determine I2C, DACs and ADCs */
174 switch (ice->eeprom.subvendor) {
175 case VT1724_SUBDEVICE_REVOLUTION71:
176 ice->num_total_dacs = 8;
177 ice->num_total_adcs = 2;
178 ice->gpio.i2s_mclk_changed = revo_i2s_mclk_changed;
180 case VT1724_SUBDEVICE_REVOLUTION51:
181 ice->num_total_dacs = 6;
182 ice->num_total_adcs = 2;
189 /* second stage of initialization, analog parts and others */
190 ak = ice->akm = kcalloc(2, sizeof(struct snd_akm4xxx), GFP_KERNEL);
194 switch (ice->eeprom.subvendor) {
195 case VT1724_SUBDEVICE_REVOLUTION71:
197 if ((err = snd_ice1712_akm4xxx_init(ak, &akm_revo_front, &akm_revo_front_priv, ice)) < 0)
199 if ((err = snd_ice1712_akm4xxx_init(ak + 1, &akm_revo_surround, &akm_revo_surround_priv, ice)) < 0)
201 /* unmute all codecs */
202 snd_ice1712_gpio_write_bits(ice, VT1724_REVO_MUTE, VT1724_REVO_MUTE);
204 case VT1724_SUBDEVICE_REVOLUTION51:
206 if ((err = snd_ice1712_akm4xxx_init(ak, &akm_revo51, &akm_revo51_priv, ice)) < 0)
208 /* unmute all codecs - needed! */
209 snd_ice1712_gpio_write_bits(ice, VT1724_REVO_MUTE, VT1724_REVO_MUTE);
217 static int __devinit revo_add_controls(struct snd_ice1712 *ice)
221 switch (ice->eeprom.subvendor) {
222 case VT1724_SUBDEVICE_REVOLUTION71:
223 case VT1724_SUBDEVICE_REVOLUTION51:
224 err = snd_ice1712_akm4xxx_build_controls(ice);
232 struct snd_ice1712_card_info snd_vt1724_revo_cards[] __devinitdata = {
234 .subvendor = VT1724_SUBDEVICE_REVOLUTION71,
235 .name = "M Audio Revolution-7.1",
237 .chip_init = revo_init,
238 .build_controls = revo_add_controls,
241 .subvendor = VT1724_SUBDEVICE_REVOLUTION51,
242 .name = "M Audio Revolution-5.1",
244 .chip_init = revo_init,
245 .build_controls = revo_add_controls,