diff options
author | James Courtier-Dutton <James@superbug.co.uk> | 2006-12-09 19:00:38 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-02-09 03:02:23 -0500 |
commit | 7c157069bc953c3cfb5926e92d358e46423bf942 (patch) | |
tree | 25465c6c42c73599b84e1be760a8092cdc2a9919 /sound/pci/ca0106/ca0106_mixer.c | |
parent | a5f65029ad5c5262ee3aff5165698e431415cf7c (diff) |
[ALSA] ca0106: Fix sound capture on Audigy LS via AC97.
Fixes ALSA bug#2286
Signed-off-by: James Courtier-Dutton <James@superbug.co.uk>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/ca0106/ca0106_mixer.c')
-rw-r--r-- | sound/pci/ca0106/ca0106_mixer.c | 42 |
1 files changed, 24 insertions, 18 deletions
diff --git a/sound/pci/ca0106/ca0106_mixer.c b/sound/pci/ca0106/ca0106_mixer.c index bd2a054c673b..289f78a41608 100644 --- a/sound/pci/ca0106/ca0106_mixer.c +++ b/sound/pci/ca0106/ca0106_mixer.c | |||
@@ -482,19 +482,6 @@ static int snd_ca0106_i2c_volume_put(struct snd_kcontrol *kcontrol, | |||
482 | .private_value = ((chid) << 8) | (reg) \ | 482 | .private_value = ((chid) << 8) | (reg) \ |
483 | } | 483 | } |
484 | 484 | ||
485 | #define I2C_VOLUME(xname,chid) \ | ||
486 | { \ | ||
487 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | ||
488 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ | ||
489 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \ | ||
490 | .info = snd_ca0106_i2c_volume_info, \ | ||
491 | .get = snd_ca0106_i2c_volume_get, \ | ||
492 | .put = snd_ca0106_i2c_volume_put, \ | ||
493 | .tlv = { .p = snd_ca0106_db_scale2 }, \ | ||
494 | .private_value = chid \ | ||
495 | } | ||
496 | |||
497 | |||
498 | static struct snd_kcontrol_new snd_ca0106_volume_ctls[] __devinitdata = { | 485 | static struct snd_kcontrol_new snd_ca0106_volume_ctls[] __devinitdata = { |
499 | CA_VOLUME("Analog Front Playback Volume", | 486 | CA_VOLUME("Analog Front Playback Volume", |
500 | CONTROL_FRONT_CHANNEL, PLAYBACK_VOLUME2), | 487 | CONTROL_FRONT_CHANNEL, PLAYBACK_VOLUME2), |
@@ -517,11 +504,6 @@ static struct snd_kcontrol_new snd_ca0106_volume_ctls[] __devinitdata = { | |||
517 | CA_VOLUME("CAPTURE feedback Playback Volume", | 504 | CA_VOLUME("CAPTURE feedback Playback Volume", |
518 | 1, CAPTURE_CONTROL), | 505 | 1, CAPTURE_CONTROL), |
519 | 506 | ||
520 | I2C_VOLUME("Phone Capture Volume", 0), | ||
521 | I2C_VOLUME("Mic Capture Volume", 1), | ||
522 | I2C_VOLUME("Line in Capture Volume", 2), | ||
523 | I2C_VOLUME("Aux Capture Volume", 3), | ||
524 | |||
525 | { | 507 | { |
526 | .access = SNDRV_CTL_ELEM_ACCESS_READ, | 508 | .access = SNDRV_CTL_ELEM_ACCESS_READ, |
527 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, | 509 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
@@ -561,6 +543,25 @@ static struct snd_kcontrol_new snd_ca0106_volume_ctls[] __devinitdata = { | |||
561 | }, | 543 | }, |
562 | }; | 544 | }; |
563 | 545 | ||
546 | #define I2C_VOLUME(xname,chid) \ | ||
547 | { \ | ||
548 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, \ | ||
549 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ | ||
550 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, \ | ||
551 | .info = snd_ca0106_i2c_volume_info, \ | ||
552 | .get = snd_ca0106_i2c_volume_get, \ | ||
553 | .put = snd_ca0106_i2c_volume_put, \ | ||
554 | .tlv = { .p = snd_ca0106_db_scale2 }, \ | ||
555 | .private_value = chid \ | ||
556 | } | ||
557 | |||
558 | static struct snd_kcontrol_new snd_ca0106_volume_i2c_adc_ctls[] __devinitdata = { | ||
559 | I2C_VOLUME("Phone Capture Volume", 0), | ||
560 | I2C_VOLUME("Mic Capture Volume", 1), | ||
561 | I2C_VOLUME("Line in Capture Volume", 2), | ||
562 | I2C_VOLUME("Aux Capture Volume", 3), | ||
563 | }; | ||
564 | |||
564 | static int __devinit remove_ctl(struct snd_card *card, const char *name) | 565 | static int __devinit remove_ctl(struct snd_card *card, const char *name) |
565 | { | 566 | { |
566 | struct snd_ctl_elem_id id; | 567 | struct snd_ctl_elem_id id; |
@@ -645,6 +646,11 @@ int __devinit snd_ca0106_mixer(struct snd_ca0106 *emu) | |||
645 | return err; | 646 | return err; |
646 | } | 647 | } |
647 | if (emu->details->i2c_adc == 1) { | 648 | if (emu->details->i2c_adc == 1) { |
649 | for (i = 0; i < ARRAY_SIZE(snd_ca0106_volume_i2c_adc_ctls); i++) { | ||
650 | err = snd_ctl_add(card, snd_ctl_new1(&snd_ca0106_volume_i2c_adc_ctls[i], emu)); | ||
651 | if (err < 0) | ||
652 | return err; | ||
653 | } | ||
648 | if (emu->details->gpio_type == 1) | 654 | if (emu->details->gpio_type == 1) |
649 | err = snd_ctl_add(card, snd_ctl_new1(&snd_ca0106_capture_mic_line_in, emu)); | 655 | err = snd_ctl_add(card, snd_ctl_new1(&snd_ca0106_capture_mic_line_in, emu)); |
650 | else /* gpio_type == 2 */ | 656 | else /* gpio_type == 2 */ |