blob: 0aea536a3371bde7f1c85f94a26a6a0b1aca6e9a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALSA driver for AK4524 / AK4528 / AK4529 / AK4355 / AK4358 / AK4381
3 * AD and DA converters
4 *
5 * Copyright (c) 2000-2004 Jaroslav Kysela <perex@suse.cz>,
6 * 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
24#include <sound/driver.h>
25#include <asm/io.h>
26#include <linux/delay.h>
27#include <linux/interrupt.h>
28#include <linux/init.h>
29#include <sound/core.h>
30#include <sound/control.h>
31#include <sound/ak4xxx-adda.h>
32
33MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>, Takashi Iwai <tiwai@suse.de>");
34MODULE_DESCRIPTION("Routines for control of AK452x / AK43xx AD/DA converters");
35MODULE_LICENSE("GPL");
36
Takashi Iwaicb9d24e2006-06-27 17:49:12 +020037void snd_akm4xxx_write(struct snd_akm4xxx *ak, int chip, unsigned char reg,
38 unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 ak->ops.lock(ak, chip);
41 ak->ops.write(ak, chip, reg, val);
42
43 /* save the data */
44 if (ak->type == SND_AK4524 || ak->type == SND_AK4528) {
45 if ((reg != 0x04 && reg != 0x05) || (val & 0x80) == 0)
46 snd_akm4xxx_set(ak, chip, reg, val);
47 else
48 snd_akm4xxx_set_ipga(ak, chip, reg, val);
49 } else {
50 /* AK4529, or else */
51 snd_akm4xxx_set(ak, chip, reg, val);
52 }
53 ak->ops.unlock(ak, chip);
54}
55
Takashi Iwaicb9d24e2006-06-27 17:49:12 +020056EXPORT_SYMBOL(snd_akm4xxx_write);
57
58/* reset procedure for AK4524 and AK4528 */
59static void ak4524_reset(struct snd_akm4xxx *ak, int state)
60{
61 unsigned int chip;
62 unsigned char reg, maxreg;
63
64 if (ak->type == SND_AK4528)
65 maxreg = 0x06;
66 else
67 maxreg = 0x08;
68 for (chip = 0; chip < ak->num_dacs/2; chip++) {
69 snd_akm4xxx_write(ak, chip, 0x01, state ? 0x00 : 0x03);
70 if (state)
71 continue;
72 /* DAC volumes */
73 for (reg = 0x04; reg < maxreg; reg++)
74 snd_akm4xxx_write(ak, chip, reg,
75 snd_akm4xxx_get(ak, chip, reg));
76 if (ak->type == SND_AK4528)
77 continue;
78 /* IPGA */
79 for (reg = 0x04; reg < 0x06; reg++)
80 snd_akm4xxx_write(ak, chip, reg,
81 snd_akm4xxx_get_ipga(ak, chip, reg));
82 }
83}
84
85/* reset procedure for AK4355 and AK4358 */
86static void ak4355_reset(struct snd_akm4xxx *ak, int state)
87{
88 unsigned char reg;
89
90 if (state) {
91 snd_akm4xxx_write(ak, 0, 0x01, 0x02); /* reset and soft-mute */
92 return;
93 }
94 for (reg = 0x00; reg < 0x0b; reg++)
95 if (reg != 0x01)
96 snd_akm4xxx_write(ak, 0, reg,
97 snd_akm4xxx_get(ak, 0, reg));
98 snd_akm4xxx_write(ak, 0, 0x01, 0x01); /* un-reset, unmute */
99}
100
101/* reset procedure for AK4381 */
102static void ak4381_reset(struct snd_akm4xxx *ak, int state)
103{
104 unsigned int chip;
105 unsigned char reg;
106
107 for (chip = 0; chip < ak->num_dacs/2; chip++) {
108 snd_akm4xxx_write(ak, chip, 0x00, state ? 0x0c : 0x0f);
109 if (state)
110 continue;
111 for (reg = 0x01; reg < 0x05; reg++)
112 snd_akm4xxx_write(ak, chip, reg,
113 snd_akm4xxx_get(ak, chip, reg));
114 }
115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
118 * reset the AKM codecs
119 * @state: 1 = reset codec, 0 = restore the registers
120 *
121 * assert the reset operation and restores the register values to the chips.
122 */
Takashi Iwai97f02e02005-11-17 14:17:19 +0100123void snd_akm4xxx_reset(struct snd_akm4xxx *ak, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 switch (ak->type) {
126 case SND_AK4524:
127 case SND_AK4528:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200128 ak4524_reset(ak, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 break;
130 case SND_AK4529:
131 /* FIXME: needed for ak4529? */
132 break;
133 case SND_AK4355:
134 case SND_AK4358:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200135 ak4355_reset(ak, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 break;
137 case SND_AK4381:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200138 ak4381_reset(ak, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 break;
Takashi Iwaicf939072006-08-09 14:33:27 +0200140 default:
141 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 }
143}
144
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200145EXPORT_SYMBOL(snd_akm4xxx_reset);
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147/*
148 * initialize all the ak4xxx chips
149 */
Takashi Iwai97f02e02005-11-17 14:17:19 +0100150void snd_akm4xxx_init(struct snd_akm4xxx *ak)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
152 static unsigned char inits_ak4524[] = {
153 0x00, 0x07, /* 0: all power up */
154 0x01, 0x00, /* 1: ADC/DAC reset */
155 0x02, 0x60, /* 2: 24bit I2S */
156 0x03, 0x19, /* 3: deemphasis off */
157 0x01, 0x03, /* 1: ADC/DAC enable */
158 0x04, 0x00, /* 4: ADC left muted */
159 0x05, 0x00, /* 5: ADC right muted */
160 0x04, 0x80, /* 4: ADC IPGA gain 0dB */
161 0x05, 0x80, /* 5: ADC IPGA gain 0dB */
162 0x06, 0x00, /* 6: DAC left muted */
163 0x07, 0x00, /* 7: DAC right muted */
164 0xff, 0xff
165 };
166 static unsigned char inits_ak4528[] = {
167 0x00, 0x07, /* 0: all power up */
168 0x01, 0x00, /* 1: ADC/DAC reset */
169 0x02, 0x60, /* 2: 24bit I2S */
170 0x03, 0x0d, /* 3: deemphasis off, turn LR highpass filters on */
171 0x01, 0x03, /* 1: ADC/DAC enable */
172 0x04, 0x00, /* 4: ADC left muted */
173 0x05, 0x00, /* 5: ADC right muted */
174 0xff, 0xff
175 };
176 static unsigned char inits_ak4529[] = {
177 0x09, 0x01, /* 9: ATS=0, RSTN=1 */
178 0x0a, 0x3f, /* A: all power up, no zero/overflow detection */
179 0x00, 0x0c, /* 0: TDM=0, 24bit I2S, SMUTE=0 */
180 0x01, 0x00, /* 1: ACKS=0, ADC, loop off */
181 0x02, 0xff, /* 2: LOUT1 muted */
182 0x03, 0xff, /* 3: ROUT1 muted */
183 0x04, 0xff, /* 4: LOUT2 muted */
184 0x05, 0xff, /* 5: ROUT2 muted */
185 0x06, 0xff, /* 6: LOUT3 muted */
186 0x07, 0xff, /* 7: ROUT3 muted */
187 0x0b, 0xff, /* B: LOUT4 muted */
188 0x0c, 0xff, /* C: ROUT4 muted */
189 0x08, 0x55, /* 8: deemphasis all off */
190 0xff, 0xff
191 };
192 static unsigned char inits_ak4355[] = {
193 0x01, 0x02, /* 1: reset and soft-mute */
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200194 0x00, 0x06, /* 0: mode3(i2s), disable auto-clock detect,
195 * disable DZF, sharp roll-off, RSTN#=0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 0x02, 0x0e, /* 2: DA's power up, normal speed, RSTN#=0 */
197 // 0x02, 0x2e, /* quad speed */
198 0x03, 0x01, /* 3: de-emphasis off */
199 0x04, 0x00, /* 4: LOUT1 volume muted */
200 0x05, 0x00, /* 5: ROUT1 volume muted */
201 0x06, 0x00, /* 6: LOUT2 volume muted */
202 0x07, 0x00, /* 7: ROUT2 volume muted */
203 0x08, 0x00, /* 8: LOUT3 volume muted */
204 0x09, 0x00, /* 9: ROUT3 volume muted */
205 0x0a, 0x00, /* a: DATT speed=0, ignore DZF */
206 0x01, 0x01, /* 1: un-reset, unmute */
207 0xff, 0xff
208 };
209 static unsigned char inits_ak4358[] = {
210 0x01, 0x02, /* 1: reset and soft-mute */
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200211 0x00, 0x06, /* 0: mode3(i2s), disable auto-clock detect,
212 * disable DZF, sharp roll-off, RSTN#=0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 0x02, 0x0e, /* 2: DA's power up, normal speed, RSTN#=0 */
214 // 0x02, 0x2e, /* quad speed */
215 0x03, 0x01, /* 3: de-emphasis off */
216 0x04, 0x00, /* 4: LOUT1 volume muted */
217 0x05, 0x00, /* 5: ROUT1 volume muted */
218 0x06, 0x00, /* 6: LOUT2 volume muted */
219 0x07, 0x00, /* 7: ROUT2 volume muted */
220 0x08, 0x00, /* 8: LOUT3 volume muted */
221 0x09, 0x00, /* 9: ROUT3 volume muted */
222 0x0b, 0x00, /* b: LOUT4 volume muted */
223 0x0c, 0x00, /* c: ROUT4 volume muted */
224 0x0a, 0x00, /* a: DATT speed=0, ignore DZF */
225 0x01, 0x01, /* 1: un-reset, unmute */
226 0xff, 0xff
227 };
228 static unsigned char inits_ak4381[] = {
229 0x00, 0x0c, /* 0: mode3(i2s), disable auto-clock detect */
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200230 0x01, 0x02, /* 1: de-emphasis off, normal speed,
231 * sharp roll-off, DZF off */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 // 0x01, 0x12, /* quad speed */
233 0x02, 0x00, /* 2: DZF disabled */
234 0x03, 0x00, /* 3: LATT 0 */
235 0x04, 0x00, /* 4: RATT 0 */
236 0x00, 0x0f, /* 0: power-up, un-reset */
237 0xff, 0xff
238 };
239
240 int chip, num_chips;
241 unsigned char *ptr, reg, data, *inits;
242
243 switch (ak->type) {
244 case SND_AK4524:
245 inits = inits_ak4524;
246 num_chips = ak->num_dacs / 2;
247 break;
248 case SND_AK4528:
249 inits = inits_ak4528;
250 num_chips = ak->num_dacs / 2;
251 break;
252 case SND_AK4529:
253 inits = inits_ak4529;
254 num_chips = 1;
255 break;
256 case SND_AK4355:
257 inits = inits_ak4355;
258 num_chips = 1;
259 break;
260 case SND_AK4358:
261 inits = inits_ak4358;
262 num_chips = 1;
263 break;
264 case SND_AK4381:
265 inits = inits_ak4381;
266 num_chips = ak->num_dacs / 2;
267 break;
268 default:
269 snd_BUG();
270 return;
271 }
272
273 for (chip = 0; chip < num_chips; chip++) {
274 ptr = inits;
275 while (*ptr != 0xff) {
276 reg = *ptr++;
277 data = *ptr++;
278 snd_akm4xxx_write(ak, chip, reg, data);
279 }
280 }
281}
282
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200283EXPORT_SYMBOL(snd_akm4xxx_init);
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#define AK_GET_CHIP(val) (((val) >> 8) & 0xff)
286#define AK_GET_ADDR(val) ((val) & 0xff)
287#define AK_GET_SHIFT(val) (((val) >> 16) & 0x7f)
288#define AK_GET_INVERT(val) (((val) >> 23) & 1)
289#define AK_GET_MASK(val) (((val) >> 24) & 0xff)
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200290#define AK_COMPOSE(chip,addr,shift,mask) \
291 (((chip) << 8) | (addr) | ((shift) << 16) | ((mask) << 24))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#define AK_INVERT (1<<23)
293
Takashi Iwai97f02e02005-11-17 14:17:19 +0100294static int snd_akm4xxx_volume_info(struct snd_kcontrol *kcontrol,
295 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 unsigned int mask = AK_GET_MASK(kcontrol->private_value);
298
299 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
300 uinfo->count = 1;
301 uinfo->value.integer.min = 0;
302 uinfo->value.integer.max = mask;
303 return 0;
304}
305
Takashi Iwai97f02e02005-11-17 14:17:19 +0100306static int snd_akm4xxx_volume_get(struct snd_kcontrol *kcontrol,
307 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100309 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int chip = AK_GET_CHIP(kcontrol->private_value);
311 int addr = AK_GET_ADDR(kcontrol->private_value);
312 int invert = AK_GET_INVERT(kcontrol->private_value);
313 unsigned int mask = AK_GET_MASK(kcontrol->private_value);
314 unsigned char val = snd_akm4xxx_get(ak, chip, addr);
315
316 ucontrol->value.integer.value[0] = invert ? mask - val : val;
317 return 0;
318}
319
Takashi Iwai97f02e02005-11-17 14:17:19 +0100320static int snd_akm4xxx_volume_put(struct snd_kcontrol *kcontrol,
321 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100323 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 int chip = AK_GET_CHIP(kcontrol->private_value);
325 int addr = AK_GET_ADDR(kcontrol->private_value);
326 int invert = AK_GET_INVERT(kcontrol->private_value);
327 unsigned int mask = AK_GET_MASK(kcontrol->private_value);
328 unsigned char nval = ucontrol->value.integer.value[0] % (mask+1);
329 int change;
330
331 if (invert)
332 nval = mask - nval;
333 change = snd_akm4xxx_get(ak, chip, addr) != nval;
334 if (change)
335 snd_akm4xxx_write(ak, chip, addr, nval);
336 return change;
337}
338
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200339static int snd_akm4xxx_stereo_volume_info(struct snd_kcontrol *kcontrol,
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200340 struct snd_ctl_elem_info *uinfo)
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200341{
342 unsigned int mask = AK_GET_MASK(kcontrol->private_value);
343
344 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
345 uinfo->count = 2;
346 uinfo->value.integer.min = 0;
347 uinfo->value.integer.max = mask;
348 return 0;
349}
350
351static int snd_akm4xxx_stereo_volume_get(struct snd_kcontrol *kcontrol,
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200352 struct snd_ctl_elem_value *ucontrol)
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200353{
354 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
355 int chip = AK_GET_CHIP(kcontrol->private_value);
356 int addr = AK_GET_ADDR(kcontrol->private_value);
357 int invert = AK_GET_INVERT(kcontrol->private_value);
358 unsigned int mask = AK_GET_MASK(kcontrol->private_value);
359 unsigned char val = snd_akm4xxx_get(ak, chip, addr);
360
361 ucontrol->value.integer.value[0] = invert ? mask - val : val;
362
363 val = snd_akm4xxx_get(ak, chip, addr+1);
364 ucontrol->value.integer.value[1] = invert ? mask - val : val;
365
366 return 0;
367}
368
369static int snd_akm4xxx_stereo_volume_put(struct snd_kcontrol *kcontrol,
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200370 struct snd_ctl_elem_value *ucontrol)
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200371{
372 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
373 int chip = AK_GET_CHIP(kcontrol->private_value);
374 int addr = AK_GET_ADDR(kcontrol->private_value);
375 int invert = AK_GET_INVERT(kcontrol->private_value);
376 unsigned int mask = AK_GET_MASK(kcontrol->private_value);
377 unsigned char nval = ucontrol->value.integer.value[0] % (mask+1);
378 int change0, change1;
379
380 if (invert)
381 nval = mask - nval;
382 change0 = snd_akm4xxx_get(ak, chip, addr) != nval;
383 if (change0)
384 snd_akm4xxx_write(ak, chip, addr, nval);
385
386 nval = ucontrol->value.integer.value[1] % (mask+1);
387 if (invert)
388 nval = mask - nval;
389 change1 = snd_akm4xxx_get(ak, chip, addr+1) != nval;
390 if (change1)
391 snd_akm4xxx_write(ak, chip, addr+1, nval);
392
393
394 return change0 || change1;
395}
396
Takashi Iwai97f02e02005-11-17 14:17:19 +0100397static int snd_akm4xxx_ipga_gain_info(struct snd_kcontrol *kcontrol,
398 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
401 uinfo->count = 1;
402 uinfo->value.integer.min = 0;
403 uinfo->value.integer.max = 36;
404 return 0;
405}
406
Takashi Iwai97f02e02005-11-17 14:17:19 +0100407static int snd_akm4xxx_ipga_gain_get(struct snd_kcontrol *kcontrol,
408 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100410 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 int chip = AK_GET_CHIP(kcontrol->private_value);
412 int addr = AK_GET_ADDR(kcontrol->private_value);
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200413 ucontrol->value.integer.value[0] =
414 snd_akm4xxx_get_ipga(ak, chip, addr) & 0x7f;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 return 0;
416}
417
Takashi Iwai97f02e02005-11-17 14:17:19 +0100418static int snd_akm4xxx_ipga_gain_put(struct snd_kcontrol *kcontrol,
419 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100421 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 int chip = AK_GET_CHIP(kcontrol->private_value);
423 int addr = AK_GET_ADDR(kcontrol->private_value);
424 unsigned char nval = (ucontrol->value.integer.value[0] % 37) | 0x80;
425 int change = snd_akm4xxx_get_ipga(ak, chip, addr) != nval;
426 if (change)
427 snd_akm4xxx_write(ak, chip, addr, nval);
428 return change;
429}
430
Takashi Iwai97f02e02005-11-17 14:17:19 +0100431static int snd_akm4xxx_deemphasis_info(struct snd_kcontrol *kcontrol,
432 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 static char *texts[4] = {
435 "44.1kHz", "Off", "48kHz", "32kHz",
436 };
437 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
438 uinfo->count = 1;
439 uinfo->value.enumerated.items = 4;
440 if (uinfo->value.enumerated.item >= 4)
441 uinfo->value.enumerated.item = 3;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200442 strcpy(uinfo->value.enumerated.name,
443 texts[uinfo->value.enumerated.item]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return 0;
445}
446
Takashi Iwai97f02e02005-11-17 14:17:19 +0100447static int snd_akm4xxx_deemphasis_get(struct snd_kcontrol *kcontrol,
448 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100450 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 int chip = AK_GET_CHIP(kcontrol->private_value);
452 int addr = AK_GET_ADDR(kcontrol->private_value);
453 int shift = AK_GET_SHIFT(kcontrol->private_value);
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200454 ucontrol->value.enumerated.item[0] =
455 (snd_akm4xxx_get(ak, chip, addr) >> shift) & 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457}
458
Takashi Iwai97f02e02005-11-17 14:17:19 +0100459static int snd_akm4xxx_deemphasis_put(struct snd_kcontrol *kcontrol,
460 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Takashi Iwai97f02e02005-11-17 14:17:19 +0100462 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 int chip = AK_GET_CHIP(kcontrol->private_value);
464 int addr = AK_GET_ADDR(kcontrol->private_value);
465 int shift = AK_GET_SHIFT(kcontrol->private_value);
466 unsigned char nval = ucontrol->value.enumerated.item[0] & 3;
467 int change;
468
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200469 nval = (nval << shift) |
470 (snd_akm4xxx_get(ak, chip, addr) & ~(3 << shift));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 change = snd_akm4xxx_get(ak, chip, addr) != nval;
472 if (change)
473 snd_akm4xxx_write(ak, chip, addr, nval);
474 return change;
475}
476
Jochen Voss30ba6e22006-08-09 14:26:26 +0200477static int ak4xxx_switch_info(struct snd_kcontrol *kcontrol,
478 struct snd_ctl_elem_info *uinfo)
479{
480 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
481 uinfo->count = 1;
482 uinfo->value.integer.min = 0;
483 uinfo->value.integer.max = 1;
484 return 0;
485}
486
487static int ak4xxx_switch_get(struct snd_kcontrol *kcontrol,
488 struct snd_ctl_elem_value *ucontrol)
489{
490 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
491 int chip = AK_GET_CHIP(kcontrol->private_value);
492 int addr = AK_GET_ADDR(kcontrol->private_value);
493 int shift = AK_GET_SHIFT(kcontrol->private_value);
494 int invert = AK_GET_INVERT(kcontrol->private_value);
495 unsigned char val = snd_akm4xxx_get(ak, chip, addr);
496
497 if (invert)
498 val = ! val;
499 ucontrol->value.integer.value[0] = (val & (1<<shift)) != 0;
500 return 0;
501}
502
503static int ak4xxx_switch_put(struct snd_kcontrol *kcontrol,
504 struct snd_ctl_elem_value *ucontrol)
505{
506 struct snd_akm4xxx *ak = snd_kcontrol_chip(kcontrol);
507 int chip = AK_GET_CHIP(kcontrol->private_value);
508 int addr = AK_GET_ADDR(kcontrol->private_value);
509 int shift = AK_GET_SHIFT(kcontrol->private_value);
510 int invert = AK_GET_INVERT(kcontrol->private_value);
511 long flag = ucontrol->value.integer.value[0];
512 unsigned char val, oval;
513 int change;
514
515 if (invert)
516 flag = ! flag;
517 oval = snd_akm4xxx_get(ak, chip, addr);
518 if (flag)
519 val = oval | (1<<shift);
520 else
521 val = oval & ~(1<<shift);
522 change = (oval != val);
523 if (change)
524 snd_akm4xxx_write(ak, chip, addr, val);
525 return change;
526}
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528/*
529 * build AK4xxx controls
530 */
531
Takashi Iwai97f02e02005-11-17 14:17:19 +0100532int snd_akm4xxx_build_controls(struct snd_akm4xxx *ak)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 unsigned int idx, num_emphs;
Takashi Iwai97f02e02005-11-17 14:17:19 +0100535 struct snd_kcontrol *ctl;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int err;
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200537 int mixer_ch = 0;
538 int num_stereo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 ctl = kmalloc(sizeof(*ctl), GFP_KERNEL);
541 if (! ctl)
542 return -ENOMEM;
543
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200544 for (idx = 0; idx < ak->num_dacs; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 memset(ctl, 0, sizeof(*ctl));
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200546 if (ak->channel_names == NULL) {
547 strcpy(ctl->id.name, "DAC Volume");
548 num_stereo = 1;
549 ctl->id.index = mixer_ch + ak->idx_offset * 2;
550 } else {
551 strcpy(ctl->id.name, ak->channel_names[mixer_ch]);
552 num_stereo = ak->num_stereo[mixer_ch];
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200553 ctl->id.index = 0;
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
556 ctl->count = 1;
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200557 if (num_stereo == 2) {
558 ctl->info = snd_akm4xxx_stereo_volume_info;
559 ctl->get = snd_akm4xxx_stereo_volume_get;
560 ctl->put = snd_akm4xxx_stereo_volume_put;
561 } else {
562 ctl->info = snd_akm4xxx_volume_info;
563 ctl->get = snd_akm4xxx_volume_get;
564 ctl->put = snd_akm4xxx_volume_put;
565 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 switch (ak->type) {
567 case SND_AK4524:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200568 /* register 6 & 7 */
569 ctl->private_value =
570 AK_COMPOSE(idx/2, (idx%2) + 6, 0, 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 break;
572 case SND_AK4528:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200573 /* register 4 & 5 */
574 ctl->private_value =
575 AK_COMPOSE(idx/2, (idx%2) + 4, 0, 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 break;
577 case SND_AK4529: {
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200578 /* registers 2-7 and b,c */
579 int val = idx < 6 ? idx + 2 : (idx - 6) + 0xb;
580 ctl->private_value =
581 AK_COMPOSE(0, val, 0, 255) | AK_INVERT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 break;
583 }
584 case SND_AK4355:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200585 /* register 4-9, chip #0 only */
586 ctl->private_value = AK_COMPOSE(0, idx + 4, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 break;
588 case SND_AK4358:
589 if (idx >= 6)
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200590 /* register 4-9, chip #0 only */
591 ctl->private_value =
592 AK_COMPOSE(0, idx + 5, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 else
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200594 /* register 4-9, chip #0 only */
595 ctl->private_value =
596 AK_COMPOSE(0, idx + 4, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 break;
598 case SND_AK4381:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200599 /* register 3 & 4 */
600 ctl->private_value =
601 AK_COMPOSE(idx/2, (idx%2) + 3, 0, 255);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 break;
603 default:
604 err = -EINVAL;
605 goto __error;
606 }
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 ctl->private_data = ak;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200609 err = snd_ctl_add(ak->card,
610 snd_ctl_new(ctl, SNDRV_CTL_ELEM_ACCESS_READ|
611 SNDRV_CTL_ELEM_ACCESS_WRITE));
612 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 goto __error;
Jani Alinikulac83c0c42006-06-27 15:00:55 +0200614
615 idx += num_stereo;
616 mixer_ch++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
618 for (idx = 0; idx < ak->num_adcs && ak->type == SND_AK4524; ++idx) {
619 memset(ctl, 0, sizeof(*ctl));
620 strcpy(ctl->id.name, "ADC Volume");
621 ctl->id.index = idx + ak->idx_offset * 2;
622 ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
623 ctl->count = 1;
624 ctl->info = snd_akm4xxx_volume_info;
625 ctl->get = snd_akm4xxx_volume_get;
626 ctl->put = snd_akm4xxx_volume_put;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200627 /* register 4 & 5 */
628 ctl->private_value =
629 AK_COMPOSE(idx/2, (idx%2) + 4, 0, 127);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 ctl->private_data = ak;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200631 err = snd_ctl_add(ak->card,
632 snd_ctl_new(ctl, SNDRV_CTL_ELEM_ACCESS_READ|
633 SNDRV_CTL_ELEM_ACCESS_WRITE));
634 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 goto __error;
636
637 memset(ctl, 0, sizeof(*ctl));
638 strcpy(ctl->id.name, "IPGA Analog Capture Volume");
639 ctl->id.index = idx + ak->idx_offset * 2;
640 ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
641 ctl->count = 1;
642 ctl->info = snd_akm4xxx_ipga_gain_info;
643 ctl->get = snd_akm4xxx_ipga_gain_get;
644 ctl->put = snd_akm4xxx_ipga_gain_put;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200645 /* register 4 & 5 */
646 ctl->private_value = AK_COMPOSE(idx/2, (idx%2) + 4, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 ctl->private_data = ak;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200648 err = snd_ctl_add(ak->card,
649 snd_ctl_new(ctl, SNDRV_CTL_ELEM_ACCESS_READ|
650 SNDRV_CTL_ELEM_ACCESS_WRITE));
651 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 goto __error;
653 }
Jochen Voss683fe152006-08-08 21:12:44 +0200654
655 if (ak->type == SND_AK5365) {
656 memset(ctl, 0, sizeof(*ctl));
657 if (ak->channel_names == NULL)
658 strcpy(ctl->id.name, "Capture Volume");
659 else
660 strcpy(ctl->id.name, ak->channel_names[0]);
661 ctl->id.index = ak->idx_offset * 2;
662 ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
663 ctl->count = 1;
664 ctl->info = snd_akm4xxx_stereo_volume_info;
665 ctl->get = snd_akm4xxx_stereo_volume_get;
666 ctl->put = snd_akm4xxx_stereo_volume_put;
667 /* Registers 4 & 5 (see AK5365 data sheet, pages 34 and 35):
668 * valid values are from 0x00 (mute) to 0x98 (+12dB). */
669 ctl->private_value =
670 AK_COMPOSE(0, 4, 0, 0x98);
671 ctl->private_data = ak;
672 err = snd_ctl_add(ak->card,
673 snd_ctl_new(ctl, SNDRV_CTL_ELEM_ACCESS_READ|
674 SNDRV_CTL_ELEM_ACCESS_WRITE));
675 if (err < 0)
676 goto __error;
Jochen Voss30ba6e22006-08-09 14:26:26 +0200677
678 memset(ctl, 0, sizeof(*ctl));
679 if (ak->channel_names == NULL)
680 strcpy(ctl->id.name, "Capture Switch");
681 else
682 strcpy(ctl->id.name, ak->channel_names[1]);
683 ctl->id.index = ak->idx_offset * 2;
684 ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
685 ctl->count = 1;
686 ctl->info = ak4xxx_switch_info;
687 ctl->get = ak4xxx_switch_get;
688 ctl->put = ak4xxx_switch_put;
689 /* register 2, bit 0 (SMUTE): 0 = normal operation, 1 = mute */
690 ctl->private_value =
691 AK_COMPOSE(0, 2, 0, 0) | AK_INVERT;
692 ctl->private_data = ak;
693 err = snd_ctl_add(ak->card,
694 snd_ctl_new(ctl, SNDRV_CTL_ELEM_ACCESS_READ|
695 SNDRV_CTL_ELEM_ACCESS_WRITE));
696 if (err < 0)
697 goto __error;
Jochen Voss683fe152006-08-08 21:12:44 +0200698 }
699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (ak->type == SND_AK4355 || ak->type == SND_AK4358)
701 num_emphs = 1;
702 else
703 num_emphs = ak->num_dacs / 2;
704 for (idx = 0; idx < num_emphs; idx++) {
705 memset(ctl, 0, sizeof(*ctl));
706 strcpy(ctl->id.name, "Deemphasis");
707 ctl->id.index = idx + ak->idx_offset;
708 ctl->id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
709 ctl->count = 1;
710 ctl->info = snd_akm4xxx_deemphasis_info;
711 ctl->get = snd_akm4xxx_deemphasis_get;
712 ctl->put = snd_akm4xxx_deemphasis_put;
713 switch (ak->type) {
714 case SND_AK4524:
715 case SND_AK4528:
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200716 /* register 3 */
717 ctl->private_value = AK_COMPOSE(idx, 3, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 break;
719 case SND_AK4529: {
720 int shift = idx == 3 ? 6 : (2 - idx) * 2;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200721 /* register 8 with shift */
722 ctl->private_value = AK_COMPOSE(0, 8, shift, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 break;
724 }
725 case SND_AK4355:
726 case SND_AK4358:
727 ctl->private_value = AK_COMPOSE(idx, 3, 0, 0);
728 break;
729 case SND_AK4381:
730 ctl->private_value = AK_COMPOSE(idx, 1, 1, 0);
731 break;
Takashi Iwaicf939072006-08-09 14:33:27 +0200732 default:
733 err = -EINVAL;
734 goto __error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736 ctl->private_data = ak;
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200737 err = snd_ctl_add(ak->card,
738 snd_ctl_new(ctl, SNDRV_CTL_ELEM_ACCESS_READ|
739 SNDRV_CTL_ELEM_ACCESS_WRITE));
740 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 goto __error;
742 }
743 err = 0;
744
745 __error:
746 kfree(ctl);
747 return err;
748}
749
Takashi Iwaicb9d24e2006-06-27 17:49:12 +0200750EXPORT_SYMBOL(snd_akm4xxx_build_controls);
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752static int __init alsa_akm4xxx_module_init(void)
753{
754 return 0;
755}
756
757static void __exit alsa_akm4xxx_module_exit(void)
758{
759}
760
761module_init(alsa_akm4xxx_module_init)
762module_exit(alsa_akm4xxx_module_exit)