2 * ALSA driver for AK4524 / AK4528 / AK4529 / AK4355 / AK4358 / AK4381
5 * Copyright (c) 2000-2004 Jaroslav Kysela <perex@suse.cz>,
6 * 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 <sound/core.h>
30 #include <sound/control.h>
31 #include <sound/ak4xxx-adda.h>
33 MODULE_AUTHOR("Jaroslav Kysela <perex@suse.cz>, Takashi Iwai <tiwai@suse.de>");
34 MODULE_DESCRIPTION("Routines for control of AK452x / AK43xx AD/DA converters");
35 MODULE_LICENSE("GPL");
37 void snd_akm4xxx_write(akm4xxx_t
*ak
, int chip
, unsigned char reg
, unsigned char val
)
39 ak
->ops
.lock(ak
, chip
);
40 ak
->ops
.write(ak
, chip
, reg
, val
);
43 if (ak
->type
== SND_AK4524
|| ak
->type
== SND_AK4528
) {
44 if ((reg
!= 0x04 && reg
!= 0x05) || (val
& 0x80) == 0)
45 snd_akm4xxx_set(ak
, chip
, reg
, val
);
47 snd_akm4xxx_set_ipga(ak
, chip
, reg
, val
);
50 snd_akm4xxx_set(ak
, chip
, reg
, val
);
52 ak
->ops
.unlock(ak
, chip
);
56 * reset the AKM codecs
57 * @state: 1 = reset codec, 0 = restore the registers
59 * assert the reset operation and restores the register values to the chips.
61 void snd_akm4xxx_reset(akm4xxx_t
*ak
, int state
)
69 for (chip
= 0; chip
< ak
->num_dacs
/2; chip
++) {
70 snd_akm4xxx_write(ak
, chip
, 0x01, state
? 0x00 : 0x03);
74 for (reg
= 0x04; reg
< (ak
->type
== SND_AK4528
? 0x06 : 0x08); reg
++)
75 snd_akm4xxx_write(ak
, chip
, reg
, snd_akm4xxx_get(ak
, chip
, reg
));
76 if (ak
->type
== SND_AK4528
)
79 for (reg
= 0x04; reg
< 0x06; reg
++)
80 snd_akm4xxx_write(ak
, chip
, reg
, snd_akm4xxx_get_ipga(ak
, chip
, reg
));
84 /* FIXME: needed for ak4529? */
89 snd_akm4xxx_write(ak
, 0, 0x01, 0x02); /* reset and soft-mute */
92 for (reg
= 0x00; reg
< 0x0b; reg
++)
94 snd_akm4xxx_write(ak
, 0, reg
, snd_akm4xxx_get(ak
, 0, reg
));
95 snd_akm4xxx_write(ak
, 0, 0x01, 0x01); /* un-reset, unmute */
98 for (chip
= 0; chip
< ak
->num_dacs
/2; chip
++) {
99 snd_akm4xxx_write(ak
, chip
, 0x00, state
? 0x0c : 0x0f);
102 for (reg
= 0x01; reg
< 0x05; reg
++)
103 snd_akm4xxx_write(ak
, chip
, reg
, snd_akm4xxx_get(ak
, chip
, reg
));
110 * initialize all the ak4xxx chips
112 void snd_akm4xxx_init(akm4xxx_t
*ak
)
114 static unsigned char inits_ak4524
[] = {
115 0x00, 0x07, /* 0: all power up */
116 0x01, 0x00, /* 1: ADC/DAC reset */
117 0x02, 0x60, /* 2: 24bit I2S */
118 0x03, 0x19, /* 3: deemphasis off */
119 0x01, 0x03, /* 1: ADC/DAC enable */
120 0x04, 0x00, /* 4: ADC left muted */
121 0x05, 0x00, /* 5: ADC right muted */
122 0x04, 0x80, /* 4: ADC IPGA gain 0dB */
123 0x05, 0x80, /* 5: ADC IPGA gain 0dB */
124 0x06, 0x00, /* 6: DAC left muted */
125 0x07, 0x00, /* 7: DAC right muted */
128 static unsigned char inits_ak4528
[] = {
129 0x00, 0x07, /* 0: all power up */
130 0x01, 0x00, /* 1: ADC/DAC reset */
131 0x02, 0x60, /* 2: 24bit I2S */
132 0x03, 0x0d, /* 3: deemphasis off, turn LR highpass filters on */
133 0x01, 0x03, /* 1: ADC/DAC enable */
134 0x04, 0x00, /* 4: ADC left muted */
135 0x05, 0x00, /* 5: ADC right muted */
138 static unsigned char inits_ak4529
[] = {
139 0x09, 0x01, /* 9: ATS=0, RSTN=1 */
140 0x0a, 0x3f, /* A: all power up, no zero/overflow detection */
141 0x00, 0x0c, /* 0: TDM=0, 24bit I2S, SMUTE=0 */
142 0x01, 0x00, /* 1: ACKS=0, ADC, loop off */
143 0x02, 0xff, /* 2: LOUT1 muted */
144 0x03, 0xff, /* 3: ROUT1 muted */
145 0x04, 0xff, /* 4: LOUT2 muted */
146 0x05, 0xff, /* 5: ROUT2 muted */
147 0x06, 0xff, /* 6: LOUT3 muted */
148 0x07, 0xff, /* 7: ROUT3 muted */
149 0x0b, 0xff, /* B: LOUT4 muted */
150 0x0c, 0xff, /* C: ROUT4 muted */
151 0x08, 0x55, /* 8: deemphasis all off */
154 static unsigned char inits_ak4355
[] = {
155 0x01, 0x02, /* 1: reset and soft-mute */
156 0x00, 0x06, /* 0: mode3(i2s), disable auto-clock detect, disable DZF, sharp roll-off, RSTN#=0 */
157 0x02, 0x0e, /* 2: DA's power up, normal speed, RSTN#=0 */
158 // 0x02, 0x2e, /* quad speed */
159 0x03, 0x01, /* 3: de-emphasis off */
160 0x04, 0x00, /* 4: LOUT1 volume muted */
161 0x05, 0x00, /* 5: ROUT1 volume muted */
162 0x06, 0x00, /* 6: LOUT2 volume muted */
163 0x07, 0x00, /* 7: ROUT2 volume muted */
164 0x08, 0x00, /* 8: LOUT3 volume muted */
165 0x09, 0x00, /* 9: ROUT3 volume muted */
166 0x0a, 0x00, /* a: DATT speed=0, ignore DZF */
167 0x01, 0x01, /* 1: un-reset, unmute */
170 static unsigned char inits_ak4358
[] = {
171 0x01, 0x02, /* 1: reset and soft-mute */
172 0x00, 0x06, /* 0: mode3(i2s), disable auto-clock detect, disable DZF, sharp roll-off, RSTN#=0 */
173 0x02, 0x0e, /* 2: DA's power up, normal speed, RSTN#=0 */
174 // 0x02, 0x2e, /* quad speed */
175 0x03, 0x01, /* 3: de-emphasis off */
176 0x04, 0x00, /* 4: LOUT1 volume muted */
177 0x05, 0x00, /* 5: ROUT1 volume muted */
178 0x06, 0x00, /* 6: LOUT2 volume muted */
179 0x07, 0x00, /* 7: ROUT2 volume muted */
180 0x08, 0x00, /* 8: LOUT3 volume muted */
181 0x09, 0x00, /* 9: ROUT3 volume muted */
182 0x0b, 0x00, /* b: LOUT4 volume muted */
183 0x0c, 0x00, /* c: ROUT4 volume muted */
184 0x0a, 0x00, /* a: DATT speed=0, ignore DZF */
185 0x01, 0x01, /* 1: un-reset, unmute */
188 static unsigned char inits_ak4381
[] = {
189 0x00, 0x0c, /* 0: mode3(i2s), disable auto-clock detect */
190 0x01, 0x02, /* 1: de-emphasis off, normal speed, sharp roll-off, DZF off */
191 // 0x01, 0x12, /* quad speed */
192 0x02, 0x00, /* 2: DZF disabled */
193 0x03, 0x00, /* 3: LATT 0 */
194 0x04, 0x00, /* 4: RATT 0 */
195 0x00, 0x0f, /* 0: power-up, un-reset */
200 unsigned char *ptr
, reg
, data
, *inits
;
204 inits
= inits_ak4524
;
205 num_chips
= ak
->num_dacs
/ 2;
208 inits
= inits_ak4528
;
209 num_chips
= ak
->num_dacs
/ 2;
212 inits
= inits_ak4529
;
216 inits
= inits_ak4355
;
220 inits
= inits_ak4358
;
224 inits
= inits_ak4381
;
225 num_chips
= ak
->num_dacs
/ 2;
232 for (chip
= 0; chip
< num_chips
; chip
++) {
234 while (*ptr
!= 0xff) {
237 snd_akm4xxx_write(ak
, chip
, reg
, data
);
242 #define AK_GET_CHIP(val) (((val) >> 8) & 0xff)
243 #define AK_GET_ADDR(val) ((val) & 0xff)
244 #define AK_GET_SHIFT(val) (((val) >> 16) & 0x7f)
245 #define AK_GET_INVERT(val) (((val) >> 23) & 1)
246 #define AK_GET_MASK(val) (((val) >> 24) & 0xff)
247 #define AK_COMPOSE(chip,addr,shift,mask) (((chip) << 8) | (addr) | ((shift) << 16) | ((mask) << 24))
248 #define AK_INVERT (1<<23)
250 static int snd_akm4xxx_volume_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
* uinfo
)
252 unsigned int mask
= AK_GET_MASK(kcontrol
->private_value
);
254 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
256 uinfo
->value
.integer
.min
= 0;
257 uinfo
->value
.integer
.max
= mask
;
261 static int snd_akm4xxx_volume_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
263 akm4xxx_t
*ak
= snd_kcontrol_chip(kcontrol
);
264 int chip
= AK_GET_CHIP(kcontrol
->private_value
);
265 int addr
= AK_GET_ADDR(kcontrol
->private_value
);
266 int invert
= AK_GET_INVERT(kcontrol
->private_value
);
267 unsigned int mask
= AK_GET_MASK(kcontrol
->private_value
);
268 unsigned char val
= snd_akm4xxx_get(ak
, chip
, addr
);
270 ucontrol
->value
.integer
.value
[0] = invert
? mask
- val
: val
;
274 static int snd_akm4xxx_volume_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
276 akm4xxx_t
*ak
= snd_kcontrol_chip(kcontrol
);
277 int chip
= AK_GET_CHIP(kcontrol
->private_value
);
278 int addr
= AK_GET_ADDR(kcontrol
->private_value
);
279 int invert
= AK_GET_INVERT(kcontrol
->private_value
);
280 unsigned int mask
= AK_GET_MASK(kcontrol
->private_value
);
281 unsigned char nval
= ucontrol
->value
.integer
.value
[0] % (mask
+1);
286 change
= snd_akm4xxx_get(ak
, chip
, addr
) != nval
;
288 snd_akm4xxx_write(ak
, chip
, addr
, nval
);
292 static int snd_akm4xxx_ipga_gain_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
* uinfo
)
294 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
296 uinfo
->value
.integer
.min
= 0;
297 uinfo
->value
.integer
.max
= 36;
301 static int snd_akm4xxx_ipga_gain_get(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
303 akm4xxx_t
*ak
= snd_kcontrol_chip(kcontrol
);
304 int chip
= AK_GET_CHIP(kcontrol
->private_value
);
305 int addr
= AK_GET_ADDR(kcontrol
->private_value
);
306 ucontrol
->value
.integer
.value
[0] = snd_akm4xxx_get_ipga(ak
, chip
, addr
) & 0x7f;
310 static int snd_akm4xxx_ipga_gain_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
312 akm4xxx_t
*ak
= snd_kcontrol_chip(kcontrol
);
313 int chip
= AK_GET_CHIP(kcontrol
->private_value
);
314 int addr
= AK_GET_ADDR(kcontrol
->private_value
);
315 unsigned char nval
= (ucontrol
->value
.integer
.value
[0] % 37) | 0x80;
316 int change
= snd_akm4xxx_get_ipga(ak
, chip
, addr
) != nval
;
318 snd_akm4xxx_write(ak
, chip
, addr
, nval
);
322 static int snd_akm4xxx_deemphasis_info(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
*uinfo
)
324 static char *texts
[4] = {
325 "44.1kHz", "Off", "48kHz", "32kHz",
327 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
329 uinfo
->value
.enumerated
.items
= 4;
330 if (uinfo
->value
.enumerated
.item
>= 4)
331 uinfo
->value
.enumerated
.item
= 3;
332 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
336 static int snd_akm4xxx_deemphasis_get(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
338 akm4xxx_t
*ak
= snd_kcontrol_chip(kcontrol
);
339 int chip
= AK_GET_CHIP(kcontrol
->private_value
);
340 int addr
= AK_GET_ADDR(kcontrol
->private_value
);
341 int shift
= AK_GET_SHIFT(kcontrol
->private_value
);
342 ucontrol
->value
.enumerated
.item
[0] = (snd_akm4xxx_get(ak
, chip
, addr
) >> shift
) & 3;
346 static int snd_akm4xxx_deemphasis_put(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_value_t
*ucontrol
)
348 akm4xxx_t
*ak
= snd_kcontrol_chip(kcontrol
);
349 int chip
= AK_GET_CHIP(kcontrol
->private_value
);
350 int addr
= AK_GET_ADDR(kcontrol
->private_value
);
351 int shift
= AK_GET_SHIFT(kcontrol
->private_value
);
352 unsigned char nval
= ucontrol
->value
.enumerated
.item
[0] & 3;
355 nval
= (nval
<< shift
) | (snd_akm4xxx_get(ak
, chip
, addr
) & ~(3 << shift
));
356 change
= snd_akm4xxx_get(ak
, chip
, addr
) != nval
;
358 snd_akm4xxx_write(ak
, chip
, addr
, nval
);
363 * build AK4xxx controls
366 int snd_akm4xxx_build_controls(akm4xxx_t
*ak
)
368 unsigned int idx
, num_emphs
;
372 ctl
= kmalloc(sizeof(*ctl
), GFP_KERNEL
);
376 for (idx
= 0; idx
< ak
->num_dacs
; ++idx
) {
377 memset(ctl
, 0, sizeof(*ctl
));
378 strcpy(ctl
->id
.name
, "DAC Volume");
379 ctl
->id
.index
= idx
+ ak
->idx_offset
* 2;
380 ctl
->id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
382 ctl
->info
= snd_akm4xxx_volume_info
;
383 ctl
->get
= snd_akm4xxx_volume_get
;
384 ctl
->put
= snd_akm4xxx_volume_put
;
387 ctl
->private_value
= AK_COMPOSE(idx
/2, (idx
%2) + 6, 0, 127); /* register 6 & 7 */
390 ctl
->private_value
= AK_COMPOSE(idx
/2, (idx
%2) + 4, 0, 127); /* register 4 & 5 */
393 int val
= idx
< 6 ? idx
+ 2 : (idx
- 6) + 0xb; /* registers 2-7 and b,c */
394 ctl
->private_value
= AK_COMPOSE(0, val
, 0, 255) | AK_INVERT
;
398 ctl
->private_value
= AK_COMPOSE(0, idx
+ 4, 0, 255); /* register 4-9, chip #0 only */
402 ctl
->private_value
= AK_COMPOSE(0, idx
+ 5, 0, 255); /* register 4-9, chip #0 only */
404 ctl
->private_value
= AK_COMPOSE(0, idx
+ 4, 0, 255); /* register 4-9, chip #0 only */
407 ctl
->private_value
= AK_COMPOSE(idx
/2, (idx
%2) + 3, 0, 255); /* register 3 & 4 */
413 ctl
->private_data
= ak
;
414 if ((err
= snd_ctl_add(ak
->card
, snd_ctl_new(ctl
, SNDRV_CTL_ELEM_ACCESS_READ
|SNDRV_CTL_ELEM_ACCESS_WRITE
))) < 0)
417 for (idx
= 0; idx
< ak
->num_adcs
&& ak
->type
== SND_AK4524
; ++idx
) {
418 memset(ctl
, 0, sizeof(*ctl
));
419 strcpy(ctl
->id
.name
, "ADC Volume");
420 ctl
->id
.index
= idx
+ ak
->idx_offset
* 2;
421 ctl
->id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
423 ctl
->info
= snd_akm4xxx_volume_info
;
424 ctl
->get
= snd_akm4xxx_volume_get
;
425 ctl
->put
= snd_akm4xxx_volume_put
;
426 ctl
->private_value
= AK_COMPOSE(idx
/2, (idx
%2) + 4, 0, 127); /* register 4 & 5 */
427 ctl
->private_data
= ak
;
428 if ((err
= snd_ctl_add(ak
->card
, snd_ctl_new(ctl
, SNDRV_CTL_ELEM_ACCESS_READ
|SNDRV_CTL_ELEM_ACCESS_WRITE
))) < 0)
431 memset(ctl
, 0, sizeof(*ctl
));
432 strcpy(ctl
->id
.name
, "IPGA Analog Capture Volume");
433 ctl
->id
.index
= idx
+ ak
->idx_offset
* 2;
434 ctl
->id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
436 ctl
->info
= snd_akm4xxx_ipga_gain_info
;
437 ctl
->get
= snd_akm4xxx_ipga_gain_get
;
438 ctl
->put
= snd_akm4xxx_ipga_gain_put
;
439 ctl
->private_value
= AK_COMPOSE(idx
/2, (idx
%2) + 4, 0, 0); /* register 4 & 5 */
440 ctl
->private_data
= ak
;
441 if ((err
= snd_ctl_add(ak
->card
, snd_ctl_new(ctl
, SNDRV_CTL_ELEM_ACCESS_READ
|SNDRV_CTL_ELEM_ACCESS_WRITE
))) < 0)
444 if (ak
->type
== SND_AK4355
|| ak
->type
== SND_AK4358
)
447 num_emphs
= ak
->num_dacs
/ 2;
448 for (idx
= 0; idx
< num_emphs
; idx
++) {
449 memset(ctl
, 0, sizeof(*ctl
));
450 strcpy(ctl
->id
.name
, "Deemphasis");
451 ctl
->id
.index
= idx
+ ak
->idx_offset
;
452 ctl
->id
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
454 ctl
->info
= snd_akm4xxx_deemphasis_info
;
455 ctl
->get
= snd_akm4xxx_deemphasis_get
;
456 ctl
->put
= snd_akm4xxx_deemphasis_put
;
460 ctl
->private_value
= AK_COMPOSE(idx
, 3, 0, 0); /* register 3 */
463 int shift
= idx
== 3 ? 6 : (2 - idx
) * 2;
464 ctl
->private_value
= AK_COMPOSE(0, 8, shift
, 0); /* register 8 with shift */
469 ctl
->private_value
= AK_COMPOSE(idx
, 3, 0, 0);
472 ctl
->private_value
= AK_COMPOSE(idx
, 1, 1, 0);
475 ctl
->private_data
= ak
;
476 if ((err
= snd_ctl_add(ak
->card
, snd_ctl_new(ctl
, SNDRV_CTL_ELEM_ACCESS_READ
|SNDRV_CTL_ELEM_ACCESS_WRITE
))) < 0)
486 static int __init
alsa_akm4xxx_module_init(void)
491 static void __exit
alsa_akm4xxx_module_exit(void)
495 module_init(alsa_akm4xxx_module_init
)
496 module_exit(alsa_akm4xxx_module_exit
)
498 EXPORT_SYMBOL(snd_akm4xxx_write
);
499 EXPORT_SYMBOL(snd_akm4xxx_reset
);
500 EXPORT_SYMBOL(snd_akm4xxx_init
);
501 EXPORT_SYMBOL(snd_akm4xxx_build_controls
);