aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorJames Courtier-Dutton <James@superbug.co.uk>2006-12-09 19:00:38 -0500
committerJaroslav Kysela <perex@suse.cz>2007-02-09 03:02:23 -0500
commit7c157069bc953c3cfb5926e92d358e46423bf942 (patch)
tree25465c6c42c73599b84e1be760a8092cdc2a9919 /sound/pci
parenta5f65029ad5c5262ee3aff5165698e431415cf7c (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')
-rw-r--r--sound/pci/ca0106/ca0106_main.c19
-rw-r--r--sound/pci/ca0106/ca0106_mixer.c42
2 files changed, 40 insertions, 21 deletions
diff --git a/sound/pci/ca0106/ca0106_main.c b/sound/pci/ca0106/ca0106_main.c
index f61f052f6d14..6f781b811876 100644
--- a/sound/pci/ca0106/ca0106_main.c
+++ b/sound/pci/ca0106/ca0106_main.c
@@ -1382,7 +1382,6 @@ static int __devinit snd_ca0106_create(int dev, struct snd_card *card,
1382 snd_ca0106_ptr_write(chip, SPDIF_SELECT1, 0, 0xf); 1382 snd_ca0106_ptr_write(chip, SPDIF_SELECT1, 0, 0xf);
1383 snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0x000f0000); /* 0x0b000000 for digital, 0x000b0000 for analog, from win2000 drivers. Use 0x000f0000 for surround71 */ 1383 snd_ca0106_ptr_write(chip, SPDIF_SELECT2, 0, 0x000f0000); /* 0x0b000000 for digital, 0x000b0000 for analog, from win2000 drivers. Use 0x000f0000 for surround71 */
1384 chip->spdif_enable = 0; /* Set digital SPDIF output off */ 1384 chip->spdif_enable = 0; /* Set digital SPDIF output off */
1385 chip->capture_source = 3; /* Set CAPTURE_SOURCE */
1386 //snd_ca0106_ptr_write(chip, 0x45, 0, 0); /* Analogue out */ 1385 //snd_ca0106_ptr_write(chip, 0x45, 0, 0); /* Analogue out */
1387 //snd_ca0106_ptr_write(chip, 0x45, 0, 0xf00); /* Digital out */ 1386 //snd_ca0106_ptr_write(chip, 0x45, 0, 0xf00); /* Digital out */
1388 1387
@@ -1402,8 +1401,22 @@ static int __devinit snd_ca0106_create(int dev, struct snd_card *card,
1402 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0xffffffff); /* Mute */ 1401 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME1, ch, 0xffffffff); /* Mute */
1403 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0xffffffff); /* Mute */ 1402 snd_ca0106_ptr_write(chip, PLAYBACK_VOLUME2, ch, 0xffffffff); /* Mute */
1404 } 1403 }
1405 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x333300e4); /* Select MIC, Line in, TAD in, AUX in */ 1404 if (chip->details->i2c_adc == 1) {
1406 chip->capture_source = 3; /* Set CAPTURE_SOURCE */ 1405 /* Select MIC, Line in, TAD in, AUX in */
1406 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x333300e4);
1407 /* Default to CAPTURE_SOURCE to i2s in */
1408 chip->capture_source = 3;
1409 } else if (chip->details->ac97 == 1) {
1410 /* Default to AC97 in */
1411 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x444400e4);
1412 /* Default to CAPTURE_SOURCE to AC97 in */
1413 chip->capture_source = 4;
1414 } else {
1415 /* Select MIC, Line in, TAD in, AUX in */
1416 snd_ca0106_ptr_write(chip, CAPTURE_SOURCE, 0x0, 0x333300e4);
1417 /* Default to Set CAPTURE_SOURCE to i2s in */
1418 chip->capture_source = 3;
1419 }
1407 1420
1408 if (chip->details->gpio_type == 2) { /* The SB0438 use GPIO differently. */ 1421 if (chip->details->gpio_type == 2) { /* The SB0438 use GPIO differently. */
1409 /* FIXME: Still need to find out what the other GPIO bits do. E.g. For digital spdif out. */ 1422 /* FIXME: Still need to find out what the other GPIO bits do. E.g. For digital spdif out. */
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
498static struct snd_kcontrol_new snd_ca0106_volume_ctls[] __devinitdata = { 485static 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
558static 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
564static int __devinit remove_ctl(struct snd_card *card, const char *name) 565static 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 */