2 * Philips UDA1341 mixer device driver
3 * Copyright (c) 2002 Tomas Kasparek <tomas.kasparek@seznam.cz>
5 * Portions are Copyright (C) 2000 Lernout & Hauspie Speech Products, N.V.
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License.
12 * 2002-03-13 Tomas Kasparek initial release - based on uda1341.c from OSS
13 * 2002-03-28 Tomas Kasparek basic mixer is working (volume, bass, treble)
14 * 2002-03-30 Tomas Kasparek proc filesystem support, complete mixer and DSP
16 * 2002-04-12 Tomas Kasparek proc interface update, code cleanup
17 * 2002-05-12 Tomas Kasparek another code cleanup
20 /* $Id: uda1341.c,v 1.15 2005/01/03 12:05:20 tiwai Exp $ */
22 #include <sound/driver.h>
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/types.h>
26 #include <linux/slab.h>
27 #include <linux/errno.h>
28 #include <linux/ioctl.h>
30 #include <asm/uaccess.h>
32 #include <sound/core.h>
33 #include <sound/control.h>
34 #include <sound/initval.h>
35 #include <sound/info.h>
37 #include <linux/l3/l3.h>
39 #include <sound/uda1341.h>
41 /* {{{ HW regs definition */
45 #define STAT_MASK 0x80
50 #define DATA_MASK 0xc0
52 #define IS_DATA0(x) ((x) >= data0_0 && (x) <= data0_2)
53 #define IS_DATA1(x) ((x) == data1)
54 #define IS_STATUS(x) ((x) == stat0 || (x) == stat1)
55 #define IS_EXTEND(x) ((x) >= ext0 && (x) <= ext6)
59 enum uda1341_regs_names
{
76 const char *uda1341_reg_names
[] = {
92 const int uda1341_enum_items
[] = {
93 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
94 2, //peak - before/after
95 4, //deemp - none/32/44.1/48
97 4, //filter - flat/min/min/max
99 4, //mixer - differ/line/mic/mixer
103 const char ** uda1341_enum_names
[] = {
104 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
105 peak_names
, //peak - before/after
106 deemp_names
, //deemp - none/32/44.1/48
108 filter_names
, //filter - flat/min/min/max
110 mixer_names
, //mixer - differ/line/mic/mixer
111 NULL
, NULL
, NULL
, NULL
, NULL
,
114 typedef int uda1341_cfg
[CMD_LAST
];
116 typedef struct uda1341 uda1341_t
;
119 int (*write
) (struct l3_client
*uda1341
, unsigned short reg
, unsigned short val
);
120 int (*read
) (struct l3_client
*uda1341
, unsigned short reg
);
121 unsigned char regs
[uda1341_reg_last
];
127 unsigned char suspend_regs
[uda1341_reg_last
];
128 uda1341_cfg suspend_cfg
;
132 //hack for ALSA magic casting
133 typedef struct l3_client l3_client_t
;
135 /* transfer 8bit integer into string with binary representation */
136 void int2str_bin8(uint8_t val
, char *buf
){
137 const int size
= sizeof(val
) * 8;
140 for (i
= 0; i
< size
; i
++){
141 *(buf
++) = (val
>> (size
- 1)) ? '1' : '0';
144 *buf
= '\0'; //end the string with zero
147 /* {{{ HW manipulation routines */
149 int snd_uda1341_codec_write(struct l3_client
*clnt
, unsigned short reg
, unsigned short val
)
151 struct uda1341
*uda
= clnt
->driver_data
;
152 unsigned char buf
[2] = { 0xc0, 0xe0 }; // for EXT addressing
155 uda
->regs
[reg
] = val
;
159 err
= l3_write(clnt
, UDA1341_DATA0
, (const unsigned char *)&val
, 1);
160 } else if (IS_DATA1(reg
)) {
161 err
= l3_write(clnt
, UDA1341_DATA1
, (const unsigned char *)&val
, 1);
162 } else if (IS_STATUS(reg
)) {
163 err
= l3_write(clnt
, UDA1341_STATUS
, (const unsigned char *)&val
, 1);
164 } else if (IS_EXTEND(reg
)) {
165 buf
[0] |= (reg
- ext0
) & 0x7; //EXT address
166 buf
[1] |= val
; //EXT data
167 err
= l3_write(clnt
, UDA1341_DATA0
, (const unsigned char *)buf
, 2);
170 printk(KERN_ERR
"UDA1341 codec not active!\n");
174 int snd_uda1341_codec_read(struct l3_client
*clnt
, unsigned short reg
)
179 err
= l3_read(clnt
, reg
, &val
, 1);
181 // use just 6bits - the rest is address of the reg
183 return err
< 0 ? err
: -EIO
;
186 static inline int snd_uda1341_valid_reg(struct l3_client
*clnt
, unsigned short reg
)
188 return reg
< uda1341_reg_last
;
191 int snd_uda1341_update_bits(struct l3_client
*clnt
, unsigned short reg
, unsigned short mask
,
192 unsigned short shift
, unsigned short value
, int flush
)
195 unsigned short old
, new;
196 struct uda1341
*uda
= clnt
->driver_data
;
199 printk(KERN_DEBUG
"update_bits: reg: %s mask: %d shift: %d val: %d\n",
200 uda1341_reg_names
[reg
], mask
, shift
, value
);
203 if (!snd_uda1341_valid_reg(clnt
, reg
))
205 spin_lock(&uda
->reg_lock
);
206 old
= uda
->regs
[reg
];
207 new = (old
& ~(mask
<< shift
)) | (value
<< shift
);
210 if (flush
) uda
->write(clnt
, reg
, new);
211 uda
->regs
[reg
] = new;
213 spin_unlock(&uda
->reg_lock
);
217 int snd_uda1341_cfg_write(struct l3_client
*clnt
, unsigned short what
,
218 unsigned short value
, int flush
)
220 struct uda1341
*uda
= clnt
->driver_data
;
227 printk(KERN_DEBUG
"cfg_write what: %d value: %d\n", what
, value
);
230 uda
->cfg
[what
] = value
;
234 ret
= snd_uda1341_update_bits(clnt
, data0_2
, 1, 2, 1, flush
); // MUTE
235 ret
= snd_uda1341_update_bits(clnt
, stat0
, 1, 6, 1, flush
); // RESET
236 ret
= snd_uda1341_update_bits(clnt
, stat0
, 1, 6, 0, flush
); // RESTORE
237 uda
->cfg
[CMD_RESET
]=0;
240 ret
= snd_uda1341_update_bits(clnt
, stat0
, 3, 4, value
, flush
);
243 ret
= snd_uda1341_update_bits(clnt
, stat0
, 7, 1, value
, flush
);
246 ret
= snd_uda1341_update_bits(clnt
, stat1
, 1, 6, value
, flush
);
249 ret
= snd_uda1341_update_bits(clnt
, stat1
, 1, 5, value
, flush
);
252 ret
= snd_uda1341_update_bits(clnt
, stat1
, 1, 0, value
, flush
);
255 ret
= snd_uda1341_update_bits(clnt
, stat1
, 1, 1, value
, flush
);
258 ret
= snd_uda1341_update_bits(clnt
, data0_0
, 63, 0, value
, flush
);
261 ret
= snd_uda1341_update_bits(clnt
, data0_1
, 15, 2, value
, flush
);
264 ret
= snd_uda1341_update_bits(clnt
, data0_1
, 3, 0, value
, flush
);
267 ret
= snd_uda1341_update_bits(clnt
, data0_2
, 1, 5, value
, flush
);
270 ret
= snd_uda1341_update_bits(clnt
, data0_2
, 3, 3, value
, flush
);
273 ret
= snd_uda1341_update_bits(clnt
, data0_2
, 1, 2, value
, flush
);
276 ret
= snd_uda1341_update_bits(clnt
, data0_2
, 3, 0, value
, flush
);
279 ret
= snd_uda1341_update_bits(clnt
, ext0
, 31, 0, value
, flush
);
282 ret
= snd_uda1341_update_bits(clnt
, ext1
, 31, 0, value
, flush
);
285 ret
= snd_uda1341_update_bits(clnt
, ext2
, 7, 2, value
, flush
);
288 ret
= snd_uda1341_update_bits(clnt
, ext2
, 3, 0, value
, flush
);
291 ret
= snd_uda1341_update_bits(clnt
, ext4
, 1, 4, value
, flush
);
294 ret
= snd_uda1341_update_bits(clnt
, ext4
, 3, 0, value
& 0x3, flush
);
295 ret
= snd_uda1341_update_bits(clnt
, ext5
, 31, 0, value
>> 2, flush
);
298 ret
= snd_uda1341_update_bits(clnt
, ext6
, 7, 2, value
, flush
);
301 ret
= snd_uda1341_update_bits(clnt
, ext6
, 3, 0, value
, flush
);
305 for (reg
= stat0
; reg
< uda1341_reg_last
; reg
++)
306 uda
->suspend_regs
[reg
] = uda
->regs
[reg
];
307 for (reg
= 0; reg
< CMD_LAST
; reg
++)
308 uda
->suspend_cfg
[reg
] = uda
->cfg
[reg
];
311 for (reg
= stat0
; reg
< uda1341_reg_last
; reg
++)
312 snd_uda1341_codec_write(clnt
, reg
, uda
->suspend_regs
[reg
]);
313 for (reg
= 0; reg
< CMD_LAST
; reg
++)
314 uda
->cfg
[reg
] = uda
->suspend_cfg
[reg
];
323 printk(KERN_ERR
"UDA1341 codec not active!\n");
329 /* {{{ Proc interface */
331 static void snd_uda1341_proc_read(snd_info_entry_t
*entry
,
332 snd_info_buffer_t
* buffer
)
334 struct l3_client
*clnt
= entry
->private_data
;
335 struct uda1341
*uda
= clnt
->driver_data
;
338 peak
= snd_uda1341_codec_read(clnt
, UDA1341_DATA1
);
342 snd_iprintf(buffer
, "%s\n\n", uda
->card
->longname
);
344 // for information about computed values see UDA1341TS datasheet pages 15 - 21
345 snd_iprintf(buffer
, "DAC power : %s\n", uda
->cfg
[CMD_DAC
] ? "on" : "off");
346 snd_iprintf(buffer
, "ADC power : %s\n", uda
->cfg
[CMD_ADC
] ? "on" : "off");
347 snd_iprintf(buffer
, "Clock frequency : %s\n", fs_names
[uda
->cfg
[CMD_FS
]]);
348 snd_iprintf(buffer
, "Data format : %s\n\n", format_names
[uda
->cfg
[CMD_FORMAT
]]);
350 snd_iprintf(buffer
, "Filter mode : %s\n", filter_names
[uda
->cfg
[CMD_FILTER
]]);
351 snd_iprintf(buffer
, "Mixer mode : %s\n", mixer_names
[uda
->cfg
[CMD_MIXER
]]);
352 snd_iprintf(buffer
, "De-emphasis : %s\n", deemp_names
[uda
->cfg
[CMD_DEEMP
]]);
353 snd_iprintf(buffer
, "Peak detection pos. : %s\n", uda
->cfg
[CMD_PEAK
] ? "after" : "before");
354 snd_iprintf(buffer
, "Peak value : %s\n\n", peak_value
[peak
]);
356 snd_iprintf(buffer
, "Automatic Gain Ctrl : %s\n", uda
->cfg
[CMD_AGC
] ? "on" : "off");
357 snd_iprintf(buffer
, "AGC attack time : %d ms\n", AGC_atime
[uda
->cfg
[CMD_AGC_TIME
]]);
358 snd_iprintf(buffer
, "AGC decay time : %d ms\n", AGC_dtime
[uda
->cfg
[CMD_AGC_TIME
]]);
359 snd_iprintf(buffer
, "AGC output level : %s dB\n\n", AGC_level
[uda
->cfg
[CMD_AGC_LEVEL
]]);
361 snd_iprintf(buffer
, "Mute : %s\n", uda
->cfg
[CMD_MUTE
] ? "on" : "off");
363 if (uda
->cfg
[CMD_VOLUME
] == 0)
364 snd_iprintf(buffer
, "Volume : 0 dB\n");
365 else if (uda
->cfg
[CMD_VOLUME
] < 62)
366 snd_iprintf(buffer
, "Volume : %d dB\n", -1*uda
->cfg
[CMD_VOLUME
] +1);
368 snd_iprintf(buffer
, "Volume : -INF dB\n");
369 snd_iprintf(buffer
, "Bass : %s\n", bass_values
[uda
->cfg
[CMD_FILTER
]][uda
->cfg
[CMD_BASS
]]);
370 snd_iprintf(buffer
, "Trebble : %d dB\n", uda
->cfg
[CMD_FILTER
] ? 2*uda
->cfg
[CMD_TREBBLE
] : 0);
371 snd_iprintf(buffer
, "Input Gain (6dB) : %s\n", uda
->cfg
[CMD_IGAIN
] ? "on" : "off");
372 snd_iprintf(buffer
, "Output Gain (6dB) : %s\n", uda
->cfg
[CMD_OGAIN
] ? "on" : "off");
373 snd_iprintf(buffer
, "Mic sensitivity : %s\n", mic_sens_value
[uda
->cfg
[CMD_MIC
]]);
376 if(uda
->cfg
[CMD_CH1
] < 31)
377 snd_iprintf(buffer
, "Mixer gain channel 1: -%d.%c dB\n",
378 ((uda
->cfg
[CMD_CH1
] >> 1) * 3) + (uda
->cfg
[CMD_CH1
] & 1),
379 uda
->cfg
[CMD_CH1
] & 1 ? '5' : '0');
381 snd_iprintf(buffer
, "Mixer gain channel 1: -INF dB\n");
382 if(uda
->cfg
[CMD_CH2
] < 31)
383 snd_iprintf(buffer
, "Mixer gain channel 2: -%d.%c dB\n",
384 ((uda
->cfg
[CMD_CH2
] >> 1) * 3) + (uda
->cfg
[CMD_CH2
] & 1),
385 uda
->cfg
[CMD_CH2
] & 1 ? '5' : '0');
387 snd_iprintf(buffer
, "Mixer gain channel 2: -INF dB\n");
389 if(uda
->cfg
[CMD_IG
] > 5)
390 snd_iprintf(buffer
, "Input Amp. Gain ch 2: %d.%c dB\n",
391 (uda
->cfg
[CMD_IG
] >> 1) -3, uda
->cfg
[CMD_IG
] & 1 ? '5' : '0');
393 snd_iprintf(buffer
, "Input Amp. Gain ch 2: %s dB\n", ig_small_value
[uda
->cfg
[CMD_IG
]]);
396 static void snd_uda1341_proc_regs_read(snd_info_entry_t
*entry
,
397 snd_info_buffer_t
* buffer
)
399 struct l3_client
*clnt
= entry
->private_data
;
400 struct uda1341
*uda
= clnt
->driver_data
;
404 spin_lock(&uda
->reg_lock
);
405 for (reg
= 0; reg
< uda1341_reg_last
; reg
++) {
408 int2str_bin8(uda
->regs
[reg
], buf
);
409 snd_iprintf(buffer
, "%s = %s\n", uda1341_reg_names
[reg
], buf
);
412 int2str_bin8(snd_uda1341_codec_read(clnt
, UDA1341_DATA1
), buf
);
413 snd_iprintf(buffer
, "DATA1 = %s\n", buf
);
415 spin_unlock(&uda
->reg_lock
);
418 static void __devinit
snd_uda1341_proc_init(snd_card_t
*card
, struct l3_client
*clnt
)
420 snd_info_entry_t
*entry
;
422 if (! snd_card_proc_new(card
, "uda1341", &entry
))
423 snd_info_set_text_ops(entry
, clnt
, 1024, snd_uda1341_proc_read
);
424 if (! snd_card_proc_new(card
, "uda1341-regs", &entry
))
425 snd_info_set_text_ops(entry
, clnt
, 1024, snd_uda1341_proc_regs_read
);
430 /* {{{ Mixer controls setting */
432 /* {{{ UDA1341 single functions */
434 #define UDA1341_SINGLE(xname, where, reg, shift, mask, invert) \
435 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .info = snd_uda1341_info_single, \
436 .get = snd_uda1341_get_single, .put = snd_uda1341_put_single, \
437 .private_value = where | (reg << 5) | (shift << 9) | (mask << 12) | (invert << 18) \
440 static int snd_uda1341_info_single(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
* uinfo
)
442 int mask
= (kcontrol
->private_value
>> 12) & 63;
444 uinfo
->type
= mask
== 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN
: SNDRV_CTL_ELEM_TYPE_INTEGER
;
446 uinfo
->value
.integer
.min
= 0;
447 uinfo
->value
.integer
.max
= mask
;
451 static int snd_uda1341_get_single(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
453 struct l3_client
*clnt
= snd_kcontrol_chip(kcontrol
);
454 uda1341_t
*uda
= clnt
->driver_data
;
455 int where
= kcontrol
->private_value
& 31;
456 int mask
= (kcontrol
->private_value
>> 12) & 63;
457 int invert
= (kcontrol
->private_value
>> 18) & 1;
459 ucontrol
->value
.integer
.value
[0] = uda
->cfg
[where
];
461 ucontrol
->value
.integer
.value
[0] = mask
- ucontrol
->value
.integer
.value
[0];
466 static int snd_uda1341_put_single(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
468 struct l3_client
*clnt
= snd_kcontrol_chip(kcontrol
);
469 uda1341_t
*uda
= clnt
->driver_data
;
470 int where
= kcontrol
->private_value
& 31;
471 int reg
= (kcontrol
->private_value
>> 5) & 15;
472 int shift
= (kcontrol
->private_value
>> 9) & 7;
473 int mask
= (kcontrol
->private_value
>> 12) & 63;
474 int invert
= (kcontrol
->private_value
>> 18) & 1;
477 val
= (ucontrol
->value
.integer
.value
[0] & mask
);
481 uda
->cfg
[where
] = val
;
482 return snd_uda1341_update_bits(clnt
, reg
, mask
, shift
, val
, FLUSH
);
487 /* {{{ UDA1341 enum functions */
489 #define UDA1341_ENUM(xname, where, reg, shift, mask, invert) \
490 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .info = snd_uda1341_info_enum, \
491 .get = snd_uda1341_get_enum, .put = snd_uda1341_put_enum, \
492 .private_value = where | (reg << 5) | (shift << 9) | (mask << 12) | (invert << 18) \
495 static int snd_uda1341_info_enum(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
* uinfo
)
497 int where
= kcontrol
->private_value
& 31;
500 // this register we don't handle this way
501 if (!uda1341_enum_items
[where
])
504 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
506 uinfo
->value
.enumerated
.items
= uda1341_enum_items
[where
];
508 if (uinfo
->value
.enumerated
.item
>= uda1341_enum_items
[where
])
509 uinfo
->value
.enumerated
.item
= uda1341_enum_items
[where
] - 1;
511 texts
= uda1341_enum_names
[where
];
512 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
516 static int snd_uda1341_get_enum(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
518 struct l3_client
*clnt
= snd_kcontrol_chip(kcontrol
);
519 uda1341_t
*uda
= clnt
->driver_data
;
520 int where
= kcontrol
->private_value
& 31;
522 ucontrol
->value
.enumerated
.item
[0] = uda
->cfg
[where
];
526 static int snd_uda1341_put_enum(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
528 struct l3_client
*clnt
= snd_kcontrol_chip(kcontrol
);
529 uda1341_t
*uda
= clnt
->driver_data
;
530 int where
= kcontrol
->private_value
& 31;
531 int reg
= (kcontrol
->private_value
>> 5) & 15;
532 int shift
= (kcontrol
->private_value
>> 9) & 7;
533 int mask
= (kcontrol
->private_value
>> 12) & 63;
535 uda
->cfg
[where
] = (ucontrol
->value
.enumerated
.item
[0] & mask
);
537 return snd_uda1341_update_bits(clnt
, reg
, mask
, shift
, uda
->cfg
[where
], FLUSH
);
542 /* {{{ UDA1341 2regs functions */
544 #define UDA1341_2REGS(xname, where, reg_1, reg_2, shift_1, shift_2, mask_1, mask_2, invert) \
545 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .info = snd_uda1341_info_2regs, \
546 .get = snd_uda1341_get_2regs, .put = snd_uda1341_put_2regs, \
547 .private_value = where | (reg_1 << 5) | (reg_2 << 9) | (shift_1 << 13) | (shift_2 << 16) | \
548 (mask_1 << 19) | (mask_2 << 25) | (invert << 31) \
552 static int snd_uda1341_info_2regs(snd_kcontrol_t
*kcontrol
, snd_ctl_elem_info_t
* uinfo
)
554 int mask_1
= (kcontrol
->private_value
>> 19) & 63;
555 int mask_2
= (kcontrol
->private_value
>> 25) & 63;
558 mask
= (mask_2
+ 1) * (mask_1
+ 1) - 1;
559 uinfo
->type
= mask
== 1 ? SNDRV_CTL_ELEM_TYPE_BOOLEAN
: SNDRV_CTL_ELEM_TYPE_INTEGER
;
561 uinfo
->value
.integer
.min
= 0;
562 uinfo
->value
.integer
.max
= mask
;
566 static int snd_uda1341_get_2regs(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
568 struct l3_client
*clnt
= snd_kcontrol_chip(kcontrol
);
569 uda1341_t
*uda
= clnt
->driver_data
;
570 int where
= kcontrol
->private_value
& 31;
571 int mask_1
= (kcontrol
->private_value
>> 19) & 63;
572 int mask_2
= (kcontrol
->private_value
>> 25) & 63;
573 int invert
= (kcontrol
->private_value
>> 31) & 1;
576 mask
= (mask_2
+ 1) * (mask_1
+ 1) - 1;
578 ucontrol
->value
.integer
.value
[0] = uda
->cfg
[where
];
580 ucontrol
->value
.integer
.value
[0] = mask
- ucontrol
->value
.integer
.value
[0];
584 static int snd_uda1341_put_2regs(snd_kcontrol_t
* kcontrol
, snd_ctl_elem_value_t
* ucontrol
)
586 struct l3_client
*clnt
= snd_kcontrol_chip(kcontrol
);
587 uda1341_t
*uda
= clnt
->driver_data
;
588 int where
= kcontrol
->private_value
& 31;
589 int reg_1
= (kcontrol
->private_value
>> 5) & 15;
590 int reg_2
= (kcontrol
->private_value
>> 9) & 15;
591 int shift_1
= (kcontrol
->private_value
>> 13) & 7;
592 int shift_2
= (kcontrol
->private_value
>> 16) & 7;
593 int mask_1
= (kcontrol
->private_value
>> 19) & 63;
594 int mask_2
= (kcontrol
->private_value
>> 25) & 63;
595 int invert
= (kcontrol
->private_value
>> 31) & 1;
597 unsigned short val1
, val2
, val
;
599 val
= ucontrol
->value
.integer
.value
[0];
601 mask
= (mask_2
+ 1) * (mask_1
+ 1) - 1;
604 val2
= (val
/ (mask_1
+ 1)) & mask_2
;
607 val1
= mask_1
- val1
;
608 val2
= mask_2
- val2
;
611 uda
->cfg
[where
] = invert
? mask
- val
: val
;
613 //FIXME - return value
614 snd_uda1341_update_bits(clnt
, reg_1
, mask_1
, shift_1
, val1
, FLUSH
);
615 return snd_uda1341_update_bits(clnt
, reg_2
, mask_2
, shift_2
, val2
, FLUSH
);
620 static snd_kcontrol_new_t snd_uda1341_controls
[] = {
621 UDA1341_SINGLE("Master Playback Switch", CMD_MUTE
, data0_2
, 2, 1, 1),
622 UDA1341_SINGLE("Master Playback Volume", CMD_VOLUME
, data0_0
, 0, 63, 1),
624 UDA1341_SINGLE("Bass Playback Volume", CMD_BASS
, data0_1
, 2, 15, 0),
625 UDA1341_SINGLE("Treble Playback Volume", CMD_TREBBLE
, data0_1
, 0, 3, 0),
627 UDA1341_SINGLE("Input Gain Switch", CMD_IGAIN
, stat1
, 5, 1, 0),
628 UDA1341_SINGLE("Output Gain Switch", CMD_OGAIN
, stat1
, 6, 1, 0),
630 UDA1341_SINGLE("Mixer Gain Channel 1 Volume", CMD_CH1
, ext0
, 0, 31, 1),
631 UDA1341_SINGLE("Mixer Gain Channel 2 Volume", CMD_CH2
, ext1
, 0, 31, 1),
633 UDA1341_SINGLE("Mic Sensitivity Volume", CMD_MIC
, ext2
, 2, 7, 0),
635 UDA1341_SINGLE("AGC Output Level", CMD_AGC_LEVEL
, ext6
, 0, 3, 0),
636 UDA1341_SINGLE("AGC Time Constant", CMD_AGC_TIME
, ext6
, 2, 7, 0),
637 UDA1341_SINGLE("AGC Time Constant Switch", CMD_AGC
, ext4
, 4, 1, 0),
639 UDA1341_SINGLE("DAC Power", CMD_DAC
, stat1
, 0, 1, 0),
640 UDA1341_SINGLE("ADC Power", CMD_ADC
, stat1
, 1, 1, 0),
642 UDA1341_ENUM("Peak detection", CMD_PEAK
, data0_2
, 5, 1, 0),
643 UDA1341_ENUM("De-emphasis", CMD_DEEMP
, data0_2
, 3, 3, 0),
644 UDA1341_ENUM("Mixer mode", CMD_MIXER
, ext2
, 0, 3, 0),
645 UDA1341_ENUM("Filter mode", CMD_FILTER
, data0_2
, 0, 3, 0),
647 UDA1341_2REGS("Gain Input Amplifier Gain (channel 2)", CMD_IG
, ext4
, ext5
, 0, 0, 3, 31, 0),
650 static void uda1341_free(struct l3_client
*uda1341
)
652 l3_detach_client(uda1341
); // calls kfree for driver_data (uda1341_t)
656 static int uda1341_dev_free(snd_device_t
*device
)
658 struct l3_client
*clnt
= device
->device_data
;
663 int __init
snd_chip_uda1341_mixer_new(snd_card_t
*card
, struct l3_client
**clnt
)
665 static snd_device_ops_t ops
= {
666 .dev_free
= uda1341_dev_free
,
668 struct l3_client
*uda1341
;
671 snd_assert(card
!= NULL
, return -EINVAL
);
673 uda1341
= kcalloc(1, sizeof(*uda1341
), GFP_KERNEL
);
677 if ((err
= l3_attach_client(uda1341
, "l3-bit-sa1100-gpio", "snd-uda1341"))) {
682 if ((err
= snd_device_new(card
, SNDRV_DEV_CODEC
, uda1341
, &ops
)) < 0) {
683 l3_detach_client(uda1341
);
688 for (idx
= 0; idx
< ARRAY_SIZE(snd_uda1341_controls
); idx
++) {
689 if ((err
= snd_ctl_add(card
, snd_ctl_new1(&snd_uda1341_controls
[idx
], uda1341
))) < 0)
694 strcpy(card
->mixername
, "UDA1341TS Mixer");
695 ((uda1341_t
*)uda1341
->driver_data
)->card
= card
;
697 snd_uda1341_proc_init(card
, uda1341
);
704 /* {{{ L3 operations */
706 static int uda1341_attach(struct l3_client
*clnt
)
710 uda
= kcalloc(1, sizeof(*uda
), 0, GFP_KERNEL
);
714 /* init fixed parts of my copy of registers */
715 uda
->regs
[stat0
] = STAT0
;
716 uda
->regs
[stat1
] = STAT1
;
718 uda
->regs
[data0_0
] = DATA0_0
;
719 uda
->regs
[data0_1
] = DATA0_1
;
720 uda
->regs
[data0_2
] = DATA0_2
;
722 uda
->write
= snd_uda1341_codec_write
;
723 uda
->read
= snd_uda1341_codec_read
;
725 spin_lock_init(&uda
->reg_lock
);
727 clnt
->driver_data
= uda
;
731 static void uda1341_detach(struct l3_client
*clnt
)
733 kfree(clnt
->driver_data
);
737 uda1341_command(struct l3_client
*clnt
, int cmd
, void *arg
)
739 if (cmd
!= CMD_READ_REG
)
740 return snd_uda1341_cfg_write(clnt
, cmd
, (int) arg
, FLUSH
);
742 return snd_uda1341_codec_read(clnt
, (int) arg
);
745 static int uda1341_open(struct l3_client
*clnt
)
747 struct uda1341
*uda
= clnt
->driver_data
;
751 /* init default configuration */
752 snd_uda1341_cfg_write(clnt
, CMD_RESET
, 0, REGS_ONLY
);
753 snd_uda1341_cfg_write(clnt
, CMD_FS
, F256
, FLUSH
); // unknown state after reset
754 snd_uda1341_cfg_write(clnt
, CMD_FORMAT
, LSB16
, FLUSH
); // unknown state after reset
755 snd_uda1341_cfg_write(clnt
, CMD_OGAIN
, ON
, FLUSH
); // default off after reset
756 snd_uda1341_cfg_write(clnt
, CMD_IGAIN
, ON
, FLUSH
); // default off after reset
757 snd_uda1341_cfg_write(clnt
, CMD_DAC
, ON
, FLUSH
); // ??? default value after reset
758 snd_uda1341_cfg_write(clnt
, CMD_ADC
, ON
, FLUSH
); // ??? default value after reset
759 snd_uda1341_cfg_write(clnt
, CMD_VOLUME
, 20, FLUSH
); // default 0dB after reset
760 snd_uda1341_cfg_write(clnt
, CMD_BASS
, 0, REGS_ONLY
); // default value after reset
761 snd_uda1341_cfg_write(clnt
, CMD_TREBBLE
, 0, REGS_ONLY
); // default value after reset
762 snd_uda1341_cfg_write(clnt
, CMD_PEAK
, AFTER
, REGS_ONLY
);// default value after reset
763 snd_uda1341_cfg_write(clnt
, CMD_DEEMP
, NONE
, REGS_ONLY
);// default value after reset
764 //at this moment should be QMUTED by h3600_audio_init
765 snd_uda1341_cfg_write(clnt
, CMD_MUTE
, OFF
, REGS_ONLY
); // default value after reset
766 snd_uda1341_cfg_write(clnt
, CMD_FILTER
, MAX
, FLUSH
); // defaul flat after reset
767 snd_uda1341_cfg_write(clnt
, CMD_CH1
, 31, FLUSH
); // default value after reset
768 snd_uda1341_cfg_write(clnt
, CMD_CH2
, 4, FLUSH
); // default value after reset
769 snd_uda1341_cfg_write(clnt
, CMD_MIC
, 4, FLUSH
); // default 0dB after reset
770 snd_uda1341_cfg_write(clnt
, CMD_MIXER
, MIXER
, FLUSH
); // default doub.dif.mode
771 snd_uda1341_cfg_write(clnt
, CMD_AGC
, OFF
, FLUSH
); // default value after reset
772 snd_uda1341_cfg_write(clnt
, CMD_IG
, 0, FLUSH
); // unknown state after reset
773 snd_uda1341_cfg_write(clnt
, CMD_AGC_TIME
, 0, FLUSH
); // default value after reset
774 snd_uda1341_cfg_write(clnt
, CMD_AGC_LEVEL
, 0, FLUSH
); // default value after reset
779 static void uda1341_close(struct l3_client
*clnt
)
781 struct uda1341
*uda
= clnt
->driver_data
;
788 /* {{{ Module and L3 initialization */
790 static struct l3_ops uda1341_ops
= {
791 .open
= uda1341_open
,
792 .command
= uda1341_command
,
793 .close
= uda1341_close
,
796 static struct l3_driver uda1341_driver
= {
797 .name
= UDA1341_ALSA_NAME
,
798 .attach_client
= uda1341_attach
,
799 .detach_client
= uda1341_detach
,
801 .owner
= THIS_MODULE
,
804 static int __init
uda1341_init(void)
806 return l3_add_driver(&uda1341_driver
);
809 static void __exit
uda1341_exit(void)
811 l3_del_driver(&uda1341_driver
);
814 module_init(uda1341_init
);
815 module_exit(uda1341_exit
);
817 MODULE_AUTHOR("Tomas Kasparek <tomas.kasparek@seznam.cz>");
818 MODULE_LICENSE("GPL");
819 MODULE_DESCRIPTION("Philips UDA1341 CODEC driver for ALSA");
820 MODULE_SUPPORTED_DEVICE("{{UDA1341,UDA1341TS}}");
822 EXPORT_SYMBOL(snd_chip_uda1341_mixer_new
);
828 * indent-tabs-mode: t