diff options
Diffstat (limited to 'sound')
127 files changed, 9227 insertions, 4833 deletions
diff --git a/sound/aoa/codecs/tas.c b/sound/aoa/codecs/tas.c index f0ebc971c686..1dd66ddffcaf 100644 --- a/sound/aoa/codecs/tas.c +++ b/sound/aoa/codecs/tas.c | |||
@@ -897,6 +897,15 @@ static int tas_create(struct i2c_adapter *adapter, | |||
897 | client = i2c_new_device(adapter, &info); | 897 | client = i2c_new_device(adapter, &info); |
898 | if (!client) | 898 | if (!client) |
899 | return -ENODEV; | 899 | return -ENODEV; |
900 | /* | ||
901 | * We know the driver is already loaded, so the device should be | ||
902 | * already bound. If not it means binding failed, and then there | ||
903 | * is no point in keeping the device instantiated. | ||
904 | */ | ||
905 | if (!client->driver) { | ||
906 | i2c_unregister_device(client); | ||
907 | return -ENODEV; | ||
908 | } | ||
900 | 909 | ||
901 | /* | 910 | /* |
902 | * Let i2c-core delete that device on driver removal. | 911 | * Let i2c-core delete that device on driver removal. |
diff --git a/sound/arm/aaci.c b/sound/arm/aaci.c index dc78272fc39f..1f0f8213e2d5 100644 --- a/sound/arm/aaci.c +++ b/sound/arm/aaci.c | |||
@@ -937,6 +937,7 @@ static int __devinit aaci_probe_ac97(struct aaci *aaci) | |||
937 | struct snd_ac97 *ac97; | 937 | struct snd_ac97 *ac97; |
938 | int ret; | 938 | int ret; |
939 | 939 | ||
940 | writel(0, aaci->base + AC97_POWERDOWN); | ||
940 | /* | 941 | /* |
941 | * Assert AACIRESET for 2us | 942 | * Assert AACIRESET for 2us |
942 | */ | 943 | */ |
diff --git a/sound/arm/pxa2xx-ac97.c b/sound/arm/pxa2xx-ac97.c index 4e34d19ddbc0..b4b48afb6de6 100644 --- a/sound/arm/pxa2xx-ac97.c +++ b/sound/arm/pxa2xx-ac97.c | |||
@@ -137,9 +137,9 @@ static int pxa2xx_ac97_do_resume(struct snd_card *card) | |||
137 | return 0; | 137 | return 0; |
138 | } | 138 | } |
139 | 139 | ||
140 | static int pxa2xx_ac97_suspend(struct platform_device *dev, pm_message_t state) | 140 | static int pxa2xx_ac97_suspend(struct device *dev) |
141 | { | 141 | { |
142 | struct snd_card *card = platform_get_drvdata(dev); | 142 | struct snd_card *card = dev_get_drvdata(dev); |
143 | int ret = 0; | 143 | int ret = 0; |
144 | 144 | ||
145 | if (card) | 145 | if (card) |
@@ -148,9 +148,9 @@ static int pxa2xx_ac97_suspend(struct platform_device *dev, pm_message_t state) | |||
148 | return ret; | 148 | return ret; |
149 | } | 149 | } |
150 | 150 | ||
151 | static int pxa2xx_ac97_resume(struct platform_device *dev) | 151 | static int pxa2xx_ac97_resume(struct device *dev) |
152 | { | 152 | { |
153 | struct snd_card *card = platform_get_drvdata(dev); | 153 | struct snd_card *card = dev_get_drvdata(dev); |
154 | int ret = 0; | 154 | int ret = 0; |
155 | 155 | ||
156 | if (card) | 156 | if (card) |
@@ -159,9 +159,10 @@ static int pxa2xx_ac97_resume(struct platform_device *dev) | |||
159 | return ret; | 159 | return ret; |
160 | } | 160 | } |
161 | 161 | ||
162 | #else | 162 | static struct dev_pm_ops pxa2xx_ac97_pm_ops = { |
163 | #define pxa2xx_ac97_suspend NULL | 163 | .suspend = pxa2xx_ac97_suspend, |
164 | #define pxa2xx_ac97_resume NULL | 164 | .resume = pxa2xx_ac97_resume, |
165 | }; | ||
165 | #endif | 166 | #endif |
166 | 167 | ||
167 | static int __devinit pxa2xx_ac97_probe(struct platform_device *dev) | 168 | static int __devinit pxa2xx_ac97_probe(struct platform_device *dev) |
@@ -241,11 +242,12 @@ static int __devexit pxa2xx_ac97_remove(struct platform_device *dev) | |||
241 | static struct platform_driver pxa2xx_ac97_driver = { | 242 | static struct platform_driver pxa2xx_ac97_driver = { |
242 | .probe = pxa2xx_ac97_probe, | 243 | .probe = pxa2xx_ac97_probe, |
243 | .remove = __devexit_p(pxa2xx_ac97_remove), | 244 | .remove = __devexit_p(pxa2xx_ac97_remove), |
244 | .suspend = pxa2xx_ac97_suspend, | ||
245 | .resume = pxa2xx_ac97_resume, | ||
246 | .driver = { | 245 | .driver = { |
247 | .name = "pxa2xx-ac97", | 246 | .name = "pxa2xx-ac97", |
248 | .owner = THIS_MODULE, | 247 | .owner = THIS_MODULE, |
248 | #ifdef CONFIG_PM | ||
249 | .pm = &pxa2xx_ac97_pm_ops, | ||
250 | #endif | ||
249 | }, | 251 | }, |
250 | }; | 252 | }; |
251 | 253 | ||
diff --git a/sound/core/isadma.c b/sound/core/isadma.c index 79f0f16af339..950e19ba91fc 100644 --- a/sound/core/isadma.c +++ b/sound/core/isadma.c | |||
@@ -85,16 +85,24 @@ EXPORT_SYMBOL(snd_dma_disable); | |||
85 | unsigned int snd_dma_pointer(unsigned long dma, unsigned int size) | 85 | unsigned int snd_dma_pointer(unsigned long dma, unsigned int size) |
86 | { | 86 | { |
87 | unsigned long flags; | 87 | unsigned long flags; |
88 | unsigned int result; | 88 | unsigned int result, result1; |
89 | 89 | ||
90 | flags = claim_dma_lock(); | 90 | flags = claim_dma_lock(); |
91 | clear_dma_ff(dma); | 91 | clear_dma_ff(dma); |
92 | if (!isa_dma_bridge_buggy) | 92 | if (!isa_dma_bridge_buggy) |
93 | disable_dma(dma); | 93 | disable_dma(dma); |
94 | result = get_dma_residue(dma); | 94 | result = get_dma_residue(dma); |
95 | /* | ||
96 | * HACK - read the counter again and choose higher value in order to | ||
97 | * avoid reading during counter lower byte roll over if the | ||
98 | * isa_dma_bridge_buggy is set. | ||
99 | */ | ||
100 | result1 = get_dma_residue(dma); | ||
95 | if (!isa_dma_bridge_buggy) | 101 | if (!isa_dma_bridge_buggy) |
96 | enable_dma(dma); | 102 | enable_dma(dma); |
97 | release_dma_lock(flags); | 103 | release_dma_lock(flags); |
104 | if (unlikely(result < result1)) | ||
105 | result = result1; | ||
98 | #ifdef CONFIG_SND_DEBUG | 106 | #ifdef CONFIG_SND_DEBUG |
99 | if (result > size) | 107 | if (result > size) |
100 | snd_printk(KERN_ERR "pointer (0x%x) for DMA #%ld is greater than transfer size (0x%x)\n", result, dma, size); | 108 | snd_printk(KERN_ERR "pointer (0x%x) for DMA #%ld is greater than transfer size (0x%x)\n", result, dma, size); |
diff --git a/sound/core/oss/mixer_oss.c b/sound/core/oss/mixer_oss.c index 772423889eb3..54e2eb56e4c2 100644 --- a/sound/core/oss/mixer_oss.c +++ b/sound/core/oss/mixer_oss.c | |||
@@ -1251,7 +1251,9 @@ static void snd_mixer_oss_build(struct snd_mixer_oss *mixer) | |||
1251 | { SOUND_MIXER_SYNTH, "FM", 0 }, /* fallback */ | 1251 | { SOUND_MIXER_SYNTH, "FM", 0 }, /* fallback */ |
1252 | { SOUND_MIXER_SYNTH, "Music", 0 }, /* fallback */ | 1252 | { SOUND_MIXER_SYNTH, "Music", 0 }, /* fallback */ |
1253 | { SOUND_MIXER_PCM, "PCM", 0 }, | 1253 | { SOUND_MIXER_PCM, "PCM", 0 }, |
1254 | { SOUND_MIXER_SPEAKER, "PC Speaker", 0 }, | 1254 | { SOUND_MIXER_SPEAKER, "Beep", 0 }, |
1255 | { SOUND_MIXER_SPEAKER, "PC Speaker", 0 }, /* fallback */ | ||
1256 | { SOUND_MIXER_SPEAKER, "Speaker", 0 }, /* fallback */ | ||
1255 | { SOUND_MIXER_LINE, "Line", 0 }, | 1257 | { SOUND_MIXER_LINE, "Line", 0 }, |
1256 | { SOUND_MIXER_MIC, "Mic", 0 }, | 1258 | { SOUND_MIXER_MIC, "Mic", 0 }, |
1257 | { SOUND_MIXER_CD, "CD", 0 }, | 1259 | { SOUND_MIXER_CD, "CD", 0 }, |
diff --git a/sound/core/pcm.c b/sound/core/pcm.c index 0c1440121c22..c69c60b2a48a 100644 --- a/sound/core/pcm.c +++ b/sound/core/pcm.c | |||
@@ -953,11 +953,12 @@ static int snd_pcm_dev_register(struct snd_device *device) | |||
953 | struct snd_pcm_substream *substream; | 953 | struct snd_pcm_substream *substream; |
954 | struct snd_pcm_notify *notify; | 954 | struct snd_pcm_notify *notify; |
955 | char str[16]; | 955 | char str[16]; |
956 | struct snd_pcm *pcm = device->device_data; | 956 | struct snd_pcm *pcm; |
957 | struct device *dev; | 957 | struct device *dev; |
958 | 958 | ||
959 | if (snd_BUG_ON(!pcm || !device)) | 959 | if (snd_BUG_ON(!device || !device->device_data)) |
960 | return -ENXIO; | 960 | return -ENXIO; |
961 | pcm = device->device_data; | ||
961 | mutex_lock(®ister_mutex); | 962 | mutex_lock(®ister_mutex); |
962 | err = snd_pcm_add(pcm); | 963 | err = snd_pcm_add(pcm); |
963 | if (err) { | 964 | if (err) { |
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index 59e5fbe6af51..ab73edf2c89a 100644 --- a/sound/core/pcm_native.c +++ b/sound/core/pcm_native.c | |||
@@ -1387,11 +1387,6 @@ static struct action_ops snd_pcm_action_drain_init = { | |||
1387 | .post_action = snd_pcm_post_drain_init | 1387 | .post_action = snd_pcm_post_drain_init |
1388 | }; | 1388 | }; |
1389 | 1389 | ||
1390 | struct drain_rec { | ||
1391 | struct snd_pcm_substream *substream; | ||
1392 | wait_queue_t wait; | ||
1393 | }; | ||
1394 | |||
1395 | static int snd_pcm_drop(struct snd_pcm_substream *substream); | 1390 | static int snd_pcm_drop(struct snd_pcm_substream *substream); |
1396 | 1391 | ||
1397 | /* | 1392 | /* |
@@ -1407,10 +1402,9 @@ static int snd_pcm_drain(struct snd_pcm_substream *substream, | |||
1407 | struct snd_card *card; | 1402 | struct snd_card *card; |
1408 | struct snd_pcm_runtime *runtime; | 1403 | struct snd_pcm_runtime *runtime; |
1409 | struct snd_pcm_substream *s; | 1404 | struct snd_pcm_substream *s; |
1405 | wait_queue_t wait; | ||
1410 | int result = 0; | 1406 | int result = 0; |
1411 | int i, num_drecs; | ||
1412 | int nonblock = 0; | 1407 | int nonblock = 0; |
1413 | struct drain_rec *drec, drec_tmp, *d; | ||
1414 | 1408 | ||
1415 | card = substream->pcm->card; | 1409 | card = substream->pcm->card; |
1416 | runtime = substream->runtime; | 1410 | runtime = substream->runtime; |
@@ -1433,38 +1427,10 @@ static int snd_pcm_drain(struct snd_pcm_substream *substream, | |||
1433 | } else if (substream->f_flags & O_NONBLOCK) | 1427 | } else if (substream->f_flags & O_NONBLOCK) |
1434 | nonblock = 1; | 1428 | nonblock = 1; |
1435 | 1429 | ||
1436 | if (nonblock) | ||
1437 | goto lock; /* no need to allocate waitqueues */ | ||
1438 | |||
1439 | /* allocate temporary record for drain sync */ | ||
1440 | down_read(&snd_pcm_link_rwsem); | 1430 | down_read(&snd_pcm_link_rwsem); |
1441 | if (snd_pcm_stream_linked(substream)) { | ||
1442 | drec = kmalloc(substream->group->count * sizeof(*drec), GFP_KERNEL); | ||
1443 | if (! drec) { | ||
1444 | up_read(&snd_pcm_link_rwsem); | ||
1445 | snd_power_unlock(card); | ||
1446 | return -ENOMEM; | ||
1447 | } | ||
1448 | } else | ||
1449 | drec = &drec_tmp; | ||
1450 | |||
1451 | /* count only playback streams */ | ||
1452 | num_drecs = 0; | ||
1453 | snd_pcm_group_for_each_entry(s, substream) { | ||
1454 | runtime = s->runtime; | ||
1455 | if (s->stream == SNDRV_PCM_STREAM_PLAYBACK) { | ||
1456 | d = &drec[num_drecs++]; | ||
1457 | d->substream = s; | ||
1458 | init_waitqueue_entry(&d->wait, current); | ||
1459 | add_wait_queue(&runtime->sleep, &d->wait); | ||
1460 | } | ||
1461 | } | ||
1462 | up_read(&snd_pcm_link_rwsem); | ||
1463 | |||
1464 | lock: | ||
1465 | snd_pcm_stream_lock_irq(substream); | 1431 | snd_pcm_stream_lock_irq(substream); |
1466 | /* resume pause */ | 1432 | /* resume pause */ |
1467 | if (substream->runtime->status->state == SNDRV_PCM_STATE_PAUSED) | 1433 | if (runtime->status->state == SNDRV_PCM_STATE_PAUSED) |
1468 | snd_pcm_pause(substream, 0); | 1434 | snd_pcm_pause(substream, 0); |
1469 | 1435 | ||
1470 | /* pre-start/stop - all running streams are changed to DRAINING state */ | 1436 | /* pre-start/stop - all running streams are changed to DRAINING state */ |
@@ -1479,25 +1445,35 @@ static int snd_pcm_drain(struct snd_pcm_substream *substream, | |||
1479 | 1445 | ||
1480 | for (;;) { | 1446 | for (;;) { |
1481 | long tout; | 1447 | long tout; |
1448 | struct snd_pcm_runtime *to_check; | ||
1482 | if (signal_pending(current)) { | 1449 | if (signal_pending(current)) { |
1483 | result = -ERESTARTSYS; | 1450 | result = -ERESTARTSYS; |
1484 | break; | 1451 | break; |
1485 | } | 1452 | } |
1486 | /* all finished? */ | 1453 | /* find a substream to drain */ |
1487 | for (i = 0; i < num_drecs; i++) { | 1454 | to_check = NULL; |
1488 | runtime = drec[i].substream->runtime; | 1455 | snd_pcm_group_for_each_entry(s, substream) { |
1489 | if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) | 1456 | if (s->stream != SNDRV_PCM_STREAM_PLAYBACK) |
1457 | continue; | ||
1458 | runtime = s->runtime; | ||
1459 | if (runtime->status->state == SNDRV_PCM_STATE_DRAINING) { | ||
1460 | to_check = runtime; | ||
1490 | break; | 1461 | break; |
1462 | } | ||
1491 | } | 1463 | } |
1492 | if (i == num_drecs) | 1464 | if (!to_check) |
1493 | break; /* yes, all drained */ | 1465 | break; /* all drained */ |
1494 | 1466 | init_waitqueue_entry(&wait, current); | |
1467 | add_wait_queue(&to_check->sleep, &wait); | ||
1495 | set_current_state(TASK_INTERRUPTIBLE); | 1468 | set_current_state(TASK_INTERRUPTIBLE); |
1496 | snd_pcm_stream_unlock_irq(substream); | 1469 | snd_pcm_stream_unlock_irq(substream); |
1470 | up_read(&snd_pcm_link_rwsem); | ||
1497 | snd_power_unlock(card); | 1471 | snd_power_unlock(card); |
1498 | tout = schedule_timeout(10 * HZ); | 1472 | tout = schedule_timeout(10 * HZ); |
1499 | snd_power_lock(card); | 1473 | snd_power_lock(card); |
1474 | down_read(&snd_pcm_link_rwsem); | ||
1500 | snd_pcm_stream_lock_irq(substream); | 1475 | snd_pcm_stream_lock_irq(substream); |
1476 | remove_wait_queue(&to_check->sleep, &wait); | ||
1501 | if (tout == 0) { | 1477 | if (tout == 0) { |
1502 | if (substream->runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) | 1478 | if (substream->runtime->status->state == SNDRV_PCM_STATE_SUSPENDED) |
1503 | result = -ESTRPIPE; | 1479 | result = -ESTRPIPE; |
@@ -1512,16 +1488,7 @@ static int snd_pcm_drain(struct snd_pcm_substream *substream, | |||
1512 | 1488 | ||
1513 | unlock: | 1489 | unlock: |
1514 | snd_pcm_stream_unlock_irq(substream); | 1490 | snd_pcm_stream_unlock_irq(substream); |
1515 | 1491 | up_read(&snd_pcm_link_rwsem); | |
1516 | if (!nonblock) { | ||
1517 | for (i = 0; i < num_drecs; i++) { | ||
1518 | d = &drec[i]; | ||
1519 | runtime = d->substream->runtime; | ||
1520 | remove_wait_queue(&runtime->sleep, &d->wait); | ||
1521 | } | ||
1522 | if (drec != &drec_tmp) | ||
1523 | kfree(drec); | ||
1524 | } | ||
1525 | snd_power_unlock(card); | 1492 | snd_power_unlock(card); |
1526 | 1493 | ||
1527 | return result; | 1494 | return result; |
@@ -3018,7 +2985,7 @@ static int snd_pcm_mmap_status_fault(struct vm_area_struct *area, | |||
3018 | return 0; | 2985 | return 0; |
3019 | } | 2986 | } |
3020 | 2987 | ||
3021 | static struct vm_operations_struct snd_pcm_vm_ops_status = | 2988 | static const struct vm_operations_struct snd_pcm_vm_ops_status = |
3022 | { | 2989 | { |
3023 | .fault = snd_pcm_mmap_status_fault, | 2990 | .fault = snd_pcm_mmap_status_fault, |
3024 | }; | 2991 | }; |
@@ -3057,7 +3024,7 @@ static int snd_pcm_mmap_control_fault(struct vm_area_struct *area, | |||
3057 | return 0; | 3024 | return 0; |
3058 | } | 3025 | } |
3059 | 3026 | ||
3060 | static struct vm_operations_struct snd_pcm_vm_ops_control = | 3027 | static const struct vm_operations_struct snd_pcm_vm_ops_control = |
3061 | { | 3028 | { |
3062 | .fault = snd_pcm_mmap_control_fault, | 3029 | .fault = snd_pcm_mmap_control_fault, |
3063 | }; | 3030 | }; |
@@ -3127,7 +3094,7 @@ static int snd_pcm_mmap_data_fault(struct vm_area_struct *area, | |||
3127 | return 0; | 3094 | return 0; |
3128 | } | 3095 | } |
3129 | 3096 | ||
3130 | static struct vm_operations_struct snd_pcm_vm_ops_data = | 3097 | static const struct vm_operations_struct snd_pcm_vm_ops_data = |
3131 | { | 3098 | { |
3132 | .open = snd_pcm_mmap_data_open, | 3099 | .open = snd_pcm_mmap_data_open, |
3133 | .close = snd_pcm_mmap_data_close, | 3100 | .close = snd_pcm_mmap_data_close, |
@@ -3151,7 +3118,7 @@ static int snd_pcm_default_mmap(struct snd_pcm_substream *substream, | |||
3151 | * mmap the DMA buffer on I/O memory area | 3118 | * mmap the DMA buffer on I/O memory area |
3152 | */ | 3119 | */ |
3153 | #if SNDRV_PCM_INFO_MMAP_IOMEM | 3120 | #if SNDRV_PCM_INFO_MMAP_IOMEM |
3154 | static struct vm_operations_struct snd_pcm_vm_ops_data_mmio = | 3121 | static const struct vm_operations_struct snd_pcm_vm_ops_data_mmio = |
3155 | { | 3122 | { |
3156 | .open = snd_pcm_mmap_data_open, | 3123 | .open = snd_pcm_mmap_data_open, |
3157 | .close = snd_pcm_mmap_data_close, | 3124 | .close = snd_pcm_mmap_data_close, |
diff --git a/sound/drivers/dummy.c b/sound/drivers/dummy.c index 6ba066c41d2e..146ef00f94a3 100644 --- a/sound/drivers/dummy.c +++ b/sound/drivers/dummy.c | |||
@@ -808,8 +808,6 @@ static int __devinit snd_card_dummy_new_mixer(struct snd_dummy *dummy) | |||
808 | unsigned int idx; | 808 | unsigned int idx; |
809 | int err; | 809 | int err; |
810 | 810 | ||
811 | if (snd_BUG_ON(!dummy)) | ||
812 | return -EINVAL; | ||
813 | spin_lock_init(&dummy->mixer_lock); | 811 | spin_lock_init(&dummy->mixer_lock); |
814 | strcpy(card->mixername, "Dummy Mixer"); | 812 | strcpy(card->mixername, "Dummy Mixer"); |
815 | 813 | ||
diff --git a/sound/drivers/opl3/opl3_midi.c b/sound/drivers/opl3/opl3_midi.c index 6e7d09ae0e82..7d722a025d0d 100644 --- a/sound/drivers/opl3/opl3_midi.c +++ b/sound/drivers/opl3/opl3_midi.c | |||
@@ -29,6 +29,8 @@ extern char snd_opl3_regmap[MAX_OPL2_VOICES][4]; | |||
29 | 29 | ||
30 | extern int use_internal_drums; | 30 | extern int use_internal_drums; |
31 | 31 | ||
32 | static void snd_opl3_note_off_unsafe(void *p, int note, int vel, | ||
33 | struct snd_midi_channel *chan); | ||
32 | /* | 34 | /* |
33 | * The next table looks magical, but it certainly is not. Its values have | 35 | * The next table looks magical, but it certainly is not. Its values have |
34 | * been calculated as table[i]=8*log(i/64)/log(2) with an obvious exception | 36 | * been calculated as table[i]=8*log(i/64)/log(2) with an obvious exception |
@@ -242,16 +244,20 @@ void snd_opl3_timer_func(unsigned long data) | |||
242 | int again = 0; | 244 | int again = 0; |
243 | int i; | 245 | int i; |
244 | 246 | ||
245 | spin_lock_irqsave(&opl3->sys_timer_lock, flags); | 247 | spin_lock_irqsave(&opl3->voice_lock, flags); |
246 | for (i = 0; i < opl3->max_voices; i++) { | 248 | for (i = 0; i < opl3->max_voices; i++) { |
247 | struct snd_opl3_voice *vp = &opl3->voices[i]; | 249 | struct snd_opl3_voice *vp = &opl3->voices[i]; |
248 | if (vp->state > 0 && vp->note_off_check) { | 250 | if (vp->state > 0 && vp->note_off_check) { |
249 | if (vp->note_off == jiffies) | 251 | if (vp->note_off == jiffies) |
250 | snd_opl3_note_off(opl3, vp->note, 0, vp->chan); | 252 | snd_opl3_note_off_unsafe(opl3, vp->note, 0, |
253 | vp->chan); | ||
251 | else | 254 | else |
252 | again++; | 255 | again++; |
253 | } | 256 | } |
254 | } | 257 | } |
258 | spin_unlock_irqrestore(&opl3->voice_lock, flags); | ||
259 | |||
260 | spin_lock_irqsave(&opl3->sys_timer_lock, flags); | ||
255 | if (again) { | 261 | if (again) { |
256 | opl3->tlist.expires = jiffies + 1; /* invoke again */ | 262 | opl3->tlist.expires = jiffies + 1; /* invoke again */ |
257 | add_timer(&opl3->tlist); | 263 | add_timer(&opl3->tlist); |
@@ -658,15 +664,14 @@ static void snd_opl3_kill_voice(struct snd_opl3 *opl3, int voice) | |||
658 | /* | 664 | /* |
659 | * Release a note in response to a midi note off. | 665 | * Release a note in response to a midi note off. |
660 | */ | 666 | */ |
661 | void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan) | 667 | static void snd_opl3_note_off_unsafe(void *p, int note, int vel, |
668 | struct snd_midi_channel *chan) | ||
662 | { | 669 | { |
663 | struct snd_opl3 *opl3; | 670 | struct snd_opl3 *opl3; |
664 | 671 | ||
665 | int voice; | 672 | int voice; |
666 | struct snd_opl3_voice *vp; | 673 | struct snd_opl3_voice *vp; |
667 | 674 | ||
668 | unsigned long flags; | ||
669 | |||
670 | opl3 = p; | 675 | opl3 = p; |
671 | 676 | ||
672 | #ifdef DEBUG_MIDI | 677 | #ifdef DEBUG_MIDI |
@@ -674,12 +679,9 @@ void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan | |||
674 | chan->number, chan->midi_program, note); | 679 | chan->number, chan->midi_program, note); |
675 | #endif | 680 | #endif |
676 | 681 | ||
677 | spin_lock_irqsave(&opl3->voice_lock, flags); | ||
678 | |||
679 | if (opl3->synth_mode == SNDRV_OPL3_MODE_SEQ) { | 682 | if (opl3->synth_mode == SNDRV_OPL3_MODE_SEQ) { |
680 | if (chan->drum_channel && use_internal_drums) { | 683 | if (chan->drum_channel && use_internal_drums) { |
681 | snd_opl3_drum_switch(opl3, note, vel, 0, chan); | 684 | snd_opl3_drum_switch(opl3, note, vel, 0, chan); |
682 | spin_unlock_irqrestore(&opl3->voice_lock, flags); | ||
683 | return; | 685 | return; |
684 | } | 686 | } |
685 | /* this loop will hopefully kill all extra voices, because | 687 | /* this loop will hopefully kill all extra voices, because |
@@ -697,6 +699,16 @@ void snd_opl3_note_off(void *p, int note, int vel, struct snd_midi_channel *chan | |||
697 | snd_opl3_kill_voice(opl3, voice); | 699 | snd_opl3_kill_voice(opl3, voice); |
698 | } | 700 | } |
699 | } | 701 | } |
702 | } | ||
703 | |||
704 | void snd_opl3_note_off(void *p, int note, int vel, | ||
705 | struct snd_midi_channel *chan) | ||
706 | { | ||
707 | struct snd_opl3 *opl3 = p; | ||
708 | unsigned long flags; | ||
709 | |||
710 | spin_lock_irqsave(&opl3->voice_lock, flags); | ||
711 | snd_opl3_note_off_unsafe(p, note, vel, chan); | ||
700 | spin_unlock_irqrestore(&opl3->voice_lock, flags); | 712 | spin_unlock_irqrestore(&opl3->voice_lock, flags); |
701 | } | 713 | } |
702 | 714 | ||
diff --git a/sound/drivers/pcsp/pcsp.c b/sound/drivers/pcsp/pcsp.c index b60cef257b58..f165c77d6273 100644 --- a/sound/drivers/pcsp/pcsp.c +++ b/sound/drivers/pcsp/pcsp.c | |||
@@ -26,6 +26,7 @@ MODULE_ALIAS("platform:pcspkr"); | |||
26 | static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */ | 26 | static int index = SNDRV_DEFAULT_IDX1; /* Index 0-MAX */ |
27 | static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */ | 27 | static char *id = SNDRV_DEFAULT_STR1; /* ID for this card */ |
28 | static int enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */ | 28 | static int enable = SNDRV_DEFAULT_ENABLE1; /* Enable this card */ |
29 | static int nopcm; /* Disable PCM capability of the driver */ | ||
29 | 30 | ||
30 | module_param(index, int, 0444); | 31 | module_param(index, int, 0444); |
31 | MODULE_PARM_DESC(index, "Index value for pcsp soundcard."); | 32 | MODULE_PARM_DESC(index, "Index value for pcsp soundcard."); |
@@ -33,6 +34,8 @@ module_param(id, charp, 0444); | |||
33 | MODULE_PARM_DESC(id, "ID string for pcsp soundcard."); | 34 | MODULE_PARM_DESC(id, "ID string for pcsp soundcard."); |
34 | module_param(enable, bool, 0444); | 35 | module_param(enable, bool, 0444); |
35 | MODULE_PARM_DESC(enable, "Enable PC-Speaker sound."); | 36 | MODULE_PARM_DESC(enable, "Enable PC-Speaker sound."); |
37 | module_param(nopcm, bool, 0444); | ||
38 | MODULE_PARM_DESC(nopcm, "Disable PC-Speaker PCM sound. Only beeps remain."); | ||
36 | 39 | ||
37 | struct snd_pcsp pcsp_chip; | 40 | struct snd_pcsp pcsp_chip; |
38 | 41 | ||
@@ -43,13 +46,16 @@ static int __devinit snd_pcsp_create(struct snd_card *card) | |||
43 | int err; | 46 | int err; |
44 | int div, min_div, order; | 47 | int div, min_div, order; |
45 | 48 | ||
46 | hrtimer_get_res(CLOCK_MONOTONIC, &tp); | 49 | if (!nopcm) { |
47 | if (tp.tv_sec || tp.tv_nsec > PCSP_MAX_PERIOD_NS) { | 50 | hrtimer_get_res(CLOCK_MONOTONIC, &tp); |
48 | printk(KERN_ERR "PCSP: Timer resolution is not sufficient " | 51 | if (tp.tv_sec || tp.tv_nsec > PCSP_MAX_PERIOD_NS) { |
49 | "(%linS)\n", tp.tv_nsec); | 52 | printk(KERN_ERR "PCSP: Timer resolution is not sufficient " |
50 | printk(KERN_ERR "PCSP: Make sure you have HPET and ACPI " | 53 | "(%linS)\n", tp.tv_nsec); |
51 | "enabled.\n"); | 54 | printk(KERN_ERR "PCSP: Make sure you have HPET and ACPI " |
52 | return -EIO; | 55 | "enabled.\n"); |
56 | printk(KERN_ERR "PCSP: Turned into nopcm mode.\n"); | ||
57 | nopcm = 1; | ||
58 | } | ||
53 | } | 59 | } |
54 | 60 | ||
55 | if (loops_per_jiffy >= PCSP_MIN_LPJ && tp.tv_nsec <= PCSP_MIN_PERIOD_NS) | 61 | if (loops_per_jiffy >= PCSP_MIN_LPJ && tp.tv_nsec <= PCSP_MIN_PERIOD_NS) |
@@ -107,12 +113,14 @@ static int __devinit snd_card_pcsp_probe(int devnum, struct device *dev) | |||
107 | snd_card_free(card); | 113 | snd_card_free(card); |
108 | return err; | 114 | return err; |
109 | } | 115 | } |
110 | err = snd_pcsp_new_pcm(&pcsp_chip); | 116 | if (!nopcm) { |
111 | if (err < 0) { | 117 | err = snd_pcsp_new_pcm(&pcsp_chip); |
112 | snd_card_free(card); | 118 | if (err < 0) { |
113 | return err; | 119 | snd_card_free(card); |
120 | return err; | ||
121 | } | ||
114 | } | 122 | } |
115 | err = snd_pcsp_new_mixer(&pcsp_chip); | 123 | err = snd_pcsp_new_mixer(&pcsp_chip, nopcm); |
116 | if (err < 0) { | 124 | if (err < 0) { |
117 | snd_card_free(card); | 125 | snd_card_free(card); |
118 | return err; | 126 | return err; |
diff --git a/sound/drivers/pcsp/pcsp.h b/sound/drivers/pcsp/pcsp.h index 174dd2ff0f22..1e123077923d 100644 --- a/sound/drivers/pcsp/pcsp.h +++ b/sound/drivers/pcsp/pcsp.h | |||
@@ -83,6 +83,6 @@ extern enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle); | |||
83 | extern void pcsp_sync_stop(struct snd_pcsp *chip); | 83 | extern void pcsp_sync_stop(struct snd_pcsp *chip); |
84 | 84 | ||
85 | extern int snd_pcsp_new_pcm(struct snd_pcsp *chip); | 85 | extern int snd_pcsp_new_pcm(struct snd_pcsp *chip); |
86 | extern int snd_pcsp_new_mixer(struct snd_pcsp *chip); | 86 | extern int snd_pcsp_new_mixer(struct snd_pcsp *chip, int nopcm); |
87 | 87 | ||
88 | #endif | 88 | #endif |
diff --git a/sound/drivers/pcsp/pcsp_lib.c b/sound/drivers/pcsp/pcsp_lib.c index 84cc2658c05b..e1145ac6e908 100644 --- a/sound/drivers/pcsp/pcsp_lib.c +++ b/sound/drivers/pcsp/pcsp_lib.c | |||
@@ -39,25 +39,20 @@ static DECLARE_TASKLET(pcsp_pcm_tasklet, pcsp_call_pcm_elapsed, 0); | |||
39 | /* write the port and returns the next expire time in ns; | 39 | /* write the port and returns the next expire time in ns; |
40 | * called at the trigger-start and in hrtimer callback | 40 | * called at the trigger-start and in hrtimer callback |
41 | */ | 41 | */ |
42 | static unsigned long pcsp_timer_update(struct hrtimer *handle) | 42 | static u64 pcsp_timer_update(struct snd_pcsp *chip) |
43 | { | 43 | { |
44 | unsigned char timer_cnt, val; | 44 | unsigned char timer_cnt, val; |
45 | u64 ns; | 45 | u64 ns; |
46 | struct snd_pcm_substream *substream; | 46 | struct snd_pcm_substream *substream; |
47 | struct snd_pcm_runtime *runtime; | 47 | struct snd_pcm_runtime *runtime; |
48 | struct snd_pcsp *chip = container_of(handle, struct snd_pcsp, timer); | ||
49 | unsigned long flags; | 48 | unsigned long flags; |
50 | 49 | ||
51 | if (chip->thalf) { | 50 | if (chip->thalf) { |
52 | outb(chip->val61, 0x61); | 51 | outb(chip->val61, 0x61); |
53 | chip->thalf = 0; | 52 | chip->thalf = 0; |
54 | if (!atomic_read(&chip->timer_active)) | ||
55 | return 0; | ||
56 | return chip->ns_rem; | 53 | return chip->ns_rem; |
57 | } | 54 | } |
58 | 55 | ||
59 | if (!atomic_read(&chip->timer_active)) | ||
60 | return 0; | ||
61 | substream = chip->playback_substream; | 56 | substream = chip->playback_substream; |
62 | if (!substream) | 57 | if (!substream) |
63 | return 0; | 58 | return 0; |
@@ -88,24 +83,17 @@ static unsigned long pcsp_timer_update(struct hrtimer *handle) | |||
88 | return ns; | 83 | return ns; |
89 | } | 84 | } |
90 | 85 | ||
91 | enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | 86 | static void pcsp_pointer_update(struct snd_pcsp *chip) |
92 | { | 87 | { |
93 | struct snd_pcsp *chip = container_of(handle, struct snd_pcsp, timer); | ||
94 | struct snd_pcm_substream *substream; | 88 | struct snd_pcm_substream *substream; |
95 | int periods_elapsed, pointer_update; | ||
96 | size_t period_bytes, buffer_bytes; | 89 | size_t period_bytes, buffer_bytes; |
97 | unsigned long ns; | 90 | int periods_elapsed; |
98 | unsigned long flags; | 91 | unsigned long flags; |
99 | 92 | ||
100 | pointer_update = !chip->thalf; | ||
101 | ns = pcsp_timer_update(handle); | ||
102 | if (!ns) | ||
103 | return HRTIMER_NORESTART; | ||
104 | |||
105 | /* update the playback position */ | 93 | /* update the playback position */ |
106 | substream = chip->playback_substream; | 94 | substream = chip->playback_substream; |
107 | if (!substream) | 95 | if (!substream) |
108 | return HRTIMER_NORESTART; | 96 | return; |
109 | 97 | ||
110 | period_bytes = snd_pcm_lib_period_bytes(substream); | 98 | period_bytes = snd_pcm_lib_period_bytes(substream); |
111 | buffer_bytes = snd_pcm_lib_buffer_bytes(substream); | 99 | buffer_bytes = snd_pcm_lib_buffer_bytes(substream); |
@@ -134,6 +122,26 @@ enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | |||
134 | 122 | ||
135 | if (periods_elapsed) | 123 | if (periods_elapsed) |
136 | tasklet_schedule(&pcsp_pcm_tasklet); | 124 | tasklet_schedule(&pcsp_pcm_tasklet); |
125 | } | ||
126 | |||
127 | enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | ||
128 | { | ||
129 | struct snd_pcsp *chip = container_of(handle, struct snd_pcsp, timer); | ||
130 | int pointer_update; | ||
131 | u64 ns; | ||
132 | |||
133 | if (!atomic_read(&chip->timer_active) || !chip->playback_substream) | ||
134 | return HRTIMER_NORESTART; | ||
135 | |||
136 | pointer_update = !chip->thalf; | ||
137 | ns = pcsp_timer_update(chip); | ||
138 | if (!ns) { | ||
139 | printk(KERN_WARNING "PCSP: unexpected stop\n"); | ||
140 | return HRTIMER_NORESTART; | ||
141 | } | ||
142 | |||
143 | if (pointer_update) | ||
144 | pcsp_pointer_update(chip); | ||
137 | 145 | ||
138 | hrtimer_forward(handle, hrtimer_get_expires(handle), ns_to_ktime(ns)); | 146 | hrtimer_forward(handle, hrtimer_get_expires(handle), ns_to_ktime(ns)); |
139 | 147 | ||
@@ -142,8 +150,6 @@ enum hrtimer_restart pcsp_do_timer(struct hrtimer *handle) | |||
142 | 150 | ||
143 | static int pcsp_start_playing(struct snd_pcsp *chip) | 151 | static int pcsp_start_playing(struct snd_pcsp *chip) |
144 | { | 152 | { |
145 | unsigned long ns; | ||
146 | |||
147 | #if PCSP_DEBUG | 153 | #if PCSP_DEBUG |
148 | printk(KERN_INFO "PCSP: start_playing called\n"); | 154 | printk(KERN_INFO "PCSP: start_playing called\n"); |
149 | #endif | 155 | #endif |
@@ -159,11 +165,7 @@ static int pcsp_start_playing(struct snd_pcsp *chip) | |||
159 | atomic_set(&chip->timer_active, 1); | 165 | atomic_set(&chip->timer_active, 1); |
160 | chip->thalf = 0; | 166 | chip->thalf = 0; |
161 | 167 | ||
162 | ns = pcsp_timer_update(&pcsp_chip.timer); | 168 | hrtimer_start(&pcsp_chip.timer, ktime_set(0, 0), HRTIMER_MODE_REL); |
163 | if (!ns) | ||
164 | return -EIO; | ||
165 | |||
166 | hrtimer_start(&pcsp_chip.timer, ktime_set(0, ns), HRTIMER_MODE_REL); | ||
167 | return 0; | 169 | return 0; |
168 | } | 170 | } |
169 | 171 | ||
@@ -232,21 +234,22 @@ static int snd_pcsp_playback_hw_free(struct snd_pcm_substream *substream) | |||
232 | static int snd_pcsp_playback_prepare(struct snd_pcm_substream *substream) | 234 | static int snd_pcsp_playback_prepare(struct snd_pcm_substream *substream) |
233 | { | 235 | { |
234 | struct snd_pcsp *chip = snd_pcm_substream_chip(substream); | 236 | struct snd_pcsp *chip = snd_pcm_substream_chip(substream); |
237 | pcsp_sync_stop(chip); | ||
238 | chip->playback_ptr = 0; | ||
239 | chip->period_ptr = 0; | ||
240 | chip->fmt_size = | ||
241 | snd_pcm_format_physical_width(substream->runtime->format) >> 3; | ||
242 | chip->is_signed = snd_pcm_format_signed(substream->runtime->format); | ||
235 | #if PCSP_DEBUG | 243 | #if PCSP_DEBUG |
236 | printk(KERN_INFO "PCSP: prepare called, " | 244 | printk(KERN_INFO "PCSP: prepare called, " |
237 | "size=%zi psize=%zi f=%zi f1=%i\n", | 245 | "size=%zi psize=%zi f=%zi f1=%i fsize=%i\n", |
238 | snd_pcm_lib_buffer_bytes(substream), | 246 | snd_pcm_lib_buffer_bytes(substream), |
239 | snd_pcm_lib_period_bytes(substream), | 247 | snd_pcm_lib_period_bytes(substream), |
240 | snd_pcm_lib_buffer_bytes(substream) / | 248 | snd_pcm_lib_buffer_bytes(substream) / |
241 | snd_pcm_lib_period_bytes(substream), | 249 | snd_pcm_lib_period_bytes(substream), |
242 | substream->runtime->periods); | 250 | substream->runtime->periods, |
251 | chip->fmt_size); | ||
243 | #endif | 252 | #endif |
244 | pcsp_sync_stop(chip); | ||
245 | chip->playback_ptr = 0; | ||
246 | chip->period_ptr = 0; | ||
247 | chip->fmt_size = | ||
248 | snd_pcm_format_physical_width(substream->runtime->format) >> 3; | ||
249 | chip->is_signed = snd_pcm_format_signed(substream->runtime->format); | ||
250 | return 0; | 253 | return 0; |
251 | } | 254 | } |
252 | 255 | ||
diff --git a/sound/drivers/pcsp/pcsp_mixer.c b/sound/drivers/pcsp/pcsp_mixer.c index 199b03377142..6f633f4f3b96 100644 --- a/sound/drivers/pcsp/pcsp_mixer.c +++ b/sound/drivers/pcsp/pcsp_mixer.c | |||
@@ -72,7 +72,7 @@ static int pcsp_treble_put(struct snd_kcontrol *kcontrol, | |||
72 | if (treble != chip->treble) { | 72 | if (treble != chip->treble) { |
73 | chip->treble = treble; | 73 | chip->treble = treble; |
74 | #if PCSP_DEBUG | 74 | #if PCSP_DEBUG |
75 | printk(KERN_INFO "PCSP: rate set to %i\n", PCSP_RATE()); | 75 | printk(KERN_INFO "PCSP: rate set to %li\n", PCSP_RATE()); |
76 | #endif | 76 | #endif |
77 | changed = 1; | 77 | changed = 1; |
78 | } | 78 | } |
@@ -119,24 +119,43 @@ static int pcsp_pcspkr_put(struct snd_kcontrol *kcontrol, | |||
119 | .put = pcsp_##ctl_type##_put, \ | 119 | .put = pcsp_##ctl_type##_put, \ |
120 | } | 120 | } |
121 | 121 | ||
122 | static struct snd_kcontrol_new __devinitdata snd_pcsp_controls[] = { | 122 | static struct snd_kcontrol_new __devinitdata snd_pcsp_controls_pcm[] = { |
123 | PCSP_MIXER_CONTROL(enable, "Master Playback Switch"), | 123 | PCSP_MIXER_CONTROL(enable, "Master Playback Switch"), |
124 | PCSP_MIXER_CONTROL(treble, "BaseFRQ Playback Volume"), | 124 | PCSP_MIXER_CONTROL(treble, "BaseFRQ Playback Volume"), |
125 | PCSP_MIXER_CONTROL(pcspkr, "PC Speaker Playback Switch"), | ||
126 | }; | 125 | }; |
127 | 126 | ||
128 | int __devinit snd_pcsp_new_mixer(struct snd_pcsp *chip) | 127 | static struct snd_kcontrol_new __devinitdata snd_pcsp_controls_spkr[] = { |
128 | PCSP_MIXER_CONTROL(pcspkr, "Beep Playback Switch"), | ||
129 | }; | ||
130 | |||
131 | static int __devinit snd_pcsp_ctls_add(struct snd_pcsp *chip, | ||
132 | struct snd_kcontrol_new *ctls, int num) | ||
129 | { | 133 | { |
130 | struct snd_card *card = chip->card; | ||
131 | int i, err; | 134 | int i, err; |
135 | struct snd_card *card = chip->card; | ||
136 | for (i = 0; i < num; i++) { | ||
137 | err = snd_ctl_add(card, snd_ctl_new1(ctls + i, chip)); | ||
138 | if (err < 0) | ||
139 | return err; | ||
140 | } | ||
141 | return 0; | ||
142 | } | ||
143 | |||
144 | int __devinit snd_pcsp_new_mixer(struct snd_pcsp *chip, int nopcm) | ||
145 | { | ||
146 | int err; | ||
147 | struct snd_card *card = chip->card; | ||
132 | 148 | ||
133 | for (i = 0; i < ARRAY_SIZE(snd_pcsp_controls); i++) { | 149 | if (!nopcm) { |
134 | err = snd_ctl_add(card, | 150 | err = snd_pcsp_ctls_add(chip, snd_pcsp_controls_pcm, |
135 | snd_ctl_new1(snd_pcsp_controls + i, | 151 | ARRAY_SIZE(snd_pcsp_controls_pcm)); |
136 | chip)); | ||
137 | if (err < 0) | 152 | if (err < 0) |
138 | return err; | 153 | return err; |
139 | } | 154 | } |
155 | err = snd_pcsp_ctls_add(chip, snd_pcsp_controls_spkr, | ||
156 | ARRAY_SIZE(snd_pcsp_controls_spkr)); | ||
157 | if (err < 0) | ||
158 | return err; | ||
140 | 159 | ||
141 | strcpy(card->mixername, "PC-Speaker"); | 160 | strcpy(card->mixername, "PC-Speaker"); |
142 | 161 | ||
diff --git a/sound/isa/Kconfig b/sound/isa/Kconfig index 51a7e3777e17..02fe81ca88fd 100644 --- a/sound/isa/Kconfig +++ b/sound/isa/Kconfig | |||
@@ -372,15 +372,21 @@ config SND_SGALAXY | |||
372 | 372 | ||
373 | config SND_SSCAPE | 373 | config SND_SSCAPE |
374 | tristate "Ensoniq SoundScape driver" | 374 | tristate "Ensoniq SoundScape driver" |
375 | select SND_HWDEP | ||
376 | select SND_MPU401_UART | 375 | select SND_MPU401_UART |
377 | select SND_WSS_LIB | 376 | select SND_WSS_LIB |
377 | select FW_LOADER | ||
378 | help | 378 | help |
379 | Say Y here to include support for Ensoniq SoundScape | 379 | Say Y here to include support for Ensoniq SoundScape |
380 | soundcards. | 380 | and Ensoniq OEM soundcards. |
381 | 381 | ||
382 | The PCM audio is supported on SoundScape Classic, Elite, PnP | 382 | The PCM audio is supported on SoundScape Classic, Elite, PnP |
383 | and VIVO cards. The MIDI support is very experimental. | 383 | and VIVO cards. The supported OEM cards are SPEA Media FX and |
384 | Reveal SC-600. | ||
385 | The MIDI support is very experimental and requires binary | ||
386 | firmware files called "scope.cod" and "sndscape.co?" where the | ||
387 | ? is digit 0, 1, 2, 3 or 4. The firmware files can be found | ||
388 | in DOS or Windows driver packages. One has to put the firmware | ||
389 | files into the /lib/firmware directory. | ||
384 | 390 | ||
385 | To compile this driver as a module, choose M here: the module | 391 | To compile this driver as a module, choose M here: the module |
386 | will be called snd-sscape. | 392 | will be called snd-sscape. |
diff --git a/sound/isa/cmi8330.c b/sound/isa/cmi8330.c index 02f79d252718..8246aae32ab4 100644 --- a/sound/isa/cmi8330.c +++ b/sound/isa/cmi8330.c | |||
@@ -237,7 +237,7 @@ WSS_DOUBLE("Wavetable Capture Volume", 0, | |||
237 | CMI8330_WAVGAIN, CMI8330_WAVGAIN, 4, 0, 15, 0), | 237 | CMI8330_WAVGAIN, CMI8330_WAVGAIN, 4, 0, 15, 0), |
238 | WSS_SINGLE("3D Control - Switch", 0, | 238 | WSS_SINGLE("3D Control - Switch", 0, |
239 | CMI8330_RMUX3D, 5, 1, 1), | 239 | CMI8330_RMUX3D, 5, 1, 1), |
240 | WSS_SINGLE("PC Speaker Playback Volume", 0, | 240 | WSS_SINGLE("Beep Playback Volume", 0, |
241 | CMI8330_OUTPUTVOL, 3, 3, 0), | 241 | CMI8330_OUTPUTVOL, 3, 3, 0), |
242 | WSS_DOUBLE("FM Playback Switch", 0, | 242 | WSS_DOUBLE("FM Playback Switch", 0, |
243 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), | 243 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), |
@@ -262,7 +262,7 @@ SB_DOUBLE("SB Line Playback Switch", SB_DSP4_OUTPUT_SW, SB_DSP4_OUTPUT_SW, 4, 3, | |||
262 | SB_DOUBLE("SB Line Playback Volume", SB_DSP4_LINE_DEV, (SB_DSP4_LINE_DEV + 1), 3, 3, 31), | 262 | SB_DOUBLE("SB Line Playback Volume", SB_DSP4_LINE_DEV, (SB_DSP4_LINE_DEV + 1), 3, 3, 31), |
263 | SB_SINGLE("SB Mic Playback Switch", SB_DSP4_OUTPUT_SW, 0, 1), | 263 | SB_SINGLE("SB Mic Playback Switch", SB_DSP4_OUTPUT_SW, 0, 1), |
264 | SB_SINGLE("SB Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31), | 264 | SB_SINGLE("SB Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31), |
265 | SB_SINGLE("SB PC Speaker Volume", SB_DSP4_SPEAKER_DEV, 6, 3), | 265 | SB_SINGLE("SB Beep Volume", SB_DSP4_SPEAKER_DEV, 6, 3), |
266 | SB_DOUBLE("SB Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3), | 266 | SB_DOUBLE("SB Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3), |
267 | SB_DOUBLE("SB Playback Volume", SB_DSP4_OGAIN_DEV, (SB_DSP4_OGAIN_DEV + 1), 6, 6, 3), | 267 | SB_DOUBLE("SB Playback Volume", SB_DSP4_OGAIN_DEV, (SB_DSP4_OGAIN_DEV + 1), 6, 6, 3), |
268 | SB_SINGLE("SB Mic Auto Gain", SB_DSP4_MIC_AGC, 0, 1), | 268 | SB_SINGLE("SB Mic Auto Gain", SB_DSP4_MIC_AGC, 0, 1), |
diff --git a/sound/isa/es1688/es1688_lib.c b/sound/isa/es1688/es1688_lib.c index 4c6e14f87f2d..c76bb00c9d15 100644 --- a/sound/isa/es1688/es1688_lib.c +++ b/sound/isa/es1688/es1688_lib.c | |||
@@ -982,7 +982,7 @@ ES1688_DOUBLE("CD Playback Volume", 0, ES1688_CD_DEV, ES1688_CD_DEV, 4, 0, 15, 0 | |||
982 | ES1688_DOUBLE("FM Playback Volume", 0, ES1688_FM_DEV, ES1688_FM_DEV, 4, 0, 15, 0), | 982 | ES1688_DOUBLE("FM Playback Volume", 0, ES1688_FM_DEV, ES1688_FM_DEV, 4, 0, 15, 0), |
983 | ES1688_DOUBLE("Mic Playback Volume", 0, ES1688_MIC_DEV, ES1688_MIC_DEV, 4, 0, 15, 0), | 983 | ES1688_DOUBLE("Mic Playback Volume", 0, ES1688_MIC_DEV, ES1688_MIC_DEV, 4, 0, 15, 0), |
984 | ES1688_DOUBLE("Aux Playback Volume", 0, ES1688_AUX_DEV, ES1688_AUX_DEV, 4, 0, 15, 0), | 984 | ES1688_DOUBLE("Aux Playback Volume", 0, ES1688_AUX_DEV, ES1688_AUX_DEV, 4, 0, 15, 0), |
985 | ES1688_SINGLE("PC Speaker Playback Volume", 0, ES1688_SPEAKER_DEV, 0, 7, 0), | 985 | ES1688_SINGLE("Beep Playback Volume", 0, ES1688_SPEAKER_DEV, 0, 7, 0), |
986 | ES1688_DOUBLE("Capture Volume", 0, ES1688_RECLEV_DEV, ES1688_RECLEV_DEV, 4, 0, 15, 0), | 986 | ES1688_DOUBLE("Capture Volume", 0, ES1688_RECLEV_DEV, ES1688_RECLEV_DEV, 4, 0, 15, 0), |
987 | ES1688_SINGLE("Capture Switch", 0, ES1688_REC_DEV, 4, 1, 1), | 987 | ES1688_SINGLE("Capture Switch", 0, ES1688_REC_DEV, 4, 1, 1), |
988 | { | 988 | { |
diff --git a/sound/isa/es18xx.c b/sound/isa/es18xx.c index 8cfbff73a835..e5bf3355d2ca 100644 --- a/sound/isa/es18xx.c +++ b/sound/isa/es18xx.c | |||
@@ -121,7 +121,6 @@ struct snd_es18xx { | |||
121 | unsigned int dma1_shift; | 121 | unsigned int dma1_shift; |
122 | unsigned int dma2_shift; | 122 | unsigned int dma2_shift; |
123 | 123 | ||
124 | struct snd_card *card; | ||
125 | struct snd_pcm *pcm; | 124 | struct snd_pcm *pcm; |
126 | struct snd_pcm_substream *playback_a_substream; | 125 | struct snd_pcm_substream *playback_a_substream; |
127 | struct snd_pcm_substream *capture_a_substream; | 126 | struct snd_pcm_substream *capture_a_substream; |
@@ -140,10 +139,6 @@ struct snd_es18xx { | |||
140 | #ifdef CONFIG_PM | 139 | #ifdef CONFIG_PM |
141 | unsigned char pm_reg; | 140 | unsigned char pm_reg; |
142 | #endif | 141 | #endif |
143 | }; | ||
144 | |||
145 | struct snd_audiodrive { | ||
146 | struct snd_es18xx *chip; | ||
147 | #ifdef CONFIG_PNP | 142 | #ifdef CONFIG_PNP |
148 | struct pnp_dev *dev; | 143 | struct pnp_dev *dev; |
149 | struct pnp_dev *devc; | 144 | struct pnp_dev *devc; |
@@ -755,7 +750,8 @@ static int snd_es18xx_playback_trigger(struct snd_pcm_substream *substream, | |||
755 | 750 | ||
756 | static irqreturn_t snd_es18xx_interrupt(int irq, void *dev_id) | 751 | static irqreturn_t snd_es18xx_interrupt(int irq, void *dev_id) |
757 | { | 752 | { |
758 | struct snd_es18xx *chip = dev_id; | 753 | struct snd_card *card = dev_id; |
754 | struct snd_es18xx *chip = card->private_data; | ||
759 | unsigned char status; | 755 | unsigned char status; |
760 | 756 | ||
761 | if (chip->caps & ES18XX_CONTROL) { | 757 | if (chip->caps & ES18XX_CONTROL) { |
@@ -805,12 +801,16 @@ static irqreturn_t snd_es18xx_interrupt(int irq, void *dev_id) | |||
805 | int split = 0; | 801 | int split = 0; |
806 | if (chip->caps & ES18XX_HWV) { | 802 | if (chip->caps & ES18XX_HWV) { |
807 | split = snd_es18xx_mixer_read(chip, 0x64) & 0x80; | 803 | split = snd_es18xx_mixer_read(chip, 0x64) & 0x80; |
808 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->hw_switch->id); | 804 | snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, |
809 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->hw_volume->id); | 805 | &chip->hw_switch->id); |
806 | snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, | ||
807 | &chip->hw_volume->id); | ||
810 | } | 808 | } |
811 | if (!split) { | 809 | if (!split) { |
812 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_switch->id); | 810 | snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, |
813 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE, &chip->master_volume->id); | 811 | &chip->master_switch->id); |
812 | snd_ctl_notify(card, SNDRV_CTL_EVENT_MASK_VALUE, | ||
813 | &chip->master_volume->id); | ||
814 | } | 814 | } |
815 | /* ack interrupt */ | 815 | /* ack interrupt */ |
816 | snd_es18xx_mixer_write(chip, 0x66, 0x00); | 816 | snd_es18xx_mixer_write(chip, 0x66, 0x00); |
@@ -1313,7 +1313,7 @@ ES18XX_DOUBLE("Aux Capture Volume", 0, 0x6c, 0x6c, 4, 0, 15, 0) | |||
1313 | * The chipset specific mixer controls | 1313 | * The chipset specific mixer controls |
1314 | */ | 1314 | */ |
1315 | static struct snd_kcontrol_new snd_es18xx_opt_speaker = | 1315 | static struct snd_kcontrol_new snd_es18xx_opt_speaker = |
1316 | ES18XX_SINGLE("PC Speaker Playback Volume", 0, 0x3c, 0, 7, 0); | 1316 | ES18XX_SINGLE("Beep Playback Volume", 0, 0x3c, 0, 7, 0); |
1317 | 1317 | ||
1318 | static struct snd_kcontrol_new snd_es18xx_opt_1869[] = { | 1318 | static struct snd_kcontrol_new snd_es18xx_opt_1869[] = { |
1319 | ES18XX_SINGLE("Capture Switch", 0, 0x1c, 4, 1, 1), | 1319 | ES18XX_SINGLE("Capture Switch", 0, 0x1c, 4, 1, 1), |
@@ -1691,8 +1691,10 @@ static struct snd_pcm_ops snd_es18xx_capture_ops = { | |||
1691 | .pointer = snd_es18xx_capture_pointer, | 1691 | .pointer = snd_es18xx_capture_pointer, |
1692 | }; | 1692 | }; |
1693 | 1693 | ||
1694 | static int __devinit snd_es18xx_pcm(struct snd_es18xx *chip, int device, struct snd_pcm ** rpcm) | 1694 | static int __devinit snd_es18xx_pcm(struct snd_card *card, int device, |
1695 | struct snd_pcm **rpcm) | ||
1695 | { | 1696 | { |
1697 | struct snd_es18xx *chip = card->private_data; | ||
1696 | struct snd_pcm *pcm; | 1698 | struct snd_pcm *pcm; |
1697 | char str[16]; | 1699 | char str[16]; |
1698 | int err; | 1700 | int err; |
@@ -1701,9 +1703,9 @@ static int __devinit snd_es18xx_pcm(struct snd_es18xx *chip, int device, struct | |||
1701 | *rpcm = NULL; | 1703 | *rpcm = NULL; |
1702 | sprintf(str, "ES%x", chip->version); | 1704 | sprintf(str, "ES%x", chip->version); |
1703 | if (chip->caps & ES18XX_PCM2) | 1705 | if (chip->caps & ES18XX_PCM2) |
1704 | err = snd_pcm_new(chip->card, str, device, 2, 1, &pcm); | 1706 | err = snd_pcm_new(card, str, device, 2, 1, &pcm); |
1705 | else | 1707 | else |
1706 | err = snd_pcm_new(chip->card, str, device, 1, 1, &pcm); | 1708 | err = snd_pcm_new(card, str, device, 1, 1, &pcm); |
1707 | if (err < 0) | 1709 | if (err < 0) |
1708 | return err; | 1710 | return err; |
1709 | 1711 | ||
@@ -1734,10 +1736,9 @@ static int __devinit snd_es18xx_pcm(struct snd_es18xx *chip, int device, struct | |||
1734 | #ifdef CONFIG_PM | 1736 | #ifdef CONFIG_PM |
1735 | static int snd_es18xx_suspend(struct snd_card *card, pm_message_t state) | 1737 | static int snd_es18xx_suspend(struct snd_card *card, pm_message_t state) |
1736 | { | 1738 | { |
1737 | struct snd_audiodrive *acard = card->private_data; | 1739 | struct snd_es18xx *chip = card->private_data; |
1738 | struct snd_es18xx *chip = acard->chip; | ||
1739 | 1740 | ||
1740 | snd_power_change_state(chip->card, SNDRV_CTL_POWER_D3hot); | 1741 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
1741 | 1742 | ||
1742 | snd_pcm_suspend_all(chip->pcm); | 1743 | snd_pcm_suspend_all(chip->pcm); |
1743 | 1744 | ||
@@ -1752,24 +1753,25 @@ static int snd_es18xx_suspend(struct snd_card *card, pm_message_t state) | |||
1752 | 1753 | ||
1753 | static int snd_es18xx_resume(struct snd_card *card) | 1754 | static int snd_es18xx_resume(struct snd_card *card) |
1754 | { | 1755 | { |
1755 | struct snd_audiodrive *acard = card->private_data; | 1756 | struct snd_es18xx *chip = card->private_data; |
1756 | struct snd_es18xx *chip = acard->chip; | ||
1757 | 1757 | ||
1758 | /* restore PM register, we won't wake till (not 0x07) i/o activity though */ | 1758 | /* restore PM register, we won't wake till (not 0x07) i/o activity though */ |
1759 | snd_es18xx_write(chip, ES18XX_PM, chip->pm_reg ^= ES18XX_PM_FM); | 1759 | snd_es18xx_write(chip, ES18XX_PM, chip->pm_reg ^= ES18XX_PM_FM); |
1760 | 1760 | ||
1761 | snd_power_change_state(chip->card, SNDRV_CTL_POWER_D0); | 1761 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
1762 | return 0; | 1762 | return 0; |
1763 | } | 1763 | } |
1764 | #endif /* CONFIG_PM */ | 1764 | #endif /* CONFIG_PM */ |
1765 | 1765 | ||
1766 | static int snd_es18xx_free(struct snd_es18xx *chip) | 1766 | static int snd_es18xx_free(struct snd_card *card) |
1767 | { | 1767 | { |
1768 | struct snd_es18xx *chip = card->private_data; | ||
1769 | |||
1768 | release_and_free_resource(chip->res_port); | 1770 | release_and_free_resource(chip->res_port); |
1769 | release_and_free_resource(chip->res_ctrl_port); | 1771 | release_and_free_resource(chip->res_ctrl_port); |
1770 | release_and_free_resource(chip->res_mpu_port); | 1772 | release_and_free_resource(chip->res_mpu_port); |
1771 | if (chip->irq >= 0) | 1773 | if (chip->irq >= 0) |
1772 | free_irq(chip->irq, (void *) chip); | 1774 | free_irq(chip->irq, (void *) card); |
1773 | if (chip->dma1 >= 0) { | 1775 | if (chip->dma1 >= 0) { |
1774 | disable_dma(chip->dma1); | 1776 | disable_dma(chip->dma1); |
1775 | free_dma(chip->dma1); | 1777 | free_dma(chip->dma1); |
@@ -1778,37 +1780,29 @@ static int snd_es18xx_free(struct snd_es18xx *chip) | |||
1778 | disable_dma(chip->dma2); | 1780 | disable_dma(chip->dma2); |
1779 | free_dma(chip->dma2); | 1781 | free_dma(chip->dma2); |
1780 | } | 1782 | } |
1781 | kfree(chip); | ||
1782 | return 0; | 1783 | return 0; |
1783 | } | 1784 | } |
1784 | 1785 | ||
1785 | static int snd_es18xx_dev_free(struct snd_device *device) | 1786 | static int snd_es18xx_dev_free(struct snd_device *device) |
1786 | { | 1787 | { |
1787 | struct snd_es18xx *chip = device->device_data; | 1788 | return snd_es18xx_free(device->card); |
1788 | return snd_es18xx_free(chip); | ||
1789 | } | 1789 | } |
1790 | 1790 | ||
1791 | static int __devinit snd_es18xx_new_device(struct snd_card *card, | 1791 | static int __devinit snd_es18xx_new_device(struct snd_card *card, |
1792 | unsigned long port, | 1792 | unsigned long port, |
1793 | unsigned long mpu_port, | 1793 | unsigned long mpu_port, |
1794 | unsigned long fm_port, | 1794 | unsigned long fm_port, |
1795 | int irq, int dma1, int dma2, | 1795 | int irq, int dma1, int dma2) |
1796 | struct snd_es18xx ** rchip) | ||
1797 | { | 1796 | { |
1798 | struct snd_es18xx *chip; | 1797 | struct snd_es18xx *chip = card->private_data; |
1799 | static struct snd_device_ops ops = { | 1798 | static struct snd_device_ops ops = { |
1800 | .dev_free = snd_es18xx_dev_free, | 1799 | .dev_free = snd_es18xx_dev_free, |
1801 | }; | 1800 | }; |
1802 | int err; | 1801 | int err; |
1803 | 1802 | ||
1804 | *rchip = NULL; | ||
1805 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); | ||
1806 | if (chip == NULL) | ||
1807 | return -ENOMEM; | ||
1808 | spin_lock_init(&chip->reg_lock); | 1803 | spin_lock_init(&chip->reg_lock); |
1809 | spin_lock_init(&chip->mixer_lock); | 1804 | spin_lock_init(&chip->mixer_lock); |
1810 | spin_lock_init(&chip->ctrl_lock); | 1805 | spin_lock_init(&chip->ctrl_lock); |
1811 | chip->card = card; | ||
1812 | chip->port = port; | 1806 | chip->port = port; |
1813 | chip->mpu_port = mpu_port; | 1807 | chip->mpu_port = mpu_port; |
1814 | chip->fm_port = fm_port; | 1808 | chip->fm_port = fm_port; |
@@ -1818,53 +1812,53 @@ static int __devinit snd_es18xx_new_device(struct snd_card *card, | |||
1818 | chip->audio2_vol = 0x00; | 1812 | chip->audio2_vol = 0x00; |
1819 | chip->active = 0; | 1813 | chip->active = 0; |
1820 | 1814 | ||
1821 | if ((chip->res_port = request_region(port, 16, "ES18xx")) == NULL) { | 1815 | chip->res_port = request_region(port, 16, "ES18xx"); |
1822 | snd_es18xx_free(chip); | 1816 | if (chip->res_port == NULL) { |
1817 | snd_es18xx_free(card); | ||
1823 | snd_printk(KERN_ERR PFX "unable to grap ports 0x%lx-0x%lx\n", port, port + 16 - 1); | 1818 | snd_printk(KERN_ERR PFX "unable to grap ports 0x%lx-0x%lx\n", port, port + 16 - 1); |
1824 | return -EBUSY; | 1819 | return -EBUSY; |
1825 | } | 1820 | } |
1826 | 1821 | ||
1827 | if (request_irq(irq, snd_es18xx_interrupt, IRQF_DISABLED, "ES18xx", (void *) chip)) { | 1822 | if (request_irq(irq, snd_es18xx_interrupt, IRQF_DISABLED, "ES18xx", |
1828 | snd_es18xx_free(chip); | 1823 | (void *) card)) { |
1824 | snd_es18xx_free(card); | ||
1829 | snd_printk(KERN_ERR PFX "unable to grap IRQ %d\n", irq); | 1825 | snd_printk(KERN_ERR PFX "unable to grap IRQ %d\n", irq); |
1830 | return -EBUSY; | 1826 | return -EBUSY; |
1831 | } | 1827 | } |
1832 | chip->irq = irq; | 1828 | chip->irq = irq; |
1833 | 1829 | ||
1834 | if (request_dma(dma1, "ES18xx DMA 1")) { | 1830 | if (request_dma(dma1, "ES18xx DMA 1")) { |
1835 | snd_es18xx_free(chip); | 1831 | snd_es18xx_free(card); |
1836 | snd_printk(KERN_ERR PFX "unable to grap DMA1 %d\n", dma1); | 1832 | snd_printk(KERN_ERR PFX "unable to grap DMA1 %d\n", dma1); |
1837 | return -EBUSY; | 1833 | return -EBUSY; |
1838 | } | 1834 | } |
1839 | chip->dma1 = dma1; | 1835 | chip->dma1 = dma1; |
1840 | 1836 | ||
1841 | if (dma2 != dma1 && request_dma(dma2, "ES18xx DMA 2")) { | 1837 | if (dma2 != dma1 && request_dma(dma2, "ES18xx DMA 2")) { |
1842 | snd_es18xx_free(chip); | 1838 | snd_es18xx_free(card); |
1843 | snd_printk(KERN_ERR PFX "unable to grap DMA2 %d\n", dma2); | 1839 | snd_printk(KERN_ERR PFX "unable to grap DMA2 %d\n", dma2); |
1844 | return -EBUSY; | 1840 | return -EBUSY; |
1845 | } | 1841 | } |
1846 | chip->dma2 = dma2; | 1842 | chip->dma2 = dma2; |
1847 | 1843 | ||
1848 | if (snd_es18xx_probe(chip) < 0) { | 1844 | if (snd_es18xx_probe(chip) < 0) { |
1849 | snd_es18xx_free(chip); | 1845 | snd_es18xx_free(card); |
1850 | return -ENODEV; | 1846 | return -ENODEV; |
1851 | } | 1847 | } |
1852 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops)) < 0) { | 1848 | err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, NULL, &ops); |
1853 | snd_es18xx_free(chip); | 1849 | if (err < 0) { |
1850 | snd_es18xx_free(card); | ||
1854 | return err; | 1851 | return err; |
1855 | } | 1852 | } |
1856 | *rchip = chip; | ||
1857 | return 0; | 1853 | return 0; |
1858 | } | 1854 | } |
1859 | 1855 | ||
1860 | static int __devinit snd_es18xx_mixer(struct snd_es18xx *chip) | 1856 | static int __devinit snd_es18xx_mixer(struct snd_card *card) |
1861 | { | 1857 | { |
1862 | struct snd_card *card; | 1858 | struct snd_es18xx *chip = card->private_data; |
1863 | int err; | 1859 | int err; |
1864 | unsigned int idx; | 1860 | unsigned int idx; |
1865 | 1861 | ||
1866 | card = chip->card; | ||
1867 | |||
1868 | strcpy(card->mixername, chip->pcm->name); | 1862 | strcpy(card->mixername, chip->pcm->name); |
1869 | 1863 | ||
1870 | for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_base_controls); idx++) { | 1864 | for (idx = 0; idx < ARRAY_SIZE(snd_es18xx_base_controls); idx++) { |
@@ -2063,11 +2057,11 @@ static int __devinit snd_audiodrive_pnp_init_main(int dev, struct pnp_dev *pdev) | |||
2063 | return 0; | 2057 | return 0; |
2064 | } | 2058 | } |
2065 | 2059 | ||
2066 | static int __devinit snd_audiodrive_pnp(int dev, struct snd_audiodrive *acard, | 2060 | static int __devinit snd_audiodrive_pnp(int dev, struct snd_es18xx *chip, |
2067 | struct pnp_dev *pdev) | 2061 | struct pnp_dev *pdev) |
2068 | { | 2062 | { |
2069 | acard->dev = pdev; | 2063 | chip->dev = pdev; |
2070 | if (snd_audiodrive_pnp_init_main(dev, acard->dev) < 0) | 2064 | if (snd_audiodrive_pnp_init_main(dev, chip->dev) < 0) |
2071 | return -EBUSY; | 2065 | return -EBUSY; |
2072 | return 0; | 2066 | return 0; |
2073 | } | 2067 | } |
@@ -2093,26 +2087,26 @@ static struct pnp_card_device_id snd_audiodrive_pnpids[] = { | |||
2093 | 2087 | ||
2094 | MODULE_DEVICE_TABLE(pnp_card, snd_audiodrive_pnpids); | 2088 | MODULE_DEVICE_TABLE(pnp_card, snd_audiodrive_pnpids); |
2095 | 2089 | ||
2096 | static int __devinit snd_audiodrive_pnpc(int dev, struct snd_audiodrive *acard, | 2090 | static int __devinit snd_audiodrive_pnpc(int dev, struct snd_es18xx *chip, |
2097 | struct pnp_card_link *card, | 2091 | struct pnp_card_link *card, |
2098 | const struct pnp_card_device_id *id) | 2092 | const struct pnp_card_device_id *id) |
2099 | { | 2093 | { |
2100 | acard->dev = pnp_request_card_device(card, id->devs[0].id, NULL); | 2094 | chip->dev = pnp_request_card_device(card, id->devs[0].id, NULL); |
2101 | if (acard->dev == NULL) | 2095 | if (chip->dev == NULL) |
2102 | return -EBUSY; | 2096 | return -EBUSY; |
2103 | 2097 | ||
2104 | acard->devc = pnp_request_card_device(card, id->devs[1].id, NULL); | 2098 | chip->devc = pnp_request_card_device(card, id->devs[1].id, NULL); |
2105 | if (acard->devc == NULL) | 2099 | if (chip->devc == NULL) |
2106 | return -EBUSY; | 2100 | return -EBUSY; |
2107 | 2101 | ||
2108 | /* Control port initialization */ | 2102 | /* Control port initialization */ |
2109 | if (pnp_activate_dev(acard->devc) < 0) { | 2103 | if (pnp_activate_dev(chip->devc) < 0) { |
2110 | snd_printk(KERN_ERR PFX "PnP control configure failure (out of resources?)\n"); | 2104 | snd_printk(KERN_ERR PFX "PnP control configure failure (out of resources?)\n"); |
2111 | return -EAGAIN; | 2105 | return -EAGAIN; |
2112 | } | 2106 | } |
2113 | snd_printdd("pnp: port=0x%llx\n", | 2107 | snd_printdd("pnp: port=0x%llx\n", |
2114 | (unsigned long long)pnp_port_start(acard->devc, 0)); | 2108 | (unsigned long long)pnp_port_start(chip->devc, 0)); |
2115 | if (snd_audiodrive_pnp_init_main(dev, acard->dev) < 0) | 2109 | if (snd_audiodrive_pnp_init_main(dev, chip->dev) < 0) |
2116 | return -EBUSY; | 2110 | return -EBUSY; |
2117 | 2111 | ||
2118 | return 0; | 2112 | return 0; |
@@ -2128,24 +2122,20 @@ static int __devinit snd_audiodrive_pnpc(int dev, struct snd_audiodrive *acard, | |||
2128 | static int snd_es18xx_card_new(int dev, struct snd_card **cardp) | 2122 | static int snd_es18xx_card_new(int dev, struct snd_card **cardp) |
2129 | { | 2123 | { |
2130 | return snd_card_create(index[dev], id[dev], THIS_MODULE, | 2124 | return snd_card_create(index[dev], id[dev], THIS_MODULE, |
2131 | sizeof(struct snd_audiodrive), cardp); | 2125 | sizeof(struct snd_es18xx), cardp); |
2132 | } | 2126 | } |
2133 | 2127 | ||
2134 | static int __devinit snd_audiodrive_probe(struct snd_card *card, int dev) | 2128 | static int __devinit snd_audiodrive_probe(struct snd_card *card, int dev) |
2135 | { | 2129 | { |
2136 | struct snd_audiodrive *acard = card->private_data; | 2130 | struct snd_es18xx *chip = card->private_data; |
2137 | struct snd_es18xx *chip; | ||
2138 | struct snd_opl3 *opl3; | 2131 | struct snd_opl3 *opl3; |
2139 | int err; | 2132 | int err; |
2140 | 2133 | ||
2141 | if ((err = snd_es18xx_new_device(card, | 2134 | err = snd_es18xx_new_device(card, |
2142 | port[dev], | 2135 | port[dev], mpu_port[dev], fm_port[dev], |
2143 | mpu_port[dev], | 2136 | irq[dev], dma1[dev], dma2[dev]); |
2144 | fm_port[dev], | 2137 | if (err < 0) |
2145 | irq[dev], dma1[dev], dma2[dev], | ||
2146 | &chip)) < 0) | ||
2147 | return err; | 2138 | return err; |
2148 | acard->chip = chip; | ||
2149 | 2139 | ||
2150 | sprintf(card->driver, "ES%x", chip->version); | 2140 | sprintf(card->driver, "ES%x", chip->version); |
2151 | 2141 | ||
@@ -2161,10 +2151,12 @@ static int __devinit snd_audiodrive_probe(struct snd_card *card, int dev) | |||
2161 | chip->port, | 2151 | chip->port, |
2162 | irq[dev], dma1[dev]); | 2152 | irq[dev], dma1[dev]); |
2163 | 2153 | ||
2164 | if ((err = snd_es18xx_pcm(chip, 0, NULL)) < 0) | 2154 | err = snd_es18xx_pcm(card, 0, NULL); |
2155 | if (err < 0) | ||
2165 | return err; | 2156 | return err; |
2166 | 2157 | ||
2167 | if ((err = snd_es18xx_mixer(chip)) < 0) | 2158 | err = snd_es18xx_mixer(card); |
2159 | if (err < 0) | ||
2168 | return err; | 2160 | return err; |
2169 | 2161 | ||
2170 | if (fm_port[dev] > 0 && fm_port[dev] != SNDRV_AUTO_PORT) { | 2162 | if (fm_port[dev] > 0 && fm_port[dev] != SNDRV_AUTO_PORT) { |
diff --git a/sound/isa/sb/sb_mixer.c b/sound/isa/sb/sb_mixer.c index 475220bbcc96..318ff0c823e7 100644 --- a/sound/isa/sb/sb_mixer.c +++ b/sound/isa/sb/sb_mixer.c | |||
@@ -631,7 +631,7 @@ static struct sbmix_elem snd_sb16_ctl_mic_play_switch = | |||
631 | static struct sbmix_elem snd_sb16_ctl_mic_play_vol = | 631 | static struct sbmix_elem snd_sb16_ctl_mic_play_vol = |
632 | SB_SINGLE("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31); | 632 | SB_SINGLE("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31); |
633 | static struct sbmix_elem snd_sb16_ctl_pc_speaker_vol = | 633 | static struct sbmix_elem snd_sb16_ctl_pc_speaker_vol = |
634 | SB_SINGLE("PC Speaker Volume", SB_DSP4_SPEAKER_DEV, 6, 3); | 634 | SB_SINGLE("Beep Volume", SB_DSP4_SPEAKER_DEV, 6, 3); |
635 | static struct sbmix_elem snd_sb16_ctl_capture_vol = | 635 | static struct sbmix_elem snd_sb16_ctl_capture_vol = |
636 | SB_DOUBLE("Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3); | 636 | SB_DOUBLE("Capture Volume", SB_DSP4_IGAIN_DEV, (SB_DSP4_IGAIN_DEV + 1), 6, 6, 3); |
637 | static struct sbmix_elem snd_sb16_ctl_play_vol = | 637 | static struct sbmix_elem snd_sb16_ctl_play_vol = |
@@ -689,7 +689,7 @@ static struct sbmix_elem snd_dt019x_ctl_cd_play_vol = | |||
689 | static struct sbmix_elem snd_dt019x_ctl_mic_play_vol = | 689 | static struct sbmix_elem snd_dt019x_ctl_mic_play_vol = |
690 | SB_SINGLE("Mic Playback Volume", SB_DT019X_MIC_DEV, 4, 7); | 690 | SB_SINGLE("Mic Playback Volume", SB_DT019X_MIC_DEV, 4, 7); |
691 | static struct sbmix_elem snd_dt019x_ctl_pc_speaker_vol = | 691 | static struct sbmix_elem snd_dt019x_ctl_pc_speaker_vol = |
692 | SB_SINGLE("PC Speaker Volume", SB_DT019X_SPKR_DEV, 0, 7); | 692 | SB_SINGLE("Beep Volume", SB_DT019X_SPKR_DEV, 0, 7); |
693 | static struct sbmix_elem snd_dt019x_ctl_line_play_vol = | 693 | static struct sbmix_elem snd_dt019x_ctl_line_play_vol = |
694 | SB_DOUBLE("Line Playback Volume", SB_DT019X_LINE_DEV, SB_DT019X_LINE_DEV, 4,0, 15); | 694 | SB_DOUBLE("Line Playback Volume", SB_DT019X_LINE_DEV, SB_DT019X_LINE_DEV, 4,0, 15); |
695 | static struct sbmix_elem snd_dt019x_ctl_pcm_play_switch = | 695 | static struct sbmix_elem snd_dt019x_ctl_pcm_play_switch = |
diff --git a/sound/isa/sscape.c b/sound/isa/sscape.c index 66187122377c..e2d5d2d3ed96 100644 --- a/sound/isa/sscape.c +++ b/sound/isa/sscape.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Low-level ALSA driver for the ENSONIQ SoundScape PnP | 2 | * Low-level ALSA driver for the ENSONIQ SoundScape |
3 | * Copyright (c) by Chris Rankin | 3 | * Copyright (c) by Chris Rankin |
4 | * | 4 | * |
5 | * This driver was written in part using information obtained from | 5 | * This driver was written in part using information obtained from |
@@ -25,31 +25,36 @@ | |||
25 | #include <linux/err.h> | 25 | #include <linux/err.h> |
26 | #include <linux/isa.h> | 26 | #include <linux/isa.h> |
27 | #include <linux/delay.h> | 27 | #include <linux/delay.h> |
28 | #include <linux/firmware.h> | ||
28 | #include <linux/pnp.h> | 29 | #include <linux/pnp.h> |
29 | #include <linux/spinlock.h> | 30 | #include <linux/spinlock.h> |
30 | #include <linux/moduleparam.h> | 31 | #include <linux/moduleparam.h> |
31 | #include <asm/dma.h> | 32 | #include <asm/dma.h> |
32 | #include <sound/core.h> | 33 | #include <sound/core.h> |
33 | #include <sound/hwdep.h> | ||
34 | #include <sound/wss.h> | 34 | #include <sound/wss.h> |
35 | #include <sound/mpu401.h> | 35 | #include <sound/mpu401.h> |
36 | #include <sound/initval.h> | 36 | #include <sound/initval.h> |
37 | 37 | ||
38 | #include <sound/sscape_ioctl.h> | ||
39 | |||
40 | 38 | ||
41 | MODULE_AUTHOR("Chris Rankin"); | 39 | MODULE_AUTHOR("Chris Rankin"); |
42 | MODULE_DESCRIPTION("ENSONIQ SoundScape PnP driver"); | 40 | MODULE_DESCRIPTION("ENSONIQ SoundScape driver"); |
43 | MODULE_LICENSE("GPL"); | 41 | MODULE_LICENSE("GPL"); |
44 | 42 | MODULE_FIRMWARE("sndscape.co0"); | |
45 | static int index[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IDX; | 43 | MODULE_FIRMWARE("sndscape.co1"); |
46 | static char* id[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_STR; | 44 | MODULE_FIRMWARE("sndscape.co2"); |
47 | static long port[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_PORT; | 45 | MODULE_FIRMWARE("sndscape.co3"); |
48 | static long wss_port[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_PORT; | 46 | MODULE_FIRMWARE("sndscape.co4"); |
49 | static int irq[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IRQ; | 47 | MODULE_FIRMWARE("scope.cod"); |
50 | static int mpu_irq[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_IRQ; | 48 | |
51 | static int dma[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_DMA; | 49 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; |
52 | static int dma2[SNDRV_CARDS] __devinitdata = SNDRV_DEFAULT_DMA; | 50 | static char* id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; |
51 | static long port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; | ||
52 | static long wss_port[SNDRV_CARDS] = SNDRV_DEFAULT_PORT; | ||
53 | static int irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; | ||
54 | static int mpu_irq[SNDRV_CARDS] = SNDRV_DEFAULT_IRQ; | ||
55 | static int dma[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; | ||
56 | static int dma2[SNDRV_CARDS] = SNDRV_DEFAULT_DMA; | ||
57 | static bool joystick[SNDRV_CARDS]; | ||
53 | 58 | ||
54 | module_param_array(index, int, NULL, 0444); | 59 | module_param_array(index, int, NULL, 0444); |
55 | MODULE_PARM_DESC(index, "Index number for SoundScape soundcard"); | 60 | MODULE_PARM_DESC(index, "Index number for SoundScape soundcard"); |
@@ -75,6 +80,9 @@ MODULE_PARM_DESC(dma, "DMA # for SoundScape driver."); | |||
75 | module_param_array(dma2, int, NULL, 0444); | 80 | module_param_array(dma2, int, NULL, 0444); |
76 | MODULE_PARM_DESC(dma2, "DMA2 # for SoundScape driver."); | 81 | MODULE_PARM_DESC(dma2, "DMA2 # for SoundScape driver."); |
77 | 82 | ||
83 | module_param_array(joystick, bool, NULL, 0444); | ||
84 | MODULE_PARM_DESC(joystick, "Enable gameport."); | ||
85 | |||
78 | #ifdef CONFIG_PNP | 86 | #ifdef CONFIG_PNP |
79 | static int isa_registered; | 87 | static int isa_registered; |
80 | static int pnp_registered; | 88 | static int pnp_registered; |
@@ -101,14 +109,14 @@ MODULE_DEVICE_TABLE(pnp_card, sscape_pnpids); | |||
101 | #define RX_READY 0x01 | 109 | #define RX_READY 0x01 |
102 | #define TX_READY 0x02 | 110 | #define TX_READY 0x02 |
103 | 111 | ||
104 | #define CMD_ACK 0x80 | 112 | #define CMD_ACK 0x80 |
105 | #define CMD_SET_MIDI_VOL 0x84 | 113 | #define CMD_SET_MIDI_VOL 0x84 |
106 | #define CMD_GET_MIDI_VOL 0x85 | 114 | #define CMD_GET_MIDI_VOL 0x85 |
107 | #define CMD_XXX_MIDI_VOL 0x86 | 115 | #define CMD_XXX_MIDI_VOL 0x86 |
108 | #define CMD_SET_EXTMIDI 0x8a | 116 | #define CMD_SET_EXTMIDI 0x8a |
109 | #define CMD_GET_EXTMIDI 0x8b | 117 | #define CMD_GET_EXTMIDI 0x8b |
110 | #define CMD_SET_MT32 0x8c | 118 | #define CMD_SET_MT32 0x8c |
111 | #define CMD_GET_MT32 0x8d | 119 | #define CMD_GET_MT32 0x8d |
112 | 120 | ||
113 | enum GA_REG { | 121 | enum GA_REG { |
114 | GA_INTSTAT_REG = 0, | 122 | GA_INTSTAT_REG = 0, |
@@ -127,7 +135,8 @@ enum GA_REG { | |||
127 | 135 | ||
128 | 136 | ||
129 | enum card_type { | 137 | enum card_type { |
130 | SSCAPE, | 138 | MEDIA_FX, /* Sequoia S-1000 */ |
139 | SSCAPE, /* Sequoia S-2000 */ | ||
131 | SSCAPE_PNP, | 140 | SSCAPE_PNP, |
132 | SSCAPE_VIVO, | 141 | SSCAPE_VIVO, |
133 | }; | 142 | }; |
@@ -140,16 +149,7 @@ struct soundscape { | |||
140 | struct resource *io_res; | 149 | struct resource *io_res; |
141 | struct resource *wss_res; | 150 | struct resource *wss_res; |
142 | struct snd_wss *chip; | 151 | struct snd_wss *chip; |
143 | struct snd_mpu401 *mpu; | ||
144 | struct snd_hwdep *hw; | ||
145 | 152 | ||
146 | /* | ||
147 | * The MIDI device won't work until we've loaded | ||
148 | * its firmware via a hardware-dependent device IOCTL | ||
149 | */ | ||
150 | spinlock_t fwlock; | ||
151 | int hw_in_use; | ||
152 | unsigned long midi_usage; | ||
153 | unsigned char midi_vol; | 153 | unsigned char midi_vol; |
154 | }; | 154 | }; |
155 | 155 | ||
@@ -161,28 +161,21 @@ static inline struct soundscape *get_card_soundscape(struct snd_card *c) | |||
161 | return (struct soundscape *) (c->private_data); | 161 | return (struct soundscape *) (c->private_data); |
162 | } | 162 | } |
163 | 163 | ||
164 | static inline struct soundscape *get_mpu401_soundscape(struct snd_mpu401 * mpu) | ||
165 | { | ||
166 | return (struct soundscape *) (mpu->private_data); | ||
167 | } | ||
168 | |||
169 | static inline struct soundscape *get_hwdep_soundscape(struct snd_hwdep * hw) | ||
170 | { | ||
171 | return (struct soundscape *) (hw->private_data); | ||
172 | } | ||
173 | |||
174 | |||
175 | /* | 164 | /* |
176 | * Allocates some kernel memory that we can use for DMA. | 165 | * Allocates some kernel memory that we can use for DMA. |
177 | * I think this means that the memory has to map to | 166 | * I think this means that the memory has to map to |
178 | * contiguous pages of physical memory. | 167 | * contiguous pages of physical memory. |
179 | */ | 168 | */ |
180 | static struct snd_dma_buffer *get_dmabuf(struct snd_dma_buffer *buf, unsigned long size) | 169 | static struct snd_dma_buffer *get_dmabuf(struct snd_dma_buffer *buf, |
170 | unsigned long size) | ||
181 | { | 171 | { |
182 | if (buf) { | 172 | if (buf) { |
183 | if (snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV, snd_dma_isa_data(), | 173 | if (snd_dma_alloc_pages_fallback(SNDRV_DMA_TYPE_DEV, |
174 | snd_dma_isa_data(), | ||
184 | size, buf) < 0) { | 175 | size, buf) < 0) { |
185 | snd_printk(KERN_ERR "sscape: Failed to allocate %lu bytes for DMA\n", size); | 176 | snd_printk(KERN_ERR "sscape: Failed to allocate " |
177 | "%lu bytes for DMA\n", | ||
178 | size); | ||
186 | return NULL; | 179 | return NULL; |
187 | } | 180 | } |
188 | } | 181 | } |
@@ -199,13 +192,13 @@ static void free_dmabuf(struct snd_dma_buffer *buf) | |||
199 | snd_dma_free_pages(buf); | 192 | snd_dma_free_pages(buf); |
200 | } | 193 | } |
201 | 194 | ||
202 | |||
203 | /* | 195 | /* |
204 | * This function writes to the SoundScape's control registers, | 196 | * This function writes to the SoundScape's control registers, |
205 | * but doesn't do any locking. It's up to the caller to do that. | 197 | * but doesn't do any locking. It's up to the caller to do that. |
206 | * This is why this function is "unsafe" ... | 198 | * This is why this function is "unsafe" ... |
207 | */ | 199 | */ |
208 | static inline void sscape_write_unsafe(unsigned io_base, enum GA_REG reg, unsigned char val) | 200 | static inline void sscape_write_unsafe(unsigned io_base, enum GA_REG reg, |
201 | unsigned char val) | ||
209 | { | 202 | { |
210 | outb(reg, ODIE_ADDR_IO(io_base)); | 203 | outb(reg, ODIE_ADDR_IO(io_base)); |
211 | outb(val, ODIE_DATA_IO(io_base)); | 204 | outb(val, ODIE_DATA_IO(io_base)); |
@@ -215,7 +208,8 @@ static inline void sscape_write_unsafe(unsigned io_base, enum GA_REG reg, unsign | |||
215 | * Write to the SoundScape's control registers, and do the | 208 | * Write to the SoundScape's control registers, and do the |
216 | * necessary locking ... | 209 | * necessary locking ... |
217 | */ | 210 | */ |
218 | static void sscape_write(struct soundscape *s, enum GA_REG reg, unsigned char val) | 211 | static void sscape_write(struct soundscape *s, enum GA_REG reg, |
212 | unsigned char val) | ||
219 | { | 213 | { |
220 | unsigned long flags; | 214 | unsigned long flags; |
221 | 215 | ||
@@ -228,7 +222,8 @@ static void sscape_write(struct soundscape *s, enum GA_REG reg, unsigned char va | |||
228 | * Read from the SoundScape's control registers, but leave any | 222 | * Read from the SoundScape's control registers, but leave any |
229 | * locking to the caller. This is why the function is "unsafe" ... | 223 | * locking to the caller. This is why the function is "unsafe" ... |
230 | */ | 224 | */ |
231 | static inline unsigned char sscape_read_unsafe(unsigned io_base, enum GA_REG reg) | 225 | static inline unsigned char sscape_read_unsafe(unsigned io_base, |
226 | enum GA_REG reg) | ||
232 | { | 227 | { |
233 | outb(reg, ODIE_ADDR_IO(io_base)); | 228 | outb(reg, ODIE_ADDR_IO(io_base)); |
234 | return inb(ODIE_DATA_IO(io_base)); | 229 | return inb(ODIE_DATA_IO(io_base)); |
@@ -257,9 +252,8 @@ static inline void set_midi_mode_unsafe(unsigned io_base) | |||
257 | static inline int host_read_unsafe(unsigned io_base) | 252 | static inline int host_read_unsafe(unsigned io_base) |
258 | { | 253 | { |
259 | int data = -1; | 254 | int data = -1; |
260 | if ((inb(HOST_CTRL_IO(io_base)) & RX_READY) != 0) { | 255 | if ((inb(HOST_CTRL_IO(io_base)) & RX_READY) != 0) |
261 | data = inb(HOST_DATA_IO(io_base)); | 256 | data = inb(HOST_DATA_IO(io_base)); |
262 | } | ||
263 | 257 | ||
264 | return data; | 258 | return data; |
265 | } | 259 | } |
@@ -301,7 +295,7 @@ static inline int host_write_unsafe(unsigned io_base, unsigned char data) | |||
301 | * Also leaves all locking-issues to the caller ... | 295 | * Also leaves all locking-issues to the caller ... |
302 | */ | 296 | */ |
303 | static int host_write_ctrl_unsafe(unsigned io_base, unsigned char data, | 297 | static int host_write_ctrl_unsafe(unsigned io_base, unsigned char data, |
304 | unsigned timeout) | 298 | unsigned timeout) |
305 | { | 299 | { |
306 | int err; | 300 | int err; |
307 | 301 | ||
@@ -320,7 +314,7 @@ static int host_write_ctrl_unsafe(unsigned io_base, unsigned char data, | |||
320 | * | 314 | * |
321 | * NOTE: This check is based upon observation, not documentation. | 315 | * NOTE: This check is based upon observation, not documentation. |
322 | */ | 316 | */ |
323 | static inline int verify_mpu401(const struct snd_mpu401 * mpu) | 317 | static inline int verify_mpu401(const struct snd_mpu401 *mpu) |
324 | { | 318 | { |
325 | return ((inb(MPU401C(mpu)) & 0xc0) == 0x80); | 319 | return ((inb(MPU401C(mpu)) & 0xc0) == 0x80); |
326 | } | 320 | } |
@@ -328,7 +322,7 @@ static inline int verify_mpu401(const struct snd_mpu401 * mpu) | |||
328 | /* | 322 | /* |
329 | * This is apparently the standard way to initailise an MPU-401 | 323 | * This is apparently the standard way to initailise an MPU-401 |
330 | */ | 324 | */ |
331 | static inline void initialise_mpu401(const struct snd_mpu401 * mpu) | 325 | static inline void initialise_mpu401(const struct snd_mpu401 *mpu) |
332 | { | 326 | { |
333 | outb(0, MPU401D(mpu)); | 327 | outb(0, MPU401D(mpu)); |
334 | } | 328 | } |
@@ -338,9 +332,10 @@ static inline void initialise_mpu401(const struct snd_mpu401 * mpu) | |||
338 | * The AD1845 detection fails if we *don't* do this, so I | 332 | * The AD1845 detection fails if we *don't* do this, so I |
339 | * think that this is a good idea ... | 333 | * think that this is a good idea ... |
340 | */ | 334 | */ |
341 | static inline void activate_ad1845_unsafe(unsigned io_base) | 335 | static void activate_ad1845_unsafe(unsigned io_base) |
342 | { | 336 | { |
343 | sscape_write_unsafe(io_base, GA_HMCTL_REG, (sscape_read_unsafe(io_base, GA_HMCTL_REG) & 0xcf) | 0x10); | 337 | unsigned char val = sscape_read_unsafe(io_base, GA_HMCTL_REG); |
338 | sscape_write_unsafe(io_base, GA_HMCTL_REG, (val & 0xcf) | 0x10); | ||
344 | sscape_write_unsafe(io_base, GA_CDCFG_REG, 0x80); | 339 | sscape_write_unsafe(io_base, GA_CDCFG_REG, 0x80); |
345 | } | 340 | } |
346 | 341 | ||
@@ -359,24 +354,27 @@ static void soundscape_free(struct snd_card *c) | |||
359 | * Tell the SoundScape to begin a DMA tranfer using the given channel. | 354 | * Tell the SoundScape to begin a DMA tranfer using the given channel. |
360 | * All locking issues are left to the caller. | 355 | * All locking issues are left to the caller. |
361 | */ | 356 | */ |
362 | static inline void sscape_start_dma_unsafe(unsigned io_base, enum GA_REG reg) | 357 | static void sscape_start_dma_unsafe(unsigned io_base, enum GA_REG reg) |
363 | { | 358 | { |
364 | sscape_write_unsafe(io_base, reg, sscape_read_unsafe(io_base, reg) | 0x01); | 359 | sscape_write_unsafe(io_base, reg, |
365 | sscape_write_unsafe(io_base, reg, sscape_read_unsafe(io_base, reg) & 0xfe); | 360 | sscape_read_unsafe(io_base, reg) | 0x01); |
361 | sscape_write_unsafe(io_base, reg, | ||
362 | sscape_read_unsafe(io_base, reg) & 0xfe); | ||
366 | } | 363 | } |
367 | 364 | ||
368 | /* | 365 | /* |
369 | * Wait for a DMA transfer to complete. This is a "limited busy-wait", | 366 | * Wait for a DMA transfer to complete. This is a "limited busy-wait", |
370 | * and all locking issues are left to the caller. | 367 | * and all locking issues are left to the caller. |
371 | */ | 368 | */ |
372 | static int sscape_wait_dma_unsafe(unsigned io_base, enum GA_REG reg, unsigned timeout) | 369 | static int sscape_wait_dma_unsafe(unsigned io_base, enum GA_REG reg, |
370 | unsigned timeout) | ||
373 | { | 371 | { |
374 | while (!(sscape_read_unsafe(io_base, reg) & 0x01) && (timeout != 0)) { | 372 | while (!(sscape_read_unsafe(io_base, reg) & 0x01) && (timeout != 0)) { |
375 | udelay(100); | 373 | udelay(100); |
376 | --timeout; | 374 | --timeout; |
377 | } /* while */ | 375 | } /* while */ |
378 | 376 | ||
379 | return (sscape_read_unsafe(io_base, reg) & 0x01); | 377 | return sscape_read_unsafe(io_base, reg) & 0x01; |
380 | } | 378 | } |
381 | 379 | ||
382 | /* | 380 | /* |
@@ -392,12 +390,12 @@ static int obp_startup_ack(struct soundscape *s, unsigned timeout) | |||
392 | 390 | ||
393 | do { | 391 | do { |
394 | unsigned long flags; | 392 | unsigned long flags; |
395 | unsigned char x; | 393 | int x; |
396 | 394 | ||
397 | spin_lock_irqsave(&s->lock, flags); | 395 | spin_lock_irqsave(&s->lock, flags); |
398 | x = inb(HOST_DATA_IO(s->io_base)); | 396 | x = host_read_unsafe(s->io_base); |
399 | spin_unlock_irqrestore(&s->lock, flags); | 397 | spin_unlock_irqrestore(&s->lock, flags); |
400 | if ((x & 0xfe) == 0xfe) | 398 | if (x == 0xfe || x == 0xff) |
401 | return 1; | 399 | return 1; |
402 | 400 | ||
403 | msleep(10); | 401 | msleep(10); |
@@ -419,10 +417,10 @@ static int host_startup_ack(struct soundscape *s, unsigned timeout) | |||
419 | 417 | ||
420 | do { | 418 | do { |
421 | unsigned long flags; | 419 | unsigned long flags; |
422 | unsigned char x; | 420 | int x; |
423 | 421 | ||
424 | spin_lock_irqsave(&s->lock, flags); | 422 | spin_lock_irqsave(&s->lock, flags); |
425 | x = inb(HOST_DATA_IO(s->io_base)); | 423 | x = host_read_unsafe(s->io_base); |
426 | spin_unlock_irqrestore(&s->lock, flags); | 424 | spin_unlock_irqrestore(&s->lock, flags); |
427 | if (x == 0xfe) | 425 | if (x == 0xfe) |
428 | return 1; | 426 | return 1; |
@@ -436,15 +434,15 @@ static int host_startup_ack(struct soundscape *s, unsigned timeout) | |||
436 | /* | 434 | /* |
437 | * Upload a byte-stream into the SoundScape using DMA channel A. | 435 | * Upload a byte-stream into the SoundScape using DMA channel A. |
438 | */ | 436 | */ |
439 | static int upload_dma_data(struct soundscape *s, | 437 | static int upload_dma_data(struct soundscape *s, const unsigned char *data, |
440 | const unsigned char __user *data, | 438 | size_t size) |
441 | size_t size) | ||
442 | { | 439 | { |
443 | unsigned long flags; | 440 | unsigned long flags; |
444 | struct snd_dma_buffer dma; | 441 | struct snd_dma_buffer dma; |
445 | int ret; | 442 | int ret; |
443 | unsigned char val; | ||
446 | 444 | ||
447 | if (!get_dmabuf(&dma, PAGE_ALIGN(size))) | 445 | if (!get_dmabuf(&dma, PAGE_ALIGN(32 * 1024))) |
448 | return -ENOMEM; | 446 | return -ENOMEM; |
449 | 447 | ||
450 | spin_lock_irqsave(&s->lock, flags); | 448 | spin_lock_irqsave(&s->lock, flags); |
@@ -452,70 +450,57 @@ static int upload_dma_data(struct soundscape *s, | |||
452 | /* | 450 | /* |
453 | * Reset the board ... | 451 | * Reset the board ... |
454 | */ | 452 | */ |
455 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f); | 453 | val = sscape_read_unsafe(s->io_base, GA_HMCTL_REG); |
454 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, val & 0x3f); | ||
456 | 455 | ||
457 | /* | 456 | /* |
458 | * Enable the DMA channels and configure them ... | 457 | * Enable the DMA channels and configure them ... |
459 | */ | 458 | */ |
460 | sscape_write_unsafe(s->io_base, GA_DMACFG_REG, 0x50); | 459 | val = (s->chip->dma1 << 4) | DMA_8BIT; |
461 | sscape_write_unsafe(s->io_base, GA_DMAA_REG, (s->chip->dma1 << 4) | DMA_8BIT); | 460 | sscape_write_unsafe(s->io_base, GA_DMAA_REG, val); |
462 | sscape_write_unsafe(s->io_base, GA_DMAB_REG, 0x20); | 461 | sscape_write_unsafe(s->io_base, GA_DMAB_REG, 0x20); |
463 | 462 | ||
464 | /* | 463 | /* |
465 | * Take the board out of reset ... | 464 | * Take the board out of reset ... |
466 | */ | 465 | */ |
467 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) | 0x80); | 466 | val = sscape_read_unsafe(s->io_base, GA_HMCTL_REG); |
467 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, val | 0x80); | ||
468 | 468 | ||
469 | /* | 469 | /* |
470 | * Upload the user's data (firmware?) to the SoundScape | 470 | * Upload the firmware to the SoundScape |
471 | * board through the DMA channel ... | 471 | * board through the DMA channel ... |
472 | */ | 472 | */ |
473 | while (size != 0) { | 473 | while (size != 0) { |
474 | unsigned long len; | 474 | unsigned long len; |
475 | 475 | ||
476 | /* | ||
477 | * Apparently, copying to/from userspace can sleep. | ||
478 | * We are therefore forbidden from holding any | ||
479 | * spinlocks while we copy ... | ||
480 | */ | ||
481 | spin_unlock_irqrestore(&s->lock, flags); | ||
482 | |||
483 | /* | ||
484 | * Remember that the data that we want to DMA | ||
485 | * comes from USERSPACE. We have already verified | ||
486 | * the userspace pointer ... | ||
487 | */ | ||
488 | len = min(size, dma.bytes); | 476 | len = min(size, dma.bytes); |
489 | len -= __copy_from_user(dma.area, data, len); | 477 | memcpy(dma.area, data, len); |
490 | data += len; | 478 | data += len; |
491 | size -= len; | 479 | size -= len; |
492 | 480 | ||
493 | /* | ||
494 | * Grab that spinlock again, now that we've | ||
495 | * finished copying! | ||
496 | */ | ||
497 | spin_lock_irqsave(&s->lock, flags); | ||
498 | |||
499 | snd_dma_program(s->chip->dma1, dma.addr, len, DMA_MODE_WRITE); | 481 | snd_dma_program(s->chip->dma1, dma.addr, len, DMA_MODE_WRITE); |
500 | sscape_start_dma_unsafe(s->io_base, GA_DMAA_REG); | 482 | sscape_start_dma_unsafe(s->io_base, GA_DMAA_REG); |
501 | if (!sscape_wait_dma_unsafe(s->io_base, GA_DMAA_REG, 5000)) { | 483 | if (!sscape_wait_dma_unsafe(s->io_base, GA_DMAA_REG, 5000)) { |
502 | /* | 484 | /* |
503 | * Don't forget to release this spinlock we're holding ... | 485 | * Don't forget to release this spinlock we're holding |
504 | */ | 486 | */ |
505 | spin_unlock_irqrestore(&s->lock, flags); | 487 | spin_unlock_irqrestore(&s->lock, flags); |
506 | 488 | ||
507 | snd_printk(KERN_ERR "sscape: DMA upload has timed out\n"); | 489 | snd_printk(KERN_ERR |
490 | "sscape: DMA upload has timed out\n"); | ||
508 | ret = -EAGAIN; | 491 | ret = -EAGAIN; |
509 | goto _release_dma; | 492 | goto _release_dma; |
510 | } | 493 | } |
511 | } /* while */ | 494 | } /* while */ |
512 | 495 | ||
513 | set_host_mode_unsafe(s->io_base); | 496 | set_host_mode_unsafe(s->io_base); |
497 | outb(0x0, s->io_base); | ||
514 | 498 | ||
515 | /* | 499 | /* |
516 | * Boot the board ... (I think) | 500 | * Boot the board ... (I think) |
517 | */ | 501 | */ |
518 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, sscape_read_unsafe(s->io_base, GA_HMCTL_REG) | 0x40); | 502 | val = sscape_read_unsafe(s->io_base, GA_HMCTL_REG); |
503 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, val | 0x40); | ||
519 | spin_unlock_irqrestore(&s->lock, flags); | 504 | spin_unlock_irqrestore(&s->lock, flags); |
520 | 505 | ||
521 | /* | 506 | /* |
@@ -525,10 +510,12 @@ static int upload_dma_data(struct soundscape *s, | |||
525 | */ | 510 | */ |
526 | ret = 0; | 511 | ret = 0; |
527 | if (!obp_startup_ack(s, 5000)) { | 512 | if (!obp_startup_ack(s, 5000)) { |
528 | snd_printk(KERN_ERR "sscape: No response from on-board processor after upload\n"); | 513 | snd_printk(KERN_ERR "sscape: No response " |
514 | "from on-board processor after upload\n"); | ||
529 | ret = -EAGAIN; | 515 | ret = -EAGAIN; |
530 | } else if (!host_startup_ack(s, 5000)) { | 516 | } else if (!host_startup_ack(s, 5000)) { |
531 | snd_printk(KERN_ERR "sscape: SoundScape failed to initialise\n"); | 517 | snd_printk(KERN_ERR |
518 | "sscape: SoundScape failed to initialise\n"); | ||
532 | ret = -EAGAIN; | 519 | ret = -EAGAIN; |
533 | } | 520 | } |
534 | 521 | ||
@@ -536,7 +523,7 @@ _release_dma: | |||
536 | /* | 523 | /* |
537 | * NOTE!!! We are NOT holding any spinlocks at this point !!! | 524 | * NOTE!!! We are NOT holding any spinlocks at this point !!! |
538 | */ | 525 | */ |
539 | sscape_write(s, GA_DMAA_REG, (s->ic_type == IC_ODIE ? 0x70 : 0x40)); | 526 | sscape_write(s, GA_DMAA_REG, (s->ic_type == IC_OPUS ? 0x40 : 0x70)); |
540 | free_dmabuf(&dma); | 527 | free_dmabuf(&dma); |
541 | 528 | ||
542 | return ret; | 529 | return ret; |
@@ -546,167 +533,76 @@ _release_dma: | |||
546 | * Upload the bootblock(?) into the SoundScape. The only | 533 | * Upload the bootblock(?) into the SoundScape. The only |
547 | * purpose of this block of code seems to be to tell | 534 | * purpose of this block of code seems to be to tell |
548 | * us which version of the microcode we should be using. | 535 | * us which version of the microcode we should be using. |
549 | * | ||
550 | * NOTE: The boot-block data resides in USER-SPACE!!! | ||
551 | * However, we have already verified its memory | ||
552 | * addresses by the time we get here. | ||
553 | */ | 536 | */ |
554 | static int sscape_upload_bootblock(struct soundscape *sscape, struct sscape_bootblock __user *bb) | 537 | static int sscape_upload_bootblock(struct snd_card *card) |
555 | { | 538 | { |
539 | struct soundscape *sscape = get_card_soundscape(card); | ||
556 | unsigned long flags; | 540 | unsigned long flags; |
541 | const struct firmware *init_fw = NULL; | ||
557 | int data = 0; | 542 | int data = 0; |
558 | int ret; | 543 | int ret; |
559 | 544 | ||
560 | ret = upload_dma_data(sscape, bb->code, sizeof(bb->code)); | 545 | ret = request_firmware(&init_fw, "scope.cod", card->dev); |
561 | 546 | if (ret < 0) { | |
562 | spin_lock_irqsave(&sscape->lock, flags); | 547 | snd_printk(KERN_ERR "sscape: Error loading scope.cod"); |
563 | if (ret == 0) { | 548 | return ret; |
564 | data = host_read_ctrl_unsafe(sscape->io_base, 100); | ||
565 | } | ||
566 | set_midi_mode_unsafe(sscape->io_base); | ||
567 | spin_unlock_irqrestore(&sscape->lock, flags); | ||
568 | |||
569 | if (ret == 0) { | ||
570 | if (data < 0) { | ||
571 | snd_printk(KERN_ERR "sscape: timeout reading firmware version\n"); | ||
572 | ret = -EAGAIN; | ||
573 | } | ||
574 | else if (__copy_to_user(&bb->version, &data, sizeof(bb->version))) { | ||
575 | ret = -EFAULT; | ||
576 | } | ||
577 | } | 549 | } |
550 | ret = upload_dma_data(sscape, init_fw->data, init_fw->size); | ||
578 | 551 | ||
579 | return ret; | 552 | release_firmware(init_fw); |
580 | } | ||
581 | |||
582 | /* | ||
583 | * Upload the microcode into the SoundScape. The | ||
584 | * microcode is 64K of data, and if we try to copy | ||
585 | * it into a local variable then we will SMASH THE | ||
586 | * KERNEL'S STACK! We therefore leave it in USER | ||
587 | * SPACE, and save ourselves from copying it at all. | ||
588 | */ | ||
589 | static int sscape_upload_microcode(struct soundscape *sscape, | ||
590 | const struct sscape_microcode __user *mc) | ||
591 | { | ||
592 | unsigned long flags; | ||
593 | char __user *code; | ||
594 | int err; | ||
595 | 553 | ||
596 | /* | 554 | spin_lock_irqsave(&sscape->lock, flags); |
597 | * We are going to have to copy this data into a special | 555 | if (ret == 0) |
598 | * DMA-able buffer before we can upload it. We shall therefore | 556 | data = host_read_ctrl_unsafe(sscape->io_base, 100); |
599 | * just check that the data pointer is valid for now. | ||
600 | * | ||
601 | * NOTE: This buffer is 64K long! That's WAY too big to | ||
602 | * copy into a stack-temporary anyway. | ||
603 | */ | ||
604 | if ( get_user(code, &mc->code) || | ||
605 | !access_ok(VERIFY_READ, code, SSCAPE_MICROCODE_SIZE) ) | ||
606 | return -EFAULT; | ||
607 | 557 | ||
608 | if ((err = upload_dma_data(sscape, code, SSCAPE_MICROCODE_SIZE)) == 0) { | 558 | if (data & 0x10) |
609 | snd_printk(KERN_INFO "sscape: MIDI firmware loaded\n"); | 559 | sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2f); |
610 | } | ||
611 | 560 | ||
612 | spin_lock_irqsave(&sscape->lock, flags); | ||
613 | set_midi_mode_unsafe(sscape->io_base); | ||
614 | spin_unlock_irqrestore(&sscape->lock, flags); | 561 | spin_unlock_irqrestore(&sscape->lock, flags); |
615 | 562 | ||
616 | initialise_mpu401(sscape->mpu); | 563 | data &= 0xf; |
564 | if (ret == 0 && data > 7) { | ||
565 | snd_printk(KERN_ERR | ||
566 | "sscape: timeout reading firmware version\n"); | ||
567 | ret = -EAGAIN; | ||
568 | } | ||
617 | 569 | ||
618 | return err; | 570 | return (ret == 0) ? data : ret; |
619 | } | 571 | } |
620 | 572 | ||
621 | /* | 573 | /* |
622 | * Hardware-specific device functions, to implement special | 574 | * Upload the microcode into the SoundScape. |
623 | * IOCTLs for the SoundScape card. This is how we upload | ||
624 | * the microcode into the card, for example, and so we | ||
625 | * must ensure that no two processes can open this device | ||
626 | * simultaneously, and that we can't open it at all if | ||
627 | * someone is using the MIDI device. | ||
628 | */ | 575 | */ |
629 | static int sscape_hw_open(struct snd_hwdep * hw, struct file *file) | 576 | static int sscape_upload_microcode(struct snd_card *card, int version) |
630 | { | 577 | { |
631 | register struct soundscape *sscape = get_hwdep_soundscape(hw); | 578 | struct soundscape *sscape = get_card_soundscape(card); |
632 | unsigned long flags; | 579 | const struct firmware *init_fw = NULL; |
580 | char name[14]; | ||
633 | int err; | 581 | int err; |
634 | 582 | ||
635 | spin_lock_irqsave(&sscape->fwlock, flags); | 583 | snprintf(name, sizeof(name), "sndscape.co%d", version); |
636 | 584 | ||
637 | if ((sscape->midi_usage != 0) || sscape->hw_in_use) { | 585 | err = request_firmware(&init_fw, name, card->dev); |
638 | err = -EBUSY; | 586 | if (err < 0) { |
639 | } else { | 587 | snd_printk(KERN_ERR "sscape: Error loading sndscape.co%d", |
640 | sscape->hw_in_use = 1; | 588 | version); |
641 | err = 0; | 589 | return err; |
642 | } | 590 | } |
591 | err = upload_dma_data(sscape, init_fw->data, init_fw->size); | ||
592 | if (err == 0) | ||
593 | snd_printk(KERN_INFO "sscape: MIDI firmware loaded %d KBs\n", | ||
594 | init_fw->size >> 10); | ||
643 | 595 | ||
644 | spin_unlock_irqrestore(&sscape->fwlock, flags); | 596 | release_firmware(init_fw); |
645 | return err; | ||
646 | } | ||
647 | |||
648 | static int sscape_hw_release(struct snd_hwdep * hw, struct file *file) | ||
649 | { | ||
650 | register struct soundscape *sscape = get_hwdep_soundscape(hw); | ||
651 | unsigned long flags; | ||
652 | |||
653 | spin_lock_irqsave(&sscape->fwlock, flags); | ||
654 | sscape->hw_in_use = 0; | ||
655 | spin_unlock_irqrestore(&sscape->fwlock, flags); | ||
656 | return 0; | ||
657 | } | ||
658 | |||
659 | static int sscape_hw_ioctl(struct snd_hwdep * hw, struct file *file, | ||
660 | unsigned int cmd, unsigned long arg) | ||
661 | { | ||
662 | struct soundscape *sscape = get_hwdep_soundscape(hw); | ||
663 | int err = -EBUSY; | ||
664 | |||
665 | switch (cmd) { | ||
666 | case SND_SSCAPE_LOAD_BOOTB: | ||
667 | { | ||
668 | register struct sscape_bootblock __user *bb = (struct sscape_bootblock __user *) arg; | ||
669 | |||
670 | /* | ||
671 | * We are going to have to copy this data into a special | ||
672 | * DMA-able buffer before we can upload it. We shall therefore | ||
673 | * just check that the data pointer is valid for now ... | ||
674 | */ | ||
675 | if ( !access_ok(VERIFY_READ, bb->code, sizeof(bb->code)) ) | ||
676 | return -EFAULT; | ||
677 | |||
678 | /* | ||
679 | * Now check that we can write the firmware version number too... | ||
680 | */ | ||
681 | if ( !access_ok(VERIFY_WRITE, &bb->version, sizeof(bb->version)) ) | ||
682 | return -EFAULT; | ||
683 | |||
684 | err = sscape_upload_bootblock(sscape, bb); | ||
685 | } | ||
686 | break; | ||
687 | |||
688 | case SND_SSCAPE_LOAD_MCODE: | ||
689 | { | ||
690 | register const struct sscape_microcode __user *mc = (const struct sscape_microcode __user *) arg; | ||
691 | |||
692 | err = sscape_upload_microcode(sscape, mc); | ||
693 | } | ||
694 | break; | ||
695 | |||
696 | default: | ||
697 | err = -EINVAL; | ||
698 | break; | ||
699 | } /* switch */ | ||
700 | 597 | ||
701 | return err; | 598 | return err; |
702 | } | 599 | } |
703 | 600 | ||
704 | |||
705 | /* | 601 | /* |
706 | * Mixer control for the SoundScape's MIDI device. | 602 | * Mixer control for the SoundScape's MIDI device. |
707 | */ | 603 | */ |
708 | static int sscape_midi_info(struct snd_kcontrol *ctl, | 604 | static int sscape_midi_info(struct snd_kcontrol *ctl, |
709 | struct snd_ctl_elem_info *uinfo) | 605 | struct snd_ctl_elem_info *uinfo) |
710 | { | 606 | { |
711 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 607 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; |
712 | uinfo->count = 1; | 608 | uinfo->count = 1; |
@@ -716,7 +612,7 @@ static int sscape_midi_info(struct snd_kcontrol *ctl, | |||
716 | } | 612 | } |
717 | 613 | ||
718 | static int sscape_midi_get(struct snd_kcontrol *kctl, | 614 | static int sscape_midi_get(struct snd_kcontrol *kctl, |
719 | struct snd_ctl_elem_value *uctl) | 615 | struct snd_ctl_elem_value *uctl) |
720 | { | 616 | { |
721 | struct snd_wss *chip = snd_kcontrol_chip(kctl); | 617 | struct snd_wss *chip = snd_kcontrol_chip(kctl); |
722 | struct snd_card *card = chip->card; | 618 | struct snd_card *card = chip->card; |
@@ -730,16 +626,18 @@ static int sscape_midi_get(struct snd_kcontrol *kctl, | |||
730 | } | 626 | } |
731 | 627 | ||
732 | static int sscape_midi_put(struct snd_kcontrol *kctl, | 628 | static int sscape_midi_put(struct snd_kcontrol *kctl, |
733 | struct snd_ctl_elem_value *uctl) | 629 | struct snd_ctl_elem_value *uctl) |
734 | { | 630 | { |
735 | struct snd_wss *chip = snd_kcontrol_chip(kctl); | 631 | struct snd_wss *chip = snd_kcontrol_chip(kctl); |
736 | struct snd_card *card = chip->card; | 632 | struct snd_card *card = chip->card; |
737 | register struct soundscape *s = get_card_soundscape(card); | 633 | struct soundscape *s = get_card_soundscape(card); |
738 | unsigned long flags; | 634 | unsigned long flags; |
739 | int change; | 635 | int change; |
636 | unsigned char new_val; | ||
740 | 637 | ||
741 | spin_lock_irqsave(&s->lock, flags); | 638 | spin_lock_irqsave(&s->lock, flags); |
742 | 639 | ||
640 | new_val = uctl->value.integer.value[0] & 127; | ||
743 | /* | 641 | /* |
744 | * We need to put the board into HOST mode before we | 642 | * We need to put the board into HOST mode before we |
745 | * can send any volume-changing HOST commands ... | 643 | * can send any volume-changing HOST commands ... |
@@ -752,15 +650,16 @@ static int sscape_midi_put(struct snd_kcontrol *kctl, | |||
752 | * and then perform another volume-related command. Perhaps the | 650 | * and then perform another volume-related command. Perhaps the |
753 | * first command is an "open" and the second command is a "close"? | 651 | * first command is an "open" and the second command is a "close"? |
754 | */ | 652 | */ |
755 | if (s->midi_vol == ((unsigned char) uctl->value.integer. value[0] & 127)) { | 653 | if (s->midi_vol == new_val) { |
756 | change = 0; | 654 | change = 0; |
757 | goto __skip_change; | 655 | goto __skip_change; |
758 | } | 656 | } |
759 | change = (host_write_ctrl_unsafe(s->io_base, CMD_SET_MIDI_VOL, 100) | 657 | change = host_write_ctrl_unsafe(s->io_base, CMD_SET_MIDI_VOL, 100) |
760 | && host_write_ctrl_unsafe(s->io_base, ((unsigned char) uctl->value.integer. value[0]) & 127, 100) | 658 | && host_write_ctrl_unsafe(s->io_base, new_val, 100) |
761 | && host_write_ctrl_unsafe(s->io_base, CMD_XXX_MIDI_VOL, 100)); | 659 | && host_write_ctrl_unsafe(s->io_base, CMD_XXX_MIDI_VOL, 100) |
762 | s->midi_vol = (unsigned char) uctl->value.integer.value[0] & 127; | 660 | && host_write_ctrl_unsafe(s->io_base, new_val, 100); |
763 | __skip_change: | 661 | s->midi_vol = new_val; |
662 | __skip_change: | ||
764 | 663 | ||
765 | /* | 664 | /* |
766 | * Take the board out of HOST mode and back into MIDI mode ... | 665 | * Take the board out of HOST mode and back into MIDI mode ... |
@@ -784,20 +683,25 @@ static struct snd_kcontrol_new midi_mixer_ctl = { | |||
784 | * These IRQs are encoded as bit patterns so that they can be | 683 | * These IRQs are encoded as bit patterns so that they can be |
785 | * written to the control registers. | 684 | * written to the control registers. |
786 | */ | 685 | */ |
787 | static unsigned __devinit get_irq_config(int irq) | 686 | static unsigned __devinit get_irq_config(int sscape_type, int irq) |
788 | { | 687 | { |
789 | static const int valid_irq[] = { 9, 5, 7, 10 }; | 688 | static const int valid_irq[] = { 9, 5, 7, 10 }; |
689 | static const int old_irq[] = { 9, 7, 5, 15 }; | ||
790 | unsigned cfg; | 690 | unsigned cfg; |
791 | 691 | ||
792 | for (cfg = 0; cfg < ARRAY_SIZE(valid_irq); ++cfg) { | 692 | if (sscape_type == MEDIA_FX) { |
793 | if (irq == valid_irq[cfg]) | 693 | for (cfg = 0; cfg < ARRAY_SIZE(old_irq); ++cfg) |
794 | return cfg; | 694 | if (irq == old_irq[cfg]) |
795 | } /* for */ | 695 | return cfg; |
696 | } else { | ||
697 | for (cfg = 0; cfg < ARRAY_SIZE(valid_irq); ++cfg) | ||
698 | if (irq == valid_irq[cfg]) | ||
699 | return cfg; | ||
700 | } | ||
796 | 701 | ||
797 | return INVALID_IRQ; | 702 | return INVALID_IRQ; |
798 | } | 703 | } |
799 | 704 | ||
800 | |||
801 | /* | 705 | /* |
802 | * Perform certain arcane port-checks to see whether there | 706 | * Perform certain arcane port-checks to see whether there |
803 | * is a SoundScape board lurking behind the given ports. | 707 | * is a SoundScape board lurking behind the given ports. |
@@ -842,11 +746,38 @@ static int __devinit detect_sscape(struct soundscape *s, long wss_io) | |||
842 | if (s->type != SSCAPE_VIVO && (d & 0x9f) != 0x0e) | 746 | if (s->type != SSCAPE_VIVO && (d & 0x9f) != 0x0e) |
843 | goto _done; | 747 | goto _done; |
844 | 748 | ||
845 | d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f; | 749 | if (s->ic_type == IC_OPUS) |
846 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0); | 750 | activate_ad1845_unsafe(s->io_base); |
847 | 751 | ||
848 | if (s->type == SSCAPE_VIVO) | 752 | if (s->type == SSCAPE_VIVO) |
849 | wss_io += 4; | 753 | wss_io += 4; |
754 | |||
755 | d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG); | ||
756 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0); | ||
757 | |||
758 | /* wait for WSS codec */ | ||
759 | for (d = 0; d < 500; d++) { | ||
760 | if ((inb(wss_io) & 0x80) == 0) | ||
761 | break; | ||
762 | spin_unlock_irqrestore(&s->lock, flags); | ||
763 | msleep(1); | ||
764 | spin_lock_irqsave(&s->lock, flags); | ||
765 | } | ||
766 | |||
767 | if ((inb(wss_io) & 0x80) != 0) | ||
768 | goto _done; | ||
769 | |||
770 | if (inb(wss_io + 2) == 0xff) | ||
771 | goto _done; | ||
772 | |||
773 | d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG) & 0x3f; | ||
774 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d); | ||
775 | |||
776 | if ((inb(wss_io) & 0x80) != 0) | ||
777 | s->type = MEDIA_FX; | ||
778 | |||
779 | d = sscape_read_unsafe(s->io_base, GA_HMCTL_REG); | ||
780 | sscape_write_unsafe(s->io_base, GA_HMCTL_REG, d | 0xc0); | ||
850 | /* wait for WSS codec */ | 781 | /* wait for WSS codec */ |
851 | for (d = 0; d < 500; d++) { | 782 | for (d = 0; d < 500; d++) { |
852 | if ((inb(wss_io) & 0x80) == 0) | 783 | if ((inb(wss_io) & 0x80) == 0) |
@@ -855,14 +786,13 @@ static int __devinit detect_sscape(struct soundscape *s, long wss_io) | |||
855 | msleep(1); | 786 | msleep(1); |
856 | spin_lock_irqsave(&s->lock, flags); | 787 | spin_lock_irqsave(&s->lock, flags); |
857 | } | 788 | } |
858 | snd_printd(KERN_INFO "init delay = %d ms\n", d); | ||
859 | 789 | ||
860 | /* | 790 | /* |
861 | * SoundScape successfully detected! | 791 | * SoundScape successfully detected! |
862 | */ | 792 | */ |
863 | retval = 1; | 793 | retval = 1; |
864 | 794 | ||
865 | _done: | 795 | _done: |
866 | spin_unlock_irqrestore(&s->lock, flags); | 796 | spin_unlock_irqrestore(&s->lock, flags); |
867 | return retval; | 797 | return retval; |
868 | } | 798 | } |
@@ -873,63 +803,35 @@ static int __devinit detect_sscape(struct soundscape *s, long wss_io) | |||
873 | * to crash the machine. Also check that someone isn't using the hardware | 803 | * to crash the machine. Also check that someone isn't using the hardware |
874 | * IOCTL device. | 804 | * IOCTL device. |
875 | */ | 805 | */ |
876 | static int mpu401_open(struct snd_mpu401 * mpu) | 806 | static int mpu401_open(struct snd_mpu401 *mpu) |
877 | { | 807 | { |
878 | int err; | ||
879 | |||
880 | if (!verify_mpu401(mpu)) { | 808 | if (!verify_mpu401(mpu)) { |
881 | snd_printk(KERN_ERR "sscape: MIDI disabled, please load firmware\n"); | 809 | snd_printk(KERN_ERR "sscape: MIDI disabled, " |
882 | err = -ENODEV; | 810 | "please load firmware\n"); |
883 | } else { | 811 | return -ENODEV; |
884 | register struct soundscape *sscape = get_mpu401_soundscape(mpu); | ||
885 | unsigned long flags; | ||
886 | |||
887 | spin_lock_irqsave(&sscape->fwlock, flags); | ||
888 | |||
889 | if (sscape->hw_in_use || (sscape->midi_usage == ULONG_MAX)) { | ||
890 | err = -EBUSY; | ||
891 | } else { | ||
892 | ++(sscape->midi_usage); | ||
893 | err = 0; | ||
894 | } | ||
895 | |||
896 | spin_unlock_irqrestore(&sscape->fwlock, flags); | ||
897 | } | 812 | } |
898 | 813 | ||
899 | return err; | 814 | return 0; |
900 | } | ||
901 | |||
902 | static void mpu401_close(struct snd_mpu401 * mpu) | ||
903 | { | ||
904 | register struct soundscape *sscape = get_mpu401_soundscape(mpu); | ||
905 | unsigned long flags; | ||
906 | |||
907 | spin_lock_irqsave(&sscape->fwlock, flags); | ||
908 | --(sscape->midi_usage); | ||
909 | spin_unlock_irqrestore(&sscape->fwlock, flags); | ||
910 | } | 815 | } |
911 | 816 | ||
912 | /* | 817 | /* |
913 | * Initialse an MPU-401 subdevice for MIDI support on the SoundScape. | 818 | * Initialse an MPU-401 subdevice for MIDI support on the SoundScape. |
914 | */ | 819 | */ |
915 | static int __devinit create_mpu401(struct snd_card *card, int devnum, unsigned long port, int irq) | 820 | static int __devinit create_mpu401(struct snd_card *card, int devnum, |
821 | unsigned long port, int irq) | ||
916 | { | 822 | { |
917 | struct soundscape *sscape = get_card_soundscape(card); | 823 | struct soundscape *sscape = get_card_soundscape(card); |
918 | struct snd_rawmidi *rawmidi; | 824 | struct snd_rawmidi *rawmidi; |
919 | int err; | 825 | int err; |
920 | 826 | ||
921 | if ((err = snd_mpu401_uart_new(card, devnum, | 827 | err = snd_mpu401_uart_new(card, devnum, MPU401_HW_MPU401, port, |
922 | MPU401_HW_MPU401, | 828 | MPU401_INFO_INTEGRATED, irq, IRQF_DISABLED, |
923 | port, MPU401_INFO_INTEGRATED, | 829 | &rawmidi); |
924 | irq, IRQF_DISABLED, | 830 | if (err == 0) { |
925 | &rawmidi)) == 0) { | 831 | struct snd_mpu401 *mpu = rawmidi->private_data; |
926 | struct snd_mpu401 *mpu = (struct snd_mpu401 *) rawmidi->private_data; | ||
927 | mpu->open_input = mpu401_open; | 832 | mpu->open_input = mpu401_open; |
928 | mpu->open_output = mpu401_open; | 833 | mpu->open_output = mpu401_open; |
929 | mpu->close_input = mpu401_close; | ||
930 | mpu->close_output = mpu401_close; | ||
931 | mpu->private_data = sscape; | 834 | mpu->private_data = sscape; |
932 | sscape->mpu = mpu; | ||
933 | 835 | ||
934 | initialise_mpu401(mpu); | 836 | initialise_mpu401(mpu); |
935 | } | 837 | } |
@@ -950,32 +852,34 @@ static int __devinit create_ad1845(struct snd_card *card, unsigned port, | |||
950 | register struct soundscape *sscape = get_card_soundscape(card); | 852 | register struct soundscape *sscape = get_card_soundscape(card); |
951 | struct snd_wss *chip; | 853 | struct snd_wss *chip; |
952 | int err; | 854 | int err; |
855 | int codec_type = WSS_HW_DETECT; | ||
953 | 856 | ||
954 | if (sscape->type == SSCAPE_VIVO) | 857 | switch (sscape->type) { |
955 | port += 4; | 858 | case MEDIA_FX: |
859 | case SSCAPE: | ||
860 | /* | ||
861 | * There are some freak examples of early Soundscape cards | ||
862 | * with CS4231 instead of AD1848/CS4248. Unfortunately, the | ||
863 | * CS4231 works only in CS4248 compatibility mode on | ||
864 | * these cards so force it. | ||
865 | */ | ||
866 | if (sscape->ic_type != IC_OPUS) | ||
867 | codec_type = WSS_HW_AD1848; | ||
868 | break; | ||
956 | 869 | ||
957 | if (dma1 == dma2) | 870 | case SSCAPE_VIVO: |
958 | dma2 = -1; | 871 | port += 4; |
872 | break; | ||
873 | default: | ||
874 | break; | ||
875 | } | ||
959 | 876 | ||
960 | err = snd_wss_create(card, port, -1, irq, dma1, dma2, | 877 | err = snd_wss_create(card, port, -1, irq, dma1, dma2, |
961 | WSS_HW_DETECT, WSS_HWSHARE_DMA1, &chip); | 878 | codec_type, WSS_HWSHARE_DMA1, &chip); |
962 | if (!err) { | 879 | if (!err) { |
963 | unsigned long flags; | 880 | unsigned long flags; |
964 | struct snd_pcm *pcm; | 881 | struct snd_pcm *pcm; |
965 | 882 | ||
966 | /* | ||
967 | * It turns out that the PLAYBACK_ENABLE bit is set | ||
968 | * by the lowlevel driver ... | ||
969 | * | ||
970 | #define AD1845_IFACE_CONFIG \ | ||
971 | (CS4231_AUTOCALIB | CS4231_RECORD_ENABLE | CS4231_PLAYBACK_ENABLE) | ||
972 | snd_wss_mce_up(chip); | ||
973 | spin_lock_irqsave(&chip->reg_lock, flags); | ||
974 | snd_wss_out(chip, CS4231_IFACE_CTRL, AD1845_IFACE_CONFIG); | ||
975 | spin_unlock_irqrestore(&chip->reg_lock, flags); | ||
976 | snd_wss_mce_down(chip); | ||
977 | */ | ||
978 | |||
979 | if (sscape->type != SSCAPE_VIVO) { | 883 | if (sscape->type != SSCAPE_VIVO) { |
980 | /* | 884 | /* |
981 | * The input clock frequency on the SoundScape must | 885 | * The input clock frequency on the SoundScape must |
@@ -1022,17 +926,10 @@ static int __devinit create_ad1845(struct snd_card *card, unsigned port, | |||
1022 | } | 926 | } |
1023 | } | 927 | } |
1024 | 928 | ||
1025 | strcpy(card->driver, "SoundScape"); | ||
1026 | strcpy(card->shortname, pcm->name); | ||
1027 | snprintf(card->longname, sizeof(card->longname), | ||
1028 | "%s at 0x%lx, IRQ %d, DMA1 %d, DMA2 %d\n", | ||
1029 | pcm->name, chip->port, chip->irq, | ||
1030 | chip->dma1, chip->dma2); | ||
1031 | |||
1032 | sscape->chip = chip; | 929 | sscape->chip = chip; |
1033 | } | 930 | } |
1034 | 931 | ||
1035 | _error: | 932 | _error: |
1036 | return err; | 933 | return err; |
1037 | } | 934 | } |
1038 | 935 | ||
@@ -1051,21 +948,8 @@ static int __devinit create_sscape(int dev, struct snd_card *card) | |||
1051 | struct resource *wss_res; | 948 | struct resource *wss_res; |
1052 | unsigned long flags; | 949 | unsigned long flags; |
1053 | int err; | 950 | int err; |
1054 | 951 | int val; | |
1055 | /* | 952 | const char *name; |
1056 | * Check that the user didn't pass us garbage data ... | ||
1057 | */ | ||
1058 | irq_cfg = get_irq_config(irq[dev]); | ||
1059 | if (irq_cfg == INVALID_IRQ) { | ||
1060 | snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", irq[dev]); | ||
1061 | return -ENXIO; | ||
1062 | } | ||
1063 | |||
1064 | mpu_irq_cfg = get_irq_config(mpu_irq[dev]); | ||
1065 | if (mpu_irq_cfg == INVALID_IRQ) { | ||
1066 | printk(KERN_ERR "sscape: Invalid IRQ %d\n", mpu_irq[dev]); | ||
1067 | return -ENXIO; | ||
1068 | } | ||
1069 | 953 | ||
1070 | /* | 954 | /* |
1071 | * Grab IO ports that we will need to probe so that we | 955 | * Grab IO ports that we will need to probe so that we |
@@ -1098,41 +982,51 @@ static int __devinit create_sscape(int dev, struct snd_card *card) | |||
1098 | } | 982 | } |
1099 | 983 | ||
1100 | spin_lock_init(&sscape->lock); | 984 | spin_lock_init(&sscape->lock); |
1101 | spin_lock_init(&sscape->fwlock); | ||
1102 | sscape->io_res = io_res; | 985 | sscape->io_res = io_res; |
1103 | sscape->wss_res = wss_res; | 986 | sscape->wss_res = wss_res; |
1104 | sscape->io_base = port[dev]; | 987 | sscape->io_base = port[dev]; |
1105 | 988 | ||
1106 | if (!detect_sscape(sscape, wss_port[dev])) { | 989 | if (!detect_sscape(sscape, wss_port[dev])) { |
1107 | printk(KERN_ERR "sscape: hardware not detected at 0x%x\n", sscape->io_base); | 990 | printk(KERN_ERR "sscape: hardware not detected at 0x%x\n", |
991 | sscape->io_base); | ||
1108 | err = -ENODEV; | 992 | err = -ENODEV; |
1109 | goto _release_dma; | 993 | goto _release_dma; |
1110 | } | 994 | } |
1111 | 995 | ||
1112 | printk(KERN_INFO "sscape: hardware detected at 0x%x, using IRQ %d, DMA %d\n", | 996 | switch (sscape->type) { |
1113 | sscape->io_base, irq[dev], dma[dev]); | 997 | case MEDIA_FX: |
998 | name = "MediaFX/SoundFX"; | ||
999 | break; | ||
1000 | case SSCAPE: | ||
1001 | name = "Soundscape"; | ||
1002 | break; | ||
1003 | case SSCAPE_PNP: | ||
1004 | name = "Soundscape PnP"; | ||
1005 | break; | ||
1006 | case SSCAPE_VIVO: | ||
1007 | name = "Soundscape VIVO"; | ||
1008 | break; | ||
1009 | default: | ||
1010 | name = "unknown Soundscape"; | ||
1011 | break; | ||
1012 | } | ||
1114 | 1013 | ||
1115 | if (sscape->type != SSCAPE_VIVO) { | 1014 | printk(KERN_INFO "sscape: %s card detected at 0x%x, using IRQ %d, DMA %d\n", |
1116 | /* | 1015 | name, sscape->io_base, irq[dev], dma[dev]); |
1117 | * Now create the hardware-specific device so that we can | 1016 | |
1118 | * load the microcode into the on-board processor. | 1017 | /* |
1119 | * We cannot use the MPU-401 MIDI system until this firmware | 1018 | * Check that the user didn't pass us garbage data ... |
1120 | * has been loaded into the card. | 1019 | */ |
1121 | */ | 1020 | irq_cfg = get_irq_config(sscape->type, irq[dev]); |
1122 | err = snd_hwdep_new(card, "MC68EC000", 0, &(sscape->hw)); | 1021 | if (irq_cfg == INVALID_IRQ) { |
1123 | if (err < 0) { | 1022 | snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", irq[dev]); |
1124 | printk(KERN_ERR "sscape: Failed to create " | 1023 | return -ENXIO; |
1125 | "firmware device\n"); | 1024 | } |
1126 | goto _release_dma; | 1025 | |
1127 | } | 1026 | mpu_irq_cfg = get_irq_config(sscape->type, mpu_irq[dev]); |
1128 | strlcpy(sscape->hw->name, "SoundScape M68K", | 1027 | if (mpu_irq_cfg == INVALID_IRQ) { |
1129 | sizeof(sscape->hw->name)); | 1028 | snd_printk(KERN_ERR "sscape: Invalid IRQ %d\n", mpu_irq[dev]); |
1130 | sscape->hw->name[sizeof(sscape->hw->name) - 1] = '\0'; | 1029 | return -ENXIO; |
1131 | sscape->hw->iface = SNDRV_HWDEP_IFACE_SSCAPE; | ||
1132 | sscape->hw->ops.open = sscape_hw_open; | ||
1133 | sscape->hw->ops.release = sscape_hw_release; | ||
1134 | sscape->hw->ops.ioctl = sscape_hw_ioctl; | ||
1135 | sscape->hw->private_data = sscape; | ||
1136 | } | 1030 | } |
1137 | 1031 | ||
1138 | /* | 1032 | /* |
@@ -1141,9 +1035,6 @@ static int __devinit create_sscape(int dev, struct snd_card *card) | |||
1141 | */ | 1035 | */ |
1142 | spin_lock_irqsave(&sscape->lock, flags); | 1036 | spin_lock_irqsave(&sscape->lock, flags); |
1143 | 1037 | ||
1144 | activate_ad1845_unsafe(sscape->io_base); | ||
1145 | |||
1146 | sscape_write_unsafe(sscape->io_base, GA_INTENA_REG, 0x00); /* disable */ | ||
1147 | sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2e); | 1038 | sscape_write_unsafe(sscape->io_base, GA_SMCFGA_REG, 0x2e); |
1148 | sscape_write_unsafe(sscape->io_base, GA_SMCFGB_REG, 0x00); | 1039 | sscape_write_unsafe(sscape->io_base, GA_SMCFGB_REG, 0x00); |
1149 | 1040 | ||
@@ -1151,15 +1042,23 @@ static int __devinit create_sscape(int dev, struct snd_card *card) | |||
1151 | * Enable and configure the DMA channels ... | 1042 | * Enable and configure the DMA channels ... |
1152 | */ | 1043 | */ |
1153 | sscape_write_unsafe(sscape->io_base, GA_DMACFG_REG, 0x50); | 1044 | sscape_write_unsafe(sscape->io_base, GA_DMACFG_REG, 0x50); |
1154 | dma_cfg = (sscape->ic_type == IC_ODIE ? 0x70 : 0x40); | 1045 | dma_cfg = (sscape->ic_type == IC_OPUS ? 0x40 : 0x70); |
1155 | sscape_write_unsafe(sscape->io_base, GA_DMAA_REG, dma_cfg); | 1046 | sscape_write_unsafe(sscape->io_base, GA_DMAA_REG, dma_cfg); |
1156 | sscape_write_unsafe(sscape->io_base, GA_DMAB_REG, 0x20); | 1047 | sscape_write_unsafe(sscape->io_base, GA_DMAB_REG, 0x20); |
1157 | 1048 | ||
1158 | sscape_write_unsafe(sscape->io_base, | 1049 | mpu_irq_cfg |= mpu_irq_cfg << 2; |
1159 | GA_INTCFG_REG, 0xf0 | (mpu_irq_cfg << 2) | mpu_irq_cfg); | 1050 | val = sscape_read_unsafe(sscape->io_base, GA_HMCTL_REG) & 0xF7; |
1051 | if (joystick[dev]) | ||
1052 | val |= 8; | ||
1053 | sscape_write_unsafe(sscape->io_base, GA_HMCTL_REG, val | 0x10); | ||
1054 | sscape_write_unsafe(sscape->io_base, GA_INTCFG_REG, 0xf0 | mpu_irq_cfg); | ||
1160 | sscape_write_unsafe(sscape->io_base, | 1055 | sscape_write_unsafe(sscape->io_base, |
1161 | GA_CDCFG_REG, 0x09 | DMA_8BIT | 1056 | GA_CDCFG_REG, 0x09 | DMA_8BIT |
1162 | | (dma[dev] << 4) | (irq_cfg << 1)); | 1057 | | (dma[dev] << 4) | (irq_cfg << 1)); |
1058 | /* | ||
1059 | * Enable the master IRQ ... | ||
1060 | */ | ||
1061 | sscape_write_unsafe(sscape->io_base, GA_INTENA_REG, 0x80); | ||
1163 | 1062 | ||
1164 | spin_unlock_irqrestore(&sscape->lock, flags); | 1063 | spin_unlock_irqrestore(&sscape->lock, flags); |
1165 | 1064 | ||
@@ -1170,32 +1069,56 @@ static int __devinit create_sscape(int dev, struct snd_card *card) | |||
1170 | err = create_ad1845(card, wss_port[dev], irq[dev], | 1069 | err = create_ad1845(card, wss_port[dev], irq[dev], |
1171 | dma[dev], dma2[dev]); | 1070 | dma[dev], dma2[dev]); |
1172 | if (err < 0) { | 1071 | if (err < 0) { |
1173 | printk(KERN_ERR "sscape: No AD1845 device at 0x%lx, IRQ %d\n", | 1072 | snd_printk(KERN_ERR |
1174 | wss_port[dev], irq[dev]); | 1073 | "sscape: No AD1845 device at 0x%lx, IRQ %d\n", |
1074 | wss_port[dev], irq[dev]); | ||
1175 | goto _release_dma; | 1075 | goto _release_dma; |
1176 | } | 1076 | } |
1077 | strcpy(card->driver, "SoundScape"); | ||
1078 | strcpy(card->shortname, name); | ||
1079 | snprintf(card->longname, sizeof(card->longname), | ||
1080 | "%s at 0x%lx, IRQ %d, DMA1 %d, DMA2 %d\n", | ||
1081 | name, sscape->chip->port, sscape->chip->irq, | ||
1082 | sscape->chip->dma1, sscape->chip->dma2); | ||
1083 | |||
1177 | #define MIDI_DEVNUM 0 | 1084 | #define MIDI_DEVNUM 0 |
1178 | if (sscape->type != SSCAPE_VIVO) { | 1085 | if (sscape->type != SSCAPE_VIVO) { |
1179 | err = create_mpu401(card, MIDI_DEVNUM, port[dev], mpu_irq[dev]); | 1086 | err = sscape_upload_bootblock(card); |
1180 | if (err < 0) { | 1087 | if (err >= 0) |
1181 | printk(KERN_ERR "sscape: Failed to create " | 1088 | err = sscape_upload_microcode(card, err); |
1182 | "MPU-401 device at 0x%lx\n", | ||
1183 | port[dev]); | ||
1184 | goto _release_dma; | ||
1185 | } | ||
1186 | 1089 | ||
1187 | /* | 1090 | if (err == 0) { |
1188 | * Enable the master IRQ ... | 1091 | err = create_mpu401(card, MIDI_DEVNUM, port[dev], |
1189 | */ | 1092 | mpu_irq[dev]); |
1190 | sscape_write(sscape, GA_INTENA_REG, 0x80); | 1093 | if (err < 0) { |
1094 | snd_printk(KERN_ERR "sscape: Failed to create " | ||
1095 | "MPU-401 device at 0x%lx\n", | ||
1096 | port[dev]); | ||
1097 | goto _release_dma; | ||
1098 | } | ||
1191 | 1099 | ||
1192 | /* | 1100 | /* |
1193 | * Initialize mixer | 1101 | * Initialize mixer |
1194 | */ | 1102 | */ |
1195 | sscape->midi_vol = 0; | 1103 | spin_lock_irqsave(&sscape->lock, flags); |
1196 | host_write_ctrl_unsafe(sscape->io_base, CMD_SET_MIDI_VOL, 100); | 1104 | sscape->midi_vol = 0; |
1197 | host_write_ctrl_unsafe(sscape->io_base, 0, 100); | 1105 | host_write_ctrl_unsafe(sscape->io_base, |
1198 | host_write_ctrl_unsafe(sscape->io_base, CMD_XXX_MIDI_VOL, 100); | 1106 | CMD_SET_MIDI_VOL, 100); |
1107 | host_write_ctrl_unsafe(sscape->io_base, | ||
1108 | sscape->midi_vol, 100); | ||
1109 | host_write_ctrl_unsafe(sscape->io_base, | ||
1110 | CMD_XXX_MIDI_VOL, 100); | ||
1111 | host_write_ctrl_unsafe(sscape->io_base, | ||
1112 | sscape->midi_vol, 100); | ||
1113 | host_write_ctrl_unsafe(sscape->io_base, | ||
1114 | CMD_SET_EXTMIDI, 100); | ||
1115 | host_write_ctrl_unsafe(sscape->io_base, | ||
1116 | 0, 100); | ||
1117 | host_write_ctrl_unsafe(sscape->io_base, CMD_ACK, 100); | ||
1118 | |||
1119 | set_midi_mode_unsafe(sscape->io_base); | ||
1120 | spin_unlock_irqrestore(&sscape->lock, flags); | ||
1121 | } | ||
1199 | } | 1122 | } |
1200 | 1123 | ||
1201 | /* | 1124 | /* |
@@ -1231,7 +1154,8 @@ static int __devinit snd_sscape_match(struct device *pdev, unsigned int i) | |||
1231 | mpu_irq[i] == SNDRV_AUTO_IRQ || | 1154 | mpu_irq[i] == SNDRV_AUTO_IRQ || |
1232 | dma[i] == SNDRV_AUTO_DMA) { | 1155 | dma[i] == SNDRV_AUTO_DMA) { |
1233 | printk(KERN_INFO | 1156 | printk(KERN_INFO |
1234 | "sscape: insufficient parameters, need IO, IRQ, MPU-IRQ and DMA\n"); | 1157 | "sscape: insufficient parameters, " |
1158 | "need IO, IRQ, MPU-IRQ and DMA\n"); | ||
1235 | return 0; | 1159 | return 0; |
1236 | } | 1160 | } |
1237 | 1161 | ||
@@ -1253,13 +1177,15 @@ static int __devinit snd_sscape_probe(struct device *pdev, unsigned int dev) | |||
1253 | sscape->type = SSCAPE; | 1177 | sscape->type = SSCAPE; |
1254 | 1178 | ||
1255 | dma[dev] &= 0x03; | 1179 | dma[dev] &= 0x03; |
1180 | snd_card_set_dev(card, pdev); | ||
1181 | |||
1256 | ret = create_sscape(dev, card); | 1182 | ret = create_sscape(dev, card); |
1257 | if (ret < 0) | 1183 | if (ret < 0) |
1258 | goto _release_card; | 1184 | goto _release_card; |
1259 | 1185 | ||
1260 | snd_card_set_dev(card, pdev); | 1186 | ret = snd_card_register(card); |
1261 | if ((ret = snd_card_register(card)) < 0) { | 1187 | if (ret < 0) { |
1262 | printk(KERN_ERR "sscape: Failed to register sound card\n"); | 1188 | snd_printk(KERN_ERR "sscape: Failed to register sound card\n"); |
1263 | goto _release_card; | 1189 | goto _release_card; |
1264 | } | 1190 | } |
1265 | dev_set_drvdata(pdev, card); | 1191 | dev_set_drvdata(pdev, card); |
@@ -1311,36 +1237,20 @@ static int __devinit sscape_pnp_detect(struct pnp_card_link *pcard, | |||
1311 | * Allow this function to fail *quietly* if all the ISA PnP | 1237 | * Allow this function to fail *quietly* if all the ISA PnP |
1312 | * devices were configured using module parameters instead. | 1238 | * devices were configured using module parameters instead. |
1313 | */ | 1239 | */ |
1314 | if ((idx = get_next_autoindex(idx)) >= SNDRV_CARDS) | 1240 | idx = get_next_autoindex(idx); |
1241 | if (idx >= SNDRV_CARDS) | ||
1315 | return -ENOSPC; | 1242 | return -ENOSPC; |
1316 | 1243 | ||
1317 | /* | 1244 | /* |
1318 | * We have found a candidate ISA PnP card. Now we | ||
1319 | * have to check that it has the devices that we | ||
1320 | * expect it to have. | ||
1321 | * | ||
1322 | * We will NOT try and autoconfigure all of the resources | ||
1323 | * needed and then activate the card as we are assuming that | ||
1324 | * has already been done at boot-time using /proc/isapnp. | ||
1325 | * We shall simply try to give each active card the resources | ||
1326 | * that it wants. This is a sensible strategy for a modular | ||
1327 | * system where unused modules are unloaded regularly. | ||
1328 | * | ||
1329 | * This strategy is utterly useless if we compile the driver | ||
1330 | * into the kernel, of course. | ||
1331 | */ | ||
1332 | // printk(KERN_INFO "sscape: %s\n", card->name); | ||
1333 | |||
1334 | /* | ||
1335 | * Check that we still have room for another sound card ... | 1245 | * Check that we still have room for another sound card ... |
1336 | */ | 1246 | */ |
1337 | dev = pnp_request_card_device(pcard, pid->devs[0].id, NULL); | 1247 | dev = pnp_request_card_device(pcard, pid->devs[0].id, NULL); |
1338 | if (! dev) | 1248 | if (!dev) |
1339 | return -ENODEV; | 1249 | return -ENODEV; |
1340 | 1250 | ||
1341 | if (!pnp_is_active(dev)) { | 1251 | if (!pnp_is_active(dev)) { |
1342 | if (pnp_activate_dev(dev) < 0) { | 1252 | if (pnp_activate_dev(dev) < 0) { |
1343 | printk(KERN_INFO "sscape: device is inactive\n"); | 1253 | snd_printk(KERN_INFO "sscape: device is inactive\n"); |
1344 | return -EBUSY; | 1254 | return -EBUSY; |
1345 | } | 1255 | } |
1346 | } | 1256 | } |
@@ -1378,14 +1288,15 @@ static int __devinit sscape_pnp_detect(struct pnp_card_link *pcard, | |||
1378 | wss_port[idx] = pnp_port_start(dev, 1); | 1288 | wss_port[idx] = pnp_port_start(dev, 1); |
1379 | dma2[idx] = pnp_dma(dev, 1); | 1289 | dma2[idx] = pnp_dma(dev, 1); |
1380 | } | 1290 | } |
1291 | snd_card_set_dev(card, &pcard->card->dev); | ||
1381 | 1292 | ||
1382 | ret = create_sscape(idx, card); | 1293 | ret = create_sscape(idx, card); |
1383 | if (ret < 0) | 1294 | if (ret < 0) |
1384 | goto _release_card; | 1295 | goto _release_card; |
1385 | 1296 | ||
1386 | snd_card_set_dev(card, &pcard->card->dev); | 1297 | ret = snd_card_register(card); |
1387 | if ((ret = snd_card_register(card)) < 0) { | 1298 | if (ret < 0) { |
1388 | printk(KERN_ERR "sscape: Failed to register sound card\n"); | 1299 | snd_printk(KERN_ERR "sscape: Failed to register sound card\n"); |
1389 | goto _release_card; | 1300 | goto _release_card; |
1390 | } | 1301 | } |
1391 | 1302 | ||
diff --git a/sound/isa/wss/wss_lib.c b/sound/isa/wss/wss_lib.c index 5d2ba1b749ab..2ba18978b419 100644 --- a/sound/isa/wss/wss_lib.c +++ b/sound/isa/wss/wss_lib.c | |||
@@ -2198,84 +2198,61 @@ EXPORT_SYMBOL(snd_wss_put_double); | |||
2198 | static const DECLARE_TLV_DB_SCALE(db_scale_6bit, -9450, 150, 0); | 2198 | static const DECLARE_TLV_DB_SCALE(db_scale_6bit, -9450, 150, 0); |
2199 | static const DECLARE_TLV_DB_SCALE(db_scale_5bit_12db_max, -3450, 150, 0); | 2199 | static const DECLARE_TLV_DB_SCALE(db_scale_5bit_12db_max, -3450, 150, 0); |
2200 | static const DECLARE_TLV_DB_SCALE(db_scale_rec_gain, 0, 150, 0); | 2200 | static const DECLARE_TLV_DB_SCALE(db_scale_rec_gain, 0, 150, 0); |
2201 | static const DECLARE_TLV_DB_SCALE(db_scale_4bit, -4500, 300, 0); | ||
2201 | 2202 | ||
2202 | static struct snd_kcontrol_new snd_ad1848_controls[] = { | 2203 | static struct snd_kcontrol_new snd_wss_controls[] = { |
2203 | WSS_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, | 2204 | WSS_DOUBLE("PCM Playback Switch", 0, |
2204 | 7, 7, 1, 1), | 2205 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), |
2205 | WSS_DOUBLE_TLV("PCM Playback Volume", 0, | 2206 | WSS_DOUBLE_TLV("PCM Playback Volume", 0, |
2206 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1, | 2207 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1, |
2207 | db_scale_6bit), | 2208 | db_scale_6bit), |
2208 | WSS_DOUBLE("Aux Playback Switch", 0, | 2209 | WSS_DOUBLE("Aux Playback Switch", 0, |
2209 | CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), | 2210 | CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), |
2210 | WSS_DOUBLE_TLV("Aux Playback Volume", 0, | 2211 | WSS_DOUBLE_TLV("Aux Playback Volume", 0, |
2211 | CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1, | 2212 | CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1, |
2212 | db_scale_5bit_12db_max), | 2213 | db_scale_5bit_12db_max), |
2213 | WSS_DOUBLE("Aux Playback Switch", 1, | 2214 | WSS_DOUBLE("Aux Playback Switch", 1, |
2214 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), | 2215 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), |
2215 | WSS_DOUBLE_TLV("Aux Playback Volume", 1, | 2216 | WSS_DOUBLE_TLV("Aux Playback Volume", 1, |
2216 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1, | 2217 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1, |
2217 | db_scale_5bit_12db_max), | 2218 | db_scale_5bit_12db_max), |
2218 | WSS_DOUBLE_TLV("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, | 2219 | WSS_DOUBLE_TLV("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, |
2219 | 0, 0, 15, 0, db_scale_rec_gain), | 2220 | 0, 0, 15, 0, db_scale_rec_gain), |
2220 | { | 2221 | { |
2221 | .name = "Capture Source", | ||
2222 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 2222 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
2223 | .name = "Capture Source", | ||
2223 | .info = snd_wss_info_mux, | 2224 | .info = snd_wss_info_mux, |
2224 | .get = snd_wss_get_mux, | 2225 | .get = snd_wss_get_mux, |
2225 | .put = snd_wss_put_mux, | 2226 | .put = snd_wss_put_mux, |
2226 | }, | 2227 | }, |
2227 | WSS_SINGLE("Loopback Capture Switch", 0, CS4231_LOOPBACK, 0, 1, 0), | 2228 | WSS_DOUBLE("Mic Boost", 0, |
2228 | WSS_SINGLE_TLV("Loopback Capture Volume", 0, CS4231_LOOPBACK, 1, 63, 0, | 2229 | CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5, 1, 0), |
2229 | db_scale_6bit), | 2230 | WSS_SINGLE("Loopback Capture Switch", 0, |
2230 | }; | 2231 | CS4231_LOOPBACK, 0, 1, 0), |
2231 | 2232 | WSS_SINGLE_TLV("Loopback Capture Volume", 0, CS4231_LOOPBACK, 2, 63, 1, | |
2232 | static struct snd_kcontrol_new snd_wss_controls[] = { | 2233 | db_scale_6bit), |
2233 | WSS_DOUBLE("PCM Playback Switch", 0, | ||
2234 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), | ||
2235 | WSS_DOUBLE("PCM Playback Volume", 0, | ||
2236 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 0, 0, 63, 1), | ||
2237 | WSS_DOUBLE("Line Playback Switch", 0, | 2234 | WSS_DOUBLE("Line Playback Switch", 0, |
2238 | CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), | 2235 | CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), |
2239 | WSS_DOUBLE("Line Playback Volume", 0, | 2236 | WSS_DOUBLE_TLV("Line Playback Volume", 0, |
2240 | CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 31, 1), | 2237 | CS4231_LEFT_LINE_IN, CS4231_RIGHT_LINE_IN, 0, 0, 31, 1, |
2241 | WSS_DOUBLE("Aux Playback Switch", 0, | 2238 | db_scale_5bit_12db_max), |
2242 | CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), | ||
2243 | WSS_DOUBLE("Aux Playback Volume", 0, | ||
2244 | CS4231_AUX1_LEFT_INPUT, CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1), | ||
2245 | WSS_DOUBLE("Aux Playback Switch", 1, | ||
2246 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), | ||
2247 | WSS_DOUBLE("Aux Playback Volume", 1, | ||
2248 | CS4231_AUX2_LEFT_INPUT, CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1), | ||
2249 | WSS_SINGLE("Mono Playback Switch", 0, | 2239 | WSS_SINGLE("Mono Playback Switch", 0, |
2250 | CS4231_MONO_CTRL, 7, 1, 1), | 2240 | CS4231_MONO_CTRL, 7, 1, 1), |
2251 | WSS_SINGLE("Mono Playback Volume", 0, | 2241 | WSS_SINGLE_TLV("Mono Playback Volume", 0, |
2252 | CS4231_MONO_CTRL, 0, 15, 1), | 2242 | CS4231_MONO_CTRL, 0, 15, 1, |
2243 | db_scale_4bit), | ||
2253 | WSS_SINGLE("Mono Output Playback Switch", 0, | 2244 | WSS_SINGLE("Mono Output Playback Switch", 0, |
2254 | CS4231_MONO_CTRL, 6, 1, 1), | 2245 | CS4231_MONO_CTRL, 6, 1, 1), |
2255 | WSS_SINGLE("Mono Output Playback Bypass", 0, | 2246 | WSS_SINGLE("Mono Output Playback Bypass", 0, |
2256 | CS4231_MONO_CTRL, 5, 1, 0), | 2247 | CS4231_MONO_CTRL, 5, 1, 0), |
2257 | WSS_DOUBLE("Capture Volume", 0, | ||
2258 | CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 0, 0, 15, 0), | ||
2259 | { | ||
2260 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
2261 | .name = "Capture Source", | ||
2262 | .info = snd_wss_info_mux, | ||
2263 | .get = snd_wss_get_mux, | ||
2264 | .put = snd_wss_put_mux, | ||
2265 | }, | ||
2266 | WSS_DOUBLE("Mic Boost", 0, | ||
2267 | CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5, 1, 0), | ||
2268 | WSS_SINGLE("Loopback Capture Switch", 0, | ||
2269 | CS4231_LOOPBACK, 0, 1, 0), | ||
2270 | WSS_SINGLE("Loopback Capture Volume", 0, | ||
2271 | CS4231_LOOPBACK, 2, 63, 1) | ||
2272 | }; | 2248 | }; |
2273 | 2249 | ||
2274 | static struct snd_kcontrol_new snd_opti93x_controls[] = { | 2250 | static struct snd_kcontrol_new snd_opti93x_controls[] = { |
2275 | WSS_DOUBLE("Master Playback Switch", 0, | 2251 | WSS_DOUBLE("Master Playback Switch", 0, |
2276 | OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 7, 7, 1, 1), | 2252 | OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 7, 7, 1, 1), |
2277 | WSS_DOUBLE("Master Playback Volume", 0, | 2253 | WSS_DOUBLE_TLV("Master Playback Volume", 0, |
2278 | OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 1, 1, 31, 1), | 2254 | OPTi93X_OUT_LEFT, OPTi93X_OUT_RIGHT, 1, 1, 31, 1, |
2255 | db_scale_6bit), | ||
2279 | WSS_DOUBLE("PCM Playback Switch", 0, | 2256 | WSS_DOUBLE("PCM Playback Switch", 0, |
2280 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), | 2257 | CS4231_LEFT_OUTPUT, CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), |
2281 | WSS_DOUBLE("PCM Playback Volume", 0, | 2258 | WSS_DOUBLE("PCM Playback Volume", 0, |
@@ -2334,22 +2311,21 @@ int snd_wss_mixer(struct snd_wss *chip) | |||
2334 | if (err < 0) | 2311 | if (err < 0) |
2335 | return err; | 2312 | return err; |
2336 | } | 2313 | } |
2337 | else if (chip->hardware & WSS_HW_AD1848_MASK) | 2314 | else { |
2338 | for (idx = 0; idx < ARRAY_SIZE(snd_ad1848_controls); idx++) { | 2315 | int count = ARRAY_SIZE(snd_wss_controls); |
2339 | err = snd_ctl_add(card, | 2316 | |
2340 | snd_ctl_new1(&snd_ad1848_controls[idx], | 2317 | /* Use only the first 11 entries on AD1848 */ |
2341 | chip)); | 2318 | if (chip->hardware & WSS_HW_AD1848_MASK) |
2342 | if (err < 0) | 2319 | count = 11; |
2343 | return err; | 2320 | |
2344 | } | 2321 | for (idx = 0; idx < count; idx++) { |
2345 | else | ||
2346 | for (idx = 0; idx < ARRAY_SIZE(snd_wss_controls); idx++) { | ||
2347 | err = snd_ctl_add(card, | 2322 | err = snd_ctl_add(card, |
2348 | snd_ctl_new1(&snd_wss_controls[idx], | 2323 | snd_ctl_new1(&snd_wss_controls[idx], |
2349 | chip)); | 2324 | chip)); |
2350 | if (err < 0) | 2325 | if (err < 0) |
2351 | return err; | 2326 | return err; |
2352 | } | 2327 | } |
2328 | } | ||
2353 | return 0; | 2329 | return 0; |
2354 | } | 2330 | } |
2355 | EXPORT_SYMBOL(snd_wss_mixer); | 2331 | EXPORT_SYMBOL(snd_wss_mixer); |
diff --git a/sound/mips/hal2.c b/sound/mips/hal2.c index c52691c2fc46..9a88cdfd952a 100644 --- a/sound/mips/hal2.c +++ b/sound/mips/hal2.c | |||
@@ -915,7 +915,7 @@ static int __devinit hal2_probe(struct platform_device *pdev) | |||
915 | return 0; | 915 | return 0; |
916 | } | 916 | } |
917 | 917 | ||
918 | static int __exit hal2_remove(struct platform_device *pdev) | 918 | static int __devexit hal2_remove(struct platform_device *pdev) |
919 | { | 919 | { |
920 | struct snd_card *card = platform_get_drvdata(pdev); | 920 | struct snd_card *card = platform_get_drvdata(pdev); |
921 | 921 | ||
diff --git a/sound/mips/sgio2audio.c b/sound/mips/sgio2audio.c index e497525bc11b..8691f4cf6191 100644 --- a/sound/mips/sgio2audio.c +++ b/sound/mips/sgio2audio.c | |||
@@ -973,7 +973,7 @@ static int __devinit snd_sgio2audio_probe(struct platform_device *pdev) | |||
973 | return 0; | 973 | return 0; |
974 | } | 974 | } |
975 | 975 | ||
976 | static int __exit snd_sgio2audio_remove(struct platform_device *pdev) | 976 | static int __devexit snd_sgio2audio_remove(struct platform_device *pdev) |
977 | { | 977 | { |
978 | struct snd_card *card = platform_get_drvdata(pdev); | 978 | struct snd_card *card = platform_get_drvdata(pdev); |
979 | 979 | ||
diff --git a/sound/oss/Kconfig b/sound/oss/Kconfig index bcf2a0698d54..135a2b77cc4a 100644 --- a/sound/oss/Kconfig +++ b/sound/oss/Kconfig | |||
@@ -287,18 +287,6 @@ config SOUND_DMAP | |||
287 | 287 | ||
288 | Say Y unless you have 16MB or more RAM or a PCI sound card. | 288 | Say Y unless you have 16MB or more RAM or a PCI sound card. |
289 | 289 | ||
290 | config SOUND_SSCAPE | ||
291 | tristate "Ensoniq SoundScape support" | ||
292 | help | ||
293 | Answer Y if you have a sound card based on the Ensoniq SoundScape | ||
294 | chipset. Such cards are being manufactured at least by Ensoniq, Spea | ||
295 | and Reveal (Reveal makes also other cards). | ||
296 | |||
297 | If you compile the driver into the kernel, you have to add | ||
298 | "sscape=<io>,<irq>,<dma>,<mpuio>,<mpuirq>" to the kernel command | ||
299 | line. | ||
300 | |||
301 | |||
302 | config SOUND_VMIDI | 290 | config SOUND_VMIDI |
303 | tristate "Loopback MIDI device support" | 291 | tristate "Loopback MIDI device support" |
304 | help | 292 | help |
diff --git a/sound/oss/Makefile b/sound/oss/Makefile index e0ae4d4d6a5c..567b8a74178a 100644 --- a/sound/oss/Makefile +++ b/sound/oss/Makefile | |||
@@ -13,7 +13,6 @@ obj-$(CONFIG_SOUND_SH_DAC_AUDIO) += sh_dac_audio.o | |||
13 | obj-$(CONFIG_SOUND_AEDSP16) += aedsp16.o | 13 | obj-$(CONFIG_SOUND_AEDSP16) += aedsp16.o |
14 | obj-$(CONFIG_SOUND_PSS) += pss.o ad1848.o mpu401.o | 14 | obj-$(CONFIG_SOUND_PSS) += pss.o ad1848.o mpu401.o |
15 | obj-$(CONFIG_SOUND_TRIX) += trix.o ad1848.o sb_lib.o uart401.o | 15 | obj-$(CONFIG_SOUND_TRIX) += trix.o ad1848.o sb_lib.o uart401.o |
16 | obj-$(CONFIG_SOUND_SSCAPE) += sscape.o ad1848.o mpu401.o | ||
17 | obj-$(CONFIG_SOUND_MSS) += ad1848.o | 16 | obj-$(CONFIG_SOUND_MSS) += ad1848.o |
18 | obj-$(CONFIG_SOUND_PAS) += pas2.o sb.o sb_lib.o uart401.o | 17 | obj-$(CONFIG_SOUND_PAS) += pas2.o sb.o sb_lib.o uart401.o |
19 | obj-$(CONFIG_SOUND_SB) += sb.o sb_lib.o uart401.o | 18 | obj-$(CONFIG_SOUND_SB) += sb.o sb_lib.o uart401.o |
diff --git a/sound/oss/sh_dac_audio.c b/sound/oss/sh_dac_audio.c index b2ed8757542a..4153752507e3 100644 --- a/sound/oss/sh_dac_audio.c +++ b/sound/oss/sh_dac_audio.c | |||
@@ -164,9 +164,6 @@ static ssize_t dac_audio_write(struct file *file, const char *buf, size_t count, | |||
164 | int free; | 164 | int free; |
165 | int nbytes; | 165 | int nbytes; |
166 | 166 | ||
167 | if (count < 0) | ||
168 | return -EINVAL; | ||
169 | |||
170 | if (!count) { | 167 | if (!count) { |
171 | dac_audio_sync(); | 168 | dac_audio_sync(); |
172 | return 0; | 169 | return 0; |
diff --git a/sound/oss/sscape.c b/sound/oss/sscape.c deleted file mode 100644 index 30c36d1f35d7..000000000000 --- a/sound/oss/sscape.c +++ /dev/null | |||
@@ -1,1480 +0,0 @@ | |||
1 | /* | ||
2 | * sound/oss/sscape.c | ||
3 | * | ||
4 | * Low level driver for Ensoniq SoundScape | ||
5 | * | ||
6 | * | ||
7 | * Copyright (C) by Hannu Savolainen 1993-1997 | ||
8 | * | ||
9 | * OSS/Free for Linux is distributed under the GNU GENERAL PUBLIC LICENSE (GPL) | ||
10 | * Version 2 (June 1991). See the "COPYING" file distributed with this software | ||
11 | * for more info. | ||
12 | * | ||
13 | * | ||
14 | * Thomas Sailer : ioctl code reworked (vmalloc/vfree removed) | ||
15 | * Sergey Smitienko : ensoniq p'n'p support | ||
16 | * Christoph Hellwig : adapted to module_init/module_exit | ||
17 | * Bartlomiej Zolnierkiewicz : added __init to attach_sscape() | ||
18 | * Chris Rankin : Specify that this module owns the coprocessor | ||
19 | * Arnaldo C. de Melo : added missing restore_flags in sscape_pnp_upload_file | ||
20 | */ | ||
21 | |||
22 | #include <linux/init.h> | ||
23 | #include <linux/module.h> | ||
24 | |||
25 | #include "sound_config.h" | ||
26 | #include "sound_firmware.h" | ||
27 | |||
28 | #include <linux/types.h> | ||
29 | #include <linux/errno.h> | ||
30 | #include <linux/signal.h> | ||
31 | #include <linux/fcntl.h> | ||
32 | #include <linux/ctype.h> | ||
33 | #include <linux/stddef.h> | ||
34 | #include <linux/kmod.h> | ||
35 | #include <asm/dma.h> | ||
36 | #include <asm/io.h> | ||
37 | #include <linux/wait.h> | ||
38 | #include <linux/slab.h> | ||
39 | #include <linux/ioport.h> | ||
40 | #include <linux/delay.h> | ||
41 | #include <linux/proc_fs.h> | ||
42 | #include <linux/mm.h> | ||
43 | #include <linux/spinlock.h> | ||
44 | |||
45 | #include "coproc.h" | ||
46 | |||
47 | #include "ad1848.h" | ||
48 | #include "mpu401.h" | ||
49 | |||
50 | /* | ||
51 | * I/O ports | ||
52 | */ | ||
53 | #define MIDI_DATA 0 | ||
54 | #define MIDI_CTRL 1 | ||
55 | #define HOST_CTRL 2 | ||
56 | #define TX_READY 0x02 | ||
57 | #define RX_READY 0x01 | ||
58 | #define HOST_DATA 3 | ||
59 | #define ODIE_ADDR 4 | ||
60 | #define ODIE_DATA 5 | ||
61 | |||
62 | /* | ||
63 | * Indirect registers | ||
64 | */ | ||
65 | |||
66 | #define GA_INTSTAT_REG 0 | ||
67 | #define GA_INTENA_REG 1 | ||
68 | #define GA_DMAA_REG 2 | ||
69 | #define GA_DMAB_REG 3 | ||
70 | #define GA_INTCFG_REG 4 | ||
71 | #define GA_DMACFG_REG 5 | ||
72 | #define GA_CDCFG_REG 6 | ||
73 | #define GA_SMCFGA_REG 7 | ||
74 | #define GA_SMCFGB_REG 8 | ||
75 | #define GA_HMCTL_REG 9 | ||
76 | |||
77 | /* | ||
78 | * DMA channel identifiers (A and B) | ||
79 | */ | ||
80 | |||
81 | #define SSCAPE_DMA_A 0 | ||
82 | #define SSCAPE_DMA_B 1 | ||
83 | |||
84 | #define PORT(name) (devc->base+name) | ||
85 | |||
86 | /* | ||
87 | * Host commands recognized by the OBP microcode | ||
88 | */ | ||
89 | |||
90 | #define CMD_GEN_HOST_ACK 0x80 | ||
91 | #define CMD_GEN_MPU_ACK 0x81 | ||
92 | #define CMD_GET_BOARD_TYPE 0x82 | ||
93 | #define CMD_SET_CONTROL 0x88 /* Old firmware only */ | ||
94 | #define CMD_GET_CONTROL 0x89 /* Old firmware only */ | ||
95 | #define CTL_MASTER_VOL 0 | ||
96 | #define CTL_MIC_MODE 2 | ||
97 | #define CTL_SYNTH_VOL 4 | ||
98 | #define CTL_WAVE_VOL 7 | ||
99 | #define CMD_SET_EXTMIDI 0x8a | ||
100 | #define CMD_GET_EXTMIDI 0x8b | ||
101 | #define CMD_SET_MT32 0x8c | ||
102 | #define CMD_GET_MT32 0x8d | ||
103 | |||
104 | #define CMD_ACK 0x80 | ||
105 | |||
106 | #define IC_ODIE 1 | ||
107 | #define IC_OPUS 2 | ||
108 | |||
109 | typedef struct sscape_info | ||
110 | { | ||
111 | int base, irq, dma; | ||
112 | |||
113 | int codec, codec_irq; /* required to setup pnp cards*/ | ||
114 | int codec_type; | ||
115 | int ic_type; | ||
116 | char* raw_buf; | ||
117 | unsigned long raw_buf_phys; | ||
118 | int buffsize; /* -------------------------- */ | ||
119 | spinlock_t lock; | ||
120 | int ok; /* Properly detected */ | ||
121 | int failed; | ||
122 | int dma_allocated; | ||
123 | int codec_audiodev; | ||
124 | int opened; | ||
125 | int *osp; | ||
126 | int my_audiodev; | ||
127 | } sscape_info; | ||
128 | |||
129 | static struct sscape_info adev_info = { | ||
130 | 0 | ||
131 | }; | ||
132 | |||
133 | static struct sscape_info *devc = &adev_info; | ||
134 | static int sscape_mididev = -1; | ||
135 | |||
136 | /* Some older cards have assigned interrupt bits differently than new ones */ | ||
137 | static char valid_interrupts_old[] = { | ||
138 | 9, 7, 5, 15 | ||
139 | }; | ||
140 | |||
141 | static char valid_interrupts_new[] = { | ||
142 | 9, 5, 7, 10 | ||
143 | }; | ||
144 | |||
145 | static char *valid_interrupts = valid_interrupts_new; | ||
146 | |||
147 | /* | ||
148 | * See the bottom of the driver. This can be set by spea =0/1. | ||
149 | */ | ||
150 | |||
151 | #ifdef REVEAL_SPEA | ||
152 | static char old_hardware = 1; | ||
153 | #else | ||
154 | static char old_hardware; | ||
155 | #endif | ||
156 | |||
157 | static void sleep(unsigned howlong) | ||
158 | { | ||
159 | current->state = TASK_INTERRUPTIBLE; | ||
160 | schedule_timeout(howlong); | ||
161 | } | ||
162 | |||
163 | static unsigned char sscape_read(struct sscape_info *devc, int reg) | ||
164 | { | ||
165 | unsigned long flags; | ||
166 | unsigned char val; | ||
167 | |||
168 | spin_lock_irqsave(&devc->lock,flags); | ||
169 | outb(reg, PORT(ODIE_ADDR)); | ||
170 | val = inb(PORT(ODIE_DATA)); | ||
171 | spin_unlock_irqrestore(&devc->lock,flags); | ||
172 | return val; | ||
173 | } | ||
174 | |||
175 | static void __sscape_write(int reg, int data) | ||
176 | { | ||
177 | outb(reg, PORT(ODIE_ADDR)); | ||
178 | outb(data, PORT(ODIE_DATA)); | ||
179 | } | ||
180 | |||
181 | static void sscape_write(struct sscape_info *devc, int reg, int data) | ||
182 | { | ||
183 | unsigned long flags; | ||
184 | |||
185 | spin_lock_irqsave(&devc->lock,flags); | ||
186 | __sscape_write(reg, data); | ||
187 | spin_unlock_irqrestore(&devc->lock,flags); | ||
188 | } | ||
189 | |||
190 | static unsigned char sscape_pnp_read_codec(sscape_info* devc, unsigned char reg) | ||
191 | { | ||
192 | unsigned char res; | ||
193 | unsigned long flags; | ||
194 | |||
195 | spin_lock_irqsave(&devc->lock,flags); | ||
196 | outb( reg, devc -> codec); | ||
197 | res = inb (devc -> codec + 1); | ||
198 | spin_unlock_irqrestore(&devc->lock,flags); | ||
199 | return res; | ||
200 | |||
201 | } | ||
202 | |||
203 | static void sscape_pnp_write_codec(sscape_info* devc, unsigned char reg, unsigned char data) | ||
204 | { | ||
205 | unsigned long flags; | ||
206 | |||
207 | spin_lock_irqsave(&devc->lock,flags); | ||
208 | outb( reg, devc -> codec); | ||
209 | outb( data, devc -> codec + 1); | ||
210 | spin_unlock_irqrestore(&devc->lock,flags); | ||
211 | } | ||
212 | |||
213 | static void host_open(struct sscape_info *devc) | ||
214 | { | ||
215 | outb((0x00), PORT(HOST_CTRL)); /* Put the board to the host mode */ | ||
216 | } | ||
217 | |||
218 | static void host_close(struct sscape_info *devc) | ||
219 | { | ||
220 | outb((0x03), PORT(HOST_CTRL)); /* Put the board to the MIDI mode */ | ||
221 | } | ||
222 | |||
223 | static int host_write(struct sscape_info *devc, unsigned char *data, int count) | ||
224 | { | ||
225 | unsigned long flags; | ||
226 | int i, timeout_val; | ||
227 | |||
228 | spin_lock_irqsave(&devc->lock,flags); | ||
229 | /* | ||
230 | * Send the command and data bytes | ||
231 | */ | ||
232 | |||
233 | for (i = 0; i < count; i++) | ||
234 | { | ||
235 | for (timeout_val = 10000; timeout_val > 0; timeout_val--) | ||
236 | if (inb(PORT(HOST_CTRL)) & TX_READY) | ||
237 | break; | ||
238 | |||
239 | if (timeout_val <= 0) | ||
240 | { | ||
241 | spin_unlock_irqrestore(&devc->lock,flags); | ||
242 | return 0; | ||
243 | } | ||
244 | outb(data[i], PORT(HOST_DATA)); | ||
245 | } | ||
246 | spin_unlock_irqrestore(&devc->lock,flags); | ||
247 | return 1; | ||
248 | } | ||
249 | |||
250 | static int host_read(struct sscape_info *devc) | ||
251 | { | ||
252 | unsigned long flags; | ||
253 | int timeout_val; | ||
254 | unsigned char data; | ||
255 | |||
256 | spin_lock_irqsave(&devc->lock,flags); | ||
257 | /* | ||
258 | * Read a byte | ||
259 | */ | ||
260 | |||
261 | for (timeout_val = 10000; timeout_val > 0; timeout_val--) | ||
262 | if (inb(PORT(HOST_CTRL)) & RX_READY) | ||
263 | break; | ||
264 | |||
265 | if (timeout_val <= 0) | ||
266 | { | ||
267 | spin_unlock_irqrestore(&devc->lock,flags); | ||
268 | return -1; | ||
269 | } | ||
270 | data = inb(PORT(HOST_DATA)); | ||
271 | spin_unlock_irqrestore(&devc->lock,flags); | ||
272 | return data; | ||
273 | } | ||
274 | |||
275 | #if 0 /* unused */ | ||
276 | static int host_command1(struct sscape_info *devc, int cmd) | ||
277 | { | ||
278 | unsigned char buf[10]; | ||
279 | buf[0] = (unsigned char) (cmd & 0xff); | ||
280 | return host_write(devc, buf, 1); | ||
281 | } | ||
282 | #endif /* unused */ | ||
283 | |||
284 | |||
285 | static int host_command2(struct sscape_info *devc, int cmd, int parm1) | ||
286 | { | ||
287 | unsigned char buf[10]; | ||
288 | |||
289 | buf[0] = (unsigned char) (cmd & 0xff); | ||
290 | buf[1] = (unsigned char) (parm1 & 0xff); | ||
291 | |||
292 | return host_write(devc, buf, 2); | ||
293 | } | ||
294 | |||
295 | static int host_command3(struct sscape_info *devc, int cmd, int parm1, int parm2) | ||
296 | { | ||
297 | unsigned char buf[10]; | ||
298 | |||
299 | buf[0] = (unsigned char) (cmd & 0xff); | ||
300 | buf[1] = (unsigned char) (parm1 & 0xff); | ||
301 | buf[2] = (unsigned char) (parm2 & 0xff); | ||
302 | return host_write(devc, buf, 3); | ||
303 | } | ||
304 | |||
305 | static void set_mt32(struct sscape_info *devc, int value) | ||
306 | { | ||
307 | host_open(devc); | ||
308 | host_command2(devc, CMD_SET_MT32, value ? 1 : 0); | ||
309 | if (host_read(devc) != CMD_ACK) | ||
310 | { | ||
311 | /* printk( "SNDSCAPE: Setting MT32 mode failed\n"); */ | ||
312 | } | ||
313 | host_close(devc); | ||
314 | } | ||
315 | |||
316 | static void set_control(struct sscape_info *devc, int ctrl, int value) | ||
317 | { | ||
318 | host_open(devc); | ||
319 | host_command3(devc, CMD_SET_CONTROL, ctrl, value); | ||
320 | if (host_read(devc) != CMD_ACK) | ||
321 | { | ||
322 | /* printk( "SNDSCAPE: Setting control (%d) failed\n", ctrl); */ | ||
323 | } | ||
324 | host_close(devc); | ||
325 | } | ||
326 | |||
327 | static void do_dma(struct sscape_info *devc, int dma_chan, unsigned long buf, int blk_size, int mode) | ||
328 | { | ||
329 | unsigned char temp; | ||
330 | |||
331 | if (dma_chan != SSCAPE_DMA_A) | ||
332 | { | ||
333 | printk(KERN_WARNING "soundscape: Tried to use DMA channel != A. Why?\n"); | ||
334 | return; | ||
335 | } | ||
336 | audio_devs[devc->codec_audiodev]->flags &= ~DMA_AUTOMODE; | ||
337 | DMAbuf_start_dma(devc->codec_audiodev, buf, blk_size, mode); | ||
338 | audio_devs[devc->codec_audiodev]->flags |= DMA_AUTOMODE; | ||
339 | |||
340 | temp = devc->dma << 4; /* Setup DMA channel select bits */ | ||
341 | if (devc->dma <= 3) | ||
342 | temp |= 0x80; /* 8 bit DMA channel */ | ||
343 | |||
344 | temp |= 1; /* Trigger DMA */ | ||
345 | sscape_write(devc, GA_DMAA_REG, temp); | ||
346 | temp &= 0xfe; /* Clear DMA trigger */ | ||
347 | sscape_write(devc, GA_DMAA_REG, temp); | ||
348 | } | ||
349 | |||
350 | static int verify_mpu(struct sscape_info *devc) | ||
351 | { | ||
352 | /* | ||
353 | * The SoundScape board could be in three modes (MPU, 8250 and host). | ||
354 | * If the card is not in the MPU mode, enabling the MPU driver will | ||
355 | * cause infinite loop (the driver believes that there is always some | ||
356 | * received data in the buffer. | ||
357 | * | ||
358 | * Detect this by looking if there are more than 10 received MIDI bytes | ||
359 | * (0x00) in the buffer. | ||
360 | */ | ||
361 | |||
362 | int i; | ||
363 | |||
364 | for (i = 0; i < 10; i++) | ||
365 | { | ||
366 | if (inb(devc->base + HOST_CTRL) & 0x80) | ||
367 | return 1; | ||
368 | |||
369 | if (inb(devc->base) != 0x00) | ||
370 | return 1; | ||
371 | } | ||
372 | printk(KERN_WARNING "SoundScape: The device is not in the MPU-401 mode\n"); | ||
373 | return 0; | ||
374 | } | ||
375 | |||
376 | static int sscape_coproc_open(void *dev_info, int sub_device) | ||
377 | { | ||
378 | if (sub_device == COPR_MIDI) | ||
379 | { | ||
380 | set_mt32(devc, 0); | ||
381 | if (!verify_mpu(devc)) | ||
382 | return -EIO; | ||
383 | } | ||
384 | return 0; | ||
385 | } | ||
386 | |||
387 | static void sscape_coproc_close(void *dev_info, int sub_device) | ||
388 | { | ||
389 | struct sscape_info *devc = dev_info; | ||
390 | unsigned long flags; | ||
391 | |||
392 | spin_lock_irqsave(&devc->lock,flags); | ||
393 | if (devc->dma_allocated) | ||
394 | { | ||
395 | __sscape_write(GA_DMAA_REG, 0x20); /* DMA channel disabled */ | ||
396 | devc->dma_allocated = 0; | ||
397 | } | ||
398 | spin_unlock_irqrestore(&devc->lock,flags); | ||
399 | return; | ||
400 | } | ||
401 | |||
402 | static void sscape_coproc_reset(void *dev_info) | ||
403 | { | ||
404 | } | ||
405 | |||
406 | static int sscape_download_boot(struct sscape_info *devc, unsigned char *block, int size, int flag) | ||
407 | { | ||
408 | unsigned long flags; | ||
409 | unsigned char temp; | ||
410 | volatile int done, timeout_val; | ||
411 | static unsigned char codec_dma_bits; | ||
412 | |||
413 | if (flag & CPF_FIRST) | ||
414 | { | ||
415 | /* | ||
416 | * First block. Have to allocate DMA and to reset the board | ||
417 | * before continuing. | ||
418 | */ | ||
419 | |||
420 | spin_lock_irqsave(&devc->lock,flags); | ||
421 | codec_dma_bits = sscape_read(devc, GA_CDCFG_REG); | ||
422 | |||
423 | if (devc->dma_allocated == 0) | ||
424 | devc->dma_allocated = 1; | ||
425 | |||
426 | spin_unlock_irqrestore(&devc->lock,flags); | ||
427 | |||
428 | sscape_write(devc, GA_HMCTL_REG, | ||
429 | (temp = sscape_read(devc, GA_HMCTL_REG)) & 0x3f); /*Reset */ | ||
430 | |||
431 | for (timeout_val = 10000; timeout_val > 0; timeout_val--) | ||
432 | sscape_read(devc, GA_HMCTL_REG); /* Delay */ | ||
433 | |||
434 | /* Take board out of reset */ | ||
435 | sscape_write(devc, GA_HMCTL_REG, | ||
436 | (temp = sscape_read(devc, GA_HMCTL_REG)) | 0x80); | ||
437 | } | ||
438 | /* | ||
439 | * Transfer one code block using DMA | ||
440 | */ | ||
441 | if (audio_devs[devc->codec_audiodev]->dmap_out->raw_buf == NULL) | ||
442 | { | ||
443 | printk(KERN_WARNING "soundscape: DMA buffer not available\n"); | ||
444 | return 0; | ||
445 | } | ||
446 | memcpy(audio_devs[devc->codec_audiodev]->dmap_out->raw_buf, block, size); | ||
447 | |||
448 | spin_lock_irqsave(&devc->lock,flags); | ||
449 | |||
450 | /******** INTERRUPTS DISABLED NOW ********/ | ||
451 | |||
452 | do_dma(devc, SSCAPE_DMA_A, | ||
453 | audio_devs[devc->codec_audiodev]->dmap_out->raw_buf_phys, | ||
454 | size, DMA_MODE_WRITE); | ||
455 | |||
456 | /* | ||
457 | * Wait until transfer completes. | ||
458 | */ | ||
459 | |||
460 | done = 0; | ||
461 | timeout_val = 30; | ||
462 | while (!done && timeout_val-- > 0) | ||
463 | { | ||
464 | int resid; | ||
465 | |||
466 | if (HZ / 50) | ||
467 | sleep(HZ / 50); | ||
468 | clear_dma_ff(devc->dma); | ||
469 | if ((resid = get_dma_residue(devc->dma)) == 0) | ||
470 | done = 1; | ||
471 | } | ||
472 | |||
473 | spin_unlock_irqrestore(&devc->lock,flags); | ||
474 | if (!done) | ||
475 | return 0; | ||
476 | |||
477 | if (flag & CPF_LAST) | ||
478 | { | ||
479 | /* | ||
480 | * Take the board out of reset | ||
481 | */ | ||
482 | outb((0x00), PORT(HOST_CTRL)); | ||
483 | outb((0x00), PORT(MIDI_CTRL)); | ||
484 | |||
485 | temp = sscape_read(devc, GA_HMCTL_REG); | ||
486 | temp |= 0x40; | ||
487 | sscape_write(devc, GA_HMCTL_REG, temp); /* Kickstart the board */ | ||
488 | |||
489 | /* | ||
490 | * Wait until the ODB wakes up | ||
491 | */ | ||
492 | spin_lock_irqsave(&devc->lock,flags); | ||
493 | done = 0; | ||
494 | timeout_val = 5 * HZ; | ||
495 | while (!done && timeout_val-- > 0) | ||
496 | { | ||
497 | unsigned char x; | ||
498 | |||
499 | sleep(1); | ||
500 | x = inb(PORT(HOST_DATA)); | ||
501 | if (x == 0xff || x == 0xfe) /* OBP startup acknowledge */ | ||
502 | { | ||
503 | DDB(printk("Soundscape: Acknowledge = %x\n", x)); | ||
504 | done = 1; | ||
505 | } | ||
506 | } | ||
507 | sscape_write(devc, GA_CDCFG_REG, codec_dma_bits); | ||
508 | |||
509 | spin_unlock_irqrestore(&devc->lock,flags); | ||
510 | if (!done) | ||
511 | { | ||
512 | printk(KERN_ERR "soundscape: The OBP didn't respond after code download\n"); | ||
513 | return 0; | ||
514 | } | ||
515 | spin_lock_irqsave(&devc->lock,flags); | ||
516 | done = 0; | ||
517 | timeout_val = 5 * HZ; | ||
518 | while (!done && timeout_val-- > 0) | ||
519 | { | ||
520 | sleep(1); | ||
521 | if (inb(PORT(HOST_DATA)) == 0xfe) /* Host startup acknowledge */ | ||
522 | done = 1; | ||
523 | } | ||
524 | spin_unlock_irqrestore(&devc->lock,flags); | ||
525 | if (!done) | ||
526 | { | ||
527 | printk(KERN_ERR "soundscape: OBP Initialization failed.\n"); | ||
528 | return 0; | ||
529 | } | ||
530 | printk(KERN_INFO "SoundScape board initialized OK\n"); | ||
531 | set_control(devc, CTL_MASTER_VOL, 100); | ||
532 | set_control(devc, CTL_SYNTH_VOL, 100); | ||
533 | |||
534 | #ifdef SSCAPE_DEBUG3 | ||
535 | /* | ||
536 | * Temporary debugging aid. Print contents of the registers after | ||
537 | * downloading the code. | ||
538 | */ | ||
539 | { | ||
540 | int i; | ||
541 | |||
542 | for (i = 0; i < 13; i++) | ||
543 | printk("I%d = %02x (new value)\n", i, sscape_read(devc, i)); | ||
544 | } | ||
545 | #endif | ||
546 | |||
547 | } | ||
548 | return 1; | ||
549 | } | ||
550 | |||
551 | static int download_boot_block(void *dev_info, copr_buffer * buf) | ||
552 | { | ||
553 | if (buf->len <= 0 || buf->len > sizeof(buf->data)) | ||
554 | return -EINVAL; | ||
555 | |||
556 | if (!sscape_download_boot(devc, buf->data, buf->len, buf->flags)) | ||
557 | { | ||
558 | printk(KERN_ERR "soundscape: Unable to load microcode block to the OBP.\n"); | ||
559 | return -EIO; | ||
560 | } | ||
561 | return 0; | ||
562 | } | ||
563 | |||
564 | static int sscape_coproc_ioctl(void *dev_info, unsigned int cmd, void __user *arg, int local) | ||
565 | { | ||
566 | copr_buffer *buf; | ||
567 | int err; | ||
568 | |||
569 | switch (cmd) | ||
570 | { | ||
571 | case SNDCTL_COPR_RESET: | ||
572 | sscape_coproc_reset(dev_info); | ||
573 | return 0; | ||
574 | |||
575 | case SNDCTL_COPR_LOAD: | ||
576 | buf = (copr_buffer *) vmalloc(sizeof(copr_buffer)); | ||
577 | if (buf == NULL) | ||
578 | return -ENOSPC; | ||
579 | if (copy_from_user(buf, arg, sizeof(copr_buffer))) | ||
580 | { | ||
581 | vfree(buf); | ||
582 | return -EFAULT; | ||
583 | } | ||
584 | err = download_boot_block(dev_info, buf); | ||
585 | vfree(buf); | ||
586 | return err; | ||
587 | |||
588 | default: | ||
589 | return -EINVAL; | ||
590 | } | ||
591 | } | ||
592 | |||
593 | static coproc_operations sscape_coproc_operations = | ||
594 | { | ||
595 | "SoundScape M68K", | ||
596 | THIS_MODULE, | ||
597 | sscape_coproc_open, | ||
598 | sscape_coproc_close, | ||
599 | sscape_coproc_ioctl, | ||
600 | sscape_coproc_reset, | ||
601 | &adev_info | ||
602 | }; | ||
603 | |||
604 | static struct resource *sscape_ports; | ||
605 | static int sscape_is_pnp; | ||
606 | |||
607 | static void __init attach_sscape(struct address_info *hw_config) | ||
608 | { | ||
609 | #ifndef SSCAPE_REGS | ||
610 | /* | ||
611 | * Config register values for Spea/V7 Media FX and Ensoniq S-2000. | ||
612 | * These values are card | ||
613 | * dependent. If you have another SoundScape based card, you have to | ||
614 | * find the correct values. Do the following: | ||
615 | * - Compile this driver with SSCAPE_DEBUG1 defined. | ||
616 | * - Shut down and power off your machine. | ||
617 | * - Boot with DOS so that the SSINIT.EXE program is run. | ||
618 | * - Warm boot to {Linux|SYSV|BSD} and write down the lines displayed | ||
619 | * when detecting the SoundScape. | ||
620 | * - Modify the following list to use the values printed during boot. | ||
621 | * Undefine the SSCAPE_DEBUG1 | ||
622 | */ | ||
623 | #define SSCAPE_REGS { \ | ||
624 | /* I0 */ 0x00, \ | ||
625 | /* I1 */ 0xf0, /* Note! Ignored. Set always to 0xf0 */ \ | ||
626 | /* I2 */ 0x20, /* Note! Ignored. Set always to 0x20 */ \ | ||
627 | /* I3 */ 0x20, /* Note! Ignored. Set always to 0x20 */ \ | ||
628 | /* I4 */ 0xf5, /* Ignored */ \ | ||
629 | /* I5 */ 0x10, \ | ||
630 | /* I6 */ 0x00, \ | ||
631 | /* I7 */ 0x2e, /* I7 MEM config A. Likely to vary between models */ \ | ||
632 | /* I8 */ 0x00, /* I8 MEM config B. Likely to vary between models */ \ | ||
633 | /* I9 */ 0x40 /* Ignored */ \ | ||
634 | } | ||
635 | #endif | ||
636 | |||
637 | unsigned long flags; | ||
638 | static unsigned char regs[10] = SSCAPE_REGS; | ||
639 | |||
640 | int i, irq_bits = 0xff; | ||
641 | |||
642 | if (old_hardware) | ||
643 | { | ||
644 | valid_interrupts = valid_interrupts_old; | ||
645 | conf_printf("Ensoniq SoundScape (old)", hw_config); | ||
646 | } | ||
647 | else | ||
648 | conf_printf("Ensoniq SoundScape", hw_config); | ||
649 | |||
650 | for (i = 0; i < 4; i++) | ||
651 | { | ||
652 | if (hw_config->irq == valid_interrupts[i]) | ||
653 | { | ||
654 | irq_bits = i; | ||
655 | break; | ||
656 | } | ||
657 | } | ||
658 | if (hw_config->irq > 15 || (regs[4] = irq_bits == 0xff)) | ||
659 | { | ||
660 | printk(KERN_ERR "Invalid IRQ%d\n", hw_config->irq); | ||
661 | release_region(devc->base, 2); | ||
662 | release_region(devc->base + 2, 6); | ||
663 | if (sscape_is_pnp) | ||
664 | release_region(devc->codec, 2); | ||
665 | return; | ||
666 | } | ||
667 | |||
668 | if (!sscape_is_pnp) { | ||
669 | |||
670 | spin_lock_irqsave(&devc->lock,flags); | ||
671 | /* Host interrupt enable */ | ||
672 | sscape_write(devc, 1, 0xf0); /* All interrupts enabled */ | ||
673 | /* DMA A status/trigger register */ | ||
674 | sscape_write(devc, 2, 0x20); /* DMA channel disabled */ | ||
675 | /* DMA B status/trigger register */ | ||
676 | sscape_write(devc, 3, 0x20); /* DMA channel disabled */ | ||
677 | /* Host interrupt config reg */ | ||
678 | sscape_write(devc, 4, 0xf0 | (irq_bits << 2) | irq_bits); | ||
679 | /* Don't destroy CD-ROM DMA config bits (0xc0) */ | ||
680 | sscape_write(devc, 5, (regs[5] & 0x3f) | (sscape_read(devc, 5) & 0xc0)); | ||
681 | /* CD-ROM config (WSS codec actually) */ | ||
682 | sscape_write(devc, 6, regs[6]); | ||
683 | sscape_write(devc, 7, regs[7]); | ||
684 | sscape_write(devc, 8, regs[8]); | ||
685 | /* Master control reg. Don't modify CR-ROM bits. Disable SB emul */ | ||
686 | sscape_write(devc, 9, (sscape_read(devc, 9) & 0xf0) | 0x08); | ||
687 | spin_unlock_irqrestore(&devc->lock,flags); | ||
688 | } | ||
689 | #ifdef SSCAPE_DEBUG2 | ||
690 | /* | ||
691 | * Temporary debugging aid. Print contents of the registers after | ||
692 | * changing them. | ||
693 | */ | ||
694 | { | ||
695 | int i; | ||
696 | |||
697 | for (i = 0; i < 13; i++) | ||
698 | printk("I%d = %02x (new value)\n", i, sscape_read(devc, i)); | ||
699 | } | ||
700 | #endif | ||
701 | |||
702 | if (probe_mpu401(hw_config, sscape_ports)) | ||
703 | hw_config->always_detect = 1; | ||
704 | hw_config->name = "SoundScape"; | ||
705 | |||
706 | hw_config->irq *= -1; /* Negative value signals IRQ sharing */ | ||
707 | attach_mpu401(hw_config, THIS_MODULE); | ||
708 | hw_config->irq *= -1; /* Restore it */ | ||
709 | |||
710 | if (hw_config->slots[1] != -1) /* The MPU driver installed itself */ | ||
711 | { | ||
712 | sscape_mididev = hw_config->slots[1]; | ||
713 | midi_devs[hw_config->slots[1]]->coproc = &sscape_coproc_operations; | ||
714 | } | ||
715 | sscape_write(devc, GA_INTENA_REG, 0x80); /* Master IRQ enable */ | ||
716 | devc->ok = 1; | ||
717 | devc->failed = 0; | ||
718 | } | ||
719 | |||
720 | static int detect_ga(sscape_info * devc) | ||
721 | { | ||
722 | unsigned char save; | ||
723 | |||
724 | DDB(printk("Entered Soundscape detect_ga(%x)\n", devc->base)); | ||
725 | |||
726 | /* | ||
727 | * First check that the address register of "ODIE" is | ||
728 | * there and that it has exactly 4 writable bits. | ||
729 | * First 4 bits | ||
730 | */ | ||
731 | |||
732 | if ((save = inb(PORT(ODIE_ADDR))) & 0xf0) | ||
733 | { | ||
734 | DDB(printk("soundscape: Detect error A\n")); | ||
735 | return 0; | ||
736 | } | ||
737 | outb((0x00), PORT(ODIE_ADDR)); | ||
738 | if (inb(PORT(ODIE_ADDR)) != 0x00) | ||
739 | { | ||
740 | DDB(printk("soundscape: Detect error B\n")); | ||
741 | return 0; | ||
742 | } | ||
743 | outb((0xff), PORT(ODIE_ADDR)); | ||
744 | if (inb(PORT(ODIE_ADDR)) != 0x0f) | ||
745 | { | ||
746 | DDB(printk("soundscape: Detect error C\n")); | ||
747 | return 0; | ||
748 | } | ||
749 | outb((save), PORT(ODIE_ADDR)); | ||
750 | |||
751 | /* | ||
752 | * Now verify that some indirect registers return zero on some bits. | ||
753 | * This may break the driver with some future revisions of "ODIE" but... | ||
754 | */ | ||
755 | |||
756 | if (sscape_read(devc, 0) & 0x0c) | ||
757 | { | ||
758 | DDB(printk("soundscape: Detect error D (%x)\n", sscape_read(devc, 0))); | ||
759 | return 0; | ||
760 | } | ||
761 | if (sscape_read(devc, 1) & 0x0f) | ||
762 | { | ||
763 | DDB(printk("soundscape: Detect error E\n")); | ||
764 | return 0; | ||
765 | } | ||
766 | if (sscape_read(devc, 5) & 0x0f) | ||
767 | { | ||
768 | DDB(printk("soundscape: Detect error F\n")); | ||
769 | return 0; | ||
770 | } | ||
771 | return 1; | ||
772 | } | ||
773 | |||
774 | static int sscape_read_host_ctrl(sscape_info* devc) | ||
775 | { | ||
776 | return host_read(devc); | ||
777 | } | ||
778 | |||
779 | static void sscape_write_host_ctrl2(sscape_info *devc, int a, int b) | ||
780 | { | ||
781 | host_command2(devc, a, b); | ||
782 | } | ||
783 | |||
784 | static int sscape_alloc_dma(sscape_info *devc) | ||
785 | { | ||
786 | char *start_addr, *end_addr; | ||
787 | int dma_pagesize; | ||
788 | int sz, size; | ||
789 | struct page *page; | ||
790 | |||
791 | if (devc->raw_buf != NULL) return 0; /* Already done */ | ||
792 | dma_pagesize = (devc->dma < 4) ? (64 * 1024) : (128 * 1024); | ||
793 | devc->raw_buf = NULL; | ||
794 | devc->buffsize = 8192*4; | ||
795 | if (devc->buffsize > dma_pagesize) devc->buffsize = dma_pagesize; | ||
796 | start_addr = NULL; | ||
797 | /* | ||
798 | * Now loop until we get a free buffer. Try to get smaller buffer if | ||
799 | * it fails. Don't accept smaller than 8k buffer for performance | ||
800 | * reasons. | ||
801 | */ | ||
802 | while (start_addr == NULL && devc->buffsize > PAGE_SIZE) { | ||
803 | for (sz = 0, size = PAGE_SIZE; size < devc->buffsize; sz++, size <<= 1); | ||
804 | devc->buffsize = PAGE_SIZE * (1 << sz); | ||
805 | start_addr = (char *) __get_free_pages(GFP_ATOMIC|GFP_DMA, sz); | ||
806 | if (start_addr == NULL) devc->buffsize /= 2; | ||
807 | } | ||
808 | |||
809 | if (start_addr == NULL) { | ||
810 | printk(KERN_ERR "sscape pnp init error: Couldn't allocate DMA buffer\n"); | ||
811 | return 0; | ||
812 | } else { | ||
813 | /* make some checks */ | ||
814 | end_addr = start_addr + devc->buffsize - 1; | ||
815 | /* now check if it fits into the same dma-pagesize */ | ||
816 | |||
817 | if (((long) start_addr & ~(dma_pagesize - 1)) != ((long) end_addr & ~(dma_pagesize - 1)) | ||
818 | || end_addr >= (char *) (MAX_DMA_ADDRESS)) { | ||
819 | printk(KERN_ERR "sscape pnp: Got invalid address 0x%lx for %db DMA-buffer\n", (long) start_addr, devc->buffsize); | ||
820 | return 0; | ||
821 | } | ||
822 | } | ||
823 | devc->raw_buf = start_addr; | ||
824 | devc->raw_buf_phys = virt_to_bus(start_addr); | ||
825 | |||
826 | for (page = virt_to_page(start_addr); page <= virt_to_page(end_addr); page++) | ||
827 | SetPageReserved(page); | ||
828 | return 1; | ||
829 | } | ||
830 | |||
831 | static void sscape_free_dma(sscape_info *devc) | ||
832 | { | ||
833 | int sz, size; | ||
834 | unsigned long start_addr, end_addr; | ||
835 | struct page *page; | ||
836 | |||
837 | if (devc->raw_buf == NULL) return; | ||
838 | for (sz = 0, size = PAGE_SIZE; size < devc->buffsize; sz++, size <<= 1); | ||
839 | start_addr = (unsigned long) devc->raw_buf; | ||
840 | end_addr = start_addr + devc->buffsize; | ||
841 | |||
842 | for (page = virt_to_page(start_addr); page <= virt_to_page(end_addr); page++) | ||
843 | ClearPageReserved(page); | ||
844 | |||
845 | free_pages((unsigned long) devc->raw_buf, sz); | ||
846 | devc->raw_buf = NULL; | ||
847 | } | ||
848 | |||
849 | /* Intel version !!!!!!!!! */ | ||
850 | |||
851 | static int sscape_start_dma(int chan, unsigned long physaddr, int count, int dma_mode) | ||
852 | { | ||
853 | unsigned long flags; | ||
854 | |||
855 | flags = claim_dma_lock(); | ||
856 | disable_dma(chan); | ||
857 | clear_dma_ff(chan); | ||
858 | set_dma_mode(chan, dma_mode); | ||
859 | set_dma_addr(chan, physaddr); | ||
860 | set_dma_count(chan, count); | ||
861 | enable_dma(chan); | ||
862 | release_dma_lock(flags); | ||
863 | return 0; | ||
864 | } | ||
865 | |||
866 | static void sscape_pnp_start_dma(sscape_info* devc, int arg ) | ||
867 | { | ||
868 | int reg; | ||
869 | if (arg == 0) reg = 2; | ||
870 | else reg = 3; | ||
871 | |||
872 | sscape_write(devc, reg, sscape_read( devc, reg) | 0x01); | ||
873 | sscape_write(devc, reg, sscape_read( devc, reg) & 0xFE); | ||
874 | } | ||
875 | |||
876 | static int sscape_pnp_wait_dma (sscape_info* devc, int arg ) | ||
877 | { | ||
878 | int reg; | ||
879 | unsigned long i; | ||
880 | unsigned char d; | ||
881 | |||
882 | if (arg == 0) reg = 2; | ||
883 | else reg = 3; | ||
884 | |||
885 | sleep ( 1 ); | ||
886 | i = 0; | ||
887 | do { | ||
888 | d = sscape_read(devc, reg) & 1; | ||
889 | if ( d == 1) break; | ||
890 | i++; | ||
891 | } while (i < 500000); | ||
892 | d = sscape_read(devc, reg) & 1; | ||
893 | return d; | ||
894 | } | ||
895 | |||
896 | static int sscape_pnp_alloc_dma(sscape_info* devc) | ||
897 | { | ||
898 | /* printk(KERN_INFO "sscape: requesting dma\n"); */ | ||
899 | if (request_dma(devc -> dma, "sscape")) return 0; | ||
900 | /* printk(KERN_INFO "sscape: dma channel allocated\n"); */ | ||
901 | if (!sscape_alloc_dma(devc)) { | ||
902 | free_dma(devc -> dma); | ||
903 | return 0; | ||
904 | }; | ||
905 | return 1; | ||
906 | } | ||
907 | |||
908 | static void sscape_pnp_free_dma(sscape_info* devc) | ||
909 | { | ||
910 | sscape_free_dma( devc); | ||
911 | free_dma(devc -> dma ); | ||
912 | /* printk(KERN_INFO "sscape: dma released\n"); */ | ||
913 | } | ||
914 | |||
915 | static int sscape_pnp_upload_file(sscape_info* devc, char* fn) | ||
916 | { | ||
917 | int done = 0; | ||
918 | int timeout_val; | ||
919 | char* data,*dt; | ||
920 | int len,l; | ||
921 | unsigned long flags; | ||
922 | |||
923 | sscape_write( devc, 9, sscape_read(devc, 9 ) & 0x3F ); | ||
924 | sscape_write( devc, 2, (devc -> dma << 4) | 0x80 ); | ||
925 | sscape_write( devc, 3, 0x20 ); | ||
926 | sscape_write( devc, 9, sscape_read( devc, 9 ) | 0x80 ); | ||
927 | |||
928 | len = mod_firmware_load(fn, &data); | ||
929 | if (len == 0) { | ||
930 | printk(KERN_ERR "sscape: file not found: %s\n", fn); | ||
931 | return 0; | ||
932 | } | ||
933 | dt = data; | ||
934 | spin_lock_irqsave(&devc->lock,flags); | ||
935 | while ( len > 0 ) { | ||
936 | if (len > devc -> buffsize) l = devc->buffsize; | ||
937 | else l = len; | ||
938 | len -= l; | ||
939 | memcpy(devc->raw_buf, dt, l); dt += l; | ||
940 | sscape_start_dma(devc->dma, devc->raw_buf_phys, l, 0x48); | ||
941 | sscape_pnp_start_dma ( devc, 0 ); | ||
942 | if (sscape_pnp_wait_dma ( devc, 0 ) == 0) { | ||
943 | spin_unlock_irqrestore(&devc->lock,flags); | ||
944 | return 0; | ||
945 | } | ||
946 | } | ||
947 | |||
948 | spin_unlock_irqrestore(&devc->lock,flags); | ||
949 | vfree(data); | ||
950 | |||
951 | outb(0, devc -> base + 2); | ||
952 | outb(0, devc -> base); | ||
953 | |||
954 | sscape_write ( devc, 9, sscape_read( devc, 9 ) | 0x40); | ||
955 | |||
956 | timeout_val = 5 * HZ; | ||
957 | while (!done && timeout_val-- > 0) | ||
958 | { | ||
959 | unsigned char x; | ||
960 | sleep(1); | ||
961 | x = inb( devc -> base + 3); | ||
962 | if (x == 0xff || x == 0xfe) /* OBP startup acknowledge */ | ||
963 | { | ||
964 | //printk(KERN_ERR "Soundscape: Acknowledge = %x\n", x); | ||
965 | done = 1; | ||
966 | } | ||
967 | } | ||
968 | timeout_val = 5 * HZ; | ||
969 | done = 0; | ||
970 | while (!done && timeout_val-- > 0) | ||
971 | { | ||
972 | unsigned char x; | ||
973 | sleep(1); | ||
974 | x = inb( devc -> base + 3); | ||
975 | if (x == 0xfe) /* OBP startup acknowledge */ | ||
976 | { | ||
977 | //printk(KERN_ERR "Soundscape: Acknowledge = %x\n", x); | ||
978 | done = 1; | ||
979 | } | ||
980 | } | ||
981 | |||
982 | if ( !done ) printk(KERN_ERR "soundscape: OBP Initialization failed.\n"); | ||
983 | |||
984 | sscape_write( devc, 2, devc->ic_type == IC_ODIE ? 0x70 : 0x40); | ||
985 | sscape_write( devc, 3, (devc -> dma << 4) + 0x80); | ||
986 | return 1; | ||
987 | } | ||
988 | |||
989 | static void __init sscape_pnp_init_hw(sscape_info* devc) | ||
990 | { | ||
991 | unsigned char midi_irq = 0, sb_irq = 0; | ||
992 | unsigned i; | ||
993 | static char code_file_name[23] = "/sndscape/sndscape.cox"; | ||
994 | |||
995 | int sscape_joystic_enable = 0x7f; | ||
996 | int sscape_mic_enable = 0; | ||
997 | int sscape_ext_midi = 0; | ||
998 | |||
999 | if ( !sscape_pnp_alloc_dma(devc) ) { | ||
1000 | printk(KERN_ERR "sscape: faild to allocate dma\n"); | ||
1001 | return; | ||
1002 | } | ||
1003 | |||
1004 | for (i = 0; i < 4; i++) { | ||
1005 | if ( devc -> irq == valid_interrupts[i] ) | ||
1006 | midi_irq = i; | ||
1007 | if ( devc -> codec_irq == valid_interrupts[i] ) | ||
1008 | sb_irq = i; | ||
1009 | } | ||
1010 | |||
1011 | sscape_write( devc, 5, 0x50); | ||
1012 | sscape_write( devc, 7, 0x2e); | ||
1013 | sscape_write( devc, 8, 0x00); | ||
1014 | |||
1015 | sscape_write( devc, 2, devc->ic_type == IC_ODIE ? 0x70 : 0x40); | ||
1016 | sscape_write( devc, 3, ( devc -> dma << 4) | 0x80); | ||
1017 | |||
1018 | sscape_write (devc, 4, 0xF0 | (midi_irq<<2) | midi_irq); | ||
1019 | |||
1020 | i = 0x10; //sscape_read(devc, 9) & (devc->ic_type == IC_ODIE ? 0xf0 : 0xc0); | ||
1021 | if (sscape_joystic_enable) i |= 8; | ||
1022 | |||
1023 | sscape_write (devc, 9, i); | ||
1024 | sscape_write (devc, 6, 0x80); | ||
1025 | sscape_write (devc, 1, 0x80); | ||
1026 | |||
1027 | if (devc -> codec_type == 2) { | ||
1028 | sscape_pnp_write_codec( devc, 0x0C, 0x50); | ||
1029 | sscape_pnp_write_codec( devc, 0x10, sscape_pnp_read_codec( devc, 0x10) & 0x3F); | ||
1030 | sscape_pnp_write_codec( devc, 0x11, sscape_pnp_read_codec( devc, 0x11) | 0xC0); | ||
1031 | sscape_pnp_write_codec( devc, 29, 0x20); | ||
1032 | } | ||
1033 | |||
1034 | if (sscape_pnp_upload_file(devc, "/sndscape/scope.cod") == 0 ) { | ||
1035 | printk(KERN_ERR "sscape: faild to upload file /sndscape/scope.cod\n"); | ||
1036 | sscape_pnp_free_dma(devc); | ||
1037 | return; | ||
1038 | } | ||
1039 | |||
1040 | i = sscape_read_host_ctrl( devc ); | ||
1041 | |||
1042 | if ( (i & 0x0F) > 7 ) { | ||
1043 | printk(KERN_ERR "sscape: scope.cod faild\n"); | ||
1044 | sscape_pnp_free_dma(devc); | ||
1045 | return; | ||
1046 | } | ||
1047 | if ( i & 0x10 ) sscape_write( devc, 7, 0x2F); | ||
1048 | code_file_name[21] = (char) ( i & 0x0F) + 0x30; | ||
1049 | if (sscape_pnp_upload_file( devc, code_file_name) == 0) { | ||
1050 | printk(KERN_ERR "sscape: faild to upload file %s\n", code_file_name); | ||
1051 | sscape_pnp_free_dma(devc); | ||
1052 | return; | ||
1053 | } | ||
1054 | |||
1055 | if (devc->ic_type != IC_ODIE) { | ||
1056 | sscape_pnp_write_codec( devc, 10, (sscape_pnp_read_codec(devc, 10) & 0x7f) | | ||
1057 | ( sscape_mic_enable == 0 ? 0x00 : 0x80) ); | ||
1058 | } | ||
1059 | sscape_write_host_ctrl2( devc, 0x84, 0x64 ); /* MIDI volume */ | ||
1060 | sscape_write_host_ctrl2( devc, 0x86, 0x64 ); /* MIDI volume?? */ | ||
1061 | sscape_write_host_ctrl2( devc, 0x8A, sscape_ext_midi); | ||
1062 | |||
1063 | sscape_pnp_write_codec ( devc, 6, 0x3f ); //WAV_VOL | ||
1064 | sscape_pnp_write_codec ( devc, 7, 0x3f ); //WAV_VOL | ||
1065 | sscape_pnp_write_codec ( devc, 2, 0x1F ); //WD_CDXVOLL | ||
1066 | sscape_pnp_write_codec ( devc, 3, 0x1F ); //WD_CDXVOLR | ||
1067 | |||
1068 | if (devc -> codec_type == 1) { | ||
1069 | sscape_pnp_write_codec ( devc, 4, 0x1F ); | ||
1070 | sscape_pnp_write_codec ( devc, 5, 0x1F ); | ||
1071 | sscape_write_host_ctrl2( devc, 0x88, sscape_mic_enable); | ||
1072 | } else { | ||
1073 | int t; | ||
1074 | sscape_pnp_write_codec ( devc, 0x10, 0x1F << 1); | ||
1075 | sscape_pnp_write_codec ( devc, 0x11, 0xC0 | (0x1F << 1)); | ||
1076 | |||
1077 | t = sscape_pnp_read_codec( devc, 0x00) & 0xDF; | ||
1078 | if ( (sscape_mic_enable == 0)) t |= 0; | ||
1079 | else t |= 0x20; | ||
1080 | sscape_pnp_write_codec ( devc, 0x00, t); | ||
1081 | t = sscape_pnp_read_codec( devc, 0x01) & 0xDF; | ||
1082 | if ( (sscape_mic_enable == 0) ) t |= 0; | ||
1083 | else t |= 0x20; | ||
1084 | sscape_pnp_write_codec ( devc, 0x01, t); | ||
1085 | sscape_pnp_write_codec ( devc, 0x40 | 29 , 0x20); | ||
1086 | outb(0, devc -> codec); | ||
1087 | } | ||
1088 | if (devc -> ic_type == IC_OPUS ) { | ||
1089 | int i = sscape_read( devc, 9 ); | ||
1090 | sscape_write( devc, 9, i | 3 ); | ||
1091 | sscape_write( devc, 3, 0x40); | ||
1092 | |||
1093 | if (request_region(0x228, 1, "sscape setup junk")) { | ||
1094 | outb(0, 0x228); | ||
1095 | release_region(0x228,1); | ||
1096 | } | ||
1097 | sscape_write( devc, 3, (devc -> dma << 4) | 0x80); | ||
1098 | sscape_write( devc, 9, i ); | ||
1099 | } | ||
1100 | |||
1101 | host_close ( devc ); | ||
1102 | sscape_pnp_free_dma(devc); | ||
1103 | } | ||
1104 | |||
1105 | static int __init detect_sscape_pnp(sscape_info* devc) | ||
1106 | { | ||
1107 | long i, irq_bits = 0xff; | ||
1108 | unsigned int d; | ||
1109 | |||
1110 | DDB(printk("Entered detect_sscape_pnp(%x)\n", devc->base)); | ||
1111 | |||
1112 | if (!request_region(devc->codec, 2, "sscape codec")) { | ||
1113 | printk(KERN_ERR "detect_sscape_pnp: port %x is not free\n", devc->codec); | ||
1114 | return 0; | ||
1115 | } | ||
1116 | |||
1117 | if ((inb(devc->base + 2) & 0x78) != 0) | ||
1118 | goto fail; | ||
1119 | |||
1120 | d = inb ( devc -> base + 4) & 0xF0; | ||
1121 | if (d & 0x80) | ||
1122 | goto fail; | ||
1123 | |||
1124 | if (d == 0) { | ||
1125 | devc->codec_type = 1; | ||
1126 | devc->ic_type = IC_ODIE; | ||
1127 | } else if ( (d & 0x60) != 0) { | ||
1128 | devc->codec_type = 2; | ||
1129 | devc->ic_type = IC_OPUS; | ||
1130 | } else if ( (d & 0x40) != 0) { /* WTF? */ | ||
1131 | devc->codec_type = 2; | ||
1132 | devc->ic_type = IC_ODIE; | ||
1133 | } else | ||
1134 | goto fail; | ||
1135 | |||
1136 | sscape_is_pnp = 1; | ||
1137 | |||
1138 | outb(0xFA, devc -> base+4); | ||
1139 | if ((inb( devc -> base+4) & 0x9F) != 0x0A) | ||
1140 | goto fail; | ||
1141 | outb(0xFE, devc -> base+4); | ||
1142 | if ( (inb(devc -> base+4) & 0x9F) != 0x0E) | ||
1143 | goto fail; | ||
1144 | if ( (inb(devc -> base+5) & 0x9F) != 0x0E) | ||
1145 | goto fail; | ||
1146 | |||
1147 | if (devc->codec_type == 2) { | ||
1148 | if (devc->codec != devc->base + 8) { | ||
1149 | printk("soundscape warning: incorrect codec port specified\n"); | ||
1150 | goto fail; | ||
1151 | } | ||
1152 | d = 0x10 | (sscape_read(devc, 9) & 0xCF); | ||
1153 | sscape_write(devc, 9, d); | ||
1154 | sscape_write(devc, 6, 0x80); | ||
1155 | } else { | ||
1156 | //todo: check codec is not base + 8 | ||
1157 | } | ||
1158 | |||
1159 | d = (sscape_read(devc, 9) & 0x3F) | 0xC0; | ||
1160 | sscape_write(devc, 9, d); | ||
1161 | |||
1162 | for (i = 0; i < 550000; i++) | ||
1163 | if ( !(inb(devc -> codec) & 0x80) ) break; | ||
1164 | |||
1165 | d = inb(devc -> codec); | ||
1166 | if (d & 0x80) | ||
1167 | goto fail; | ||
1168 | if ( inb(devc -> codec + 2) == 0xFF) | ||
1169 | goto fail; | ||
1170 | |||
1171 | sscape_write(devc, 9, sscape_read(devc, 9) & 0x3F ); | ||
1172 | |||
1173 | d = inb(devc -> codec) & 0x80; | ||
1174 | if ( d == 0) { | ||
1175 | printk(KERN_INFO "soundscape: hardware detected\n"); | ||
1176 | valid_interrupts = valid_interrupts_new; | ||
1177 | } else { | ||
1178 | printk(KERN_INFO "soundscape: board looks like media fx\n"); | ||
1179 | valid_interrupts = valid_interrupts_old; | ||
1180 | old_hardware = 1; | ||
1181 | } | ||
1182 | |||
1183 | sscape_write( devc, 9, 0xC0 | (sscape_read(devc, 9) & 0x3F) ); | ||
1184 | |||
1185 | for (i = 0; i < 550000; i++) | ||
1186 | if ( !(inb(devc -> codec) & 0x80)) | ||
1187 | break; | ||
1188 | |||
1189 | sscape_pnp_init_hw(devc); | ||
1190 | |||
1191 | for (i = 0; i < 4; i++) | ||
1192 | { | ||
1193 | if (devc->codec_irq == valid_interrupts[i]) { | ||
1194 | irq_bits = i; | ||
1195 | break; | ||
1196 | } | ||
1197 | } | ||
1198 | sscape_write(devc, GA_INTENA_REG, 0x00); | ||
1199 | sscape_write(devc, GA_DMACFG_REG, 0x50); | ||
1200 | sscape_write(devc, GA_DMAA_REG, 0x70); | ||
1201 | sscape_write(devc, GA_DMAB_REG, 0x20); | ||
1202 | sscape_write(devc, GA_INTCFG_REG, 0xf0); | ||
1203 | sscape_write(devc, GA_CDCFG_REG, 0x89 | (devc->dma << 4) | (irq_bits << 1)); | ||
1204 | |||
1205 | sscape_pnp_write_codec( devc, 0, sscape_pnp_read_codec( devc, 0) | 0x20); | ||
1206 | sscape_pnp_write_codec( devc, 0, sscape_pnp_read_codec( devc, 1) | 0x20); | ||
1207 | |||
1208 | return 1; | ||
1209 | fail: | ||
1210 | release_region(devc->codec, 2); | ||
1211 | return 0; | ||
1212 | } | ||
1213 | |||
1214 | static int __init probe_sscape(struct address_info *hw_config) | ||
1215 | { | ||
1216 | devc->base = hw_config->io_base; | ||
1217 | devc->irq = hw_config->irq; | ||
1218 | devc->dma = hw_config->dma; | ||
1219 | devc->osp = hw_config->osp; | ||
1220 | |||
1221 | #ifdef SSCAPE_DEBUG1 | ||
1222 | /* | ||
1223 | * Temporary debugging aid. Print contents of the registers before | ||
1224 | * changing them. | ||
1225 | */ | ||
1226 | { | ||
1227 | int i; | ||
1228 | |||
1229 | for (i = 0; i < 13; i++) | ||
1230 | printk("I%d = %02x (old value)\n", i, sscape_read(devc, i)); | ||
1231 | } | ||
1232 | #endif | ||
1233 | devc->failed = 1; | ||
1234 | |||
1235 | sscape_ports = request_region(devc->base, 2, "mpu401"); | ||
1236 | if (!sscape_ports) | ||
1237 | return 0; | ||
1238 | |||
1239 | if (!request_region(devc->base + 2, 6, "SoundScape")) { | ||
1240 | release_region(devc->base, 2); | ||
1241 | return 0; | ||
1242 | } | ||
1243 | |||
1244 | if (!detect_ga(devc)) { | ||
1245 | if (detect_sscape_pnp(devc)) | ||
1246 | return 1; | ||
1247 | release_region(devc->base, 2); | ||
1248 | release_region(devc->base + 2, 6); | ||
1249 | return 0; | ||
1250 | } | ||
1251 | |||
1252 | if (old_hardware) /* Check that it's really an old Spea/Reveal card. */ | ||
1253 | { | ||
1254 | unsigned char tmp; | ||
1255 | int cc; | ||
1256 | |||
1257 | if (!((tmp = sscape_read(devc, GA_HMCTL_REG)) & 0xc0)) | ||
1258 | { | ||
1259 | sscape_write(devc, GA_HMCTL_REG, tmp | 0x80); | ||
1260 | for (cc = 0; cc < 200000; ++cc) | ||
1261 | inb(devc->base + ODIE_ADDR); | ||
1262 | } | ||
1263 | } | ||
1264 | return 1; | ||
1265 | } | ||
1266 | |||
1267 | static int __init init_ss_ms_sound(struct address_info *hw_config) | ||
1268 | { | ||
1269 | int i, irq_bits = 0xff; | ||
1270 | int ad_flags = 0; | ||
1271 | struct resource *ports; | ||
1272 | |||
1273 | if (devc->failed) | ||
1274 | { | ||
1275 | printk(KERN_ERR "soundscape: Card not detected\n"); | ||
1276 | return 0; | ||
1277 | } | ||
1278 | if (devc->ok == 0) | ||
1279 | { | ||
1280 | printk(KERN_ERR "soundscape: Invalid initialization order.\n"); | ||
1281 | return 0; | ||
1282 | } | ||
1283 | for (i = 0; i < 4; i++) | ||
1284 | { | ||
1285 | if (hw_config->irq == valid_interrupts[i]) | ||
1286 | { | ||
1287 | irq_bits = i; | ||
1288 | break; | ||
1289 | } | ||
1290 | } | ||
1291 | if (irq_bits == 0xff) { | ||
1292 | printk(KERN_ERR "soundscape: Invalid MSS IRQ%d\n", hw_config->irq); | ||
1293 | return 0; | ||
1294 | } | ||
1295 | |||
1296 | if (old_hardware) | ||
1297 | ad_flags = 0x12345677; /* Tell that we may have a CS4248 chip (Spea-V7 Media FX) */ | ||
1298 | else if (sscape_is_pnp) | ||
1299 | ad_flags = 0x87654321; /* Tell that we have a soundscape pnp with 1845 chip */ | ||
1300 | |||
1301 | ports = request_region(hw_config->io_base, 4, "ad1848"); | ||
1302 | if (!ports) { | ||
1303 | printk(KERN_ERR "soundscape: ports busy\n"); | ||
1304 | return 0; | ||
1305 | } | ||
1306 | |||
1307 | if (!ad1848_detect(ports, &ad_flags, hw_config->osp)) { | ||
1308 | release_region(hw_config->io_base, 4); | ||
1309 | return 0; | ||
1310 | } | ||
1311 | |||
1312 | if (!sscape_is_pnp) /*pnp is already setup*/ | ||
1313 | { | ||
1314 | /* | ||
1315 | * Setup the DMA polarity. | ||
1316 | */ | ||
1317 | sscape_write(devc, GA_DMACFG_REG, 0x50); | ||
1318 | |||
1319 | /* | ||
1320 | * Take the gate-array off of the DMA channel. | ||
1321 | */ | ||
1322 | sscape_write(devc, GA_DMAB_REG, 0x20); | ||
1323 | |||
1324 | /* | ||
1325 | * Init the AD1848 (CD-ROM) config reg. | ||
1326 | */ | ||
1327 | sscape_write(devc, GA_CDCFG_REG, 0x89 | (hw_config->dma << 4) | (irq_bits << 1)); | ||
1328 | } | ||
1329 | |||
1330 | if (hw_config->irq == devc->irq) | ||
1331 | printk(KERN_WARNING "soundscape: Warning! The WSS mode can't share IRQ with MIDI\n"); | ||
1332 | |||
1333 | hw_config->slots[0] = ad1848_init( | ||
1334 | sscape_is_pnp ? "SoundScape" : "SoundScape PNP", | ||
1335 | ports, | ||
1336 | hw_config->irq, | ||
1337 | hw_config->dma, | ||
1338 | hw_config->dma, | ||
1339 | 0, | ||
1340 | devc->osp, | ||
1341 | THIS_MODULE); | ||
1342 | |||
1343 | |||
1344 | if (hw_config->slots[0] != -1) /* The AD1848 driver installed itself */ | ||
1345 | { | ||
1346 | audio_devs[hw_config->slots[0]]->coproc = &sscape_coproc_operations; | ||
1347 | devc->codec_audiodev = hw_config->slots[0]; | ||
1348 | devc->my_audiodev = hw_config->slots[0]; | ||
1349 | |||
1350 | /* Set proper routings here (what are they) */ | ||
1351 | AD1848_REROUTE(SOUND_MIXER_LINE1, SOUND_MIXER_LINE); | ||
1352 | } | ||
1353 | |||
1354 | #ifdef SSCAPE_DEBUG5 | ||
1355 | /* | ||
1356 | * Temporary debugging aid. Print contents of the registers | ||
1357 | * after the AD1848 device has been initialized. | ||
1358 | */ | ||
1359 | { | ||
1360 | int i; | ||
1361 | |||
1362 | for (i = 0; i < 13; i++) | ||
1363 | printk("I%d = %02x\n", i, sscape_read(devc, i)); | ||
1364 | } | ||
1365 | #endif | ||
1366 | return 1; | ||
1367 | } | ||
1368 | |||
1369 | static void __exit unload_sscape(struct address_info *hw_config) | ||
1370 | { | ||
1371 | release_region(devc->base + 2, 6); | ||
1372 | unload_mpu401(hw_config); | ||
1373 | if (sscape_is_pnp) | ||
1374 | release_region(devc->codec, 2); | ||
1375 | } | ||
1376 | |||
1377 | static void __exit unload_ss_ms_sound(struct address_info *hw_config) | ||
1378 | { | ||
1379 | ad1848_unload(hw_config->io_base, | ||
1380 | hw_config->irq, | ||
1381 | devc->dma, | ||
1382 | devc->dma, | ||
1383 | 0); | ||
1384 | sound_unload_audiodev(hw_config->slots[0]); | ||
1385 | } | ||
1386 | |||
1387 | static struct address_info cfg; | ||
1388 | static struct address_info cfg_mpu; | ||
1389 | |||
1390 | static int __initdata spea = -1; | ||
1391 | static int mss = 0; | ||
1392 | static int __initdata dma = -1; | ||
1393 | static int __initdata irq = -1; | ||
1394 | static int __initdata io = -1; | ||
1395 | static int __initdata mpu_irq = -1; | ||
1396 | static int __initdata mpu_io = -1; | ||
1397 | |||
1398 | module_param(dma, int, 0); | ||
1399 | module_param(irq, int, 0); | ||
1400 | module_param(io, int, 0); | ||
1401 | module_param(spea, int, 0); /* spea=0/1 set the old_hardware */ | ||
1402 | module_param(mpu_irq, int, 0); | ||
1403 | module_param(mpu_io, int, 0); | ||
1404 | module_param(mss, int, 0); | ||
1405 | |||
1406 | static int __init init_sscape(void) | ||
1407 | { | ||
1408 | printk(KERN_INFO "Soundscape driver Copyright (C) by Hannu Savolainen 1993-1996\n"); | ||
1409 | |||
1410 | cfg.irq = irq; | ||
1411 | cfg.dma = dma; | ||
1412 | cfg.io_base = io; | ||
1413 | |||
1414 | cfg_mpu.irq = mpu_irq; | ||
1415 | cfg_mpu.io_base = mpu_io; | ||
1416 | /* WEH - Try to get right dma channel */ | ||
1417 | cfg_mpu.dma = dma; | ||
1418 | |||
1419 | devc->codec = cfg.io_base; | ||
1420 | devc->codec_irq = cfg.irq; | ||
1421 | devc->codec_type = 0; | ||
1422 | devc->ic_type = 0; | ||
1423 | devc->raw_buf = NULL; | ||
1424 | spin_lock_init(&devc->lock); | ||
1425 | |||
1426 | if (cfg.dma == -1 || cfg.irq == -1 || cfg.io_base == -1) { | ||
1427 | printk(KERN_ERR "DMA, IRQ, and IO port must be specified.\n"); | ||
1428 | return -EINVAL; | ||
1429 | } | ||
1430 | |||
1431 | if (cfg_mpu.irq == -1 && cfg_mpu.io_base != -1) { | ||
1432 | printk(KERN_ERR "MPU_IRQ must be specified if MPU_IO is set.\n"); | ||
1433 | return -EINVAL; | ||
1434 | } | ||
1435 | |||
1436 | if(spea != -1) { | ||
1437 | old_hardware = spea; | ||
1438 | printk(KERN_INFO "Forcing %s hardware support.\n", | ||
1439 | spea?"new":"old"); | ||
1440 | } | ||
1441 | if (probe_sscape(&cfg_mpu) == 0) | ||
1442 | return -ENODEV; | ||
1443 | |||
1444 | attach_sscape(&cfg_mpu); | ||
1445 | |||
1446 | mss = init_ss_ms_sound(&cfg); | ||
1447 | |||
1448 | return 0; | ||
1449 | } | ||
1450 | |||
1451 | static void __exit cleanup_sscape(void) | ||
1452 | { | ||
1453 | if (mss) | ||
1454 | unload_ss_ms_sound(&cfg); | ||
1455 | unload_sscape(&cfg_mpu); | ||
1456 | } | ||
1457 | |||
1458 | module_init(init_sscape); | ||
1459 | module_exit(cleanup_sscape); | ||
1460 | |||
1461 | #ifndef MODULE | ||
1462 | static int __init setup_sscape(char *str) | ||
1463 | { | ||
1464 | /* io, irq, dma, mpu_io, mpu_irq */ | ||
1465 | int ints[6]; | ||
1466 | |||
1467 | str = get_options(str, ARRAY_SIZE(ints), ints); | ||
1468 | |||
1469 | io = ints[1]; | ||
1470 | irq = ints[2]; | ||
1471 | dma = ints[3]; | ||
1472 | mpu_io = ints[4]; | ||
1473 | mpu_irq = ints[5]; | ||
1474 | |||
1475 | return 1; | ||
1476 | } | ||
1477 | |||
1478 | __setup("sscape=", setup_sscape); | ||
1479 | #endif | ||
1480 | MODULE_LICENSE("GPL"); | ||
diff --git a/sound/oss/swarm_cs4297a.c b/sound/oss/swarm_cs4297a.c index 1edab7b4ea83..3136c88eacdf 100644 --- a/sound/oss/swarm_cs4297a.c +++ b/sound/oss/swarm_cs4297a.c | |||
@@ -110,9 +110,6 @@ static void start_adc(struct cs4297a_state *s); | |||
110 | // rather than 64k as some of the games work more responsively. | 110 | // rather than 64k as some of the games work more responsively. |
111 | // log base 2( buff sz = 32k). | 111 | // log base 2( buff sz = 32k). |
112 | 112 | ||
113 | //static unsigned long defaultorder = 3; | ||
114 | //MODULE_PARM(defaultorder, "i"); | ||
115 | |||
116 | // | 113 | // |
117 | // Turn on/off debugging compilation by commenting out "#define CSDEBUG" | 114 | // Turn on/off debugging compilation by commenting out "#define CSDEBUG" |
118 | // | 115 | // |
diff --git a/sound/oss/sys_timer.c b/sound/oss/sys_timer.c index 107534477a2f..8db6aefe15e4 100644 --- a/sound/oss/sys_timer.c +++ b/sound/oss/sys_timer.c | |||
@@ -100,9 +100,6 @@ def_tmr_open(int dev, int mode) | |||
100 | curr_tempo = 60; | 100 | curr_tempo = 60; |
101 | curr_timebase = 100; | 101 | curr_timebase = 100; |
102 | opened = 1; | 102 | opened = 1; |
103 | |||
104 | ; | ||
105 | |||
106 | { | 103 | { |
107 | def_tmr.expires = (1) + jiffies; | 104 | def_tmr.expires = (1) + jiffies; |
108 | add_timer(&def_tmr); | 105 | add_timer(&def_tmr); |
diff --git a/sound/parisc/harmony.c b/sound/parisc/harmony.c index e924492df21d..f47f9e226b08 100644 --- a/sound/parisc/harmony.c +++ b/sound/parisc/harmony.c | |||
@@ -624,6 +624,9 @@ snd_harmony_pcm_init(struct snd_harmony *h) | |||
624 | struct snd_pcm *pcm; | 624 | struct snd_pcm *pcm; |
625 | int err; | 625 | int err; |
626 | 626 | ||
627 | if (snd_BUG_ON(!h)) | ||
628 | return -EINVAL; | ||
629 | |||
627 | harmony_disable_interrupts(h); | 630 | harmony_disable_interrupts(h); |
628 | 631 | ||
629 | err = snd_pcm_new(h->card, "harmony", 0, 1, 1, &pcm); | 632 | err = snd_pcm_new(h->card, "harmony", 0, 1, 1, &pcm); |
@@ -865,11 +868,12 @@ snd_harmony_mixer_reset(struct snd_harmony *h) | |||
865 | static int __devinit | 868 | static int __devinit |
866 | snd_harmony_mixer_init(struct snd_harmony *h) | 869 | snd_harmony_mixer_init(struct snd_harmony *h) |
867 | { | 870 | { |
868 | struct snd_card *card = h->card; | 871 | struct snd_card *card; |
869 | int idx, err; | 872 | int idx, err; |
870 | 873 | ||
871 | if (snd_BUG_ON(!h)) | 874 | if (snd_BUG_ON(!h)) |
872 | return -EINVAL; | 875 | return -EINVAL; |
876 | card = h->card; | ||
873 | strcpy(card->mixername, "Harmony Gain control interface"); | 877 | strcpy(card->mixername, "Harmony Gain control interface"); |
874 | 878 | ||
875 | for (idx = 0; idx < HARMONY_CONTROLS; idx++) { | 879 | for (idx = 0; idx < HARMONY_CONTROLS; idx++) { |
diff --git a/sound/pci/Kconfig b/sound/pci/Kconfig index fb5ee3cc3968..75c602b5b132 100644 --- a/sound/pci/Kconfig +++ b/sound/pci/Kconfig | |||
@@ -259,7 +259,6 @@ config SND_CS5530 | |||
259 | 259 | ||
260 | config SND_CS5535AUDIO | 260 | config SND_CS5535AUDIO |
261 | tristate "CS5535/CS5536 Audio" | 261 | tristate "CS5535/CS5536 Audio" |
262 | depends on X86 && !X86_64 | ||
263 | select SND_PCM | 262 | select SND_PCM |
264 | select SND_AC97_CODEC | 263 | select SND_AC97_CODEC |
265 | help | 264 | help |
diff --git a/sound/pci/ac97/ac97_codec.c b/sound/pci/ac97/ac97_codec.c index 78288dbfc17a..20cb60afb200 100644 --- a/sound/pci/ac97/ac97_codec.c +++ b/sound/pci/ac97/ac97_codec.c | |||
@@ -603,8 +603,8 @@ AC97_SINGLE("Tone Control - Treble", AC97_MASTER_TONE, 0, 15, 1) | |||
603 | }; | 603 | }; |
604 | 604 | ||
605 | static const struct snd_kcontrol_new snd_ac97_controls_pc_beep[2] = { | 605 | static const struct snd_kcontrol_new snd_ac97_controls_pc_beep[2] = { |
606 | AC97_SINGLE("PC Speaker Playback Switch", AC97_PC_BEEP, 15, 1, 1), | 606 | AC97_SINGLE("Beep Playback Switch", AC97_PC_BEEP, 15, 1, 1), |
607 | AC97_SINGLE("PC Speaker Playback Volume", AC97_PC_BEEP, 1, 15, 1) | 607 | AC97_SINGLE("Beep Playback Volume", AC97_PC_BEEP, 1, 15, 1) |
608 | }; | 608 | }; |
609 | 609 | ||
610 | static const struct snd_kcontrol_new snd_ac97_controls_mic_boost = | 610 | static const struct snd_kcontrol_new snd_ac97_controls_mic_boost = |
@@ -1393,7 +1393,7 @@ static int snd_ac97_mixer_build(struct snd_ac97 * ac97) | |||
1393 | } | 1393 | } |
1394 | } | 1394 | } |
1395 | 1395 | ||
1396 | /* build PC Speaker controls */ | 1396 | /* build Beep controls */ |
1397 | if (!(ac97->flags & AC97_HAS_NO_PC_BEEP) && | 1397 | if (!(ac97->flags & AC97_HAS_NO_PC_BEEP) && |
1398 | ((ac97->flags & AC97_HAS_PC_BEEP) || | 1398 | ((ac97->flags & AC97_HAS_PC_BEEP) || |
1399 | snd_ac97_try_volume_mix(ac97, AC97_PC_BEEP))) { | 1399 | snd_ac97_try_volume_mix(ac97, AC97_PC_BEEP))) { |
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c index 7337abdbe4e3..139cf3b2b9d7 100644 --- a/sound/pci/ac97/ac97_patch.c +++ b/sound/pci/ac97/ac97_patch.c | |||
@@ -800,12 +800,12 @@ AC97_SINGLE("Mono Switch", AC97_MASTER_TONE, 7, 1, 1), | |||
800 | AC97_SINGLE("Mono ZC Switch", AC97_MASTER_TONE, 6, 1, 0), | 800 | AC97_SINGLE("Mono ZC Switch", AC97_MASTER_TONE, 6, 1, 0), |
801 | AC97_SINGLE("Mono Volume", AC97_MASTER_TONE, 0, 31, 1), | 801 | AC97_SINGLE("Mono Volume", AC97_MASTER_TONE, 0, 31, 1), |
802 | 802 | ||
803 | AC97_SINGLE("PC Beep to Headphone Switch", AC97_AUX, 15, 1, 1), | 803 | AC97_SINGLE("Beep to Headphone Switch", AC97_AUX, 15, 1, 1), |
804 | AC97_SINGLE("PC Beep to Headphone Volume", AC97_AUX, 12, 7, 1), | 804 | AC97_SINGLE("Beep to Headphone Volume", AC97_AUX, 12, 7, 1), |
805 | AC97_SINGLE("PC Beep to Master Switch", AC97_AUX, 11, 1, 1), | 805 | AC97_SINGLE("Beep to Master Switch", AC97_AUX, 11, 1, 1), |
806 | AC97_SINGLE("PC Beep to Master Volume", AC97_AUX, 8, 7, 1), | 806 | AC97_SINGLE("Beep to Master Volume", AC97_AUX, 8, 7, 1), |
807 | AC97_SINGLE("PC Beep to Mono Switch", AC97_AUX, 7, 1, 1), | 807 | AC97_SINGLE("Beep to Mono Switch", AC97_AUX, 7, 1, 1), |
808 | AC97_SINGLE("PC Beep to Mono Volume", AC97_AUX, 4, 7, 1), | 808 | AC97_SINGLE("Beep to Mono Volume", AC97_AUX, 4, 7, 1), |
809 | 809 | ||
810 | AC97_SINGLE("Voice to Headphone Switch", AC97_PCM, 15, 1, 1), | 810 | AC97_SINGLE("Voice to Headphone Switch", AC97_PCM, 15, 1, 1), |
811 | AC97_SINGLE("Voice to Headphone Volume", AC97_PCM, 12, 7, 1), | 811 | AC97_SINGLE("Voice to Headphone Volume", AC97_PCM, 12, 7, 1), |
diff --git a/sound/pci/ali5451/ali5451.c b/sound/pci/ali5451/ali5451.c index b458d208720b..aaf4da68969c 100644 --- a/sound/pci/ali5451/ali5451.c +++ b/sound/pci/ali5451/ali5451.c | |||
@@ -973,7 +973,7 @@ static void snd_ali_free_voice(struct snd_ali * codec, | |||
973 | void *private_data; | 973 | void *private_data; |
974 | 974 | ||
975 | snd_ali_printk("free_voice: channel=%d\n",pvoice->number); | 975 | snd_ali_printk("free_voice: channel=%d\n",pvoice->number); |
976 | if (pvoice == NULL || !pvoice->use) | 976 | if (!pvoice->use) |
977 | return; | 977 | return; |
978 | snd_ali_clear_voices(codec, pvoice->number, pvoice->number); | 978 | snd_ali_clear_voices(codec, pvoice->number, pvoice->number); |
979 | spin_lock_irq(&codec->voice_alloc); | 979 | spin_lock_irq(&codec->voice_alloc); |
diff --git a/sound/pci/azt3328.c b/sound/pci/azt3328.c index 8451a0169f32..69867ace7860 100644 --- a/sound/pci/azt3328.c +++ b/sound/pci/azt3328.c | |||
@@ -830,8 +830,8 @@ static struct snd_kcontrol_new snd_azf3328_mixer_controls[] __devinitdata = { | |||
830 | AZF3328_MIXER_SWITCH("Mic Boost (+20dB)", IDX_MIXER_MIC, 6, 0), | 830 | AZF3328_MIXER_SWITCH("Mic Boost (+20dB)", IDX_MIXER_MIC, 6, 0), |
831 | AZF3328_MIXER_SWITCH("Line Playback Switch", IDX_MIXER_LINEIN, 15, 1), | 831 | AZF3328_MIXER_SWITCH("Line Playback Switch", IDX_MIXER_LINEIN, 15, 1), |
832 | AZF3328_MIXER_VOL_STEREO("Line Playback Volume", IDX_MIXER_LINEIN, 0x1f, 1), | 832 | AZF3328_MIXER_VOL_STEREO("Line Playback Volume", IDX_MIXER_LINEIN, 0x1f, 1), |
833 | AZF3328_MIXER_SWITCH("PC Speaker Playback Switch", IDX_MIXER_PCBEEP, 15, 1), | 833 | AZF3328_MIXER_SWITCH("Beep Playback Switch", IDX_MIXER_PCBEEP, 15, 1), |
834 | AZF3328_MIXER_VOL_SPECIAL("PC Speaker Playback Volume", IDX_MIXER_PCBEEP, 0x0f, 1, 1), | 834 | AZF3328_MIXER_VOL_SPECIAL("Beep Playback Volume", IDX_MIXER_PCBEEP, 0x0f, 1, 1), |
835 | AZF3328_MIXER_SWITCH("Video Playback Switch", IDX_MIXER_VIDEO, 15, 1), | 835 | AZF3328_MIXER_SWITCH("Video Playback Switch", IDX_MIXER_VIDEO, 15, 1), |
836 | AZF3328_MIXER_VOL_STEREO("Video Playback Volume", IDX_MIXER_VIDEO, 0x1f, 1), | 836 | AZF3328_MIXER_VOL_STEREO("Video Playback Volume", IDX_MIXER_VIDEO, 0x1f, 1), |
837 | AZF3328_MIXER_SWITCH("Aux Playback Switch", IDX_MIXER_AUX, 15, 1), | 837 | AZF3328_MIXER_SWITCH("Aux Playback Switch", IDX_MIXER_AUX, 15, 1), |
diff --git a/sound/pci/bt87x.c b/sound/pci/bt87x.c index 24585c6c6d01..4e2b925a94cc 100644 --- a/sound/pci/bt87x.c +++ b/sound/pci/bt87x.c | |||
@@ -808,6 +808,8 @@ static struct pci_device_id snd_bt87x_ids[] = { | |||
808 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1002, 0x0001, GENERIC), | 808 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x1002, 0x0001, GENERIC), |
809 | /* Leadtek Winfast tv 2000xp delux */ | 809 | /* Leadtek Winfast tv 2000xp delux */ |
810 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x107d, 0x6606, GENERIC), | 810 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x107d, 0x6606, GENERIC), |
811 | /* Pinnacle PCTV */ | ||
812 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x11bd, 0x0012, GENERIC), | ||
811 | /* Voodoo TV 200 */ | 813 | /* Voodoo TV 200 */ |
812 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x121a, 0x3000, GENERIC), | 814 | BT_DEVICE(PCI_DEVICE_ID_BROOKTREE_878, 0x121a, 0x3000, GENERIC), |
813 | /* Askey Computer Corp. MagicTView'99 */ | 815 | /* Askey Computer Corp. MagicTView'99 */ |
diff --git a/sound/pci/ca0106/ca0106_mixer.c b/sound/pci/ca0106/ca0106_mixer.c index c8c6f437f5b3..8f443a9d61ec 100644 --- a/sound/pci/ca0106/ca0106_mixer.c +++ b/sound/pci/ca0106/ca0106_mixer.c | |||
@@ -792,8 +792,8 @@ int __devinit snd_ca0106_mixer(struct snd_ca0106 *emu) | |||
792 | "Phone Playback Volume", | 792 | "Phone Playback Volume", |
793 | "Video Playback Switch", | 793 | "Video Playback Switch", |
794 | "Video Playback Volume", | 794 | "Video Playback Volume", |
795 | "PC Speaker Playback Switch", | 795 | "Beep Playback Switch", |
796 | "PC Speaker Playback Volume", | 796 | "Beep Playback Volume", |
797 | "Mono Output Select", | 797 | "Mono Output Select", |
798 | "Capture Source", | 798 | "Capture Source", |
799 | "Capture Switch", | 799 | "Capture Switch", |
diff --git a/sound/pci/ca0106/ca0106_proc.c b/sound/pci/ca0106/ca0106_proc.c index c62b7d10ec61..15523e60351c 100644 --- a/sound/pci/ca0106/ca0106_proc.c +++ b/sound/pci/ca0106/ca0106_proc.c | |||
@@ -304,7 +304,7 @@ static void snd_ca0106_proc_reg_write32(struct snd_info_entry *entry, | |||
304 | while (!snd_info_get_line(buffer, line, sizeof(line))) { | 304 | while (!snd_info_get_line(buffer, line, sizeof(line))) { |
305 | if (sscanf(line, "%x %x", ®, &val) != 2) | 305 | if (sscanf(line, "%x %x", ®, &val) != 2) |
306 | continue; | 306 | continue; |
307 | if ((reg < 0x40) && (reg >=0) && (val <= 0xffffffff) ) { | 307 | if (reg < 0x40 && val <= 0xffffffff) { |
308 | spin_lock_irqsave(&emu->emu_lock, flags); | 308 | spin_lock_irqsave(&emu->emu_lock, flags); |
309 | outl(val, emu->port + (reg & 0xfffffffc)); | 309 | outl(val, emu->port + (reg & 0xfffffffc)); |
310 | spin_unlock_irqrestore(&emu->emu_lock, flags); | 310 | spin_unlock_irqrestore(&emu->emu_lock, flags); |
@@ -405,7 +405,7 @@ static void snd_ca0106_proc_reg_write(struct snd_info_entry *entry, | |||
405 | while (!snd_info_get_line(buffer, line, sizeof(line))) { | 405 | while (!snd_info_get_line(buffer, line, sizeof(line))) { |
406 | if (sscanf(line, "%x %x %x", ®, &channel_id, &val) != 3) | 406 | if (sscanf(line, "%x %x %x", ®, &channel_id, &val) != 3) |
407 | continue; | 407 | continue; |
408 | if ((reg < 0x80) && (reg >=0) && (val <= 0xffffffff) && (channel_id >=0) && (channel_id <= 3) ) | 408 | if (reg < 0x80 && val <= 0xffffffff && channel_id <= 3) |
409 | snd_ca0106_ptr_write(emu, reg, channel_id, val); | 409 | snd_ca0106_ptr_write(emu, reg, channel_id, val); |
410 | } | 410 | } |
411 | } | 411 | } |
diff --git a/sound/pci/cmipci.c b/sound/pci/cmipci.c index ddcd4a9fd7e6..a312bae08f52 100644 --- a/sound/pci/cmipci.c +++ b/sound/pci/cmipci.c | |||
@@ -2302,7 +2302,7 @@ static struct snd_kcontrol_new snd_cmipci_mixers[] __devinitdata = { | |||
2302 | CMIPCI_SB_VOL_MONO("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31), | 2302 | CMIPCI_SB_VOL_MONO("Mic Playback Volume", SB_DSP4_MIC_DEV, 3, 31), |
2303 | CMIPCI_SB_SW_MONO("Mic Playback Switch", 0), | 2303 | CMIPCI_SB_SW_MONO("Mic Playback Switch", 0), |
2304 | CMIPCI_DOUBLE("Mic Capture Switch", SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, 0, 0, 1, 0, 0), | 2304 | CMIPCI_DOUBLE("Mic Capture Switch", SB_DSP4_INPUT_LEFT, SB_DSP4_INPUT_RIGHT, 0, 0, 1, 0, 0), |
2305 | CMIPCI_SB_VOL_MONO("PC Speaker Playback Volume", SB_DSP4_SPEAKER_DEV, 6, 3), | 2305 | CMIPCI_SB_VOL_MONO("Beep Playback Volume", SB_DSP4_SPEAKER_DEV, 6, 3), |
2306 | CMIPCI_MIXER_VOL_STEREO("Aux Playback Volume", CM_REG_AUX_VOL, 4, 0, 15), | 2306 | CMIPCI_MIXER_VOL_STEREO("Aux Playback Volume", CM_REG_AUX_VOL, 4, 0, 15), |
2307 | CMIPCI_MIXER_SW_STEREO("Aux Playback Switch", CM_REG_MIXER2, CM_VAUXLM_SHIFT, CM_VAUXRM_SHIFT, 0), | 2307 | CMIPCI_MIXER_SW_STEREO("Aux Playback Switch", CM_REG_MIXER2, CM_VAUXLM_SHIFT, CM_VAUXRM_SHIFT, 0), |
2308 | CMIPCI_MIXER_SW_STEREO("Aux Capture Switch", CM_REG_MIXER2, CM_RAUXLEN_SHIFT, CM_RAUXREN_SHIFT, 0), | 2308 | CMIPCI_MIXER_SW_STEREO("Aux Capture Switch", CM_REG_MIXER2, CM_RAUXLEN_SHIFT, CM_RAUXREN_SHIFT, 0), |
@@ -2310,7 +2310,7 @@ static struct snd_kcontrol_new snd_cmipci_mixers[] __devinitdata = { | |||
2310 | CMIPCI_MIXER_VOL_MONO("Mic Capture Volume", CM_REG_MIXER2, CM_VADMIC_SHIFT, 7), | 2310 | CMIPCI_MIXER_VOL_MONO("Mic Capture Volume", CM_REG_MIXER2, CM_VADMIC_SHIFT, 7), |
2311 | CMIPCI_SB_VOL_MONO("Phone Playback Volume", CM_REG_EXTENT_IND, 5, 7), | 2311 | CMIPCI_SB_VOL_MONO("Phone Playback Volume", CM_REG_EXTENT_IND, 5, 7), |
2312 | CMIPCI_DOUBLE("Phone Playback Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 4, 4, 1, 0, 0), | 2312 | CMIPCI_DOUBLE("Phone Playback Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 4, 4, 1, 0, 0), |
2313 | CMIPCI_DOUBLE("PC Speaker Playback Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 3, 3, 1, 0, 0), | 2313 | CMIPCI_DOUBLE("Beep Playback Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 3, 3, 1, 0, 0), |
2314 | CMIPCI_DOUBLE("Mic Boost Capture Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 0, 0, 1, 0, 0), | 2314 | CMIPCI_DOUBLE("Mic Boost Capture Switch", CM_REG_EXTENT_IND, CM_REG_EXTENT_IND, 0, 0, 1, 0, 0), |
2315 | }; | 2315 | }; |
2316 | 2316 | ||
diff --git a/sound/pci/ctxfi/ctatc.c b/sound/pci/ctxfi/ctatc.c index b1b3a644f738..cb65bd0dd35b 100644 --- a/sound/pci/ctxfi/ctatc.c +++ b/sound/pci/ctxfi/ctatc.c | |||
@@ -240,7 +240,7 @@ static int select_rom(unsigned int pitch) | |||
240 | } else if (pitch == 0x02000000) { | 240 | } else if (pitch == 0x02000000) { |
241 | /* pitch == 2 */ | 241 | /* pitch == 2 */ |
242 | return 3; | 242 | return 3; |
243 | } else if (pitch >= 0x0 && pitch <= 0x08000000) { | 243 | } else if (pitch <= 0x08000000) { |
244 | /* 0 <= pitch <= 8 */ | 244 | /* 0 <= pitch <= 8 */ |
245 | return 0; | 245 | return 0; |
246 | } else { | 246 | } else { |
@@ -1037,7 +1037,7 @@ static int atc_line_front_unmute(struct ct_atc *atc, unsigned char state) | |||
1037 | 1037 | ||
1038 | static int atc_line_surround_unmute(struct ct_atc *atc, unsigned char state) | 1038 | static int atc_line_surround_unmute(struct ct_atc *atc, unsigned char state) |
1039 | { | 1039 | { |
1040 | return atc_daio_unmute(atc, state, LINEO4); | 1040 | return atc_daio_unmute(atc, state, LINEO2); |
1041 | } | 1041 | } |
1042 | 1042 | ||
1043 | static int atc_line_clfe_unmute(struct ct_atc *atc, unsigned char state) | 1043 | static int atc_line_clfe_unmute(struct ct_atc *atc, unsigned char state) |
@@ -1047,7 +1047,7 @@ static int atc_line_clfe_unmute(struct ct_atc *atc, unsigned char state) | |||
1047 | 1047 | ||
1048 | static int atc_line_rear_unmute(struct ct_atc *atc, unsigned char state) | 1048 | static int atc_line_rear_unmute(struct ct_atc *atc, unsigned char state) |
1049 | { | 1049 | { |
1050 | return atc_daio_unmute(atc, state, LINEO2); | 1050 | return atc_daio_unmute(atc, state, LINEO4); |
1051 | } | 1051 | } |
1052 | 1052 | ||
1053 | static int atc_line_in_unmute(struct ct_atc *atc, unsigned char state) | 1053 | static int atc_line_in_unmute(struct ct_atc *atc, unsigned char state) |
diff --git a/sound/pci/echoaudio/echoaudio.c b/sound/pci/echoaudio/echoaudio.c index da2065cd2c0d..1305f7ca02c3 100644 --- a/sound/pci/echoaudio/echoaudio.c +++ b/sound/pci/echoaudio/echoaudio.c | |||
@@ -950,7 +950,7 @@ static int __devinit snd_echo_new_pcm(struct echoaudio *chip) | |||
950 | Control interface | 950 | Control interface |
951 | ******************************************************************************/ | 951 | ******************************************************************************/ |
952 | 952 | ||
953 | #ifndef ECHOCARD_HAS_VMIXER | 953 | #if !defined(ECHOCARD_HAS_VMIXER) || defined(ECHOCARD_HAS_LINE_OUT_GAIN) |
954 | 954 | ||
955 | /******************* PCM output volume *******************/ | 955 | /******************* PCM output volume *******************/ |
956 | static int snd_echo_output_gain_info(struct snd_kcontrol *kcontrol, | 956 | static int snd_echo_output_gain_info(struct snd_kcontrol *kcontrol, |
@@ -1003,6 +1003,19 @@ static int snd_echo_output_gain_put(struct snd_kcontrol *kcontrol, | |||
1003 | return changed; | 1003 | return changed; |
1004 | } | 1004 | } |
1005 | 1005 | ||
1006 | #ifdef ECHOCARD_HAS_LINE_OUT_GAIN | ||
1007 | /* On the Mia this one controls the line-out volume */ | ||
1008 | static struct snd_kcontrol_new snd_echo_line_output_gain __devinitdata = { | ||
1009 | .name = "Line Playback Volume", | ||
1010 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
1011 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | | ||
1012 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, | ||
1013 | .info = snd_echo_output_gain_info, | ||
1014 | .get = snd_echo_output_gain_get, | ||
1015 | .put = snd_echo_output_gain_put, | ||
1016 | .tlv = {.p = db_scale_output_gain}, | ||
1017 | }; | ||
1018 | #else | ||
1006 | static struct snd_kcontrol_new snd_echo_pcm_output_gain __devinitdata = { | 1019 | static struct snd_kcontrol_new snd_echo_pcm_output_gain __devinitdata = { |
1007 | .name = "PCM Playback Volume", | 1020 | .name = "PCM Playback Volume", |
1008 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 1021 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
@@ -1012,9 +1025,10 @@ static struct snd_kcontrol_new snd_echo_pcm_output_gain __devinitdata = { | |||
1012 | .put = snd_echo_output_gain_put, | 1025 | .put = snd_echo_output_gain_put, |
1013 | .tlv = {.p = db_scale_output_gain}, | 1026 | .tlv = {.p = db_scale_output_gain}, |
1014 | }; | 1027 | }; |
1015 | |||
1016 | #endif | 1028 | #endif |
1017 | 1029 | ||
1030 | #endif /* !ECHOCARD_HAS_VMIXER || ECHOCARD_HAS_LINE_OUT_GAIN */ | ||
1031 | |||
1018 | 1032 | ||
1019 | 1033 | ||
1020 | #ifdef ECHOCARD_HAS_INPUT_GAIN | 1034 | #ifdef ECHOCARD_HAS_INPUT_GAIN |
@@ -2030,10 +2044,18 @@ static int __devinit snd_echo_probe(struct pci_dev *pci, | |||
2030 | snd_echo_vmixer.count = num_pipes_out(chip) * num_busses_out(chip); | 2044 | snd_echo_vmixer.count = num_pipes_out(chip) * num_busses_out(chip); |
2031 | if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_echo_vmixer, chip))) < 0) | 2045 | if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_echo_vmixer, chip))) < 0) |
2032 | goto ctl_error; | 2046 | goto ctl_error; |
2033 | #else | 2047 | #ifdef ECHOCARD_HAS_LINE_OUT_GAIN |
2034 | if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_echo_pcm_output_gain, chip))) < 0) | 2048 | err = snd_ctl_add(chip->card, |
2049 | snd_ctl_new1(&snd_echo_line_output_gain, chip)); | ||
2050 | if (err < 0) | ||
2035 | goto ctl_error; | 2051 | goto ctl_error; |
2036 | #endif | 2052 | #endif |
2053 | #else /* ECHOCARD_HAS_VMIXER */ | ||
2054 | err = snd_ctl_add(chip->card, | ||
2055 | snd_ctl_new1(&snd_echo_pcm_output_gain, chip)); | ||
2056 | if (err < 0) | ||
2057 | goto ctl_error; | ||
2058 | #endif /* ECHOCARD_HAS_VMIXER */ | ||
2037 | 2059 | ||
2038 | #ifdef ECHOCARD_HAS_INPUT_GAIN | 2060 | #ifdef ECHOCARD_HAS_INPUT_GAIN |
2039 | if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_echo_line_input_gain, chip))) < 0) | 2061 | if ((err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_echo_line_input_gain, chip))) < 0) |
diff --git a/sound/pci/echoaudio/mia.c b/sound/pci/echoaudio/mia.c index f3b9b45c9c1b..f05c8c097aa8 100644 --- a/sound/pci/echoaudio/mia.c +++ b/sound/pci/echoaudio/mia.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #define ECHOCARD_HAS_ADAT FALSE | 29 | #define ECHOCARD_HAS_ADAT FALSE |
30 | #define ECHOCARD_HAS_STEREO_BIG_ENDIAN32 | 30 | #define ECHOCARD_HAS_STEREO_BIG_ENDIAN32 |
31 | #define ECHOCARD_HAS_MIDI | 31 | #define ECHOCARD_HAS_MIDI |
32 | #define ECHOCARD_HAS_LINE_OUT_GAIN | ||
32 | 33 | ||
33 | /* Pipe indexes */ | 34 | /* Pipe indexes */ |
34 | #define PX_ANALOG_OUT 0 /* 8 */ | 35 | #define PX_ANALOG_OUT 0 /* 8 */ |
diff --git a/sound/pci/emu10k1/emu10k1x.c b/sound/pci/emu10k1/emu10k1x.c index 36e08bd2b3cc..6b8ae7b5cd54 100644 --- a/sound/pci/emu10k1/emu10k1x.c +++ b/sound/pci/emu10k1/emu10k1x.c | |||
@@ -1040,8 +1040,7 @@ static void snd_emu10k1x_proc_reg_write(struct snd_info_entry *entry, | |||
1040 | if (sscanf(line, "%x %x %x", ®, &channel_id, &val) != 3) | 1040 | if (sscanf(line, "%x %x %x", ®, &channel_id, &val) != 3) |
1041 | continue; | 1041 | continue; |
1042 | 1042 | ||
1043 | if ((reg < 0x49) && (reg >= 0) && (val <= 0xffffffff) | 1043 | if (reg < 0x49 && val <= 0xffffffff && channel_id <= 2) |
1044 | && (channel_id >= 0) && (channel_id <= 2) ) | ||
1045 | snd_emu10k1x_ptr_write(emu, reg, channel_id, val); | 1044 | snd_emu10k1x_ptr_write(emu, reg, channel_id, val); |
1046 | } | 1045 | } |
1047 | } | 1046 | } |
diff --git a/sound/pci/emu10k1/emumixer.c b/sound/pci/emu10k1/emumixer.c index b0fb6c917c38..05afe06e353a 100644 --- a/sound/pci/emu10k1/emumixer.c +++ b/sound/pci/emu10k1/emumixer.c | |||
@@ -1818,8 +1818,8 @@ int __devinit snd_emu10k1_mixer(struct snd_emu10k1 *emu, | |||
1818 | "Master Playback Switch", "Master Capture Switch", | 1818 | "Master Playback Switch", "Master Capture Switch", |
1819 | "Master Playback Volume", "Master Capture Volume", | 1819 | "Master Playback Volume", "Master Capture Volume", |
1820 | "Wave Master Playback Volume", "Master Playback Volume", | 1820 | "Wave Master Playback Volume", "Master Playback Volume", |
1821 | "PC Speaker Playback Switch", "PC Speaker Capture Switch", | 1821 | "Beep Playback Switch", "Beep Capture Switch", |
1822 | "PC Speaker Playback Volume", "PC Speaker Capture Volume", | 1822 | "Beep Playback Volume", "Beep Capture Volume", |
1823 | "Phone Playback Switch", "Phone Capture Switch", | 1823 | "Phone Playback Switch", "Phone Capture Switch", |
1824 | "Phone Playback Volume", "Phone Capture Volume", | 1824 | "Phone Playback Volume", "Phone Capture Volume", |
1825 | "Mic Playback Switch", "Mic Capture Switch", | 1825 | "Mic Playback Switch", "Mic Capture Switch", |
diff --git a/sound/pci/emu10k1/emuproc.c b/sound/pci/emu10k1/emuproc.c index 216f9748aff5..baa7cd508cd8 100644 --- a/sound/pci/emu10k1/emuproc.c +++ b/sound/pci/emu10k1/emuproc.c | |||
@@ -451,7 +451,7 @@ static void snd_emu_proc_io_reg_write(struct snd_info_entry *entry, | |||
451 | while (!snd_info_get_line(buffer, line, sizeof(line))) { | 451 | while (!snd_info_get_line(buffer, line, sizeof(line))) { |
452 | if (sscanf(line, "%x %x", ®, &val) != 2) | 452 | if (sscanf(line, "%x %x", ®, &val) != 2) |
453 | continue; | 453 | continue; |
454 | if ((reg < 0x40) && (reg >= 0) && (val <= 0xffffffff) ) { | 454 | if (reg < 0x40 && val <= 0xffffffff) { |
455 | spin_lock_irqsave(&emu->emu_lock, flags); | 455 | spin_lock_irqsave(&emu->emu_lock, flags); |
456 | outl(val, emu->port + (reg & 0xfffffffc)); | 456 | outl(val, emu->port + (reg & 0xfffffffc)); |
457 | spin_unlock_irqrestore(&emu->emu_lock, flags); | 457 | spin_unlock_irqrestore(&emu->emu_lock, flags); |
@@ -527,7 +527,7 @@ static void snd_emu_proc_ptr_reg_write(struct snd_info_entry *entry, | |||
527 | while (!snd_info_get_line(buffer, line, sizeof(line))) { | 527 | while (!snd_info_get_line(buffer, line, sizeof(line))) { |
528 | if (sscanf(line, "%x %x %x", ®, &channel_id, &val) != 3) | 528 | if (sscanf(line, "%x %x %x", ®, &channel_id, &val) != 3) |
529 | continue; | 529 | continue; |
530 | if ((reg < 0xa0) && (reg >= 0) && (val <= 0xffffffff) && (channel_id >= 0) && (channel_id <= 3) ) | 530 | if (reg < 0xa0 && val <= 0xffffffff && channel_id <= 3) |
531 | snd_ptr_write(emu, iobase, reg, channel_id, val); | 531 | snd_ptr_write(emu, iobase, reg, channel_id, val); |
532 | } | 532 | } |
533 | } | 533 | } |
diff --git a/sound/pci/emu10k1/io.c b/sound/pci/emu10k1/io.c index c1a5aa15af8f..5ef7080e14d0 100644 --- a/sound/pci/emu10k1/io.c +++ b/sound/pci/emu10k1/io.c | |||
@@ -256,7 +256,7 @@ int snd_emu1010_fpga_write(struct snd_emu10k1 * emu, u32 reg, u32 value) | |||
256 | if (reg > 0x3f) | 256 | if (reg > 0x3f) |
257 | return 1; | 257 | return 1; |
258 | reg += 0x40; /* 0x40 upwards are registers. */ | 258 | reg += 0x40; /* 0x40 upwards are registers. */ |
259 | if (value < 0 || value > 0x3f) /* 0 to 0x3f are values */ | 259 | if (value > 0x3f) /* 0 to 0x3f are values */ |
260 | return 1; | 260 | return 1; |
261 | spin_lock_irqsave(&emu->emu_lock, flags); | 261 | spin_lock_irqsave(&emu->emu_lock, flags); |
262 | outl(reg, emu->port + A_IOCFG); | 262 | outl(reg, emu->port + A_IOCFG); |
diff --git a/sound/pci/es1938.c b/sound/pci/es1938.c index 820318ee62c1..fb83e1ffa5cb 100644 --- a/sound/pci/es1938.c +++ b/sound/pci/es1938.c | |||
@@ -1387,7 +1387,7 @@ ES1938_DOUBLE_TLV("Aux Playback Volume", 0, 0x3a, 0x3a, 4, 0, 15, 0, | |||
1387 | db_scale_line), | 1387 | db_scale_line), |
1388 | ES1938_DOUBLE_TLV("Capture Volume", 0, 0xb4, 0xb4, 4, 0, 15, 0, | 1388 | ES1938_DOUBLE_TLV("Capture Volume", 0, 0xb4, 0xb4, 4, 0, 15, 0, |
1389 | db_scale_capture), | 1389 | db_scale_capture), |
1390 | ES1938_SINGLE("PC Speaker Volume", 0, 0x3c, 0, 7, 0), | 1390 | ES1938_SINGLE("Beep Volume", 0, 0x3c, 0, 7, 0), |
1391 | ES1938_SINGLE("Record Monitor", 0, 0xa8, 3, 1, 0), | 1391 | ES1938_SINGLE("Record Monitor", 0, 0xa8, 3, 1, 0), |
1392 | ES1938_SINGLE("Capture Switch", 0, 0x1c, 4, 1, 1), | 1392 | ES1938_SINGLE("Capture Switch", 0, 0x1c, 4, 1, 1), |
1393 | { | 1393 | { |
diff --git a/sound/pci/hda/Kconfig b/sound/pci/hda/Kconfig index 55545e0818b5..556cff937be7 100644 --- a/sound/pci/hda/Kconfig +++ b/sound/pci/hda/Kconfig | |||
@@ -38,9 +38,20 @@ config SND_HDA_INPUT_BEEP | |||
38 | Say Y here to build a digital beep interface for HD-audio | 38 | Say Y here to build a digital beep interface for HD-audio |
39 | driver. This interface is used to generate digital beeps. | 39 | driver. This interface is used to generate digital beeps. |
40 | 40 | ||
41 | config SND_HDA_INPUT_BEEP_MODE | ||
42 | int "Digital beep registration mode (0=off, 1=on, 2=mute sw on/off)" | ||
43 | depends on SND_HDA_INPUT_BEEP=y | ||
44 | default "1" | ||
45 | range 0 2 | ||
46 | help | ||
47 | Set 0 to disable the digital beep interface for HD-audio by default. | ||
48 | Set 1 to always enable the digital beep interface for HD-audio by | ||
49 | default. Set 2 to control the beep device registration to input | ||
50 | layer using a "Beep Switch" in mixer applications. | ||
51 | |||
41 | config SND_HDA_INPUT_JACK | 52 | config SND_HDA_INPUT_JACK |
42 | bool "Support jack plugging notification via input layer" | 53 | bool "Support jack plugging notification via input layer" |
43 | depends on INPUT=y || INPUT=SND_HDA_INTEL | 54 | depends on INPUT=y || INPUT=SND |
44 | select SND_JACK | 55 | select SND_JACK |
45 | help | 56 | help |
46 | Say Y here to enable the jack plugging notification via | 57 | Say Y here to enable the jack plugging notification via |
diff --git a/sound/pci/hda/hda_beep.c b/sound/pci/hda/hda_beep.c index 3f51a981e604..5fe34a8d8c81 100644 --- a/sound/pci/hda/hda_beep.c +++ b/sound/pci/hda/hda_beep.c | |||
@@ -113,23 +113,25 @@ static int snd_hda_beep_event(struct input_dev *dev, unsigned int type, | |||
113 | return 0; | 113 | return 0; |
114 | } | 114 | } |
115 | 115 | ||
116 | int snd_hda_attach_beep_device(struct hda_codec *codec, int nid) | 116 | static void snd_hda_do_detach(struct hda_beep *beep) |
117 | { | ||
118 | input_unregister_device(beep->dev); | ||
119 | beep->dev = NULL; | ||
120 | cancel_work_sync(&beep->beep_work); | ||
121 | /* turn off beep for sure */ | ||
122 | snd_hda_codec_write_cache(beep->codec, beep->nid, 0, | ||
123 | AC_VERB_SET_BEEP_CONTROL, 0); | ||
124 | } | ||
125 | |||
126 | static int snd_hda_do_attach(struct hda_beep *beep) | ||
117 | { | 127 | { |
118 | struct input_dev *input_dev; | 128 | struct input_dev *input_dev; |
119 | struct hda_beep *beep; | 129 | struct hda_codec *codec = beep->codec; |
120 | int err; | 130 | int err; |
121 | 131 | ||
122 | if (!snd_hda_get_bool_hint(codec, "beep")) | ||
123 | return 0; /* disabled explicitly */ | ||
124 | |||
125 | beep = kzalloc(sizeof(*beep), GFP_KERNEL); | ||
126 | if (beep == NULL) | ||
127 | return -ENOMEM; | ||
128 | snprintf(beep->phys, sizeof(beep->phys), | ||
129 | "card%d/codec#%d/beep0", codec->bus->card->number, codec->addr); | ||
130 | input_dev = input_allocate_device(); | 132 | input_dev = input_allocate_device(); |
131 | if (!input_dev) { | 133 | if (!input_dev) { |
132 | kfree(beep); | 134 | printk(KERN_INFO "hda_beep: unable to allocate input device\n"); |
133 | return -ENOMEM; | 135 | return -ENOMEM; |
134 | } | 136 | } |
135 | 137 | ||
@@ -151,21 +153,96 @@ int snd_hda_attach_beep_device(struct hda_codec *codec, int nid) | |||
151 | err = input_register_device(input_dev); | 153 | err = input_register_device(input_dev); |
152 | if (err < 0) { | 154 | if (err < 0) { |
153 | input_free_device(input_dev); | 155 | input_free_device(input_dev); |
154 | kfree(beep); | 156 | printk(KERN_INFO "hda_beep: unable to register input device\n"); |
155 | return err; | 157 | return err; |
156 | } | 158 | } |
159 | beep->dev = input_dev; | ||
160 | return 0; | ||
161 | } | ||
162 | |||
163 | static void snd_hda_do_register(struct work_struct *work) | ||
164 | { | ||
165 | struct hda_beep *beep = | ||
166 | container_of(work, struct hda_beep, register_work); | ||
167 | |||
168 | mutex_lock(&beep->mutex); | ||
169 | if (beep->enabled && !beep->dev) | ||
170 | snd_hda_do_attach(beep); | ||
171 | mutex_unlock(&beep->mutex); | ||
172 | } | ||
173 | |||
174 | static void snd_hda_do_unregister(struct work_struct *work) | ||
175 | { | ||
176 | struct hda_beep *beep = | ||
177 | container_of(work, struct hda_beep, unregister_work.work); | ||
178 | |||
179 | mutex_lock(&beep->mutex); | ||
180 | if (!beep->enabled && beep->dev) | ||
181 | snd_hda_do_detach(beep); | ||
182 | mutex_unlock(&beep->mutex); | ||
183 | } | ||
157 | 184 | ||
185 | int snd_hda_enable_beep_device(struct hda_codec *codec, int enable) | ||
186 | { | ||
187 | struct hda_beep *beep = codec->beep; | ||
188 | enable = !!enable; | ||
189 | if (beep == NULL) | ||
190 | return 0; | ||
191 | if (beep->enabled != enable) { | ||
192 | beep->enabled = enable; | ||
193 | if (!enable) { | ||
194 | /* turn off beep */ | ||
195 | snd_hda_codec_write_cache(beep->codec, beep->nid, 0, | ||
196 | AC_VERB_SET_BEEP_CONTROL, 0); | ||
197 | } | ||
198 | if (beep->mode == HDA_BEEP_MODE_SWREG) { | ||
199 | if (enable) { | ||
200 | cancel_delayed_work(&beep->unregister_work); | ||
201 | schedule_work(&beep->register_work); | ||
202 | } else { | ||
203 | schedule_delayed_work(&beep->unregister_work, | ||
204 | HZ); | ||
205 | } | ||
206 | } | ||
207 | return 1; | ||
208 | } | ||
209 | return 0; | ||
210 | } | ||
211 | EXPORT_SYMBOL_HDA(snd_hda_enable_beep_device); | ||
212 | |||
213 | int snd_hda_attach_beep_device(struct hda_codec *codec, int nid) | ||
214 | { | ||
215 | struct hda_beep *beep; | ||
216 | |||
217 | if (!snd_hda_get_bool_hint(codec, "beep")) | ||
218 | return 0; /* disabled explicitly by hints */ | ||
219 | if (codec->beep_mode == HDA_BEEP_MODE_OFF) | ||
220 | return 0; /* disabled by module option */ | ||
221 | |||
222 | beep = kzalloc(sizeof(*beep), GFP_KERNEL); | ||
223 | if (beep == NULL) | ||
224 | return -ENOMEM; | ||
225 | snprintf(beep->phys, sizeof(beep->phys), | ||
226 | "card%d/codec#%d/beep0", codec->bus->card->number, codec->addr); | ||
158 | /* enable linear scale */ | 227 | /* enable linear scale */ |
159 | snd_hda_codec_write(codec, nid, 0, | 228 | snd_hda_codec_write(codec, nid, 0, |
160 | AC_VERB_SET_DIGI_CONVERT_2, 0x01); | 229 | AC_VERB_SET_DIGI_CONVERT_2, 0x01); |
161 | 230 | ||
162 | beep->nid = nid; | 231 | beep->nid = nid; |
163 | beep->dev = input_dev; | ||
164 | beep->codec = codec; | 232 | beep->codec = codec; |
165 | beep->enabled = 1; | 233 | beep->mode = codec->beep_mode; |
166 | codec->beep = beep; | 234 | codec->beep = beep; |
167 | 235 | ||
236 | INIT_WORK(&beep->register_work, &snd_hda_do_register); | ||
237 | INIT_DELAYED_WORK(&beep->unregister_work, &snd_hda_do_unregister); | ||
168 | INIT_WORK(&beep->beep_work, &snd_hda_generate_beep); | 238 | INIT_WORK(&beep->beep_work, &snd_hda_generate_beep); |
239 | mutex_init(&beep->mutex); | ||
240 | |||
241 | if (beep->mode == HDA_BEEP_MODE_ON) { | ||
242 | beep->enabled = 1; | ||
243 | snd_hda_do_register(&beep->register_work); | ||
244 | } | ||
245 | |||
169 | return 0; | 246 | return 0; |
170 | } | 247 | } |
171 | EXPORT_SYMBOL_HDA(snd_hda_attach_beep_device); | 248 | EXPORT_SYMBOL_HDA(snd_hda_attach_beep_device); |
@@ -174,11 +251,12 @@ void snd_hda_detach_beep_device(struct hda_codec *codec) | |||
174 | { | 251 | { |
175 | struct hda_beep *beep = codec->beep; | 252 | struct hda_beep *beep = codec->beep; |
176 | if (beep) { | 253 | if (beep) { |
177 | cancel_work_sync(&beep->beep_work); | 254 | cancel_work_sync(&beep->register_work); |
178 | 255 | cancel_delayed_work(&beep->unregister_work); | |
179 | input_unregister_device(beep->dev); | 256 | if (beep->enabled) |
180 | kfree(beep); | 257 | snd_hda_do_detach(beep); |
181 | codec->beep = NULL; | 258 | codec->beep = NULL; |
259 | kfree(beep); | ||
182 | } | 260 | } |
183 | } | 261 | } |
184 | EXPORT_SYMBOL_HDA(snd_hda_detach_beep_device); | 262 | EXPORT_SYMBOL_HDA(snd_hda_detach_beep_device); |
diff --git a/sound/pci/hda/hda_beep.h b/sound/pci/hda/hda_beep.h index 0c3de787c717..f1de1bac042c 100644 --- a/sound/pci/hda/hda_beep.h +++ b/sound/pci/hda/hda_beep.h | |||
@@ -24,19 +24,29 @@ | |||
24 | 24 | ||
25 | #include "hda_codec.h" | 25 | #include "hda_codec.h" |
26 | 26 | ||
27 | #define HDA_BEEP_MODE_OFF 0 | ||
28 | #define HDA_BEEP_MODE_ON 1 | ||
29 | #define HDA_BEEP_MODE_SWREG 2 | ||
30 | |||
27 | /* beep information */ | 31 | /* beep information */ |
28 | struct hda_beep { | 32 | struct hda_beep { |
29 | struct input_dev *dev; | 33 | struct input_dev *dev; |
30 | struct hda_codec *codec; | 34 | struct hda_codec *codec; |
35 | unsigned int mode; | ||
31 | char phys[32]; | 36 | char phys[32]; |
32 | int tone; | 37 | int tone; |
33 | hda_nid_t nid; | 38 | hda_nid_t nid; |
34 | unsigned int enabled:1; | 39 | unsigned int enabled:1; |
40 | unsigned int request_enable:1; | ||
35 | unsigned int linear_tone:1; /* linear tone for IDT/STAC codec */ | 41 | unsigned int linear_tone:1; /* linear tone for IDT/STAC codec */ |
42 | struct work_struct register_work; /* registration work */ | ||
43 | struct delayed_work unregister_work; /* unregistration work */ | ||
36 | struct work_struct beep_work; /* scheduled task for beep event */ | 44 | struct work_struct beep_work; /* scheduled task for beep event */ |
45 | struct mutex mutex; | ||
37 | }; | 46 | }; |
38 | 47 | ||
39 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | 48 | #ifdef CONFIG_SND_HDA_INPUT_BEEP |
49 | int snd_hda_enable_beep_device(struct hda_codec *codec, int enable); | ||
40 | int snd_hda_attach_beep_device(struct hda_codec *codec, int nid); | 50 | int snd_hda_attach_beep_device(struct hda_codec *codec, int nid); |
41 | void snd_hda_detach_beep_device(struct hda_codec *codec); | 51 | void snd_hda_detach_beep_device(struct hda_codec *codec); |
42 | #else | 52 | #else |
diff --git a/sound/pci/hda/hda_codec.c b/sound/pci/hda/hda_codec.c index af989f660cca..9cfdb771928c 100644 --- a/sound/pci/hda/hda_codec.c +++ b/sound/pci/hda/hda_codec.c | |||
@@ -30,6 +30,7 @@ | |||
30 | #include <sound/tlv.h> | 30 | #include <sound/tlv.h> |
31 | #include <sound/initval.h> | 31 | #include <sound/initval.h> |
32 | #include "hda_local.h" | 32 | #include "hda_local.h" |
33 | #include "hda_beep.h" | ||
33 | #include <sound/hda_hwdep.h> | 34 | #include <sound/hda_hwdep.h> |
34 | 35 | ||
35 | /* | 36 | /* |
@@ -93,6 +94,13 @@ static void hda_keep_power_on(struct hda_codec *codec); | |||
93 | static inline void hda_keep_power_on(struct hda_codec *codec) {} | 94 | static inline void hda_keep_power_on(struct hda_codec *codec) {} |
94 | #endif | 95 | #endif |
95 | 96 | ||
97 | /** | ||
98 | * snd_hda_get_jack_location - Give a location string of the jack | ||
99 | * @cfg: pin default config value | ||
100 | * | ||
101 | * Parse the pin default config value and returns the string of the | ||
102 | * jack location, e.g. "Rear", "Front", etc. | ||
103 | */ | ||
96 | const char *snd_hda_get_jack_location(u32 cfg) | 104 | const char *snd_hda_get_jack_location(u32 cfg) |
97 | { | 105 | { |
98 | static char *bases[7] = { | 106 | static char *bases[7] = { |
@@ -120,6 +128,13 @@ const char *snd_hda_get_jack_location(u32 cfg) | |||
120 | } | 128 | } |
121 | EXPORT_SYMBOL_HDA(snd_hda_get_jack_location); | 129 | EXPORT_SYMBOL_HDA(snd_hda_get_jack_location); |
122 | 130 | ||
131 | /** | ||
132 | * snd_hda_get_jack_connectivity - Give a connectivity string of the jack | ||
133 | * @cfg: pin default config value | ||
134 | * | ||
135 | * Parse the pin default config value and returns the string of the | ||
136 | * jack connectivity, i.e. external or internal connection. | ||
137 | */ | ||
123 | const char *snd_hda_get_jack_connectivity(u32 cfg) | 138 | const char *snd_hda_get_jack_connectivity(u32 cfg) |
124 | { | 139 | { |
125 | static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" }; | 140 | static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" }; |
@@ -128,6 +143,13 @@ const char *snd_hda_get_jack_connectivity(u32 cfg) | |||
128 | } | 143 | } |
129 | EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity); | 144 | EXPORT_SYMBOL_HDA(snd_hda_get_jack_connectivity); |
130 | 145 | ||
146 | /** | ||
147 | * snd_hda_get_jack_type - Give a type string of the jack | ||
148 | * @cfg: pin default config value | ||
149 | * | ||
150 | * Parse the pin default config value and returns the string of the | ||
151 | * jack type, i.e. the purpose of the jack, such as Line-Out or CD. | ||
152 | */ | ||
131 | const char *snd_hda_get_jack_type(u32 cfg) | 153 | const char *snd_hda_get_jack_type(u32 cfg) |
132 | { | 154 | { |
133 | static char *jack_types[16] = { | 155 | static char *jack_types[16] = { |
@@ -515,6 +537,7 @@ static int snd_hda_bus_dev_register(struct snd_device *device) | |||
515 | struct hda_codec *codec; | 537 | struct hda_codec *codec; |
516 | list_for_each_entry(codec, &bus->codec_list, list) { | 538 | list_for_each_entry(codec, &bus->codec_list, list) { |
517 | snd_hda_hwdep_add_sysfs(codec); | 539 | snd_hda_hwdep_add_sysfs(codec); |
540 | snd_hda_hwdep_add_power_sysfs(codec); | ||
518 | } | 541 | } |
519 | return 0; | 542 | return 0; |
520 | } | 543 | } |
@@ -820,6 +843,16 @@ int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list, | |||
820 | return 0; | 843 | return 0; |
821 | } | 844 | } |
822 | 845 | ||
846 | /** | ||
847 | * snd_hda_codec_set_pincfg - Override a pin default configuration | ||
848 | * @codec: the HDA codec | ||
849 | * @nid: NID to set the pin config | ||
850 | * @cfg: the pin default config value | ||
851 | * | ||
852 | * Override a pin default configuration value in the cache. | ||
853 | * This value can be read by snd_hda_codec_get_pincfg() in a higher | ||
854 | * priority than the real hardware value. | ||
855 | */ | ||
823 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, | 856 | int snd_hda_codec_set_pincfg(struct hda_codec *codec, |
824 | hda_nid_t nid, unsigned int cfg) | 857 | hda_nid_t nid, unsigned int cfg) |
825 | { | 858 | { |
@@ -827,7 +860,15 @@ int snd_hda_codec_set_pincfg(struct hda_codec *codec, | |||
827 | } | 860 | } |
828 | EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg); | 861 | EXPORT_SYMBOL_HDA(snd_hda_codec_set_pincfg); |
829 | 862 | ||
830 | /* get the current pin config value of the given pin NID */ | 863 | /** |
864 | * snd_hda_codec_get_pincfg - Obtain a pin-default configuration | ||
865 | * @codec: the HDA codec | ||
866 | * @nid: NID to get the pin config | ||
867 | * | ||
868 | * Get the current pin config value of the given pin NID. | ||
869 | * If the pincfg value is cached or overridden via sysfs or driver, | ||
870 | * returns the cached value. | ||
871 | */ | ||
831 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid) | 872 | unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid) |
832 | { | 873 | { |
833 | struct hda_pincfg *pin; | 874 | struct hda_pincfg *pin; |
@@ -944,7 +985,7 @@ int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr | |||
944 | mutex_init(&codec->control_mutex); | 985 | mutex_init(&codec->control_mutex); |
945 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); | 986 | init_hda_cache(&codec->amp_cache, sizeof(struct hda_amp_info)); |
946 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); | 987 | init_hda_cache(&codec->cmd_cache, sizeof(struct hda_cache_head)); |
947 | snd_array_init(&codec->mixers, sizeof(struct snd_kcontrol *), 32); | 988 | snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 60); |
948 | snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16); | 989 | snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16); |
949 | snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16); | 990 | snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16); |
950 | if (codec->bus->modelname) { | 991 | if (codec->bus->modelname) { |
@@ -1026,6 +1067,15 @@ int /*__devinit*/ snd_hda_codec_new(struct hda_bus *bus, unsigned int codec_addr | |||
1026 | } | 1067 | } |
1027 | EXPORT_SYMBOL_HDA(snd_hda_codec_new); | 1068 | EXPORT_SYMBOL_HDA(snd_hda_codec_new); |
1028 | 1069 | ||
1070 | /** | ||
1071 | * snd_hda_codec_configure - (Re-)configure the HD-audio codec | ||
1072 | * @codec: the HDA codec | ||
1073 | * | ||
1074 | * Start parsing of the given codec tree and (re-)initialize the whole | ||
1075 | * patch instance. | ||
1076 | * | ||
1077 | * Returns 0 if successful or a negative error code. | ||
1078 | */ | ||
1029 | int snd_hda_codec_configure(struct hda_codec *codec) | 1079 | int snd_hda_codec_configure(struct hda_codec *codec) |
1030 | { | 1080 | { |
1031 | int err; | 1081 | int err; |
@@ -1088,6 +1138,11 @@ void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid, | |||
1088 | } | 1138 | } |
1089 | EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream); | 1139 | EXPORT_SYMBOL_HDA(snd_hda_codec_setup_stream); |
1090 | 1140 | ||
1141 | /** | ||
1142 | * snd_hda_codec_cleanup_stream - clean up the codec for closing | ||
1143 | * @codec: the CODEC to clean up | ||
1144 | * @nid: the NID to clean up | ||
1145 | */ | ||
1091 | void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid) | 1146 | void snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid) |
1092 | { | 1147 | { |
1093 | if (!nid) | 1148 | if (!nid) |
@@ -1163,8 +1218,17 @@ get_alloc_amp_hash(struct hda_codec *codec, u32 key) | |||
1163 | return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key); | 1218 | return (struct hda_amp_info *)get_alloc_hash(&codec->amp_cache, key); |
1164 | } | 1219 | } |
1165 | 1220 | ||
1166 | /* | 1221 | /** |
1167 | * query AMP capabilities for the given widget and direction | 1222 | * query_amp_caps - query AMP capabilities |
1223 | * @codec: the HD-auio codec | ||
1224 | * @nid: the NID to query | ||
1225 | * @direction: either #HDA_INPUT or #HDA_OUTPUT | ||
1226 | * | ||
1227 | * Query AMP capabilities for the given widget and direction. | ||
1228 | * Returns the obtained capability bits. | ||
1229 | * | ||
1230 | * When cap bits have been already read, this doesn't read again but | ||
1231 | * returns the cached value. | ||
1168 | */ | 1232 | */ |
1169 | u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction) | 1233 | u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction) |
1170 | { | 1234 | { |
@@ -1187,6 +1251,19 @@ u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction) | |||
1187 | } | 1251 | } |
1188 | EXPORT_SYMBOL_HDA(query_amp_caps); | 1252 | EXPORT_SYMBOL_HDA(query_amp_caps); |
1189 | 1253 | ||
1254 | /** | ||
1255 | * snd_hda_override_amp_caps - Override the AMP capabilities | ||
1256 | * @codec: the CODEC to clean up | ||
1257 | * @nid: the NID to clean up | ||
1258 | * @direction: either #HDA_INPUT or #HDA_OUTPUT | ||
1259 | * @caps: the capability bits to set | ||
1260 | * | ||
1261 | * Override the cached AMP caps bits value by the given one. | ||
1262 | * This function is useful if the driver needs to adjust the AMP ranges, | ||
1263 | * e.g. limit to 0dB, etc. | ||
1264 | * | ||
1265 | * Returns zero if successful or a negative error code. | ||
1266 | */ | ||
1190 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, | 1267 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
1191 | unsigned int caps) | 1268 | unsigned int caps) |
1192 | { | 1269 | { |
@@ -1222,6 +1299,17 @@ static unsigned int read_pin_cap(struct hda_codec *codec, hda_nid_t nid) | |||
1222 | return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); | 1299 | return snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); |
1223 | } | 1300 | } |
1224 | 1301 | ||
1302 | /** | ||
1303 | * snd_hda_query_pin_caps - Query PIN capabilities | ||
1304 | * @codec: the HD-auio codec | ||
1305 | * @nid: the NID to query | ||
1306 | * | ||
1307 | * Query PIN capabilities for the given widget. | ||
1308 | * Returns the obtained capability bits. | ||
1309 | * | ||
1310 | * When cap bits have been already read, this doesn't read again but | ||
1311 | * returns the cached value. | ||
1312 | */ | ||
1225 | u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid) | 1313 | u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid) |
1226 | { | 1314 | { |
1227 | return query_caps_hash(codec, nid, HDA_HASH_PINCAP_KEY(nid), | 1315 | return query_caps_hash(codec, nid, HDA_HASH_PINCAP_KEY(nid), |
@@ -1229,6 +1317,40 @@ u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid) | |||
1229 | } | 1317 | } |
1230 | EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps); | 1318 | EXPORT_SYMBOL_HDA(snd_hda_query_pin_caps); |
1231 | 1319 | ||
1320 | /** | ||
1321 | * snd_hda_pin_sense - execute pin sense measurement | ||
1322 | * @codec: the CODEC to sense | ||
1323 | * @nid: the pin NID to sense | ||
1324 | * | ||
1325 | * Execute necessary pin sense measurement and return its Presence Detect, | ||
1326 | * Impedance, ELD Valid etc. status bits. | ||
1327 | */ | ||
1328 | u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid) | ||
1329 | { | ||
1330 | u32 pincap = snd_hda_query_pin_caps(codec, nid); | ||
1331 | |||
1332 | if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */ | ||
1333 | snd_hda_codec_read(codec, nid, 0, AC_VERB_SET_PIN_SENSE, 0); | ||
1334 | |||
1335 | return snd_hda_codec_read(codec, nid, 0, | ||
1336 | AC_VERB_GET_PIN_SENSE, 0); | ||
1337 | } | ||
1338 | EXPORT_SYMBOL_HDA(snd_hda_pin_sense); | ||
1339 | |||
1340 | /** | ||
1341 | * snd_hda_jack_detect - query pin Presence Detect status | ||
1342 | * @codec: the CODEC to sense | ||
1343 | * @nid: the pin NID to sense | ||
1344 | * | ||
1345 | * Query and return the pin's Presence Detect status. | ||
1346 | */ | ||
1347 | int snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid) | ||
1348 | { | ||
1349 | u32 sense = snd_hda_pin_sense(codec, nid); | ||
1350 | return !!(sense & AC_PINSENSE_PRESENCE); | ||
1351 | } | ||
1352 | EXPORT_SYMBOL_HDA(snd_hda_jack_detect); | ||
1353 | |||
1232 | /* | 1354 | /* |
1233 | * read the current volume to info | 1355 | * read the current volume to info |
1234 | * if the cache exists, read the cache value. | 1356 | * if the cache exists, read the cache value. |
@@ -1269,8 +1391,15 @@ static void put_vol_mute(struct hda_codec *codec, struct hda_amp_info *info, | |||
1269 | info->vol[ch] = val; | 1391 | info->vol[ch] = val; |
1270 | } | 1392 | } |
1271 | 1393 | ||
1272 | /* | 1394 | /** |
1273 | * read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit. | 1395 | * snd_hda_codec_amp_read - Read AMP value |
1396 | * @codec: HD-audio codec | ||
1397 | * @nid: NID to read the AMP value | ||
1398 | * @ch: channel (left=0 or right=1) | ||
1399 | * @direction: #HDA_INPUT or #HDA_OUTPUT | ||
1400 | * @index: the index value (only for input direction) | ||
1401 | * | ||
1402 | * Read AMP value. The volume is between 0 to 0x7f, 0x80 = mute bit. | ||
1274 | */ | 1403 | */ |
1275 | int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, | 1404 | int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, |
1276 | int direction, int index) | 1405 | int direction, int index) |
@@ -1283,8 +1412,18 @@ int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, | |||
1283 | } | 1412 | } |
1284 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read); | 1413 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_read); |
1285 | 1414 | ||
1286 | /* | 1415 | /** |
1287 | * update the AMP value, mask = bit mask to set, val = the value | 1416 | * snd_hda_codec_amp_update - update the AMP value |
1417 | * @codec: HD-audio codec | ||
1418 | * @nid: NID to read the AMP value | ||
1419 | * @ch: channel (left=0 or right=1) | ||
1420 | * @direction: #HDA_INPUT or #HDA_OUTPUT | ||
1421 | * @idx: the index value (only for input direction) | ||
1422 | * @mask: bit mask to set | ||
1423 | * @val: the bits value to set | ||
1424 | * | ||
1425 | * Update the AMP value with a bit mask. | ||
1426 | * Returns 0 if the value is unchanged, 1 if changed. | ||
1288 | */ | 1427 | */ |
1289 | int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch, | 1428 | int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch, |
1290 | int direction, int idx, int mask, int val) | 1429 | int direction, int idx, int mask, int val) |
@@ -1303,8 +1442,17 @@ int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid, int ch, | |||
1303 | } | 1442 | } |
1304 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update); | 1443 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_update); |
1305 | 1444 | ||
1306 | /* | 1445 | /** |
1307 | * update the AMP stereo with the same mask and value | 1446 | * snd_hda_codec_amp_stereo - update the AMP stereo values |
1447 | * @codec: HD-audio codec | ||
1448 | * @nid: NID to read the AMP value | ||
1449 | * @direction: #HDA_INPUT or #HDA_OUTPUT | ||
1450 | * @idx: the index value (only for input direction) | ||
1451 | * @mask: bit mask to set | ||
1452 | * @val: the bits value to set | ||
1453 | * | ||
1454 | * Update the AMP values like snd_hda_codec_amp_update(), but for a | ||
1455 | * stereo widget with the same mask and value. | ||
1308 | */ | 1456 | */ |
1309 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, | 1457 | int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, |
1310 | int direction, int idx, int mask, int val) | 1458 | int direction, int idx, int mask, int val) |
@@ -1318,7 +1466,12 @@ int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid, | |||
1318 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo); | 1466 | EXPORT_SYMBOL_HDA(snd_hda_codec_amp_stereo); |
1319 | 1467 | ||
1320 | #ifdef SND_HDA_NEEDS_RESUME | 1468 | #ifdef SND_HDA_NEEDS_RESUME |
1321 | /* resume the all amp commands from the cache */ | 1469 | /** |
1470 | * snd_hda_codec_resume_amp - Resume all AMP commands from the cache | ||
1471 | * @codec: HD-audio codec | ||
1472 | * | ||
1473 | * Resume the all amp commands from the cache. | ||
1474 | */ | ||
1322 | void snd_hda_codec_resume_amp(struct hda_codec *codec) | 1475 | void snd_hda_codec_resume_amp(struct hda_codec *codec) |
1323 | { | 1476 | { |
1324 | struct hda_amp_info *buffer = codec->amp_cache.buf.list; | 1477 | struct hda_amp_info *buffer = codec->amp_cache.buf.list; |
@@ -1344,7 +1497,12 @@ void snd_hda_codec_resume_amp(struct hda_codec *codec) | |||
1344 | EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp); | 1497 | EXPORT_SYMBOL_HDA(snd_hda_codec_resume_amp); |
1345 | #endif /* SND_HDA_NEEDS_RESUME */ | 1498 | #endif /* SND_HDA_NEEDS_RESUME */ |
1346 | 1499 | ||
1347 | /* volume */ | 1500 | /** |
1501 | * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer | ||
1502 | * | ||
1503 | * The control element is supposed to have the private_value field | ||
1504 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. | ||
1505 | */ | ||
1348 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, | 1506 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
1349 | struct snd_ctl_elem_info *uinfo) | 1507 | struct snd_ctl_elem_info *uinfo) |
1350 | { | 1508 | { |
@@ -1400,6 +1558,12 @@ update_amp_value(struct hda_codec *codec, hda_nid_t nid, | |||
1400 | HDA_AMP_VOLMASK, val); | 1558 | HDA_AMP_VOLMASK, val); |
1401 | } | 1559 | } |
1402 | 1560 | ||
1561 | /** | ||
1562 | * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume | ||
1563 | * | ||
1564 | * The control element is supposed to have the private_value field | ||
1565 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. | ||
1566 | */ | ||
1403 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, | 1567 | int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, |
1404 | struct snd_ctl_elem_value *ucontrol) | 1568 | struct snd_ctl_elem_value *ucontrol) |
1405 | { | 1569 | { |
@@ -1419,6 +1583,12 @@ int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol, | |||
1419 | } | 1583 | } |
1420 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get); | 1584 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_get); |
1421 | 1585 | ||
1586 | /** | ||
1587 | * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume | ||
1588 | * | ||
1589 | * The control element is supposed to have the private_value field | ||
1590 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. | ||
1591 | */ | ||
1422 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, | 1592 | int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, |
1423 | struct snd_ctl_elem_value *ucontrol) | 1593 | struct snd_ctl_elem_value *ucontrol) |
1424 | { | 1594 | { |
@@ -1443,6 +1613,12 @@ int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol, | |||
1443 | } | 1613 | } |
1444 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put); | 1614 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_volume_put); |
1445 | 1615 | ||
1616 | /** | ||
1617 | * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume | ||
1618 | * | ||
1619 | * The control element is supposed to have the private_value field | ||
1620 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. | ||
1621 | */ | ||
1446 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, | 1622 | int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
1447 | unsigned int size, unsigned int __user *_tlv) | 1623 | unsigned int size, unsigned int __user *_tlv) |
1448 | { | 1624 | { |
@@ -1472,8 +1648,16 @@ int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag, | |||
1472 | } | 1648 | } |
1473 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv); | 1649 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_tlv); |
1474 | 1650 | ||
1475 | /* | 1651 | /** |
1476 | * set (static) TLV for virtual master volume; recalculated as max 0dB | 1652 | * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control |
1653 | * @codec: HD-audio codec | ||
1654 | * @nid: NID of a reference widget | ||
1655 | * @dir: #HDA_INPUT or #HDA_OUTPUT | ||
1656 | * @tlv: TLV data to be stored, at least 4 elements | ||
1657 | * | ||
1658 | * Set (static) TLV data for a virtual master volume using the AMP caps | ||
1659 | * obtained from the reference NID. | ||
1660 | * The volume range is recalculated as if the max volume is 0dB. | ||
1477 | */ | 1661 | */ |
1478 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, | 1662 | void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir, |
1479 | unsigned int *tlv) | 1663 | unsigned int *tlv) |
@@ -1507,6 +1691,13 @@ _snd_hda_find_mixer_ctl(struct hda_codec *codec, | |||
1507 | return snd_ctl_find_id(codec->bus->card, &id); | 1691 | return snd_ctl_find_id(codec->bus->card, &id); |
1508 | } | 1692 | } |
1509 | 1693 | ||
1694 | /** | ||
1695 | * snd_hda_find_mixer_ctl - Find a mixer control element with the given name | ||
1696 | * @codec: HD-audio codec | ||
1697 | * @name: ctl id name string | ||
1698 | * | ||
1699 | * Get the control element with the given id string and IFACE_MIXER. | ||
1700 | */ | ||
1510 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, | 1701 | struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, |
1511 | const char *name) | 1702 | const char *name) |
1512 | { | 1703 | { |
@@ -1514,30 +1705,57 @@ struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec, | |||
1514 | } | 1705 | } |
1515 | EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl); | 1706 | EXPORT_SYMBOL_HDA(snd_hda_find_mixer_ctl); |
1516 | 1707 | ||
1517 | /* Add a control element and assign to the codec */ | 1708 | /** |
1518 | int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl) | 1709 | * snd_hda_ctl-add - Add a control element and assign to the codec |
1710 | * @codec: HD-audio codec | ||
1711 | * @nid: corresponding NID (optional) | ||
1712 | * @kctl: the control element to assign | ||
1713 | * | ||
1714 | * Add the given control element to an array inside the codec instance. | ||
1715 | * All control elements belonging to a codec are supposed to be added | ||
1716 | * by this function so that a proper clean-up works at the free or | ||
1717 | * reconfiguration time. | ||
1718 | * | ||
1719 | * If non-zero @nid is passed, the NID is assigned to the control element. | ||
1720 | * The assignment is shown in the codec proc file. | ||
1721 | * | ||
1722 | * snd_hda_ctl_add() checks the control subdev id field whether | ||
1723 | * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower | ||
1724 | * bits value is taken as the NID to assign. | ||
1725 | */ | ||
1726 | int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid, | ||
1727 | struct snd_kcontrol *kctl) | ||
1519 | { | 1728 | { |
1520 | int err; | 1729 | int err; |
1521 | struct snd_kcontrol **knewp; | 1730 | struct hda_nid_item *item; |
1522 | 1731 | ||
1732 | if (kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) { | ||
1733 | if (nid == 0) | ||
1734 | nid = kctl->id.subdevice & 0xffff; | ||
1735 | kctl->id.subdevice = 0; | ||
1736 | } | ||
1523 | err = snd_ctl_add(codec->bus->card, kctl); | 1737 | err = snd_ctl_add(codec->bus->card, kctl); |
1524 | if (err < 0) | 1738 | if (err < 0) |
1525 | return err; | 1739 | return err; |
1526 | knewp = snd_array_new(&codec->mixers); | 1740 | item = snd_array_new(&codec->mixers); |
1527 | if (!knewp) | 1741 | if (!item) |
1528 | return -ENOMEM; | 1742 | return -ENOMEM; |
1529 | *knewp = kctl; | 1743 | item->kctl = kctl; |
1744 | item->nid = nid; | ||
1530 | return 0; | 1745 | return 0; |
1531 | } | 1746 | } |
1532 | EXPORT_SYMBOL_HDA(snd_hda_ctl_add); | 1747 | EXPORT_SYMBOL_HDA(snd_hda_ctl_add); |
1533 | 1748 | ||
1534 | /* Clear all controls assigned to the given codec */ | 1749 | /** |
1750 | * snd_hda_ctls_clear - Clear all controls assigned to the given codec | ||
1751 | * @codec: HD-audio codec | ||
1752 | */ | ||
1535 | void snd_hda_ctls_clear(struct hda_codec *codec) | 1753 | void snd_hda_ctls_clear(struct hda_codec *codec) |
1536 | { | 1754 | { |
1537 | int i; | 1755 | int i; |
1538 | struct snd_kcontrol **kctls = codec->mixers.list; | 1756 | struct hda_nid_item *items = codec->mixers.list; |
1539 | for (i = 0; i < codec->mixers.used; i++) | 1757 | for (i = 0; i < codec->mixers.used; i++) |
1540 | snd_ctl_remove(codec->bus->card, kctls[i]); | 1758 | snd_ctl_remove(codec->bus->card, items[i].kctl); |
1541 | snd_array_free(&codec->mixers); | 1759 | snd_array_free(&codec->mixers); |
1542 | } | 1760 | } |
1543 | 1761 | ||
@@ -1563,6 +1781,16 @@ static void hda_unlock_devices(struct snd_card *card) | |||
1563 | spin_unlock(&card->files_lock); | 1781 | spin_unlock(&card->files_lock); |
1564 | } | 1782 | } |
1565 | 1783 | ||
1784 | /** | ||
1785 | * snd_hda_codec_reset - Clear all objects assigned to the codec | ||
1786 | * @codec: HD-audio codec | ||
1787 | * | ||
1788 | * This frees the all PCM and control elements assigned to the codec, and | ||
1789 | * clears the caches and restores the pin default configurations. | ||
1790 | * | ||
1791 | * When a device is being used, it returns -EBSY. If successfully freed, | ||
1792 | * returns zero. | ||
1793 | */ | ||
1566 | int snd_hda_codec_reset(struct hda_codec *codec) | 1794 | int snd_hda_codec_reset(struct hda_codec *codec) |
1567 | { | 1795 | { |
1568 | struct snd_card *card = codec->bus->card; | 1796 | struct snd_card *card = codec->bus->card; |
@@ -1626,7 +1854,22 @@ int snd_hda_codec_reset(struct hda_codec *codec) | |||
1626 | return 0; | 1854 | return 0; |
1627 | } | 1855 | } |
1628 | 1856 | ||
1629 | /* create a virtual master control and add slaves */ | 1857 | /** |
1858 | * snd_hda_add_vmaster - create a virtual master control and add slaves | ||
1859 | * @codec: HD-audio codec | ||
1860 | * @name: vmaster control name | ||
1861 | * @tlv: TLV data (optional) | ||
1862 | * @slaves: slave control names (optional) | ||
1863 | * | ||
1864 | * Create a virtual master control with the given name. The TLV data | ||
1865 | * must be either NULL or a valid data. | ||
1866 | * | ||
1867 | * @slaves is a NULL-terminated array of strings, each of which is a | ||
1868 | * slave control name. All controls with these names are assigned to | ||
1869 | * the new virtual master control. | ||
1870 | * | ||
1871 | * This function returns zero if successful or a negative error code. | ||
1872 | */ | ||
1630 | int snd_hda_add_vmaster(struct hda_codec *codec, char *name, | 1873 | int snd_hda_add_vmaster(struct hda_codec *codec, char *name, |
1631 | unsigned int *tlv, const char **slaves) | 1874 | unsigned int *tlv, const char **slaves) |
1632 | { | 1875 | { |
@@ -1643,7 +1886,7 @@ int snd_hda_add_vmaster(struct hda_codec *codec, char *name, | |||
1643 | kctl = snd_ctl_make_virtual_master(name, tlv); | 1886 | kctl = snd_ctl_make_virtual_master(name, tlv); |
1644 | if (!kctl) | 1887 | if (!kctl) |
1645 | return -ENOMEM; | 1888 | return -ENOMEM; |
1646 | err = snd_hda_ctl_add(codec, kctl); | 1889 | err = snd_hda_ctl_add(codec, 0, kctl); |
1647 | if (err < 0) | 1890 | if (err < 0) |
1648 | return err; | 1891 | return err; |
1649 | 1892 | ||
@@ -1668,7 +1911,12 @@ int snd_hda_add_vmaster(struct hda_codec *codec, char *name, | |||
1668 | } | 1911 | } |
1669 | EXPORT_SYMBOL_HDA(snd_hda_add_vmaster); | 1912 | EXPORT_SYMBOL_HDA(snd_hda_add_vmaster); |
1670 | 1913 | ||
1671 | /* switch */ | 1914 | /** |
1915 | * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch | ||
1916 | * | ||
1917 | * The control element is supposed to have the private_value field | ||
1918 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. | ||
1919 | */ | ||
1672 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, | 1920 | int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, |
1673 | struct snd_ctl_elem_info *uinfo) | 1921 | struct snd_ctl_elem_info *uinfo) |
1674 | { | 1922 | { |
@@ -1682,6 +1930,12 @@ int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol, | |||
1682 | } | 1930 | } |
1683 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info); | 1931 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_info); |
1684 | 1932 | ||
1933 | /** | ||
1934 | * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch | ||
1935 | * | ||
1936 | * The control element is supposed to have the private_value field | ||
1937 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. | ||
1938 | */ | ||
1685 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, | 1939 | int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, |
1686 | struct snd_ctl_elem_value *ucontrol) | 1940 | struct snd_ctl_elem_value *ucontrol) |
1687 | { | 1941 | { |
@@ -1702,6 +1956,12 @@ int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, | |||
1702 | } | 1956 | } |
1703 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get); | 1957 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_get); |
1704 | 1958 | ||
1959 | /** | ||
1960 | * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch | ||
1961 | * | ||
1962 | * The control element is supposed to have the private_value field | ||
1963 | * set up via HDA_COMPOSE_AMP_VAL*() or related macros. | ||
1964 | */ | ||
1705 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, | 1965 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
1706 | struct snd_ctl_elem_value *ucontrol) | 1966 | struct snd_ctl_elem_value *ucontrol) |
1707 | { | 1967 | { |
@@ -1733,6 +1993,25 @@ int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, | |||
1733 | } | 1993 | } |
1734 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put); | 1994 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put); |
1735 | 1995 | ||
1996 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
1997 | /** | ||
1998 | * snd_hda_mixer_amp_switch_put_beep - Put callback for a beep AMP switch | ||
1999 | * | ||
2000 | * This function calls snd_hda_enable_beep_device(), which behaves differently | ||
2001 | * depending on beep_mode option. | ||
2002 | */ | ||
2003 | int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol, | ||
2004 | struct snd_ctl_elem_value *ucontrol) | ||
2005 | { | ||
2006 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | ||
2007 | long *valp = ucontrol->value.integer.value; | ||
2008 | |||
2009 | snd_hda_enable_beep_device(codec, *valp); | ||
2010 | return snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); | ||
2011 | } | ||
2012 | EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put_beep); | ||
2013 | #endif /* CONFIG_SND_HDA_INPUT_BEEP */ | ||
2014 | |||
1736 | /* | 2015 | /* |
1737 | * bound volume controls | 2016 | * bound volume controls |
1738 | * | 2017 | * |
@@ -1742,6 +2021,12 @@ EXPORT_SYMBOL_HDA(snd_hda_mixer_amp_switch_put); | |||
1742 | #define AMP_VAL_IDX_SHIFT 19 | 2021 | #define AMP_VAL_IDX_SHIFT 19 |
1743 | #define AMP_VAL_IDX_MASK (0x0f<<19) | 2022 | #define AMP_VAL_IDX_MASK (0x0f<<19) |
1744 | 2023 | ||
2024 | /** | ||
2025 | * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control | ||
2026 | * | ||
2027 | * The control element is supposed to have the private_value field | ||
2028 | * set up via HDA_BIND_MUTE*() macros. | ||
2029 | */ | ||
1745 | int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, | 2030 | int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, |
1746 | struct snd_ctl_elem_value *ucontrol) | 2031 | struct snd_ctl_elem_value *ucontrol) |
1747 | { | 2032 | { |
@@ -1759,6 +2044,12 @@ int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol, | |||
1759 | } | 2044 | } |
1760 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get); | 2045 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_get); |
1761 | 2046 | ||
2047 | /** | ||
2048 | * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control | ||
2049 | * | ||
2050 | * The control element is supposed to have the private_value field | ||
2051 | * set up via HDA_BIND_MUTE*() macros. | ||
2052 | */ | ||
1762 | int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, | 2053 | int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, |
1763 | struct snd_ctl_elem_value *ucontrol) | 2054 | struct snd_ctl_elem_value *ucontrol) |
1764 | { | 2055 | { |
@@ -1783,8 +2074,11 @@ int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol, | |||
1783 | } | 2074 | } |
1784 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put); | 2075 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_switch_put); |
1785 | 2076 | ||
1786 | /* | 2077 | /** |
1787 | * generic bound volume/swtich controls | 2078 | * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control |
2079 | * | ||
2080 | * The control element is supposed to have the private_value field | ||
2081 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. | ||
1788 | */ | 2082 | */ |
1789 | int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, | 2083 | int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, |
1790 | struct snd_ctl_elem_info *uinfo) | 2084 | struct snd_ctl_elem_info *uinfo) |
@@ -1803,6 +2097,12 @@ int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol, | |||
1803 | } | 2097 | } |
1804 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info); | 2098 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_info); |
1805 | 2099 | ||
2100 | /** | ||
2101 | * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control | ||
2102 | * | ||
2103 | * The control element is supposed to have the private_value field | ||
2104 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. | ||
2105 | */ | ||
1806 | int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, | 2106 | int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, |
1807 | struct snd_ctl_elem_value *ucontrol) | 2107 | struct snd_ctl_elem_value *ucontrol) |
1808 | { | 2108 | { |
@@ -1820,6 +2120,12 @@ int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol, | |||
1820 | } | 2120 | } |
1821 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get); | 2121 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_get); |
1822 | 2122 | ||
2123 | /** | ||
2124 | * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control | ||
2125 | * | ||
2126 | * The control element is supposed to have the private_value field | ||
2127 | * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros. | ||
2128 | */ | ||
1823 | int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, | 2129 | int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, |
1824 | struct snd_ctl_elem_value *ucontrol) | 2130 | struct snd_ctl_elem_value *ucontrol) |
1825 | { | 2131 | { |
@@ -1843,6 +2149,12 @@ int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol, | |||
1843 | } | 2149 | } |
1844 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put); | 2150 | EXPORT_SYMBOL_HDA(snd_hda_mixer_bind_ctls_put); |
1845 | 2151 | ||
2152 | /** | ||
2153 | * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control | ||
2154 | * | ||
2155 | * The control element is supposed to have the private_value field | ||
2156 | * set up via HDA_BIND_VOL() macro. | ||
2157 | */ | ||
1846 | int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, | 2158 | int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag, |
1847 | unsigned int size, unsigned int __user *tlv) | 2159 | unsigned int size, unsigned int __user *tlv) |
1848 | { | 2160 | { |
@@ -2126,7 +2438,7 @@ int snd_hda_create_spdif_out_ctls(struct hda_codec *codec, hda_nid_t nid) | |||
2126 | return -ENOMEM; | 2438 | return -ENOMEM; |
2127 | kctl->id.index = idx; | 2439 | kctl->id.index = idx; |
2128 | kctl->private_value = nid; | 2440 | kctl->private_value = nid; |
2129 | err = snd_hda_ctl_add(codec, kctl); | 2441 | err = snd_hda_ctl_add(codec, nid, kctl); |
2130 | if (err < 0) | 2442 | if (err < 0) |
2131 | return err; | 2443 | return err; |
2132 | } | 2444 | } |
@@ -2165,14 +2477,19 @@ static struct snd_kcontrol_new spdif_share_sw = { | |||
2165 | .put = spdif_share_sw_put, | 2477 | .put = spdif_share_sw_put, |
2166 | }; | 2478 | }; |
2167 | 2479 | ||
2480 | /** | ||
2481 | * snd_hda_create_spdif_share_sw - create Default PCM switch | ||
2482 | * @codec: the HDA codec | ||
2483 | * @mout: multi-out instance | ||
2484 | */ | ||
2168 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, | 2485 | int snd_hda_create_spdif_share_sw(struct hda_codec *codec, |
2169 | struct hda_multi_out *mout) | 2486 | struct hda_multi_out *mout) |
2170 | { | 2487 | { |
2171 | if (!mout->dig_out_nid) | 2488 | if (!mout->dig_out_nid) |
2172 | return 0; | 2489 | return 0; |
2173 | /* ATTENTION: here mout is passed as private_data, instead of codec */ | 2490 | /* ATTENTION: here mout is passed as private_data, instead of codec */ |
2174 | return snd_hda_ctl_add(codec, | 2491 | return snd_hda_ctl_add(codec, mout->dig_out_nid, |
2175 | snd_ctl_new1(&spdif_share_sw, mout)); | 2492 | snd_ctl_new1(&spdif_share_sw, mout)); |
2176 | } | 2493 | } |
2177 | EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw); | 2494 | EXPORT_SYMBOL_HDA(snd_hda_create_spdif_share_sw); |
2178 | 2495 | ||
@@ -2276,7 +2593,7 @@ int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid) | |||
2276 | if (!kctl) | 2593 | if (!kctl) |
2277 | return -ENOMEM; | 2594 | return -ENOMEM; |
2278 | kctl->private_value = nid; | 2595 | kctl->private_value = nid; |
2279 | err = snd_hda_ctl_add(codec, kctl); | 2596 | err = snd_hda_ctl_add(codec, nid, kctl); |
2280 | if (err < 0) | 2597 | if (err < 0) |
2281 | return err; | 2598 | return err; |
2282 | } | 2599 | } |
@@ -2332,7 +2649,12 @@ int snd_hda_codec_write_cache(struct hda_codec *codec, hda_nid_t nid, | |||
2332 | } | 2649 | } |
2333 | EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache); | 2650 | EXPORT_SYMBOL_HDA(snd_hda_codec_write_cache); |
2334 | 2651 | ||
2335 | /* resume the all commands from the cache */ | 2652 | /** |
2653 | * snd_hda_codec_resume_cache - Resume the all commands from the cache | ||
2654 | * @codec: HD-audio codec | ||
2655 | * | ||
2656 | * Execute all verbs recorded in the command caches to resume. | ||
2657 | */ | ||
2336 | void snd_hda_codec_resume_cache(struct hda_codec *codec) | 2658 | void snd_hda_codec_resume_cache(struct hda_codec *codec) |
2337 | { | 2659 | { |
2338 | struct hda_cache_head *buffer = codec->cmd_cache.buf.list; | 2660 | struct hda_cache_head *buffer = codec->cmd_cache.buf.list; |
@@ -2452,9 +2774,11 @@ static void hda_call_codec_suspend(struct hda_codec *codec) | |||
2452 | codec->afg ? codec->afg : codec->mfg, | 2774 | codec->afg ? codec->afg : codec->mfg, |
2453 | AC_PWRST_D3); | 2775 | AC_PWRST_D3); |
2454 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 2776 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
2777 | snd_hda_update_power_acct(codec); | ||
2455 | cancel_delayed_work(&codec->power_work); | 2778 | cancel_delayed_work(&codec->power_work); |
2456 | codec->power_on = 0; | 2779 | codec->power_on = 0; |
2457 | codec->power_transition = 0; | 2780 | codec->power_transition = 0; |
2781 | codec->power_jiffies = jiffies; | ||
2458 | #endif | 2782 | #endif |
2459 | } | 2783 | } |
2460 | 2784 | ||
@@ -2756,8 +3080,12 @@ static int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid, | |||
2756 | } | 3080 | } |
2757 | 3081 | ||
2758 | /** | 3082 | /** |
2759 | * snd_hda_is_supported_format - check whether the given node supports | 3083 | * snd_hda_is_supported_format - Check the validity of the format |
2760 | * the format val | 3084 | * @codec: HD-audio codec |
3085 | * @nid: NID to check | ||
3086 | * @format: the HD-audio format value to check | ||
3087 | * | ||
3088 | * Check whether the given node supports the format value. | ||
2761 | * | 3089 | * |
2762 | * Returns 1 if supported, 0 if not. | 3090 | * Returns 1 if supported, 0 if not. |
2763 | */ | 3091 | */ |
@@ -2877,51 +3205,36 @@ static int set_pcm_default_values(struct hda_codec *codec, | |||
2877 | return 0; | 3205 | return 0; |
2878 | } | 3206 | } |
2879 | 3207 | ||
3208 | /* global */ | ||
3209 | const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = { | ||
3210 | "Audio", "SPDIF", "HDMI", "Modem" | ||
3211 | }; | ||
3212 | |||
2880 | /* | 3213 | /* |
2881 | * get the empty PCM device number to assign | 3214 | * get the empty PCM device number to assign |
2882 | */ | 3215 | */ |
2883 | static int get_empty_pcm_device(struct hda_bus *bus, int type) | 3216 | static int get_empty_pcm_device(struct hda_bus *bus, int type) |
2884 | { | 3217 | { |
2885 | static const char *dev_name[HDA_PCM_NTYPES] = { | 3218 | /* audio device indices; not linear to keep compatibility */ |
2886 | "Audio", "SPDIF", "HDMI", "Modem" | 3219 | static int audio_idx[HDA_PCM_NTYPES][5] = { |
2887 | }; | 3220 | [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 }, |
2888 | /* starting device index for each PCM type */ | 3221 | [HDA_PCM_TYPE_SPDIF] = { 1, -1 }, |
2889 | static int dev_idx[HDA_PCM_NTYPES] = { | 3222 | [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 }, |
2890 | [HDA_PCM_TYPE_AUDIO] = 0, | 3223 | [HDA_PCM_TYPE_MODEM] = { 6, -1 }, |
2891 | [HDA_PCM_TYPE_SPDIF] = 1, | ||
2892 | [HDA_PCM_TYPE_HDMI] = 3, | ||
2893 | [HDA_PCM_TYPE_MODEM] = 6 | ||
2894 | }; | 3224 | }; |
2895 | /* normal audio device indices; not linear to keep compatibility */ | 3225 | int i; |
2896 | static int audio_idx[4] = { 0, 2, 4, 5 }; | 3226 | |
2897 | int i, dev; | 3227 | if (type >= HDA_PCM_NTYPES) { |
2898 | |||
2899 | switch (type) { | ||
2900 | case HDA_PCM_TYPE_AUDIO: | ||
2901 | for (i = 0; i < ARRAY_SIZE(audio_idx); i++) { | ||
2902 | dev = audio_idx[i]; | ||
2903 | if (!test_bit(dev, bus->pcm_dev_bits)) | ||
2904 | goto ok; | ||
2905 | } | ||
2906 | snd_printk(KERN_WARNING "Too many audio devices\n"); | ||
2907 | return -EAGAIN; | ||
2908 | case HDA_PCM_TYPE_SPDIF: | ||
2909 | case HDA_PCM_TYPE_HDMI: | ||
2910 | case HDA_PCM_TYPE_MODEM: | ||
2911 | dev = dev_idx[type]; | ||
2912 | if (test_bit(dev, bus->pcm_dev_bits)) { | ||
2913 | snd_printk(KERN_WARNING "%s already defined\n", | ||
2914 | dev_name[type]); | ||
2915 | return -EAGAIN; | ||
2916 | } | ||
2917 | break; | ||
2918 | default: | ||
2919 | snd_printk(KERN_WARNING "Invalid PCM type %d\n", type); | 3228 | snd_printk(KERN_WARNING "Invalid PCM type %d\n", type); |
2920 | return -EINVAL; | 3229 | return -EINVAL; |
2921 | } | 3230 | } |
2922 | ok: | 3231 | |
2923 | set_bit(dev, bus->pcm_dev_bits); | 3232 | for (i = 0; audio_idx[type][i] >= 0 ; i++) |
2924 | return dev; | 3233 | if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits)) |
3234 | return audio_idx[type][i]; | ||
3235 | |||
3236 | snd_printk(KERN_WARNING "Too many %s devices\n", snd_hda_pcm_type_name[type]); | ||
3237 | return -EAGAIN; | ||
2925 | } | 3238 | } |
2926 | 3239 | ||
2927 | /* | 3240 | /* |
@@ -3159,14 +3472,14 @@ EXPORT_SYMBOL_HDA(snd_hda_check_board_codec_sid_config); | |||
3159 | */ | 3472 | */ |
3160 | int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew) | 3473 | int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew) |
3161 | { | 3474 | { |
3162 | int err; | 3475 | int err; |
3163 | 3476 | ||
3164 | for (; knew->name; knew++) { | 3477 | for (; knew->name; knew++) { |
3165 | struct snd_kcontrol *kctl; | 3478 | struct snd_kcontrol *kctl; |
3166 | kctl = snd_ctl_new1(knew, codec); | 3479 | kctl = snd_ctl_new1(knew, codec); |
3167 | if (!kctl) | 3480 | if (!kctl) |
3168 | return -ENOMEM; | 3481 | return -ENOMEM; |
3169 | err = snd_hda_ctl_add(codec, kctl); | 3482 | err = snd_hda_ctl_add(codec, 0, kctl); |
3170 | if (err < 0) { | 3483 | if (err < 0) { |
3171 | if (!codec->addr) | 3484 | if (!codec->addr) |
3172 | return err; | 3485 | return err; |
@@ -3174,7 +3487,7 @@ int snd_hda_add_new_ctls(struct hda_codec *codec, struct snd_kcontrol_new *knew) | |||
3174 | if (!kctl) | 3487 | if (!kctl) |
3175 | return -ENOMEM; | 3488 | return -ENOMEM; |
3176 | kctl->id.device = codec->addr; | 3489 | kctl->id.device = codec->addr; |
3177 | err = snd_hda_ctl_add(codec, kctl); | 3490 | err = snd_hda_ctl_add(codec, 0, kctl); |
3178 | if (err < 0) | 3491 | if (err < 0) |
3179 | return err; | 3492 | return err; |
3180 | } | 3493 | } |
@@ -3207,8 +3520,27 @@ static void hda_keep_power_on(struct hda_codec *codec) | |||
3207 | { | 3520 | { |
3208 | codec->power_count++; | 3521 | codec->power_count++; |
3209 | codec->power_on = 1; | 3522 | codec->power_on = 1; |
3523 | codec->power_jiffies = jiffies; | ||
3210 | } | 3524 | } |
3211 | 3525 | ||
3526 | /* update the power on/off account with the current jiffies */ | ||
3527 | void snd_hda_update_power_acct(struct hda_codec *codec) | ||
3528 | { | ||
3529 | unsigned long delta = jiffies - codec->power_jiffies; | ||
3530 | if (codec->power_on) | ||
3531 | codec->power_on_acct += delta; | ||
3532 | else | ||
3533 | codec->power_off_acct += delta; | ||
3534 | codec->power_jiffies += delta; | ||
3535 | } | ||
3536 | |||
3537 | /** | ||
3538 | * snd_hda_power_up - Power-up the codec | ||
3539 | * @codec: HD-audio codec | ||
3540 | * | ||
3541 | * Increment the power-up counter and power up the hardware really when | ||
3542 | * not turned on yet. | ||
3543 | */ | ||
3212 | void snd_hda_power_up(struct hda_codec *codec) | 3544 | void snd_hda_power_up(struct hda_codec *codec) |
3213 | { | 3545 | { |
3214 | struct hda_bus *bus = codec->bus; | 3546 | struct hda_bus *bus = codec->bus; |
@@ -3217,7 +3549,9 @@ void snd_hda_power_up(struct hda_codec *codec) | |||
3217 | if (codec->power_on || codec->power_transition) | 3549 | if (codec->power_on || codec->power_transition) |
3218 | return; | 3550 | return; |
3219 | 3551 | ||
3552 | snd_hda_update_power_acct(codec); | ||
3220 | codec->power_on = 1; | 3553 | codec->power_on = 1; |
3554 | codec->power_jiffies = jiffies; | ||
3221 | if (bus->ops.pm_notify) | 3555 | if (bus->ops.pm_notify) |
3222 | bus->ops.pm_notify(bus); | 3556 | bus->ops.pm_notify(bus); |
3223 | hda_call_codec_resume(codec); | 3557 | hda_call_codec_resume(codec); |
@@ -3229,9 +3563,13 @@ EXPORT_SYMBOL_HDA(snd_hda_power_up); | |||
3229 | #define power_save(codec) \ | 3563 | #define power_save(codec) \ |
3230 | ((codec)->bus->power_save ? *(codec)->bus->power_save : 0) | 3564 | ((codec)->bus->power_save ? *(codec)->bus->power_save : 0) |
3231 | 3565 | ||
3232 | #define power_save(codec) \ | 3566 | /** |
3233 | ((codec)->bus->power_save ? *(codec)->bus->power_save : 0) | 3567 | * snd_hda_power_down - Power-down the codec |
3234 | 3568 | * @codec: HD-audio codec | |
3569 | * | ||
3570 | * Decrement the power-up counter and schedules the power-off work if | ||
3571 | * the counter rearches to zero. | ||
3572 | */ | ||
3235 | void snd_hda_power_down(struct hda_codec *codec) | 3573 | void snd_hda_power_down(struct hda_codec *codec) |
3236 | { | 3574 | { |
3237 | --codec->power_count; | 3575 | --codec->power_count; |
@@ -3245,6 +3583,19 @@ void snd_hda_power_down(struct hda_codec *codec) | |||
3245 | } | 3583 | } |
3246 | EXPORT_SYMBOL_HDA(snd_hda_power_down); | 3584 | EXPORT_SYMBOL_HDA(snd_hda_power_down); |
3247 | 3585 | ||
3586 | /** | ||
3587 | * snd_hda_check_amp_list_power - Check the amp list and update the power | ||
3588 | * @codec: HD-audio codec | ||
3589 | * @check: the object containing an AMP list and the status | ||
3590 | * @nid: NID to check / update | ||
3591 | * | ||
3592 | * Check whether the given NID is in the amp list. If it's in the list, | ||
3593 | * check the current AMP status, and update the the power-status according | ||
3594 | * to the mute status. | ||
3595 | * | ||
3596 | * This function is supposed to be set or called from the check_power_status | ||
3597 | * patch ops. | ||
3598 | */ | ||
3248 | int snd_hda_check_amp_list_power(struct hda_codec *codec, | 3599 | int snd_hda_check_amp_list_power(struct hda_codec *codec, |
3249 | struct hda_loopback_check *check, | 3600 | struct hda_loopback_check *check, |
3250 | hda_nid_t nid) | 3601 | hda_nid_t nid) |
@@ -3286,6 +3637,10 @@ EXPORT_SYMBOL_HDA(snd_hda_check_amp_list_power); | |||
3286 | /* | 3637 | /* |
3287 | * Channel mode helper | 3638 | * Channel mode helper |
3288 | */ | 3639 | */ |
3640 | |||
3641 | /** | ||
3642 | * snd_hda_ch_mode_info - Info callback helper for the channel mode enum | ||
3643 | */ | ||
3289 | int snd_hda_ch_mode_info(struct hda_codec *codec, | 3644 | int snd_hda_ch_mode_info(struct hda_codec *codec, |
3290 | struct snd_ctl_elem_info *uinfo, | 3645 | struct snd_ctl_elem_info *uinfo, |
3291 | const struct hda_channel_mode *chmode, | 3646 | const struct hda_channel_mode *chmode, |
@@ -3302,6 +3657,9 @@ int snd_hda_ch_mode_info(struct hda_codec *codec, | |||
3302 | } | 3657 | } |
3303 | EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info); | 3658 | EXPORT_SYMBOL_HDA(snd_hda_ch_mode_info); |
3304 | 3659 | ||
3660 | /** | ||
3661 | * snd_hda_ch_mode_get - Get callback helper for the channel mode enum | ||
3662 | */ | ||
3305 | int snd_hda_ch_mode_get(struct hda_codec *codec, | 3663 | int snd_hda_ch_mode_get(struct hda_codec *codec, |
3306 | struct snd_ctl_elem_value *ucontrol, | 3664 | struct snd_ctl_elem_value *ucontrol, |
3307 | const struct hda_channel_mode *chmode, | 3665 | const struct hda_channel_mode *chmode, |
@@ -3320,6 +3678,9 @@ int snd_hda_ch_mode_get(struct hda_codec *codec, | |||
3320 | } | 3678 | } |
3321 | EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get); | 3679 | EXPORT_SYMBOL_HDA(snd_hda_ch_mode_get); |
3322 | 3680 | ||
3681 | /** | ||
3682 | * snd_hda_ch_mode_put - Put callback helper for the channel mode enum | ||
3683 | */ | ||
3323 | int snd_hda_ch_mode_put(struct hda_codec *codec, | 3684 | int snd_hda_ch_mode_put(struct hda_codec *codec, |
3324 | struct snd_ctl_elem_value *ucontrol, | 3685 | struct snd_ctl_elem_value *ucontrol, |
3325 | const struct hda_channel_mode *chmode, | 3686 | const struct hda_channel_mode *chmode, |
@@ -3344,6 +3705,10 @@ EXPORT_SYMBOL_HDA(snd_hda_ch_mode_put); | |||
3344 | /* | 3705 | /* |
3345 | * input MUX helper | 3706 | * input MUX helper |
3346 | */ | 3707 | */ |
3708 | |||
3709 | /** | ||
3710 | * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum | ||
3711 | */ | ||
3347 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, | 3712 | int snd_hda_input_mux_info(const struct hda_input_mux *imux, |
3348 | struct snd_ctl_elem_info *uinfo) | 3713 | struct snd_ctl_elem_info *uinfo) |
3349 | { | 3714 | { |
@@ -3362,6 +3727,9 @@ int snd_hda_input_mux_info(const struct hda_input_mux *imux, | |||
3362 | } | 3727 | } |
3363 | EXPORT_SYMBOL_HDA(snd_hda_input_mux_info); | 3728 | EXPORT_SYMBOL_HDA(snd_hda_input_mux_info); |
3364 | 3729 | ||
3730 | /** | ||
3731 | * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum | ||
3732 | */ | ||
3365 | int snd_hda_input_mux_put(struct hda_codec *codec, | 3733 | int snd_hda_input_mux_put(struct hda_codec *codec, |
3366 | const struct hda_input_mux *imux, | 3734 | const struct hda_input_mux *imux, |
3367 | struct snd_ctl_elem_value *ucontrol, | 3735 | struct snd_ctl_elem_value *ucontrol, |
@@ -3421,8 +3789,29 @@ static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid) | |||
3421 | } | 3789 | } |
3422 | } | 3790 | } |
3423 | 3791 | ||
3424 | /* | 3792 | /** |
3425 | * open the digital out in the exclusive mode | 3793 | * snd_hda_bus_reboot_notify - call the reboot notifier of each codec |
3794 | * @bus: HD-audio bus | ||
3795 | */ | ||
3796 | void snd_hda_bus_reboot_notify(struct hda_bus *bus) | ||
3797 | { | ||
3798 | struct hda_codec *codec; | ||
3799 | |||
3800 | if (!bus) | ||
3801 | return; | ||
3802 | list_for_each_entry(codec, &bus->codec_list, list) { | ||
3803 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
3804 | if (!codec->power_on) | ||
3805 | continue; | ||
3806 | #endif | ||
3807 | if (codec->patch_ops.reboot_notify) | ||
3808 | codec->patch_ops.reboot_notify(codec); | ||
3809 | } | ||
3810 | } | ||
3811 | EXPORT_SYMBOL_HDA(snd_hda_bus_reboot_notify); | ||
3812 | |||
3813 | /** | ||
3814 | * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode | ||
3426 | */ | 3815 | */ |
3427 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, | 3816 | int snd_hda_multi_out_dig_open(struct hda_codec *codec, |
3428 | struct hda_multi_out *mout) | 3817 | struct hda_multi_out *mout) |
@@ -3437,6 +3826,9 @@ int snd_hda_multi_out_dig_open(struct hda_codec *codec, | |||
3437 | } | 3826 | } |
3438 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open); | 3827 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_open); |
3439 | 3828 | ||
3829 | /** | ||
3830 | * snd_hda_multi_out_dig_prepare - prepare the digital out stream | ||
3831 | */ | ||
3440 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, | 3832 | int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, |
3441 | struct hda_multi_out *mout, | 3833 | struct hda_multi_out *mout, |
3442 | unsigned int stream_tag, | 3834 | unsigned int stream_tag, |
@@ -3450,6 +3842,9 @@ int snd_hda_multi_out_dig_prepare(struct hda_codec *codec, | |||
3450 | } | 3842 | } |
3451 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare); | 3843 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_prepare); |
3452 | 3844 | ||
3845 | /** | ||
3846 | * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream | ||
3847 | */ | ||
3453 | int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, | 3848 | int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, |
3454 | struct hda_multi_out *mout) | 3849 | struct hda_multi_out *mout) |
3455 | { | 3850 | { |
@@ -3460,8 +3855,8 @@ int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec, | |||
3460 | } | 3855 | } |
3461 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup); | 3856 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_cleanup); |
3462 | 3857 | ||
3463 | /* | 3858 | /** |
3464 | * release the digital out | 3859 | * snd_hda_multi_out_dig_close - release the digital out stream |
3465 | */ | 3860 | */ |
3466 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, | 3861 | int snd_hda_multi_out_dig_close(struct hda_codec *codec, |
3467 | struct hda_multi_out *mout) | 3862 | struct hda_multi_out *mout) |
@@ -3473,8 +3868,12 @@ int snd_hda_multi_out_dig_close(struct hda_codec *codec, | |||
3473 | } | 3868 | } |
3474 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close); | 3869 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_dig_close); |
3475 | 3870 | ||
3476 | /* | 3871 | /** |
3477 | * set up more restrictions for analog out | 3872 | * snd_hda_multi_out_analog_open - open analog outputs |
3873 | * | ||
3874 | * Open analog outputs and set up the hw-constraints. | ||
3875 | * If the digital outputs can be opened as slave, open the digital | ||
3876 | * outputs, too. | ||
3478 | */ | 3877 | */ |
3479 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, | 3878 | int snd_hda_multi_out_analog_open(struct hda_codec *codec, |
3480 | struct hda_multi_out *mout, | 3879 | struct hda_multi_out *mout, |
@@ -3519,9 +3918,11 @@ int snd_hda_multi_out_analog_open(struct hda_codec *codec, | |||
3519 | } | 3918 | } |
3520 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open); | 3919 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_open); |
3521 | 3920 | ||
3522 | /* | 3921 | /** |
3523 | * set up the i/o for analog out | 3922 | * snd_hda_multi_out_analog_prepare - Preapre the analog outputs. |
3524 | * when the digital out is available, copy the front out to digital out, too. | 3923 | * |
3924 | * Set up the i/o for analog out. | ||
3925 | * When the digital out is available, copy the front out to digital out, too. | ||
3525 | */ | 3926 | */ |
3526 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, | 3927 | int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, |
3527 | struct hda_multi_out *mout, | 3928 | struct hda_multi_out *mout, |
@@ -3578,8 +3979,8 @@ int snd_hda_multi_out_analog_prepare(struct hda_codec *codec, | |||
3578 | } | 3979 | } |
3579 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare); | 3980 | EXPORT_SYMBOL_HDA(snd_hda_multi_out_analog_prepare); |
3580 | 3981 | ||
3581 | /* | 3982 | /** |
3582 | * clean up the setting for analog out | 3983 | * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out |
3583 | */ | 3984 | */ |
3584 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, | 3985 | int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec, |
3585 | struct hda_multi_out *mout) | 3986 | struct hda_multi_out *mout) |
@@ -3965,8 +4366,14 @@ EXPORT_SYMBOL_HDA(snd_hda_resume); | |||
3965 | * generic arrays | 4366 | * generic arrays |
3966 | */ | 4367 | */ |
3967 | 4368 | ||
3968 | /* get a new element from the given array | 4369 | /** |
3969 | * if it exceeds the pre-allocated array size, re-allocate the array | 4370 | * snd_array_new - get a new element from the given array |
4371 | * @array: the array object | ||
4372 | * | ||
4373 | * Get a new element from the given array. If it exceeds the | ||
4374 | * pre-allocated array size, re-allocate the array. | ||
4375 | * | ||
4376 | * Returns NULL if allocation failed. | ||
3970 | */ | 4377 | */ |
3971 | void *snd_array_new(struct snd_array *array) | 4378 | void *snd_array_new(struct snd_array *array) |
3972 | { | 4379 | { |
@@ -3990,7 +4397,10 @@ void *snd_array_new(struct snd_array *array) | |||
3990 | } | 4397 | } |
3991 | EXPORT_SYMBOL_HDA(snd_array_new); | 4398 | EXPORT_SYMBOL_HDA(snd_array_new); |
3992 | 4399 | ||
3993 | /* free the given array elements */ | 4400 | /** |
4401 | * snd_array_free - free the given array elements | ||
4402 | * @array: the array object | ||
4403 | */ | ||
3994 | void snd_array_free(struct snd_array *array) | 4404 | void snd_array_free(struct snd_array *array) |
3995 | { | 4405 | { |
3996 | kfree(array->list); | 4406 | kfree(array->list); |
@@ -4000,7 +4410,12 @@ void snd_array_free(struct snd_array *array) | |||
4000 | } | 4410 | } |
4001 | EXPORT_SYMBOL_HDA(snd_array_free); | 4411 | EXPORT_SYMBOL_HDA(snd_array_free); |
4002 | 4412 | ||
4003 | /* | 4413 | /** |
4414 | * snd_print_pcm_rates - Print the supported PCM rates to the string buffer | ||
4415 | * @pcm: PCM caps bits | ||
4416 | * @buf: the string buffer to write | ||
4417 | * @buflen: the max buffer length | ||
4418 | * | ||
4004 | * used by hda_proc.c and hda_eld.c | 4419 | * used by hda_proc.c and hda_eld.c |
4005 | */ | 4420 | */ |
4006 | void snd_print_pcm_rates(int pcm, char *buf, int buflen) | 4421 | void snd_print_pcm_rates(int pcm, char *buf, int buflen) |
@@ -4019,6 +4434,14 @@ void snd_print_pcm_rates(int pcm, char *buf, int buflen) | |||
4019 | } | 4434 | } |
4020 | EXPORT_SYMBOL_HDA(snd_print_pcm_rates); | 4435 | EXPORT_SYMBOL_HDA(snd_print_pcm_rates); |
4021 | 4436 | ||
4437 | /** | ||
4438 | * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer | ||
4439 | * @pcm: PCM caps bits | ||
4440 | * @buf: the string buffer to write | ||
4441 | * @buflen: the max buffer length | ||
4442 | * | ||
4443 | * used by hda_proc.c and hda_eld.c | ||
4444 | */ | ||
4022 | void snd_print_pcm_bits(int pcm, char *buf, int buflen) | 4445 | void snd_print_pcm_bits(int pcm, char *buf, int buflen) |
4023 | { | 4446 | { |
4024 | static unsigned int bits[] = { 8, 16, 20, 24, 32 }; | 4447 | static unsigned int bits[] = { 8, 16, 20, 24, 32 }; |
diff --git a/sound/pci/hda/hda_codec.h b/sound/pci/hda/hda_codec.h index 99552fb5f756..2d627613aea3 100644 --- a/sound/pci/hda/hda_codec.h +++ b/sound/pci/hda/hda_codec.h | |||
@@ -286,6 +286,10 @@ enum { | |||
286 | #define AC_PWRST_D1SUP (1<<1) | 286 | #define AC_PWRST_D1SUP (1<<1) |
287 | #define AC_PWRST_D2SUP (1<<2) | 287 | #define AC_PWRST_D2SUP (1<<2) |
288 | #define AC_PWRST_D3SUP (1<<3) | 288 | #define AC_PWRST_D3SUP (1<<3) |
289 | #define AC_PWRST_D3COLDSUP (1<<4) | ||
290 | #define AC_PWRST_S3D3COLDSUP (1<<29) | ||
291 | #define AC_PWRST_CLKSTOP (1<<30) | ||
292 | #define AC_PWRST_EPSS (1U<<31) | ||
289 | 293 | ||
290 | /* Power state values */ | 294 | /* Power state values */ |
291 | #define AC_PWRST_SETTING (0xf<<0) | 295 | #define AC_PWRST_SETTING (0xf<<0) |
@@ -674,6 +678,7 @@ struct hda_codec_ops { | |||
674 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 678 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
675 | int (*check_power_status)(struct hda_codec *codec, hda_nid_t nid); | 679 | int (*check_power_status)(struct hda_codec *codec, hda_nid_t nid); |
676 | #endif | 680 | #endif |
681 | void (*reboot_notify)(struct hda_codec *codec); | ||
677 | }; | 682 | }; |
678 | 683 | ||
679 | /* record for amp information cache */ | 684 | /* record for amp information cache */ |
@@ -771,6 +776,7 @@ struct hda_codec { | |||
771 | 776 | ||
772 | /* beep device */ | 777 | /* beep device */ |
773 | struct hda_beep *beep; | 778 | struct hda_beep *beep; |
779 | unsigned int beep_mode; | ||
774 | 780 | ||
775 | /* widget capabilities cache */ | 781 | /* widget capabilities cache */ |
776 | unsigned int num_nodes; | 782 | unsigned int num_nodes; |
@@ -811,6 +817,9 @@ struct hda_codec { | |||
811 | unsigned int power_transition :1; /* power-state in transition */ | 817 | unsigned int power_transition :1; /* power-state in transition */ |
812 | int power_count; /* current (global) power refcount */ | 818 | int power_count; /* current (global) power refcount */ |
813 | struct delayed_work power_work; /* delayed task for powerdown */ | 819 | struct delayed_work power_work; /* delayed task for powerdown */ |
820 | unsigned long power_on_acct; | ||
821 | unsigned long power_off_acct; | ||
822 | unsigned long power_jiffies; | ||
814 | #endif | 823 | #endif |
815 | 824 | ||
816 | /* codec-specific additional proc output */ | 825 | /* codec-specific additional proc output */ |
@@ -910,6 +919,7 @@ int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid, | |||
910 | * Misc | 919 | * Misc |
911 | */ | 920 | */ |
912 | void snd_hda_get_codec_name(struct hda_codec *codec, char *name, int namelen); | 921 | void snd_hda_get_codec_name(struct hda_codec *codec, char *name, int namelen); |
922 | void snd_hda_bus_reboot_notify(struct hda_bus *bus); | ||
913 | 923 | ||
914 | /* | 924 | /* |
915 | * power management | 925 | * power management |
@@ -933,6 +943,7 @@ const char *snd_hda_get_jack_location(u32 cfg); | |||
933 | void snd_hda_power_up(struct hda_codec *codec); | 943 | void snd_hda_power_up(struct hda_codec *codec); |
934 | void snd_hda_power_down(struct hda_codec *codec); | 944 | void snd_hda_power_down(struct hda_codec *codec); |
935 | #define snd_hda_codec_needs_resume(codec) codec->power_count | 945 | #define snd_hda_codec_needs_resume(codec) codec->power_count |
946 | void snd_hda_update_power_acct(struct hda_codec *codec); | ||
936 | #else | 947 | #else |
937 | static inline void snd_hda_power_up(struct hda_codec *codec) {} | 948 | static inline void snd_hda_power_up(struct hda_codec *codec) {} |
938 | static inline void snd_hda_power_down(struct hda_codec *codec) {} | 949 | static inline void snd_hda_power_down(struct hda_codec *codec) {} |
diff --git a/sound/pci/hda/hda_eld.c b/sound/pci/hda/hda_eld.c index 9446a5abea13..4228f2fe5956 100644 --- a/sound/pci/hda/hda_eld.c +++ b/sound/pci/hda/hda_eld.c | |||
@@ -309,17 +309,12 @@ out_fail: | |||
309 | return -EINVAL; | 309 | return -EINVAL; |
310 | } | 310 | } |
311 | 311 | ||
312 | static int hdmi_present_sense(struct hda_codec *codec, hda_nid_t nid) | ||
313 | { | ||
314 | return snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0); | ||
315 | } | ||
316 | |||
317 | static int hdmi_eld_valid(struct hda_codec *codec, hda_nid_t nid) | 312 | static int hdmi_eld_valid(struct hda_codec *codec, hda_nid_t nid) |
318 | { | 313 | { |
319 | int eldv; | 314 | int eldv; |
320 | int present; | 315 | int present; |
321 | 316 | ||
322 | present = hdmi_present_sense(codec, nid); | 317 | present = snd_hda_pin_sense(codec, nid); |
323 | eldv = (present & AC_PINSENSE_ELDV); | 318 | eldv = (present & AC_PINSENSE_ELDV); |
324 | present = (present & AC_PINSENSE_PRESENCE); | 319 | present = (present & AC_PINSENSE_PRESENCE); |
325 | 320 | ||
@@ -477,6 +472,8 @@ static void hdmi_print_eld_info(struct snd_info_entry *entry, | |||
477 | [4 ... 7] = "reserved" | 472 | [4 ... 7] = "reserved" |
478 | }; | 473 | }; |
479 | 474 | ||
475 | snd_iprintf(buffer, "monitor_present\t\t%d\n", e->monitor_present); | ||
476 | snd_iprintf(buffer, "eld_valid\t\t%d\n", e->eld_valid); | ||
480 | snd_iprintf(buffer, "monitor_name\t\t%s\n", e->monitor_name); | 477 | snd_iprintf(buffer, "monitor_name\t\t%s\n", e->monitor_name); |
481 | snd_iprintf(buffer, "connection_type\t\t%s\n", | 478 | snd_iprintf(buffer, "connection_type\t\t%s\n", |
482 | eld_connection_type_names[e->conn_type]); | 479 | eld_connection_type_names[e->conn_type]); |
@@ -518,7 +515,11 @@ static void hdmi_write_eld_info(struct snd_info_entry *entry, | |||
518 | * monitor_name manufacture_id product_id | 515 | * monitor_name manufacture_id product_id |
519 | * eld_version edid_version | 516 | * eld_version edid_version |
520 | */ | 517 | */ |
521 | if (!strcmp(name, "connection_type")) | 518 | if (!strcmp(name, "monitor_present")) |
519 | e->monitor_present = val; | ||
520 | else if (!strcmp(name, "eld_valid")) | ||
521 | e->eld_valid = val; | ||
522 | else if (!strcmp(name, "connection_type")) | ||
522 | e->conn_type = val; | 523 | e->conn_type = val; |
523 | else if (!strcmp(name, "port_id")) | 524 | else if (!strcmp(name, "port_id")) |
524 | e->port_id = val; | 525 | e->port_id = val; |
@@ -560,13 +561,14 @@ static void hdmi_write_eld_info(struct snd_info_entry *entry, | |||
560 | } | 561 | } |
561 | 562 | ||
562 | 563 | ||
563 | int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld) | 564 | int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld, |
565 | int index) | ||
564 | { | 566 | { |
565 | char name[32]; | 567 | char name[32]; |
566 | struct snd_info_entry *entry; | 568 | struct snd_info_entry *entry; |
567 | int err; | 569 | int err; |
568 | 570 | ||
569 | snprintf(name, sizeof(name), "eld#%d", codec->addr); | 571 | snprintf(name, sizeof(name), "eld#%d.%d", codec->addr, index); |
570 | err = snd_card_proc_new(codec->bus->card, name, &entry); | 572 | err = snd_card_proc_new(codec->bus->card, name, &entry); |
571 | if (err < 0) | 573 | if (err < 0) |
572 | return err; | 574 | return err; |
diff --git a/sound/pci/hda/hda_generic.c b/sound/pci/hda/hda_generic.c index b36f6c5a92df..092c6a7c2ff3 100644 --- a/sound/pci/hda/hda_generic.c +++ b/sound/pci/hda/hda_generic.c | |||
@@ -727,7 +727,8 @@ static int create_mixer(struct hda_codec *codec, struct hda_gnode *node, | |||
727 | if (is_loopback) | 727 | if (is_loopback) |
728 | add_input_loopback(codec, node->nid, HDA_INPUT, index); | 728 | add_input_loopback(codec, node->nid, HDA_INPUT, index); |
729 | snd_printdd("[%s] NID=0x%x, DIR=IN, IDX=0x%x\n", name, node->nid, index); | 729 | snd_printdd("[%s] NID=0x%x, DIR=IN, IDX=0x%x\n", name, node->nid, index); |
730 | err = snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); | 730 | err = snd_hda_ctl_add(codec, node->nid, |
731 | snd_ctl_new1(&knew, codec)); | ||
731 | if (err < 0) | 732 | if (err < 0) |
732 | return err; | 733 | return err; |
733 | created = 1; | 734 | created = 1; |
@@ -737,7 +738,8 @@ static int create_mixer(struct hda_codec *codec, struct hda_gnode *node, | |||
737 | if (is_loopback) | 738 | if (is_loopback) |
738 | add_input_loopback(codec, node->nid, HDA_OUTPUT, 0); | 739 | add_input_loopback(codec, node->nid, HDA_OUTPUT, 0); |
739 | snd_printdd("[%s] NID=0x%x, DIR=OUT\n", name, node->nid); | 740 | snd_printdd("[%s] NID=0x%x, DIR=OUT\n", name, node->nid); |
740 | err = snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); | 741 | err = snd_hda_ctl_add(codec, node->nid, |
742 | snd_ctl_new1(&knew, codec)); | ||
741 | if (err < 0) | 743 | if (err < 0) |
742 | return err; | 744 | return err; |
743 | created = 1; | 745 | created = 1; |
@@ -751,7 +753,8 @@ static int create_mixer(struct hda_codec *codec, struct hda_gnode *node, | |||
751 | (node->amp_in_caps & AC_AMPCAP_NUM_STEPS)) { | 753 | (node->amp_in_caps & AC_AMPCAP_NUM_STEPS)) { |
752 | knew = (struct snd_kcontrol_new)HDA_CODEC_VOLUME(name, node->nid, index, HDA_INPUT); | 754 | knew = (struct snd_kcontrol_new)HDA_CODEC_VOLUME(name, node->nid, index, HDA_INPUT); |
753 | snd_printdd("[%s] NID=0x%x, DIR=IN, IDX=0x%x\n", name, node->nid, index); | 755 | snd_printdd("[%s] NID=0x%x, DIR=IN, IDX=0x%x\n", name, node->nid, index); |
754 | err = snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); | 756 | err = snd_hda_ctl_add(codec, node->nid, |
757 | snd_ctl_new1(&knew, codec)); | ||
755 | if (err < 0) | 758 | if (err < 0) |
756 | return err; | 759 | return err; |
757 | created = 1; | 760 | created = 1; |
@@ -759,7 +762,8 @@ static int create_mixer(struct hda_codec *codec, struct hda_gnode *node, | |||
759 | (node->amp_out_caps & AC_AMPCAP_NUM_STEPS)) { | 762 | (node->amp_out_caps & AC_AMPCAP_NUM_STEPS)) { |
760 | knew = (struct snd_kcontrol_new)HDA_CODEC_VOLUME(name, node->nid, 0, HDA_OUTPUT); | 763 | knew = (struct snd_kcontrol_new)HDA_CODEC_VOLUME(name, node->nid, 0, HDA_OUTPUT); |
761 | snd_printdd("[%s] NID=0x%x, DIR=OUT\n", name, node->nid); | 764 | snd_printdd("[%s] NID=0x%x, DIR=OUT\n", name, node->nid); |
762 | err = snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); | 765 | err = snd_hda_ctl_add(codec, node->nid, |
766 | snd_ctl_new1(&knew, codec)); | ||
763 | if (err < 0) | 767 | if (err < 0) |
764 | return err; | 768 | return err; |
765 | created = 1; | 769 | created = 1; |
@@ -857,7 +861,7 @@ static int build_input_controls(struct hda_codec *codec) | |||
857 | } | 861 | } |
858 | 862 | ||
859 | /* create input MUX if multiple sources are available */ | 863 | /* create input MUX if multiple sources are available */ |
860 | err = snd_hda_ctl_add(codec, snd_ctl_new1(&cap_sel, codec)); | 864 | err = snd_hda_ctl_add(codec, 0, snd_ctl_new1(&cap_sel, codec)); |
861 | if (err < 0) | 865 | if (err < 0) |
862 | return err; | 866 | return err; |
863 | 867 | ||
@@ -875,7 +879,8 @@ static int build_input_controls(struct hda_codec *codec) | |||
875 | HDA_CODEC_VOLUME(name, adc_node->nid, | 879 | HDA_CODEC_VOLUME(name, adc_node->nid, |
876 | spec->input_mux.items[i].index, | 880 | spec->input_mux.items[i].index, |
877 | HDA_INPUT); | 881 | HDA_INPUT); |
878 | err = snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); | 882 | err = snd_hda_ctl_add(codec, adc_node->nid, |
883 | snd_ctl_new1(&knew, codec)); | ||
879 | if (err < 0) | 884 | if (err < 0) |
880 | return err; | 885 | return err; |
881 | } | 886 | } |
diff --git a/sound/pci/hda/hda_hwdep.c b/sound/pci/hda/hda_hwdep.c index cc24e6721d74..d24328661c6a 100644 --- a/sound/pci/hda/hda_hwdep.c +++ b/sound/pci/hda/hda_hwdep.c | |||
@@ -154,6 +154,44 @@ int /*__devinit*/ snd_hda_create_hwdep(struct hda_codec *codec) | |||
154 | return 0; | 154 | return 0; |
155 | } | 155 | } |
156 | 156 | ||
157 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
158 | static ssize_t power_on_acct_show(struct device *dev, | ||
159 | struct device_attribute *attr, | ||
160 | char *buf) | ||
161 | { | ||
162 | struct snd_hwdep *hwdep = dev_get_drvdata(dev); | ||
163 | struct hda_codec *codec = hwdep->private_data; | ||
164 | snd_hda_update_power_acct(codec); | ||
165 | return sprintf(buf, "%u\n", jiffies_to_msecs(codec->power_on_acct)); | ||
166 | } | ||
167 | |||
168 | static ssize_t power_off_acct_show(struct device *dev, | ||
169 | struct device_attribute *attr, | ||
170 | char *buf) | ||
171 | { | ||
172 | struct snd_hwdep *hwdep = dev_get_drvdata(dev); | ||
173 | struct hda_codec *codec = hwdep->private_data; | ||
174 | snd_hda_update_power_acct(codec); | ||
175 | return sprintf(buf, "%u\n", jiffies_to_msecs(codec->power_off_acct)); | ||
176 | } | ||
177 | |||
178 | static struct device_attribute power_attrs[] = { | ||
179 | __ATTR_RO(power_on_acct), | ||
180 | __ATTR_RO(power_off_acct), | ||
181 | }; | ||
182 | |||
183 | int snd_hda_hwdep_add_power_sysfs(struct hda_codec *codec) | ||
184 | { | ||
185 | struct snd_hwdep *hwdep = codec->hwdep; | ||
186 | int i; | ||
187 | |||
188 | for (i = 0; i < ARRAY_SIZE(power_attrs); i++) | ||
189 | snd_add_device_sysfs_file(SNDRV_DEVICE_TYPE_HWDEP, hwdep->card, | ||
190 | hwdep->device, &power_attrs[i]); | ||
191 | return 0; | ||
192 | } | ||
193 | #endif /* CONFIG_SND_HDA_POWER_SAVE */ | ||
194 | |||
157 | #ifdef CONFIG_SND_HDA_RECONFIG | 195 | #ifdef CONFIG_SND_HDA_RECONFIG |
158 | 196 | ||
159 | /* | 197 | /* |
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 20a66f85f0a4..d822bfc6cad6 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c | |||
@@ -60,10 +60,14 @@ static int bdl_pos_adj[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; | |||
60 | static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; | 60 | static int probe_mask[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = -1}; |
61 | static int probe_only[SNDRV_CARDS]; | 61 | static int probe_only[SNDRV_CARDS]; |
62 | static int single_cmd; | 62 | static int single_cmd; |
63 | static int enable_msi; | 63 | static int enable_msi = -1; |
64 | #ifdef CONFIG_SND_HDA_PATCH_LOADER | 64 | #ifdef CONFIG_SND_HDA_PATCH_LOADER |
65 | static char *patch[SNDRV_CARDS]; | 65 | static char *patch[SNDRV_CARDS]; |
66 | #endif | 66 | #endif |
67 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
68 | static int beep_mode[SNDRV_CARDS] = {[0 ... (SNDRV_CARDS-1)] = | ||
69 | CONFIG_SND_HDA_INPUT_BEEP_MODE}; | ||
70 | #endif | ||
67 | 71 | ||
68 | module_param_array(index, int, NULL, 0444); | 72 | module_param_array(index, int, NULL, 0444); |
69 | MODULE_PARM_DESC(index, "Index value for Intel HD audio interface."); | 73 | MODULE_PARM_DESC(index, "Index value for Intel HD audio interface."); |
@@ -91,6 +95,11 @@ MODULE_PARM_DESC(enable_msi, "Enable Message Signaled Interrupt (MSI)"); | |||
91 | module_param_array(patch, charp, NULL, 0444); | 95 | module_param_array(patch, charp, NULL, 0444); |
92 | MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface."); | 96 | MODULE_PARM_DESC(patch, "Patch file for Intel HD audio interface."); |
93 | #endif | 97 | #endif |
98 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
99 | module_param_array(beep_mode, int, NULL, 0444); | ||
100 | MODULE_PARM_DESC(beep_mode, "Select HDA Beep registration mode " | ||
101 | "(0=off, 1=on, 2=mute switch on/off) (default=1)."); | ||
102 | #endif | ||
94 | 103 | ||
95 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 104 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
96 | static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT; | 105 | static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT; |
@@ -404,6 +413,7 @@ struct azx { | |||
404 | unsigned short codec_mask; | 413 | unsigned short codec_mask; |
405 | int codec_probe_mask; /* copied from probe_mask option */ | 414 | int codec_probe_mask; /* copied from probe_mask option */ |
406 | struct hda_bus *bus; | 415 | struct hda_bus *bus; |
416 | unsigned int beep_mode; | ||
407 | 417 | ||
408 | /* CORB/RIRB */ | 418 | /* CORB/RIRB */ |
409 | struct azx_rb corb; | 419 | struct azx_rb corb; |
@@ -677,6 +687,14 @@ static unsigned int azx_rirb_get_response(struct hda_bus *bus, | |||
677 | } | 687 | } |
678 | } | 688 | } |
679 | 689 | ||
690 | if (!chip->polling_mode) { | ||
691 | snd_printk(KERN_WARNING SFX "azx_get_response timeout, " | ||
692 | "switching to polling mode: last cmd=0x%08x\n", | ||
693 | chip->last_cmd[addr]); | ||
694 | chip->polling_mode = 1; | ||
695 | goto again; | ||
696 | } | ||
697 | |||
680 | if (chip->msi) { | 698 | if (chip->msi) { |
681 | snd_printk(KERN_WARNING SFX "No response from codec, " | 699 | snd_printk(KERN_WARNING SFX "No response from codec, " |
682 | "disabling MSI: last cmd=0x%08x\n", | 700 | "disabling MSI: last cmd=0x%08x\n", |
@@ -692,14 +710,6 @@ static unsigned int azx_rirb_get_response(struct hda_bus *bus, | |||
692 | goto again; | 710 | goto again; |
693 | } | 711 | } |
694 | 712 | ||
695 | if (!chip->polling_mode) { | ||
696 | snd_printk(KERN_WARNING SFX "azx_get_response timeout, " | ||
697 | "switching to polling mode: last cmd=0x%08x\n", | ||
698 | chip->last_cmd[addr]); | ||
699 | chip->polling_mode = 1; | ||
700 | goto again; | ||
701 | } | ||
702 | |||
703 | if (chip->probing) { | 713 | if (chip->probing) { |
704 | /* If this critical timeout happens during the codec probing | 714 | /* If this critical timeout happens during the codec probing |
705 | * phase, this is likely an access to a non-existing codec | 715 | * phase, this is likely an access to a non-existing codec |
@@ -722,9 +732,10 @@ static unsigned int azx_rirb_get_response(struct hda_bus *bus, | |||
722 | chip->last_cmd[addr]); | 732 | chip->last_cmd[addr]); |
723 | chip->single_cmd = 1; | 733 | chip->single_cmd = 1; |
724 | bus->response_reset = 0; | 734 | bus->response_reset = 0; |
725 | /* re-initialize CORB/RIRB */ | 735 | /* release CORB/RIRB */ |
726 | azx_free_cmd_io(chip); | 736 | azx_free_cmd_io(chip); |
727 | azx_init_cmd_io(chip); | 737 | /* disable unsolicited responses */ |
738 | azx_writel(chip, GCTL, azx_readl(chip, GCTL) & ~ICH6_GCTL_UNSOL); | ||
728 | return -1; | 739 | return -1; |
729 | } | 740 | } |
730 | 741 | ||
@@ -865,7 +876,9 @@ static int azx_reset(struct azx *chip) | |||
865 | } | 876 | } |
866 | 877 | ||
867 | /* Accept unsolicited responses */ | 878 | /* Accept unsolicited responses */ |
868 | azx_writel(chip, GCTL, azx_readl(chip, GCTL) | ICH6_GCTL_UNSOL); | 879 | if (!chip->single_cmd) |
880 | azx_writel(chip, GCTL, azx_readl(chip, GCTL) | | ||
881 | ICH6_GCTL_UNSOL); | ||
869 | 882 | ||
870 | /* detect codecs */ | 883 | /* detect codecs */ |
871 | if (!chip->codec_mask) { | 884 | if (!chip->codec_mask) { |
@@ -980,7 +993,8 @@ static void azx_init_chip(struct azx *chip) | |||
980 | azx_int_enable(chip); | 993 | azx_int_enable(chip); |
981 | 994 | ||
982 | /* initialize the codec command I/O */ | 995 | /* initialize the codec command I/O */ |
983 | azx_init_cmd_io(chip); | 996 | if (!chip->single_cmd) |
997 | azx_init_cmd_io(chip); | ||
984 | 998 | ||
985 | /* program the position buffer */ | 999 | /* program the position buffer */ |
986 | azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr); | 1000 | azx_writel(chip, DPLBASE, (u32)chip->posbuf.addr); |
@@ -1400,6 +1414,7 @@ static int __devinit azx_codec_create(struct azx *chip, const char *model) | |||
1400 | err = snd_hda_codec_new(chip->bus, c, &codec); | 1414 | err = snd_hda_codec_new(chip->bus, c, &codec); |
1401 | if (err < 0) | 1415 | if (err < 0) |
1402 | continue; | 1416 | continue; |
1417 | codec->beep_mode = chip->beep_mode; | ||
1403 | codecs++; | 1418 | codecs++; |
1404 | } | 1419 | } |
1405 | } | 1420 | } |
@@ -2150,6 +2165,7 @@ static int azx_resume(struct pci_dev *pci) | |||
2150 | static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf) | 2165 | static int azx_halt(struct notifier_block *nb, unsigned long event, void *buf) |
2151 | { | 2166 | { |
2152 | struct azx *chip = container_of(nb, struct azx, reboot_notifier); | 2167 | struct azx *chip = container_of(nb, struct azx, reboot_notifier); |
2168 | snd_hda_bus_reboot_notify(chip->bus); | ||
2153 | azx_stop_chip(chip); | 2169 | azx_stop_chip(chip); |
2154 | return NOTIFY_OK; | 2170 | return NOTIFY_OK; |
2155 | } | 2171 | } |
@@ -2217,7 +2233,9 @@ static int azx_dev_free(struct snd_device *device) | |||
2217 | static struct snd_pci_quirk position_fix_list[] __devinitdata = { | 2233 | static struct snd_pci_quirk position_fix_list[] __devinitdata = { |
2218 | SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB), | 2234 | SND_PCI_QUIRK(0x1028, 0x01cc, "Dell D820", POS_FIX_LPIB), |
2219 | SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB), | 2235 | SND_PCI_QUIRK(0x1028, 0x01de, "Dell Precision 390", POS_FIX_LPIB), |
2236 | SND_PCI_QUIRK(0x103c, 0x306d, "HP dv3", POS_FIX_LPIB), | ||
2220 | SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB), | 2237 | SND_PCI_QUIRK(0x1043, 0x813d, "ASUS P5AD2", POS_FIX_LPIB), |
2238 | SND_PCI_QUIRK(0x1462, 0x1002, "MSI Wind U115", POS_FIX_LPIB), | ||
2221 | {} | 2239 | {} |
2222 | }; | 2240 | }; |
2223 | 2241 | ||
@@ -2300,10 +2318,9 @@ static void __devinit check_probe_mask(struct azx *chip, int dev) | |||
2300 | } | 2318 | } |
2301 | 2319 | ||
2302 | /* | 2320 | /* |
2303 | * white-list for enable_msi | 2321 | * white/black-list for enable_msi |
2304 | */ | 2322 | */ |
2305 | static struct snd_pci_quirk msi_white_list[] __devinitdata = { | 2323 | static struct snd_pci_quirk msi_black_list[] __devinitdata = { |
2306 | SND_PCI_QUIRK(0x103c, 0x3607, "HP Compa CQ40", 1), | ||
2307 | {} | 2324 | {} |
2308 | }; | 2325 | }; |
2309 | 2326 | ||
@@ -2311,10 +2328,12 @@ static void __devinit check_msi(struct azx *chip) | |||
2311 | { | 2328 | { |
2312 | const struct snd_pci_quirk *q; | 2329 | const struct snd_pci_quirk *q; |
2313 | 2330 | ||
2314 | chip->msi = enable_msi; | 2331 | if (enable_msi >= 0) { |
2315 | if (chip->msi) | 2332 | chip->msi = !!enable_msi; |
2316 | return; | 2333 | return; |
2317 | q = snd_pci_quirk_lookup(chip->pci, msi_white_list); | 2334 | } |
2335 | chip->msi = 1; /* enable MSI as default */ | ||
2336 | q = snd_pci_quirk_lookup(chip->pci, msi_black_list); | ||
2318 | if (q) { | 2337 | if (q) { |
2319 | printk(KERN_INFO | 2338 | printk(KERN_INFO |
2320 | "hda_intel: msi for device %04x:%04x set to %d\n", | 2339 | "hda_intel: msi for device %04x:%04x set to %d\n", |
@@ -2573,6 +2592,10 @@ static int __devinit azx_probe(struct pci_dev *pci, | |||
2573 | goto out_free; | 2592 | goto out_free; |
2574 | card->private_data = chip; | 2593 | card->private_data = chip; |
2575 | 2594 | ||
2595 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
2596 | chip->beep_mode = beep_mode[dev]; | ||
2597 | #endif | ||
2598 | |||
2576 | /* create codec instances */ | 2599 | /* create codec instances */ |
2577 | err = azx_codec_create(chip, model[dev]); | 2600 | err = azx_codec_create(chip, model[dev]); |
2578 | if (err < 0) | 2601 | if (err < 0) |
@@ -2673,6 +2696,7 @@ static struct pci_device_id azx_ids[] = { | |||
2673 | { PCI_DEVICE(0x10de, 0x044b), .driver_data = AZX_DRIVER_NVIDIA }, | 2696 | { PCI_DEVICE(0x10de, 0x044b), .driver_data = AZX_DRIVER_NVIDIA }, |
2674 | { PCI_DEVICE(0x10de, 0x055c), .driver_data = AZX_DRIVER_NVIDIA }, | 2697 | { PCI_DEVICE(0x10de, 0x055c), .driver_data = AZX_DRIVER_NVIDIA }, |
2675 | { PCI_DEVICE(0x10de, 0x055d), .driver_data = AZX_DRIVER_NVIDIA }, | 2698 | { PCI_DEVICE(0x10de, 0x055d), .driver_data = AZX_DRIVER_NVIDIA }, |
2699 | { PCI_DEVICE(0x10de, 0x0590), .driver_data = AZX_DRIVER_NVIDIA }, | ||
2676 | { PCI_DEVICE(0x10de, 0x0774), .driver_data = AZX_DRIVER_NVIDIA }, | 2700 | { PCI_DEVICE(0x10de, 0x0774), .driver_data = AZX_DRIVER_NVIDIA }, |
2677 | { PCI_DEVICE(0x10de, 0x0775), .driver_data = AZX_DRIVER_NVIDIA }, | 2701 | { PCI_DEVICE(0x10de, 0x0775), .driver_data = AZX_DRIVER_NVIDIA }, |
2678 | { PCI_DEVICE(0x10de, 0x0776), .driver_data = AZX_DRIVER_NVIDIA }, | 2702 | { PCI_DEVICE(0x10de, 0x0776), .driver_data = AZX_DRIVER_NVIDIA }, |
diff --git a/sound/pci/hda/hda_local.h b/sound/pci/hda/hda_local.h index 5f1dcc59002b..5778ae882b83 100644 --- a/sound/pci/hda/hda_local.h +++ b/sound/pci/hda/hda_local.h | |||
@@ -23,6 +23,15 @@ | |||
23 | #ifndef __SOUND_HDA_LOCAL_H | 23 | #ifndef __SOUND_HDA_LOCAL_H |
24 | #define __SOUND_HDA_LOCAL_H | 24 | #define __SOUND_HDA_LOCAL_H |
25 | 25 | ||
26 | /* We abuse kcontrol_new.subdev field to pass the NID corresponding to | ||
27 | * the given new control. If id.subdev has a bit flag HDA_SUBDEV_NID_FLAG, | ||
28 | * snd_hda_ctl_add() takes the lower-bit subdev value as a valid NID. | ||
29 | * | ||
30 | * Note that the subdevice field is cleared again before the real registration | ||
31 | * in snd_hda_ctl_add(), so that this value won't appear in the outside. | ||
32 | */ | ||
33 | #define HDA_SUBDEV_NID_FLAG (1U << 31) | ||
34 | |||
26 | /* | 35 | /* |
27 | * for mixer controls | 36 | * for mixer controls |
28 | */ | 37 | */ |
@@ -33,6 +42,7 @@ | |||
33 | /* mono volume with index (index=0,1,...) (channel=1,2) */ | 42 | /* mono volume with index (index=0,1,...) (channel=1,2) */ |
34 | #define HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \ | 43 | #define HDA_CODEC_VOLUME_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \ |
35 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ | 44 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ |
45 | .subdevice = HDA_SUBDEV_NID_FLAG | (nid), \ | ||
36 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ | 46 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ |
37 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ | 47 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ |
38 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \ | 48 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \ |
@@ -53,6 +63,7 @@ | |||
53 | /* mono mute switch with index (index=0,1,...) (channel=1,2) */ | 63 | /* mono mute switch with index (index=0,1,...) (channel=1,2) */ |
54 | #define HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \ | 64 | #define HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \ |
55 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ | 65 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ |
66 | .subdevice = HDA_SUBDEV_NID_FLAG | (nid), \ | ||
56 | .info = snd_hda_mixer_amp_switch_info, \ | 67 | .info = snd_hda_mixer_amp_switch_info, \ |
57 | .get = snd_hda_mixer_amp_switch_get, \ | 68 | .get = snd_hda_mixer_amp_switch_get, \ |
58 | .put = snd_hda_mixer_amp_switch_put, \ | 69 | .put = snd_hda_mixer_amp_switch_put, \ |
@@ -66,6 +77,28 @@ | |||
66 | /* stereo mute switch */ | 77 | /* stereo mute switch */ |
67 | #define HDA_CODEC_MUTE(xname, nid, xindex, direction) \ | 78 | #define HDA_CODEC_MUTE(xname, nid, xindex, direction) \ |
68 | HDA_CODEC_MUTE_MONO(xname, nid, 3, xindex, direction) | 79 | HDA_CODEC_MUTE_MONO(xname, nid, 3, xindex, direction) |
80 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
81 | /* special beep mono mute switch with index (index=0,1,...) (channel=1,2) */ | ||
82 | #define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, channel, xindex, direction) \ | ||
83 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xcidx, \ | ||
84 | .subdevice = HDA_SUBDEV_NID_FLAG | (nid), \ | ||
85 | .info = snd_hda_mixer_amp_switch_info, \ | ||
86 | .get = snd_hda_mixer_amp_switch_get, \ | ||
87 | .put = snd_hda_mixer_amp_switch_put_beep, \ | ||
88 | .private_value = HDA_COMPOSE_AMP_VAL(nid, channel, xindex, direction) } | ||
89 | #else | ||
90 | /* no digital beep - just the standard one */ | ||
91 | #define HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, xcidx, nid, ch, xidx, dir) \ | ||
92 | HDA_CODEC_MUTE_MONO_IDX(xname, xcidx, nid, ch, xidx, dir) | ||
93 | #endif /* CONFIG_SND_HDA_INPUT_BEEP */ | ||
94 | /* special beep mono mute switch */ | ||
95 | #define HDA_CODEC_MUTE_BEEP_MONO(xname, nid, channel, xindex, direction) \ | ||
96 | HDA_CODEC_MUTE_BEEP_MONO_IDX(xname, 0, nid, channel, xindex, direction) | ||
97 | /* special beep stereo mute switch */ | ||
98 | #define HDA_CODEC_MUTE_BEEP(xname, nid, xindex, direction) \ | ||
99 | HDA_CODEC_MUTE_BEEP_MONO(xname, nid, 3, xindex, direction) | ||
100 | |||
101 | extern const char *snd_hda_pcm_type_name[]; | ||
69 | 102 | ||
70 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, | 103 | int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol, |
71 | struct snd_ctl_elem_info *uinfo); | 104 | struct snd_ctl_elem_info *uinfo); |
@@ -81,6 +114,10 @@ int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol, | |||
81 | struct snd_ctl_elem_value *ucontrol); | 114 | struct snd_ctl_elem_value *ucontrol); |
82 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, | 115 | int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol, |
83 | struct snd_ctl_elem_value *ucontrol); | 116 | struct snd_ctl_elem_value *ucontrol); |
117 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
118 | int snd_hda_mixer_amp_switch_put_beep(struct snd_kcontrol *kcontrol, | ||
119 | struct snd_ctl_elem_value *ucontrol); | ||
120 | #endif | ||
84 | /* lowlevel accessor with caching; use carefully */ | 121 | /* lowlevel accessor with caching; use carefully */ |
85 | int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, | 122 | int snd_hda_codec_amp_read(struct hda_codec *codec, hda_nid_t nid, int ch, |
86 | int direction, int index); | 123 | int direction, int index); |
@@ -424,8 +461,16 @@ u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction); | |||
424 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, | 461 | int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir, |
425 | unsigned int caps); | 462 | unsigned int caps); |
426 | u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid); | 463 | u32 snd_hda_query_pin_caps(struct hda_codec *codec, hda_nid_t nid); |
464 | u32 snd_hda_pin_sense(struct hda_codec *codec, hda_nid_t nid); | ||
465 | int snd_hda_jack_detect(struct hda_codec *codec, hda_nid_t nid); | ||
427 | 466 | ||
428 | int snd_hda_ctl_add(struct hda_codec *codec, struct snd_kcontrol *kctl); | 467 | struct hda_nid_item { |
468 | struct snd_kcontrol *kctl; | ||
469 | hda_nid_t nid; | ||
470 | }; | ||
471 | |||
472 | int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid, | ||
473 | struct snd_kcontrol *kctl); | ||
429 | void snd_hda_ctls_clear(struct hda_codec *codec); | 474 | void snd_hda_ctls_clear(struct hda_codec *codec); |
430 | 475 | ||
431 | /* | 476 | /* |
@@ -437,6 +482,15 @@ int snd_hda_create_hwdep(struct hda_codec *codec); | |||
437 | static inline int snd_hda_create_hwdep(struct hda_codec *codec) { return 0; } | 482 | static inline int snd_hda_create_hwdep(struct hda_codec *codec) { return 0; } |
438 | #endif | 483 | #endif |
439 | 484 | ||
485 | #if defined(CONFIG_SND_HDA_POWER_SAVE) && defined(CONFIG_SND_HDA_HWDEP) | ||
486 | int snd_hda_hwdep_add_power_sysfs(struct hda_codec *codec); | ||
487 | #else | ||
488 | static inline int snd_hda_hwdep_add_power_sysfs(struct hda_codec *codec) | ||
489 | { | ||
490 | return 0; | ||
491 | } | ||
492 | #endif | ||
493 | |||
440 | #ifdef CONFIG_SND_HDA_RECONFIG | 494 | #ifdef CONFIG_SND_HDA_RECONFIG |
441 | int snd_hda_hwdep_add_sysfs(struct hda_codec *codec); | 495 | int snd_hda_hwdep_add_sysfs(struct hda_codec *codec); |
442 | #else | 496 | #else |
@@ -490,7 +544,8 @@ int snd_hda_check_amp_list_power(struct hda_codec *codec, | |||
490 | * AMP control callbacks | 544 | * AMP control callbacks |
491 | */ | 545 | */ |
492 | /* retrieve parameters from private_value */ | 546 | /* retrieve parameters from private_value */ |
493 | #define get_amp_nid(kc) ((kc)->private_value & 0xffff) | 547 | #define get_amp_nid_(pv) ((pv) & 0xffff) |
548 | #define get_amp_nid(kc) get_amp_nid_((kc)->private_value) | ||
494 | #define get_amp_channels(kc) (((kc)->private_value >> 16) & 0x3) | 549 | #define get_amp_channels(kc) (((kc)->private_value >> 16) & 0x3) |
495 | #define get_amp_direction(kc) (((kc)->private_value >> 18) & 0x1) | 550 | #define get_amp_direction(kc) (((kc)->private_value >> 18) & 0x1) |
496 | #define get_amp_index(kc) (((kc)->private_value >> 19) & 0xf) | 551 | #define get_amp_index(kc) (((kc)->private_value >> 19) & 0xf) |
@@ -516,9 +571,11 @@ struct cea_sad { | |||
516 | * ELD: EDID Like Data | 571 | * ELD: EDID Like Data |
517 | */ | 572 | */ |
518 | struct hdmi_eld { | 573 | struct hdmi_eld { |
574 | bool monitor_present; | ||
575 | bool eld_valid; | ||
519 | int eld_size; | 576 | int eld_size; |
520 | int baseline_len; | 577 | int baseline_len; |
521 | int eld_ver; /* (eld_ver == 0) indicates invalid ELD */ | 578 | int eld_ver; |
522 | int cea_edid_ver; | 579 | int cea_edid_ver; |
523 | char monitor_name[ELD_MAX_MNL + 1]; | 580 | char monitor_name[ELD_MAX_MNL + 1]; |
524 | int manufacture_id; | 581 | int manufacture_id; |
@@ -541,11 +598,13 @@ int snd_hdmi_get_eld(struct hdmi_eld *, struct hda_codec *, hda_nid_t); | |||
541 | void snd_hdmi_show_eld(struct hdmi_eld *eld); | 598 | void snd_hdmi_show_eld(struct hdmi_eld *eld); |
542 | 599 | ||
543 | #ifdef CONFIG_PROC_FS | 600 | #ifdef CONFIG_PROC_FS |
544 | int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld); | 601 | int snd_hda_eld_proc_new(struct hda_codec *codec, struct hdmi_eld *eld, |
602 | int index); | ||
545 | void snd_hda_eld_proc_free(struct hda_codec *codec, struct hdmi_eld *eld); | 603 | void snd_hda_eld_proc_free(struct hda_codec *codec, struct hdmi_eld *eld); |
546 | #else | 604 | #else |
547 | static inline int snd_hda_eld_proc_new(struct hda_codec *codec, | 605 | static inline int snd_hda_eld_proc_new(struct hda_codec *codec, |
548 | struct hdmi_eld *eld) | 606 | struct hdmi_eld *eld, |
607 | int index) | ||
549 | { | 608 | { |
550 | return 0; | 609 | return 0; |
551 | } | 610 | } |
diff --git a/sound/pci/hda/hda_proc.c b/sound/pci/hda/hda_proc.c index 95f24e4729f8..09476fc1ab64 100644 --- a/sound/pci/hda/hda_proc.c +++ b/sound/pci/hda/hda_proc.c | |||
@@ -26,6 +26,21 @@ | |||
26 | #include "hda_codec.h" | 26 | #include "hda_codec.h" |
27 | #include "hda_local.h" | 27 | #include "hda_local.h" |
28 | 28 | ||
29 | static char *bits_names(unsigned int bits, char *names[], int size) | ||
30 | { | ||
31 | int i, n; | ||
32 | static char buf[128]; | ||
33 | |||
34 | for (i = 0, n = 0; i < size; i++) { | ||
35 | if (bits & (1U<<i) && names[i]) | ||
36 | n += snprintf(buf + n, sizeof(buf) - n, " %s", | ||
37 | names[i]); | ||
38 | } | ||
39 | buf[n] = '\0'; | ||
40 | |||
41 | return buf; | ||
42 | } | ||
43 | |||
29 | static const char *get_wid_type_name(unsigned int wid_value) | 44 | static const char *get_wid_type_name(unsigned int wid_value) |
30 | { | 45 | { |
31 | static char *names[16] = { | 46 | static char *names[16] = { |
@@ -46,6 +61,41 @@ static const char *get_wid_type_name(unsigned int wid_value) | |||
46 | return "UNKNOWN Widget"; | 61 | return "UNKNOWN Widget"; |
47 | } | 62 | } |
48 | 63 | ||
64 | static void print_nid_mixers(struct snd_info_buffer *buffer, | ||
65 | struct hda_codec *codec, hda_nid_t nid) | ||
66 | { | ||
67 | int i; | ||
68 | struct hda_nid_item *items = codec->mixers.list; | ||
69 | struct snd_kcontrol *kctl; | ||
70 | for (i = 0; i < codec->mixers.used; i++) { | ||
71 | if (items[i].nid == nid) { | ||
72 | kctl = items[i].kctl; | ||
73 | snd_iprintf(buffer, | ||
74 | " Control: name=\"%s\", index=%i, device=%i\n", | ||
75 | kctl->id.name, kctl->id.index, kctl->id.device); | ||
76 | } | ||
77 | } | ||
78 | } | ||
79 | |||
80 | static void print_nid_pcms(struct snd_info_buffer *buffer, | ||
81 | struct hda_codec *codec, hda_nid_t nid) | ||
82 | { | ||
83 | int pcm, type; | ||
84 | struct hda_pcm *cpcm; | ||
85 | for (pcm = 0; pcm < codec->num_pcms; pcm++) { | ||
86 | cpcm = &codec->pcm_info[pcm]; | ||
87 | for (type = 0; type < 2; type++) { | ||
88 | if (cpcm->stream[type].nid != nid || cpcm->pcm == NULL) | ||
89 | continue; | ||
90 | snd_iprintf(buffer, " Device: name=\"%s\", " | ||
91 | "type=\"%s\", device=%i\n", | ||
92 | cpcm->name, | ||
93 | snd_hda_pcm_type_name[cpcm->pcm_type], | ||
94 | cpcm->pcm->device); | ||
95 | } | ||
96 | } | ||
97 | } | ||
98 | |||
49 | static void print_amp_caps(struct snd_info_buffer *buffer, | 99 | static void print_amp_caps(struct snd_info_buffer *buffer, |
50 | struct hda_codec *codec, hda_nid_t nid, int dir) | 100 | struct hda_codec *codec, hda_nid_t nid, int dir) |
51 | { | 101 | { |
@@ -363,8 +413,24 @@ static const char *get_pwr_state(u32 state) | |||
363 | static void print_power_state(struct snd_info_buffer *buffer, | 413 | static void print_power_state(struct snd_info_buffer *buffer, |
364 | struct hda_codec *codec, hda_nid_t nid) | 414 | struct hda_codec *codec, hda_nid_t nid) |
365 | { | 415 | { |
416 | static char *names[] = { | ||
417 | [ilog2(AC_PWRST_D0SUP)] = "D0", | ||
418 | [ilog2(AC_PWRST_D1SUP)] = "D1", | ||
419 | [ilog2(AC_PWRST_D2SUP)] = "D2", | ||
420 | [ilog2(AC_PWRST_D3SUP)] = "D3", | ||
421 | [ilog2(AC_PWRST_D3COLDSUP)] = "D3cold", | ||
422 | [ilog2(AC_PWRST_S3D3COLDSUP)] = "S3D3cold", | ||
423 | [ilog2(AC_PWRST_CLKSTOP)] = "CLKSTOP", | ||
424 | [ilog2(AC_PWRST_EPSS)] = "EPSS", | ||
425 | }; | ||
426 | |||
427 | int sup = snd_hda_param_read(codec, nid, AC_PAR_POWER_STATE); | ||
366 | int pwr = snd_hda_codec_read(codec, nid, 0, | 428 | int pwr = snd_hda_codec_read(codec, nid, 0, |
367 | AC_VERB_GET_POWER_STATE, 0); | 429 | AC_VERB_GET_POWER_STATE, 0); |
430 | if (sup) | ||
431 | snd_iprintf(buffer, " Power states: %s\n", | ||
432 | bits_names(sup, names, ARRAY_SIZE(names))); | ||
433 | |||
368 | snd_iprintf(buffer, " Power: setting=%s, actual=%s\n", | 434 | snd_iprintf(buffer, " Power: setting=%s, actual=%s\n", |
369 | get_pwr_state(pwr & AC_PWRST_SETTING), | 435 | get_pwr_state(pwr & AC_PWRST_SETTING), |
370 | get_pwr_state((pwr & AC_PWRST_ACTUAL) >> | 436 | get_pwr_state((pwr & AC_PWRST_ACTUAL) >> |
@@ -457,6 +523,7 @@ static void print_gpio(struct snd_info_buffer *buffer, | |||
457 | (data & (1<<i)) ? 1 : 0, | 523 | (data & (1<<i)) ? 1 : 0, |
458 | (unsol & (1<<i)) ? 1 : 0); | 524 | (unsol & (1<<i)) ? 1 : 0); |
459 | /* FIXME: add GPO and GPI pin information */ | 525 | /* FIXME: add GPO and GPI pin information */ |
526 | print_nid_mixers(buffer, codec, nid); | ||
460 | } | 527 | } |
461 | 528 | ||
462 | static void print_codec_info(struct snd_info_entry *entry, | 529 | static void print_codec_info(struct snd_info_entry *entry, |
@@ -536,6 +603,9 @@ static void print_codec_info(struct snd_info_entry *entry, | |||
536 | snd_iprintf(buffer, " CP"); | 603 | snd_iprintf(buffer, " CP"); |
537 | snd_iprintf(buffer, "\n"); | 604 | snd_iprintf(buffer, "\n"); |
538 | 605 | ||
606 | print_nid_mixers(buffer, codec, nid); | ||
607 | print_nid_pcms(buffer, codec, nid); | ||
608 | |||
539 | /* volume knob is a special widget that always have connection | 609 | /* volume knob is a special widget that always have connection |
540 | * list | 610 | * list |
541 | */ | 611 | */ |
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c index 215e72a87113..455a0494f907 100644 --- a/sound/pci/hda/patch_analog.c +++ b/sound/pci/hda/patch_analog.c | |||
@@ -156,15 +156,19 @@ static const char *ad_slave_sws[] = { | |||
156 | 156 | ||
157 | static void ad198x_free_kctls(struct hda_codec *codec); | 157 | static void ad198x_free_kctls(struct hda_codec *codec); |
158 | 158 | ||
159 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
159 | /* additional beep mixers; the actual parameters are overwritten at build */ | 160 | /* additional beep mixers; the actual parameters are overwritten at build */ |
160 | static struct snd_kcontrol_new ad_beep_mixer[] = { | 161 | static struct snd_kcontrol_new ad_beep_mixer[] = { |
161 | HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_OUTPUT), | 162 | HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_OUTPUT), |
162 | HDA_CODEC_MUTE("Beep Playback Switch", 0, 0, HDA_OUTPUT), | 163 | HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_OUTPUT), |
163 | { } /* end */ | 164 | { } /* end */ |
164 | }; | 165 | }; |
165 | 166 | ||
166 | #define set_beep_amp(spec, nid, idx, dir) \ | 167 | #define set_beep_amp(spec, nid, idx, dir) \ |
167 | ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir)) /* mono */ | 168 | ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 1, idx, dir)) /* mono */ |
169 | #else | ||
170 | #define set_beep_amp(spec, nid, idx, dir) /* NOP */ | ||
171 | #endif | ||
168 | 172 | ||
169 | static int ad198x_build_controls(struct hda_codec *codec) | 173 | static int ad198x_build_controls(struct hda_codec *codec) |
170 | { | 174 | { |
@@ -194,6 +198,7 @@ static int ad198x_build_controls(struct hda_codec *codec) | |||
194 | } | 198 | } |
195 | 199 | ||
196 | /* create beep controls if needed */ | 200 | /* create beep controls if needed */ |
201 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
197 | if (spec->beep_amp) { | 202 | if (spec->beep_amp) { |
198 | struct snd_kcontrol_new *knew; | 203 | struct snd_kcontrol_new *knew; |
199 | for (knew = ad_beep_mixer; knew->name; knew++) { | 204 | for (knew = ad_beep_mixer; knew->name; knew++) { |
@@ -202,11 +207,14 @@ static int ad198x_build_controls(struct hda_codec *codec) | |||
202 | if (!kctl) | 207 | if (!kctl) |
203 | return -ENOMEM; | 208 | return -ENOMEM; |
204 | kctl->private_value = spec->beep_amp; | 209 | kctl->private_value = spec->beep_amp; |
205 | err = snd_hda_ctl_add(codec, kctl); | 210 | err = snd_hda_ctl_add(codec, |
211 | get_amp_nid_(spec->beep_amp), | ||
212 | kctl); | ||
206 | if (err < 0) | 213 | if (err < 0) |
207 | return err; | 214 | return err; |
208 | } | 215 | } |
209 | } | 216 | } |
217 | #endif | ||
210 | 218 | ||
211 | /* if we have no master control, let's create it */ | 219 | /* if we have no master control, let's create it */ |
212 | if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { | 220 | if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) { |
@@ -712,10 +720,10 @@ static struct snd_kcontrol_new ad1986a_laptop_intmic_mixers[] = { | |||
712 | static void ad1986a_automic(struct hda_codec *codec) | 720 | static void ad1986a_automic(struct hda_codec *codec) |
713 | { | 721 | { |
714 | unsigned int present; | 722 | unsigned int present; |
715 | present = snd_hda_codec_read(codec, 0x1f, 0, AC_VERB_GET_PIN_SENSE, 0); | 723 | present = snd_hda_jack_detect(codec, 0x1f); |
716 | /* 0 = 0x1f, 2 = 0x1d, 4 = mixed */ | 724 | /* 0 = 0x1f, 2 = 0x1d, 4 = mixed */ |
717 | snd_hda_codec_write(codec, 0x0f, 0, AC_VERB_SET_CONNECT_SEL, | 725 | snd_hda_codec_write(codec, 0x0f, 0, AC_VERB_SET_CONNECT_SEL, |
718 | (present & AC_PINSENSE_PRESENCE) ? 0 : 2); | 726 | present ? 0 : 2); |
719 | } | 727 | } |
720 | 728 | ||
721 | #define AD1986A_MIC_EVENT 0x36 | 729 | #define AD1986A_MIC_EVENT 0x36 |
@@ -754,10 +762,8 @@ static void ad1986a_update_hp(struct hda_codec *codec) | |||
754 | static void ad1986a_hp_automute(struct hda_codec *codec) | 762 | static void ad1986a_hp_automute(struct hda_codec *codec) |
755 | { | 763 | { |
756 | struct ad198x_spec *spec = codec->spec; | 764 | struct ad198x_spec *spec = codec->spec; |
757 | unsigned int present; | ||
758 | 765 | ||
759 | present = snd_hda_codec_read(codec, 0x1a, 0, AC_VERB_GET_PIN_SENSE, 0); | 766 | spec->jack_present = snd_hda_jack_detect(codec, 0x1a); |
760 | spec->jack_present = !!(present & 0x80000000); | ||
761 | if (spec->inv_jack_detect) | 767 | if (spec->inv_jack_detect) |
762 | spec->jack_present = !spec->jack_present; | 768 | spec->jack_present = !spec->jack_present; |
763 | ad1986a_update_hp(codec); | 769 | ad1986a_update_hp(codec); |
@@ -1547,8 +1553,7 @@ static void ad1981_hp_automute(struct hda_codec *codec) | |||
1547 | { | 1553 | { |
1548 | unsigned int present; | 1554 | unsigned int present; |
1549 | 1555 | ||
1550 | present = snd_hda_codec_read(codec, 0x06, 0, | 1556 | present = snd_hda_jack_detect(codec, 0x06); |
1551 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
1552 | snd_hda_codec_amp_stereo(codec, 0x05, HDA_OUTPUT, 0, | 1557 | snd_hda_codec_amp_stereo(codec, 0x05, HDA_OUTPUT, 0, |
1553 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 1558 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
1554 | } | 1559 | } |
@@ -1568,8 +1573,7 @@ static void ad1981_hp_automic(struct hda_codec *codec) | |||
1568 | }; | 1573 | }; |
1569 | unsigned int present; | 1574 | unsigned int present; |
1570 | 1575 | ||
1571 | present = snd_hda_codec_read(codec, 0x08, 0, | 1576 | present = snd_hda_jack_detect(codec, 0x08); |
1572 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
1573 | if (present) | 1577 | if (present) |
1574 | snd_hda_sequence_write(codec, mic_jack_on); | 1578 | snd_hda_sequence_write(codec, mic_jack_on); |
1575 | else | 1579 | else |
@@ -2524,7 +2528,7 @@ static void ad1988_laptop_unsol_event(struct hda_codec *codec, unsigned int res) | |||
2524 | { | 2528 | { |
2525 | if ((res >> 26) != AD1988_HP_EVENT) | 2529 | if ((res >> 26) != AD1988_HP_EVENT) |
2526 | return; | 2530 | return; |
2527 | if (snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0) & (1 << 31)) | 2531 | if (snd_hda_jack_detect(codec, 0x11)) |
2528 | snd_hda_sequence_write(codec, ad1988_laptop_hp_on); | 2532 | snd_hda_sequence_write(codec, ad1988_laptop_hp_on); |
2529 | else | 2533 | else |
2530 | snd_hda_sequence_write(codec, ad1988_laptop_hp_off); | 2534 | snd_hda_sequence_write(codec, ad1988_laptop_hp_off); |
@@ -2569,6 +2573,8 @@ static int add_control(struct ad198x_spec *spec, int type, const char *name, | |||
2569 | knew->name = kstrdup(name, GFP_KERNEL); | 2573 | knew->name = kstrdup(name, GFP_KERNEL); |
2570 | if (! knew->name) | 2574 | if (! knew->name) |
2571 | return -ENOMEM; | 2575 | return -ENOMEM; |
2576 | if (get_amp_nid_(val)) | ||
2577 | knew->subdevice = HDA_SUBDEV_NID_FLAG | get_amp_nid_(val); | ||
2572 | knew->private_value = val; | 2578 | knew->private_value = val; |
2573 | return 0; | 2579 | return 0; |
2574 | } | 2580 | } |
@@ -3768,8 +3774,7 @@ static void ad1884a_hp_automute(struct hda_codec *codec) | |||
3768 | { | 3774 | { |
3769 | unsigned int present; | 3775 | unsigned int present; |
3770 | 3776 | ||
3771 | present = snd_hda_codec_read(codec, 0x11, 0, | 3777 | present = snd_hda_jack_detect(codec, 0x11); |
3772 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
3773 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0, | 3778 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0, |
3774 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 3779 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
3775 | snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_EAPD_BTLENABLE, | 3780 | snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_EAPD_BTLENABLE, |
@@ -3781,8 +3786,7 @@ static void ad1884a_hp_automic(struct hda_codec *codec) | |||
3781 | { | 3786 | { |
3782 | unsigned int present; | 3787 | unsigned int present; |
3783 | 3788 | ||
3784 | present = snd_hda_codec_read(codec, 0x14, 0, | 3789 | present = snd_hda_jack_detect(codec, 0x14); |
3785 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
3786 | snd_hda_codec_write(codec, 0x0c, 0, AC_VERB_SET_CONNECT_SEL, | 3790 | snd_hda_codec_write(codec, 0x0c, 0, AC_VERB_SET_CONNECT_SEL, |
3787 | present ? 0 : 1); | 3791 | present ? 0 : 1); |
3788 | } | 3792 | } |
@@ -3817,13 +3821,9 @@ static void ad1884a_laptop_automute(struct hda_codec *codec) | |||
3817 | { | 3821 | { |
3818 | unsigned int present; | 3822 | unsigned int present; |
3819 | 3823 | ||
3820 | present = snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0); | 3824 | present = snd_hda_jack_detect(codec, 0x11); |
3821 | present &= AC_PINSENSE_PRESENCE; | 3825 | if (!present) |
3822 | if (!present) { | 3826 | present = snd_hda_jack_detect(codec, 0x12); |
3823 | present = snd_hda_codec_read(codec, 0x12, 0, | ||
3824 | AC_VERB_GET_PIN_SENSE, 0); | ||
3825 | present &= AC_PINSENSE_PRESENCE; | ||
3826 | } | ||
3827 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0, | 3827 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0, |
3828 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 3828 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
3829 | snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_EAPD_BTLENABLE, | 3829 | snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_EAPD_BTLENABLE, |
@@ -3835,11 +3835,9 @@ static void ad1884a_laptop_automic(struct hda_codec *codec) | |||
3835 | { | 3835 | { |
3836 | unsigned int idx; | 3836 | unsigned int idx; |
3837 | 3837 | ||
3838 | if (snd_hda_codec_read(codec, 0x14, 0, AC_VERB_GET_PIN_SENSE, 0) & | 3838 | if (snd_hda_jack_detect(codec, 0x14)) |
3839 | AC_PINSENSE_PRESENCE) | ||
3840 | idx = 0; | 3839 | idx = 0; |
3841 | else if (snd_hda_codec_read(codec, 0x1c, 0, AC_VERB_GET_PIN_SENSE, 0) & | 3840 | else if (snd_hda_jack_detect(codec, 0x1c)) |
3842 | AC_PINSENSE_PRESENCE) | ||
3843 | idx = 4; | 3841 | idx = 4; |
3844 | else | 3842 | else |
3845 | idx = 1; | 3843 | idx = 1; |
@@ -4008,8 +4006,7 @@ static void ad1984a_thinkpad_automute(struct hda_codec *codec) | |||
4008 | { | 4006 | { |
4009 | unsigned int present; | 4007 | unsigned int present; |
4010 | 4008 | ||
4011 | present = snd_hda_codec_read(codec, 0x11, 0, AC_VERB_GET_PIN_SENSE, 0) | 4009 | present = snd_hda_jack_detect(codec, 0x11); |
4012 | & AC_PINSENSE_PRESENCE; | ||
4013 | snd_hda_codec_amp_stereo(codec, 0x12, HDA_OUTPUT, 0, | 4010 | snd_hda_codec_amp_stereo(codec, 0x12, HDA_OUTPUT, 0, |
4014 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 4011 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
4015 | } | 4012 | } |
@@ -4032,6 +4029,125 @@ static int ad1984a_thinkpad_init(struct hda_codec *codec) | |||
4032 | } | 4029 | } |
4033 | 4030 | ||
4034 | /* | 4031 | /* |
4032 | * HP Touchsmart | ||
4033 | * port-A (0x11) - front hp-out | ||
4034 | * port-B (0x14) - unused | ||
4035 | * port-C (0x15) - unused | ||
4036 | * port-D (0x12) - rear line out | ||
4037 | * port-E (0x1c) - front mic-in | ||
4038 | * port-F (0x16) - Internal speakers | ||
4039 | * digital-mic (0x17) - Internal mic | ||
4040 | */ | ||
4041 | |||
4042 | static struct hda_verb ad1984a_touchsmart_verbs[] = { | ||
4043 | /* DACs; unmute as default */ | ||
4044 | {0x03, AC_VERB_SET_AMP_GAIN_MUTE, 0x27}, /* 0dB */ | ||
4045 | {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x27}, /* 0dB */ | ||
4046 | /* Port-A (HP) mixer - route only from analog mixer */ | ||
4047 | {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
4048 | {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
4049 | /* Port-A pin */ | ||
4050 | {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, | ||
4051 | /* Port-A (HP) pin - always unmuted */ | ||
4052 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, | ||
4053 | /* Port-E (int speaker) mixer - route only from analog mixer */ | ||
4054 | {0x25, AC_VERB_SET_AMP_GAIN_MUTE, 0x03}, | ||
4055 | /* Port-E pin */ | ||
4056 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
4057 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, | ||
4058 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, | ||
4059 | /* Port-F (int speaker) mixer - route only from analog mixer */ | ||
4060 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
4061 | {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
4062 | /* Port-F pin */ | ||
4063 | {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, | ||
4064 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
4065 | /* Analog mixer; mute as default */ | ||
4066 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
4067 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
4068 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
4069 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
4070 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, | ||
4071 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, | ||
4072 | /* Analog Mix output amp */ | ||
4073 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
4074 | /* capture sources */ | ||
4075 | /* {0x0c, AC_VERB_SET_CONNECT_SEL, 0x0}, */ /* set via unsol */ | ||
4076 | {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
4077 | {0x0d, AC_VERB_SET_CONNECT_SEL, 0x0}, | ||
4078 | {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
4079 | /* unsolicited event for pin-sense */ | ||
4080 | {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1884A_HP_EVENT}, | ||
4081 | {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | AD1884A_MIC_EVENT}, | ||
4082 | /* allow to touch GPIO1 (for mute control) */ | ||
4083 | {0x01, AC_VERB_SET_GPIO_MASK, 0x02}, | ||
4084 | {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02}, | ||
4085 | {0x01, AC_VERB_SET_GPIO_DATA, 0x02}, /* first muted */ | ||
4086 | /* internal mic - dmic */ | ||
4087 | {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
4088 | /* set magic COEFs for dmic */ | ||
4089 | {0x01, AC_VERB_SET_COEF_INDEX, 0x13f7}, | ||
4090 | {0x01, AC_VERB_SET_PROC_COEF, 0x08}, | ||
4091 | { } /* end */ | ||
4092 | }; | ||
4093 | |||
4094 | static struct snd_kcontrol_new ad1984a_touchsmart_mixers[] = { | ||
4095 | HDA_CODEC_VOLUME("Master Playback Volume", 0x21, 0x0, HDA_OUTPUT), | ||
4096 | /* HDA_CODEC_MUTE("Master Playback Switch", 0x21, 0x0, HDA_OUTPUT),*/ | ||
4097 | { | ||
4098 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
4099 | .name = "Master Playback Switch", | ||
4100 | .info = snd_hda_mixer_amp_switch_info, | ||
4101 | .get = snd_hda_mixer_amp_switch_get, | ||
4102 | .put = ad1884a_mobile_master_sw_put, | ||
4103 | .private_value = HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT), | ||
4104 | }, | ||
4105 | HDA_CODEC_VOLUME("PCM Playback Volume", 0x20, 0x5, HDA_INPUT), | ||
4106 | HDA_CODEC_MUTE("PCM Playback Switch", 0x20, 0x5, HDA_INPUT), | ||
4107 | HDA_CODEC_VOLUME("Capture Volume", 0x0c, 0x0, HDA_OUTPUT), | ||
4108 | HDA_CODEC_MUTE("Capture Switch", 0x0c, 0x0, HDA_OUTPUT), | ||
4109 | HDA_CODEC_VOLUME("Mic Boost", 0x25, 0x0, HDA_OUTPUT), | ||
4110 | HDA_CODEC_VOLUME("Internal Mic Boost", 0x17, 0x0, HDA_INPUT), | ||
4111 | { } /* end */ | ||
4112 | }; | ||
4113 | |||
4114 | /* switch to external mic if plugged */ | ||
4115 | static void ad1984a_touchsmart_automic(struct hda_codec *codec) | ||
4116 | { | ||
4117 | if (snd_hda_jack_detect(codec, 0x1c)) | ||
4118 | snd_hda_codec_write(codec, 0x0c, 0, | ||
4119 | AC_VERB_SET_CONNECT_SEL, 0x4); | ||
4120 | else | ||
4121 | snd_hda_codec_write(codec, 0x0c, 0, | ||
4122 | AC_VERB_SET_CONNECT_SEL, 0x5); | ||
4123 | } | ||
4124 | |||
4125 | |||
4126 | /* unsolicited event for HP jack sensing */ | ||
4127 | static void ad1984a_touchsmart_unsol_event(struct hda_codec *codec, | ||
4128 | unsigned int res) | ||
4129 | { | ||
4130 | switch (res >> 26) { | ||
4131 | case AD1884A_HP_EVENT: | ||
4132 | ad1884a_hp_automute(codec); | ||
4133 | break; | ||
4134 | case AD1884A_MIC_EVENT: | ||
4135 | ad1984a_touchsmart_automic(codec); | ||
4136 | break; | ||
4137 | } | ||
4138 | } | ||
4139 | |||
4140 | /* initialize jack-sensing, too */ | ||
4141 | static int ad1984a_touchsmart_init(struct hda_codec *codec) | ||
4142 | { | ||
4143 | ad198x_init(codec); | ||
4144 | ad1884a_hp_automute(codec); | ||
4145 | ad1984a_touchsmart_automic(codec); | ||
4146 | return 0; | ||
4147 | } | ||
4148 | |||
4149 | |||
4150 | /* | ||
4035 | */ | 4151 | */ |
4036 | 4152 | ||
4037 | enum { | 4153 | enum { |
@@ -4039,6 +4155,7 @@ enum { | |||
4039 | AD1884A_LAPTOP, | 4155 | AD1884A_LAPTOP, |
4040 | AD1884A_MOBILE, | 4156 | AD1884A_MOBILE, |
4041 | AD1884A_THINKPAD, | 4157 | AD1884A_THINKPAD, |
4158 | AD1984A_TOUCHSMART, | ||
4042 | AD1884A_MODELS | 4159 | AD1884A_MODELS |
4043 | }; | 4160 | }; |
4044 | 4161 | ||
@@ -4047,6 +4164,7 @@ static const char *ad1884a_models[AD1884A_MODELS] = { | |||
4047 | [AD1884A_LAPTOP] = "laptop", | 4164 | [AD1884A_LAPTOP] = "laptop", |
4048 | [AD1884A_MOBILE] = "mobile", | 4165 | [AD1884A_MOBILE] = "mobile", |
4049 | [AD1884A_THINKPAD] = "thinkpad", | 4166 | [AD1884A_THINKPAD] = "thinkpad", |
4167 | [AD1984A_TOUCHSMART] = "touchsmart", | ||
4050 | }; | 4168 | }; |
4051 | 4169 | ||
4052 | static struct snd_pci_quirk ad1884a_cfg_tbl[] = { | 4170 | static struct snd_pci_quirk ad1884a_cfg_tbl[] = { |
@@ -4059,6 +4177,7 @@ static struct snd_pci_quirk ad1884a_cfg_tbl[] = { | |||
4059 | SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3600, "HP laptop", AD1884A_LAPTOP), | 4177 | SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3600, "HP laptop", AD1884A_LAPTOP), |
4060 | SND_PCI_QUIRK_MASK(0x103c, 0xfff0, 0x7010, "HP laptop", AD1884A_MOBILE), | 4178 | SND_PCI_QUIRK_MASK(0x103c, 0xfff0, 0x7010, "HP laptop", AD1884A_MOBILE), |
4061 | SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X300", AD1884A_THINKPAD), | 4179 | SND_PCI_QUIRK(0x17aa, 0x20ac, "Thinkpad X300", AD1884A_THINKPAD), |
4180 | SND_PCI_QUIRK(0x103c, 0x2a82, "Touchsmart", AD1984A_TOUCHSMART), | ||
4062 | {} | 4181 | {} |
4063 | }; | 4182 | }; |
4064 | 4183 | ||
@@ -4142,6 +4261,21 @@ static int patch_ad1884a(struct hda_codec *codec) | |||
4142 | codec->patch_ops.unsol_event = ad1984a_thinkpad_unsol_event; | 4261 | codec->patch_ops.unsol_event = ad1984a_thinkpad_unsol_event; |
4143 | codec->patch_ops.init = ad1984a_thinkpad_init; | 4262 | codec->patch_ops.init = ad1984a_thinkpad_init; |
4144 | break; | 4263 | break; |
4264 | case AD1984A_TOUCHSMART: | ||
4265 | spec->mixers[0] = ad1984a_touchsmart_mixers; | ||
4266 | spec->init_verbs[0] = ad1984a_touchsmart_verbs; | ||
4267 | spec->multiout.dig_out_nid = 0; | ||
4268 | codec->patch_ops.unsol_event = ad1984a_touchsmart_unsol_event; | ||
4269 | codec->patch_ops.init = ad1984a_touchsmart_init; | ||
4270 | /* set the upper-limit for mixer amp to 0dB for avoiding the | ||
4271 | * possible damage by overloading | ||
4272 | */ | ||
4273 | snd_hda_override_amp_caps(codec, 0x20, HDA_INPUT, | ||
4274 | (0x17 << AC_AMPCAP_OFFSET_SHIFT) | | ||
4275 | (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) | | ||
4276 | (0x05 << AC_AMPCAP_STEP_SIZE_SHIFT) | | ||
4277 | (1 << AC_AMPCAP_MUTE_SHIFT)); | ||
4278 | break; | ||
4145 | } | 4279 | } |
4146 | 4280 | ||
4147 | return 0; | 4281 | return 0; |
diff --git a/sound/pci/hda/patch_ca0110.c b/sound/pci/hda/patch_ca0110.c index d08353d3bb7f..af478019088e 100644 --- a/sound/pci/hda/patch_ca0110.c +++ b/sound/pci/hda/patch_ca0110.c | |||
@@ -144,7 +144,7 @@ static int _add_switch(struct hda_codec *codec, hda_nid_t nid, const char *pfx, | |||
144 | struct snd_kcontrol_new knew = | 144 | struct snd_kcontrol_new knew = |
145 | HDA_CODEC_MUTE_MONO(namestr, nid, chan, 0, type); | 145 | HDA_CODEC_MUTE_MONO(namestr, nid, chan, 0, type); |
146 | sprintf(namestr, "%s %s Switch", pfx, dirstr[dir]); | 146 | sprintf(namestr, "%s %s Switch", pfx, dirstr[dir]); |
147 | return snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); | 147 | return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec)); |
148 | } | 148 | } |
149 | 149 | ||
150 | static int _add_volume(struct hda_codec *codec, hda_nid_t nid, const char *pfx, | 150 | static int _add_volume(struct hda_codec *codec, hda_nid_t nid, const char *pfx, |
@@ -155,7 +155,7 @@ static int _add_volume(struct hda_codec *codec, hda_nid_t nid, const char *pfx, | |||
155 | struct snd_kcontrol_new knew = | 155 | struct snd_kcontrol_new knew = |
156 | HDA_CODEC_VOLUME_MONO(namestr, nid, chan, 0, type); | 156 | HDA_CODEC_VOLUME_MONO(namestr, nid, chan, 0, type); |
157 | sprintf(namestr, "%s %s Volume", pfx, dirstr[dir]); | 157 | sprintf(namestr, "%s %s Volume", pfx, dirstr[dir]); |
158 | return snd_hda_ctl_add(codec, snd_ctl_new1(&knew, codec)); | 158 | return snd_hda_ctl_add(codec, nid, snd_ctl_new1(&knew, codec)); |
159 | } | 159 | } |
160 | 160 | ||
161 | #define add_out_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 0) | 161 | #define add_out_switch(codec, nid, pfx) _add_switch(codec, nid, pfx, 3, 0) |
diff --git a/sound/pci/hda/patch_cirrus.c b/sound/pci/hda/patch_cirrus.c index 8ba306856d38..2439e84dcb21 100644 --- a/sound/pci/hda/patch_cirrus.c +++ b/sound/pci/hda/patch_cirrus.c | |||
@@ -500,7 +500,7 @@ static int add_mute(struct hda_codec *codec, const char *name, int index, | |||
500 | knew.private_value = pval; | 500 | knew.private_value = pval; |
501 | snprintf(tmp, sizeof(tmp), "%s %s Switch", name, dir_sfx[dir]); | 501 | snprintf(tmp, sizeof(tmp), "%s %s Switch", name, dir_sfx[dir]); |
502 | *kctlp = snd_ctl_new1(&knew, codec); | 502 | *kctlp = snd_ctl_new1(&knew, codec); |
503 | return snd_hda_ctl_add(codec, *kctlp); | 503 | return snd_hda_ctl_add(codec, get_amp_nid_(pval), *kctlp); |
504 | } | 504 | } |
505 | 505 | ||
506 | static int add_volume(struct hda_codec *codec, const char *name, | 506 | static int add_volume(struct hda_codec *codec, const char *name, |
@@ -513,7 +513,7 @@ static int add_volume(struct hda_codec *codec, const char *name, | |||
513 | knew.private_value = pval; | 513 | knew.private_value = pval; |
514 | snprintf(tmp, sizeof(tmp), "%s %s Volume", name, dir_sfx[dir]); | 514 | snprintf(tmp, sizeof(tmp), "%s %s Volume", name, dir_sfx[dir]); |
515 | *kctlp = snd_ctl_new1(&knew, codec); | 515 | *kctlp = snd_ctl_new1(&knew, codec); |
516 | return snd_hda_ctl_add(codec, *kctlp); | 516 | return snd_hda_ctl_add(codec, get_amp_nid_(pval), *kctlp); |
517 | } | 517 | } |
518 | 518 | ||
519 | static void fix_volume_caps(struct hda_codec *codec, hda_nid_t dac) | 519 | static void fix_volume_caps(struct hda_codec *codec, hda_nid_t dac) |
@@ -536,14 +536,14 @@ static int add_vmaster(struct hda_codec *codec, hda_nid_t dac) | |||
536 | 536 | ||
537 | spec->vmaster_sw = | 537 | spec->vmaster_sw = |
538 | snd_ctl_make_virtual_master("Master Playback Switch", NULL); | 538 | snd_ctl_make_virtual_master("Master Playback Switch", NULL); |
539 | err = snd_hda_ctl_add(codec, spec->vmaster_sw); | 539 | err = snd_hda_ctl_add(codec, dac, spec->vmaster_sw); |
540 | if (err < 0) | 540 | if (err < 0) |
541 | return err; | 541 | return err; |
542 | 542 | ||
543 | snd_hda_set_vmaster_tlv(codec, dac, HDA_OUTPUT, tlv); | 543 | snd_hda_set_vmaster_tlv(codec, dac, HDA_OUTPUT, tlv); |
544 | spec->vmaster_vol = | 544 | spec->vmaster_vol = |
545 | snd_ctl_make_virtual_master("Master Playback Volume", tlv); | 545 | snd_ctl_make_virtual_master("Master Playback Volume", tlv); |
546 | err = snd_hda_ctl_add(codec, spec->vmaster_vol); | 546 | err = snd_hda_ctl_add(codec, dac, spec->vmaster_vol); |
547 | if (err < 0) | 547 | if (err < 0) |
548 | return err; | 548 | return err; |
549 | return 0; | 549 | return 0; |
@@ -756,13 +756,13 @@ static int build_input(struct hda_codec *codec) | |||
756 | if (!kctl) | 756 | if (!kctl) |
757 | return -ENOMEM; | 757 | return -ENOMEM; |
758 | kctl->private_value = (long)spec->capture_bind[i]; | 758 | kctl->private_value = (long)spec->capture_bind[i]; |
759 | err = snd_hda_ctl_add(codec, kctl); | 759 | err = snd_hda_ctl_add(codec, 0, kctl); |
760 | if (err < 0) | 760 | if (err < 0) |
761 | return err; | 761 | return err; |
762 | } | 762 | } |
763 | 763 | ||
764 | if (spec->num_inputs > 1 && !spec->mic_detect) { | 764 | if (spec->num_inputs > 1 && !spec->mic_detect) { |
765 | err = snd_hda_ctl_add(codec, | 765 | err = snd_hda_ctl_add(codec, 0, |
766 | snd_ctl_new1(&cs_capture_source, codec)); | 766 | snd_ctl_new1(&cs_capture_source, codec)); |
767 | if (err < 0) | 767 | if (err < 0) |
768 | return err; | 768 | return err; |
@@ -807,7 +807,7 @@ static void cs_automute(struct hda_codec *codec) | |||
807 | { | 807 | { |
808 | struct cs_spec *spec = codec->spec; | 808 | struct cs_spec *spec = codec->spec; |
809 | struct auto_pin_cfg *cfg = &spec->autocfg; | 809 | struct auto_pin_cfg *cfg = &spec->autocfg; |
810 | unsigned int caps, present, hp_present; | 810 | unsigned int caps, hp_present; |
811 | hda_nid_t nid; | 811 | hda_nid_t nid; |
812 | int i; | 812 | int i; |
813 | 813 | ||
@@ -817,12 +817,7 @@ static void cs_automute(struct hda_codec *codec) | |||
817 | caps = snd_hda_query_pin_caps(codec, nid); | 817 | caps = snd_hda_query_pin_caps(codec, nid); |
818 | if (!(caps & AC_PINCAP_PRES_DETECT)) | 818 | if (!(caps & AC_PINCAP_PRES_DETECT)) |
819 | continue; | 819 | continue; |
820 | if (caps & AC_PINCAP_TRIG_REQ) | 820 | hp_present = snd_hda_jack_detect(codec, nid); |
821 | snd_hda_codec_read(codec, nid, 0, | ||
822 | AC_VERB_SET_PIN_SENSE, 0); | ||
823 | present = snd_hda_codec_read(codec, nid, 0, | ||
824 | AC_VERB_GET_PIN_SENSE, 0); | ||
825 | hp_present |= (present & AC_PINSENSE_PRESENCE) != 0; | ||
826 | if (hp_present) | 821 | if (hp_present) |
827 | break; | 822 | break; |
828 | } | 823 | } |
@@ -844,15 +839,11 @@ static void cs_automic(struct hda_codec *codec) | |||
844 | struct cs_spec *spec = codec->spec; | 839 | struct cs_spec *spec = codec->spec; |
845 | struct auto_pin_cfg *cfg = &spec->autocfg; | 840 | struct auto_pin_cfg *cfg = &spec->autocfg; |
846 | hda_nid_t nid; | 841 | hda_nid_t nid; |
847 | unsigned int caps, present; | 842 | unsigned int present; |
848 | 843 | ||
849 | nid = cfg->input_pins[spec->automic_idx]; | 844 | nid = cfg->input_pins[spec->automic_idx]; |
850 | caps = snd_hda_query_pin_caps(codec, nid); | 845 | present = snd_hda_jack_detect(codec, nid); |
851 | if (caps & AC_PINCAP_TRIG_REQ) | 846 | if (present) |
852 | snd_hda_codec_read(codec, nid, 0, AC_VERB_SET_PIN_SENSE, 0); | ||
853 | present = snd_hda_codec_read(codec, nid, 0, | ||
854 | AC_VERB_GET_PIN_SENSE, 0); | ||
855 | if (present & AC_PINSENSE_PRESENCE) | ||
856 | change_cur_input(codec, spec->automic_idx, 0); | 847 | change_cur_input(codec, spec->automic_idx, 0); |
857 | else { | 848 | else { |
858 | unsigned int imic = (spec->automic_idx == AUTO_PIN_MIC) ? | 849 | unsigned int imic = (spec->automic_idx == AUTO_PIN_MIC) ? |
diff --git a/sound/pci/hda/patch_cmedia.c b/sound/pci/hda/patch_cmedia.c index 780e1a72114a..85c81feb10cf 100644 --- a/sound/pci/hda/patch_cmedia.c +++ b/sound/pci/hda/patch_cmedia.c | |||
@@ -197,8 +197,8 @@ static struct snd_kcontrol_new cmi9880_basic_mixer[] = { | |||
197 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0, HDA_INPUT), | 197 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0, HDA_INPUT), |
198 | HDA_CODEC_MUTE("Capture Switch", 0x08, 0, HDA_INPUT), | 198 | HDA_CODEC_MUTE("Capture Switch", 0x08, 0, HDA_INPUT), |
199 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0, HDA_INPUT), | 199 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0, HDA_INPUT), |
200 | HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x23, 0, HDA_OUTPUT), | 200 | HDA_CODEC_VOLUME("Beep Playback Volume", 0x23, 0, HDA_OUTPUT), |
201 | HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x23, 0, HDA_OUTPUT), | 201 | HDA_CODEC_MUTE("Beep Playback Switch", 0x23, 0, HDA_OUTPUT), |
202 | { } /* end */ | 202 | { } /* end */ |
203 | }; | 203 | }; |
204 | 204 | ||
diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c index 9d899eda44d7..a09c03c3f62b 100644 --- a/sound/pci/hda/patch_conexant.c +++ b/sound/pci/hda/patch_conexant.c | |||
@@ -110,6 +110,7 @@ struct conexant_spec { | |||
110 | 110 | ||
111 | unsigned int dell_automute; | 111 | unsigned int dell_automute; |
112 | unsigned int port_d_mode; | 112 | unsigned int port_d_mode; |
113 | unsigned char ext_mic_bias; | ||
113 | }; | 114 | }; |
114 | 115 | ||
115 | static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo, | 116 | static int conexant_playback_pcm_open(struct hda_pcm_stream *hinfo, |
@@ -396,9 +397,7 @@ static void conexant_report_jack(struct hda_codec *codec, hda_nid_t nid) | |||
396 | for (i = 0; i < spec->jacks.used; i++) { | 397 | for (i = 0; i < spec->jacks.used; i++) { |
397 | if (jacks->nid == nid) { | 398 | if (jacks->nid == nid) { |
398 | unsigned int present; | 399 | unsigned int present; |
399 | present = snd_hda_codec_read(codec, nid, 0, | 400 | present = snd_hda_jack_detect(codec, nid); |
400 | AC_VERB_GET_PIN_SENSE, 0) & | ||
401 | AC_PINSENSE_PRESENCE; | ||
402 | 401 | ||
403 | present = (present) ? jacks->type : 0 ; | 402 | present = (present) ? jacks->type : 0 ; |
404 | 403 | ||
@@ -682,11 +681,13 @@ static struct hda_input_mux cxt5045_capture_source = { | |||
682 | }; | 681 | }; |
683 | 682 | ||
684 | static struct hda_input_mux cxt5045_capture_source_benq = { | 683 | static struct hda_input_mux cxt5045_capture_source_benq = { |
685 | .num_items = 3, | 684 | .num_items = 5, |
686 | .items = { | 685 | .items = { |
687 | { "IntMic", 0x1 }, | 686 | { "IntMic", 0x1 }, |
688 | { "ExtMic", 0x2 }, | 687 | { "ExtMic", 0x2 }, |
689 | { "LineIn", 0x3 }, | 688 | { "LineIn", 0x3 }, |
689 | { "CD", 0x4 }, | ||
690 | { "Mixer", 0x0 }, | ||
690 | } | 691 | } |
691 | }; | 692 | }; |
692 | 693 | ||
@@ -747,8 +748,7 @@ static void cxt5045_hp_automic(struct hda_codec *codec) | |||
747 | }; | 748 | }; |
748 | unsigned int present; | 749 | unsigned int present; |
749 | 750 | ||
750 | present = snd_hda_codec_read(codec, 0x12, 0, | 751 | present = snd_hda_jack_detect(codec, 0x12); |
751 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
752 | if (present) | 752 | if (present) |
753 | snd_hda_sequence_write(codec, mic_jack_on); | 753 | snd_hda_sequence_write(codec, mic_jack_on); |
754 | else | 754 | else |
@@ -762,8 +762,7 @@ static void cxt5045_hp_automute(struct hda_codec *codec) | |||
762 | struct conexant_spec *spec = codec->spec; | 762 | struct conexant_spec *spec = codec->spec; |
763 | unsigned int bits; | 763 | unsigned int bits; |
764 | 764 | ||
765 | spec->hp_present = snd_hda_codec_read(codec, 0x11, 0, | 765 | spec->hp_present = snd_hda_jack_detect(codec, 0x11); |
766 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
767 | 766 | ||
768 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; | 767 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; |
769 | snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0, | 768 | snd_hda_codec_amp_stereo(codec, 0x10, HDA_OUTPUT, 0, |
@@ -811,11 +810,19 @@ static struct snd_kcontrol_new cxt5045_mixers[] = { | |||
811 | }; | 810 | }; |
812 | 811 | ||
813 | static struct snd_kcontrol_new cxt5045_benq_mixers[] = { | 812 | static struct snd_kcontrol_new cxt5045_benq_mixers[] = { |
813 | HDA_CODEC_VOLUME("CD Capture Volume", 0x1a, 0x04, HDA_INPUT), | ||
814 | HDA_CODEC_MUTE("CD Capture Switch", 0x1a, 0x04, HDA_INPUT), | ||
815 | HDA_CODEC_VOLUME("CD Playback Volume", 0x17, 0x4, HDA_INPUT), | ||
816 | HDA_CODEC_MUTE("CD Playback Switch", 0x17, 0x4, HDA_INPUT), | ||
817 | |||
814 | HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT), | 818 | HDA_CODEC_VOLUME("Line In Capture Volume", 0x1a, 0x03, HDA_INPUT), |
815 | HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT), | 819 | HDA_CODEC_MUTE("Line In Capture Switch", 0x1a, 0x03, HDA_INPUT), |
816 | HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT), | 820 | HDA_CODEC_VOLUME("Line In Playback Volume", 0x17, 0x3, HDA_INPUT), |
817 | HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT), | 821 | HDA_CODEC_MUTE("Line In Playback Switch", 0x17, 0x3, HDA_INPUT), |
818 | 822 | ||
823 | HDA_CODEC_VOLUME("Mixer Capture Volume", 0x1a, 0x0, HDA_INPUT), | ||
824 | HDA_CODEC_MUTE("Mixer Capture Switch", 0x1a, 0x0, HDA_INPUT), | ||
825 | |||
819 | {} | 826 | {} |
820 | }; | 827 | }; |
821 | 828 | ||
@@ -1164,9 +1171,10 @@ static int patch_cxt5045(struct hda_codec *codec) | |||
1164 | 1171 | ||
1165 | switch (codec->subsystem_id >> 16) { | 1172 | switch (codec->subsystem_id >> 16) { |
1166 | case 0x103c: | 1173 | case 0x103c: |
1167 | /* HP laptop has a really bad sound over 0dB on NID 0x17. | 1174 | case 0x1734: |
1168 | * Fix max PCM level to 0 dB | 1175 | /* HP & Fujitsu-Siemens laptops have really bad sound over 0dB |
1169 | * (originall it has 0x2b steps with 0dB offset 0x14) | 1176 | * on NID 0x17. Fix max PCM level to 0 dB |
1177 | * (originally it has 0x2b steps with 0dB offset 0x14) | ||
1170 | */ | 1178 | */ |
1171 | snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT, | 1179 | snd_hda_override_amp_caps(codec, 0x17, HDA_INPUT, |
1172 | (0x14 << AC_AMPCAP_OFFSET_SHIFT) | | 1180 | (0x14 << AC_AMPCAP_OFFSET_SHIFT) | |
@@ -1232,8 +1240,7 @@ static void cxt5047_hp_automute(struct hda_codec *codec) | |||
1232 | struct conexant_spec *spec = codec->spec; | 1240 | struct conexant_spec *spec = codec->spec; |
1233 | unsigned int bits; | 1241 | unsigned int bits; |
1234 | 1242 | ||
1235 | spec->hp_present = snd_hda_codec_read(codec, 0x13, 0, | 1243 | spec->hp_present = snd_hda_jack_detect(codec, 0x13); |
1236 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
1237 | 1244 | ||
1238 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; | 1245 | bits = (spec->hp_present || !spec->cur_eapd) ? HDA_AMP_MUTE : 0; |
1239 | /* See the note in cxt5047_hp_master_sw_put */ | 1246 | /* See the note in cxt5047_hp_master_sw_put */ |
@@ -1256,8 +1263,7 @@ static void cxt5047_hp_automic(struct hda_codec *codec) | |||
1256 | }; | 1263 | }; |
1257 | unsigned int present; | 1264 | unsigned int present; |
1258 | 1265 | ||
1259 | present = snd_hda_codec_read(codec, 0x15, 0, | 1266 | present = snd_hda_jack_detect(codec, 0x15); |
1260 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
1261 | if (present) | 1267 | if (present) |
1262 | snd_hda_sequence_write(codec, mic_jack_on); | 1268 | snd_hda_sequence_write(codec, mic_jack_on); |
1263 | else | 1269 | else |
@@ -1404,16 +1410,7 @@ static struct snd_kcontrol_new cxt5047_test_mixer[] = { | |||
1404 | .get = conexant_mux_enum_get, | 1410 | .get = conexant_mux_enum_get, |
1405 | .put = conexant_mux_enum_put, | 1411 | .put = conexant_mux_enum_put, |
1406 | }, | 1412 | }, |
1407 | HDA_CODEC_VOLUME("Input-1 Volume", 0x1a, 0x0, HDA_INPUT), | 1413 | HDA_CODEC_VOLUME("Mic Boost Volume", 0x1a, 0x0, HDA_OUTPUT), |
1408 | HDA_CODEC_MUTE("Input-1 Switch", 0x1a, 0x0, HDA_INPUT), | ||
1409 | HDA_CODEC_VOLUME("Input-2 Volume", 0x1a, 0x1, HDA_INPUT), | ||
1410 | HDA_CODEC_MUTE("Input-2 Switch", 0x1a, 0x1, HDA_INPUT), | ||
1411 | HDA_CODEC_VOLUME("Input-3 Volume", 0x1a, 0x2, HDA_INPUT), | ||
1412 | HDA_CODEC_MUTE("Input-3 Switch", 0x1a, 0x2, HDA_INPUT), | ||
1413 | HDA_CODEC_VOLUME("Input-4 Volume", 0x1a, 0x3, HDA_INPUT), | ||
1414 | HDA_CODEC_MUTE("Input-4 Switch", 0x1a, 0x3, HDA_INPUT), | ||
1415 | HDA_CODEC_VOLUME("Input-5 Volume", 0x1a, 0x4, HDA_INPUT), | ||
1416 | HDA_CODEC_MUTE("Input-5 Switch", 0x1a, 0x4, HDA_INPUT), | ||
1417 | 1414 | ||
1418 | { } /* end */ | 1415 | { } /* end */ |
1419 | }; | 1416 | }; |
@@ -1610,9 +1607,7 @@ static void cxt5051_portb_automic(struct hda_codec *codec) | |||
1610 | 1607 | ||
1611 | if (spec->no_auto_mic) | 1608 | if (spec->no_auto_mic) |
1612 | return; | 1609 | return; |
1613 | present = snd_hda_codec_read(codec, 0x17, 0, | 1610 | present = snd_hda_jack_detect(codec, 0x17); |
1614 | AC_VERB_GET_PIN_SENSE, 0) & | ||
1615 | AC_PINSENSE_PRESENCE; | ||
1616 | snd_hda_codec_write(codec, 0x14, 0, | 1611 | snd_hda_codec_write(codec, 0x14, 0, |
1617 | AC_VERB_SET_CONNECT_SEL, | 1612 | AC_VERB_SET_CONNECT_SEL, |
1618 | present ? 0x01 : 0x00); | 1613 | present ? 0x01 : 0x00); |
@@ -1627,9 +1622,7 @@ static void cxt5051_portc_automic(struct hda_codec *codec) | |||
1627 | 1622 | ||
1628 | if (spec->no_auto_mic) | 1623 | if (spec->no_auto_mic) |
1629 | return; | 1624 | return; |
1630 | present = snd_hda_codec_read(codec, 0x18, 0, | 1625 | present = snd_hda_jack_detect(codec, 0x18); |
1631 | AC_VERB_GET_PIN_SENSE, 0) & | ||
1632 | AC_PINSENSE_PRESENCE; | ||
1633 | if (present) | 1626 | if (present) |
1634 | spec->cur_adc_idx = 1; | 1627 | spec->cur_adc_idx = 1; |
1635 | else | 1628 | else |
@@ -1650,9 +1643,7 @@ static void cxt5051_hp_automute(struct hda_codec *codec) | |||
1650 | { | 1643 | { |
1651 | struct conexant_spec *spec = codec->spec; | 1644 | struct conexant_spec *spec = codec->spec; |
1652 | 1645 | ||
1653 | spec->hp_present = snd_hda_codec_read(codec, 0x16, 0, | 1646 | spec->hp_present = snd_hda_jack_detect(codec, 0x16); |
1654 | AC_VERB_GET_PIN_SENSE, 0) & | ||
1655 | AC_PINSENSE_PRESENCE; | ||
1656 | cxt5051_update_speaker(codec); | 1647 | cxt5051_update_speaker(codec); |
1657 | } | 1648 | } |
1658 | 1649 | ||
@@ -1917,6 +1908,11 @@ static hda_nid_t cxt5066_adc_nids[3] = { 0x14, 0x15, 0x16 }; | |||
1917 | static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 }; | 1908 | static hda_nid_t cxt5066_capsrc_nids[1] = { 0x17 }; |
1918 | #define CXT5066_SPDIF_OUT 0x21 | 1909 | #define CXT5066_SPDIF_OUT 0x21 |
1919 | 1910 | ||
1911 | /* OLPC's microphone port is DC coupled for use with external sensors, | ||
1912 | * therefore we use a 50% mic bias in order to center the input signal with | ||
1913 | * the DC input range of the codec. */ | ||
1914 | #define CXT5066_OLPC_EXT_MIC_BIAS PIN_VREF50 | ||
1915 | |||
1920 | static struct hda_channel_mode cxt5066_modes[1] = { | 1916 | static struct hda_channel_mode cxt5066_modes[1] = { |
1921 | { 2, NULL }, | 1917 | { 2, NULL }, |
1922 | }; | 1918 | }; |
@@ -1970,9 +1966,10 @@ static int cxt5066_hp_master_sw_put(struct snd_kcontrol *kcontrol, | |||
1970 | /* toggle input of built-in and mic jack appropriately */ | 1966 | /* toggle input of built-in and mic jack appropriately */ |
1971 | static void cxt5066_automic(struct hda_codec *codec) | 1967 | static void cxt5066_automic(struct hda_codec *codec) |
1972 | { | 1968 | { |
1973 | static struct hda_verb ext_mic_present[] = { | 1969 | struct conexant_spec *spec = codec->spec; |
1970 | struct hda_verb ext_mic_present[] = { | ||
1974 | /* enable external mic, port B */ | 1971 | /* enable external mic, port B */ |
1975 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, | 1972 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, spec->ext_mic_bias}, |
1976 | 1973 | ||
1977 | /* switch to external mic input */ | 1974 | /* switch to external mic input */ |
1978 | {0x17, AC_VERB_SET_CONNECT_SEL, 0}, | 1975 | {0x17, AC_VERB_SET_CONNECT_SEL, 0}, |
@@ -1994,8 +1991,47 @@ static void cxt5066_automic(struct hda_codec *codec) | |||
1994 | }; | 1991 | }; |
1995 | unsigned int present; | 1992 | unsigned int present; |
1996 | 1993 | ||
1997 | present = snd_hda_codec_read(codec, 0x1a, 0, | 1994 | present = snd_hda_jack_detect(codec, 0x1a); |
1998 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | 1995 | if (present) { |
1996 | snd_printdd("CXT5066: external microphone detected\n"); | ||
1997 | snd_hda_sequence_write(codec, ext_mic_present); | ||
1998 | } else { | ||
1999 | snd_printdd("CXT5066: external microphone absent\n"); | ||
2000 | snd_hda_sequence_write(codec, ext_mic_absent); | ||
2001 | } | ||
2002 | } | ||
2003 | |||
2004 | /* toggle input of built-in digital mic and mic jack appropriately */ | ||
2005 | static void cxt5066_vostro_automic(struct hda_codec *codec) | ||
2006 | { | ||
2007 | struct conexant_spec *spec = codec->spec; | ||
2008 | unsigned int present; | ||
2009 | |||
2010 | struct hda_verb ext_mic_present[] = { | ||
2011 | /* enable external mic, port B */ | ||
2012 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, spec->ext_mic_bias}, | ||
2013 | |||
2014 | /* switch to external mic input */ | ||
2015 | {0x17, AC_VERB_SET_CONNECT_SEL, 0}, | ||
2016 | {0x14, AC_VERB_SET_CONNECT_SEL, 0}, | ||
2017 | |||
2018 | /* disable internal digital mic */ | ||
2019 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2020 | {} | ||
2021 | }; | ||
2022 | static struct hda_verb ext_mic_absent[] = { | ||
2023 | /* enable internal mic, port C */ | ||
2024 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
2025 | |||
2026 | /* switch to internal mic input */ | ||
2027 | {0x14, AC_VERB_SET_CONNECT_SEL, 2}, | ||
2028 | |||
2029 | /* disable external mic, port B */ | ||
2030 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2031 | {} | ||
2032 | }; | ||
2033 | |||
2034 | present = snd_hda_jack_detect(codec, 0x1a); | ||
1999 | if (present) { | 2035 | if (present) { |
2000 | snd_printdd("CXT5066: external microphone detected\n"); | 2036 | snd_printdd("CXT5066: external microphone detected\n"); |
2001 | snd_hda_sequence_write(codec, ext_mic_present); | 2037 | snd_hda_sequence_write(codec, ext_mic_present); |
@@ -2012,12 +2048,10 @@ static void cxt5066_hp_automute(struct hda_codec *codec) | |||
2012 | unsigned int portA, portD; | 2048 | unsigned int portA, portD; |
2013 | 2049 | ||
2014 | /* Port A */ | 2050 | /* Port A */ |
2015 | portA = snd_hda_codec_read(codec, 0x19, 0, AC_VERB_GET_PIN_SENSE, 0) | 2051 | portA = snd_hda_jack_detect(codec, 0x19); |
2016 | & AC_PINSENSE_PRESENCE; | ||
2017 | 2052 | ||
2018 | /* Port D */ | 2053 | /* Port D */ |
2019 | portD = (snd_hda_codec_read(codec, 0x1c, 0, AC_VERB_GET_PIN_SENSE, 0) | 2054 | portD = snd_hda_jack_detect(codec, 0x1c); |
2020 | & AC_PINSENSE_PRESENCE) << 1; | ||
2021 | 2055 | ||
2022 | spec->hp_present = !!(portA | portD); | 2056 | spec->hp_present = !!(portA | portD); |
2023 | snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n", | 2057 | snd_printdd("CXT5066: hp automute portA=%x portD=%x present=%d\n", |
@@ -2039,6 +2073,20 @@ static void cxt5066_unsol_event(struct hda_codec *codec, unsigned int res) | |||
2039 | } | 2073 | } |
2040 | } | 2074 | } |
2041 | 2075 | ||
2076 | /* unsolicited event for jack sensing */ | ||
2077 | static void cxt5066_vostro_event(struct hda_codec *codec, unsigned int res) | ||
2078 | { | ||
2079 | snd_printdd("CXT5066_vostro: unsol event %x (%x)\n", res, res >> 26); | ||
2080 | switch (res >> 26) { | ||
2081 | case CONEXANT_HP_EVENT: | ||
2082 | cxt5066_hp_automute(codec); | ||
2083 | break; | ||
2084 | case CONEXANT_MIC_EVENT: | ||
2085 | cxt5066_vostro_automic(codec); | ||
2086 | break; | ||
2087 | } | ||
2088 | } | ||
2089 | |||
2042 | static const struct hda_input_mux cxt5066_analog_mic_boost = { | 2090 | static const struct hda_input_mux cxt5066_analog_mic_boost = { |
2043 | .num_items = 5, | 2091 | .num_items = 5, |
2044 | .items = { | 2092 | .items = { |
@@ -2225,7 +2273,7 @@ static struct hda_verb cxt5066_init_verbs_olpc[] = { | |||
2225 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ | 2273 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ |
2226 | 2274 | ||
2227 | /* Port B: external microphone */ | 2275 | /* Port B: external microphone */ |
2228 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, | 2276 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, CXT5066_OLPC_EXT_MIC_BIAS}, |
2229 | 2277 | ||
2230 | /* Port C: internal microphone */ | 2278 | /* Port C: internal microphone */ |
2231 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, | 2279 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80}, |
@@ -2280,6 +2328,67 @@ static struct hda_verb cxt5066_init_verbs_olpc[] = { | |||
2280 | { } /* end */ | 2328 | { } /* end */ |
2281 | }; | 2329 | }; |
2282 | 2330 | ||
2331 | static struct hda_verb cxt5066_init_verbs_vostro[] = { | ||
2332 | /* Port A: headphones */ | ||
2333 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2334 | {0x19, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ | ||
2335 | |||
2336 | /* Port B: external microphone */ | ||
2337 | {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2338 | |||
2339 | /* Port C: unused */ | ||
2340 | {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2341 | |||
2342 | /* Port D: unused */ | ||
2343 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2344 | |||
2345 | /* Port E: unused, but has primary EAPD */ | ||
2346 | {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2347 | {0x1d, AC_VERB_SET_EAPD_BTLENABLE, 0x2}, /* default on */ | ||
2348 | |||
2349 | /* Port F: unused */ | ||
2350 | {0x1e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2351 | |||
2352 | /* Port G: internal speakers */ | ||
2353 | {0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, | ||
2354 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0x00}, /* DAC1 */ | ||
2355 | |||
2356 | /* DAC1 */ | ||
2357 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, | ||
2358 | |||
2359 | /* DAC2: unused */ | ||
2360 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE}, | ||
2361 | |||
2362 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
2363 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
2364 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
2365 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
2366 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
2367 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
2368 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
2369 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
2370 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
2371 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
2372 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
2373 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
2374 | |||
2375 | /* Digital microphone port */ | ||
2376 | {0x23, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, | ||
2377 | |||
2378 | /* Audio input selectors */ | ||
2379 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE | 0x3}, | ||
2380 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE }, | ||
2381 | |||
2382 | /* Disable SPDIF */ | ||
2383 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2384 | {0x22, AC_VERB_SET_PIN_WIDGET_CONTROL, 0}, | ||
2385 | |||
2386 | /* enable unsolicited events for Port A and B */ | ||
2387 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_HP_EVENT}, | ||
2388 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | CONEXANT_MIC_EVENT}, | ||
2389 | { } /* end */ | ||
2390 | }; | ||
2391 | |||
2283 | static struct hda_verb cxt5066_init_verbs_portd_lo[] = { | 2392 | static struct hda_verb cxt5066_init_verbs_portd_lo[] = { |
2284 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, | 2393 | {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT}, |
2285 | { } /* end */ | 2394 | { } /* end */ |
@@ -2301,6 +2410,7 @@ enum { | |||
2301 | CXT5066_LAPTOP, /* Laptops w/ EAPD support */ | 2410 | CXT5066_LAPTOP, /* Laptops w/ EAPD support */ |
2302 | CXT5066_DELL_LAPTOP, /* Dell Laptop */ | 2411 | CXT5066_DELL_LAPTOP, /* Dell Laptop */ |
2303 | CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */ | 2412 | CXT5066_OLPC_XO_1_5, /* OLPC XO 1.5 */ |
2413 | CXT5066_DELL_VOSTO, /* Dell Vostro 1015i */ | ||
2304 | CXT5066_MODELS | 2414 | CXT5066_MODELS |
2305 | }; | 2415 | }; |
2306 | 2416 | ||
@@ -2308,6 +2418,7 @@ static const char *cxt5066_models[CXT5066_MODELS] = { | |||
2308 | [CXT5066_LAPTOP] = "laptop", | 2418 | [CXT5066_LAPTOP] = "laptop", |
2309 | [CXT5066_DELL_LAPTOP] = "dell-laptop", | 2419 | [CXT5066_DELL_LAPTOP] = "dell-laptop", |
2310 | [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5", | 2420 | [CXT5066_OLPC_XO_1_5] = "olpc-xo-1_5", |
2421 | [CXT5066_DELL_VOSTO] = "dell-vostro" | ||
2311 | }; | 2422 | }; |
2312 | 2423 | ||
2313 | static struct snd_pci_quirk cxt5066_cfg_tbl[] = { | 2424 | static struct snd_pci_quirk cxt5066_cfg_tbl[] = { |
@@ -2315,6 +2426,8 @@ static struct snd_pci_quirk cxt5066_cfg_tbl[] = { | |||
2315 | CXT5066_LAPTOP), | 2426 | CXT5066_LAPTOP), |
2316 | SND_PCI_QUIRK(0x1028, 0x02f5, "Dell", | 2427 | SND_PCI_QUIRK(0x1028, 0x02f5, "Dell", |
2317 | CXT5066_DELL_LAPTOP), | 2428 | CXT5066_DELL_LAPTOP), |
2429 | SND_PCI_QUIRK(0x152d, 0x0833, "OLPC XO-1.5", CXT5066_OLPC_XO_1_5), | ||
2430 | SND_PCI_QUIRK(0x1028, 0x0402, "Dell Vostro", CXT5066_DELL_VOSTO), | ||
2318 | {} | 2431 | {} |
2319 | }; | 2432 | }; |
2320 | 2433 | ||
@@ -2342,6 +2455,7 @@ static int patch_cxt5066(struct hda_codec *codec) | |||
2342 | spec->input_mux = &cxt5066_capture_source; | 2455 | spec->input_mux = &cxt5066_capture_source; |
2343 | 2456 | ||
2344 | spec->port_d_mode = PIN_HP; | 2457 | spec->port_d_mode = PIN_HP; |
2458 | spec->ext_mic_bias = PIN_VREF80; | ||
2345 | 2459 | ||
2346 | spec->num_init_verbs = 1; | 2460 | spec->num_init_verbs = 1; |
2347 | spec->init_verbs[0] = cxt5066_init_verbs; | 2461 | spec->init_verbs[0] = cxt5066_init_verbs; |
@@ -2373,6 +2487,20 @@ static int patch_cxt5066(struct hda_codec *codec) | |||
2373 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc; | 2487 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc; |
2374 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; | 2488 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; |
2375 | spec->port_d_mode = 0; | 2489 | spec->port_d_mode = 0; |
2490 | spec->ext_mic_bias = CXT5066_OLPC_EXT_MIC_BIAS; | ||
2491 | |||
2492 | /* no S/PDIF out */ | ||
2493 | spec->multiout.dig_out_nid = 0; | ||
2494 | |||
2495 | /* input source automatically selected */ | ||
2496 | spec->input_mux = NULL; | ||
2497 | break; | ||
2498 | case CXT5066_DELL_VOSTO: | ||
2499 | codec->patch_ops.unsol_event = cxt5066_vostro_event; | ||
2500 | spec->init_verbs[0] = cxt5066_init_verbs_vostro; | ||
2501 | spec->mixers[spec->num_mixers++] = cxt5066_mixer_master_olpc; | ||
2502 | spec->mixers[spec->num_mixers++] = cxt5066_mixers; | ||
2503 | spec->port_d_mode = 0; | ||
2376 | 2504 | ||
2377 | /* no S/PDIF out */ | 2505 | /* no S/PDIF out */ |
2378 | spec->multiout.dig_out_nid = 0; | 2506 | spec->multiout.dig_out_nid = 0; |
@@ -2397,6 +2525,8 @@ static struct hda_codec_preset snd_hda_preset_conexant[] = { | |||
2397 | .patch = patch_cxt5051 }, | 2525 | .patch = patch_cxt5051 }, |
2398 | { .id = 0x14f15066, .name = "CX20582 (Pebble)", | 2526 | { .id = 0x14f15066, .name = "CX20582 (Pebble)", |
2399 | .patch = patch_cxt5066 }, | 2527 | .patch = patch_cxt5066 }, |
2528 | { .id = 0x14f15067, .name = "CX20583 (Pebble HSF)", | ||
2529 | .patch = patch_cxt5066 }, | ||
2400 | {} /* terminator */ | 2530 | {} /* terminator */ |
2401 | }; | 2531 | }; |
2402 | 2532 | ||
@@ -2404,6 +2534,7 @@ MODULE_ALIAS("snd-hda-codec-id:14f15045"); | |||
2404 | MODULE_ALIAS("snd-hda-codec-id:14f15047"); | 2534 | MODULE_ALIAS("snd-hda-codec-id:14f15047"); |
2405 | MODULE_ALIAS("snd-hda-codec-id:14f15051"); | 2535 | MODULE_ALIAS("snd-hda-codec-id:14f15051"); |
2406 | MODULE_ALIAS("snd-hda-codec-id:14f15066"); | 2536 | MODULE_ALIAS("snd-hda-codec-id:14f15066"); |
2537 | MODULE_ALIAS("snd-hda-codec-id:14f15067"); | ||
2407 | 2538 | ||
2408 | MODULE_LICENSE("GPL"); | 2539 | MODULE_LICENSE("GPL"); |
2409 | MODULE_DESCRIPTION("Conexant HD-audio codec"); | 2540 | MODULE_DESCRIPTION("Conexant HD-audio codec"); |
diff --git a/sound/pci/hda/patch_intelhdmi.c b/sound/pci/hda/patch_intelhdmi.c index 01a18ed475ac..928df59be5d8 100644 --- a/sound/pci/hda/patch_intelhdmi.c +++ b/sound/pci/hda/patch_intelhdmi.c | |||
@@ -33,15 +33,41 @@ | |||
33 | #include "hda_codec.h" | 33 | #include "hda_codec.h" |
34 | #include "hda_local.h" | 34 | #include "hda_local.h" |
35 | 35 | ||
36 | static hda_nid_t cvt_nid; /* audio converter */ | 36 | /* |
37 | static hda_nid_t pin_nid; /* HDMI output pin */ | 37 | * The HDMI/DisplayPort configuration can be highly dynamic. A graphics device |
38 | * could support two independent pipes, each of them can be connected to one or | ||
39 | * more ports (DVI, HDMI or DisplayPort). | ||
40 | * | ||
41 | * The HDA correspondence of pipes/ports are converter/pin nodes. | ||
42 | */ | ||
43 | #define INTEL_HDMI_CVTS 2 | ||
44 | #define INTEL_HDMI_PINS 3 | ||
38 | 45 | ||
39 | #define INTEL_HDMI_EVENT_TAG 0x08 | 46 | static char *intel_hdmi_pcm_names[INTEL_HDMI_CVTS] = { |
47 | "INTEL HDMI 0", | ||
48 | "INTEL HDMI 1", | ||
49 | }; | ||
40 | 50 | ||
41 | struct intel_hdmi_spec { | 51 | struct intel_hdmi_spec { |
42 | struct hda_multi_out multiout; | 52 | int num_cvts; |
43 | struct hda_pcm pcm_rec; | 53 | int num_pins; |
44 | struct hdmi_eld sink_eld; | 54 | hda_nid_t cvt[INTEL_HDMI_CVTS+1]; /* audio sources */ |
55 | hda_nid_t pin[INTEL_HDMI_PINS+1]; /* audio sinks */ | ||
56 | |||
57 | /* | ||
58 | * source connection for each pin | ||
59 | */ | ||
60 | hda_nid_t pin_cvt[INTEL_HDMI_PINS+1]; | ||
61 | |||
62 | /* | ||
63 | * HDMI sink attached to each pin | ||
64 | */ | ||
65 | struct hdmi_eld sink_eld[INTEL_HDMI_PINS]; | ||
66 | |||
67 | /* | ||
68 | * export one pcm per pipe | ||
69 | */ | ||
70 | struct hda_pcm pcm_rec[INTEL_HDMI_CVTS]; | ||
45 | }; | 71 | }; |
46 | 72 | ||
47 | struct hdmi_audio_infoframe { | 73 | struct hdmi_audio_infoframe { |
@@ -184,40 +210,186 @@ static struct cea_channel_speaker_allocation channel_allocations[] = { | |||
184 | { .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } }, | 210 | { .ca_index = 0x31, .speakers = { FRW, FLW, RR, RL, FC, LFE, FR, FL } }, |
185 | }; | 211 | }; |
186 | 212 | ||
213 | |||
214 | /* | ||
215 | * HDA/HDMI auto parsing | ||
216 | */ | ||
217 | |||
218 | static int hda_node_index(hda_nid_t *nids, hda_nid_t nid) | ||
219 | { | ||
220 | int i; | ||
221 | |||
222 | for (i = 0; nids[i]; i++) | ||
223 | if (nids[i] == nid) | ||
224 | return i; | ||
225 | |||
226 | snd_printk(KERN_WARNING "HDMI: nid %d not registered\n", nid); | ||
227 | return -EINVAL; | ||
228 | } | ||
229 | |||
230 | static int intel_hdmi_read_pin_conn(struct hda_codec *codec, hda_nid_t pin_nid) | ||
231 | { | ||
232 | struct intel_hdmi_spec *spec = codec->spec; | ||
233 | hda_nid_t conn_list[HDA_MAX_CONNECTIONS]; | ||
234 | int conn_len, curr; | ||
235 | int index; | ||
236 | |||
237 | if (!(get_wcaps(codec, pin_nid) & AC_WCAP_CONN_LIST)) { | ||
238 | snd_printk(KERN_WARNING | ||
239 | "HDMI: pin %d wcaps %#x " | ||
240 | "does not support connection list\n", | ||
241 | pin_nid, get_wcaps(codec, pin_nid)); | ||
242 | return -EINVAL; | ||
243 | } | ||
244 | |||
245 | conn_len = snd_hda_get_connections(codec, pin_nid, conn_list, | ||
246 | HDA_MAX_CONNECTIONS); | ||
247 | if (conn_len > 1) | ||
248 | curr = snd_hda_codec_read(codec, pin_nid, 0, | ||
249 | AC_VERB_GET_CONNECT_SEL, 0); | ||
250 | else | ||
251 | curr = 0; | ||
252 | |||
253 | index = hda_node_index(spec->pin, pin_nid); | ||
254 | if (index < 0) | ||
255 | return -EINVAL; | ||
256 | |||
257 | spec->pin_cvt[index] = conn_list[curr]; | ||
258 | |||
259 | return 0; | ||
260 | } | ||
261 | |||
262 | static void hdmi_get_show_eld(struct hda_codec *codec, hda_nid_t pin_nid, | ||
263 | struct hdmi_eld *eld) | ||
264 | { | ||
265 | if (!snd_hdmi_get_eld(eld, codec, pin_nid)) | ||
266 | snd_hdmi_show_eld(eld); | ||
267 | } | ||
268 | |||
269 | static void hdmi_present_sense(struct hda_codec *codec, hda_nid_t pin_nid, | ||
270 | struct hdmi_eld *eld) | ||
271 | { | ||
272 | int present = snd_hda_pin_sense(codec, pin_nid); | ||
273 | |||
274 | eld->monitor_present = !!(present & AC_PINSENSE_PRESENCE); | ||
275 | eld->eld_valid = !!(present & AC_PINSENSE_ELDV); | ||
276 | |||
277 | if (present & AC_PINSENSE_ELDV) | ||
278 | hdmi_get_show_eld(codec, pin_nid, eld); | ||
279 | } | ||
280 | |||
281 | static int intel_hdmi_add_pin(struct hda_codec *codec, hda_nid_t pin_nid) | ||
282 | { | ||
283 | struct intel_hdmi_spec *spec = codec->spec; | ||
284 | |||
285 | if (spec->num_pins >= INTEL_HDMI_PINS) { | ||
286 | snd_printk(KERN_WARNING | ||
287 | "HDMI: no space for pin %d \n", pin_nid); | ||
288 | return -EINVAL; | ||
289 | } | ||
290 | |||
291 | hdmi_present_sense(codec, pin_nid, &spec->sink_eld[spec->num_pins]); | ||
292 | |||
293 | spec->pin[spec->num_pins] = pin_nid; | ||
294 | spec->num_pins++; | ||
295 | |||
296 | /* | ||
297 | * It is assumed that converter nodes come first in the node list and | ||
298 | * hence have been registered and usable now. | ||
299 | */ | ||
300 | return intel_hdmi_read_pin_conn(codec, pin_nid); | ||
301 | } | ||
302 | |||
303 | static int intel_hdmi_add_cvt(struct hda_codec *codec, hda_nid_t nid) | ||
304 | { | ||
305 | struct intel_hdmi_spec *spec = codec->spec; | ||
306 | |||
307 | if (spec->num_cvts >= INTEL_HDMI_CVTS) { | ||
308 | snd_printk(KERN_WARNING | ||
309 | "HDMI: no space for converter %d \n", nid); | ||
310 | return -EINVAL; | ||
311 | } | ||
312 | |||
313 | spec->cvt[spec->num_cvts] = nid; | ||
314 | spec->num_cvts++; | ||
315 | |||
316 | return 0; | ||
317 | } | ||
318 | |||
319 | static int intel_hdmi_parse_codec(struct hda_codec *codec) | ||
320 | { | ||
321 | hda_nid_t nid; | ||
322 | int i, nodes; | ||
323 | |||
324 | nodes = snd_hda_get_sub_nodes(codec, codec->afg, &nid); | ||
325 | if (!nid || nodes < 0) { | ||
326 | snd_printk(KERN_WARNING "HDMI: failed to get afg sub nodes\n"); | ||
327 | return -EINVAL; | ||
328 | } | ||
329 | |||
330 | for (i = 0; i < nodes; i++, nid++) { | ||
331 | unsigned int caps; | ||
332 | unsigned int type; | ||
333 | |||
334 | caps = snd_hda_param_read(codec, nid, AC_PAR_AUDIO_WIDGET_CAP); | ||
335 | type = get_wcaps_type(caps); | ||
336 | |||
337 | if (!(caps & AC_WCAP_DIGITAL)) | ||
338 | continue; | ||
339 | |||
340 | switch (type) { | ||
341 | case AC_WID_AUD_OUT: | ||
342 | if (intel_hdmi_add_cvt(codec, nid) < 0) | ||
343 | return -EINVAL; | ||
344 | break; | ||
345 | case AC_WID_PIN: | ||
346 | caps = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP); | ||
347 | if (!(caps & AC_PINCAP_HDMI)) | ||
348 | continue; | ||
349 | if (intel_hdmi_add_pin(codec, nid) < 0) | ||
350 | return -EINVAL; | ||
351 | break; | ||
352 | } | ||
353 | } | ||
354 | |||
355 | return 0; | ||
356 | } | ||
357 | |||
187 | /* | 358 | /* |
188 | * HDMI routines | 359 | * HDMI routines |
189 | */ | 360 | */ |
190 | 361 | ||
191 | #ifdef BE_PARANOID | 362 | #ifdef BE_PARANOID |
192 | static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t nid, | 363 | static void hdmi_get_dip_index(struct hda_codec *codec, hda_nid_t pin_nid, |
193 | int *packet_index, int *byte_index) | 364 | int *packet_index, int *byte_index) |
194 | { | 365 | { |
195 | int val; | 366 | int val; |
196 | 367 | ||
197 | val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_HDMI_DIP_INDEX, 0); | 368 | val = snd_hda_codec_read(codec, pin_nid, 0, |
369 | AC_VERB_GET_HDMI_DIP_INDEX, 0); | ||
198 | 370 | ||
199 | *packet_index = val >> 5; | 371 | *packet_index = val >> 5; |
200 | *byte_index = val & 0x1f; | 372 | *byte_index = val & 0x1f; |
201 | } | 373 | } |
202 | #endif | 374 | #endif |
203 | 375 | ||
204 | static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t nid, | 376 | static void hdmi_set_dip_index(struct hda_codec *codec, hda_nid_t pin_nid, |
205 | int packet_index, int byte_index) | 377 | int packet_index, int byte_index) |
206 | { | 378 | { |
207 | int val; | 379 | int val; |
208 | 380 | ||
209 | val = (packet_index << 5) | (byte_index & 0x1f); | 381 | val = (packet_index << 5) | (byte_index & 0x1f); |
210 | 382 | ||
211 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val); | 383 | snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_INDEX, val); |
212 | } | 384 | } |
213 | 385 | ||
214 | static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t nid, | 386 | static void hdmi_write_dip_byte(struct hda_codec *codec, hda_nid_t pin_nid, |
215 | unsigned char val) | 387 | unsigned char val) |
216 | { | 388 | { |
217 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val); | 389 | snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_DATA, val); |
218 | } | 390 | } |
219 | 391 | ||
220 | static void hdmi_enable_output(struct hda_codec *codec) | 392 | static void hdmi_enable_output(struct hda_codec *codec, hda_nid_t pin_nid) |
221 | { | 393 | { |
222 | /* Unmute */ | 394 | /* Unmute */ |
223 | if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP) | 395 | if (get_wcaps(codec, pin_nid) & AC_WCAP_OUT_AMP) |
@@ -231,7 +403,8 @@ static void hdmi_enable_output(struct hda_codec *codec) | |||
231 | /* | 403 | /* |
232 | * Enable Audio InfoFrame Transmission | 404 | * Enable Audio InfoFrame Transmission |
233 | */ | 405 | */ |
234 | static void hdmi_start_infoframe_trans(struct hda_codec *codec) | 406 | static void hdmi_start_infoframe_trans(struct hda_codec *codec, |
407 | hda_nid_t pin_nid) | ||
235 | { | 408 | { |
236 | hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0); | 409 | hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0); |
237 | snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT, | 410 | snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT, |
@@ -241,59 +414,49 @@ static void hdmi_start_infoframe_trans(struct hda_codec *codec) | |||
241 | /* | 414 | /* |
242 | * Disable Audio InfoFrame Transmission | 415 | * Disable Audio InfoFrame Transmission |
243 | */ | 416 | */ |
244 | static void hdmi_stop_infoframe_trans(struct hda_codec *codec) | 417 | static void hdmi_stop_infoframe_trans(struct hda_codec *codec, |
418 | hda_nid_t pin_nid) | ||
245 | { | 419 | { |
246 | hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0); | 420 | hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0); |
247 | snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT, | 421 | snd_hda_codec_write(codec, pin_nid, 0, AC_VERB_SET_HDMI_DIP_XMIT, |
248 | AC_DIPXMIT_DISABLE); | 422 | AC_DIPXMIT_DISABLE); |
249 | } | 423 | } |
250 | 424 | ||
251 | static int hdmi_get_channel_count(struct hda_codec *codec) | 425 | static int hdmi_get_channel_count(struct hda_codec *codec, hda_nid_t nid) |
252 | { | 426 | { |
253 | return 1 + snd_hda_codec_read(codec, cvt_nid, 0, | 427 | return 1 + snd_hda_codec_read(codec, nid, 0, |
254 | AC_VERB_GET_CVT_CHAN_COUNT, 0); | 428 | AC_VERB_GET_CVT_CHAN_COUNT, 0); |
255 | } | 429 | } |
256 | 430 | ||
257 | static void hdmi_set_channel_count(struct hda_codec *codec, int chs) | 431 | static void hdmi_set_channel_count(struct hda_codec *codec, |
432 | hda_nid_t nid, int chs) | ||
258 | { | 433 | { |
259 | snd_hda_codec_write(codec, cvt_nid, 0, | 434 | if (chs != hdmi_get_channel_count(codec, nid)) |
260 | AC_VERB_SET_CVT_CHAN_COUNT, chs - 1); | 435 | snd_hda_codec_write(codec, nid, 0, |
261 | 436 | AC_VERB_SET_CVT_CHAN_COUNT, chs - 1); | |
262 | if (chs != hdmi_get_channel_count(codec)) | ||
263 | snd_printd(KERN_INFO "HDMI channel count: expect %d, get %d\n", | ||
264 | chs, hdmi_get_channel_count(codec)); | ||
265 | } | 437 | } |
266 | 438 | ||
267 | static void hdmi_debug_channel_mapping(struct hda_codec *codec) | 439 | static void hdmi_debug_channel_mapping(struct hda_codec *codec, hda_nid_t nid) |
268 | { | 440 | { |
269 | #ifdef CONFIG_SND_DEBUG_VERBOSE | 441 | #ifdef CONFIG_SND_DEBUG_VERBOSE |
270 | int i; | 442 | int i; |
271 | int slot; | 443 | int slot; |
272 | 444 | ||
273 | for (i = 0; i < 8; i++) { | 445 | for (i = 0; i < 8; i++) { |
274 | slot = snd_hda_codec_read(codec, cvt_nid, 0, | 446 | slot = snd_hda_codec_read(codec, nid, 0, |
275 | AC_VERB_GET_HDMI_CHAN_SLOT, i); | 447 | AC_VERB_GET_HDMI_CHAN_SLOT, i); |
276 | printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n", | 448 | printk(KERN_DEBUG "HDMI: ASP channel %d => slot %d\n", |
277 | slot >> 4, slot & 0x7); | 449 | slot >> 4, slot & 0xf); |
278 | } | 450 | } |
279 | #endif | 451 | #endif |
280 | } | 452 | } |
281 | 453 | ||
282 | static void hdmi_parse_eld(struct hda_codec *codec) | ||
283 | { | ||
284 | struct intel_hdmi_spec *spec = codec->spec; | ||
285 | struct hdmi_eld *eld = &spec->sink_eld; | ||
286 | |||
287 | if (!snd_hdmi_get_eld(eld, codec, pin_nid)) | ||
288 | snd_hdmi_show_eld(eld); | ||
289 | } | ||
290 | |||
291 | 454 | ||
292 | /* | 455 | /* |
293 | * Audio InfoFrame routines | 456 | * Audio InfoFrame routines |
294 | */ | 457 | */ |
295 | 458 | ||
296 | static void hdmi_debug_dip_size(struct hda_codec *codec) | 459 | static void hdmi_debug_dip_size(struct hda_codec *codec, hda_nid_t pin_nid) |
297 | { | 460 | { |
298 | #ifdef CONFIG_SND_DEBUG_VERBOSE | 461 | #ifdef CONFIG_SND_DEBUG_VERBOSE |
299 | int i; | 462 | int i; |
@@ -310,7 +473,7 @@ static void hdmi_debug_dip_size(struct hda_codec *codec) | |||
310 | #endif | 473 | #endif |
311 | } | 474 | } |
312 | 475 | ||
313 | static void hdmi_clear_dip_buffers(struct hda_codec *codec) | 476 | static void hdmi_clear_dip_buffers(struct hda_codec *codec, hda_nid_t pin_nid) |
314 | { | 477 | { |
315 | #ifdef BE_PARANOID | 478 | #ifdef BE_PARANOID |
316 | int i, j; | 479 | int i, j; |
@@ -339,23 +502,35 @@ static void hdmi_clear_dip_buffers(struct hda_codec *codec) | |||
339 | #endif | 502 | #endif |
340 | } | 503 | } |
341 | 504 | ||
342 | static void hdmi_fill_audio_infoframe(struct hda_codec *codec, | 505 | static void hdmi_checksum_audio_infoframe(struct hdmi_audio_infoframe *ai) |
343 | struct hdmi_audio_infoframe *ai) | ||
344 | { | 506 | { |
345 | u8 *params = (u8 *)ai; | 507 | u8 *bytes = (u8 *)ai; |
346 | u8 sum = 0; | 508 | u8 sum = 0; |
347 | int i; | 509 | int i; |
348 | 510 | ||
349 | hdmi_debug_dip_size(codec); | 511 | ai->checksum = 0; |
350 | hdmi_clear_dip_buffers(codec); /* be paranoid */ | 512 | |
513 | for (i = 0; i < sizeof(*ai); i++) | ||
514 | sum += bytes[i]; | ||
351 | 515 | ||
352 | for (i = 0; i < sizeof(ai); i++) | ||
353 | sum += params[i]; | ||
354 | ai->checksum = - sum; | 516 | ai->checksum = - sum; |
517 | } | ||
518 | |||
519 | static void hdmi_fill_audio_infoframe(struct hda_codec *codec, | ||
520 | hda_nid_t pin_nid, | ||
521 | struct hdmi_audio_infoframe *ai) | ||
522 | { | ||
523 | u8 *bytes = (u8 *)ai; | ||
524 | int i; | ||
525 | |||
526 | hdmi_debug_dip_size(codec, pin_nid); | ||
527 | hdmi_clear_dip_buffers(codec, pin_nid); /* be paranoid */ | ||
528 | |||
529 | hdmi_checksum_audio_infoframe(ai); | ||
355 | 530 | ||
356 | hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0); | 531 | hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0); |
357 | for (i = 0; i < sizeof(ai); i++) | 532 | for (i = 0; i < sizeof(*ai); i++) |
358 | hdmi_write_dip_byte(codec, pin_nid, params[i]); | 533 | hdmi_write_dip_byte(codec, pin_nid, bytes[i]); |
359 | } | 534 | } |
360 | 535 | ||
361 | /* | 536 | /* |
@@ -386,11 +561,11 @@ static void init_channel_allocations(void) | |||
386 | * | 561 | * |
387 | * TODO: it could select the wrong CA from multiple candidates. | 562 | * TODO: it could select the wrong CA from multiple candidates. |
388 | */ | 563 | */ |
389 | static int hdmi_setup_channel_allocation(struct hda_codec *codec, | 564 | static int hdmi_setup_channel_allocation(struct hda_codec *codec, hda_nid_t nid, |
390 | struct hdmi_audio_infoframe *ai) | 565 | struct hdmi_audio_infoframe *ai) |
391 | { | 566 | { |
392 | struct intel_hdmi_spec *spec = codec->spec; | 567 | struct intel_hdmi_spec *spec = codec->spec; |
393 | struct hdmi_eld *eld = &spec->sink_eld; | 568 | struct hdmi_eld *eld; |
394 | int i; | 569 | int i; |
395 | int spk_mask = 0; | 570 | int spk_mask = 0; |
396 | int channels = 1 + (ai->CC02_CT47 & 0x7); | 571 | int channels = 1 + (ai->CC02_CT47 & 0x7); |
@@ -402,6 +577,11 @@ static int hdmi_setup_channel_allocation(struct hda_codec *codec, | |||
402 | if (channels <= 2) | 577 | if (channels <= 2) |
403 | return 0; | 578 | return 0; |
404 | 579 | ||
580 | i = hda_node_index(spec->pin_cvt, nid); | ||
581 | if (i < 0) | ||
582 | return 0; | ||
583 | eld = &spec->sink_eld[i]; | ||
584 | |||
405 | /* | 585 | /* |
406 | * HDMI sink's ELD info cannot always be retrieved for now, e.g. | 586 | * HDMI sink's ELD info cannot always be retrieved for now, e.g. |
407 | * in console or for audio devices. Assume the highest speakers | 587 | * in console or for audio devices. Assume the highest speakers |
@@ -439,8 +619,8 @@ static int hdmi_setup_channel_allocation(struct hda_codec *codec, | |||
439 | return ai->CA; | 619 | return ai->CA; |
440 | } | 620 | } |
441 | 621 | ||
442 | static void hdmi_setup_channel_mapping(struct hda_codec *codec, | 622 | static void hdmi_setup_channel_mapping(struct hda_codec *codec, hda_nid_t nid, |
443 | struct hdmi_audio_infoframe *ai) | 623 | struct hdmi_audio_infoframe *ai) |
444 | { | 624 | { |
445 | int i; | 625 | int i; |
446 | 626 | ||
@@ -453,17 +633,41 @@ static void hdmi_setup_channel_mapping(struct hda_codec *codec, | |||
453 | */ | 633 | */ |
454 | 634 | ||
455 | for (i = 0; i < 8; i++) | 635 | for (i = 0; i < 8; i++) |
456 | snd_hda_codec_write(codec, cvt_nid, 0, | 636 | snd_hda_codec_write(codec, nid, 0, |
457 | AC_VERB_SET_HDMI_CHAN_SLOT, | 637 | AC_VERB_SET_HDMI_CHAN_SLOT, |
458 | (i << 4) | i); | 638 | (i << 4) | i); |
459 | 639 | ||
460 | hdmi_debug_channel_mapping(codec); | 640 | hdmi_debug_channel_mapping(codec, nid); |
461 | } | 641 | } |
462 | 642 | ||
643 | static bool hdmi_infoframe_uptodate(struct hda_codec *codec, hda_nid_t pin_nid, | ||
644 | struct hdmi_audio_infoframe *ai) | ||
645 | { | ||
646 | u8 *bytes = (u8 *)ai; | ||
647 | u8 val; | ||
648 | int i; | ||
649 | |||
650 | if (snd_hda_codec_read(codec, pin_nid, 0, AC_VERB_GET_HDMI_DIP_XMIT, 0) | ||
651 | != AC_DIPXMIT_BEST) | ||
652 | return false; | ||
653 | |||
654 | hdmi_set_dip_index(codec, pin_nid, 0x0, 0x0); | ||
655 | for (i = 0; i < sizeof(*ai); i++) { | ||
656 | val = snd_hda_codec_read(codec, pin_nid, 0, | ||
657 | AC_VERB_GET_HDMI_DIP_DATA, 0); | ||
658 | if (val != bytes[i]) | ||
659 | return false; | ||
660 | } | ||
463 | 661 | ||
464 | static void hdmi_setup_audio_infoframe(struct hda_codec *codec, | 662 | return true; |
663 | } | ||
664 | |||
665 | static void hdmi_setup_audio_infoframe(struct hda_codec *codec, hda_nid_t nid, | ||
465 | struct snd_pcm_substream *substream) | 666 | struct snd_pcm_substream *substream) |
466 | { | 667 | { |
668 | struct intel_hdmi_spec *spec = codec->spec; | ||
669 | hda_nid_t pin_nid; | ||
670 | int i; | ||
467 | struct hdmi_audio_infoframe ai = { | 671 | struct hdmi_audio_infoframe ai = { |
468 | .type = 0x84, | 672 | .type = 0x84, |
469 | .ver = 0x01, | 673 | .ver = 0x01, |
@@ -471,11 +675,22 @@ static void hdmi_setup_audio_infoframe(struct hda_codec *codec, | |||
471 | .CC02_CT47 = substream->runtime->channels - 1, | 675 | .CC02_CT47 = substream->runtime->channels - 1, |
472 | }; | 676 | }; |
473 | 677 | ||
474 | hdmi_setup_channel_allocation(codec, &ai); | 678 | hdmi_setup_channel_allocation(codec, nid, &ai); |
475 | hdmi_setup_channel_mapping(codec, &ai); | 679 | hdmi_setup_channel_mapping(codec, nid, &ai); |
476 | 680 | ||
477 | hdmi_fill_audio_infoframe(codec, &ai); | 681 | for (i = 0; i < spec->num_pins; i++) { |
478 | hdmi_start_infoframe_trans(codec); | 682 | if (spec->pin_cvt[i] != nid) |
683 | continue; | ||
684 | if (!spec->sink_eld[i].monitor_present) | ||
685 | continue; | ||
686 | |||
687 | pin_nid = spec->pin[i]; | ||
688 | if (!hdmi_infoframe_uptodate(codec, pin_nid, &ai)) { | ||
689 | hdmi_stop_infoframe_trans(codec, pin_nid); | ||
690 | hdmi_fill_audio_infoframe(codec, pin_nid, &ai); | ||
691 | hdmi_start_infoframe_trans(codec, pin_nid); | ||
692 | } | ||
693 | } | ||
479 | } | 694 | } |
480 | 695 | ||
481 | 696 | ||
@@ -485,27 +700,39 @@ static void hdmi_setup_audio_infoframe(struct hda_codec *codec, | |||
485 | 700 | ||
486 | static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res) | 701 | static void hdmi_intrinsic_event(struct hda_codec *codec, unsigned int res) |
487 | { | 702 | { |
703 | struct intel_hdmi_spec *spec = codec->spec; | ||
704 | int tag = res >> AC_UNSOL_RES_TAG_SHIFT; | ||
488 | int pind = !!(res & AC_UNSOL_RES_PD); | 705 | int pind = !!(res & AC_UNSOL_RES_PD); |
489 | int eldv = !!(res & AC_UNSOL_RES_ELDV); | 706 | int eldv = !!(res & AC_UNSOL_RES_ELDV); |
707 | int index; | ||
490 | 708 | ||
491 | printk(KERN_INFO | 709 | printk(KERN_INFO |
492 | "HDMI hot plug event: Presence_Detect=%d ELD_Valid=%d\n", | 710 | "HDMI hot plug event: Pin=%d Presence_Detect=%d ELD_Valid=%d\n", |
493 | pind, eldv); | 711 | tag, pind, eldv); |
712 | |||
713 | index = hda_node_index(spec->pin, tag); | ||
714 | if (index < 0) | ||
715 | return; | ||
716 | |||
717 | spec->sink_eld[index].monitor_present = pind; | ||
718 | spec->sink_eld[index].eld_valid = eldv; | ||
494 | 719 | ||
495 | if (pind && eldv) { | 720 | if (pind && eldv) { |
496 | hdmi_parse_eld(codec); | 721 | hdmi_get_show_eld(codec, spec->pin[index], &spec->sink_eld[index]); |
497 | /* TODO: do real things about ELD */ | 722 | /* TODO: do real things about ELD */ |
498 | } | 723 | } |
499 | } | 724 | } |
500 | 725 | ||
501 | static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res) | 726 | static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res) |
502 | { | 727 | { |
728 | int tag = res >> AC_UNSOL_RES_TAG_SHIFT; | ||
503 | int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT; | 729 | int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT; |
504 | int cp_state = !!(res & AC_UNSOL_RES_CP_STATE); | 730 | int cp_state = !!(res & AC_UNSOL_RES_CP_STATE); |
505 | int cp_ready = !!(res & AC_UNSOL_RES_CP_READY); | 731 | int cp_ready = !!(res & AC_UNSOL_RES_CP_READY); |
506 | 732 | ||
507 | printk(KERN_INFO | 733 | printk(KERN_INFO |
508 | "HDMI content protection event: SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n", | 734 | "HDMI CP event: PIN=%d SUBTAG=0x%x CP_STATE=%d CP_READY=%d\n", |
735 | tag, | ||
509 | subtag, | 736 | subtag, |
510 | cp_state, | 737 | cp_state, |
511 | cp_ready); | 738 | cp_ready); |
@@ -520,10 +747,11 @@ static void hdmi_non_intrinsic_event(struct hda_codec *codec, unsigned int res) | |||
520 | 747 | ||
521 | static void intel_hdmi_unsol_event(struct hda_codec *codec, unsigned int res) | 748 | static void intel_hdmi_unsol_event(struct hda_codec *codec, unsigned int res) |
522 | { | 749 | { |
750 | struct intel_hdmi_spec *spec = codec->spec; | ||
523 | int tag = res >> AC_UNSOL_RES_TAG_SHIFT; | 751 | int tag = res >> AC_UNSOL_RES_TAG_SHIFT; |
524 | int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT; | 752 | int subtag = (res & AC_UNSOL_RES_SUBTAG) >> AC_UNSOL_RES_SUBTAG_SHIFT; |
525 | 753 | ||
526 | if (tag != INTEL_HDMI_EVENT_TAG) { | 754 | if (hda_node_index(spec->pin, tag) < 0) { |
527 | snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag); | 755 | snd_printd(KERN_INFO "Unexpected HDMI event tag 0x%x\n", tag); |
528 | return; | 756 | return; |
529 | } | 757 | } |
@@ -538,24 +766,29 @@ static void intel_hdmi_unsol_event(struct hda_codec *codec, unsigned int res) | |||
538 | * Callbacks | 766 | * Callbacks |
539 | */ | 767 | */ |
540 | 768 | ||
541 | static int intel_hdmi_playback_pcm_open(struct hda_pcm_stream *hinfo, | 769 | static void hdmi_setup_stream(struct hda_codec *codec, hda_nid_t nid, |
542 | struct hda_codec *codec, | 770 | u32 stream_tag, int format) |
543 | struct snd_pcm_substream *substream) | ||
544 | { | 771 | { |
545 | struct intel_hdmi_spec *spec = codec->spec; | 772 | int tag; |
546 | 773 | int fmt; | |
547 | return snd_hda_multi_out_dig_open(codec, &spec->multiout); | ||
548 | } | ||
549 | 774 | ||
550 | static int intel_hdmi_playback_pcm_close(struct hda_pcm_stream *hinfo, | 775 | tag = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0) >> 4; |
551 | struct hda_codec *codec, | 776 | fmt = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_STREAM_FORMAT, 0); |
552 | struct snd_pcm_substream *substream) | ||
553 | { | ||
554 | struct intel_hdmi_spec *spec = codec->spec; | ||
555 | 777 | ||
556 | hdmi_stop_infoframe_trans(codec); | 778 | snd_printdd("hdmi_setup_stream: " |
779 | "NID=0x%x, %sstream=0x%x, %sformat=0x%x\n", | ||
780 | nid, | ||
781 | tag == stream_tag ? "" : "new-", | ||
782 | stream_tag, | ||
783 | fmt == format ? "" : "new-", | ||
784 | format); | ||
557 | 785 | ||
558 | return snd_hda_multi_out_dig_close(codec, &spec->multiout); | 786 | if (tag != stream_tag) |
787 | snd_hda_codec_write(codec, nid, 0, | ||
788 | AC_VERB_SET_CHANNEL_STREAMID, stream_tag << 4); | ||
789 | if (fmt != format) | ||
790 | snd_hda_codec_write(codec, nid, 0, | ||
791 | AC_VERB_SET_STREAM_FORMAT, format); | ||
559 | } | 792 | } |
560 | 793 | ||
561 | static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo, | 794 | static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo, |
@@ -564,43 +797,53 @@ static int intel_hdmi_playback_pcm_prepare(struct hda_pcm_stream *hinfo, | |||
564 | unsigned int format, | 797 | unsigned int format, |
565 | struct snd_pcm_substream *substream) | 798 | struct snd_pcm_substream *substream) |
566 | { | 799 | { |
567 | struct intel_hdmi_spec *spec = codec->spec; | 800 | hdmi_set_channel_count(codec, hinfo->nid, |
568 | 801 | substream->runtime->channels); | |
569 | snd_hda_multi_out_dig_prepare(codec, &spec->multiout, stream_tag, | ||
570 | format, substream); | ||
571 | 802 | ||
572 | hdmi_set_channel_count(codec, substream->runtime->channels); | 803 | hdmi_setup_audio_infoframe(codec, hinfo->nid, substream); |
573 | 804 | ||
574 | hdmi_setup_audio_infoframe(codec, substream); | 805 | hdmi_setup_stream(codec, hinfo->nid, stream_tag, format); |
806 | return 0; | ||
807 | } | ||
575 | 808 | ||
809 | static int intel_hdmi_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, | ||
810 | struct hda_codec *codec, | ||
811 | struct snd_pcm_substream *substream) | ||
812 | { | ||
576 | return 0; | 813 | return 0; |
577 | } | 814 | } |
578 | 815 | ||
579 | static struct hda_pcm_stream intel_hdmi_pcm_playback = { | 816 | static struct hda_pcm_stream intel_hdmi_pcm_playback = { |
580 | .substreams = 1, | 817 | .substreams = 1, |
581 | .channels_min = 2, | 818 | .channels_min = 2, |
582 | .channels_max = 8, | ||
583 | .ops = { | 819 | .ops = { |
584 | .open = intel_hdmi_playback_pcm_open, | 820 | .prepare = intel_hdmi_playback_pcm_prepare, |
585 | .close = intel_hdmi_playback_pcm_close, | 821 | .cleanup = intel_hdmi_playback_pcm_cleanup, |
586 | .prepare = intel_hdmi_playback_pcm_prepare | ||
587 | }, | 822 | }, |
588 | }; | 823 | }; |
589 | 824 | ||
590 | static int intel_hdmi_build_pcms(struct hda_codec *codec) | 825 | static int intel_hdmi_build_pcms(struct hda_codec *codec) |
591 | { | 826 | { |
592 | struct intel_hdmi_spec *spec = codec->spec; | 827 | struct intel_hdmi_spec *spec = codec->spec; |
593 | struct hda_pcm *info = &spec->pcm_rec; | 828 | struct hda_pcm *info = spec->pcm_rec; |
829 | int i; | ||
594 | 830 | ||
595 | codec->num_pcms = 1; | 831 | codec->num_pcms = spec->num_cvts; |
596 | codec->pcm_info = info; | 832 | codec->pcm_info = info; |
597 | 833 | ||
598 | /* NID to query formats and rates and setup streams */ | 834 | for (i = 0; i < codec->num_pcms; i++, info++) { |
599 | intel_hdmi_pcm_playback.nid = cvt_nid; | 835 | unsigned int chans; |
600 | 836 | ||
601 | info->name = "INTEL HDMI"; | 837 | chans = get_wcaps(codec, spec->cvt[i]); |
602 | info->pcm_type = HDA_PCM_TYPE_HDMI; | 838 | chans = get_wcaps_channels(chans); |
603 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = intel_hdmi_pcm_playback; | 839 | |
840 | info->name = intel_hdmi_pcm_names[i]; | ||
841 | info->pcm_type = HDA_PCM_TYPE_HDMI; | ||
842 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = | ||
843 | intel_hdmi_pcm_playback; | ||
844 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->cvt[i]; | ||
845 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = chans; | ||
846 | } | ||
604 | 847 | ||
605 | return 0; | 848 | return 0; |
606 | } | 849 | } |
@@ -609,29 +852,39 @@ static int intel_hdmi_build_controls(struct hda_codec *codec) | |||
609 | { | 852 | { |
610 | struct intel_hdmi_spec *spec = codec->spec; | 853 | struct intel_hdmi_spec *spec = codec->spec; |
611 | int err; | 854 | int err; |
855 | int i; | ||
612 | 856 | ||
613 | err = snd_hda_create_spdif_out_ctls(codec, spec->multiout.dig_out_nid); | 857 | for (i = 0; i < codec->num_pcms; i++) { |
614 | if (err < 0) | 858 | err = snd_hda_create_spdif_out_ctls(codec, spec->cvt[i]); |
615 | return err; | 859 | if (err < 0) |
860 | return err; | ||
861 | } | ||
616 | 862 | ||
617 | return 0; | 863 | return 0; |
618 | } | 864 | } |
619 | 865 | ||
620 | static int intel_hdmi_init(struct hda_codec *codec) | 866 | static int intel_hdmi_init(struct hda_codec *codec) |
621 | { | 867 | { |
622 | hdmi_enable_output(codec); | 868 | struct intel_hdmi_spec *spec = codec->spec; |
869 | int i; | ||
623 | 870 | ||
624 | snd_hda_codec_write(codec, pin_nid, 0, | 871 | for (i = 0; spec->pin[i]; i++) { |
625 | AC_VERB_SET_UNSOLICITED_ENABLE, | 872 | hdmi_enable_output(codec, spec->pin[i]); |
626 | AC_USRSP_EN | INTEL_HDMI_EVENT_TAG); | 873 | snd_hda_codec_write(codec, spec->pin[i], 0, |
874 | AC_VERB_SET_UNSOLICITED_ENABLE, | ||
875 | AC_USRSP_EN | spec->pin[i]); | ||
876 | } | ||
627 | return 0; | 877 | return 0; |
628 | } | 878 | } |
629 | 879 | ||
630 | static void intel_hdmi_free(struct hda_codec *codec) | 880 | static void intel_hdmi_free(struct hda_codec *codec) |
631 | { | 881 | { |
632 | struct intel_hdmi_spec *spec = codec->spec; | 882 | struct intel_hdmi_spec *spec = codec->spec; |
883 | int i; | ||
884 | |||
885 | for (i = 0; i < spec->num_pins; i++) | ||
886 | snd_hda_eld_proc_free(codec, &spec->sink_eld[i]); | ||
633 | 887 | ||
634 | snd_hda_eld_proc_free(codec, &spec->sink_eld); | ||
635 | kfree(spec); | 888 | kfree(spec); |
636 | } | 889 | } |
637 | 890 | ||
@@ -643,49 +896,38 @@ static struct hda_codec_ops intel_hdmi_patch_ops = { | |||
643 | .unsol_event = intel_hdmi_unsol_event, | 896 | .unsol_event = intel_hdmi_unsol_event, |
644 | }; | 897 | }; |
645 | 898 | ||
646 | static int do_patch_intel_hdmi(struct hda_codec *codec) | 899 | static int patch_intel_hdmi(struct hda_codec *codec) |
647 | { | 900 | { |
648 | struct intel_hdmi_spec *spec; | 901 | struct intel_hdmi_spec *spec; |
902 | int i; | ||
649 | 903 | ||
650 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 904 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
651 | if (spec == NULL) | 905 | if (spec == NULL) |
652 | return -ENOMEM; | 906 | return -ENOMEM; |
653 | 907 | ||
654 | spec->multiout.num_dacs = 0; /* no analog */ | ||
655 | spec->multiout.max_channels = 8; | ||
656 | spec->multiout.dig_out_nid = cvt_nid; | ||
657 | |||
658 | codec->spec = spec; | 908 | codec->spec = spec; |
909 | if (intel_hdmi_parse_codec(codec) < 0) { | ||
910 | codec->spec = NULL; | ||
911 | kfree(spec); | ||
912 | return -EINVAL; | ||
913 | } | ||
659 | codec->patch_ops = intel_hdmi_patch_ops; | 914 | codec->patch_ops = intel_hdmi_patch_ops; |
660 | 915 | ||
661 | snd_hda_eld_proc_new(codec, &spec->sink_eld); | 916 | for (i = 0; i < spec->num_pins; i++) |
917 | snd_hda_eld_proc_new(codec, &spec->sink_eld[i], i); | ||
662 | 918 | ||
663 | init_channel_allocations(); | 919 | init_channel_allocations(); |
664 | 920 | ||
665 | return 0; | 921 | return 0; |
666 | } | 922 | } |
667 | 923 | ||
668 | static int patch_intel_hdmi(struct hda_codec *codec) | ||
669 | { | ||
670 | cvt_nid = 0x02; | ||
671 | pin_nid = 0x03; | ||
672 | return do_patch_intel_hdmi(codec); | ||
673 | } | ||
674 | |||
675 | static int patch_intel_hdmi_ibexpeak(struct hda_codec *codec) | ||
676 | { | ||
677 | cvt_nid = 0x02; | ||
678 | pin_nid = 0x04; | ||
679 | return do_patch_intel_hdmi(codec); | ||
680 | } | ||
681 | |||
682 | static struct hda_codec_preset snd_hda_preset_intelhdmi[] = { | 924 | static struct hda_codec_preset snd_hda_preset_intelhdmi[] = { |
683 | { .id = 0x808629fb, .name = "G45 DEVCL", .patch = patch_intel_hdmi }, | 925 | { .id = 0x808629fb, .name = "G45 DEVCL", .patch = patch_intel_hdmi }, |
684 | { .id = 0x80862801, .name = "G45 DEVBLC", .patch = patch_intel_hdmi }, | 926 | { .id = 0x80862801, .name = "G45 DEVBLC", .patch = patch_intel_hdmi }, |
685 | { .id = 0x80862802, .name = "G45 DEVCTG", .patch = patch_intel_hdmi }, | 927 | { .id = 0x80862802, .name = "G45 DEVCTG", .patch = patch_intel_hdmi }, |
686 | { .id = 0x80862803, .name = "G45 DEVELK", .patch = patch_intel_hdmi }, | 928 | { .id = 0x80862803, .name = "G45 DEVELK", .patch = patch_intel_hdmi }, |
687 | { .id = 0x80862804, .name = "G45 DEVIBX", .patch = patch_intel_hdmi }, | 929 | { .id = 0x80862804, .name = "G45 DEVIBX", .patch = patch_intel_hdmi }, |
688 | { .id = 0x80860054, .name = "Q57 DEVIBX", .patch = patch_intel_hdmi_ibexpeak }, | 930 | { .id = 0x80860054, .name = "Q57 DEVIBX", .patch = patch_intel_hdmi }, |
689 | { .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_intel_hdmi }, | 931 | { .id = 0x10951392, .name = "SiI1392 HDMI", .patch = patch_intel_hdmi }, |
690 | {} /* terminator */ | 932 | {} /* terminator */ |
691 | }; | 933 | }; |
diff --git a/sound/pci/hda/patch_nvhdmi.c b/sound/pci/hda/patch_nvhdmi.c index c8435c9a97f9..6afdab09bab7 100644 --- a/sound/pci/hda/patch_nvhdmi.c +++ b/sound/pci/hda/patch_nvhdmi.c | |||
@@ -29,6 +29,9 @@ | |||
29 | #include "hda_codec.h" | 29 | #include "hda_codec.h" |
30 | #include "hda_local.h" | 30 | #include "hda_local.h" |
31 | 31 | ||
32 | /* define below to restrict the supported rates and formats */ | ||
33 | /* #define LIMITED_RATE_FMT_SUPPORT */ | ||
34 | |||
32 | struct nvhdmi_spec { | 35 | struct nvhdmi_spec { |
33 | struct hda_multi_out multiout; | 36 | struct hda_multi_out multiout; |
34 | 37 | ||
@@ -60,6 +63,22 @@ static struct hda_verb nvhdmi_basic_init[] = { | |||
60 | {} /* terminator */ | 63 | {} /* terminator */ |
61 | }; | 64 | }; |
62 | 65 | ||
66 | #ifdef LIMITED_RATE_FMT_SUPPORT | ||
67 | /* support only the safe format and rate */ | ||
68 | #define SUPPORTED_RATES SNDRV_PCM_RATE_48000 | ||
69 | #define SUPPORTED_MAXBPS 16 | ||
70 | #define SUPPORTED_FORMATS SNDRV_PCM_FMTBIT_S16_LE | ||
71 | #else | ||
72 | /* support all rates and formats */ | ||
73 | #define SUPPORTED_RATES \ | ||
74 | (SNDRV_PCM_RATE_22050 | SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000 |\ | ||
75 | SNDRV_PCM_RATE_88200 | SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\ | ||
76 | SNDRV_PCM_RATE_192000) | ||
77 | #define SUPPORTED_MAXBPS 24 | ||
78 | #define SUPPORTED_FORMATS \ | ||
79 | (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S32_LE) | ||
80 | #endif | ||
81 | |||
63 | /* | 82 | /* |
64 | * Controls | 83 | * Controls |
65 | */ | 84 | */ |
@@ -258,9 +277,9 @@ static struct hda_pcm_stream nvhdmi_pcm_digital_playback_8ch = { | |||
258 | .channels_min = 2, | 277 | .channels_min = 2, |
259 | .channels_max = 8, | 278 | .channels_max = 8, |
260 | .nid = Nv_Master_Convert_nid, | 279 | .nid = Nv_Master_Convert_nid, |
261 | .rates = SNDRV_PCM_RATE_48000, | 280 | .rates = SUPPORTED_RATES, |
262 | .maxbps = 16, | 281 | .maxbps = SUPPORTED_MAXBPS, |
263 | .formats = SNDRV_PCM_FMTBIT_S16_LE, | 282 | .formats = SUPPORTED_FORMATS, |
264 | .ops = { | 283 | .ops = { |
265 | .open = nvhdmi_dig_playback_pcm_open, | 284 | .open = nvhdmi_dig_playback_pcm_open, |
266 | .close = nvhdmi_dig_playback_pcm_close_8ch, | 285 | .close = nvhdmi_dig_playback_pcm_close_8ch, |
@@ -273,9 +292,9 @@ static struct hda_pcm_stream nvhdmi_pcm_digital_playback_2ch = { | |||
273 | .channels_min = 2, | 292 | .channels_min = 2, |
274 | .channels_max = 2, | 293 | .channels_max = 2, |
275 | .nid = Nv_Master_Convert_nid, | 294 | .nid = Nv_Master_Convert_nid, |
276 | .rates = SNDRV_PCM_RATE_48000, | 295 | .rates = SUPPORTED_RATES, |
277 | .maxbps = 16, | 296 | .maxbps = SUPPORTED_MAXBPS, |
278 | .formats = SNDRV_PCM_FMTBIT_S16_LE, | 297 | .formats = SUPPORTED_FORMATS, |
279 | .ops = { | 298 | .ops = { |
280 | .open = nvhdmi_dig_playback_pcm_open, | 299 | .open = nvhdmi_dig_playback_pcm_open, |
281 | .close = nvhdmi_dig_playback_pcm_close_2ch, | 300 | .close = nvhdmi_dig_playback_pcm_close_2ch, |
@@ -378,6 +397,7 @@ static int patch_nvhdmi_2ch(struct hda_codec *codec) | |||
378 | static struct hda_codec_preset snd_hda_preset_nvhdmi[] = { | 397 | static struct hda_codec_preset snd_hda_preset_nvhdmi[] = { |
379 | { .id = 0x10de0002, .name = "MCP78 HDMI", .patch = patch_nvhdmi_8ch }, | 398 | { .id = 0x10de0002, .name = "MCP78 HDMI", .patch = patch_nvhdmi_8ch }, |
380 | { .id = 0x10de0003, .name = "MCP78 HDMI", .patch = patch_nvhdmi_8ch }, | 399 | { .id = 0x10de0003, .name = "MCP78 HDMI", .patch = patch_nvhdmi_8ch }, |
400 | { .id = 0x10de0005, .name = "MCP78 HDMI", .patch = patch_nvhdmi_8ch }, | ||
381 | { .id = 0x10de0006, .name = "MCP78 HDMI", .patch = patch_nvhdmi_8ch }, | 401 | { .id = 0x10de0006, .name = "MCP78 HDMI", .patch = patch_nvhdmi_8ch }, |
382 | { .id = 0x10de0007, .name = "MCP7A HDMI", .patch = patch_nvhdmi_8ch }, | 402 | { .id = 0x10de0007, .name = "MCP7A HDMI", .patch = patch_nvhdmi_8ch }, |
383 | { .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch }, | 403 | { .id = 0x10de0067, .name = "MCP67 HDMI", .patch = patch_nvhdmi_2ch }, |
@@ -387,6 +407,7 @@ static struct hda_codec_preset snd_hda_preset_nvhdmi[] = { | |||
387 | 407 | ||
388 | MODULE_ALIAS("snd-hda-codec-id:10de0002"); | 408 | MODULE_ALIAS("snd-hda-codec-id:10de0002"); |
389 | MODULE_ALIAS("snd-hda-codec-id:10de0003"); | 409 | MODULE_ALIAS("snd-hda-codec-id:10de0003"); |
410 | MODULE_ALIAS("snd-hda-codec-id:10de0005"); | ||
390 | MODULE_ALIAS("snd-hda-codec-id:10de0006"); | 411 | MODULE_ALIAS("snd-hda-codec-id:10de0006"); |
391 | MODULE_ALIAS("snd-hda-codec-id:10de0007"); | 412 | MODULE_ALIAS("snd-hda-codec-id:10de0007"); |
392 | MODULE_ALIAS("snd-hda-codec-id:10de0067"); | 413 | MODULE_ALIAS("snd-hda-codec-id:10de0067"); |
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 129605819560..a38a81e53863 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
@@ -275,7 +275,7 @@ struct alc_spec { | |||
275 | struct snd_kcontrol_new *cap_mixer; /* capture mixer */ | 275 | struct snd_kcontrol_new *cap_mixer; /* capture mixer */ |
276 | unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */ | 276 | unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */ |
277 | 277 | ||
278 | const struct hda_verb *init_verbs[5]; /* initialization verbs | 278 | const struct hda_verb *init_verbs[10]; /* initialization verbs |
279 | * don't forget NULL | 279 | * don't forget NULL |
280 | * termination! | 280 | * termination! |
281 | */ | 281 | */ |
@@ -961,16 +961,12 @@ static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid, | |||
961 | static void alc_automute_pin(struct hda_codec *codec) | 961 | static void alc_automute_pin(struct hda_codec *codec) |
962 | { | 962 | { |
963 | struct alc_spec *spec = codec->spec; | 963 | struct alc_spec *spec = codec->spec; |
964 | unsigned int present, pincap; | ||
965 | unsigned int nid = spec->autocfg.hp_pins[0]; | 964 | unsigned int nid = spec->autocfg.hp_pins[0]; |
966 | int i; | 965 | int i; |
967 | 966 | ||
968 | pincap = snd_hda_query_pin_caps(codec, nid); | 967 | if (!nid) |
969 | if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */ | 968 | return; |
970 | snd_hda_codec_read(codec, nid, 0, AC_VERB_SET_PIN_SENSE, 0); | 969 | spec->jack_present = snd_hda_jack_detect(codec, nid); |
971 | present = snd_hda_codec_read(codec, nid, 0, | ||
972 | AC_VERB_GET_PIN_SENSE, 0); | ||
973 | spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0; | ||
974 | for (i = 0; i < ARRAY_SIZE(spec->autocfg.speaker_pins); i++) { | 970 | for (i = 0; i < ARRAY_SIZE(spec->autocfg.speaker_pins); i++) { |
975 | nid = spec->autocfg.speaker_pins[i]; | 971 | nid = spec->autocfg.speaker_pins[i]; |
976 | if (!nid) | 972 | if (!nid) |
@@ -1010,9 +1006,7 @@ static void alc_mic_automute(struct hda_codec *codec) | |||
1010 | 1006 | ||
1011 | cap_nid = spec->capsrc_nids ? spec->capsrc_nids[0] : spec->adc_nids[0]; | 1007 | cap_nid = spec->capsrc_nids ? spec->capsrc_nids[0] : spec->adc_nids[0]; |
1012 | 1008 | ||
1013 | present = snd_hda_codec_read(codec, spec->ext_mic.pin, 0, | 1009 | present = snd_hda_jack_detect(codec, spec->ext_mic.pin); |
1014 | AC_VERB_GET_PIN_SENSE, 0); | ||
1015 | present &= AC_PINSENSE_PRESENCE; | ||
1016 | if (present) { | 1010 | if (present) { |
1017 | alive = &spec->ext_mic; | 1011 | alive = &spec->ext_mic; |
1018 | dead = &spec->int_mic; | 1012 | dead = &spec->int_mic; |
@@ -1332,15 +1326,20 @@ do_sku: | |||
1332 | * when the external headphone out jack is plugged" | 1326 | * when the external headphone out jack is plugged" |
1333 | */ | 1327 | */ |
1334 | if (!spec->autocfg.hp_pins[0]) { | 1328 | if (!spec->autocfg.hp_pins[0]) { |
1329 | hda_nid_t nid; | ||
1335 | tmp = (ass >> 11) & 0x3; /* HP to chassis */ | 1330 | tmp = (ass >> 11) & 0x3; /* HP to chassis */ |
1336 | if (tmp == 0) | 1331 | if (tmp == 0) |
1337 | spec->autocfg.hp_pins[0] = porta; | 1332 | nid = porta; |
1338 | else if (tmp == 1) | 1333 | else if (tmp == 1) |
1339 | spec->autocfg.hp_pins[0] = porte; | 1334 | nid = porte; |
1340 | else if (tmp == 2) | 1335 | else if (tmp == 2) |
1341 | spec->autocfg.hp_pins[0] = portd; | 1336 | nid = portd; |
1342 | else | 1337 | else |
1343 | return 1; | 1338 | return 1; |
1339 | for (i = 0; i < spec->autocfg.line_outs; i++) | ||
1340 | if (spec->autocfg.line_out_pins[i] == nid) | ||
1341 | return 1; | ||
1342 | spec->autocfg.hp_pins[0] = nid; | ||
1344 | } | 1343 | } |
1345 | 1344 | ||
1346 | alc_init_auto_hp(codec); | 1345 | alc_init_auto_hp(codec); |
@@ -1362,7 +1361,7 @@ static void alc_ssid_check(struct hda_codec *codec, | |||
1362 | } | 1361 | } |
1363 | 1362 | ||
1364 | /* | 1363 | /* |
1365 | * Fix-up pin default configurations | 1364 | * Fix-up pin default configurations and add default verbs |
1366 | */ | 1365 | */ |
1367 | 1366 | ||
1368 | struct alc_pincfg { | 1367 | struct alc_pincfg { |
@@ -1370,9 +1369,14 @@ struct alc_pincfg { | |||
1370 | u32 val; | 1369 | u32 val; |
1371 | }; | 1370 | }; |
1372 | 1371 | ||
1373 | static void alc_fix_pincfg(struct hda_codec *codec, | 1372 | struct alc_fixup { |
1373 | const struct alc_pincfg *pins; | ||
1374 | const struct hda_verb *verbs; | ||
1375 | }; | ||
1376 | |||
1377 | static void alc_pick_fixup(struct hda_codec *codec, | ||
1374 | const struct snd_pci_quirk *quirk, | 1378 | const struct snd_pci_quirk *quirk, |
1375 | const struct alc_pincfg **pinfix) | 1379 | const struct alc_fixup *fix) |
1376 | { | 1380 | { |
1377 | const struct alc_pincfg *cfg; | 1381 | const struct alc_pincfg *cfg; |
1378 | 1382 | ||
@@ -1380,9 +1384,14 @@ static void alc_fix_pincfg(struct hda_codec *codec, | |||
1380 | if (!quirk) | 1384 | if (!quirk) |
1381 | return; | 1385 | return; |
1382 | 1386 | ||
1383 | cfg = pinfix[quirk->value]; | 1387 | fix += quirk->value; |
1384 | for (; cfg->nid; cfg++) | 1388 | cfg = fix->pins; |
1385 | snd_hda_codec_set_pincfg(codec, cfg->nid, cfg->val); | 1389 | if (cfg) { |
1390 | for (; cfg->nid; cfg++) | ||
1391 | snd_hda_codec_set_pincfg(codec, cfg->nid, cfg->val); | ||
1392 | } | ||
1393 | if (fix->verbs) | ||
1394 | add_verb(codec->spec, fix->verbs); | ||
1386 | } | 1395 | } |
1387 | 1396 | ||
1388 | /* | 1397 | /* |
@@ -1496,7 +1505,7 @@ static struct hda_verb alc888_fujitsu_xa3530_verbs[] = { | |||
1496 | static void alc_automute_amp(struct hda_codec *codec) | 1505 | static void alc_automute_amp(struct hda_codec *codec) |
1497 | { | 1506 | { |
1498 | struct alc_spec *spec = codec->spec; | 1507 | struct alc_spec *spec = codec->spec; |
1499 | unsigned int val, mute, pincap; | 1508 | unsigned int mute; |
1500 | hda_nid_t nid; | 1509 | hda_nid_t nid; |
1501 | int i; | 1510 | int i; |
1502 | 1511 | ||
@@ -1505,13 +1514,7 @@ static void alc_automute_amp(struct hda_codec *codec) | |||
1505 | nid = spec->autocfg.hp_pins[i]; | 1514 | nid = spec->autocfg.hp_pins[i]; |
1506 | if (!nid) | 1515 | if (!nid) |
1507 | break; | 1516 | break; |
1508 | pincap = snd_hda_query_pin_caps(codec, nid); | 1517 | if (snd_hda_jack_detect(codec, nid)) { |
1509 | if (pincap & AC_PINCAP_TRIG_REQ) /* need trigger? */ | ||
1510 | snd_hda_codec_read(codec, nid, 0, | ||
1511 | AC_VERB_SET_PIN_SENSE, 0); | ||
1512 | val = snd_hda_codec_read(codec, nid, 0, | ||
1513 | AC_VERB_GET_PIN_SENSE, 0); | ||
1514 | if (val & AC_PINSENSE_PRESENCE) { | ||
1515 | spec->jack_present = 1; | 1518 | spec->jack_present = 1; |
1516 | break; | 1519 | break; |
1517 | } | 1520 | } |
@@ -1769,6 +1772,8 @@ static void alc888_acer_aspire_4930g_setup(struct hda_codec *codec) | |||
1769 | 1772 | ||
1770 | spec->autocfg.hp_pins[0] = 0x15; | 1773 | spec->autocfg.hp_pins[0] = 0x15; |
1771 | spec->autocfg.speaker_pins[0] = 0x14; | 1774 | spec->autocfg.speaker_pins[0] = 0x14; |
1775 | spec->autocfg.speaker_pins[1] = 0x16; | ||
1776 | spec->autocfg.speaker_pins[2] = 0x17; | ||
1772 | } | 1777 | } |
1773 | 1778 | ||
1774 | static void alc888_acer_aspire_6530g_setup(struct hda_codec *codec) | 1779 | static void alc888_acer_aspire_6530g_setup(struct hda_codec *codec) |
@@ -2393,12 +2398,14 @@ static const char *alc_slave_sws[] = { | |||
2393 | 2398 | ||
2394 | static void alc_free_kctls(struct hda_codec *codec); | 2399 | static void alc_free_kctls(struct hda_codec *codec); |
2395 | 2400 | ||
2401 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
2396 | /* additional beep mixers; the actual parameters are overwritten at build */ | 2402 | /* additional beep mixers; the actual parameters are overwritten at build */ |
2397 | static struct snd_kcontrol_new alc_beep_mixer[] = { | 2403 | static struct snd_kcontrol_new alc_beep_mixer[] = { |
2398 | HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT), | 2404 | HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT), |
2399 | HDA_CODEC_MUTE("Beep Playback Switch", 0, 0, HDA_INPUT), | 2405 | HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT), |
2400 | { } /* end */ | 2406 | { } /* end */ |
2401 | }; | 2407 | }; |
2408 | #endif | ||
2402 | 2409 | ||
2403 | static int alc_build_controls(struct hda_codec *codec) | 2410 | static int alc_build_controls(struct hda_codec *codec) |
2404 | { | 2411 | { |
@@ -2435,6 +2442,7 @@ static int alc_build_controls(struct hda_codec *codec) | |||
2435 | return err; | 2442 | return err; |
2436 | } | 2443 | } |
2437 | 2444 | ||
2445 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
2438 | /* create beep controls if needed */ | 2446 | /* create beep controls if needed */ |
2439 | if (spec->beep_amp) { | 2447 | if (spec->beep_amp) { |
2440 | struct snd_kcontrol_new *knew; | 2448 | struct snd_kcontrol_new *knew; |
@@ -2444,11 +2452,13 @@ static int alc_build_controls(struct hda_codec *codec) | |||
2444 | if (!kctl) | 2452 | if (!kctl) |
2445 | return -ENOMEM; | 2453 | return -ENOMEM; |
2446 | kctl->private_value = spec->beep_amp; | 2454 | kctl->private_value = spec->beep_amp; |
2447 | err = snd_hda_ctl_add(codec, kctl); | 2455 | err = snd_hda_ctl_add(codec, |
2456 | get_amp_nid_(spec->beep_amp), kctl); | ||
2448 | if (err < 0) | 2457 | if (err < 0) |
2449 | return err; | 2458 | return err; |
2450 | } | 2459 | } |
2451 | } | 2460 | } |
2461 | #endif | ||
2452 | 2462 | ||
2453 | /* if we have no master control, let's create it */ | 2463 | /* if we have no master control, let's create it */ |
2454 | if (!spec->no_analog && | 2464 | if (!spec->no_analog && |
@@ -2762,8 +2772,7 @@ static void alc880_uniwill_mic_automute(struct hda_codec *codec) | |||
2762 | unsigned int present; | 2772 | unsigned int present; |
2763 | unsigned char bits; | 2773 | unsigned char bits; |
2764 | 2774 | ||
2765 | present = snd_hda_codec_read(codec, 0x18, 0, | 2775 | present = snd_hda_jack_detect(codec, 0x18); |
2766 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
2767 | bits = present ? HDA_AMP_MUTE : 0; | 2776 | bits = present ? HDA_AMP_MUTE : 0; |
2768 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits); | 2777 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits); |
2769 | } | 2778 | } |
@@ -4305,10 +4314,26 @@ static int add_control(struct alc_spec *spec, int type, const char *name, | |||
4305 | knew->name = kstrdup(name, GFP_KERNEL); | 4314 | knew->name = kstrdup(name, GFP_KERNEL); |
4306 | if (!knew->name) | 4315 | if (!knew->name) |
4307 | return -ENOMEM; | 4316 | return -ENOMEM; |
4317 | if (get_amp_nid_(val)) | ||
4318 | knew->subdevice = HDA_SUBDEV_NID_FLAG | get_amp_nid_(val); | ||
4308 | knew->private_value = val; | 4319 | knew->private_value = val; |
4309 | return 0; | 4320 | return 0; |
4310 | } | 4321 | } |
4311 | 4322 | ||
4323 | static int add_control_with_pfx(struct alc_spec *spec, int type, | ||
4324 | const char *pfx, const char *dir, | ||
4325 | const char *sfx, unsigned long val) | ||
4326 | { | ||
4327 | char name[32]; | ||
4328 | snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx); | ||
4329 | return add_control(spec, type, name, val); | ||
4330 | } | ||
4331 | |||
4332 | #define add_pb_vol_ctrl(spec, type, pfx, val) \ | ||
4333 | add_control_with_pfx(spec, type, pfx, "Playback", "Volume", val) | ||
4334 | #define add_pb_sw_ctrl(spec, type, pfx, val) \ | ||
4335 | add_control_with_pfx(spec, type, pfx, "Playback", "Switch", val) | ||
4336 | |||
4312 | #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17) | 4337 | #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17) |
4313 | #define alc880_fixed_pin_idx(nid) ((nid) - 0x14) | 4338 | #define alc880_fixed_pin_idx(nid) ((nid) - 0x14) |
4314 | #define alc880_is_multi_pin(nid) ((nid) >= 0x18) | 4339 | #define alc880_is_multi_pin(nid) ((nid) >= 0x18) |
@@ -4362,7 +4387,6 @@ static int alc880_auto_fill_dac_nids(struct alc_spec *spec, | |||
4362 | static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec, | 4387 | static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec, |
4363 | const struct auto_pin_cfg *cfg) | 4388 | const struct auto_pin_cfg *cfg) |
4364 | { | 4389 | { |
4365 | char name[32]; | ||
4366 | static const char *chname[4] = { | 4390 | static const char *chname[4] = { |
4367 | "Front", "Surround", NULL /*CLFE*/, "Side" | 4391 | "Front", "Surround", NULL /*CLFE*/, "Side" |
4368 | }; | 4392 | }; |
@@ -4375,26 +4399,26 @@ static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
4375 | nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i])); | 4399 | nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i])); |
4376 | if (i == 2) { | 4400 | if (i == 2) { |
4377 | /* Center/LFE */ | 4401 | /* Center/LFE */ |
4378 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 4402 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, |
4379 | "Center Playback Volume", | 4403 | "Center", |
4380 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, | 4404 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, |
4381 | HDA_OUTPUT)); | 4405 | HDA_OUTPUT)); |
4382 | if (err < 0) | 4406 | if (err < 0) |
4383 | return err; | 4407 | return err; |
4384 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 4408 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, |
4385 | "LFE Playback Volume", | 4409 | "LFE", |
4386 | HDA_COMPOSE_AMP_VAL(nid, 2, 0, | 4410 | HDA_COMPOSE_AMP_VAL(nid, 2, 0, |
4387 | HDA_OUTPUT)); | 4411 | HDA_OUTPUT)); |
4388 | if (err < 0) | 4412 | if (err < 0) |
4389 | return err; | 4413 | return err; |
4390 | err = add_control(spec, ALC_CTL_BIND_MUTE, | 4414 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, |
4391 | "Center Playback Switch", | 4415 | "Center", |
4392 | HDA_COMPOSE_AMP_VAL(nid, 1, 2, | 4416 | HDA_COMPOSE_AMP_VAL(nid, 1, 2, |
4393 | HDA_INPUT)); | 4417 | HDA_INPUT)); |
4394 | if (err < 0) | 4418 | if (err < 0) |
4395 | return err; | 4419 | return err; |
4396 | err = add_control(spec, ALC_CTL_BIND_MUTE, | 4420 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, |
4397 | "LFE Playback Switch", | 4421 | "LFE", |
4398 | HDA_COMPOSE_AMP_VAL(nid, 2, 2, | 4422 | HDA_COMPOSE_AMP_VAL(nid, 2, 2, |
4399 | HDA_INPUT)); | 4423 | HDA_INPUT)); |
4400 | if (err < 0) | 4424 | if (err < 0) |
@@ -4406,14 +4430,12 @@ static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
4406 | pfx = "Speaker"; | 4430 | pfx = "Speaker"; |
4407 | else | 4431 | else |
4408 | pfx = chname[i]; | 4432 | pfx = chname[i]; |
4409 | sprintf(name, "%s Playback Volume", pfx); | 4433 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, pfx, |
4410 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | ||
4411 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, | 4434 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, |
4412 | HDA_OUTPUT)); | 4435 | HDA_OUTPUT)); |
4413 | if (err < 0) | 4436 | if (err < 0) |
4414 | return err; | 4437 | return err; |
4415 | sprintf(name, "%s Playback Switch", pfx); | 4438 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, pfx, |
4416 | err = add_control(spec, ALC_CTL_BIND_MUTE, name, | ||
4417 | HDA_COMPOSE_AMP_VAL(nid, 3, 2, | 4439 | HDA_COMPOSE_AMP_VAL(nid, 3, 2, |
4418 | HDA_INPUT)); | 4440 | HDA_INPUT)); |
4419 | if (err < 0) | 4441 | if (err < 0) |
@@ -4429,7 +4451,6 @@ static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin, | |||
4429 | { | 4451 | { |
4430 | hda_nid_t nid; | 4452 | hda_nid_t nid; |
4431 | int err; | 4453 | int err; |
4432 | char name[32]; | ||
4433 | 4454 | ||
4434 | if (!pin) | 4455 | if (!pin) |
4435 | return 0; | 4456 | return 0; |
@@ -4443,21 +4464,18 @@ static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin, | |||
4443 | spec->multiout.extra_out_nid[0] = nid; | 4464 | spec->multiout.extra_out_nid[0] = nid; |
4444 | /* control HP volume/switch on the output mixer amp */ | 4465 | /* control HP volume/switch on the output mixer amp */ |
4445 | nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin)); | 4466 | nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin)); |
4446 | sprintf(name, "%s Playback Volume", pfx); | 4467 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, pfx, |
4447 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | ||
4448 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT)); | 4468 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT)); |
4449 | if (err < 0) | 4469 | if (err < 0) |
4450 | return err; | 4470 | return err; |
4451 | sprintf(name, "%s Playback Switch", pfx); | 4471 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, pfx, |
4452 | err = add_control(spec, ALC_CTL_BIND_MUTE, name, | ||
4453 | HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT)); | 4472 | HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT)); |
4454 | if (err < 0) | 4473 | if (err < 0) |
4455 | return err; | 4474 | return err; |
4456 | } else if (alc880_is_multi_pin(pin)) { | 4475 | } else if (alc880_is_multi_pin(pin)) { |
4457 | /* set manual connection */ | 4476 | /* set manual connection */ |
4458 | /* we have only a switch on HP-out PIN */ | 4477 | /* we have only a switch on HP-out PIN */ |
4459 | sprintf(name, "%s Playback Switch", pfx); | 4478 | err = add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, |
4460 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | ||
4461 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); | 4479 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); |
4462 | if (err < 0) | 4480 | if (err < 0) |
4463 | return err; | 4481 | return err; |
@@ -4470,16 +4488,13 @@ static int new_analog_input(struct alc_spec *spec, hda_nid_t pin, | |||
4470 | const char *ctlname, | 4488 | const char *ctlname, |
4471 | int idx, hda_nid_t mix_nid) | 4489 | int idx, hda_nid_t mix_nid) |
4472 | { | 4490 | { |
4473 | char name[32]; | ||
4474 | int err; | 4491 | int err; |
4475 | 4492 | ||
4476 | sprintf(name, "%s Playback Volume", ctlname); | 4493 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, |
4477 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | ||
4478 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); | 4494 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); |
4479 | if (err < 0) | 4495 | if (err < 0) |
4480 | return err; | 4496 | return err; |
4481 | sprintf(name, "%s Playback Switch", ctlname); | 4497 | err = add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, |
4482 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | ||
4483 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); | 4498 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); |
4484 | if (err < 0) | 4499 | if (err < 0) |
4485 | return err; | 4500 | return err; |
@@ -4667,9 +4682,9 @@ static int alc880_parse_auto_config(struct hda_codec *codec) | |||
4667 | spec->multiout.dig_out_nid = dig_nid; | 4682 | spec->multiout.dig_out_nid = dig_nid; |
4668 | else { | 4683 | else { |
4669 | spec->multiout.slave_dig_outs = spec->slave_dig_outs; | 4684 | spec->multiout.slave_dig_outs = spec->slave_dig_outs; |
4670 | spec->slave_dig_outs[i - 1] = dig_nid; | 4685 | if (i >= ARRAY_SIZE(spec->slave_dig_outs) - 1) |
4671 | if (i == ARRAY_SIZE(spec->slave_dig_outs) - 1) | ||
4672 | break; | 4686 | break; |
4687 | spec->slave_dig_outs[i - 1] = dig_nid; | ||
4673 | } | 4688 | } |
4674 | } | 4689 | } |
4675 | if (spec->autocfg.dig_in_pin) | 4690 | if (spec->autocfg.dig_in_pin) |
@@ -4756,8 +4771,12 @@ static void set_capture_mixer(struct hda_codec *codec) | |||
4756 | } | 4771 | } |
4757 | } | 4772 | } |
4758 | 4773 | ||
4774 | #ifdef CONFIG_SND_HDA_INPUT_BEEP | ||
4759 | #define set_beep_amp(spec, nid, idx, dir) \ | 4775 | #define set_beep_amp(spec, nid, idx, dir) \ |
4760 | ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir)) | 4776 | ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir)) |
4777 | #else | ||
4778 | #define set_beep_amp(spec, nid, idx, dir) /* NOP */ | ||
4779 | #endif | ||
4761 | 4780 | ||
4762 | /* | 4781 | /* |
4763 | * OK, here we have finally the patch for ALC880 | 4782 | * OK, here we have finally the patch for ALC880 |
@@ -5070,11 +5089,8 @@ static struct hda_verb alc260_hp_unsol_verbs[] = { | |||
5070 | static void alc260_hp_automute(struct hda_codec *codec) | 5089 | static void alc260_hp_automute(struct hda_codec *codec) |
5071 | { | 5090 | { |
5072 | struct alc_spec *spec = codec->spec; | 5091 | struct alc_spec *spec = codec->spec; |
5073 | unsigned int present; | ||
5074 | 5092 | ||
5075 | present = snd_hda_codec_read(codec, 0x10, 0, | 5093 | spec->jack_present = snd_hda_jack_detect(codec, 0x10); |
5076 | AC_VERB_GET_PIN_SENSE, 0); | ||
5077 | spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0; | ||
5078 | alc260_hp_master_update(codec, 0x0f, 0x10, 0x11); | 5094 | alc260_hp_master_update(codec, 0x0f, 0x10, 0x11); |
5079 | } | 5095 | } |
5080 | 5096 | ||
@@ -5139,11 +5155,8 @@ static struct hda_verb alc260_hp_3013_unsol_verbs[] = { | |||
5139 | static void alc260_hp_3013_automute(struct hda_codec *codec) | 5155 | static void alc260_hp_3013_automute(struct hda_codec *codec) |
5140 | { | 5156 | { |
5141 | struct alc_spec *spec = codec->spec; | 5157 | struct alc_spec *spec = codec->spec; |
5142 | unsigned int present; | ||
5143 | 5158 | ||
5144 | present = snd_hda_codec_read(codec, 0x15, 0, | 5159 | spec->jack_present = snd_hda_jack_detect(codec, 0x15); |
5145 | AC_VERB_GET_PIN_SENSE, 0); | ||
5146 | spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0; | ||
5147 | alc260_hp_master_update(codec, 0x15, 0x10, 0x11); | 5160 | alc260_hp_master_update(codec, 0x15, 0x10, 0x11); |
5148 | } | 5161 | } |
5149 | 5162 | ||
@@ -5156,12 +5169,8 @@ static void alc260_hp_3013_unsol_event(struct hda_codec *codec, | |||
5156 | 5169 | ||
5157 | static void alc260_hp_3012_automute(struct hda_codec *codec) | 5170 | static void alc260_hp_3012_automute(struct hda_codec *codec) |
5158 | { | 5171 | { |
5159 | unsigned int present, bits; | 5172 | unsigned int bits = snd_hda_jack_detect(codec, 0x10) ? 0 : PIN_OUT; |
5160 | 5173 | ||
5161 | present = snd_hda_codec_read(codec, 0x10, 0, | ||
5162 | AC_VERB_GET_PIN_SENSE, 0) & AC_PINSENSE_PRESENCE; | ||
5163 | |||
5164 | bits = present ? 0 : PIN_OUT; | ||
5165 | snd_hda_codec_write(codec, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | 5174 | snd_hda_codec_write(codec, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
5166 | bits); | 5175 | bits); |
5167 | snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, | 5176 | snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, |
@@ -5731,8 +5740,7 @@ static void alc260_replacer_672v_automute(struct hda_codec *codec) | |||
5731 | unsigned int present; | 5740 | unsigned int present; |
5732 | 5741 | ||
5733 | /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */ | 5742 | /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */ |
5734 | present = snd_hda_codec_read(codec, 0x0f, 0, | 5743 | present = snd_hda_jack_detect(codec, 0x0f); |
5735 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
5736 | if (present) { | 5744 | if (present) { |
5737 | snd_hda_codec_write_cache(codec, 0x01, 0, | 5745 | snd_hda_codec_write_cache(codec, 0x01, 0, |
5738 | AC_VERB_SET_GPIO_DATA, 1); | 5746 | AC_VERB_SET_GPIO_DATA, 1); |
@@ -5972,7 +5980,6 @@ static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid, | |||
5972 | { | 5980 | { |
5973 | hda_nid_t nid_vol; | 5981 | hda_nid_t nid_vol; |
5974 | unsigned long vol_val, sw_val; | 5982 | unsigned long vol_val, sw_val; |
5975 | char name[32]; | ||
5976 | int err; | 5983 | int err; |
5977 | 5984 | ||
5978 | if (nid >= 0x0f && nid < 0x11) { | 5985 | if (nid >= 0x0f && nid < 0x11) { |
@@ -5992,14 +5999,12 @@ static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid, | |||
5992 | 5999 | ||
5993 | if (!(*vol_bits & (1 << nid_vol))) { | 6000 | if (!(*vol_bits & (1 << nid_vol))) { |
5994 | /* first control for the volume widget */ | 6001 | /* first control for the volume widget */ |
5995 | snprintf(name, sizeof(name), "%s Playback Volume", pfx); | 6002 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, pfx, vol_val); |
5996 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val); | ||
5997 | if (err < 0) | 6003 | if (err < 0) |
5998 | return err; | 6004 | return err; |
5999 | *vol_bits |= (1 << nid_vol); | 6005 | *vol_bits |= (1 << nid_vol); |
6000 | } | 6006 | } |
6001 | snprintf(name, sizeof(name), "%s Playback Switch", pfx); | 6007 | err = add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, sw_val); |
6002 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val); | ||
6003 | if (err < 0) | 6008 | if (err < 0) |
6004 | return err; | 6009 | return err; |
6005 | return 1; | 6010 | return 1; |
@@ -6232,7 +6237,7 @@ static struct snd_pci_quirk alc260_cfg_tbl[] = { | |||
6232 | SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER), | 6237 | SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER), |
6233 | SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FAVORIT100), | 6238 | SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FAVORIT100), |
6234 | SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013), | 6239 | SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013), |
6235 | SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013), | 6240 | SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_AUTO), /* no quirk */ |
6236 | SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013), | 6241 | SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013), |
6237 | SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP_3013), | 6242 | SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP_3013), |
6238 | SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_DC7600), | 6243 | SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_DC7600), |
@@ -7319,8 +7324,8 @@ static struct snd_kcontrol_new alc882_macpro_mixer[] = { | |||
7319 | HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT), | 7324 | HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT), |
7320 | HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT), | 7325 | HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT), |
7321 | /* FIXME: this looks suspicious... | 7326 | /* FIXME: this looks suspicious... |
7322 | HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT), | 7327 | HDA_CODEC_VOLUME("Beep Playback Volume", 0x0b, 0x02, HDA_INPUT), |
7323 | HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT), | 7328 | HDA_CODEC_MUTE("Beep Playback Switch", 0x0b, 0x02, HDA_INPUT), |
7324 | */ | 7329 | */ |
7325 | { } /* end */ | 7330 | { } /* end */ |
7326 | }; | 7331 | }; |
@@ -8167,12 +8172,8 @@ static void alc883_mitac_setup(struct hda_codec *codec) | |||
8167 | /* | 8172 | /* |
8168 | static void alc883_mitac_mic_automute(struct hda_codec *codec) | 8173 | static void alc883_mitac_mic_automute(struct hda_codec *codec) |
8169 | { | 8174 | { |
8170 | unsigned int present; | 8175 | unsigned char bits = snd_hda_jack_detect(codec, 0x18) ? HDA_AMP_MUTE : 0; |
8171 | unsigned char bits; | ||
8172 | 8176 | ||
8173 | present = snd_hda_codec_read(codec, 0x18, 0, | ||
8174 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
8175 | bits = present ? HDA_AMP_MUTE : 0; | ||
8176 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits); | 8177 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits); |
8177 | } | 8178 | } |
8178 | */ | 8179 | */ |
@@ -8394,10 +8395,8 @@ static struct hda_channel_mode alc888_3st_hp_modes[3] = { | |||
8394 | /* toggle front-jack and RCA according to the hp-jack state */ | 8395 | /* toggle front-jack and RCA according to the hp-jack state */ |
8395 | static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec) | 8396 | static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec) |
8396 | { | 8397 | { |
8397 | unsigned int present; | 8398 | unsigned int present = snd_hda_jack_detect(codec, 0x1b); |
8398 | 8399 | ||
8399 | present = snd_hda_codec_read(codec, 0x1b, 0, | ||
8400 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
8401 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, | 8400 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, |
8402 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 8401 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
8403 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, | 8402 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, |
@@ -8407,10 +8406,8 @@ static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec) | |||
8407 | /* toggle RCA according to the front-jack state */ | 8406 | /* toggle RCA according to the front-jack state */ |
8408 | static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec) | 8407 | static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec) |
8409 | { | 8408 | { |
8410 | unsigned int present; | 8409 | unsigned int present = snd_hda_jack_detect(codec, 0x14); |
8411 | 8410 | ||
8412 | present = snd_hda_codec_read(codec, 0x14, 0, | ||
8413 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
8414 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, | 8411 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, |
8415 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 8412 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
8416 | } | 8413 | } |
@@ -8451,8 +8448,7 @@ static void alc883_clevo_m720_mic_automute(struct hda_codec *codec) | |||
8451 | { | 8448 | { |
8452 | unsigned int present; | 8449 | unsigned int present; |
8453 | 8450 | ||
8454 | present = snd_hda_codec_read(codec, 0x18, 0, | 8451 | present = snd_hda_jack_detect(codec, 0x18); |
8455 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
8456 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, | 8452 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, |
8457 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 8453 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
8458 | } | 8454 | } |
@@ -8503,24 +8499,16 @@ static void alc883_haier_w66_setup(struct hda_codec *codec) | |||
8503 | 8499 | ||
8504 | static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec) | 8500 | static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec) |
8505 | { | 8501 | { |
8506 | unsigned int present; | 8502 | int bits = snd_hda_jack_detect(codec, 0x14) ? HDA_AMP_MUTE : 0; |
8507 | unsigned char bits; | ||
8508 | 8503 | ||
8509 | present = snd_hda_codec_read(codec, 0x14, 0, AC_VERB_GET_PIN_SENSE, 0) | ||
8510 | & AC_PINSENSE_PRESENCE; | ||
8511 | bits = present ? HDA_AMP_MUTE : 0; | ||
8512 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, | 8504 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, |
8513 | HDA_AMP_MUTE, bits); | 8505 | HDA_AMP_MUTE, bits); |
8514 | } | 8506 | } |
8515 | 8507 | ||
8516 | static void alc883_lenovo_101e_all_automute(struct hda_codec *codec) | 8508 | static void alc883_lenovo_101e_all_automute(struct hda_codec *codec) |
8517 | { | 8509 | { |
8518 | unsigned int present; | 8510 | int bits = snd_hda_jack_detect(codec, 0x1b) ? HDA_AMP_MUTE : 0; |
8519 | unsigned char bits; | ||
8520 | 8511 | ||
8521 | present = snd_hda_codec_read(codec, 0x1b, 0, | ||
8522 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
8523 | bits = present ? HDA_AMP_MUTE : 0; | ||
8524 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, | 8512 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, |
8525 | HDA_AMP_MUTE, bits); | 8513 | HDA_AMP_MUTE, bits); |
8526 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, | 8514 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, |
@@ -8671,8 +8659,7 @@ static void alc889A_mb31_automute(struct hda_codec *codec) | |||
8671 | /* Mute only in 2ch or 4ch mode */ | 8659 | /* Mute only in 2ch or 4ch mode */ |
8672 | if (snd_hda_codec_read(codec, 0x15, 0, AC_VERB_GET_CONNECT_SEL, 0) | 8660 | if (snd_hda_codec_read(codec, 0x15, 0, AC_VERB_GET_CONNECT_SEL, 0) |
8673 | == 0x00) { | 8661 | == 0x00) { |
8674 | present = snd_hda_codec_read(codec, 0x15, 0, | 8662 | present = snd_hda_jack_detect(codec, 0x15); |
8675 | AC_VERB_GET_PIN_SENSE, 0) & AC_PINSENSE_PRESENCE; | ||
8676 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, | 8663 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, |
8677 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 8664 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
8678 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0, | 8665 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0, |
@@ -8894,10 +8881,11 @@ static struct snd_pci_quirk alc882_ssid_cfg_tbl[] = { | |||
8894 | SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC885_MBP3), | 8881 | SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC885_MBP3), |
8895 | SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_IMAC24), | 8882 | SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_IMAC24), |
8896 | SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC885_MB5), | 8883 | SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC885_MB5), |
8897 | /* FIXME: HP jack sense seems not working for MBP 5,1, so apparently | 8884 | /* FIXME: HP jack sense seems not working for MBP 5,1 or 5,2, |
8898 | * no perfect solution yet | 8885 | * so apparently no perfect solution yet |
8899 | */ | 8886 | */ |
8900 | SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC885_MB5), | 8887 | SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC885_MB5), |
8888 | SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC885_MB5), | ||
8901 | {} /* terminator */ | 8889 | {} /* terminator */ |
8902 | }; | 8890 | }; |
8903 | 8891 | ||
@@ -9593,11 +9581,13 @@ static struct alc_pincfg alc882_abit_aw9d_pinfix[] = { | |||
9593 | { } | 9581 | { } |
9594 | }; | 9582 | }; |
9595 | 9583 | ||
9596 | static const struct alc_pincfg *alc882_pin_fixes[] = { | 9584 | static const struct alc_fixup alc882_fixups[] = { |
9597 | [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix, | 9585 | [PINFIX_ABIT_AW9D_MAX] = { |
9586 | .pins = alc882_abit_aw9d_pinfix | ||
9587 | }, | ||
9598 | }; | 9588 | }; |
9599 | 9589 | ||
9600 | static struct snd_pci_quirk alc882_pinfix_tbl[] = { | 9590 | static struct snd_pci_quirk alc882_fixup_tbl[] = { |
9601 | SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX), | 9591 | SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX), |
9602 | {} | 9592 | {} |
9603 | }; | 9593 | }; |
@@ -9794,9 +9784,9 @@ static int alc882_parse_auto_config(struct hda_codec *codec) | |||
9794 | spec->multiout.dig_out_nid = dig_nid; | 9784 | spec->multiout.dig_out_nid = dig_nid; |
9795 | else { | 9785 | else { |
9796 | spec->multiout.slave_dig_outs = spec->slave_dig_outs; | 9786 | spec->multiout.slave_dig_outs = spec->slave_dig_outs; |
9797 | spec->slave_dig_outs[i - 1] = dig_nid; | 9787 | if (i >= ARRAY_SIZE(spec->slave_dig_outs) - 1) |
9798 | if (i == ARRAY_SIZE(spec->slave_dig_outs) - 1) | ||
9799 | break; | 9788 | break; |
9789 | spec->slave_dig_outs[i - 1] = dig_nid; | ||
9800 | } | 9790 | } |
9801 | } | 9791 | } |
9802 | if (spec->autocfg.dig_in_pin) | 9792 | if (spec->autocfg.dig_in_pin) |
@@ -9869,7 +9859,7 @@ static int patch_alc882(struct hda_codec *codec) | |||
9869 | board_config = ALC882_AUTO; | 9859 | board_config = ALC882_AUTO; |
9870 | } | 9860 | } |
9871 | 9861 | ||
9872 | alc_fix_pincfg(codec, alc882_pinfix_tbl, alc882_pin_fixes); | 9862 | alc_pick_fixup(codec, alc882_fixup_tbl, alc882_fixups); |
9873 | 9863 | ||
9874 | if (board_config == ALC882_AUTO) { | 9864 | if (board_config == ALC882_AUTO) { |
9875 | /* automatic parse from the BIOS config */ | 9865 | /* automatic parse from the BIOS config */ |
@@ -10012,10 +10002,8 @@ static void alc262_hp_master_update(struct hda_codec *codec) | |||
10012 | static void alc262_hp_bpc_automute(struct hda_codec *codec) | 10002 | static void alc262_hp_bpc_automute(struct hda_codec *codec) |
10013 | { | 10003 | { |
10014 | struct alc_spec *spec = codec->spec; | 10004 | struct alc_spec *spec = codec->spec; |
10015 | unsigned int presence; | 10005 | |
10016 | presence = snd_hda_codec_read(codec, 0x1b, 0, | 10006 | spec->jack_present = snd_hda_jack_detect(codec, 0x1b); |
10017 | AC_VERB_GET_PIN_SENSE, 0); | ||
10018 | spec->jack_present = !!(presence & AC_PINSENSE_PRESENCE); | ||
10019 | alc262_hp_master_update(codec); | 10007 | alc262_hp_master_update(codec); |
10020 | } | 10008 | } |
10021 | 10009 | ||
@@ -10029,10 +10017,8 @@ static void alc262_hp_bpc_unsol_event(struct hda_codec *codec, unsigned int res) | |||
10029 | static void alc262_hp_wildwest_automute(struct hda_codec *codec) | 10017 | static void alc262_hp_wildwest_automute(struct hda_codec *codec) |
10030 | { | 10018 | { |
10031 | struct alc_spec *spec = codec->spec; | 10019 | struct alc_spec *spec = codec->spec; |
10032 | unsigned int presence; | 10020 | |
10033 | presence = snd_hda_codec_read(codec, 0x15, 0, | 10021 | spec->jack_present = snd_hda_jack_detect(codec, 0x15); |
10034 | AC_VERB_GET_PIN_SENSE, 0); | ||
10035 | spec->jack_present = !!(presence & AC_PINSENSE_PRESENCE); | ||
10036 | alc262_hp_master_update(codec); | 10022 | alc262_hp_master_update(codec); |
10037 | } | 10023 | } |
10038 | 10024 | ||
@@ -10266,13 +10252,8 @@ static void alc262_hippo_automute(struct hda_codec *codec) | |||
10266 | { | 10252 | { |
10267 | struct alc_spec *spec = codec->spec; | 10253 | struct alc_spec *spec = codec->spec; |
10268 | hda_nid_t hp_nid = spec->autocfg.hp_pins[0]; | 10254 | hda_nid_t hp_nid = spec->autocfg.hp_pins[0]; |
10269 | unsigned int present; | ||
10270 | 10255 | ||
10271 | /* need to execute and sync at first */ | 10256 | spec->jack_present = snd_hda_jack_detect(codec, hp_nid); |
10272 | snd_hda_codec_read(codec, hp_nid, 0, AC_VERB_SET_PIN_SENSE, 0); | ||
10273 | present = snd_hda_codec_read(codec, hp_nid, 0, | ||
10274 | AC_VERB_GET_PIN_SENSE, 0); | ||
10275 | spec->jack_present = (present & 0x80000000) != 0; | ||
10276 | alc262_hippo_master_update(codec); | 10257 | alc262_hippo_master_update(codec); |
10277 | } | 10258 | } |
10278 | 10259 | ||
@@ -10598,21 +10579,8 @@ static void alc262_fujitsu_automute(struct hda_codec *codec, int force) | |||
10598 | unsigned int mute; | 10579 | unsigned int mute; |
10599 | 10580 | ||
10600 | if (force || !spec->sense_updated) { | 10581 | if (force || !spec->sense_updated) { |
10601 | unsigned int present; | 10582 | spec->jack_present = snd_hda_jack_detect(codec, 0x14) || |
10602 | /* need to execute and sync at first */ | 10583 | snd_hda_jack_detect(codec, 0x1b); |
10603 | snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0); | ||
10604 | /* check laptop HP jack */ | ||
10605 | present = snd_hda_codec_read(codec, 0x14, 0, | ||
10606 | AC_VERB_GET_PIN_SENSE, 0); | ||
10607 | /* need to execute and sync at first */ | ||
10608 | snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0); | ||
10609 | /* check docking HP jack */ | ||
10610 | present |= snd_hda_codec_read(codec, 0x1b, 0, | ||
10611 | AC_VERB_GET_PIN_SENSE, 0); | ||
10612 | if (present & AC_PINSENSE_PRESENCE) | ||
10613 | spec->jack_present = 1; | ||
10614 | else | ||
10615 | spec->jack_present = 0; | ||
10616 | spec->sense_updated = 1; | 10584 | spec->sense_updated = 1; |
10617 | } | 10585 | } |
10618 | /* unmute internal speaker only if both HPs are unplugged and | 10586 | /* unmute internal speaker only if both HPs are unplugged and |
@@ -10657,12 +10625,7 @@ static void alc262_lenovo_3000_automute(struct hda_codec *codec, int force) | |||
10657 | unsigned int mute; | 10625 | unsigned int mute; |
10658 | 10626 | ||
10659 | if (force || !spec->sense_updated) { | 10627 | if (force || !spec->sense_updated) { |
10660 | unsigned int present_int_hp; | 10628 | spec->jack_present = snd_hda_jack_detect(codec, 0x1b); |
10661 | /* need to execute and sync at first */ | ||
10662 | snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0); | ||
10663 | present_int_hp = snd_hda_codec_read(codec, 0x1b, 0, | ||
10664 | AC_VERB_GET_PIN_SENSE, 0); | ||
10665 | spec->jack_present = (present_int_hp & 0x80000000) != 0; | ||
10666 | spec->sense_updated = 1; | 10629 | spec->sense_updated = 1; |
10667 | } | 10630 | } |
10668 | if (spec->jack_present) { | 10631 | if (spec->jack_present) { |
@@ -10854,12 +10817,7 @@ static void alc262_ultra_automute(struct hda_codec *codec) | |||
10854 | mute = 0; | 10817 | mute = 0; |
10855 | /* auto-mute only when HP is used as HP */ | 10818 | /* auto-mute only when HP is used as HP */ |
10856 | if (!spec->cur_mux[0]) { | 10819 | if (!spec->cur_mux[0]) { |
10857 | unsigned int present; | 10820 | spec->jack_present = snd_hda_jack_detect(codec, 0x15); |
10858 | /* need to execute and sync at first */ | ||
10859 | snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0); | ||
10860 | present = snd_hda_codec_read(codec, 0x15, 0, | ||
10861 | AC_VERB_GET_PIN_SENSE, 0); | ||
10862 | spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0; | ||
10863 | if (spec->jack_present) | 10821 | if (spec->jack_present) |
10864 | mute = HDA_AMP_MUTE; | 10822 | mute = HDA_AMP_MUTE; |
10865 | } | 10823 | } |
@@ -10936,7 +10894,6 @@ static int alc262_check_volbit(hda_nid_t nid) | |||
10936 | static int alc262_add_out_vol_ctl(struct alc_spec *spec, hda_nid_t nid, | 10894 | static int alc262_add_out_vol_ctl(struct alc_spec *spec, hda_nid_t nid, |
10937 | const char *pfx, int *vbits) | 10895 | const char *pfx, int *vbits) |
10938 | { | 10896 | { |
10939 | char name[32]; | ||
10940 | unsigned long val; | 10897 | unsigned long val; |
10941 | int vbit; | 10898 | int vbit; |
10942 | 10899 | ||
@@ -10946,28 +10903,25 @@ static int alc262_add_out_vol_ctl(struct alc_spec *spec, hda_nid_t nid, | |||
10946 | if (*vbits & vbit) /* a volume control for this mixer already there */ | 10903 | if (*vbits & vbit) /* a volume control for this mixer already there */ |
10947 | return 0; | 10904 | return 0; |
10948 | *vbits |= vbit; | 10905 | *vbits |= vbit; |
10949 | snprintf(name, sizeof(name), "%s Playback Volume", pfx); | ||
10950 | if (vbit == 2) | 10906 | if (vbit == 2) |
10951 | val = HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT); | 10907 | val = HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT); |
10952 | else | 10908 | else |
10953 | val = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT); | 10909 | val = HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT); |
10954 | return add_control(spec, ALC_CTL_WIDGET_VOL, name, val); | 10910 | return add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, pfx, val); |
10955 | } | 10911 | } |
10956 | 10912 | ||
10957 | static int alc262_add_out_sw_ctl(struct alc_spec *spec, hda_nid_t nid, | 10913 | static int alc262_add_out_sw_ctl(struct alc_spec *spec, hda_nid_t nid, |
10958 | const char *pfx) | 10914 | const char *pfx) |
10959 | { | 10915 | { |
10960 | char name[32]; | ||
10961 | unsigned long val; | 10916 | unsigned long val; |
10962 | 10917 | ||
10963 | if (!nid) | 10918 | if (!nid) |
10964 | return 0; | 10919 | return 0; |
10965 | snprintf(name, sizeof(name), "%s Playback Switch", pfx); | ||
10966 | if (nid == 0x16) | 10920 | if (nid == 0x16) |
10967 | val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT); | 10921 | val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT); |
10968 | else | 10922 | else |
10969 | val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT); | 10923 | val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT); |
10970 | return add_control(spec, ALC_CTL_WIDGET_MUTE, name, val); | 10924 | return add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, val); |
10971 | } | 10925 | } |
10972 | 10926 | ||
10973 | /* add playback controls from the parsed DAC table */ | 10927 | /* add playback controls from the parsed DAC table */ |
@@ -11441,8 +11395,12 @@ static struct snd_pci_quirk alc262_cfg_tbl[] = { | |||
11441 | SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD), | 11395 | SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD), |
11442 | SND_PCI_QUIRK(0x104d, 0x9016, "Sony VAIO", ALC262_AUTO), /* dig-only */ | 11396 | SND_PCI_QUIRK(0x104d, 0x9016, "Sony VAIO", ALC262_AUTO), /* dig-only */ |
11443 | SND_PCI_QUIRK(0x104d, 0x9025, "Sony VAIO Z21MN", ALC262_TOSHIBA_S06), | 11397 | SND_PCI_QUIRK(0x104d, 0x9025, "Sony VAIO Z21MN", ALC262_TOSHIBA_S06), |
11398 | SND_PCI_QUIRK(0x104d, 0x9035, "Sony VAIO VGN-FW170J", ALC262_AUTO), | ||
11399 | SND_PCI_QUIRK(0x104d, 0x9047, "Sony VAIO Type G", ALC262_AUTO), | ||
11400 | #if 0 /* disable the quirk since model=auto works better in recent versions */ | ||
11444 | SND_PCI_QUIRK_MASK(0x104d, 0xff00, 0x9000, "Sony VAIO", | 11401 | SND_PCI_QUIRK_MASK(0x104d, 0xff00, 0x9000, "Sony VAIO", |
11445 | ALC262_SONY_ASSAMD), | 11402 | ALC262_SONY_ASSAMD), |
11403 | #endif | ||
11446 | SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1", | 11404 | SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1", |
11447 | ALC262_TOSHIBA_RX1), | 11405 | ALC262_TOSHIBA_RX1), |
11448 | SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06), | 11406 | SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06), |
@@ -11901,10 +11859,7 @@ static void alc268_acer_automute(struct hda_codec *codec, int force) | |||
11901 | unsigned int mute; | 11859 | unsigned int mute; |
11902 | 11860 | ||
11903 | if (force || !spec->sense_updated) { | 11861 | if (force || !spec->sense_updated) { |
11904 | unsigned int present; | 11862 | spec->jack_present = snd_hda_jack_detect(codec, 0x14); |
11905 | present = snd_hda_codec_read(codec, 0x14, 0, | ||
11906 | AC_VERB_GET_PIN_SENSE, 0); | ||
11907 | spec->jack_present = (present & 0x80000000) != 0; | ||
11908 | spec->sense_updated = 1; | 11863 | spec->sense_updated = 1; |
11909 | } | 11864 | } |
11910 | if (spec->jack_present) | 11865 | if (spec->jack_present) |
@@ -12023,8 +11978,7 @@ static void alc268_aspire_one_speaker_automute(struct hda_codec *codec) | |||
12023 | unsigned int present; | 11978 | unsigned int present; |
12024 | unsigned char bits; | 11979 | unsigned char bits; |
12025 | 11980 | ||
12026 | present = snd_hda_codec_read(codec, 0x15, 0, | 11981 | present = snd_hda_jack_detect(codec, 0x15); |
12027 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
12028 | bits = present ? AMP_IN_MUTE(0) : 0; | 11982 | bits = present ? AMP_IN_MUTE(0) : 0; |
12029 | snd_hda_codec_amp_stereo(codec, 0x0f, HDA_INPUT, 0, | 11983 | snd_hda_codec_amp_stereo(codec, 0x0f, HDA_INPUT, 0, |
12030 | AMP_IN_MUTE(0), bits); | 11984 | AMP_IN_MUTE(0), bits); |
@@ -12305,11 +12259,9 @@ static struct snd_kcontrol_new alc268_test_mixer[] = { | |||
12305 | static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid, | 12259 | static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid, |
12306 | const char *ctlname, int idx) | 12260 | const char *ctlname, int idx) |
12307 | { | 12261 | { |
12308 | char name[32]; | ||
12309 | hda_nid_t dac; | 12262 | hda_nid_t dac; |
12310 | int err; | 12263 | int err; |
12311 | 12264 | ||
12312 | sprintf(name, "%s Playback Volume", ctlname); | ||
12313 | switch (nid) { | 12265 | switch (nid) { |
12314 | case 0x14: | 12266 | case 0x14: |
12315 | case 0x16: | 12267 | case 0x16: |
@@ -12323,7 +12275,7 @@ static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid, | |||
12323 | } | 12275 | } |
12324 | if (spec->multiout.dac_nids[0] != dac && | 12276 | if (spec->multiout.dac_nids[0] != dac && |
12325 | spec->multiout.dac_nids[1] != dac) { | 12277 | spec->multiout.dac_nids[1] != dac) { |
12326 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | 12278 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, |
12327 | HDA_COMPOSE_AMP_VAL(dac, 3, idx, | 12279 | HDA_COMPOSE_AMP_VAL(dac, 3, idx, |
12328 | HDA_OUTPUT)); | 12280 | HDA_OUTPUT)); |
12329 | if (err < 0) | 12281 | if (err < 0) |
@@ -12331,12 +12283,11 @@ static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid, | |||
12331 | spec->multiout.dac_nids[spec->multiout.num_dacs++] = dac; | 12283 | spec->multiout.dac_nids[spec->multiout.num_dacs++] = dac; |
12332 | } | 12284 | } |
12333 | 12285 | ||
12334 | sprintf(name, "%s Playback Switch", ctlname); | ||
12335 | if (nid != 0x16) | 12286 | if (nid != 0x16) |
12336 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | 12287 | err = add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, |
12337 | HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT)); | 12288 | HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT)); |
12338 | else /* mono */ | 12289 | else /* mono */ |
12339 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | 12290 | err = add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, |
12340 | HDA_COMPOSE_AMP_VAL(nid, 2, idx, HDA_OUTPUT)); | 12291 | HDA_COMPOSE_AMP_VAL(nid, 2, idx, HDA_OUTPUT)); |
12341 | if (err < 0) | 12292 | if (err < 0) |
12342 | return err; | 12293 | return err; |
@@ -12366,8 +12317,7 @@ static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
12366 | 12317 | ||
12367 | nid = cfg->speaker_pins[0]; | 12318 | nid = cfg->speaker_pins[0]; |
12368 | if (nid == 0x1d) { | 12319 | if (nid == 0x1d) { |
12369 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 12320 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, "Speaker", |
12370 | "Speaker Playback Volume", | ||
12371 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT)); | 12321 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT)); |
12372 | if (err < 0) | 12322 | if (err < 0) |
12373 | return err; | 12323 | return err; |
@@ -12385,8 +12335,7 @@ static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
12385 | 12335 | ||
12386 | nid = cfg->line_out_pins[1] | cfg->line_out_pins[2]; | 12336 | nid = cfg->line_out_pins[1] | cfg->line_out_pins[2]; |
12387 | if (nid == 0x16) { | 12337 | if (nid == 0x16) { |
12388 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, | 12338 | err = add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, "Mono", |
12389 | "Mono Playback Switch", | ||
12390 | HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT)); | 12339 | HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT)); |
12391 | if (err < 0) | 12340 | if (err < 0) |
12392 | return err; | 12341 | return err; |
@@ -12585,7 +12534,8 @@ static struct snd_pci_quirk alc268_cfg_tbl[] = { | |||
12585 | SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One", | 12534 | SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One", |
12586 | ALC268_ACER_ASPIRE_ONE), | 12535 | ALC268_ACER_ASPIRE_ONE), |
12587 | SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL), | 12536 | SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL), |
12588 | SND_PCI_QUIRK(0x1028, 0x02b0, "Dell Inspiron Mini9", ALC268_DELL), | 12537 | SND_PCI_QUIRK_MASK(0x1028, 0xfff0, 0x02b0, |
12538 | "Dell Inspiron Mini9/Vostro A90", ALC268_DELL), | ||
12589 | /* almost compatible with toshiba but with optional digital outs; | 12539 | /* almost compatible with toshiba but with optional digital outs; |
12590 | * auto-probing seems working fine | 12540 | * auto-probing seems working fine |
12591 | */ | 12541 | */ |
@@ -12660,7 +12610,7 @@ static struct alc_config_preset alc268_presets[] = { | |||
12660 | .init_hook = alc268_toshiba_automute, | 12610 | .init_hook = alc268_toshiba_automute, |
12661 | }, | 12611 | }, |
12662 | [ALC268_ACER] = { | 12612 | [ALC268_ACER] = { |
12663 | .mixers = { alc268_acer_mixer, alc268_capture_nosrc_mixer, | 12613 | .mixers = { alc268_acer_mixer, alc268_capture_alt_mixer, |
12664 | alc268_beep_mixer }, | 12614 | alc268_beep_mixer }, |
12665 | .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs, | 12615 | .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs, |
12666 | alc268_acer_verbs }, | 12616 | alc268_acer_verbs }, |
@@ -12842,12 +12792,15 @@ static int patch_alc268(struct hda_codec *codec) | |||
12842 | unsigned int wcap = get_wcaps(codec, 0x07); | 12792 | unsigned int wcap = get_wcaps(codec, 0x07); |
12843 | int i; | 12793 | int i; |
12844 | 12794 | ||
12795 | spec->capsrc_nids = alc268_capsrc_nids; | ||
12845 | /* get type */ | 12796 | /* get type */ |
12846 | wcap = get_wcaps_type(wcap); | 12797 | wcap = get_wcaps_type(wcap); |
12847 | if (spec->auto_mic || | 12798 | if (spec->auto_mic || |
12848 | wcap != AC_WID_AUD_IN || spec->input_mux->num_items == 1) { | 12799 | wcap != AC_WID_AUD_IN || spec->input_mux->num_items == 1) { |
12849 | spec->adc_nids = alc268_adc_nids_alt; | 12800 | spec->adc_nids = alc268_adc_nids_alt; |
12850 | spec->num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt); | 12801 | spec->num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt); |
12802 | if (spec->auto_mic) | ||
12803 | fixup_automic_adc(codec); | ||
12851 | if (spec->auto_mic || spec->input_mux->num_items == 1) | 12804 | if (spec->auto_mic || spec->input_mux->num_items == 1) |
12852 | add_mixer(spec, alc268_capture_nosrc_mixer); | 12805 | add_mixer(spec, alc268_capture_nosrc_mixer); |
12853 | else | 12806 | else |
@@ -12857,7 +12810,6 @@ static int patch_alc268(struct hda_codec *codec) | |||
12857 | spec->num_adc_nids = ARRAY_SIZE(alc268_adc_nids); | 12810 | spec->num_adc_nids = ARRAY_SIZE(alc268_adc_nids); |
12858 | add_mixer(spec, alc268_capture_mixer); | 12811 | add_mixer(spec, alc268_capture_mixer); |
12859 | } | 12812 | } |
12860 | spec->capsrc_nids = alc268_capsrc_nids; | ||
12861 | /* set default input source */ | 12813 | /* set default input source */ |
12862 | for (i = 0; i < spec->num_adc_nids; i++) | 12814 | for (i = 0; i < spec->num_adc_nids; i++) |
12863 | snd_hda_codec_write_cache(codec, alc268_capsrc_nids[i], | 12815 | snd_hda_codec_write_cache(codec, alc268_capsrc_nids[i], |
@@ -13009,8 +12961,7 @@ static void alc269_quanta_fl1_speaker_automute(struct hda_codec *codec) | |||
13009 | unsigned int present; | 12961 | unsigned int present; |
13010 | unsigned char bits; | 12962 | unsigned char bits; |
13011 | 12963 | ||
13012 | present = snd_hda_codec_read(codec, 0x15, 0, | 12964 | present = snd_hda_jack_detect(codec, 0x15); |
13013 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
13014 | bits = present ? AMP_IN_MUTE(0) : 0; | 12965 | bits = present ? AMP_IN_MUTE(0) : 0; |
13015 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, | 12966 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, |
13016 | AMP_IN_MUTE(0), bits); | 12967 | AMP_IN_MUTE(0), bits); |
@@ -13035,12 +12986,10 @@ static void alc269_lifebook_speaker_automute(struct hda_codec *codec) | |||
13035 | unsigned char bits; | 12986 | unsigned char bits; |
13036 | 12987 | ||
13037 | /* Check laptop headphone socket */ | 12988 | /* Check laptop headphone socket */ |
13038 | present = snd_hda_codec_read(codec, 0x15, 0, | 12989 | present = snd_hda_jack_detect(codec, 0x15); |
13039 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
13040 | 12990 | ||
13041 | /* Check port replicator headphone socket */ | 12991 | /* Check port replicator headphone socket */ |
13042 | present |= snd_hda_codec_read(codec, 0x1a, 0, | 12992 | present |= snd_hda_jack_detect(codec, 0x1a); |
13043 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
13044 | 12993 | ||
13045 | bits = present ? AMP_IN_MUTE(0) : 0; | 12994 | bits = present ? AMP_IN_MUTE(0) : 0; |
13046 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, | 12995 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, |
@@ -13064,11 +13013,8 @@ static void alc269_lifebook_mic_autoswitch(struct hda_codec *codec) | |||
13064 | unsigned int present_laptop; | 13013 | unsigned int present_laptop; |
13065 | unsigned int present_dock; | 13014 | unsigned int present_dock; |
13066 | 13015 | ||
13067 | present_laptop = snd_hda_codec_read(codec, 0x18, 0, | 13016 | present_laptop = snd_hda_jack_detect(codec, 0x18); |
13068 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | 13017 | present_dock = snd_hda_jack_detect(codec, 0x1b); |
13069 | |||
13070 | present_dock = snd_hda_codec_read(codec, 0x1b, 0, | ||
13071 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
13072 | 13018 | ||
13073 | /* Laptop mic port overrides dock mic port, design decision */ | 13019 | /* Laptop mic port overrides dock mic port, design decision */ |
13074 | if (present_dock) | 13020 | if (present_dock) |
@@ -13153,8 +13099,7 @@ static void alc269_speaker_automute(struct hda_codec *codec) | |||
13153 | unsigned int present; | 13099 | unsigned int present; |
13154 | unsigned char bits; | 13100 | unsigned char bits; |
13155 | 13101 | ||
13156 | present = snd_hda_codec_read(codec, 0x15, 0, | 13102 | present = snd_hda_jack_detect(codec, 0x15); |
13157 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
13158 | bits = present ? AMP_IN_MUTE(0) : 0; | 13103 | bits = present ? AMP_IN_MUTE(0) : 0; |
13159 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, | 13104 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, |
13160 | AMP_IN_MUTE(0), bits); | 13105 | AMP_IN_MUTE(0), bits); |
@@ -14132,10 +14077,8 @@ static struct hda_verb alc861_toshiba_init_verbs[] = { | |||
14132 | /* toggle speaker-output according to the hp-jack state */ | 14077 | /* toggle speaker-output according to the hp-jack state */ |
14133 | static void alc861_toshiba_automute(struct hda_codec *codec) | 14078 | static void alc861_toshiba_automute(struct hda_codec *codec) |
14134 | { | 14079 | { |
14135 | unsigned int present; | 14080 | unsigned int present = snd_hda_jack_detect(codec, 0x0f); |
14136 | 14081 | ||
14137 | present = snd_hda_codec_read(codec, 0x0f, 0, | ||
14138 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
14139 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_INPUT, 0, | 14082 | snd_hda_codec_amp_stereo(codec, 0x16, HDA_INPUT, 0, |
14140 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | 14083 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); |
14141 | snd_hda_codec_amp_stereo(codec, 0x1a, HDA_INPUT, 3, | 14084 | snd_hda_codec_amp_stereo(codec, 0x1a, HDA_INPUT, 3, |
@@ -14235,9 +14178,7 @@ static int alc861_auto_fill_dac_nids(struct hda_codec *codec, | |||
14235 | static int alc861_create_out_sw(struct hda_codec *codec, const char *pfx, | 14178 | static int alc861_create_out_sw(struct hda_codec *codec, const char *pfx, |
14236 | hda_nid_t nid, unsigned int chs) | 14179 | hda_nid_t nid, unsigned int chs) |
14237 | { | 14180 | { |
14238 | char name[32]; | 14181 | return add_pb_sw_ctrl(codec->spec, ALC_CTL_WIDGET_MUTE, pfx, |
14239 | snprintf(name, sizeof(name), "%s Playback Switch", pfx); | ||
14240 | return add_control(codec->spec, ALC_CTL_WIDGET_MUTE, name, | ||
14241 | HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT)); | 14182 | HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT)); |
14242 | } | 14183 | } |
14243 | 14184 | ||
@@ -14357,15 +14298,16 @@ static void alc861_auto_init_multi_out(struct hda_codec *codec) | |||
14357 | static void alc861_auto_init_hp_out(struct hda_codec *codec) | 14298 | static void alc861_auto_init_hp_out(struct hda_codec *codec) |
14358 | { | 14299 | { |
14359 | struct alc_spec *spec = codec->spec; | 14300 | struct alc_spec *spec = codec->spec; |
14360 | hda_nid_t pin; | ||
14361 | 14301 | ||
14362 | pin = spec->autocfg.hp_pins[0]; | 14302 | if (spec->autocfg.hp_outs) |
14363 | if (pin) | 14303 | alc861_auto_set_output_and_unmute(codec, |
14364 | alc861_auto_set_output_and_unmute(codec, pin, PIN_HP, | 14304 | spec->autocfg.hp_pins[0], |
14305 | PIN_HP, | ||
14365 | spec->multiout.hp_nid); | 14306 | spec->multiout.hp_nid); |
14366 | pin = spec->autocfg.speaker_pins[0]; | 14307 | if (spec->autocfg.speaker_outs) |
14367 | if (pin) | 14308 | alc861_auto_set_output_and_unmute(codec, |
14368 | alc861_auto_set_output_and_unmute(codec, pin, PIN_OUT, | 14309 | spec->autocfg.speaker_pins[0], |
14310 | PIN_OUT, | ||
14369 | spec->multiout.dac_nids[0]); | 14311 | spec->multiout.dac_nids[0]); |
14370 | } | 14312 | } |
14371 | 14313 | ||
@@ -14601,6 +14543,27 @@ static struct alc_config_preset alc861_presets[] = { | |||
14601 | }, | 14543 | }, |
14602 | }; | 14544 | }; |
14603 | 14545 | ||
14546 | /* Pin config fixes */ | ||
14547 | enum { | ||
14548 | PINFIX_FSC_AMILO_PI1505, | ||
14549 | }; | ||
14550 | |||
14551 | static struct alc_pincfg alc861_fsc_amilo_pi1505_pinfix[] = { | ||
14552 | { 0x0b, 0x0221101f }, /* HP */ | ||
14553 | { 0x0f, 0x90170310 }, /* speaker */ | ||
14554 | { } | ||
14555 | }; | ||
14556 | |||
14557 | static const struct alc_fixup alc861_fixups[] = { | ||
14558 | [PINFIX_FSC_AMILO_PI1505] = { | ||
14559 | .pins = alc861_fsc_amilo_pi1505_pinfix | ||
14560 | }, | ||
14561 | }; | ||
14562 | |||
14563 | static struct snd_pci_quirk alc861_fixup_tbl[] = { | ||
14564 | SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505), | ||
14565 | {} | ||
14566 | }; | ||
14604 | 14567 | ||
14605 | static int patch_alc861(struct hda_codec *codec) | 14568 | static int patch_alc861(struct hda_codec *codec) |
14606 | { | 14569 | { |
@@ -14624,6 +14587,8 @@ static int patch_alc861(struct hda_codec *codec) | |||
14624 | board_config = ALC861_AUTO; | 14587 | board_config = ALC861_AUTO; |
14625 | } | 14588 | } |
14626 | 14589 | ||
14590 | alc_pick_fixup(codec, alc861_fixup_tbl, alc861_fixups); | ||
14591 | |||
14627 | if (board_config == ALC861_AUTO) { | 14592 | if (board_config == ALC861_AUTO) { |
14628 | /* automatic parse from the BIOS config */ | 14593 | /* automatic parse from the BIOS config */ |
14629 | err = alc861_parse_auto_config(codec); | 14594 | err = alc861_parse_auto_config(codec); |
@@ -15041,9 +15006,9 @@ static void alc861vd_lenovo_mic_automute(struct hda_codec *codec) | |||
15041 | unsigned int present; | 15006 | unsigned int present; |
15042 | unsigned char bits; | 15007 | unsigned char bits; |
15043 | 15008 | ||
15044 | present = snd_hda_codec_read(codec, 0x18, 0, | 15009 | present = snd_hda_jack_detect(codec, 0x18); |
15045 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
15046 | bits = present ? HDA_AMP_MUTE : 0; | 15010 | bits = present ? HDA_AMP_MUTE : 0; |
15011 | |||
15047 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, | 15012 | snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, |
15048 | HDA_AMP_MUTE, bits); | 15013 | HDA_AMP_MUTE, bits); |
15049 | } | 15014 | } |
@@ -15158,7 +15123,7 @@ static struct snd_pci_quirk alc861vd_cfg_tbl[] = { | |||
15158 | SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST), | 15123 | SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST), |
15159 | SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP), | 15124 | SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP), |
15160 | SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST), | 15125 | SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST), |
15161 | SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST), | 15126 | /*SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),*/ /* auto */ |
15162 | SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC660VD_ASUS_V1S), | 15127 | SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC660VD_ASUS_V1S), |
15163 | SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG), | 15128 | SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG), |
15164 | SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST), | 15129 | SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST), |
@@ -15360,7 +15325,6 @@ static void alc861vd_auto_init_analog_input(struct hda_codec *codec) | |||
15360 | static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec, | 15325 | static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec, |
15361 | const struct auto_pin_cfg *cfg) | 15326 | const struct auto_pin_cfg *cfg) |
15362 | { | 15327 | { |
15363 | char name[32]; | ||
15364 | static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"}; | 15328 | static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"}; |
15365 | hda_nid_t nid_v, nid_s; | 15329 | hda_nid_t nid_v, nid_s; |
15366 | int i, err; | 15330 | int i, err; |
@@ -15377,26 +15341,26 @@ static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
15377 | 15341 | ||
15378 | if (i == 2) { | 15342 | if (i == 2) { |
15379 | /* Center/LFE */ | 15343 | /* Center/LFE */ |
15380 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 15344 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, |
15381 | "Center Playback Volume", | 15345 | "Center", |
15382 | HDA_COMPOSE_AMP_VAL(nid_v, 1, 0, | 15346 | HDA_COMPOSE_AMP_VAL(nid_v, 1, 0, |
15383 | HDA_OUTPUT)); | 15347 | HDA_OUTPUT)); |
15384 | if (err < 0) | 15348 | if (err < 0) |
15385 | return err; | 15349 | return err; |
15386 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 15350 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, |
15387 | "LFE Playback Volume", | 15351 | "LFE", |
15388 | HDA_COMPOSE_AMP_VAL(nid_v, 2, 0, | 15352 | HDA_COMPOSE_AMP_VAL(nid_v, 2, 0, |
15389 | HDA_OUTPUT)); | 15353 | HDA_OUTPUT)); |
15390 | if (err < 0) | 15354 | if (err < 0) |
15391 | return err; | 15355 | return err; |
15392 | err = add_control(spec, ALC_CTL_BIND_MUTE, | 15356 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, |
15393 | "Center Playback Switch", | 15357 | "Center", |
15394 | HDA_COMPOSE_AMP_VAL(nid_s, 1, 2, | 15358 | HDA_COMPOSE_AMP_VAL(nid_s, 1, 2, |
15395 | HDA_INPUT)); | 15359 | HDA_INPUT)); |
15396 | if (err < 0) | 15360 | if (err < 0) |
15397 | return err; | 15361 | return err; |
15398 | err = add_control(spec, ALC_CTL_BIND_MUTE, | 15362 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, |
15399 | "LFE Playback Switch", | 15363 | "LFE", |
15400 | HDA_COMPOSE_AMP_VAL(nid_s, 2, 2, | 15364 | HDA_COMPOSE_AMP_VAL(nid_s, 2, 2, |
15401 | HDA_INPUT)); | 15365 | HDA_INPUT)); |
15402 | if (err < 0) | 15366 | if (err < 0) |
@@ -15411,8 +15375,7 @@ static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
15411 | pfx = "PCM"; | 15375 | pfx = "PCM"; |
15412 | } else | 15376 | } else |
15413 | pfx = chname[i]; | 15377 | pfx = chname[i]; |
15414 | sprintf(name, "%s Playback Volume", pfx); | 15378 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, pfx, |
15415 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | ||
15416 | HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, | 15379 | HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, |
15417 | HDA_OUTPUT)); | 15380 | HDA_OUTPUT)); |
15418 | if (err < 0) | 15381 | if (err < 0) |
@@ -15420,8 +15383,7 @@ static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
15420 | if (cfg->line_outs == 1 && | 15383 | if (cfg->line_outs == 1 && |
15421 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) | 15384 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) |
15422 | pfx = "Speaker"; | 15385 | pfx = "Speaker"; |
15423 | sprintf(name, "%s Playback Switch", pfx); | 15386 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, pfx, |
15424 | err = add_control(spec, ALC_CTL_BIND_MUTE, name, | ||
15425 | HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, | 15387 | HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, |
15426 | HDA_INPUT)); | 15388 | HDA_INPUT)); |
15427 | if (err < 0) | 15389 | if (err < 0) |
@@ -15439,7 +15401,6 @@ static int alc861vd_auto_create_extra_out(struct alc_spec *spec, | |||
15439 | { | 15401 | { |
15440 | hda_nid_t nid_v, nid_s; | 15402 | hda_nid_t nid_v, nid_s; |
15441 | int err; | 15403 | int err; |
15442 | char name[32]; | ||
15443 | 15404 | ||
15444 | if (!pin) | 15405 | if (!pin) |
15445 | return 0; | 15406 | return 0; |
@@ -15457,21 +15418,18 @@ static int alc861vd_auto_create_extra_out(struct alc_spec *spec, | |||
15457 | nid_s = alc861vd_idx_to_mixer_switch( | 15418 | nid_s = alc861vd_idx_to_mixer_switch( |
15458 | alc880_fixed_pin_idx(pin)); | 15419 | alc880_fixed_pin_idx(pin)); |
15459 | 15420 | ||
15460 | sprintf(name, "%s Playback Volume", pfx); | 15421 | err = add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, pfx, |
15461 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | ||
15462 | HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT)); | 15422 | HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT)); |
15463 | if (err < 0) | 15423 | if (err < 0) |
15464 | return err; | 15424 | return err; |
15465 | sprintf(name, "%s Playback Switch", pfx); | 15425 | err = add_pb_sw_ctrl(spec, ALC_CTL_BIND_MUTE, pfx, |
15466 | err = add_control(spec, ALC_CTL_BIND_MUTE, name, | ||
15467 | HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT)); | 15426 | HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT)); |
15468 | if (err < 0) | 15427 | if (err < 0) |
15469 | return err; | 15428 | return err; |
15470 | } else if (alc880_is_multi_pin(pin)) { | 15429 | } else if (alc880_is_multi_pin(pin)) { |
15471 | /* set manual connection */ | 15430 | /* set manual connection */ |
15472 | /* we have only a switch on HP-out PIN */ | 15431 | /* we have only a switch on HP-out PIN */ |
15473 | sprintf(name, "%s Playback Switch", pfx); | 15432 | err = add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, |
15474 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | ||
15475 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); | 15433 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); |
15476 | if (err < 0) | 15434 | if (err < 0) |
15477 | return err; | 15435 | return err; |
@@ -15551,6 +15509,29 @@ static void alc861vd_auto_init(struct hda_codec *codec) | |||
15551 | alc_inithook(codec); | 15509 | alc_inithook(codec); |
15552 | } | 15510 | } |
15553 | 15511 | ||
15512 | enum { | ||
15513 | ALC660VD_FIX_ASUS_GPIO1 | ||
15514 | }; | ||
15515 | |||
15516 | /* reset GPIO1 */ | ||
15517 | static const struct hda_verb alc660vd_fix_asus_gpio1_verbs[] = { | ||
15518 | {0x01, AC_VERB_SET_GPIO_MASK, 0x03}, | ||
15519 | {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01}, | ||
15520 | {0x01, AC_VERB_SET_GPIO_DATA, 0x01}, | ||
15521 | { } | ||
15522 | }; | ||
15523 | |||
15524 | static const struct alc_fixup alc861vd_fixups[] = { | ||
15525 | [ALC660VD_FIX_ASUS_GPIO1] = { | ||
15526 | .verbs = alc660vd_fix_asus_gpio1_verbs, | ||
15527 | }, | ||
15528 | }; | ||
15529 | |||
15530 | static struct snd_pci_quirk alc861vd_fixup_tbl[] = { | ||
15531 | SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1), | ||
15532 | {} | ||
15533 | }; | ||
15534 | |||
15554 | static int patch_alc861vd(struct hda_codec *codec) | 15535 | static int patch_alc861vd(struct hda_codec *codec) |
15555 | { | 15536 | { |
15556 | struct alc_spec *spec; | 15537 | struct alc_spec *spec; |
@@ -15572,6 +15553,8 @@ static int patch_alc861vd(struct hda_codec *codec) | |||
15572 | board_config = ALC861VD_AUTO; | 15553 | board_config = ALC861VD_AUTO; |
15573 | } | 15554 | } |
15574 | 15555 | ||
15556 | alc_pick_fixup(codec, alc861vd_fixup_tbl, alc861vd_fixups); | ||
15557 | |||
15575 | if (board_config == ALC861VD_AUTO) { | 15558 | if (board_config == ALC861VD_AUTO) { |
15576 | /* automatic parse from the BIOS config */ | 15559 | /* automatic parse from the BIOS config */ |
15577 | err = alc861vd_parse_auto_config(codec); | 15560 | err = alc861vd_parse_auto_config(codec); |
@@ -16336,9 +16319,9 @@ static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec) | |||
16336 | unsigned int present; | 16319 | unsigned int present; |
16337 | unsigned char bits; | 16320 | unsigned char bits; |
16338 | 16321 | ||
16339 | present = snd_hda_codec_read(codec, 0x14, 0, | 16322 | present = snd_hda_jack_detect(codec, 0x14); |
16340 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
16341 | bits = present ? HDA_AMP_MUTE : 0; | 16323 | bits = present ? HDA_AMP_MUTE : 0; |
16324 | |||
16342 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, | 16325 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, |
16343 | HDA_AMP_MUTE, bits); | 16326 | HDA_AMP_MUTE, bits); |
16344 | } | 16327 | } |
@@ -16348,9 +16331,9 @@ static void alc662_lenovo_101e_all_automute(struct hda_codec *codec) | |||
16348 | unsigned int present; | 16331 | unsigned int present; |
16349 | unsigned char bits; | 16332 | unsigned char bits; |
16350 | 16333 | ||
16351 | present = snd_hda_codec_read(codec, 0x1b, 0, | 16334 | present = snd_hda_jack_detect(codec, 0x1b); |
16352 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | ||
16353 | bits = present ? HDA_AMP_MUTE : 0; | 16335 | bits = present ? HDA_AMP_MUTE : 0; |
16336 | |||
16354 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, | 16337 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, |
16355 | HDA_AMP_MUTE, bits); | 16338 | HDA_AMP_MUTE, bits); |
16356 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, | 16339 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, |
@@ -16409,9 +16392,7 @@ static void alc663_m51va_speaker_automute(struct hda_codec *codec) | |||
16409 | unsigned int present; | 16392 | unsigned int present; |
16410 | unsigned char bits; | 16393 | unsigned char bits; |
16411 | 16394 | ||
16412 | present = snd_hda_codec_read(codec, 0x21, 0, | 16395 | present = snd_hda_jack_detect(codec, 0x21); |
16413 | AC_VERB_GET_PIN_SENSE, 0) | ||
16414 | & AC_PINSENSE_PRESENCE; | ||
16415 | bits = present ? HDA_AMP_MUTE : 0; | 16396 | bits = present ? HDA_AMP_MUTE : 0; |
16416 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, | 16397 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, |
16417 | AMP_IN_MUTE(0), bits); | 16398 | AMP_IN_MUTE(0), bits); |
@@ -16424,9 +16405,7 @@ static void alc663_21jd_two_speaker_automute(struct hda_codec *codec) | |||
16424 | unsigned int present; | 16405 | unsigned int present; |
16425 | unsigned char bits; | 16406 | unsigned char bits; |
16426 | 16407 | ||
16427 | present = snd_hda_codec_read(codec, 0x21, 0, | 16408 | present = snd_hda_jack_detect(codec, 0x21); |
16428 | AC_VERB_GET_PIN_SENSE, 0) | ||
16429 | & AC_PINSENSE_PRESENCE; | ||
16430 | bits = present ? HDA_AMP_MUTE : 0; | 16409 | bits = present ? HDA_AMP_MUTE : 0; |
16431 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, | 16410 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, |
16432 | AMP_IN_MUTE(0), bits); | 16411 | AMP_IN_MUTE(0), bits); |
@@ -16443,9 +16422,7 @@ static void alc663_15jd_two_speaker_automute(struct hda_codec *codec) | |||
16443 | unsigned int present; | 16422 | unsigned int present; |
16444 | unsigned char bits; | 16423 | unsigned char bits; |
16445 | 16424 | ||
16446 | present = snd_hda_codec_read(codec, 0x15, 0, | 16425 | present = snd_hda_jack_detect(codec, 0x15); |
16447 | AC_VERB_GET_PIN_SENSE, 0) | ||
16448 | & AC_PINSENSE_PRESENCE; | ||
16449 | bits = present ? HDA_AMP_MUTE : 0; | 16426 | bits = present ? HDA_AMP_MUTE : 0; |
16450 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, | 16427 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, |
16451 | AMP_IN_MUTE(0), bits); | 16428 | AMP_IN_MUTE(0), bits); |
@@ -16462,9 +16439,7 @@ static void alc662_f5z_speaker_automute(struct hda_codec *codec) | |||
16462 | unsigned int present; | 16439 | unsigned int present; |
16463 | unsigned char bits; | 16440 | unsigned char bits; |
16464 | 16441 | ||
16465 | present = snd_hda_codec_read(codec, 0x1b, 0, | 16442 | present = snd_hda_jack_detect(codec, 0x1b); |
16466 | AC_VERB_GET_PIN_SENSE, 0) | ||
16467 | & AC_PINSENSE_PRESENCE; | ||
16468 | bits = present ? 0 : PIN_OUT; | 16443 | bits = present ? 0 : PIN_OUT; |
16469 | snd_hda_codec_write(codec, 0x14, 0, | 16444 | snd_hda_codec_write(codec, 0x14, 0, |
16470 | AC_VERB_SET_PIN_WIDGET_CONTROL, bits); | 16445 | AC_VERB_SET_PIN_WIDGET_CONTROL, bits); |
@@ -16474,12 +16449,8 @@ static void alc663_two_hp_m1_speaker_automute(struct hda_codec *codec) | |||
16474 | { | 16449 | { |
16475 | unsigned int present1, present2; | 16450 | unsigned int present1, present2; |
16476 | 16451 | ||
16477 | present1 = snd_hda_codec_read(codec, 0x21, 0, | 16452 | present1 = snd_hda_jack_detect(codec, 0x21); |
16478 | AC_VERB_GET_PIN_SENSE, 0) | 16453 | present2 = snd_hda_jack_detect(codec, 0x15); |
16479 | & AC_PINSENSE_PRESENCE; | ||
16480 | present2 = snd_hda_codec_read(codec, 0x15, 0, | ||
16481 | AC_VERB_GET_PIN_SENSE, 0) | ||
16482 | & AC_PINSENSE_PRESENCE; | ||
16483 | 16454 | ||
16484 | if (present1 || present2) { | 16455 | if (present1 || present2) { |
16485 | snd_hda_codec_write_cache(codec, 0x14, 0, | 16456 | snd_hda_codec_write_cache(codec, 0x14, 0, |
@@ -16494,12 +16465,8 @@ static void alc663_two_hp_m2_speaker_automute(struct hda_codec *codec) | |||
16494 | { | 16465 | { |
16495 | unsigned int present1, present2; | 16466 | unsigned int present1, present2; |
16496 | 16467 | ||
16497 | present1 = snd_hda_codec_read(codec, 0x1b, 0, | 16468 | present1 = snd_hda_jack_detect(codec, 0x1b); |
16498 | AC_VERB_GET_PIN_SENSE, 0) | 16469 | present2 = snd_hda_jack_detect(codec, 0x15); |
16499 | & AC_PINSENSE_PRESENCE; | ||
16500 | present2 = snd_hda_codec_read(codec, 0x15, 0, | ||
16501 | AC_VERB_GET_PIN_SENSE, 0) | ||
16502 | & AC_PINSENSE_PRESENCE; | ||
16503 | 16470 | ||
16504 | if (present1 || present2) { | 16471 | if (present1 || present2) { |
16505 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, | 16472 | snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0, |
@@ -16659,9 +16626,7 @@ static void alc663_g71v_hp_automute(struct hda_codec *codec) | |||
16659 | unsigned int present; | 16626 | unsigned int present; |
16660 | unsigned char bits; | 16627 | unsigned char bits; |
16661 | 16628 | ||
16662 | present = snd_hda_codec_read(codec, 0x21, 0, | 16629 | present = snd_hda_jack_detect(codec, 0x21); |
16663 | AC_VERB_GET_PIN_SENSE, 0) | ||
16664 | & AC_PINSENSE_PRESENCE; | ||
16665 | bits = present ? HDA_AMP_MUTE : 0; | 16630 | bits = present ? HDA_AMP_MUTE : 0; |
16666 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, | 16631 | snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, |
16667 | HDA_AMP_MUTE, bits); | 16632 | HDA_AMP_MUTE, bits); |
@@ -16674,9 +16639,7 @@ static void alc663_g71v_front_automute(struct hda_codec *codec) | |||
16674 | unsigned int present; | 16639 | unsigned int present; |
16675 | unsigned char bits; | 16640 | unsigned char bits; |
16676 | 16641 | ||
16677 | present = snd_hda_codec_read(codec, 0x15, 0, | 16642 | present = snd_hda_jack_detect(codec, 0x15); |
16678 | AC_VERB_GET_PIN_SENSE, 0) | ||
16679 | & AC_PINSENSE_PRESENCE; | ||
16680 | bits = present ? HDA_AMP_MUTE : 0; | 16643 | bits = present ? HDA_AMP_MUTE : 0; |
16681 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, | 16644 | snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0, |
16682 | HDA_AMP_MUTE, bits); | 16645 | HDA_AMP_MUTE, bits); |
@@ -16852,6 +16815,7 @@ static struct snd_pci_quirk alc662_cfg_tbl[] = { | |||
16852 | SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS), | 16815 | SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS), |
16853 | SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K", | 16816 | SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K", |
16854 | ALC662_3ST_6ch_DIG), | 16817 | ALC662_3ST_6ch_DIG), |
16818 | SND_PCI_QUIRK(0x1179, 0xff6e, "Toshiba NB200", ALC663_ASUS_MODE4), | ||
16855 | SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10), | 16819 | SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10), |
16856 | SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L", | 16820 | SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L", |
16857 | ALC662_3ST_6ch_DIG), | 16821 | ALC662_3ST_6ch_DIG), |
@@ -17145,70 +17109,141 @@ static struct alc_config_preset alc662_presets[] = { | |||
17145 | * BIOS auto configuration | 17109 | * BIOS auto configuration |
17146 | */ | 17110 | */ |
17147 | 17111 | ||
17112 | /* convert from MIX nid to DAC */ | ||
17113 | static inline hda_nid_t alc662_mix_to_dac(hda_nid_t nid) | ||
17114 | { | ||
17115 | if (nid == 0x0f) | ||
17116 | return 0x02; | ||
17117 | else if (nid >= 0x0c && nid <= 0x0e) | ||
17118 | return nid - 0x0c + 0x02; | ||
17119 | else | ||
17120 | return 0; | ||
17121 | } | ||
17122 | |||
17123 | /* get MIX nid connected to the given pin targeted to DAC */ | ||
17124 | static hda_nid_t alc662_dac_to_mix(struct hda_codec *codec, hda_nid_t pin, | ||
17125 | hda_nid_t dac) | ||
17126 | { | ||
17127 | hda_nid_t mix[4]; | ||
17128 | int i, num; | ||
17129 | |||
17130 | num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix)); | ||
17131 | for (i = 0; i < num; i++) { | ||
17132 | if (alc662_mix_to_dac(mix[i]) == dac) | ||
17133 | return mix[i]; | ||
17134 | } | ||
17135 | return 0; | ||
17136 | } | ||
17137 | |||
17138 | /* look for an empty DAC slot */ | ||
17139 | static hda_nid_t alc662_look_for_dac(struct hda_codec *codec, hda_nid_t pin) | ||
17140 | { | ||
17141 | struct alc_spec *spec = codec->spec; | ||
17142 | hda_nid_t srcs[5]; | ||
17143 | int i, j, num; | ||
17144 | |||
17145 | num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs)); | ||
17146 | if (num < 0) | ||
17147 | return 0; | ||
17148 | for (i = 0; i < num; i++) { | ||
17149 | hda_nid_t nid = alc662_mix_to_dac(srcs[i]); | ||
17150 | if (!nid) | ||
17151 | continue; | ||
17152 | for (j = 0; j < spec->multiout.num_dacs; j++) | ||
17153 | if (spec->multiout.dac_nids[j] == nid) | ||
17154 | break; | ||
17155 | if (j >= spec->multiout.num_dacs) | ||
17156 | return nid; | ||
17157 | } | ||
17158 | return 0; | ||
17159 | } | ||
17160 | |||
17161 | /* fill in the dac_nids table from the parsed pin configuration */ | ||
17162 | static int alc662_auto_fill_dac_nids(struct hda_codec *codec, | ||
17163 | const struct auto_pin_cfg *cfg) | ||
17164 | { | ||
17165 | struct alc_spec *spec = codec->spec; | ||
17166 | int i; | ||
17167 | hda_nid_t dac; | ||
17168 | |||
17169 | spec->multiout.dac_nids = spec->private_dac_nids; | ||
17170 | for (i = 0; i < cfg->line_outs; i++) { | ||
17171 | dac = alc662_look_for_dac(codec, cfg->line_out_pins[i]); | ||
17172 | if (!dac) | ||
17173 | continue; | ||
17174 | spec->multiout.dac_nids[spec->multiout.num_dacs++] = dac; | ||
17175 | } | ||
17176 | return 0; | ||
17177 | } | ||
17178 | |||
17179 | static inline int alc662_add_vol_ctl(struct alc_spec *spec, const char *pfx, | ||
17180 | hda_nid_t nid, unsigned int chs) | ||
17181 | { | ||
17182 | return add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, pfx, | ||
17183 | HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT)); | ||
17184 | } | ||
17185 | |||
17186 | static inline int alc662_add_sw_ctl(struct alc_spec *spec, const char *pfx, | ||
17187 | hda_nid_t nid, unsigned int chs) | ||
17188 | { | ||
17189 | return add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, | ||
17190 | HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT)); | ||
17191 | } | ||
17192 | |||
17193 | #define alc662_add_stereo_vol(spec, pfx, nid) \ | ||
17194 | alc662_add_vol_ctl(spec, pfx, nid, 3) | ||
17195 | #define alc662_add_stereo_sw(spec, pfx, nid) \ | ||
17196 | alc662_add_sw_ctl(spec, pfx, nid, 3) | ||
17197 | |||
17148 | /* add playback controls from the parsed DAC table */ | 17198 | /* add playback controls from the parsed DAC table */ |
17149 | static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec, | 17199 | static int alc662_auto_create_multi_out_ctls(struct hda_codec *codec, |
17150 | const struct auto_pin_cfg *cfg) | 17200 | const struct auto_pin_cfg *cfg) |
17151 | { | 17201 | { |
17152 | char name[32]; | 17202 | struct alc_spec *spec = codec->spec; |
17153 | static const char *chname[4] = { | 17203 | static const char *chname[4] = { |
17154 | "Front", "Surround", NULL /*CLFE*/, "Side" | 17204 | "Front", "Surround", NULL /*CLFE*/, "Side" |
17155 | }; | 17205 | }; |
17156 | hda_nid_t nid; | 17206 | hda_nid_t nid, mix; |
17157 | int i, err; | 17207 | int i, err; |
17158 | 17208 | ||
17159 | for (i = 0; i < cfg->line_outs; i++) { | 17209 | for (i = 0; i < cfg->line_outs; i++) { |
17160 | if (!spec->multiout.dac_nids[i]) | 17210 | nid = spec->multiout.dac_nids[i]; |
17211 | if (!nid) | ||
17212 | continue; | ||
17213 | mix = alc662_dac_to_mix(codec, cfg->line_out_pins[i], nid); | ||
17214 | if (!mix) | ||
17161 | continue; | 17215 | continue; |
17162 | nid = alc880_idx_to_dac(i); | ||
17163 | if (i == 2) { | 17216 | if (i == 2) { |
17164 | /* Center/LFE */ | 17217 | /* Center/LFE */ |
17165 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 17218 | err = alc662_add_vol_ctl(spec, "Center", nid, 1); |
17166 | "Center Playback Volume", | ||
17167 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, | ||
17168 | HDA_OUTPUT)); | ||
17169 | if (err < 0) | 17219 | if (err < 0) |
17170 | return err; | 17220 | return err; |
17171 | err = add_control(spec, ALC_CTL_WIDGET_VOL, | 17221 | err = alc662_add_vol_ctl(spec, "LFE", nid, 2); |
17172 | "LFE Playback Volume", | ||
17173 | HDA_COMPOSE_AMP_VAL(nid, 2, 0, | ||
17174 | HDA_OUTPUT)); | ||
17175 | if (err < 0) | 17222 | if (err < 0) |
17176 | return err; | 17223 | return err; |
17177 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, | 17224 | err = alc662_add_sw_ctl(spec, "Center", mix, 1); |
17178 | "Center Playback Switch", | ||
17179 | HDA_COMPOSE_AMP_VAL(0x0e, 1, 0, | ||
17180 | HDA_INPUT)); | ||
17181 | if (err < 0) | 17225 | if (err < 0) |
17182 | return err; | 17226 | return err; |
17183 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, | 17227 | err = alc662_add_sw_ctl(spec, "LFE", mix, 2); |
17184 | "LFE Playback Switch", | ||
17185 | HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, | ||
17186 | HDA_INPUT)); | ||
17187 | if (err < 0) | 17228 | if (err < 0) |
17188 | return err; | 17229 | return err; |
17189 | } else { | 17230 | } else { |
17190 | const char *pfx; | 17231 | const char *pfx; |
17191 | if (cfg->line_outs == 1 && | 17232 | if (cfg->line_outs == 1 && |
17192 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) { | 17233 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) { |
17193 | if (!cfg->hp_pins) | 17234 | if (cfg->hp_outs) |
17194 | pfx = "Speaker"; | 17235 | pfx = "Speaker"; |
17195 | else | 17236 | else |
17196 | pfx = "PCM"; | 17237 | pfx = "PCM"; |
17197 | } else | 17238 | } else |
17198 | pfx = chname[i]; | 17239 | pfx = chname[i]; |
17199 | sprintf(name, "%s Playback Volume", pfx); | 17240 | err = alc662_add_vol_ctl(spec, pfx, nid, 3); |
17200 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | ||
17201 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, | ||
17202 | HDA_OUTPUT)); | ||
17203 | if (err < 0) | 17241 | if (err < 0) |
17204 | return err; | 17242 | return err; |
17205 | if (cfg->line_outs == 1 && | 17243 | if (cfg->line_outs == 1 && |
17206 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) | 17244 | cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) |
17207 | pfx = "Speaker"; | 17245 | pfx = "Speaker"; |
17208 | sprintf(name, "%s Playback Switch", pfx); | 17246 | err = alc662_add_sw_ctl(spec, pfx, mix, 3); |
17209 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | ||
17210 | HDA_COMPOSE_AMP_VAL(alc880_idx_to_mixer(i), | ||
17211 | 3, 0, HDA_INPUT)); | ||
17212 | if (err < 0) | 17247 | if (err < 0) |
17213 | return err; | 17248 | return err; |
17214 | } | 17249 | } |
@@ -17217,86 +17252,73 @@ static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec, | |||
17217 | } | 17252 | } |
17218 | 17253 | ||
17219 | /* add playback controls for speaker and HP outputs */ | 17254 | /* add playback controls for speaker and HP outputs */ |
17220 | static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin, | 17255 | /* return DAC nid if any new DAC is assigned */ |
17256 | static int alc662_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin, | ||
17221 | const char *pfx) | 17257 | const char *pfx) |
17222 | { | 17258 | { |
17223 | hda_nid_t nid; | 17259 | struct alc_spec *spec = codec->spec; |
17260 | hda_nid_t nid, mix; | ||
17224 | int err; | 17261 | int err; |
17225 | char name[32]; | ||
17226 | 17262 | ||
17227 | if (!pin) | 17263 | if (!pin) |
17228 | return 0; | 17264 | return 0; |
17229 | 17265 | nid = alc662_look_for_dac(codec, pin); | |
17230 | if (pin == 0x17) { | 17266 | if (!nid) { |
17231 | /* ALC663 has a mono output pin on 0x17 */ | 17267 | /* the corresponding DAC is already occupied */ |
17232 | sprintf(name, "%s Playback Switch", pfx); | 17268 | if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP)) |
17233 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | 17269 | return 0; /* no way */ |
17234 | HDA_COMPOSE_AMP_VAL(pin, 2, 0, HDA_OUTPUT)); | 17270 | /* create a switch only */ |
17235 | return err; | 17271 | return add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, |
17272 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); | ||
17236 | } | 17273 | } |
17237 | 17274 | ||
17238 | if (alc880_is_fixed_pin(pin)) { | 17275 | mix = alc662_dac_to_mix(codec, pin, nid); |
17239 | nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin)); | 17276 | if (!mix) |
17240 | /* printk(KERN_DEBUG "DAC nid=%x\n",nid); */ | 17277 | return 0; |
17241 | /* specify the DAC as the extra output */ | 17278 | err = alc662_add_vol_ctl(spec, pfx, nid, 3); |
17242 | if (!spec->multiout.hp_nid) | 17279 | if (err < 0) |
17243 | spec->multiout.hp_nid = nid; | 17280 | return err; |
17244 | else | 17281 | err = alc662_add_sw_ctl(spec, pfx, mix, 3); |
17245 | spec->multiout.extra_out_nid[0] = nid; | 17282 | if (err < 0) |
17246 | /* control HP volume/switch on the output mixer amp */ | 17283 | return err; |
17247 | nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin)); | 17284 | return nid; |
17248 | sprintf(name, "%s Playback Volume", pfx); | ||
17249 | err = add_control(spec, ALC_CTL_WIDGET_VOL, name, | ||
17250 | HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT)); | ||
17251 | if (err < 0) | ||
17252 | return err; | ||
17253 | sprintf(name, "%s Playback Switch", pfx); | ||
17254 | err = add_control(spec, ALC_CTL_BIND_MUTE, name, | ||
17255 | HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT)); | ||
17256 | if (err < 0) | ||
17257 | return err; | ||
17258 | } else if (alc880_is_multi_pin(pin)) { | ||
17259 | /* set manual connection */ | ||
17260 | /* we have only a switch on HP-out PIN */ | ||
17261 | sprintf(name, "%s Playback Switch", pfx); | ||
17262 | err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, | ||
17263 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); | ||
17264 | if (err < 0) | ||
17265 | return err; | ||
17266 | } | ||
17267 | return 0; | ||
17268 | } | 17285 | } |
17269 | 17286 | ||
17270 | /* create playback/capture controls for input pins */ | 17287 | /* create playback/capture controls for input pins */ |
17271 | #define alc662_auto_create_input_ctls \ | 17288 | #define alc662_auto_create_input_ctls \ |
17272 | alc880_auto_create_input_ctls | 17289 | alc882_auto_create_input_ctls |
17273 | 17290 | ||
17274 | static void alc662_auto_set_output_and_unmute(struct hda_codec *codec, | 17291 | static void alc662_auto_set_output_and_unmute(struct hda_codec *codec, |
17275 | hda_nid_t nid, int pin_type, | 17292 | hda_nid_t nid, int pin_type, |
17276 | int dac_idx) | 17293 | hda_nid_t dac) |
17277 | { | 17294 | { |
17295 | int i, num; | ||
17296 | hda_nid_t srcs[4]; | ||
17297 | |||
17278 | alc_set_pin_output(codec, nid, pin_type); | 17298 | alc_set_pin_output(codec, nid, pin_type); |
17279 | /* need the manual connection? */ | 17299 | /* need the manual connection? */ |
17280 | if (alc880_is_multi_pin(nid)) { | 17300 | num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs)); |
17281 | struct alc_spec *spec = codec->spec; | 17301 | if (num <= 1) |
17282 | int idx = alc880_multi_pin_idx(nid); | 17302 | return; |
17283 | snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0, | 17303 | for (i = 0; i < num; i++) { |
17284 | AC_VERB_SET_CONNECT_SEL, | 17304 | if (alc662_mix_to_dac(srcs[i]) != dac) |
17285 | alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx])); | 17305 | continue; |
17306 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i); | ||
17307 | return; | ||
17286 | } | 17308 | } |
17287 | } | 17309 | } |
17288 | 17310 | ||
17289 | static void alc662_auto_init_multi_out(struct hda_codec *codec) | 17311 | static void alc662_auto_init_multi_out(struct hda_codec *codec) |
17290 | { | 17312 | { |
17291 | struct alc_spec *spec = codec->spec; | 17313 | struct alc_spec *spec = codec->spec; |
17314 | int pin_type = get_pin_type(spec->autocfg.line_out_type); | ||
17292 | int i; | 17315 | int i; |
17293 | 17316 | ||
17294 | for (i = 0; i <= HDA_SIDE; i++) { | 17317 | for (i = 0; i <= HDA_SIDE; i++) { |
17295 | hda_nid_t nid = spec->autocfg.line_out_pins[i]; | 17318 | hda_nid_t nid = spec->autocfg.line_out_pins[i]; |
17296 | int pin_type = get_pin_type(spec->autocfg.line_out_type); | ||
17297 | if (nid) | 17319 | if (nid) |
17298 | alc662_auto_set_output_and_unmute(codec, nid, pin_type, | 17320 | alc662_auto_set_output_and_unmute(codec, nid, pin_type, |
17299 | i); | 17321 | spec->multiout.dac_nids[i]); |
17300 | } | 17322 | } |
17301 | } | 17323 | } |
17302 | 17324 | ||
@@ -17306,12 +17328,13 @@ static void alc662_auto_init_hp_out(struct hda_codec *codec) | |||
17306 | hda_nid_t pin; | 17328 | hda_nid_t pin; |
17307 | 17329 | ||
17308 | pin = spec->autocfg.hp_pins[0]; | 17330 | pin = spec->autocfg.hp_pins[0]; |
17309 | if (pin) /* connect to front */ | 17331 | if (pin) |
17310 | /* use dac 0 */ | 17332 | alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, |
17311 | alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0); | 17333 | spec->multiout.hp_nid); |
17312 | pin = spec->autocfg.speaker_pins[0]; | 17334 | pin = spec->autocfg.speaker_pins[0]; |
17313 | if (pin) | 17335 | if (pin) |
17314 | alc662_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0); | 17336 | alc662_auto_set_output_and_unmute(codec, pin, PIN_OUT, |
17337 | spec->multiout.extra_out_nid[0]); | ||
17315 | } | 17338 | } |
17316 | 17339 | ||
17317 | #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID | 17340 | #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID |
@@ -17349,21 +17372,25 @@ static int alc662_parse_auto_config(struct hda_codec *codec) | |||
17349 | if (!spec->autocfg.line_outs) | 17372 | if (!spec->autocfg.line_outs) |
17350 | return 0; /* can't find valid BIOS pin config */ | 17373 | return 0; /* can't find valid BIOS pin config */ |
17351 | 17374 | ||
17352 | err = alc880_auto_fill_dac_nids(spec, &spec->autocfg); | 17375 | err = alc662_auto_fill_dac_nids(codec, &spec->autocfg); |
17353 | if (err < 0) | 17376 | if (err < 0) |
17354 | return err; | 17377 | return err; |
17355 | err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg); | 17378 | err = alc662_auto_create_multi_out_ctls(codec, &spec->autocfg); |
17356 | if (err < 0) | 17379 | if (err < 0) |
17357 | return err; | 17380 | return err; |
17358 | err = alc662_auto_create_extra_out(spec, | 17381 | err = alc662_auto_create_extra_out(codec, |
17359 | spec->autocfg.speaker_pins[0], | 17382 | spec->autocfg.speaker_pins[0], |
17360 | "Speaker"); | 17383 | "Speaker"); |
17361 | if (err < 0) | 17384 | if (err < 0) |
17362 | return err; | 17385 | return err; |
17363 | err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0], | 17386 | if (err) |
17387 | spec->multiout.extra_out_nid[0] = err; | ||
17388 | err = alc662_auto_create_extra_out(codec, spec->autocfg.hp_pins[0], | ||
17364 | "Headphone"); | 17389 | "Headphone"); |
17365 | if (err < 0) | 17390 | if (err < 0) |
17366 | return err; | 17391 | return err; |
17392 | if (err) | ||
17393 | spec->multiout.hp_nid = err; | ||
17367 | err = alc662_auto_create_input_ctls(codec, &spec->autocfg); | 17394 | err = alc662_auto_create_input_ctls(codec, &spec->autocfg); |
17368 | if (err < 0) | 17395 | if (err < 0) |
17369 | return err; | 17396 | return err; |
diff --git a/sound/pci/hda/patch_sigmatel.c b/sound/pci/hda/patch_sigmatel.c index 826137ec3002..6b0bc040c3b1 100644 --- a/sound/pci/hda/patch_sigmatel.c +++ b/sound/pci/hda/patch_sigmatel.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/delay.h> | 28 | #include <linux/delay.h> |
29 | #include <linux/slab.h> | 29 | #include <linux/slab.h> |
30 | #include <linux/pci.h> | 30 | #include <linux/pci.h> |
31 | #include <linux/dmi.h> | ||
31 | #include <sound/core.h> | 32 | #include <sound/core.h> |
32 | #include <sound/asoundef.h> | 33 | #include <sound/asoundef.h> |
33 | #include <sound/jack.h> | 34 | #include <sound/jack.h> |
@@ -92,6 +93,7 @@ enum { | |||
92 | STAC_92HD83XXX_REF, | 93 | STAC_92HD83XXX_REF, |
93 | STAC_92HD83XXX_PWR_REF, | 94 | STAC_92HD83XXX_PWR_REF, |
94 | STAC_DELL_S14, | 95 | STAC_DELL_S14, |
96 | STAC_92HD83XXX_HP, | ||
95 | STAC_92HD83XXX_MODELS | 97 | STAC_92HD83XXX_MODELS |
96 | }; | 98 | }; |
97 | 99 | ||
@@ -158,6 +160,7 @@ enum { | |||
158 | STAC_D965_5ST_NO_FP, | 160 | STAC_D965_5ST_NO_FP, |
159 | STAC_DELL_3ST, | 161 | STAC_DELL_3ST, |
160 | STAC_DELL_BIOS, | 162 | STAC_DELL_BIOS, |
163 | STAC_927X_VOLKNOB, | ||
161 | STAC_927X_MODELS | 164 | STAC_927X_MODELS |
162 | }; | 165 | }; |
163 | 166 | ||
@@ -182,8 +185,8 @@ struct sigmatel_jack { | |||
182 | 185 | ||
183 | struct sigmatel_mic_route { | 186 | struct sigmatel_mic_route { |
184 | hda_nid_t pin; | 187 | hda_nid_t pin; |
185 | unsigned char mux_idx; | 188 | signed char mux_idx; |
186 | unsigned char dmux_idx; | 189 | signed char dmux_idx; |
187 | }; | 190 | }; |
188 | 191 | ||
189 | struct sigmatel_spec { | 192 | struct sigmatel_spec { |
@@ -907,6 +910,16 @@ static struct hda_verb d965_core_init[] = { | |||
907 | {} | 910 | {} |
908 | }; | 911 | }; |
909 | 912 | ||
913 | static struct hda_verb dell_3st_core_init[] = { | ||
914 | /* don't set delta bit */ | ||
915 | {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f}, | ||
916 | /* unmute node 0x1b */ | ||
917 | {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000}, | ||
918 | /* select node 0x03 as DAC */ | ||
919 | {0x0b, AC_VERB_SET_CONNECT_SEL, 0x01}, | ||
920 | {} | ||
921 | }; | ||
922 | |||
910 | static struct hda_verb stac927x_core_init[] = { | 923 | static struct hda_verb stac927x_core_init[] = { |
911 | /* set master volume and direct control */ | 924 | /* set master volume and direct control */ |
912 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, | 925 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
@@ -915,6 +928,14 @@ static struct hda_verb stac927x_core_init[] = { | |||
915 | {} | 928 | {} |
916 | }; | 929 | }; |
917 | 930 | ||
931 | static struct hda_verb stac927x_volknob_core_init[] = { | ||
932 | /* don't set delta bit */ | ||
933 | {0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0x7f}, | ||
934 | /* enable analog pc beep path */ | ||
935 | {0x01, AC_VERB_SET_DIGI_CONVERT_2, 1 << 5}, | ||
936 | {} | ||
937 | }; | ||
938 | |||
918 | static struct hda_verb stac9205_core_init[] = { | 939 | static struct hda_verb stac9205_core_init[] = { |
919 | /* set master volume and direct control */ | 940 | /* set master volume and direct control */ |
920 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, | 941 | { 0x24, AC_VERB_SET_VOLUME_KNOB_CONTROL, 0xff}, |
@@ -1065,7 +1086,7 @@ static int stac92xx_build_controls(struct hda_codec *codec) | |||
1065 | if (!spec->auto_mic && spec->num_dmuxes > 0 && | 1086 | if (!spec->auto_mic && spec->num_dmuxes > 0 && |
1066 | snd_hda_get_bool_hint(codec, "separate_dmux") == 1) { | 1087 | snd_hda_get_bool_hint(codec, "separate_dmux") == 1) { |
1067 | stac_dmux_mixer.count = spec->num_dmuxes; | 1088 | stac_dmux_mixer.count = spec->num_dmuxes; |
1068 | err = snd_hda_ctl_add(codec, | 1089 | err = snd_hda_ctl_add(codec, 0, |
1069 | snd_ctl_new1(&stac_dmux_mixer, codec)); | 1090 | snd_ctl_new1(&stac_dmux_mixer, codec)); |
1070 | if (err < 0) | 1091 | if (err < 0) |
1071 | return err; | 1092 | return err; |
@@ -1081,7 +1102,7 @@ static int stac92xx_build_controls(struct hda_codec *codec) | |||
1081 | spec->spdif_mute = 1; | 1102 | spec->spdif_mute = 1; |
1082 | } | 1103 | } |
1083 | stac_smux_mixer.count = spec->num_smuxes; | 1104 | stac_smux_mixer.count = spec->num_smuxes; |
1084 | err = snd_hda_ctl_add(codec, | 1105 | err = snd_hda_ctl_add(codec, 0, |
1085 | snd_ctl_new1(&stac_smux_mixer, codec)); | 1106 | snd_ctl_new1(&stac_smux_mixer, codec)); |
1086 | if (err < 0) | 1107 | if (err < 0) |
1087 | return err; | 1108 | return err; |
@@ -1570,6 +1591,8 @@ static struct snd_pci_quirk stac92hd73xx_cfg_tbl[] = { | |||
1570 | "Dell Studio 17", STAC_DELL_M6_DMIC), | 1591 | "Dell Studio 17", STAC_DELL_M6_DMIC), |
1571 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be, | 1592 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02be, |
1572 | "Dell Studio 1555", STAC_DELL_M6_DMIC), | 1593 | "Dell Studio 1555", STAC_DELL_M6_DMIC), |
1594 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02bd, | ||
1595 | "Dell Studio 1557", STAC_DELL_M6_DMIC), | ||
1573 | {} /* terminator */ | 1596 | {} /* terminator */ |
1574 | }; | 1597 | }; |
1575 | 1598 | ||
@@ -1602,6 +1625,7 @@ static const char *stac92hd83xxx_models[STAC_92HD83XXX_MODELS] = { | |||
1602 | [STAC_92HD83XXX_REF] = "ref", | 1625 | [STAC_92HD83XXX_REF] = "ref", |
1603 | [STAC_92HD83XXX_PWR_REF] = "mic-ref", | 1626 | [STAC_92HD83XXX_PWR_REF] = "mic-ref", |
1604 | [STAC_DELL_S14] = "dell-s14", | 1627 | [STAC_DELL_S14] = "dell-s14", |
1628 | [STAC_92HD83XXX_HP] = "hp", | ||
1605 | }; | 1629 | }; |
1606 | 1630 | ||
1607 | static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = { | 1631 | static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = { |
@@ -1612,6 +1636,8 @@ static struct snd_pci_quirk stac92hd83xxx_cfg_tbl[] = { | |||
1612 | "DFI LanParty", STAC_92HD83XXX_REF), | 1636 | "DFI LanParty", STAC_92HD83XXX_REF), |
1613 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba, | 1637 | SND_PCI_QUIRK(PCI_VENDOR_ID_DELL, 0x02ba, |
1614 | "unknown Dell", STAC_DELL_S14), | 1638 | "unknown Dell", STAC_DELL_S14), |
1639 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xff00, 0x3600, | ||
1640 | "HP", STAC_92HD83XXX_HP), | ||
1615 | {} /* terminator */ | 1641 | {} /* terminator */ |
1616 | }; | 1642 | }; |
1617 | 1643 | ||
@@ -1674,6 +1700,8 @@ static struct snd_pci_quirk stac92hd71bxx_cfg_tbl[] = { | |||
1674 | "DFI LanParty", STAC_92HD71BXX_REF), | 1700 | "DFI LanParty", STAC_92HD71BXX_REF), |
1675 | SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb, | 1701 | SND_PCI_QUIRK(PCI_VENDOR_ID_HP, 0x30fb, |
1676 | "HP dv4-1222nr", STAC_HP_DV4_1222NR), | 1702 | "HP dv4-1222nr", STAC_HP_DV4_1222NR), |
1703 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x1720, | ||
1704 | "HP", STAC_HP_DV5), | ||
1677 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080, | 1705 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x3080, |
1678 | "HP", STAC_HP_DV5), | 1706 | "HP", STAC_HP_DV5), |
1679 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0, | 1707 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_HP, 0xfff0, 0x30f0, |
@@ -1999,6 +2027,7 @@ static unsigned int *stac927x_brd_tbl[STAC_927X_MODELS] = { | |||
1999 | [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs, | 2027 | [STAC_D965_5ST_NO_FP] = d965_5st_no_fp_pin_configs, |
2000 | [STAC_DELL_3ST] = dell_3st_pin_configs, | 2028 | [STAC_DELL_3ST] = dell_3st_pin_configs, |
2001 | [STAC_DELL_BIOS] = NULL, | 2029 | [STAC_DELL_BIOS] = NULL, |
2030 | [STAC_927X_VOLKNOB] = NULL, | ||
2002 | }; | 2031 | }; |
2003 | 2032 | ||
2004 | static const char *stac927x_models[STAC_927X_MODELS] = { | 2033 | static const char *stac927x_models[STAC_927X_MODELS] = { |
@@ -2010,6 +2039,7 @@ static const char *stac927x_models[STAC_927X_MODELS] = { | |||
2010 | [STAC_D965_5ST_NO_FP] = "5stack-no-fp", | 2039 | [STAC_D965_5ST_NO_FP] = "5stack-no-fp", |
2011 | [STAC_DELL_3ST] = "dell-3stack", | 2040 | [STAC_DELL_3ST] = "dell-3stack", |
2012 | [STAC_DELL_BIOS] = "dell-bios", | 2041 | [STAC_DELL_BIOS] = "dell-bios", |
2042 | [STAC_927X_VOLKNOB] = "volknob", | ||
2013 | }; | 2043 | }; |
2014 | 2044 | ||
2015 | static struct snd_pci_quirk stac927x_cfg_tbl[] = { | 2045 | static struct snd_pci_quirk stac927x_cfg_tbl[] = { |
@@ -2045,6 +2075,8 @@ static struct snd_pci_quirk stac927x_cfg_tbl[] = { | |||
2045 | "Intel D965", STAC_D965_5ST), | 2075 | "Intel D965", STAC_D965_5ST), |
2046 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500, | 2076 | SND_PCI_QUIRK_MASK(PCI_VENDOR_ID_INTEL, 0xff00, 0x2500, |
2047 | "Intel D965", STAC_D965_5ST), | 2077 | "Intel D965", STAC_D965_5ST), |
2078 | /* volume-knob fixes */ | ||
2079 | SND_PCI_QUIRK_VENDOR(0x10cf, "FSC", STAC_927X_VOLKNOB), | ||
2048 | {} /* terminator */ | 2080 | {} /* terminator */ |
2049 | }; | 2081 | }; |
2050 | 2082 | ||
@@ -2620,6 +2652,7 @@ static int stac92xx_clfe_switch_put(struct snd_kcontrol *kcontrol, | |||
2620 | enum { | 2652 | enum { |
2621 | STAC_CTL_WIDGET_VOL, | 2653 | STAC_CTL_WIDGET_VOL, |
2622 | STAC_CTL_WIDGET_MUTE, | 2654 | STAC_CTL_WIDGET_MUTE, |
2655 | STAC_CTL_WIDGET_MUTE_BEEP, | ||
2623 | STAC_CTL_WIDGET_MONO_MUX, | 2656 | STAC_CTL_WIDGET_MONO_MUX, |
2624 | STAC_CTL_WIDGET_HP_SWITCH, | 2657 | STAC_CTL_WIDGET_HP_SWITCH, |
2625 | STAC_CTL_WIDGET_IO_SWITCH, | 2658 | STAC_CTL_WIDGET_IO_SWITCH, |
@@ -2630,6 +2663,7 @@ enum { | |||
2630 | static struct snd_kcontrol_new stac92xx_control_templates[] = { | 2663 | static struct snd_kcontrol_new stac92xx_control_templates[] = { |
2631 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), | 2664 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), |
2632 | HDA_CODEC_MUTE(NULL, 0, 0, 0), | 2665 | HDA_CODEC_MUTE(NULL, 0, 0, 0), |
2666 | HDA_CODEC_MUTE_BEEP(NULL, 0, 0, 0), | ||
2633 | STAC_MONO_MUX, | 2667 | STAC_MONO_MUX, |
2634 | STAC_CODEC_HP_SWITCH(NULL), | 2668 | STAC_CODEC_HP_SWITCH(NULL), |
2635 | STAC_CODEC_IO_SWITCH(NULL, 0), | 2669 | STAC_CODEC_IO_SWITCH(NULL, 0), |
@@ -2641,7 +2675,8 @@ static struct snd_kcontrol_new stac92xx_control_templates[] = { | |||
2641 | static struct snd_kcontrol_new * | 2675 | static struct snd_kcontrol_new * |
2642 | stac_control_new(struct sigmatel_spec *spec, | 2676 | stac_control_new(struct sigmatel_spec *spec, |
2643 | struct snd_kcontrol_new *ktemp, | 2677 | struct snd_kcontrol_new *ktemp, |
2644 | const char *name) | 2678 | const char *name, |
2679 | hda_nid_t nid) | ||
2645 | { | 2680 | { |
2646 | struct snd_kcontrol_new *knew; | 2681 | struct snd_kcontrol_new *knew; |
2647 | 2682 | ||
@@ -2657,6 +2692,8 @@ stac_control_new(struct sigmatel_spec *spec, | |||
2657 | spec->kctls.alloced--; | 2692 | spec->kctls.alloced--; |
2658 | return NULL; | 2693 | return NULL; |
2659 | } | 2694 | } |
2695 | if (nid) | ||
2696 | knew->subdevice = HDA_SUBDEV_NID_FLAG | nid; | ||
2660 | return knew; | 2697 | return knew; |
2661 | } | 2698 | } |
2662 | 2699 | ||
@@ -2665,7 +2702,8 @@ static int stac92xx_add_control_temp(struct sigmatel_spec *spec, | |||
2665 | int idx, const char *name, | 2702 | int idx, const char *name, |
2666 | unsigned long val) | 2703 | unsigned long val) |
2667 | { | 2704 | { |
2668 | struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name); | 2705 | struct snd_kcontrol_new *knew = stac_control_new(spec, ktemp, name, |
2706 | get_amp_nid_(val)); | ||
2669 | if (!knew) | 2707 | if (!knew) |
2670 | return -ENOMEM; | 2708 | return -ENOMEM; |
2671 | knew->index = idx; | 2709 | knew->index = idx; |
@@ -2736,7 +2774,7 @@ static int stac92xx_add_input_source(struct sigmatel_spec *spec) | |||
2736 | if (!spec->num_adcs || imux->num_items <= 1) | 2774 | if (!spec->num_adcs || imux->num_items <= 1) |
2737 | return 0; /* no need for input source control */ | 2775 | return 0; /* no need for input source control */ |
2738 | knew = stac_control_new(spec, &stac_input_src_temp, | 2776 | knew = stac_control_new(spec, &stac_input_src_temp, |
2739 | stac_input_src_temp.name); | 2777 | stac_input_src_temp.name, 0); |
2740 | if (!knew) | 2778 | if (!knew) |
2741 | return -ENOMEM; | 2779 | return -ENOMEM; |
2742 | knew->count = spec->num_adcs; | 2780 | knew->count = spec->num_adcs; |
@@ -3193,12 +3231,15 @@ static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec, | |||
3193 | { | 3231 | { |
3194 | struct sigmatel_spec *spec = codec->spec; | 3232 | struct sigmatel_spec *spec = codec->spec; |
3195 | u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT); | 3233 | u32 caps = query_amp_caps(codec, nid, HDA_OUTPUT); |
3196 | int err; | 3234 | int err, type = STAC_CTL_WIDGET_MUTE_BEEP; |
3235 | |||
3236 | if (spec->anabeep_nid == nid) | ||
3237 | type = STAC_CTL_WIDGET_MUTE; | ||
3197 | 3238 | ||
3198 | /* check for mute support for the the amp */ | 3239 | /* check for mute support for the the amp */ |
3199 | if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) { | 3240 | if ((caps & AC_AMPCAP_MUTE) >> AC_AMPCAP_MUTE_SHIFT) { |
3200 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_MUTE, | 3241 | err = stac92xx_add_control(spec, type, |
3201 | "PC Beep Playback Switch", | 3242 | "Beep Playback Switch", |
3202 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); | 3243 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
3203 | if (err < 0) | 3244 | if (err < 0) |
3204 | return err; | 3245 | return err; |
@@ -3207,7 +3248,7 @@ static int stac92xx_auto_create_beep_ctls(struct hda_codec *codec, | |||
3207 | /* check to see if there is volume support for the amp */ | 3248 | /* check to see if there is volume support for the amp */ |
3208 | if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) { | 3249 | if ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) { |
3209 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, | 3250 | err = stac92xx_add_control(spec, STAC_CTL_WIDGET_VOL, |
3210 | "PC Beep Playback Volume", | 3251 | "Beep Playback Volume", |
3211 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); | 3252 | HDA_COMPOSE_AMP_VAL(nid, 1, 0, HDA_OUTPUT)); |
3212 | if (err < 0) | 3253 | if (err < 0) |
3213 | return err; | 3254 | return err; |
@@ -3230,12 +3271,7 @@ static int stac92xx_dig_beep_switch_put(struct snd_kcontrol *kcontrol, | |||
3230 | struct snd_ctl_elem_value *ucontrol) | 3271 | struct snd_ctl_elem_value *ucontrol) |
3231 | { | 3272 | { |
3232 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 3273 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
3233 | int enabled = !!ucontrol->value.integer.value[0]; | 3274 | return snd_hda_enable_beep_device(codec, ucontrol->value.integer.value[0]); |
3234 | if (codec->beep->enabled != enabled) { | ||
3235 | codec->beep->enabled = enabled; | ||
3236 | return 1; | ||
3237 | } | ||
3238 | return 0; | ||
3239 | } | 3275 | } |
3240 | 3276 | ||
3241 | static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = { | 3277 | static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = { |
@@ -3248,7 +3284,7 @@ static struct snd_kcontrol_new stac92xx_dig_beep_ctrl = { | |||
3248 | static int stac92xx_beep_switch_ctl(struct hda_codec *codec) | 3284 | static int stac92xx_beep_switch_ctl(struct hda_codec *codec) |
3249 | { | 3285 | { |
3250 | return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl, | 3286 | return stac92xx_add_control_temp(codec->spec, &stac92xx_dig_beep_ctrl, |
3251 | 0, "PC Beep Playback Switch", 0); | 3287 | 0, "Beep Playback Switch", 0); |
3252 | } | 3288 | } |
3253 | #endif | 3289 | #endif |
3254 | 3290 | ||
@@ -3469,18 +3505,26 @@ static int set_mic_route(struct hda_codec *codec, | |||
3469 | break; | 3505 | break; |
3470 | if (i <= AUTO_PIN_FRONT_MIC) { | 3506 | if (i <= AUTO_PIN_FRONT_MIC) { |
3471 | /* analog pin */ | 3507 | /* analog pin */ |
3472 | mic->dmux_idx = 0; | ||
3473 | i = get_connection_index(codec, spec->mux_nids[0], pin); | 3508 | i = get_connection_index(codec, spec->mux_nids[0], pin); |
3474 | if (i < 0) | 3509 | if (i < 0) |
3475 | return -1; | 3510 | return -1; |
3476 | mic->mux_idx = i; | 3511 | mic->mux_idx = i; |
3512 | mic->dmux_idx = -1; | ||
3513 | if (spec->dmux_nids) | ||
3514 | mic->dmux_idx = get_connection_index(codec, | ||
3515 | spec->dmux_nids[0], | ||
3516 | spec->mux_nids[0]); | ||
3477 | } else if (spec->dmux_nids) { | 3517 | } else if (spec->dmux_nids) { |
3478 | /* digital pin */ | 3518 | /* digital pin */ |
3479 | mic->mux_idx = 0; | ||
3480 | i = get_connection_index(codec, spec->dmux_nids[0], pin); | 3519 | i = get_connection_index(codec, spec->dmux_nids[0], pin); |
3481 | if (i < 0) | 3520 | if (i < 0) |
3482 | return -1; | 3521 | return -1; |
3483 | mic->dmux_idx = i; | 3522 | mic->dmux_idx = i; |
3523 | mic->mux_idx = -1; | ||
3524 | if (spec->mux_nids) | ||
3525 | mic->mux_idx = get_connection_index(codec, | ||
3526 | spec->mux_nids[0], | ||
3527 | spec->dmux_nids[0]); | ||
3484 | } | 3528 | } |
3485 | return 0; | 3529 | return 0; |
3486 | } | 3530 | } |
@@ -3595,6 +3639,26 @@ static void stac92xx_auto_init_hp_out(struct hda_codec *codec) | |||
3595 | } | 3639 | } |
3596 | } | 3640 | } |
3597 | 3641 | ||
3642 | static int is_dual_headphones(struct hda_codec *codec) | ||
3643 | { | ||
3644 | struct sigmatel_spec *spec = codec->spec; | ||
3645 | int i, valid_hps; | ||
3646 | |||
3647 | if (spec->autocfg.line_out_type != AUTO_PIN_SPEAKER_OUT || | ||
3648 | spec->autocfg.hp_outs <= 1) | ||
3649 | return 0; | ||
3650 | valid_hps = 0; | ||
3651 | for (i = 0; i < spec->autocfg.hp_outs; i++) { | ||
3652 | hda_nid_t nid = spec->autocfg.hp_pins[i]; | ||
3653 | unsigned int cfg = snd_hda_codec_get_pincfg(codec, nid); | ||
3654 | if (get_defcfg_location(cfg) & AC_JACK_LOC_SEPARATE) | ||
3655 | continue; | ||
3656 | valid_hps++; | ||
3657 | } | ||
3658 | return (valid_hps > 1); | ||
3659 | } | ||
3660 | |||
3661 | |||
3598 | static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in) | 3662 | static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out, hda_nid_t dig_in) |
3599 | { | 3663 | { |
3600 | struct sigmatel_spec *spec = codec->spec; | 3664 | struct sigmatel_spec *spec = codec->spec; |
@@ -3611,8 +3675,7 @@ static int stac92xx_parse_auto_config(struct hda_codec *codec, hda_nid_t dig_out | |||
3611 | /* If we have no real line-out pin and multiple hp-outs, HPs should | 3675 | /* If we have no real line-out pin and multiple hp-outs, HPs should |
3612 | * be set up as multi-channel outputs. | 3676 | * be set up as multi-channel outputs. |
3613 | */ | 3677 | */ |
3614 | if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT && | 3678 | if (is_dual_headphones(codec)) { |
3615 | spec->autocfg.hp_outs > 1) { | ||
3616 | /* Copy hp_outs to line_outs, backup line_outs in | 3679 | /* Copy hp_outs to line_outs, backup line_outs in |
3617 | * speaker_outs so that the following routines can handle | 3680 | * speaker_outs so that the following routines can handle |
3618 | * HP pins as primary outputs. | 3681 | * HP pins as primary outputs. |
@@ -4293,6 +4356,28 @@ static void stac92xx_free_kctls(struct hda_codec *codec) | |||
4293 | snd_array_free(&spec->kctls); | 4356 | snd_array_free(&spec->kctls); |
4294 | } | 4357 | } |
4295 | 4358 | ||
4359 | static void stac92xx_shutup(struct hda_codec *codec) | ||
4360 | { | ||
4361 | struct sigmatel_spec *spec = codec->spec; | ||
4362 | int i; | ||
4363 | hda_nid_t nid; | ||
4364 | |||
4365 | /* reset each pin before powering down DAC/ADC to avoid click noise */ | ||
4366 | nid = codec->start_nid; | ||
4367 | for (i = 0; i < codec->num_nodes; i++, nid++) { | ||
4368 | unsigned int wcaps = get_wcaps(codec, nid); | ||
4369 | unsigned int wid_type = get_wcaps_type(wcaps); | ||
4370 | if (wid_type == AC_WID_PIN) | ||
4371 | snd_hda_codec_read(codec, nid, 0, | ||
4372 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); | ||
4373 | } | ||
4374 | |||
4375 | if (spec->eapd_mask) | ||
4376 | stac_gpio_set(codec, spec->gpio_mask, | ||
4377 | spec->gpio_dir, spec->gpio_data & | ||
4378 | ~spec->eapd_mask); | ||
4379 | } | ||
4380 | |||
4296 | static void stac92xx_free(struct hda_codec *codec) | 4381 | static void stac92xx_free(struct hda_codec *codec) |
4297 | { | 4382 | { |
4298 | struct sigmatel_spec *spec = codec->spec; | 4383 | struct sigmatel_spec *spec = codec->spec; |
@@ -4300,6 +4385,7 @@ static void stac92xx_free(struct hda_codec *codec) | |||
4300 | if (! spec) | 4385 | if (! spec) |
4301 | return; | 4386 | return; |
4302 | 4387 | ||
4388 | stac92xx_shutup(codec); | ||
4303 | stac92xx_free_jacks(codec); | 4389 | stac92xx_free_jacks(codec); |
4304 | snd_array_free(&spec->events); | 4390 | snd_array_free(&spec->events); |
4305 | 4391 | ||
@@ -4350,12 +4436,16 @@ static void stac92xx_reset_pinctl(struct hda_codec *codec, hda_nid_t nid, | |||
4350 | pin_ctl & ~flag); | 4436 | pin_ctl & ~flag); |
4351 | } | 4437 | } |
4352 | 4438 | ||
4353 | static int get_pin_presence(struct hda_codec *codec, hda_nid_t nid) | 4439 | static inline int get_pin_presence(struct hda_codec *codec, hda_nid_t nid) |
4354 | { | 4440 | { |
4355 | if (!nid) | 4441 | if (!nid) |
4356 | return 0; | 4442 | return 0; |
4357 | if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0x00) | 4443 | /* NOTE: we can't use snd_hda_jack_detect() here because STAC/IDT |
4358 | & (1 << 31)) | 4444 | * codecs behave wrongly when SET_PIN_SENSE is triggered, although |
4445 | * the pincap gives TRIG_REQ bit. | ||
4446 | */ | ||
4447 | if (snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PIN_SENSE, 0) & | ||
4448 | AC_PINSENSE_PRESENCE) | ||
4359 | return 1; | 4449 | return 1; |
4360 | return 0; | 4450 | return 0; |
4361 | } | 4451 | } |
@@ -4557,11 +4647,11 @@ static void stac92xx_mic_detect(struct hda_codec *codec) | |||
4557 | mic = &spec->ext_mic; | 4647 | mic = &spec->ext_mic; |
4558 | else | 4648 | else |
4559 | mic = &spec->int_mic; | 4649 | mic = &spec->int_mic; |
4560 | if (mic->dmux_idx) | 4650 | if (mic->dmux_idx >= 0) |
4561 | snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0, | 4651 | snd_hda_codec_write_cache(codec, spec->dmux_nids[0], 0, |
4562 | AC_VERB_SET_CONNECT_SEL, | 4652 | AC_VERB_SET_CONNECT_SEL, |
4563 | mic->dmux_idx); | 4653 | mic->dmux_idx); |
4564 | else | 4654 | if (mic->mux_idx >= 0) |
4565 | snd_hda_codec_write_cache(codec, spec->mux_nids[0], 0, | 4655 | snd_hda_codec_write_cache(codec, spec->mux_nids[0], 0, |
4566 | AC_VERB_SET_CONNECT_SEL, | 4656 | AC_VERB_SET_CONNECT_SEL, |
4567 | mic->mux_idx); | 4657 | mic->mux_idx); |
@@ -4634,6 +4724,26 @@ static void stac92xx_unsol_event(struct hda_codec *codec, unsigned int res) | |||
4634 | } | 4724 | } |
4635 | } | 4725 | } |
4636 | 4726 | ||
4727 | static int hp_bseries_system(u32 subsystem_id) | ||
4728 | { | ||
4729 | switch (subsystem_id) { | ||
4730 | case 0x103c307e: | ||
4731 | case 0x103c307f: | ||
4732 | case 0x103c3080: | ||
4733 | case 0x103c3081: | ||
4734 | case 0x103c1722: | ||
4735 | case 0x103c1723: | ||
4736 | case 0x103c1724: | ||
4737 | case 0x103c1725: | ||
4738 | case 0x103c1726: | ||
4739 | case 0x103c1727: | ||
4740 | case 0x103c1728: | ||
4741 | case 0x103c1729: | ||
4742 | return 1; | ||
4743 | } | ||
4744 | return 0; | ||
4745 | } | ||
4746 | |||
4637 | #ifdef CONFIG_PROC_FS | 4747 | #ifdef CONFIG_PROC_FS |
4638 | static void stac92hd_proc_hook(struct snd_info_buffer *buffer, | 4748 | static void stac92hd_proc_hook(struct snd_info_buffer *buffer, |
4639 | struct hda_codec *codec, hda_nid_t nid) | 4749 | struct hda_codec *codec, hda_nid_t nid) |
@@ -4723,6 +4833,11 @@ static int stac92xx_hp_check_power_status(struct hda_codec *codec, | |||
4723 | else | 4833 | else |
4724 | spec->gpio_data |= spec->gpio_led; /* white */ | 4834 | spec->gpio_data |= spec->gpio_led; /* white */ |
4725 | 4835 | ||
4836 | if (hp_bseries_system(codec->subsystem_id)) { | ||
4837 | /* LED state is inverted on these systems */ | ||
4838 | spec->gpio_data ^= spec->gpio_led; | ||
4839 | } | ||
4840 | |||
4726 | stac_gpio_set(codec, spec->gpio_mask, | 4841 | stac_gpio_set(codec, spec->gpio_mask, |
4727 | spec->gpio_dir, | 4842 | spec->gpio_dir, |
4728 | spec->gpio_data); | 4843 | spec->gpio_data); |
@@ -4730,28 +4845,28 @@ static int stac92xx_hp_check_power_status(struct hda_codec *codec, | |||
4730 | 4845 | ||
4731 | return 0; | 4846 | return 0; |
4732 | } | 4847 | } |
4733 | #endif | ||
4734 | 4848 | ||
4735 | static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state) | 4849 | static int idt92hd83xxx_hp_check_power_status(struct hda_codec *codec, |
4850 | hda_nid_t nid) | ||
4736 | { | 4851 | { |
4737 | struct sigmatel_spec *spec = codec->spec; | 4852 | struct sigmatel_spec *spec = codec->spec; |
4738 | int i; | ||
4739 | hda_nid_t nid; | ||
4740 | 4853 | ||
4741 | /* reset each pin before powering down DAC/ADC to avoid click noise */ | 4854 | if (nid != 0x13) |
4742 | nid = codec->start_nid; | 4855 | return 0; |
4743 | for (i = 0; i < codec->num_nodes; i++, nid++) { | 4856 | if (snd_hda_codec_amp_read(codec, nid, 0, HDA_OUTPUT, 0) & HDA_AMP_MUTE) |
4744 | unsigned int wcaps = get_wcaps(codec, nid); | 4857 | spec->gpio_data |= spec->gpio_led; /* mute LED on */ |
4745 | unsigned int wid_type = get_wcaps_type(wcaps); | 4858 | else |
4746 | if (wid_type == AC_WID_PIN) | 4859 | spec->gpio_data &= ~spec->gpio_led; /* mute LED off */ |
4747 | snd_hda_codec_read(codec, nid, 0, | 4860 | stac_gpio_set(codec, spec->gpio_mask, spec->gpio_dir, spec->gpio_data); |
4748 | AC_VERB_SET_PIN_WIDGET_CONTROL, 0); | ||
4749 | } | ||
4750 | 4861 | ||
4751 | if (spec->eapd_mask) | 4862 | return 0; |
4752 | stac_gpio_set(codec, spec->gpio_mask, | 4863 | } |
4753 | spec->gpio_dir, spec->gpio_data & | 4864 | |
4754 | ~spec->eapd_mask); | 4865 | #endif |
4866 | |||
4867 | static int stac92xx_suspend(struct hda_codec *codec, pm_message_t state) | ||
4868 | { | ||
4869 | stac92xx_shutup(codec); | ||
4755 | return 0; | 4870 | return 0; |
4756 | } | 4871 | } |
4757 | #endif | 4872 | #endif |
@@ -4766,6 +4881,7 @@ static struct hda_codec_ops stac92xx_patch_ops = { | |||
4766 | .suspend = stac92xx_suspend, | 4881 | .suspend = stac92xx_suspend, |
4767 | .resume = stac92xx_resume, | 4882 | .resume = stac92xx_resume, |
4768 | #endif | 4883 | #endif |
4884 | .reboot_notify = stac92xx_shutup, | ||
4769 | }; | 4885 | }; |
4770 | 4886 | ||
4771 | static int patch_stac9200(struct hda_codec *codec) | 4887 | static int patch_stac9200(struct hda_codec *codec) |
@@ -5111,6 +5227,22 @@ again: | |||
5111 | break; | 5227 | break; |
5112 | } | 5228 | } |
5113 | 5229 | ||
5230 | codec->patch_ops = stac92xx_patch_ops; | ||
5231 | |||
5232 | if (spec->board_config == STAC_92HD83XXX_HP) | ||
5233 | spec->gpio_led = 0x01; | ||
5234 | |||
5235 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
5236 | if (spec->gpio_led) { | ||
5237 | spec->gpio_mask |= spec->gpio_led; | ||
5238 | spec->gpio_dir |= spec->gpio_led; | ||
5239 | spec->gpio_data |= spec->gpio_led; | ||
5240 | /* register check_power_status callback. */ | ||
5241 | codec->patch_ops.check_power_status = | ||
5242 | idt92hd83xxx_hp_check_power_status; | ||
5243 | } | ||
5244 | #endif | ||
5245 | |||
5114 | err = stac92xx_parse_auto_config(codec, 0x1d, 0); | 5246 | err = stac92xx_parse_auto_config(codec, 0x1d, 0); |
5115 | if (!err) { | 5247 | if (!err) { |
5116 | if (spec->board_config < 0) { | 5248 | if (spec->board_config < 0) { |
@@ -5146,8 +5278,6 @@ again: | |||
5146 | snd_hda_codec_write_cache(codec, nid, 0, | 5278 | snd_hda_codec_write_cache(codec, nid, 0, |
5147 | AC_VERB_SET_CONNECT_SEL, num_dacs); | 5279 | AC_VERB_SET_CONNECT_SEL, num_dacs); |
5148 | 5280 | ||
5149 | codec->patch_ops = stac92xx_patch_ops; | ||
5150 | |||
5151 | codec->proc_widget_hook = stac92hd_proc_hook; | 5281 | codec->proc_widget_hook = stac92hd_proc_hook; |
5152 | 5282 | ||
5153 | return 0; | 5283 | return 0; |
@@ -5212,6 +5342,7 @@ static int patch_stac92hd71bxx(struct hda_codec *codec) | |||
5212 | { | 5342 | { |
5213 | struct sigmatel_spec *spec; | 5343 | struct sigmatel_spec *spec; |
5214 | struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init; | 5344 | struct hda_verb *unmute_init = stac92hd71bxx_unmute_core_init; |
5345 | unsigned int pin_cfg; | ||
5215 | int err = 0; | 5346 | int err = 0; |
5216 | 5347 | ||
5217 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 5348 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
@@ -5395,6 +5526,45 @@ again: | |||
5395 | break; | 5526 | break; |
5396 | } | 5527 | } |
5397 | 5528 | ||
5529 | if (hp_bseries_system(codec->subsystem_id)) { | ||
5530 | pin_cfg = snd_hda_codec_get_pincfg(codec, 0x0f); | ||
5531 | if (get_defcfg_device(pin_cfg) == AC_JACK_LINE_OUT || | ||
5532 | get_defcfg_device(pin_cfg) == AC_JACK_SPEAKER || | ||
5533 | get_defcfg_device(pin_cfg) == AC_JACK_HP_OUT) { | ||
5534 | /* It was changed in the BIOS to just satisfy MS DTM. | ||
5535 | * Lets turn it back into slaved HP | ||
5536 | */ | ||
5537 | pin_cfg = (pin_cfg & (~AC_DEFCFG_DEVICE)) | ||
5538 | | (AC_JACK_HP_OUT << | ||
5539 | AC_DEFCFG_DEVICE_SHIFT); | ||
5540 | pin_cfg = (pin_cfg & (~(AC_DEFCFG_DEF_ASSOC | ||
5541 | | AC_DEFCFG_SEQUENCE))) | ||
5542 | | 0x1f; | ||
5543 | snd_hda_codec_set_pincfg(codec, 0x0f, pin_cfg); | ||
5544 | } | ||
5545 | } | ||
5546 | |||
5547 | if ((codec->subsystem_id >> 16) == PCI_VENDOR_ID_HP) { | ||
5548 | const struct dmi_device *dev = NULL; | ||
5549 | while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, | ||
5550 | NULL, dev))) { | ||
5551 | if (strcmp(dev->name, "HP_Mute_LED_1")) { | ||
5552 | switch (codec->vendor_id) { | ||
5553 | case 0x111d7608: | ||
5554 | spec->gpio_led = 0x01; | ||
5555 | break; | ||
5556 | case 0x111d7600: | ||
5557 | case 0x111d7601: | ||
5558 | case 0x111d7602: | ||
5559 | case 0x111d7603: | ||
5560 | spec->gpio_led = 0x08; | ||
5561 | break; | ||
5562 | } | ||
5563 | break; | ||
5564 | } | ||
5565 | } | ||
5566 | } | ||
5567 | |||
5398 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 5568 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
5399 | if (spec->gpio_led) { | 5569 | if (spec->gpio_led) { |
5400 | spec->gpio_mask |= spec->gpio_led; | 5570 | spec->gpio_mask |= spec->gpio_led; |
@@ -5604,10 +5774,14 @@ static int patch_stac927x(struct hda_codec *codec) | |||
5604 | spec->dmic_nids = stac927x_dmic_nids; | 5774 | spec->dmic_nids = stac927x_dmic_nids; |
5605 | spec->num_dmics = STAC927X_NUM_DMICS; | 5775 | spec->num_dmics = STAC927X_NUM_DMICS; |
5606 | 5776 | ||
5607 | spec->init = d965_core_init; | 5777 | spec->init = dell_3st_core_init; |
5608 | spec->dmux_nids = stac927x_dmux_nids; | 5778 | spec->dmux_nids = stac927x_dmux_nids; |
5609 | spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids); | 5779 | spec->num_dmuxes = ARRAY_SIZE(stac927x_dmux_nids); |
5610 | break; | 5780 | break; |
5781 | case STAC_927X_VOLKNOB: | ||
5782 | spec->num_dmics = 0; | ||
5783 | spec->init = stac927x_volknob_core_init; | ||
5784 | break; | ||
5611 | default: | 5785 | default: |
5612 | spec->num_dmics = 0; | 5786 | spec->num_dmics = 0; |
5613 | spec->init = stac927x_core_init; | 5787 | spec->init = stac927x_core_init; |
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c index ee89db90c9b6..b70e26ad263f 100644 --- a/sound/pci/hda/patch_via.c +++ b/sound/pci/hda/patch_via.c | |||
@@ -1,10 +1,10 @@ | |||
1 | /* | 1 | /* |
2 | * Universal Interface for Intel High Definition Audio Codec | 2 | * Universal Interface for Intel High Definition Audio Codec |
3 | * | 3 | * |
4 | * HD audio interface patch for VIA VT1702/VT1708/VT1709 codec | 4 | * HD audio interface patch for VIA VT17xx/VT18xx/VT20xx codec |
5 | * | 5 | * |
6 | * Copyright (c) 2006-2008 Lydia Wang <lydiawang@viatech.com> | 6 | * (C) 2006-2009 VIA Technology, Inc. |
7 | * Takashi Iwai <tiwai@suse.de> | 7 | * (C) 2006-2008 Takashi Iwai <tiwai@suse.de> |
8 | * | 8 | * |
9 | * This driver is free software; you can redistribute it and/or modify | 9 | * This driver is free software; you can redistribute it and/or modify |
10 | * it under the terms of the GNU General Public License as published by | 10 | * it under the terms of the GNU General Public License as published by |
@@ -22,21 +22,27 @@ | |||
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* * * * * * * * * * * * * * Release History * * * * * * * * * * * * * * * * */ | 24 | /* * * * * * * * * * * * * * Release History * * * * * * * * * * * * * * * * */ |
25 | /* */ | 25 | /* */ |
26 | /* 2006-03-03 Lydia Wang Create the basic patch to support VT1708 codec */ | 26 | /* 2006-03-03 Lydia Wang Create the basic patch to support VT1708 codec */ |
27 | /* 2006-03-14 Lydia Wang Modify hard code for some pin widget nid */ | 27 | /* 2006-03-14 Lydia Wang Modify hard code for some pin widget nid */ |
28 | /* 2006-08-02 Lydia Wang Add support to VT1709 codec */ | 28 | /* 2006-08-02 Lydia Wang Add support to VT1709 codec */ |
29 | /* 2006-09-08 Lydia Wang Fix internal loopback recording source select bug */ | 29 | /* 2006-09-08 Lydia Wang Fix internal loopback recording source select bug */ |
30 | /* 2007-09-12 Lydia Wang Add EAPD enable during driver initialization */ | 30 | /* 2007-09-12 Lydia Wang Add EAPD enable during driver initialization */ |
31 | /* 2007-09-17 Lydia Wang Add VT1708B codec support */ | 31 | /* 2007-09-17 Lydia Wang Add VT1708B codec support */ |
32 | /* 2007-11-14 Lydia Wang Add VT1708A codec HP and CD pin connect config */ | 32 | /* 2007-11-14 Lydia Wang Add VT1708A codec HP and CD pin connect config */ |
33 | /* 2008-02-03 Lydia Wang Fix Rear channels and Back channels inverse issue */ | 33 | /* 2008-02-03 Lydia Wang Fix Rear channels and Back channels inverse issue */ |
34 | /* 2008-03-06 Lydia Wang Add VT1702 codec and VT1708S codec support */ | 34 | /* 2008-03-06 Lydia Wang Add VT1702 codec and VT1708S codec support */ |
35 | /* 2008-04-09 Lydia Wang Add mute front speaker when HP plugin */ | 35 | /* 2008-04-09 Lydia Wang Add mute front speaker when HP plugin */ |
36 | /* 2008-04-09 Lydia Wang Add Independent HP feature */ | 36 | /* 2008-04-09 Lydia Wang Add Independent HP feature */ |
37 | /* 2008-05-28 Lydia Wang Add second S/PDIF Out support for VT1702 */ | 37 | /* 2008-05-28 Lydia Wang Add second S/PDIF Out support for VT1702 */ |
38 | /* 2008-09-15 Logan Li Add VT1708S Mic Boost workaround/backdoor */ | 38 | /* 2008-09-15 Logan Li Add VT1708S Mic Boost workaround/backdoor */ |
39 | /* */ | 39 | /* 2009-02-16 Logan Li Add support for VT1718S */ |
40 | /* 2009-03-13 Logan Li Add support for VT1716S */ | ||
41 | /* 2009-04-14 Lydai Wang Add support for VT1828S and VT2020 */ | ||
42 | /* 2009-07-08 Lydia Wang Add support for VT2002P */ | ||
43 | /* 2009-07-21 Lydia Wang Add support for VT1812 */ | ||
44 | /* 2009-09-19 Lydia Wang Add support for VT1818S */ | ||
45 | /* */ | ||
40 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ | 46 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ |
41 | 47 | ||
42 | 48 | ||
@@ -76,14 +82,6 @@ | |||
76 | #define VT1702_HP_NID 0x17 | 82 | #define VT1702_HP_NID 0x17 |
77 | #define VT1702_DIGOUT_NID 0x11 | 83 | #define VT1702_DIGOUT_NID 0x11 |
78 | 84 | ||
79 | #define IS_VT1708_VENDORID(x) ((x) >= 0x11061708 && (x) <= 0x1106170b) | ||
80 | #define IS_VT1709_10CH_VENDORID(x) ((x) >= 0x1106e710 && (x) <= 0x1106e713) | ||
81 | #define IS_VT1709_6CH_VENDORID(x) ((x) >= 0x1106e714 && (x) <= 0x1106e717) | ||
82 | #define IS_VT1708B_8CH_VENDORID(x) ((x) >= 0x1106e720 && (x) <= 0x1106e723) | ||
83 | #define IS_VT1708B_4CH_VENDORID(x) ((x) >= 0x1106e724 && (x) <= 0x1106e727) | ||
84 | #define IS_VT1708S_VENDORID(x) ((x) >= 0x11060397 && (x) <= 0x11067397) | ||
85 | #define IS_VT1702_VENDORID(x) ((x) >= 0x11060398 && (x) <= 0x11067398) | ||
86 | |||
87 | enum VIA_HDA_CODEC { | 85 | enum VIA_HDA_CODEC { |
88 | UNKNOWN = -1, | 86 | UNKNOWN = -1, |
89 | VT1708, | 87 | VT1708, |
@@ -92,12 +90,76 @@ enum VIA_HDA_CODEC { | |||
92 | VT1708B_8CH, | 90 | VT1708B_8CH, |
93 | VT1708B_4CH, | 91 | VT1708B_4CH, |
94 | VT1708S, | 92 | VT1708S, |
93 | VT1708BCE, | ||
95 | VT1702, | 94 | VT1702, |
95 | VT1718S, | ||
96 | VT1716S, | ||
97 | VT2002P, | ||
98 | VT1812, | ||
96 | CODEC_TYPES, | 99 | CODEC_TYPES, |
97 | }; | 100 | }; |
98 | 101 | ||
99 | static enum VIA_HDA_CODEC get_codec_type(u32 vendor_id) | 102 | struct via_spec { |
103 | /* codec parameterization */ | ||
104 | struct snd_kcontrol_new *mixers[6]; | ||
105 | unsigned int num_mixers; | ||
106 | |||
107 | struct hda_verb *init_verbs[5]; | ||
108 | unsigned int num_iverbs; | ||
109 | |||
110 | char *stream_name_analog; | ||
111 | struct hda_pcm_stream *stream_analog_playback; | ||
112 | struct hda_pcm_stream *stream_analog_capture; | ||
113 | |||
114 | char *stream_name_digital; | ||
115 | struct hda_pcm_stream *stream_digital_playback; | ||
116 | struct hda_pcm_stream *stream_digital_capture; | ||
117 | |||
118 | /* playback */ | ||
119 | struct hda_multi_out multiout; | ||
120 | hda_nid_t slave_dig_outs[2]; | ||
121 | |||
122 | /* capture */ | ||
123 | unsigned int num_adc_nids; | ||
124 | hda_nid_t *adc_nids; | ||
125 | hda_nid_t mux_nids[3]; | ||
126 | hda_nid_t dig_in_nid; | ||
127 | hda_nid_t dig_in_pin; | ||
128 | |||
129 | /* capture source */ | ||
130 | const struct hda_input_mux *input_mux; | ||
131 | unsigned int cur_mux[3]; | ||
132 | |||
133 | /* PCM information */ | ||
134 | struct hda_pcm pcm_rec[3]; | ||
135 | |||
136 | /* dynamic controls, init_verbs and input_mux */ | ||
137 | struct auto_pin_cfg autocfg; | ||
138 | struct snd_array kctls; | ||
139 | struct hda_input_mux private_imux[2]; | ||
140 | hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS]; | ||
141 | |||
142 | /* HP mode source */ | ||
143 | const struct hda_input_mux *hp_mux; | ||
144 | unsigned int hp_independent_mode; | ||
145 | unsigned int hp_independent_mode_index; | ||
146 | unsigned int smart51_enabled; | ||
147 | unsigned int dmic_enabled; | ||
148 | enum VIA_HDA_CODEC codec_type; | ||
149 | |||
150 | /* work to check hp jack state */ | ||
151 | struct hda_codec *codec; | ||
152 | struct delayed_work vt1708_hp_work; | ||
153 | int vt1708_jack_detectect; | ||
154 | int vt1708_hp_present; | ||
155 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
156 | struct hda_loopback_check loopback; | ||
157 | #endif | ||
158 | }; | ||
159 | |||
160 | static enum VIA_HDA_CODEC get_codec_type(struct hda_codec *codec) | ||
100 | { | 161 | { |
162 | u32 vendor_id = codec->vendor_id; | ||
101 | u16 ven_id = vendor_id >> 16; | 163 | u16 ven_id = vendor_id >> 16; |
102 | u16 dev_id = vendor_id & 0xffff; | 164 | u16 dev_id = vendor_id & 0xffff; |
103 | enum VIA_HDA_CODEC codec_type; | 165 | enum VIA_HDA_CODEC codec_type; |
@@ -111,9 +173,11 @@ static enum VIA_HDA_CODEC get_codec_type(u32 vendor_id) | |||
111 | codec_type = VT1709_10CH; | 173 | codec_type = VT1709_10CH; |
112 | else if (dev_id >= 0xe714 && dev_id <= 0xe717) | 174 | else if (dev_id >= 0xe714 && dev_id <= 0xe717) |
113 | codec_type = VT1709_6CH; | 175 | codec_type = VT1709_6CH; |
114 | else if (dev_id >= 0xe720 && dev_id <= 0xe723) | 176 | else if (dev_id >= 0xe720 && dev_id <= 0xe723) { |
115 | codec_type = VT1708B_8CH; | 177 | codec_type = VT1708B_8CH; |
116 | else if (dev_id >= 0xe724 && dev_id <= 0xe727) | 178 | if (snd_hda_param_read(codec, 0x16, AC_PAR_CONNLIST_LEN) == 0x7) |
179 | codec_type = VT1708BCE; | ||
180 | } else if (dev_id >= 0xe724 && dev_id <= 0xe727) | ||
117 | codec_type = VT1708B_4CH; | 181 | codec_type = VT1708B_4CH; |
118 | else if ((dev_id & 0xfff) == 0x397 | 182 | else if ((dev_id & 0xfff) == 0x397 |
119 | && (dev_id >> 12) < 8) | 183 | && (dev_id >> 12) < 8) |
@@ -121,6 +185,19 @@ static enum VIA_HDA_CODEC get_codec_type(u32 vendor_id) | |||
121 | else if ((dev_id & 0xfff) == 0x398 | 185 | else if ((dev_id & 0xfff) == 0x398 |
122 | && (dev_id >> 12) < 8) | 186 | && (dev_id >> 12) < 8) |
123 | codec_type = VT1702; | 187 | codec_type = VT1702; |
188 | else if ((dev_id & 0xfff) == 0x428 | ||
189 | && (dev_id >> 12) < 8) | ||
190 | codec_type = VT1718S; | ||
191 | else if (dev_id == 0x0433 || dev_id == 0xa721) | ||
192 | codec_type = VT1716S; | ||
193 | else if (dev_id == 0x0441 || dev_id == 0x4441) | ||
194 | codec_type = VT1718S; | ||
195 | else if (dev_id == 0x0438 || dev_id == 0x4438) | ||
196 | codec_type = VT2002P; | ||
197 | else if (dev_id == 0x0448) | ||
198 | codec_type = VT1812; | ||
199 | else if (dev_id == 0x0440) | ||
200 | codec_type = VT1708S; | ||
124 | else | 201 | else |
125 | codec_type = UNKNOWN; | 202 | codec_type = UNKNOWN; |
126 | return codec_type; | 203 | return codec_type; |
@@ -128,10 +205,16 @@ static enum VIA_HDA_CODEC get_codec_type(u32 vendor_id) | |||
128 | 205 | ||
129 | #define VIA_HP_EVENT 0x01 | 206 | #define VIA_HP_EVENT 0x01 |
130 | #define VIA_GPIO_EVENT 0x02 | 207 | #define VIA_GPIO_EVENT 0x02 |
208 | #define VIA_JACK_EVENT 0x04 | ||
209 | #define VIA_MONO_EVENT 0x08 | ||
210 | #define VIA_SPEAKER_EVENT 0x10 | ||
211 | #define VIA_BIND_HP_EVENT 0x20 | ||
131 | 212 | ||
132 | enum { | 213 | enum { |
133 | VIA_CTL_WIDGET_VOL, | 214 | VIA_CTL_WIDGET_VOL, |
134 | VIA_CTL_WIDGET_MUTE, | 215 | VIA_CTL_WIDGET_MUTE, |
216 | VIA_CTL_WIDGET_ANALOG_MUTE, | ||
217 | VIA_CTL_WIDGET_BIND_PIN_MUTE, | ||
135 | }; | 218 | }; |
136 | 219 | ||
137 | enum { | 220 | enum { |
@@ -141,99 +224,162 @@ enum { | |||
141 | AUTO_SEQ_SIDE | 224 | AUTO_SEQ_SIDE |
142 | }; | 225 | }; |
143 | 226 | ||
144 | /* Some VT1708S based boards gets the micboost setting wrong, so we have | 227 | static void analog_low_current_mode(struct hda_codec *codec, int stream_idle); |
145 | * to apply some brute-force and re-write the TLV's by software. */ | 228 | static void set_jack_power_state(struct hda_codec *codec); |
146 | static int mic_boost_tlv(struct snd_kcontrol *kcontrol, int op_flag, | 229 | static int is_aa_path_mute(struct hda_codec *codec); |
147 | unsigned int size, unsigned int __user *_tlv) | 230 | |
231 | static void vt1708_start_hp_work(struct via_spec *spec) | ||
148 | { | 232 | { |
149 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 233 | if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0) |
150 | hda_nid_t nid = get_amp_nid(kcontrol); | 234 | return; |
235 | snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81, | ||
236 | !spec->vt1708_jack_detectect); | ||
237 | if (!delayed_work_pending(&spec->vt1708_hp_work)) | ||
238 | schedule_delayed_work(&spec->vt1708_hp_work, | ||
239 | msecs_to_jiffies(100)); | ||
240 | } | ||
151 | 241 | ||
152 | if (get_codec_type(codec->vendor_id) == VT1708S | 242 | static void vt1708_stop_hp_work(struct via_spec *spec) |
153 | && (nid == 0x1a || nid == 0x1e)) { | 243 | { |
154 | if (size < 4 * sizeof(unsigned int)) | 244 | if (spec->codec_type != VT1708 || spec->autocfg.hp_pins[0] == 0) |
155 | return -ENOMEM; | 245 | return; |
156 | if (put_user(1, _tlv)) /* SNDRV_CTL_TLVT_DB_SCALE */ | 246 | if (snd_hda_get_bool_hint(spec->codec, "analog_loopback_hp_detect") == 1 |
157 | return -EFAULT; | 247 | && !is_aa_path_mute(spec->codec)) |
158 | if (put_user(2 * sizeof(unsigned int), _tlv + 1)) | 248 | return; |
159 | return -EFAULT; | 249 | snd_hda_codec_write(spec->codec, 0x1, 0, 0xf81, |
160 | if (put_user(0, _tlv + 2)) /* offset = 0 */ | 250 | !spec->vt1708_jack_detectect); |
161 | return -EFAULT; | 251 | cancel_delayed_work(&spec->vt1708_hp_work); |
162 | if (put_user(1000, _tlv + 3)) /* step size = 10 dB */ | 252 | flush_scheduled_work(); |
163 | return -EFAULT; | ||
164 | } | ||
165 | return 0; | ||
166 | } | 253 | } |
167 | 254 | ||
168 | static int mic_boost_volume_info(struct snd_kcontrol *kcontrol, | 255 | |
169 | struct snd_ctl_elem_info *uinfo) | 256 | static int analog_input_switch_put(struct snd_kcontrol *kcontrol, |
257 | struct snd_ctl_elem_value *ucontrol) | ||
170 | { | 258 | { |
259 | int change = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol); | ||
171 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 260 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
172 | hda_nid_t nid = get_amp_nid(kcontrol); | ||
173 | 261 | ||
174 | if (get_codec_type(codec->vendor_id) == VT1708S | 262 | set_jack_power_state(codec); |
175 | && (nid == 0x1a || nid == 0x1e)) { | 263 | analog_low_current_mode(snd_kcontrol_chip(kcontrol), -1); |
176 | uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; | 264 | if (snd_hda_get_bool_hint(codec, "analog_loopback_hp_detect") == 1) { |
177 | uinfo->count = 2; | 265 | if (is_aa_path_mute(codec)) |
178 | uinfo->value.integer.min = 0; | 266 | vt1708_start_hp_work(codec->spec); |
179 | uinfo->value.integer.max = 3; | 267 | else |
268 | vt1708_stop_hp_work(codec->spec); | ||
180 | } | 269 | } |
181 | return 0; | 270 | return change; |
182 | } | 271 | } |
183 | 272 | ||
184 | static struct snd_kcontrol_new vt1708_control_templates[] = { | 273 | /* modify .put = snd_hda_mixer_amp_switch_put */ |
185 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), | 274 | #define ANALOG_INPUT_MUTE \ |
186 | HDA_CODEC_MUTE(NULL, 0, 0, 0), | 275 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
187 | }; | 276 | .name = NULL, \ |
188 | 277 | .index = 0, \ | |
189 | 278 | .info = snd_hda_mixer_amp_switch_info, \ | |
190 | struct via_spec { | 279 | .get = snd_hda_mixer_amp_switch_get, \ |
191 | /* codec parameterization */ | 280 | .put = analog_input_switch_put, \ |
192 | struct snd_kcontrol_new *mixers[3]; | 281 | .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) } |
193 | unsigned int num_mixers; | ||
194 | 282 | ||
195 | struct hda_verb *init_verbs[5]; | 283 | static void via_hp_bind_automute(struct hda_codec *codec); |
196 | unsigned int num_iverbs; | ||
197 | 284 | ||
198 | char *stream_name_analog; | 285 | static int bind_pin_switch_put(struct snd_kcontrol *kcontrol, |
199 | struct hda_pcm_stream *stream_analog_playback; | 286 | struct snd_ctl_elem_value *ucontrol) |
200 | struct hda_pcm_stream *stream_analog_capture; | 287 | { |
201 | 288 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | |
202 | char *stream_name_digital; | 289 | struct via_spec *spec = codec->spec; |
203 | struct hda_pcm_stream *stream_digital_playback; | 290 | int i; |
204 | struct hda_pcm_stream *stream_digital_capture; | 291 | int change = 0; |
205 | |||
206 | /* playback */ | ||
207 | struct hda_multi_out multiout; | ||
208 | hda_nid_t slave_dig_outs[2]; | ||
209 | |||
210 | /* capture */ | ||
211 | unsigned int num_adc_nids; | ||
212 | hda_nid_t *adc_nids; | ||
213 | hda_nid_t mux_nids[3]; | ||
214 | hda_nid_t dig_in_nid; | ||
215 | hda_nid_t dig_in_pin; | ||
216 | 292 | ||
217 | /* capture source */ | 293 | long *valp = ucontrol->value.integer.value; |
218 | const struct hda_input_mux *input_mux; | 294 | int lmute, rmute; |
219 | unsigned int cur_mux[3]; | 295 | if (strstr(kcontrol->id.name, "Switch") == NULL) { |
296 | snd_printd("Invalid control!\n"); | ||
297 | return change; | ||
298 | } | ||
299 | change = snd_hda_mixer_amp_switch_put(kcontrol, | ||
300 | ucontrol); | ||
301 | /* Get mute value */ | ||
302 | lmute = *valp ? 0 : HDA_AMP_MUTE; | ||
303 | valp++; | ||
304 | rmute = *valp ? 0 : HDA_AMP_MUTE; | ||
305 | |||
306 | /* Set hp pins */ | ||
307 | if (!spec->hp_independent_mode) { | ||
308 | for (i = 0; i < spec->autocfg.hp_outs; i++) { | ||
309 | snd_hda_codec_amp_update( | ||
310 | codec, spec->autocfg.hp_pins[i], | ||
311 | 0, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
312 | lmute); | ||
313 | snd_hda_codec_amp_update( | ||
314 | codec, spec->autocfg.hp_pins[i], | ||
315 | 1, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
316 | rmute); | ||
317 | } | ||
318 | } | ||
220 | 319 | ||
221 | /* PCM information */ | 320 | if (!lmute && !rmute) { |
222 | struct hda_pcm pcm_rec[3]; | 321 | /* Line Outs */ |
322 | for (i = 0; i < spec->autocfg.line_outs; i++) | ||
323 | snd_hda_codec_amp_stereo( | ||
324 | codec, spec->autocfg.line_out_pins[i], | ||
325 | HDA_OUTPUT, 0, HDA_AMP_MUTE, 0); | ||
326 | /* Speakers */ | ||
327 | for (i = 0; i < spec->autocfg.speaker_outs; i++) | ||
328 | snd_hda_codec_amp_stereo( | ||
329 | codec, spec->autocfg.speaker_pins[i], | ||
330 | HDA_OUTPUT, 0, HDA_AMP_MUTE, 0); | ||
331 | /* unmute */ | ||
332 | via_hp_bind_automute(codec); | ||
223 | 333 | ||
224 | /* dynamic controls, init_verbs and input_mux */ | 334 | } else { |
225 | struct auto_pin_cfg autocfg; | 335 | if (lmute) { |
226 | struct snd_array kctls; | 336 | /* Mute all left channels */ |
227 | struct hda_input_mux private_imux[2]; | 337 | for (i = 1; i < spec->autocfg.line_outs; i++) |
228 | hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS]; | 338 | snd_hda_codec_amp_update( |
339 | codec, | ||
340 | spec->autocfg.line_out_pins[i], | ||
341 | 0, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
342 | lmute); | ||
343 | for (i = 0; i < spec->autocfg.speaker_outs; i++) | ||
344 | snd_hda_codec_amp_update( | ||
345 | codec, | ||
346 | spec->autocfg.speaker_pins[i], | ||
347 | 0, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
348 | lmute); | ||
349 | } | ||
350 | if (rmute) { | ||
351 | /* mute all right channels */ | ||
352 | for (i = 1; i < spec->autocfg.line_outs; i++) | ||
353 | snd_hda_codec_amp_update( | ||
354 | codec, | ||
355 | spec->autocfg.line_out_pins[i], | ||
356 | 1, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
357 | rmute); | ||
358 | for (i = 0; i < spec->autocfg.speaker_outs; i++) | ||
359 | snd_hda_codec_amp_update( | ||
360 | codec, | ||
361 | spec->autocfg.speaker_pins[i], | ||
362 | 1, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
363 | rmute); | ||
364 | } | ||
365 | } | ||
366 | return change; | ||
367 | } | ||
229 | 368 | ||
230 | /* HP mode source */ | 369 | #define BIND_PIN_MUTE \ |
231 | const struct hda_input_mux *hp_mux; | 370 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ |
232 | unsigned int hp_independent_mode; | 371 | .name = NULL, \ |
372 | .index = 0, \ | ||
373 | .info = snd_hda_mixer_amp_switch_info, \ | ||
374 | .get = snd_hda_mixer_amp_switch_get, \ | ||
375 | .put = bind_pin_switch_put, \ | ||
376 | .private_value = HDA_COMPOSE_AMP_VAL(0, 3, 0, 0) } | ||
233 | 377 | ||
234 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 378 | static struct snd_kcontrol_new via_control_templates[] = { |
235 | struct hda_loopback_check loopback; | 379 | HDA_CODEC_VOLUME(NULL, 0, 0, 0), |
236 | #endif | 380 | HDA_CODEC_MUTE(NULL, 0, 0, 0), |
381 | ANALOG_INPUT_MUTE, | ||
382 | BIND_PIN_MUTE, | ||
237 | }; | 383 | }; |
238 | 384 | ||
239 | static hda_nid_t vt1708_adc_nids[2] = { | 385 | static hda_nid_t vt1708_adc_nids[2] = { |
@@ -261,6 +407,27 @@ static hda_nid_t vt1702_adc_nids[3] = { | |||
261 | 0x12, 0x20, 0x1F | 407 | 0x12, 0x20, 0x1F |
262 | }; | 408 | }; |
263 | 409 | ||
410 | static hda_nid_t vt1718S_adc_nids[2] = { | ||
411 | /* ADC1-2 */ | ||
412 | 0x10, 0x11 | ||
413 | }; | ||
414 | |||
415 | static hda_nid_t vt1716S_adc_nids[2] = { | ||
416 | /* ADC1-2 */ | ||
417 | 0x13, 0x14 | ||
418 | }; | ||
419 | |||
420 | static hda_nid_t vt2002P_adc_nids[2] = { | ||
421 | /* ADC1-2 */ | ||
422 | 0x10, 0x11 | ||
423 | }; | ||
424 | |||
425 | static hda_nid_t vt1812_adc_nids[2] = { | ||
426 | /* ADC1-2 */ | ||
427 | 0x10, 0x11 | ||
428 | }; | ||
429 | |||
430 | |||
264 | /* add dynamic controls */ | 431 | /* add dynamic controls */ |
265 | static int via_add_control(struct via_spec *spec, int type, const char *name, | 432 | static int via_add_control(struct via_spec *spec, int type, const char *name, |
266 | unsigned long val) | 433 | unsigned long val) |
@@ -271,10 +438,12 @@ static int via_add_control(struct via_spec *spec, int type, const char *name, | |||
271 | knew = snd_array_new(&spec->kctls); | 438 | knew = snd_array_new(&spec->kctls); |
272 | if (!knew) | 439 | if (!knew) |
273 | return -ENOMEM; | 440 | return -ENOMEM; |
274 | *knew = vt1708_control_templates[type]; | 441 | *knew = via_control_templates[type]; |
275 | knew->name = kstrdup(name, GFP_KERNEL); | 442 | knew->name = kstrdup(name, GFP_KERNEL); |
276 | if (!knew->name) | 443 | if (!knew->name) |
277 | return -ENOMEM; | 444 | return -ENOMEM; |
445 | if (get_amp_nid_(val)) | ||
446 | knew->subdevice = HDA_SUBDEV_NID_FLAG | get_amp_nid_(val); | ||
278 | knew->private_value = val; | 447 | knew->private_value = val; |
279 | return 0; | 448 | return 0; |
280 | } | 449 | } |
@@ -293,8 +462,8 @@ static void via_free_kctls(struct hda_codec *codec) | |||
293 | } | 462 | } |
294 | 463 | ||
295 | /* create input playback/capture controls for the given pin */ | 464 | /* create input playback/capture controls for the given pin */ |
296 | static int via_new_analog_input(struct via_spec *spec, hda_nid_t pin, | 465 | static int via_new_analog_input(struct via_spec *spec, const char *ctlname, |
297 | const char *ctlname, int idx, int mix_nid) | 466 | int idx, int mix_nid) |
298 | { | 467 | { |
299 | char name[32]; | 468 | char name[32]; |
300 | int err; | 469 | int err; |
@@ -305,7 +474,7 @@ static int via_new_analog_input(struct via_spec *spec, hda_nid_t pin, | |||
305 | if (err < 0) | 474 | if (err < 0) |
306 | return err; | 475 | return err; |
307 | sprintf(name, "%s Playback Switch", ctlname); | 476 | sprintf(name, "%s Playback Switch", ctlname); |
308 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name, | 477 | err = via_add_control(spec, VIA_CTL_WIDGET_ANALOG_MUTE, name, |
309 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); | 478 | HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT)); |
310 | if (err < 0) | 479 | if (err < 0) |
311 | return err; | 480 | return err; |
@@ -322,7 +491,7 @@ static void via_auto_set_output_and_unmute(struct hda_codec *codec, | |||
322 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, | 491 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE, |
323 | AMP_OUT_UNMUTE); | 492 | AMP_OUT_UNMUTE); |
324 | if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD) | 493 | if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD) |
325 | snd_hda_codec_write(codec, nid, 0, | 494 | snd_hda_codec_write(codec, nid, 0, |
326 | AC_VERB_SET_EAPD_BTLENABLE, 0x02); | 495 | AC_VERB_SET_EAPD_BTLENABLE, 0x02); |
327 | } | 496 | } |
328 | 497 | ||
@@ -343,10 +512,13 @@ static void via_auto_init_hp_out(struct hda_codec *codec) | |||
343 | { | 512 | { |
344 | struct via_spec *spec = codec->spec; | 513 | struct via_spec *spec = codec->spec; |
345 | hda_nid_t pin; | 514 | hda_nid_t pin; |
515 | int i; | ||
346 | 516 | ||
347 | pin = spec->autocfg.hp_pins[0]; | 517 | for (i = 0; i < spec->autocfg.hp_outs; i++) { |
348 | if (pin) /* connect to front */ | 518 | pin = spec->autocfg.hp_pins[i]; |
349 | via_auto_set_output_and_unmute(codec, pin, PIN_HP, 0); | 519 | if (pin) /* connect to front */ |
520 | via_auto_set_output_and_unmute(codec, pin, PIN_HP, 0); | ||
521 | } | ||
350 | } | 522 | } |
351 | 523 | ||
352 | static void via_auto_init_analog_input(struct hda_codec *codec) | 524 | static void via_auto_init_analog_input(struct hda_codec *codec) |
@@ -364,6 +536,502 @@ static void via_auto_init_analog_input(struct hda_codec *codec) | |||
364 | 536 | ||
365 | } | 537 | } |
366 | } | 538 | } |
539 | |||
540 | static int is_smart51_pins(struct via_spec *spec, hda_nid_t pin); | ||
541 | |||
542 | static void set_pin_power_state(struct hda_codec *codec, hda_nid_t nid, | ||
543 | unsigned int *affected_parm) | ||
544 | { | ||
545 | unsigned parm; | ||
546 | unsigned def_conf = snd_hda_codec_get_pincfg(codec, nid); | ||
547 | unsigned no_presence = (def_conf & AC_DEFCFG_MISC) | ||
548 | >> AC_DEFCFG_MISC_SHIFT | ||
549 | & AC_DEFCFG_MISC_NO_PRESENCE; /* do not support pin sense */ | ||
550 | unsigned present = snd_hda_jack_detect(codec, nid); | ||
551 | struct via_spec *spec = codec->spec; | ||
552 | if ((spec->smart51_enabled && is_smart51_pins(spec, nid)) | ||
553 | || ((no_presence || present) | ||
554 | && get_defcfg_connect(def_conf) != AC_JACK_PORT_NONE)) { | ||
555 | *affected_parm = AC_PWRST_D0; /* if it's connected */ | ||
556 | parm = AC_PWRST_D0; | ||
557 | } else | ||
558 | parm = AC_PWRST_D3; | ||
559 | |||
560 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE, parm); | ||
561 | } | ||
562 | |||
563 | static void set_jack_power_state(struct hda_codec *codec) | ||
564 | { | ||
565 | struct via_spec *spec = codec->spec; | ||
566 | int imux_is_smixer; | ||
567 | unsigned int parm; | ||
568 | |||
569 | if (spec->codec_type == VT1702) { | ||
570 | imux_is_smixer = snd_hda_codec_read( | ||
571 | codec, 0x13, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3; | ||
572 | /* inputs */ | ||
573 | /* PW 1/2/5 (14h/15h/18h) */ | ||
574 | parm = AC_PWRST_D3; | ||
575 | set_pin_power_state(codec, 0x14, &parm); | ||
576 | set_pin_power_state(codec, 0x15, &parm); | ||
577 | set_pin_power_state(codec, 0x18, &parm); | ||
578 | if (imux_is_smixer) | ||
579 | parm = AC_PWRST_D0; /* SW0 = stereo mixer (idx 3) */ | ||
580 | /* SW0 (13h), AIW 0/1/2 (12h/1fh/20h) */ | ||
581 | snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE, | ||
582 | parm); | ||
583 | snd_hda_codec_write(codec, 0x12, 0, AC_VERB_SET_POWER_STATE, | ||
584 | parm); | ||
585 | snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_POWER_STATE, | ||
586 | parm); | ||
587 | snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_POWER_STATE, | ||
588 | parm); | ||
589 | |||
590 | /* outputs */ | ||
591 | /* PW 3/4 (16h/17h) */ | ||
592 | parm = AC_PWRST_D3; | ||
593 | set_pin_power_state(codec, 0x16, &parm); | ||
594 | set_pin_power_state(codec, 0x17, &parm); | ||
595 | /* MW0 (1ah), AOW 0/1 (10h/1dh) */ | ||
596 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_POWER_STATE, | ||
597 | imux_is_smixer ? AC_PWRST_D0 : parm); | ||
598 | snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE, | ||
599 | parm); | ||
600 | snd_hda_codec_write(codec, 0x1d, 0, AC_VERB_SET_POWER_STATE, | ||
601 | parm); | ||
602 | } else if (spec->codec_type == VT1708B_8CH | ||
603 | || spec->codec_type == VT1708B_4CH | ||
604 | || spec->codec_type == VT1708S) { | ||
605 | /* SW0 (17h) = stereo mixer */ | ||
606 | int is_8ch = spec->codec_type != VT1708B_4CH; | ||
607 | imux_is_smixer = snd_hda_codec_read( | ||
608 | codec, 0x17, 0, AC_VERB_GET_CONNECT_SEL, 0x00) | ||
609 | == ((spec->codec_type == VT1708S) ? 5 : 0); | ||
610 | /* inputs */ | ||
611 | /* PW 1/2/5 (1ah/1bh/1eh) */ | ||
612 | parm = AC_PWRST_D3; | ||
613 | set_pin_power_state(codec, 0x1a, &parm); | ||
614 | set_pin_power_state(codec, 0x1b, &parm); | ||
615 | set_pin_power_state(codec, 0x1e, &parm); | ||
616 | if (imux_is_smixer) | ||
617 | parm = AC_PWRST_D0; | ||
618 | /* SW0 (17h), AIW 0/1 (13h/14h) */ | ||
619 | snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_POWER_STATE, | ||
620 | parm); | ||
621 | snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE, | ||
622 | parm); | ||
623 | snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_POWER_STATE, | ||
624 | parm); | ||
625 | |||
626 | /* outputs */ | ||
627 | /* PW0 (19h), SW1 (18h), AOW1 (11h) */ | ||
628 | parm = AC_PWRST_D3; | ||
629 | set_pin_power_state(codec, 0x19, &parm); | ||
630 | snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_POWER_STATE, | ||
631 | parm); | ||
632 | snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE, | ||
633 | parm); | ||
634 | |||
635 | /* PW6 (22h), SW2 (26h), AOW2 (24h) */ | ||
636 | if (is_8ch) { | ||
637 | parm = AC_PWRST_D3; | ||
638 | set_pin_power_state(codec, 0x22, &parm); | ||
639 | snd_hda_codec_write(codec, 0x26, 0, | ||
640 | AC_VERB_SET_POWER_STATE, parm); | ||
641 | snd_hda_codec_write(codec, 0x24, 0, | ||
642 | AC_VERB_SET_POWER_STATE, parm); | ||
643 | } | ||
644 | |||
645 | /* PW 3/4/7 (1ch/1dh/23h) */ | ||
646 | parm = AC_PWRST_D3; | ||
647 | /* force to D0 for internal Speaker */ | ||
648 | set_pin_power_state(codec, 0x1c, &parm); | ||
649 | set_pin_power_state(codec, 0x1d, &parm); | ||
650 | if (is_8ch) | ||
651 | set_pin_power_state(codec, 0x23, &parm); | ||
652 | /* MW0 (16h), Sw3 (27h), AOW 0/3 (10h/25h) */ | ||
653 | snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_POWER_STATE, | ||
654 | imux_is_smixer ? AC_PWRST_D0 : parm); | ||
655 | snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE, | ||
656 | parm); | ||
657 | if (is_8ch) { | ||
658 | snd_hda_codec_write(codec, 0x25, 0, | ||
659 | AC_VERB_SET_POWER_STATE, parm); | ||
660 | snd_hda_codec_write(codec, 0x27, 0, | ||
661 | AC_VERB_SET_POWER_STATE, parm); | ||
662 | } | ||
663 | } else if (spec->codec_type == VT1718S) { | ||
664 | /* MUX6 (1eh) = stereo mixer */ | ||
665 | imux_is_smixer = snd_hda_codec_read( | ||
666 | codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5; | ||
667 | /* inputs */ | ||
668 | /* PW 5/6/7 (29h/2ah/2bh) */ | ||
669 | parm = AC_PWRST_D3; | ||
670 | set_pin_power_state(codec, 0x29, &parm); | ||
671 | set_pin_power_state(codec, 0x2a, &parm); | ||
672 | set_pin_power_state(codec, 0x2b, &parm); | ||
673 | if (imux_is_smixer) | ||
674 | parm = AC_PWRST_D0; | ||
675 | /* MUX6/7 (1eh/1fh), AIW 0/1 (10h/11h) */ | ||
676 | snd_hda_codec_write(codec, 0x1e, 0, AC_VERB_SET_POWER_STATE, | ||
677 | parm); | ||
678 | snd_hda_codec_write(codec, 0x1f, 0, AC_VERB_SET_POWER_STATE, | ||
679 | parm); | ||
680 | snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE, | ||
681 | parm); | ||
682 | snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE, | ||
683 | parm); | ||
684 | |||
685 | /* outputs */ | ||
686 | /* PW3 (27h), MW2 (1ah), AOW3 (bh) */ | ||
687 | parm = AC_PWRST_D3; | ||
688 | set_pin_power_state(codec, 0x27, &parm); | ||
689 | snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_POWER_STATE, | ||
690 | parm); | ||
691 | snd_hda_codec_write(codec, 0xb, 0, AC_VERB_SET_POWER_STATE, | ||
692 | parm); | ||
693 | |||
694 | /* PW2 (26h), AOW2 (ah) */ | ||
695 | parm = AC_PWRST_D3; | ||
696 | set_pin_power_state(codec, 0x26, &parm); | ||
697 | snd_hda_codec_write(codec, 0xa, 0, AC_VERB_SET_POWER_STATE, | ||
698 | parm); | ||
699 | |||
700 | /* PW0/1 (24h/25h) */ | ||
701 | parm = AC_PWRST_D3; | ||
702 | set_pin_power_state(codec, 0x24, &parm); | ||
703 | set_pin_power_state(codec, 0x25, &parm); | ||
704 | if (!spec->hp_independent_mode) /* check for redirected HP */ | ||
705 | set_pin_power_state(codec, 0x28, &parm); | ||
706 | snd_hda_codec_write(codec, 0x8, 0, AC_VERB_SET_POWER_STATE, | ||
707 | parm); | ||
708 | snd_hda_codec_write(codec, 0x9, 0, AC_VERB_SET_POWER_STATE, | ||
709 | parm); | ||
710 | /* MW9 (21h), Mw2 (1ah), AOW0 (8h) */ | ||
711 | snd_hda_codec_write(codec, 0x21, 0, AC_VERB_SET_POWER_STATE, | ||
712 | imux_is_smixer ? AC_PWRST_D0 : parm); | ||
713 | if (spec->hp_independent_mode) { | ||
714 | /* PW4 (28h), MW3 (1bh), MUX1(34h), AOW4 (ch) */ | ||
715 | parm = AC_PWRST_D3; | ||
716 | set_pin_power_state(codec, 0x28, &parm); | ||
717 | snd_hda_codec_write(codec, 0x1b, 0, | ||
718 | AC_VERB_SET_POWER_STATE, parm); | ||
719 | snd_hda_codec_write(codec, 0x34, 0, | ||
720 | AC_VERB_SET_POWER_STATE, parm); | ||
721 | snd_hda_codec_write(codec, 0xc, 0, | ||
722 | AC_VERB_SET_POWER_STATE, parm); | ||
723 | } | ||
724 | } else if (spec->codec_type == VT1716S) { | ||
725 | unsigned int mono_out, present; | ||
726 | /* SW0 (17h) = stereo mixer */ | ||
727 | imux_is_smixer = snd_hda_codec_read( | ||
728 | codec, 0x17, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5; | ||
729 | /* inputs */ | ||
730 | /* PW 1/2/5 (1ah/1bh/1eh) */ | ||
731 | parm = AC_PWRST_D3; | ||
732 | set_pin_power_state(codec, 0x1a, &parm); | ||
733 | set_pin_power_state(codec, 0x1b, &parm); | ||
734 | set_pin_power_state(codec, 0x1e, &parm); | ||
735 | if (imux_is_smixer) | ||
736 | parm = AC_PWRST_D0; | ||
737 | /* SW0 (17h), AIW0(13h) */ | ||
738 | snd_hda_codec_write(codec, 0x17, 0, AC_VERB_SET_POWER_STATE, | ||
739 | parm); | ||
740 | snd_hda_codec_write(codec, 0x13, 0, AC_VERB_SET_POWER_STATE, | ||
741 | parm); | ||
742 | |||
743 | parm = AC_PWRST_D3; | ||
744 | set_pin_power_state(codec, 0x1e, &parm); | ||
745 | /* PW11 (22h) */ | ||
746 | if (spec->dmic_enabled) | ||
747 | set_pin_power_state(codec, 0x22, &parm); | ||
748 | else | ||
749 | snd_hda_codec_write( | ||
750 | codec, 0x22, 0, | ||
751 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); | ||
752 | |||
753 | /* SW2(26h), AIW1(14h) */ | ||
754 | snd_hda_codec_write(codec, 0x26, 0, AC_VERB_SET_POWER_STATE, | ||
755 | parm); | ||
756 | snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_POWER_STATE, | ||
757 | parm); | ||
758 | |||
759 | /* outputs */ | ||
760 | /* PW0 (19h), SW1 (18h), AOW1 (11h) */ | ||
761 | parm = AC_PWRST_D3; | ||
762 | set_pin_power_state(codec, 0x19, &parm); | ||
763 | /* Smart 5.1 PW2(1bh) */ | ||
764 | if (spec->smart51_enabled) | ||
765 | set_pin_power_state(codec, 0x1b, &parm); | ||
766 | snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_POWER_STATE, | ||
767 | parm); | ||
768 | snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_POWER_STATE, | ||
769 | parm); | ||
770 | |||
771 | /* PW7 (23h), SW3 (27h), AOW3 (25h) */ | ||
772 | parm = AC_PWRST_D3; | ||
773 | set_pin_power_state(codec, 0x23, &parm); | ||
774 | /* Smart 5.1 PW1(1ah) */ | ||
775 | if (spec->smart51_enabled) | ||
776 | set_pin_power_state(codec, 0x1a, &parm); | ||
777 | snd_hda_codec_write(codec, 0x27, 0, AC_VERB_SET_POWER_STATE, | ||
778 | parm); | ||
779 | |||
780 | /* Smart 5.1 PW5(1eh) */ | ||
781 | if (spec->smart51_enabled) | ||
782 | set_pin_power_state(codec, 0x1e, &parm); | ||
783 | snd_hda_codec_write(codec, 0x25, 0, AC_VERB_SET_POWER_STATE, | ||
784 | parm); | ||
785 | |||
786 | /* Mono out */ | ||
787 | /* SW4(28h)->MW1(29h)-> PW12 (2ah)*/ | ||
788 | present = snd_hda_jack_detect(codec, 0x1c); | ||
789 | if (present) | ||
790 | mono_out = 0; | ||
791 | else { | ||
792 | present = snd_hda_jack_detect(codec, 0x1d); | ||
793 | if (!spec->hp_independent_mode && present) | ||
794 | mono_out = 0; | ||
795 | else | ||
796 | mono_out = 1; | ||
797 | } | ||
798 | parm = mono_out ? AC_PWRST_D0 : AC_PWRST_D3; | ||
799 | snd_hda_codec_write(codec, 0x28, 0, AC_VERB_SET_POWER_STATE, | ||
800 | parm); | ||
801 | snd_hda_codec_write(codec, 0x29, 0, AC_VERB_SET_POWER_STATE, | ||
802 | parm); | ||
803 | snd_hda_codec_write(codec, 0x2a, 0, AC_VERB_SET_POWER_STATE, | ||
804 | parm); | ||
805 | |||
806 | /* PW 3/4 (1ch/1dh) */ | ||
807 | parm = AC_PWRST_D3; | ||
808 | set_pin_power_state(codec, 0x1c, &parm); | ||
809 | set_pin_power_state(codec, 0x1d, &parm); | ||
810 | /* HP Independent Mode, power on AOW3 */ | ||
811 | if (spec->hp_independent_mode) | ||
812 | snd_hda_codec_write(codec, 0x25, 0, | ||
813 | AC_VERB_SET_POWER_STATE, parm); | ||
814 | |||
815 | /* force to D0 for internal Speaker */ | ||
816 | /* MW0 (16h), AOW0 (10h) */ | ||
817 | snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_POWER_STATE, | ||
818 | imux_is_smixer ? AC_PWRST_D0 : parm); | ||
819 | snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_POWER_STATE, | ||
820 | mono_out ? AC_PWRST_D0 : parm); | ||
821 | } else if (spec->codec_type == VT2002P) { | ||
822 | unsigned int present; | ||
823 | /* MUX9 (1eh) = stereo mixer */ | ||
824 | imux_is_smixer = snd_hda_codec_read( | ||
825 | codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 3; | ||
826 | /* inputs */ | ||
827 | /* PW 5/6/7 (29h/2ah/2bh) */ | ||
828 | parm = AC_PWRST_D3; | ||
829 | set_pin_power_state(codec, 0x29, &parm); | ||
830 | set_pin_power_state(codec, 0x2a, &parm); | ||
831 | set_pin_power_state(codec, 0x2b, &parm); | ||
832 | if (imux_is_smixer) | ||
833 | parm = AC_PWRST_D0; | ||
834 | /* MUX9/10 (1eh/1fh), AIW 0/1 (10h/11h) */ | ||
835 | snd_hda_codec_write(codec, 0x1e, 0, | ||
836 | AC_VERB_SET_POWER_STATE, parm); | ||
837 | snd_hda_codec_write(codec, 0x1f, 0, | ||
838 | AC_VERB_SET_POWER_STATE, parm); | ||
839 | snd_hda_codec_write(codec, 0x10, 0, | ||
840 | AC_VERB_SET_POWER_STATE, parm); | ||
841 | snd_hda_codec_write(codec, 0x11, 0, | ||
842 | AC_VERB_SET_POWER_STATE, parm); | ||
843 | |||
844 | /* outputs */ | ||
845 | /* AOW0 (8h)*/ | ||
846 | snd_hda_codec_write(codec, 0x8, 0, | ||
847 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
848 | |||
849 | /* PW4 (26h), MW4 (1ch), MUX4(37h) */ | ||
850 | parm = AC_PWRST_D3; | ||
851 | set_pin_power_state(codec, 0x26, &parm); | ||
852 | snd_hda_codec_write(codec, 0x1c, 0, | ||
853 | AC_VERB_SET_POWER_STATE, parm); | ||
854 | snd_hda_codec_write(codec, 0x37, | ||
855 | 0, AC_VERB_SET_POWER_STATE, parm); | ||
856 | |||
857 | /* PW1 (25h), MW1 (19h), MUX1(35h), AOW1 (9h) */ | ||
858 | parm = AC_PWRST_D3; | ||
859 | set_pin_power_state(codec, 0x25, &parm); | ||
860 | snd_hda_codec_write(codec, 0x19, 0, | ||
861 | AC_VERB_SET_POWER_STATE, parm); | ||
862 | snd_hda_codec_write(codec, 0x35, 0, | ||
863 | AC_VERB_SET_POWER_STATE, parm); | ||
864 | if (spec->hp_independent_mode) { | ||
865 | snd_hda_codec_write(codec, 0x9, 0, | ||
866 | AC_VERB_SET_POWER_STATE, parm); | ||
867 | } | ||
868 | |||
869 | /* Class-D */ | ||
870 | /* PW0 (24h), MW0(18h), MUX0(34h) */ | ||
871 | present = snd_hda_jack_detect(codec, 0x25); | ||
872 | parm = AC_PWRST_D3; | ||
873 | set_pin_power_state(codec, 0x24, &parm); | ||
874 | if (present) { | ||
875 | snd_hda_codec_write( | ||
876 | codec, 0x18, 0, | ||
877 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); | ||
878 | snd_hda_codec_write( | ||
879 | codec, 0x34, 0, | ||
880 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); | ||
881 | } else { | ||
882 | snd_hda_codec_write( | ||
883 | codec, 0x18, 0, | ||
884 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
885 | snd_hda_codec_write( | ||
886 | codec, 0x34, 0, | ||
887 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
888 | } | ||
889 | |||
890 | /* Mono Out */ | ||
891 | /* PW15 (31h), MW8(17h), MUX8(3bh) */ | ||
892 | present = snd_hda_jack_detect(codec, 0x26); | ||
893 | parm = AC_PWRST_D3; | ||
894 | set_pin_power_state(codec, 0x31, &parm); | ||
895 | if (present) { | ||
896 | snd_hda_codec_write( | ||
897 | codec, 0x17, 0, | ||
898 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); | ||
899 | snd_hda_codec_write( | ||
900 | codec, 0x3b, 0, | ||
901 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); | ||
902 | } else { | ||
903 | snd_hda_codec_write( | ||
904 | codec, 0x17, 0, | ||
905 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
906 | snd_hda_codec_write( | ||
907 | codec, 0x3b, 0, | ||
908 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
909 | } | ||
910 | |||
911 | /* MW9 (21h) */ | ||
912 | if (imux_is_smixer || !is_aa_path_mute(codec)) | ||
913 | snd_hda_codec_write( | ||
914 | codec, 0x21, 0, | ||
915 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
916 | else | ||
917 | snd_hda_codec_write( | ||
918 | codec, 0x21, 0, | ||
919 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); | ||
920 | } else if (spec->codec_type == VT1812) { | ||
921 | unsigned int present; | ||
922 | /* MUX10 (1eh) = stereo mixer */ | ||
923 | imux_is_smixer = snd_hda_codec_read( | ||
924 | codec, 0x1e, 0, AC_VERB_GET_CONNECT_SEL, 0x00) == 5; | ||
925 | /* inputs */ | ||
926 | /* PW 5/6/7 (29h/2ah/2bh) */ | ||
927 | parm = AC_PWRST_D3; | ||
928 | set_pin_power_state(codec, 0x29, &parm); | ||
929 | set_pin_power_state(codec, 0x2a, &parm); | ||
930 | set_pin_power_state(codec, 0x2b, &parm); | ||
931 | if (imux_is_smixer) | ||
932 | parm = AC_PWRST_D0; | ||
933 | /* MUX10/11 (1eh/1fh), AIW 0/1 (10h/11h) */ | ||
934 | snd_hda_codec_write(codec, 0x1e, 0, | ||
935 | AC_VERB_SET_POWER_STATE, parm); | ||
936 | snd_hda_codec_write(codec, 0x1f, 0, | ||
937 | AC_VERB_SET_POWER_STATE, parm); | ||
938 | snd_hda_codec_write(codec, 0x10, 0, | ||
939 | AC_VERB_SET_POWER_STATE, parm); | ||
940 | snd_hda_codec_write(codec, 0x11, 0, | ||
941 | AC_VERB_SET_POWER_STATE, parm); | ||
942 | |||
943 | /* outputs */ | ||
944 | /* AOW0 (8h)*/ | ||
945 | snd_hda_codec_write(codec, 0x8, 0, | ||
946 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
947 | |||
948 | /* PW4 (28h), MW4 (18h), MUX4(38h) */ | ||
949 | parm = AC_PWRST_D3; | ||
950 | set_pin_power_state(codec, 0x28, &parm); | ||
951 | snd_hda_codec_write(codec, 0x18, 0, | ||
952 | AC_VERB_SET_POWER_STATE, parm); | ||
953 | snd_hda_codec_write(codec, 0x38, 0, | ||
954 | AC_VERB_SET_POWER_STATE, parm); | ||
955 | |||
956 | /* PW1 (25h), MW1 (15h), MUX1(35h), AOW1 (9h) */ | ||
957 | parm = AC_PWRST_D3; | ||
958 | set_pin_power_state(codec, 0x25, &parm); | ||
959 | snd_hda_codec_write(codec, 0x15, 0, | ||
960 | AC_VERB_SET_POWER_STATE, parm); | ||
961 | snd_hda_codec_write(codec, 0x35, 0, | ||
962 | AC_VERB_SET_POWER_STATE, parm); | ||
963 | if (spec->hp_independent_mode) { | ||
964 | snd_hda_codec_write(codec, 0x9, 0, | ||
965 | AC_VERB_SET_POWER_STATE, parm); | ||
966 | } | ||
967 | |||
968 | /* Internal Speaker */ | ||
969 | /* PW0 (24h), MW0(14h), MUX0(34h) */ | ||
970 | present = snd_hda_jack_detect(codec, 0x25); | ||
971 | parm = AC_PWRST_D3; | ||
972 | set_pin_power_state(codec, 0x24, &parm); | ||
973 | if (present) { | ||
974 | snd_hda_codec_write(codec, 0x14, 0, | ||
975 | AC_VERB_SET_POWER_STATE, | ||
976 | AC_PWRST_D3); | ||
977 | snd_hda_codec_write(codec, 0x34, 0, | ||
978 | AC_VERB_SET_POWER_STATE, | ||
979 | AC_PWRST_D3); | ||
980 | } else { | ||
981 | snd_hda_codec_write(codec, 0x14, 0, | ||
982 | AC_VERB_SET_POWER_STATE, | ||
983 | AC_PWRST_D0); | ||
984 | snd_hda_codec_write(codec, 0x34, 0, | ||
985 | AC_VERB_SET_POWER_STATE, | ||
986 | AC_PWRST_D0); | ||
987 | } | ||
988 | /* Mono Out */ | ||
989 | /* PW13 (31h), MW13(1ch), MUX13(3ch), MW14(3eh) */ | ||
990 | present = snd_hda_jack_detect(codec, 0x28); | ||
991 | parm = AC_PWRST_D3; | ||
992 | set_pin_power_state(codec, 0x31, &parm); | ||
993 | if (present) { | ||
994 | snd_hda_codec_write(codec, 0x1c, 0, | ||
995 | AC_VERB_SET_POWER_STATE, | ||
996 | AC_PWRST_D3); | ||
997 | snd_hda_codec_write(codec, 0x3c, 0, | ||
998 | AC_VERB_SET_POWER_STATE, | ||
999 | AC_PWRST_D3); | ||
1000 | snd_hda_codec_write(codec, 0x3e, 0, | ||
1001 | AC_VERB_SET_POWER_STATE, | ||
1002 | AC_PWRST_D3); | ||
1003 | } else { | ||
1004 | snd_hda_codec_write(codec, 0x1c, 0, | ||
1005 | AC_VERB_SET_POWER_STATE, | ||
1006 | AC_PWRST_D0); | ||
1007 | snd_hda_codec_write(codec, 0x3c, 0, | ||
1008 | AC_VERB_SET_POWER_STATE, | ||
1009 | AC_PWRST_D0); | ||
1010 | snd_hda_codec_write(codec, 0x3e, 0, | ||
1011 | AC_VERB_SET_POWER_STATE, | ||
1012 | AC_PWRST_D0); | ||
1013 | } | ||
1014 | |||
1015 | /* PW15 (33h), MW15 (1dh), MUX15(3dh) */ | ||
1016 | parm = AC_PWRST_D3; | ||
1017 | set_pin_power_state(codec, 0x33, &parm); | ||
1018 | snd_hda_codec_write(codec, 0x1d, 0, | ||
1019 | AC_VERB_SET_POWER_STATE, parm); | ||
1020 | snd_hda_codec_write(codec, 0x3d, 0, | ||
1021 | AC_VERB_SET_POWER_STATE, parm); | ||
1022 | |||
1023 | /* MW9 (21h) */ | ||
1024 | if (imux_is_smixer || !is_aa_path_mute(codec)) | ||
1025 | snd_hda_codec_write( | ||
1026 | codec, 0x21, 0, | ||
1027 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
1028 | else | ||
1029 | snd_hda_codec_write( | ||
1030 | codec, 0x21, 0, | ||
1031 | AC_VERB_SET_POWER_STATE, AC_PWRST_D3); | ||
1032 | } | ||
1033 | } | ||
1034 | |||
367 | /* | 1035 | /* |
368 | * input MUX handling | 1036 | * input MUX handling |
369 | */ | 1037 | */ |
@@ -395,6 +1063,14 @@ static int via_mux_enum_put(struct snd_kcontrol *kcontrol, | |||
395 | 1063 | ||
396 | if (!spec->mux_nids[adc_idx]) | 1064 | if (!spec->mux_nids[adc_idx]) |
397 | return -EINVAL; | 1065 | return -EINVAL; |
1066 | /* switch to D0 beofre change index */ | ||
1067 | if (snd_hda_codec_read(codec, spec->mux_nids[adc_idx], 0, | ||
1068 | AC_VERB_GET_POWER_STATE, 0x00) != AC_PWRST_D0) | ||
1069 | snd_hda_codec_write(codec, spec->mux_nids[adc_idx], 0, | ||
1070 | AC_VERB_SET_POWER_STATE, AC_PWRST_D0); | ||
1071 | /* update jack power state */ | ||
1072 | set_jack_power_state(codec); | ||
1073 | |||
398 | return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol, | 1074 | return snd_hda_input_mux_put(codec, spec->input_mux, ucontrol, |
399 | spec->mux_nids[adc_idx], | 1075 | spec->mux_nids[adc_idx], |
400 | &spec->cur_mux[adc_idx]); | 1076 | &spec->cur_mux[adc_idx]); |
@@ -413,16 +1089,74 @@ static int via_independent_hp_get(struct snd_kcontrol *kcontrol, | |||
413 | { | 1089 | { |
414 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | 1090 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); |
415 | struct via_spec *spec = codec->spec; | 1091 | struct via_spec *spec = codec->spec; |
416 | hda_nid_t nid = spec->autocfg.hp_pins[0]; | 1092 | hda_nid_t nid; |
417 | unsigned int pinsel = snd_hda_codec_read(codec, nid, 0, | 1093 | unsigned int pinsel; |
418 | AC_VERB_GET_CONNECT_SEL, | 1094 | |
419 | 0x00); | 1095 | switch (spec->codec_type) { |
420 | 1096 | case VT1718S: | |
1097 | nid = 0x34; | ||
1098 | break; | ||
1099 | case VT2002P: | ||
1100 | nid = 0x35; | ||
1101 | break; | ||
1102 | case VT1812: | ||
1103 | nid = 0x3d; | ||
1104 | break; | ||
1105 | default: | ||
1106 | nid = spec->autocfg.hp_pins[0]; | ||
1107 | break; | ||
1108 | } | ||
1109 | /* use !! to translate conn sel 2 for VT1718S */ | ||
1110 | pinsel = !!snd_hda_codec_read(codec, nid, 0, | ||
1111 | AC_VERB_GET_CONNECT_SEL, | ||
1112 | 0x00); | ||
421 | ucontrol->value.enumerated.item[0] = pinsel; | 1113 | ucontrol->value.enumerated.item[0] = pinsel; |
422 | 1114 | ||
423 | return 0; | 1115 | return 0; |
424 | } | 1116 | } |
425 | 1117 | ||
1118 | static void activate_ctl(struct hda_codec *codec, const char *name, int active) | ||
1119 | { | ||
1120 | struct snd_kcontrol *ctl = snd_hda_find_mixer_ctl(codec, name); | ||
1121 | if (ctl) { | ||
1122 | ctl->vd[0].access &= ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; | ||
1123 | ctl->vd[0].access |= active | ||
1124 | ? 0 : SNDRV_CTL_ELEM_ACCESS_INACTIVE; | ||
1125 | snd_ctl_notify(codec->bus->card, | ||
1126 | SNDRV_CTL_EVENT_MASK_VALUE, &ctl->id); | ||
1127 | } | ||
1128 | } | ||
1129 | |||
1130 | static int update_side_mute_status(struct hda_codec *codec) | ||
1131 | { | ||
1132 | /* mute side channel */ | ||
1133 | struct via_spec *spec = codec->spec; | ||
1134 | unsigned int parm = spec->hp_independent_mode | ||
1135 | ? AMP_OUT_MUTE : AMP_OUT_UNMUTE; | ||
1136 | hda_nid_t sw3; | ||
1137 | |||
1138 | switch (spec->codec_type) { | ||
1139 | case VT1708: | ||
1140 | sw3 = 0x1b; | ||
1141 | break; | ||
1142 | case VT1709_10CH: | ||
1143 | sw3 = 0x29; | ||
1144 | break; | ||
1145 | case VT1708B_8CH: | ||
1146 | case VT1708S: | ||
1147 | sw3 = 0x27; | ||
1148 | break; | ||
1149 | default: | ||
1150 | sw3 = 0; | ||
1151 | break; | ||
1152 | } | ||
1153 | |||
1154 | if (sw3) | ||
1155 | snd_hda_codec_write(codec, sw3, 0, AC_VERB_SET_AMP_GAIN_MUTE, | ||
1156 | parm); | ||
1157 | return 0; | ||
1158 | } | ||
1159 | |||
426 | static int via_independent_hp_put(struct snd_kcontrol *kcontrol, | 1160 | static int via_independent_hp_put(struct snd_kcontrol *kcontrol, |
427 | struct snd_ctl_elem_value *ucontrol) | 1161 | struct snd_ctl_elem_value *ucontrol) |
428 | { | 1162 | { |
@@ -430,47 +1164,46 @@ static int via_independent_hp_put(struct snd_kcontrol *kcontrol, | |||
430 | struct via_spec *spec = codec->spec; | 1164 | struct via_spec *spec = codec->spec; |
431 | hda_nid_t nid = spec->autocfg.hp_pins[0]; | 1165 | hda_nid_t nid = spec->autocfg.hp_pins[0]; |
432 | unsigned int pinsel = ucontrol->value.enumerated.item[0]; | 1166 | unsigned int pinsel = ucontrol->value.enumerated.item[0]; |
433 | unsigned int con_nid = snd_hda_codec_read(codec, nid, 0, | 1167 | /* Get Independent Mode index of headphone pin widget */ |
434 | AC_VERB_GET_CONNECT_LIST, 0) & 0xff; | 1168 | spec->hp_independent_mode = spec->hp_independent_mode_index == pinsel |
435 | 1169 | ? 1 : 0; | |
436 | if (con_nid == spec->multiout.hp_nid) { | 1170 | |
437 | if (pinsel == 0) { | 1171 | switch (spec->codec_type) { |
438 | if (!spec->hp_independent_mode) { | 1172 | case VT1718S: |
439 | if (spec->multiout.num_dacs > 1) | 1173 | nid = 0x34; |
440 | spec->multiout.num_dacs -= 1; | 1174 | pinsel = pinsel ? 2 : 0; /* indep HP use AOW4 (index 2) */ |
441 | spec->hp_independent_mode = 1; | 1175 | spec->multiout.num_dacs = 4; |
442 | } | 1176 | break; |
443 | } else if (pinsel == 1) { | 1177 | case VT2002P: |
444 | if (spec->hp_independent_mode) { | 1178 | nid = 0x35; |
445 | if (spec->multiout.num_dacs > 1) | 1179 | break; |
446 | spec->multiout.num_dacs += 1; | 1180 | case VT1812: |
447 | spec->hp_independent_mode = 0; | 1181 | nid = 0x3d; |
448 | } | 1182 | break; |
449 | } | 1183 | default: |
450 | } else { | 1184 | nid = spec->autocfg.hp_pins[0]; |
451 | if (pinsel == 0) { | 1185 | break; |
452 | if (spec->hp_independent_mode) { | 1186 | } |
453 | if (spec->multiout.num_dacs > 1) | 1187 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, pinsel); |
454 | spec->multiout.num_dacs += 1; | 1188 | |
455 | spec->hp_independent_mode = 0; | 1189 | if (spec->multiout.hp_nid && spec->multiout.hp_nid |
456 | } | 1190 | != spec->multiout.dac_nids[HDA_FRONT]) |
457 | } else if (pinsel == 1) { | 1191 | snd_hda_codec_setup_stream(codec, spec->multiout.hp_nid, |
458 | if (!spec->hp_independent_mode) { | 1192 | 0, 0, 0); |
459 | if (spec->multiout.num_dacs > 1) | 1193 | |
460 | spec->multiout.num_dacs -= 1; | 1194 | update_side_mute_status(codec); |
461 | spec->hp_independent_mode = 1; | 1195 | /* update HP volume/swtich active state */ |
462 | } | 1196 | if (spec->codec_type == VT1708S |
463 | } | 1197 | || spec->codec_type == VT1702 |
1198 | || spec->codec_type == VT1718S | ||
1199 | || spec->codec_type == VT1716S | ||
1200 | || spec->codec_type == VT2002P | ||
1201 | || spec->codec_type == VT1812) { | ||
1202 | activate_ctl(codec, "Headphone Playback Volume", | ||
1203 | spec->hp_independent_mode); | ||
1204 | activate_ctl(codec, "Headphone Playback Switch", | ||
1205 | spec->hp_independent_mode); | ||
464 | } | 1206 | } |
465 | snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, | ||
466 | pinsel); | ||
467 | |||
468 | if (spec->multiout.hp_nid && | ||
469 | spec->multiout.hp_nid != spec->multiout.dac_nids[HDA_FRONT]) | ||
470 | snd_hda_codec_setup_stream(codec, | ||
471 | spec->multiout.hp_nid, | ||
472 | 0, 0, 0); | ||
473 | |||
474 | return 0; | 1207 | return 0; |
475 | } | 1208 | } |
476 | 1209 | ||
@@ -486,6 +1219,175 @@ static struct snd_kcontrol_new via_hp_mixer[] = { | |||
486 | { } /* end */ | 1219 | { } /* end */ |
487 | }; | 1220 | }; |
488 | 1221 | ||
1222 | static void notify_aa_path_ctls(struct hda_codec *codec) | ||
1223 | { | ||
1224 | int i; | ||
1225 | struct snd_ctl_elem_id id; | ||
1226 | const char *labels[] = {"Mic", "Front Mic", "Line"}; | ||
1227 | |||
1228 | memset(&id, 0, sizeof(id)); | ||
1229 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; | ||
1230 | for (i = 0; i < ARRAY_SIZE(labels); i++) { | ||
1231 | sprintf(id.name, "%s Playback Volume", labels[i]); | ||
1232 | snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE, | ||
1233 | &id); | ||
1234 | } | ||
1235 | } | ||
1236 | |||
1237 | static void mute_aa_path(struct hda_codec *codec, int mute) | ||
1238 | { | ||
1239 | struct via_spec *spec = codec->spec; | ||
1240 | hda_nid_t nid_mixer; | ||
1241 | int start_idx; | ||
1242 | int end_idx; | ||
1243 | int i; | ||
1244 | /* get nid of MW0 and start & end index */ | ||
1245 | switch (spec->codec_type) { | ||
1246 | case VT1708: | ||
1247 | nid_mixer = 0x17; | ||
1248 | start_idx = 2; | ||
1249 | end_idx = 4; | ||
1250 | break; | ||
1251 | case VT1709_10CH: | ||
1252 | case VT1709_6CH: | ||
1253 | nid_mixer = 0x18; | ||
1254 | start_idx = 2; | ||
1255 | end_idx = 4; | ||
1256 | break; | ||
1257 | case VT1708B_8CH: | ||
1258 | case VT1708B_4CH: | ||
1259 | case VT1708S: | ||
1260 | case VT1716S: | ||
1261 | nid_mixer = 0x16; | ||
1262 | start_idx = 2; | ||
1263 | end_idx = 4; | ||
1264 | break; | ||
1265 | default: | ||
1266 | return; | ||
1267 | } | ||
1268 | /* check AA path's mute status */ | ||
1269 | for (i = start_idx; i <= end_idx; i++) { | ||
1270 | int val = mute ? HDA_AMP_MUTE : HDA_AMP_UNMUTE; | ||
1271 | snd_hda_codec_amp_stereo(codec, nid_mixer, HDA_INPUT, i, | ||
1272 | HDA_AMP_MUTE, val); | ||
1273 | } | ||
1274 | } | ||
1275 | static int is_smart51_pins(struct via_spec *spec, hda_nid_t pin) | ||
1276 | { | ||
1277 | int res = 0; | ||
1278 | int index; | ||
1279 | for (index = AUTO_PIN_MIC; index < AUTO_PIN_FRONT_LINE; index++) { | ||
1280 | if (pin == spec->autocfg.input_pins[index]) { | ||
1281 | res = 1; | ||
1282 | break; | ||
1283 | } | ||
1284 | } | ||
1285 | return res; | ||
1286 | } | ||
1287 | |||
1288 | static int via_smart51_info(struct snd_kcontrol *kcontrol, | ||
1289 | struct snd_ctl_elem_info *uinfo) | ||
1290 | { | ||
1291 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; | ||
1292 | uinfo->count = 1; | ||
1293 | uinfo->value.integer.min = 0; | ||
1294 | uinfo->value.integer.max = 1; | ||
1295 | return 0; | ||
1296 | } | ||
1297 | |||
1298 | static int via_smart51_get(struct snd_kcontrol *kcontrol, | ||
1299 | struct snd_ctl_elem_value *ucontrol) | ||
1300 | { | ||
1301 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | ||
1302 | struct via_spec *spec = codec->spec; | ||
1303 | int index[] = { AUTO_PIN_MIC, AUTO_PIN_FRONT_MIC, AUTO_PIN_LINE }; | ||
1304 | int on = 1; | ||
1305 | int i; | ||
1306 | |||
1307 | for (i = 0; i < ARRAY_SIZE(index); i++) { | ||
1308 | hda_nid_t nid = spec->autocfg.input_pins[index[i]]; | ||
1309 | if (nid) { | ||
1310 | int ctl = | ||
1311 | snd_hda_codec_read(codec, nid, 0, | ||
1312 | AC_VERB_GET_PIN_WIDGET_CONTROL, | ||
1313 | 0); | ||
1314 | if (i == AUTO_PIN_FRONT_MIC | ||
1315 | && spec->hp_independent_mode | ||
1316 | && spec->codec_type != VT1718S) | ||
1317 | continue; /* ignore FMic for independent HP */ | ||
1318 | if (ctl & AC_PINCTL_IN_EN | ||
1319 | && !(ctl & AC_PINCTL_OUT_EN)) | ||
1320 | on = 0; | ||
1321 | } | ||
1322 | } | ||
1323 | *ucontrol->value.integer.value = on; | ||
1324 | return 0; | ||
1325 | } | ||
1326 | |||
1327 | static int via_smart51_put(struct snd_kcontrol *kcontrol, | ||
1328 | struct snd_ctl_elem_value *ucontrol) | ||
1329 | { | ||
1330 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | ||
1331 | struct via_spec *spec = codec->spec; | ||
1332 | int out_in = *ucontrol->value.integer.value | ||
1333 | ? AC_PINCTL_OUT_EN : AC_PINCTL_IN_EN; | ||
1334 | int index[] = { AUTO_PIN_MIC, AUTO_PIN_FRONT_MIC, AUTO_PIN_LINE }; | ||
1335 | int i; | ||
1336 | |||
1337 | for (i = 0; i < ARRAY_SIZE(index); i++) { | ||
1338 | hda_nid_t nid = spec->autocfg.input_pins[index[i]]; | ||
1339 | if (i == AUTO_PIN_FRONT_MIC | ||
1340 | && spec->hp_independent_mode | ||
1341 | && spec->codec_type != VT1718S) | ||
1342 | continue; /* don't retask FMic for independent HP */ | ||
1343 | if (nid) { | ||
1344 | unsigned int parm = snd_hda_codec_read( | ||
1345 | codec, nid, 0, | ||
1346 | AC_VERB_GET_PIN_WIDGET_CONTROL, 0); | ||
1347 | parm &= ~(AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN); | ||
1348 | parm |= out_in; | ||
1349 | snd_hda_codec_write(codec, nid, 0, | ||
1350 | AC_VERB_SET_PIN_WIDGET_CONTROL, | ||
1351 | parm); | ||
1352 | if (out_in == AC_PINCTL_OUT_EN) { | ||
1353 | mute_aa_path(codec, 1); | ||
1354 | notify_aa_path_ctls(codec); | ||
1355 | } | ||
1356 | if (spec->codec_type == VT1718S) | ||
1357 | snd_hda_codec_amp_stereo( | ||
1358 | codec, nid, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
1359 | HDA_AMP_UNMUTE); | ||
1360 | } | ||
1361 | if (i == AUTO_PIN_FRONT_MIC) { | ||
1362 | if (spec->codec_type == VT1708S | ||
1363 | || spec->codec_type == VT1716S) { | ||
1364 | /* input = index 1 (AOW3) */ | ||
1365 | snd_hda_codec_write( | ||
1366 | codec, nid, 0, | ||
1367 | AC_VERB_SET_CONNECT_SEL, 1); | ||
1368 | snd_hda_codec_amp_stereo( | ||
1369 | codec, nid, HDA_OUTPUT, | ||
1370 | 0, HDA_AMP_MUTE, HDA_AMP_UNMUTE); | ||
1371 | } | ||
1372 | } | ||
1373 | } | ||
1374 | spec->smart51_enabled = *ucontrol->value.integer.value; | ||
1375 | set_jack_power_state(codec); | ||
1376 | return 1; | ||
1377 | } | ||
1378 | |||
1379 | static struct snd_kcontrol_new via_smart51_mixer[] = { | ||
1380 | { | ||
1381 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
1382 | .name = "Smart 5.1", | ||
1383 | .count = 1, | ||
1384 | .info = via_smart51_info, | ||
1385 | .get = via_smart51_get, | ||
1386 | .put = via_smart51_put, | ||
1387 | }, | ||
1388 | {} /* end */ | ||
1389 | }; | ||
1390 | |||
489 | /* capture mixer elements */ | 1391 | /* capture mixer elements */ |
490 | static struct snd_kcontrol_new vt1708_capture_mixer[] = { | 1392 | static struct snd_kcontrol_new vt1708_capture_mixer[] = { |
491 | HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_INPUT), | 1393 | HDA_CODEC_VOLUME("Capture Volume", 0x15, 0x0, HDA_INPUT), |
@@ -506,6 +1408,112 @@ static struct snd_kcontrol_new vt1708_capture_mixer[] = { | |||
506 | }, | 1408 | }, |
507 | { } /* end */ | 1409 | { } /* end */ |
508 | }; | 1410 | }; |
1411 | |||
1412 | /* check AA path's mute statue */ | ||
1413 | static int is_aa_path_mute(struct hda_codec *codec) | ||
1414 | { | ||
1415 | int mute = 1; | ||
1416 | hda_nid_t nid_mixer; | ||
1417 | int start_idx; | ||
1418 | int end_idx; | ||
1419 | int i; | ||
1420 | struct via_spec *spec = codec->spec; | ||
1421 | /* get nid of MW0 and start & end index */ | ||
1422 | switch (spec->codec_type) { | ||
1423 | case VT1708B_8CH: | ||
1424 | case VT1708B_4CH: | ||
1425 | case VT1708S: | ||
1426 | case VT1716S: | ||
1427 | nid_mixer = 0x16; | ||
1428 | start_idx = 2; | ||
1429 | end_idx = 4; | ||
1430 | break; | ||
1431 | case VT1702: | ||
1432 | nid_mixer = 0x1a; | ||
1433 | start_idx = 1; | ||
1434 | end_idx = 3; | ||
1435 | break; | ||
1436 | case VT1718S: | ||
1437 | nid_mixer = 0x21; | ||
1438 | start_idx = 1; | ||
1439 | end_idx = 3; | ||
1440 | break; | ||
1441 | case VT2002P: | ||
1442 | case VT1812: | ||
1443 | nid_mixer = 0x21; | ||
1444 | start_idx = 0; | ||
1445 | end_idx = 2; | ||
1446 | break; | ||
1447 | default: | ||
1448 | return 0; | ||
1449 | } | ||
1450 | /* check AA path's mute status */ | ||
1451 | for (i = start_idx; i <= end_idx; i++) { | ||
1452 | unsigned int con_list = snd_hda_codec_read( | ||
1453 | codec, nid_mixer, 0, AC_VERB_GET_CONNECT_LIST, i/4*4); | ||
1454 | int shift = 8 * (i % 4); | ||
1455 | hda_nid_t nid_pin = (con_list & (0xff << shift)) >> shift; | ||
1456 | unsigned int defconf = snd_hda_codec_get_pincfg(codec, nid_pin); | ||
1457 | if (get_defcfg_connect(defconf) == AC_JACK_PORT_COMPLEX) { | ||
1458 | /* check mute status while the pin is connected */ | ||
1459 | int mute_l = snd_hda_codec_amp_read(codec, nid_mixer, 0, | ||
1460 | HDA_INPUT, i) >> 7; | ||
1461 | int mute_r = snd_hda_codec_amp_read(codec, nid_mixer, 1, | ||
1462 | HDA_INPUT, i) >> 7; | ||
1463 | if (!mute_l || !mute_r) { | ||
1464 | mute = 0; | ||
1465 | break; | ||
1466 | } | ||
1467 | } | ||
1468 | } | ||
1469 | return mute; | ||
1470 | } | ||
1471 | |||
1472 | /* enter/exit analog low-current mode */ | ||
1473 | static void analog_low_current_mode(struct hda_codec *codec, int stream_idle) | ||
1474 | { | ||
1475 | struct via_spec *spec = codec->spec; | ||
1476 | static int saved_stream_idle = 1; /* saved stream idle status */ | ||
1477 | int enable = is_aa_path_mute(codec); | ||
1478 | unsigned int verb = 0; | ||
1479 | unsigned int parm = 0; | ||
1480 | |||
1481 | if (stream_idle == -1) /* stream status did not change */ | ||
1482 | enable = enable && saved_stream_idle; | ||
1483 | else { | ||
1484 | enable = enable && stream_idle; | ||
1485 | saved_stream_idle = stream_idle; | ||
1486 | } | ||
1487 | |||
1488 | /* decide low current mode's verb & parameter */ | ||
1489 | switch (spec->codec_type) { | ||
1490 | case VT1708B_8CH: | ||
1491 | case VT1708B_4CH: | ||
1492 | verb = 0xf70; | ||
1493 | parm = enable ? 0x02 : 0x00; /* 0x02: 2/3x, 0x00: 1x */ | ||
1494 | break; | ||
1495 | case VT1708S: | ||
1496 | case VT1718S: | ||
1497 | case VT1716S: | ||
1498 | verb = 0xf73; | ||
1499 | parm = enable ? 0x51 : 0xe1; /* 0x51: 4/28x, 0xe1: 1x */ | ||
1500 | break; | ||
1501 | case VT1702: | ||
1502 | verb = 0xf73; | ||
1503 | parm = enable ? 0x01 : 0x1d; /* 0x01: 4/40x, 0x1d: 1x */ | ||
1504 | break; | ||
1505 | case VT2002P: | ||
1506 | case VT1812: | ||
1507 | verb = 0xf93; | ||
1508 | parm = enable ? 0x00 : 0xe0; /* 0x00: 4/40x, 0xe0: 1x */ | ||
1509 | break; | ||
1510 | default: | ||
1511 | return; /* other codecs are not supported */ | ||
1512 | } | ||
1513 | /* send verb */ | ||
1514 | snd_hda_codec_write(codec, codec->afg, 0, verb, parm); | ||
1515 | } | ||
1516 | |||
509 | /* | 1517 | /* |
510 | * generic initialization of ADC, input mixers and output mixers | 1518 | * generic initialization of ADC, input mixers and output mixers |
511 | */ | 1519 | */ |
@@ -534,9 +1542,9 @@ static struct hda_verb vt1708_volume_init_verbs[] = { | |||
534 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, | 1542 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, |
535 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, | 1543 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, |
536 | {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, | 1544 | {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, |
537 | 1545 | ||
538 | /* Setup default input to PW4 */ | 1546 | /* Setup default input MW0 to PW4 */ |
539 | {0x20, AC_VERB_SET_CONNECT_SEL, 0x1}, | 1547 | {0x20, AC_VERB_SET_CONNECT_SEL, 0}, |
540 | /* PW9 Output enable */ | 1548 | /* PW9 Output enable */ |
541 | {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | 1549 | {0x25, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, |
542 | { } | 1550 | { } |
@@ -547,30 +1555,13 @@ static int via_playback_pcm_open(struct hda_pcm_stream *hinfo, | |||
547 | struct snd_pcm_substream *substream) | 1555 | struct snd_pcm_substream *substream) |
548 | { | 1556 | { |
549 | struct via_spec *spec = codec->spec; | 1557 | struct via_spec *spec = codec->spec; |
1558 | int idle = substream->pstr->substream_opened == 1 | ||
1559 | && substream->ref_count == 0; | ||
1560 | analog_low_current_mode(codec, idle); | ||
550 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream, | 1561 | return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream, |
551 | hinfo); | 1562 | hinfo); |
552 | } | 1563 | } |
553 | 1564 | ||
554 | static int via_playback_pcm_prepare(struct hda_pcm_stream *hinfo, | ||
555 | struct hda_codec *codec, | ||
556 | unsigned int stream_tag, | ||
557 | unsigned int format, | ||
558 | struct snd_pcm_substream *substream) | ||
559 | { | ||
560 | struct via_spec *spec = codec->spec; | ||
561 | return snd_hda_multi_out_analog_prepare(codec, &spec->multiout, | ||
562 | stream_tag, format, substream); | ||
563 | } | ||
564 | |||
565 | static int via_playback_pcm_cleanup(struct hda_pcm_stream *hinfo, | ||
566 | struct hda_codec *codec, | ||
567 | struct snd_pcm_substream *substream) | ||
568 | { | ||
569 | struct via_spec *spec = codec->spec; | ||
570 | return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout); | ||
571 | } | ||
572 | |||
573 | |||
574 | static void playback_multi_pcm_prep_0(struct hda_codec *codec, | 1565 | static void playback_multi_pcm_prep_0(struct hda_codec *codec, |
575 | unsigned int stream_tag, | 1566 | unsigned int stream_tag, |
576 | unsigned int format, | 1567 | unsigned int format, |
@@ -615,8 +1606,8 @@ static void playback_multi_pcm_prep_0(struct hda_codec *codec, | |||
615 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, | 1606 | snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag, |
616 | 0, format); | 1607 | 0, format); |
617 | 1608 | ||
618 | if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT] && | 1609 | if (mout->hp_nid && mout->hp_nid != nids[HDA_FRONT] |
619 | !spec->hp_independent_mode) | 1610 | && !spec->hp_independent_mode) |
620 | /* headphone out will just decode front left/right (stereo) */ | 1611 | /* headphone out will just decode front left/right (stereo) */ |
621 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, | 1612 | snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag, |
622 | 0, format); | 1613 | 0, format); |
@@ -658,7 +1649,7 @@ static int via_playback_multi_pcm_prepare(struct hda_pcm_stream *hinfo, | |||
658 | snd_hda_codec_setup_stream(codec, mout->hp_nid, | 1649 | snd_hda_codec_setup_stream(codec, mout->hp_nid, |
659 | stream_tag, 0, format); | 1650 | stream_tag, 0, format); |
660 | } | 1651 | } |
661 | 1652 | vt1708_start_hp_work(spec); | |
662 | return 0; | 1653 | return 0; |
663 | } | 1654 | } |
664 | 1655 | ||
@@ -698,7 +1689,7 @@ static int via_playback_multi_pcm_cleanup(struct hda_pcm_stream *hinfo, | |||
698 | snd_hda_codec_setup_stream(codec, mout->hp_nid, | 1689 | snd_hda_codec_setup_stream(codec, mout->hp_nid, |
699 | 0, 0, 0); | 1690 | 0, 0, 0); |
700 | } | 1691 | } |
701 | 1692 | vt1708_stop_hp_work(spec); | |
702 | return 0; | 1693 | return 0; |
703 | } | 1694 | } |
704 | 1695 | ||
@@ -779,7 +1770,7 @@ static struct hda_pcm_stream vt1708_pcm_analog_playback = { | |||
779 | }; | 1770 | }; |
780 | 1771 | ||
781 | static struct hda_pcm_stream vt1708_pcm_analog_s16_playback = { | 1772 | static struct hda_pcm_stream vt1708_pcm_analog_s16_playback = { |
782 | .substreams = 1, | 1773 | .substreams = 2, |
783 | .channels_min = 2, | 1774 | .channels_min = 2, |
784 | .channels_max = 8, | 1775 | .channels_max = 8, |
785 | .nid = 0x10, /* NID to query formats and rates */ | 1776 | .nid = 0x10, /* NID to query formats and rates */ |
@@ -790,8 +1781,8 @@ static struct hda_pcm_stream vt1708_pcm_analog_s16_playback = { | |||
790 | .formats = SNDRV_PCM_FMTBIT_S16_LE, | 1781 | .formats = SNDRV_PCM_FMTBIT_S16_LE, |
791 | .ops = { | 1782 | .ops = { |
792 | .open = via_playback_pcm_open, | 1783 | .open = via_playback_pcm_open, |
793 | .prepare = via_playback_pcm_prepare, | 1784 | .prepare = via_playback_multi_pcm_prepare, |
794 | .cleanup = via_playback_pcm_cleanup | 1785 | .cleanup = via_playback_multi_pcm_cleanup |
795 | }, | 1786 | }, |
796 | }; | 1787 | }; |
797 | 1788 | ||
@@ -853,6 +1844,11 @@ static int via_build_controls(struct hda_codec *codec) | |||
853 | if (err < 0) | 1844 | if (err < 0) |
854 | return err; | 1845 | return err; |
855 | } | 1846 | } |
1847 | |||
1848 | /* init power states */ | ||
1849 | set_jack_power_state(codec); | ||
1850 | analog_low_current_mode(codec, 1); | ||
1851 | |||
856 | via_free_kctls(codec); /* no longer needed */ | 1852 | via_free_kctls(codec); /* no longer needed */ |
857 | return 0; | 1853 | return 0; |
858 | } | 1854 | } |
@@ -866,8 +1862,10 @@ static int via_build_pcms(struct hda_codec *codec) | |||
866 | codec->pcm_info = info; | 1862 | codec->pcm_info = info; |
867 | 1863 | ||
868 | info->name = spec->stream_name_analog; | 1864 | info->name = spec->stream_name_analog; |
869 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback); | 1865 | info->stream[SNDRV_PCM_STREAM_PLAYBACK] = |
870 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0]; | 1866 | *(spec->stream_analog_playback); |
1867 | info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = | ||
1868 | spec->multiout.dac_nids[0]; | ||
871 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture); | 1869 | info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture); |
872 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; | 1870 | info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0]; |
873 | 1871 | ||
@@ -904,20 +1902,58 @@ static void via_free(struct hda_codec *codec) | |||
904 | return; | 1902 | return; |
905 | 1903 | ||
906 | via_free_kctls(codec); | 1904 | via_free_kctls(codec); |
1905 | vt1708_stop_hp_work(spec); | ||
907 | kfree(codec->spec); | 1906 | kfree(codec->spec); |
908 | } | 1907 | } |
909 | 1908 | ||
910 | /* mute internal speaker if HP is plugged */ | 1909 | /* mute internal speaker if HP is plugged */ |
911 | static void via_hp_automute(struct hda_codec *codec) | 1910 | static void via_hp_automute(struct hda_codec *codec) |
912 | { | 1911 | { |
913 | unsigned int present; | 1912 | unsigned int present = 0; |
914 | struct via_spec *spec = codec->spec; | 1913 | struct via_spec *spec = codec->spec; |
915 | 1914 | ||
916 | present = snd_hda_codec_read(codec, spec->autocfg.hp_pins[0], 0, | 1915 | present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]); |
917 | AC_VERB_GET_PIN_SENSE, 0) & 0x80000000; | 1916 | |
918 | snd_hda_codec_amp_stereo(codec, spec->autocfg.line_out_pins[0], | 1917 | if (!spec->hp_independent_mode) { |
919 | HDA_OUTPUT, 0, HDA_AMP_MUTE, | 1918 | struct snd_ctl_elem_id id; |
920 | present ? HDA_AMP_MUTE : 0); | 1919 | /* auto mute */ |
1920 | snd_hda_codec_amp_stereo( | ||
1921 | codec, spec->autocfg.line_out_pins[0], HDA_OUTPUT, 0, | ||
1922 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | ||
1923 | /* notify change */ | ||
1924 | memset(&id, 0, sizeof(id)); | ||
1925 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; | ||
1926 | strcpy(id.name, "Front Playback Switch"); | ||
1927 | snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE, | ||
1928 | &id); | ||
1929 | } | ||
1930 | } | ||
1931 | |||
1932 | /* mute mono out if HP or Line out is plugged */ | ||
1933 | static void via_mono_automute(struct hda_codec *codec) | ||
1934 | { | ||
1935 | unsigned int hp_present, lineout_present; | ||
1936 | struct via_spec *spec = codec->spec; | ||
1937 | |||
1938 | if (spec->codec_type != VT1716S) | ||
1939 | return; | ||
1940 | |||
1941 | lineout_present = snd_hda_jack_detect(codec, | ||
1942 | spec->autocfg.line_out_pins[0]); | ||
1943 | |||
1944 | /* Mute Mono Out if Line Out is plugged */ | ||
1945 | if (lineout_present) { | ||
1946 | snd_hda_codec_amp_stereo( | ||
1947 | codec, 0x2A, HDA_OUTPUT, 0, HDA_AMP_MUTE, HDA_AMP_MUTE); | ||
1948 | return; | ||
1949 | } | ||
1950 | |||
1951 | hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]); | ||
1952 | |||
1953 | if (!spec->hp_independent_mode) | ||
1954 | snd_hda_codec_amp_stereo( | ||
1955 | codec, 0x2A, HDA_OUTPUT, 0, HDA_AMP_MUTE, | ||
1956 | hp_present ? HDA_AMP_MUTE : 0); | ||
921 | } | 1957 | } |
922 | 1958 | ||
923 | static void via_gpio_control(struct hda_codec *codec) | 1959 | static void via_gpio_control(struct hda_codec *codec) |
@@ -968,15 +2004,83 @@ static void via_gpio_control(struct hda_codec *codec) | |||
968 | } | 2004 | } |
969 | } | 2005 | } |
970 | 2006 | ||
2007 | /* mute Internal-Speaker if HP is plugged */ | ||
2008 | static void via_speaker_automute(struct hda_codec *codec) | ||
2009 | { | ||
2010 | unsigned int hp_present; | ||
2011 | struct via_spec *spec = codec->spec; | ||
2012 | |||
2013 | if (spec->codec_type != VT2002P && spec->codec_type != VT1812) | ||
2014 | return; | ||
2015 | |||
2016 | hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]); | ||
2017 | |||
2018 | if (!spec->hp_independent_mode) { | ||
2019 | struct snd_ctl_elem_id id; | ||
2020 | snd_hda_codec_amp_stereo( | ||
2021 | codec, spec->autocfg.speaker_pins[0], HDA_OUTPUT, 0, | ||
2022 | HDA_AMP_MUTE, hp_present ? HDA_AMP_MUTE : 0); | ||
2023 | /* notify change */ | ||
2024 | memset(&id, 0, sizeof(id)); | ||
2025 | id.iface = SNDRV_CTL_ELEM_IFACE_MIXER; | ||
2026 | strcpy(id.name, "Speaker Playback Switch"); | ||
2027 | snd_ctl_notify(codec->bus->card, SNDRV_CTL_EVENT_MASK_VALUE, | ||
2028 | &id); | ||
2029 | } | ||
2030 | } | ||
2031 | |||
2032 | /* mute line-out and internal speaker if HP is plugged */ | ||
2033 | static void via_hp_bind_automute(struct hda_codec *codec) | ||
2034 | { | ||
2035 | /* use long instead of int below just to avoid an internal compiler | ||
2036 | * error with gcc 4.0.x | ||
2037 | */ | ||
2038 | unsigned long hp_present, present = 0; | ||
2039 | struct via_spec *spec = codec->spec; | ||
2040 | int i; | ||
2041 | |||
2042 | if (!spec->autocfg.hp_pins[0] || !spec->autocfg.line_out_pins[0]) | ||
2043 | return; | ||
2044 | |||
2045 | hp_present = snd_hda_jack_detect(codec, spec->autocfg.hp_pins[0]); | ||
2046 | |||
2047 | present = snd_hda_jack_detect(codec, spec->autocfg.line_out_pins[0]); | ||
2048 | |||
2049 | if (!spec->hp_independent_mode) { | ||
2050 | /* Mute Line-Outs */ | ||
2051 | for (i = 0; i < spec->autocfg.line_outs; i++) | ||
2052 | snd_hda_codec_amp_stereo( | ||
2053 | codec, spec->autocfg.line_out_pins[i], | ||
2054 | HDA_OUTPUT, 0, | ||
2055 | HDA_AMP_MUTE, hp_present ? HDA_AMP_MUTE : 0); | ||
2056 | if (hp_present) | ||
2057 | present = hp_present; | ||
2058 | } | ||
2059 | /* Speakers */ | ||
2060 | for (i = 0; i < spec->autocfg.speaker_outs; i++) | ||
2061 | snd_hda_codec_amp_stereo( | ||
2062 | codec, spec->autocfg.speaker_pins[i], HDA_OUTPUT, 0, | ||
2063 | HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0); | ||
2064 | } | ||
2065 | |||
2066 | |||
971 | /* unsolicited event for jack sensing */ | 2067 | /* unsolicited event for jack sensing */ |
972 | static void via_unsol_event(struct hda_codec *codec, | 2068 | static void via_unsol_event(struct hda_codec *codec, |
973 | unsigned int res) | 2069 | unsigned int res) |
974 | { | 2070 | { |
975 | res >>= 26; | 2071 | res >>= 26; |
976 | if (res == VIA_HP_EVENT) | 2072 | if (res & VIA_HP_EVENT) |
977 | via_hp_automute(codec); | 2073 | via_hp_automute(codec); |
978 | else if (res == VIA_GPIO_EVENT) | 2074 | if (res & VIA_GPIO_EVENT) |
979 | via_gpio_control(codec); | 2075 | via_gpio_control(codec); |
2076 | if (res & VIA_JACK_EVENT) | ||
2077 | set_jack_power_state(codec); | ||
2078 | if (res & VIA_MONO_EVENT) | ||
2079 | via_mono_automute(codec); | ||
2080 | if (res & VIA_SPEAKER_EVENT) | ||
2081 | via_speaker_automute(codec); | ||
2082 | if (res & VIA_BIND_HP_EVENT) | ||
2083 | via_hp_bind_automute(codec); | ||
980 | } | 2084 | } |
981 | 2085 | ||
982 | static int via_init(struct hda_codec *codec) | 2086 | static int via_init(struct hda_codec *codec) |
@@ -986,6 +2090,10 @@ static int via_init(struct hda_codec *codec) | |||
986 | for (i = 0; i < spec->num_iverbs; i++) | 2090 | for (i = 0; i < spec->num_iverbs; i++) |
987 | snd_hda_sequence_write(codec, spec->init_verbs[i]); | 2091 | snd_hda_sequence_write(codec, spec->init_verbs[i]); |
988 | 2092 | ||
2093 | spec->codec_type = get_codec_type(codec); | ||
2094 | if (spec->codec_type == VT1708BCE) | ||
2095 | spec->codec_type = VT1708S; /* VT1708BCE & VT1708S are almost | ||
2096 | same */ | ||
989 | /* Lydia Add for EAPD enable */ | 2097 | /* Lydia Add for EAPD enable */ |
990 | if (!spec->dig_in_nid) { /* No Digital In connection */ | 2098 | if (!spec->dig_in_nid) { /* No Digital In connection */ |
991 | if (spec->dig_in_pin) { | 2099 | if (spec->dig_in_pin) { |
@@ -1003,8 +2111,17 @@ static int via_init(struct hda_codec *codec) | |||
1003 | if (spec->slave_dig_outs[0]) | 2111 | if (spec->slave_dig_outs[0]) |
1004 | codec->slave_dig_outs = spec->slave_dig_outs; | 2112 | codec->slave_dig_outs = spec->slave_dig_outs; |
1005 | 2113 | ||
1006 | return 0; | 2114 | return 0; |
2115 | } | ||
2116 | |||
2117 | #ifdef SND_HDA_NEEDS_RESUME | ||
2118 | static int via_suspend(struct hda_codec *codec, pm_message_t state) | ||
2119 | { | ||
2120 | struct via_spec *spec = codec->spec; | ||
2121 | vt1708_stop_hp_work(spec); | ||
2122 | return 0; | ||
1007 | } | 2123 | } |
2124 | #endif | ||
1008 | 2125 | ||
1009 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 2126 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
1010 | static int via_check_power_status(struct hda_codec *codec, hda_nid_t nid) | 2127 | static int via_check_power_status(struct hda_codec *codec, hda_nid_t nid) |
@@ -1021,6 +2138,9 @@ static struct hda_codec_ops via_patch_ops = { | |||
1021 | .build_pcms = via_build_pcms, | 2138 | .build_pcms = via_build_pcms, |
1022 | .init = via_init, | 2139 | .init = via_init, |
1023 | .free = via_free, | 2140 | .free = via_free, |
2141 | #ifdef SND_HDA_NEEDS_RESUME | ||
2142 | .suspend = via_suspend, | ||
2143 | #endif | ||
1024 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 2144 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
1025 | .check_power_status = via_check_power_status, | 2145 | .check_power_status = via_check_power_status, |
1026 | #endif | 2146 | #endif |
@@ -1036,8 +2156,8 @@ static int vt1708_auto_fill_dac_nids(struct via_spec *spec, | |||
1036 | spec->multiout.num_dacs = cfg->line_outs; | 2156 | spec->multiout.num_dacs = cfg->line_outs; |
1037 | 2157 | ||
1038 | spec->multiout.dac_nids = spec->private_dac_nids; | 2158 | spec->multiout.dac_nids = spec->private_dac_nids; |
1039 | 2159 | ||
1040 | for(i = 0; i < 4; i++) { | 2160 | for (i = 0; i < 4; i++) { |
1041 | nid = cfg->line_out_pins[i]; | 2161 | nid = cfg->line_out_pins[i]; |
1042 | if (nid) { | 2162 | if (nid) { |
1043 | /* config dac list */ | 2163 | /* config dac list */ |
@@ -1067,7 +2187,7 @@ static int vt1708_auto_create_multi_out_ctls(struct via_spec *spec, | |||
1067 | { | 2187 | { |
1068 | char name[32]; | 2188 | char name[32]; |
1069 | static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" }; | 2189 | static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" }; |
1070 | hda_nid_t nid, nid_vol = 0; | 2190 | hda_nid_t nid, nid_vol, nid_vols[] = {0x17, 0x19, 0x1a, 0x1b}; |
1071 | int i, err; | 2191 | int i, err; |
1072 | 2192 | ||
1073 | for (i = 0; i <= AUTO_SEQ_SIDE; i++) { | 2193 | for (i = 0; i <= AUTO_SEQ_SIDE; i++) { |
@@ -1075,9 +2195,8 @@ static int vt1708_auto_create_multi_out_ctls(struct via_spec *spec, | |||
1075 | 2195 | ||
1076 | if (!nid) | 2196 | if (!nid) |
1077 | continue; | 2197 | continue; |
1078 | 2198 | ||
1079 | if (i != AUTO_SEQ_FRONT) | 2199 | nid_vol = nid_vols[i]; |
1080 | nid_vol = 0x18 + i; | ||
1081 | 2200 | ||
1082 | if (i == AUTO_SEQ_CENLFE) { | 2201 | if (i == AUTO_SEQ_CENLFE) { |
1083 | /* Center/LFE */ | 2202 | /* Center/LFE */ |
@@ -1105,21 +2224,21 @@ static int vt1708_auto_create_multi_out_ctls(struct via_spec *spec, | |||
1105 | HDA_OUTPUT)); | 2224 | HDA_OUTPUT)); |
1106 | if (err < 0) | 2225 | if (err < 0) |
1107 | return err; | 2226 | return err; |
1108 | } else if (i == AUTO_SEQ_FRONT){ | 2227 | } else if (i == AUTO_SEQ_FRONT) { |
1109 | /* add control to mixer index 0 */ | 2228 | /* add control to mixer index 0 */ |
1110 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 2229 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
1111 | "Master Front Playback Volume", | 2230 | "Master Front Playback Volume", |
1112 | HDA_COMPOSE_AMP_VAL(0x17, 3, 0, | 2231 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1113 | HDA_INPUT)); | 2232 | HDA_INPUT)); |
1114 | if (err < 0) | 2233 | if (err < 0) |
1115 | return err; | 2234 | return err; |
1116 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | 2235 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, |
1117 | "Master Front Playback Switch", | 2236 | "Master Front Playback Switch", |
1118 | HDA_COMPOSE_AMP_VAL(0x17, 3, 0, | 2237 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1119 | HDA_INPUT)); | 2238 | HDA_INPUT)); |
1120 | if (err < 0) | 2239 | if (err < 0) |
1121 | return err; | 2240 | return err; |
1122 | 2241 | ||
1123 | /* add control to PW3 */ | 2242 | /* add control to PW3 */ |
1124 | sprintf(name, "%s Playback Volume", chname[i]); | 2243 | sprintf(name, "%s Playback Volume", chname[i]); |
1125 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, | 2244 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, |
@@ -1178,6 +2297,7 @@ static int vt1708_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | |||
1178 | return 0; | 2297 | return 0; |
1179 | 2298 | ||
1180 | spec->multiout.hp_nid = VT1708_HP_NID; /* AOW3 */ | 2299 | spec->multiout.hp_nid = VT1708_HP_NID; /* AOW3 */ |
2300 | spec->hp_independent_mode_index = 1; | ||
1181 | 2301 | ||
1182 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 2302 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
1183 | "Headphone Playback Volume", | 2303 | "Headphone Playback Volume", |
@@ -1218,7 +2338,7 @@ static int vt1708_auto_create_analog_input_ctls(struct via_spec *spec, | |||
1218 | case 0x1d: /* Mic */ | 2338 | case 0x1d: /* Mic */ |
1219 | idx = 2; | 2339 | idx = 2; |
1220 | break; | 2340 | break; |
1221 | 2341 | ||
1222 | case 0x1e: /* Line In */ | 2342 | case 0x1e: /* Line In */ |
1223 | idx = 3; | 2343 | idx = 3; |
1224 | break; | 2344 | break; |
@@ -1231,8 +2351,7 @@ static int vt1708_auto_create_analog_input_ctls(struct via_spec *spec, | |||
1231 | idx = 1; | 2351 | idx = 1; |
1232 | break; | 2352 | break; |
1233 | } | 2353 | } |
1234 | err = via_new_analog_input(spec, cfg->input_pins[i], labels[i], | 2354 | err = via_new_analog_input(spec, labels[i], idx, 0x17); |
1235 | idx, 0x17); | ||
1236 | if (err < 0) | 2355 | if (err < 0) |
1237 | return err; | 2356 | return err; |
1238 | imux->items[imux->num_items].label = labels[i]; | 2357 | imux->items[imux->num_items].label = labels[i]; |
@@ -1260,16 +2379,60 @@ static void vt1708_set_pinconfig_connect(struct hda_codec *codec, hda_nid_t nid) | |||
1260 | def_conf = snd_hda_codec_get_pincfg(codec, nid); | 2379 | def_conf = snd_hda_codec_get_pincfg(codec, nid); |
1261 | seqassoc = (unsigned char) get_defcfg_association(def_conf); | 2380 | seqassoc = (unsigned char) get_defcfg_association(def_conf); |
1262 | seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf); | 2381 | seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf); |
1263 | if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE) { | 2382 | if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE |
1264 | if (seqassoc == 0xff) { | 2383 | && (seqassoc == 0xf0 || seqassoc == 0xff)) { |
1265 | def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30)); | 2384 | def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30)); |
1266 | snd_hda_codec_set_pincfg(codec, nid, def_conf); | 2385 | snd_hda_codec_set_pincfg(codec, nid, def_conf); |
1267 | } | ||
1268 | } | 2386 | } |
1269 | 2387 | ||
1270 | return; | 2388 | return; |
1271 | } | 2389 | } |
1272 | 2390 | ||
2391 | static int vt1708_jack_detectect_get(struct snd_kcontrol *kcontrol, | ||
2392 | struct snd_ctl_elem_value *ucontrol) | ||
2393 | { | ||
2394 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | ||
2395 | struct via_spec *spec = codec->spec; | ||
2396 | |||
2397 | if (spec->codec_type != VT1708) | ||
2398 | return 0; | ||
2399 | spec->vt1708_jack_detectect = | ||
2400 | !((snd_hda_codec_read(codec, 0x1, 0, 0xf84, 0) >> 8) & 0x1); | ||
2401 | ucontrol->value.integer.value[0] = spec->vt1708_jack_detectect; | ||
2402 | return 0; | ||
2403 | } | ||
2404 | |||
2405 | static int vt1708_jack_detectect_put(struct snd_kcontrol *kcontrol, | ||
2406 | struct snd_ctl_elem_value *ucontrol) | ||
2407 | { | ||
2408 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | ||
2409 | struct via_spec *spec = codec->spec; | ||
2410 | int change; | ||
2411 | |||
2412 | if (spec->codec_type != VT1708) | ||
2413 | return 0; | ||
2414 | spec->vt1708_jack_detectect = ucontrol->value.integer.value[0]; | ||
2415 | change = (0x1 & (snd_hda_codec_read(codec, 0x1, 0, 0xf84, 0) >> 8)) | ||
2416 | == !spec->vt1708_jack_detectect; | ||
2417 | if (spec->vt1708_jack_detectect) { | ||
2418 | mute_aa_path(codec, 1); | ||
2419 | notify_aa_path_ctls(codec); | ||
2420 | } | ||
2421 | return change; | ||
2422 | } | ||
2423 | |||
2424 | static struct snd_kcontrol_new vt1708_jack_detectect[] = { | ||
2425 | { | ||
2426 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
2427 | .name = "Jack Detect", | ||
2428 | .count = 1, | ||
2429 | .info = snd_ctl_boolean_mono_info, | ||
2430 | .get = vt1708_jack_detectect_get, | ||
2431 | .put = vt1708_jack_detectect_put, | ||
2432 | }, | ||
2433 | {} /* end */ | ||
2434 | }; | ||
2435 | |||
1273 | static int vt1708_parse_auto_config(struct hda_codec *codec) | 2436 | static int vt1708_parse_auto_config(struct hda_codec *codec) |
1274 | { | 2437 | { |
1275 | struct via_spec *spec = codec->spec; | 2438 | struct via_spec *spec = codec->spec; |
@@ -1297,6 +2460,10 @@ static int vt1708_parse_auto_config(struct hda_codec *codec) | |||
1297 | err = vt1708_auto_create_analog_input_ctls(spec, &spec->autocfg); | 2460 | err = vt1708_auto_create_analog_input_ctls(spec, &spec->autocfg); |
1298 | if (err < 0) | 2461 | if (err < 0) |
1299 | return err; | 2462 | return err; |
2463 | /* add jack detect on/off control */ | ||
2464 | err = snd_hda_add_new_ctls(codec, vt1708_jack_detectect); | ||
2465 | if (err < 0) | ||
2466 | return err; | ||
1300 | 2467 | ||
1301 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; | 2468 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; |
1302 | 2469 | ||
@@ -1316,19 +2483,44 @@ static int vt1708_parse_auto_config(struct hda_codec *codec) | |||
1316 | if (spec->hp_mux) | 2483 | if (spec->hp_mux) |
1317 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | 2484 | spec->mixers[spec->num_mixers++] = via_hp_mixer; |
1318 | 2485 | ||
2486 | spec->mixers[spec->num_mixers++] = via_smart51_mixer; | ||
1319 | return 1; | 2487 | return 1; |
1320 | } | 2488 | } |
1321 | 2489 | ||
1322 | /* init callback for auto-configuration model -- overriding the default init */ | 2490 | /* init callback for auto-configuration model -- overriding the default init */ |
1323 | static int via_auto_init(struct hda_codec *codec) | 2491 | static int via_auto_init(struct hda_codec *codec) |
1324 | { | 2492 | { |
2493 | struct via_spec *spec = codec->spec; | ||
2494 | |||
1325 | via_init(codec); | 2495 | via_init(codec); |
1326 | via_auto_init_multi_out(codec); | 2496 | via_auto_init_multi_out(codec); |
1327 | via_auto_init_hp_out(codec); | 2497 | via_auto_init_hp_out(codec); |
1328 | via_auto_init_analog_input(codec); | 2498 | via_auto_init_analog_input(codec); |
2499 | if (spec->codec_type == VT2002P || spec->codec_type == VT1812) { | ||
2500 | via_hp_bind_automute(codec); | ||
2501 | } else { | ||
2502 | via_hp_automute(codec); | ||
2503 | via_speaker_automute(codec); | ||
2504 | } | ||
2505 | |||
1329 | return 0; | 2506 | return 0; |
1330 | } | 2507 | } |
1331 | 2508 | ||
2509 | static void vt1708_update_hp_jack_state(struct work_struct *work) | ||
2510 | { | ||
2511 | struct via_spec *spec = container_of(work, struct via_spec, | ||
2512 | vt1708_hp_work.work); | ||
2513 | if (spec->codec_type != VT1708) | ||
2514 | return; | ||
2515 | /* if jack state toggled */ | ||
2516 | if (spec->vt1708_hp_present | ||
2517 | != snd_hda_jack_detect(spec->codec, spec->autocfg.hp_pins[0])) { | ||
2518 | spec->vt1708_hp_present ^= 1; | ||
2519 | via_hp_automute(spec->codec); | ||
2520 | } | ||
2521 | vt1708_start_hp_work(spec); | ||
2522 | } | ||
2523 | |||
1332 | static int get_mux_nids(struct hda_codec *codec) | 2524 | static int get_mux_nids(struct hda_codec *codec) |
1333 | { | 2525 | { |
1334 | struct via_spec *spec = codec->spec; | 2526 | struct via_spec *spec = codec->spec; |
@@ -1378,7 +2570,7 @@ static int patch_vt1708(struct hda_codec *codec) | |||
1378 | "from BIOS. Using genenic mode...\n"); | 2570 | "from BIOS. Using genenic mode...\n"); |
1379 | } | 2571 | } |
1380 | 2572 | ||
1381 | 2573 | ||
1382 | spec->stream_name_analog = "VT1708 Analog"; | 2574 | spec->stream_name_analog = "VT1708 Analog"; |
1383 | spec->stream_analog_playback = &vt1708_pcm_analog_playback; | 2575 | spec->stream_analog_playback = &vt1708_pcm_analog_playback; |
1384 | /* disable 32bit format on VT1708 */ | 2576 | /* disable 32bit format on VT1708 */ |
@@ -1390,7 +2582,7 @@ static int patch_vt1708(struct hda_codec *codec) | |||
1390 | spec->stream_digital_playback = &vt1708_pcm_digital_playback; | 2582 | spec->stream_digital_playback = &vt1708_pcm_digital_playback; |
1391 | spec->stream_digital_capture = &vt1708_pcm_digital_capture; | 2583 | spec->stream_digital_capture = &vt1708_pcm_digital_capture; |
1392 | 2584 | ||
1393 | 2585 | ||
1394 | if (!spec->adc_nids && spec->input_mux) { | 2586 | if (!spec->adc_nids && spec->input_mux) { |
1395 | spec->adc_nids = vt1708_adc_nids; | 2587 | spec->adc_nids = vt1708_adc_nids; |
1396 | spec->num_adc_nids = ARRAY_SIZE(vt1708_adc_nids); | 2588 | spec->num_adc_nids = ARRAY_SIZE(vt1708_adc_nids); |
@@ -1405,7 +2597,8 @@ static int patch_vt1708(struct hda_codec *codec) | |||
1405 | #ifdef CONFIG_SND_HDA_POWER_SAVE | 2597 | #ifdef CONFIG_SND_HDA_POWER_SAVE |
1406 | spec->loopback.amplist = vt1708_loopbacks; | 2598 | spec->loopback.amplist = vt1708_loopbacks; |
1407 | #endif | 2599 | #endif |
1408 | 2600 | spec->codec = codec; | |
2601 | INIT_DELAYED_WORK(&spec->vt1708_hp_work, vt1708_update_hp_jack_state); | ||
1409 | return 0; | 2602 | return 0; |
1410 | } | 2603 | } |
1411 | 2604 | ||
@@ -1433,7 +2626,8 @@ static struct snd_kcontrol_new vt1709_capture_mixer[] = { | |||
1433 | }; | 2626 | }; |
1434 | 2627 | ||
1435 | static struct hda_verb vt1709_uniwill_init_verbs[] = { | 2628 | static struct hda_verb vt1709_uniwill_init_verbs[] = { |
1436 | {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_HP_EVENT}, | 2629 | {0x20, AC_VERB_SET_UNSOLICITED_ENABLE, |
2630 | AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT}, | ||
1437 | { } | 2631 | { } |
1438 | }; | 2632 | }; |
1439 | 2633 | ||
@@ -1473,8 +2667,8 @@ static struct hda_verb vt1709_10ch_volume_init_verbs[] = { | |||
1473 | {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, | 2667 | {0x1f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, |
1474 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, | 2668 | {0x20, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, |
1475 | 2669 | ||
1476 | /* Set input of PW4 as AOW4 */ | 2670 | /* Set input of PW4 as MW0 */ |
1477 | {0x20, AC_VERB_SET_CONNECT_SEL, 0x1}, | 2671 | {0x20, AC_VERB_SET_CONNECT_SEL, 0}, |
1478 | /* PW9 Output enable */ | 2672 | /* PW9 Output enable */ |
1479 | {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | 2673 | {0x24, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, |
1480 | { } | 2674 | { } |
@@ -1487,8 +2681,8 @@ static struct hda_pcm_stream vt1709_10ch_pcm_analog_playback = { | |||
1487 | .nid = 0x10, /* NID to query formats and rates */ | 2681 | .nid = 0x10, /* NID to query formats and rates */ |
1488 | .ops = { | 2682 | .ops = { |
1489 | .open = via_playback_pcm_open, | 2683 | .open = via_playback_pcm_open, |
1490 | .prepare = via_playback_pcm_prepare, | 2684 | .prepare = via_playback_multi_pcm_prepare, |
1491 | .cleanup = via_playback_pcm_cleanup | 2685 | .cleanup = via_playback_multi_pcm_cleanup, |
1492 | }, | 2686 | }, |
1493 | }; | 2687 | }; |
1494 | 2688 | ||
@@ -1499,8 +2693,8 @@ static struct hda_pcm_stream vt1709_6ch_pcm_analog_playback = { | |||
1499 | .nid = 0x10, /* NID to query formats and rates */ | 2693 | .nid = 0x10, /* NID to query formats and rates */ |
1500 | .ops = { | 2694 | .ops = { |
1501 | .open = via_playback_pcm_open, | 2695 | .open = via_playback_pcm_open, |
1502 | .prepare = via_playback_pcm_prepare, | 2696 | .prepare = via_playback_multi_pcm_prepare, |
1503 | .cleanup = via_playback_pcm_cleanup | 2697 | .cleanup = via_playback_multi_pcm_cleanup, |
1504 | }, | 2698 | }, |
1505 | }; | 2699 | }; |
1506 | 2700 | ||
@@ -1575,11 +2769,11 @@ static int vt1709_auto_fill_dac_nids(struct via_spec *spec, | |||
1575 | spec->multiout.dac_nids[cfg->line_outs] = 0x28; /* AOW4 */ | 2769 | spec->multiout.dac_nids[cfg->line_outs] = 0x28; /* AOW4 */ |
1576 | 2770 | ||
1577 | } else if (cfg->line_outs == 3) { /* 6 channels */ | 2771 | } else if (cfg->line_outs == 3) { /* 6 channels */ |
1578 | for(i = 0; i < cfg->line_outs; i++) { | 2772 | for (i = 0; i < cfg->line_outs; i++) { |
1579 | nid = cfg->line_out_pins[i]; | 2773 | nid = cfg->line_out_pins[i]; |
1580 | if (nid) { | 2774 | if (nid) { |
1581 | /* config dac list */ | 2775 | /* config dac list */ |
1582 | switch(i) { | 2776 | switch (i) { |
1583 | case AUTO_SEQ_FRONT: | 2777 | case AUTO_SEQ_FRONT: |
1584 | /* AOW0 */ | 2778 | /* AOW0 */ |
1585 | spec->multiout.dac_nids[i] = 0x10; | 2779 | spec->multiout.dac_nids[i] = 0x10; |
@@ -1608,56 +2802,58 @@ static int vt1709_auto_create_multi_out_ctls(struct via_spec *spec, | |||
1608 | { | 2802 | { |
1609 | char name[32]; | 2803 | char name[32]; |
1610 | static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" }; | 2804 | static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" }; |
1611 | hda_nid_t nid = 0; | 2805 | hda_nid_t nid, nid_vol, nid_vols[] = {0x18, 0x1a, 0x1b, 0x29}; |
1612 | int i, err; | 2806 | int i, err; |
1613 | 2807 | ||
1614 | for (i = 0; i <= AUTO_SEQ_SIDE; i++) { | 2808 | for (i = 0; i <= AUTO_SEQ_SIDE; i++) { |
1615 | nid = cfg->line_out_pins[i]; | 2809 | nid = cfg->line_out_pins[i]; |
1616 | 2810 | ||
1617 | if (!nid) | 2811 | if (!nid) |
1618 | continue; | 2812 | continue; |
1619 | 2813 | ||
2814 | nid_vol = nid_vols[i]; | ||
2815 | |||
1620 | if (i == AUTO_SEQ_CENLFE) { | 2816 | if (i == AUTO_SEQ_CENLFE) { |
1621 | /* Center/LFE */ | 2817 | /* Center/LFE */ |
1622 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 2818 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
1623 | "Center Playback Volume", | 2819 | "Center Playback Volume", |
1624 | HDA_COMPOSE_AMP_VAL(0x1b, 1, 0, | 2820 | HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0, |
1625 | HDA_OUTPUT)); | 2821 | HDA_OUTPUT)); |
1626 | if (err < 0) | 2822 | if (err < 0) |
1627 | return err; | 2823 | return err; |
1628 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 2824 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
1629 | "LFE Playback Volume", | 2825 | "LFE Playback Volume", |
1630 | HDA_COMPOSE_AMP_VAL(0x1b, 2, 0, | 2826 | HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, |
1631 | HDA_OUTPUT)); | 2827 | HDA_OUTPUT)); |
1632 | if (err < 0) | 2828 | if (err < 0) |
1633 | return err; | 2829 | return err; |
1634 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | 2830 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, |
1635 | "Center Playback Switch", | 2831 | "Center Playback Switch", |
1636 | HDA_COMPOSE_AMP_VAL(0x1b, 1, 0, | 2832 | HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0, |
1637 | HDA_OUTPUT)); | 2833 | HDA_OUTPUT)); |
1638 | if (err < 0) | 2834 | if (err < 0) |
1639 | return err; | 2835 | return err; |
1640 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | 2836 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, |
1641 | "LFE Playback Switch", | 2837 | "LFE Playback Switch", |
1642 | HDA_COMPOSE_AMP_VAL(0x1b, 2, 0, | 2838 | HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, |
1643 | HDA_OUTPUT)); | 2839 | HDA_OUTPUT)); |
1644 | if (err < 0) | 2840 | if (err < 0) |
1645 | return err; | 2841 | return err; |
1646 | } else if (i == AUTO_SEQ_FRONT){ | 2842 | } else if (i == AUTO_SEQ_FRONT) { |
1647 | /* add control to mixer index 0 */ | 2843 | /* ADD control to mixer index 0 */ |
1648 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 2844 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
1649 | "Master Front Playback Volume", | 2845 | "Master Front Playback Volume", |
1650 | HDA_COMPOSE_AMP_VAL(0x18, 3, 0, | 2846 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1651 | HDA_INPUT)); | 2847 | HDA_INPUT)); |
1652 | if (err < 0) | 2848 | if (err < 0) |
1653 | return err; | 2849 | return err; |
1654 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | 2850 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, |
1655 | "Master Front Playback Switch", | 2851 | "Master Front Playback Switch", |
1656 | HDA_COMPOSE_AMP_VAL(0x18, 3, 0, | 2852 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1657 | HDA_INPUT)); | 2853 | HDA_INPUT)); |
1658 | if (err < 0) | 2854 | if (err < 0) |
1659 | return err; | 2855 | return err; |
1660 | 2856 | ||
1661 | /* add control to PW3 */ | 2857 | /* add control to PW3 */ |
1662 | sprintf(name, "%s Playback Volume", chname[i]); | 2858 | sprintf(name, "%s Playback Volume", chname[i]); |
1663 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, | 2859 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, |
@@ -1674,26 +2870,26 @@ static int vt1709_auto_create_multi_out_ctls(struct via_spec *spec, | |||
1674 | } else if (i == AUTO_SEQ_SURROUND) { | 2870 | } else if (i == AUTO_SEQ_SURROUND) { |
1675 | sprintf(name, "%s Playback Volume", chname[i]); | 2871 | sprintf(name, "%s Playback Volume", chname[i]); |
1676 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, | 2872 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, |
1677 | HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, | 2873 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1678 | HDA_OUTPUT)); | 2874 | HDA_OUTPUT)); |
1679 | if (err < 0) | 2875 | if (err < 0) |
1680 | return err; | 2876 | return err; |
1681 | sprintf(name, "%s Playback Switch", chname[i]); | 2877 | sprintf(name, "%s Playback Switch", chname[i]); |
1682 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name, | 2878 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name, |
1683 | HDA_COMPOSE_AMP_VAL(0x1a, 3, 0, | 2879 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1684 | HDA_OUTPUT)); | 2880 | HDA_OUTPUT)); |
1685 | if (err < 0) | 2881 | if (err < 0) |
1686 | return err; | 2882 | return err; |
1687 | } else if (i == AUTO_SEQ_SIDE) { | 2883 | } else if (i == AUTO_SEQ_SIDE) { |
1688 | sprintf(name, "%s Playback Volume", chname[i]); | 2884 | sprintf(name, "%s Playback Volume", chname[i]); |
1689 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, | 2885 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, name, |
1690 | HDA_COMPOSE_AMP_VAL(0x29, 3, 0, | 2886 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1691 | HDA_OUTPUT)); | 2887 | HDA_OUTPUT)); |
1692 | if (err < 0) | 2888 | if (err < 0) |
1693 | return err; | 2889 | return err; |
1694 | sprintf(name, "%s Playback Switch", chname[i]); | 2890 | sprintf(name, "%s Playback Switch", chname[i]); |
1695 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name, | 2891 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, name, |
1696 | HDA_COMPOSE_AMP_VAL(0x29, 3, 0, | 2892 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, |
1697 | HDA_OUTPUT)); | 2893 | HDA_OUTPUT)); |
1698 | if (err < 0) | 2894 | if (err < 0) |
1699 | return err; | 2895 | return err; |
@@ -1714,6 +2910,7 @@ static int vt1709_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | |||
1714 | spec->multiout.hp_nid = VT1709_HP_DAC_NID; | 2910 | spec->multiout.hp_nid = VT1709_HP_DAC_NID; |
1715 | else if (spec->multiout.num_dacs == 3) /* 6 channels */ | 2911 | else if (spec->multiout.num_dacs == 3) /* 6 channels */ |
1716 | spec->multiout.hp_nid = 0; | 2912 | spec->multiout.hp_nid = 0; |
2913 | spec->hp_independent_mode_index = 1; | ||
1717 | 2914 | ||
1718 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 2915 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
1719 | "Headphone Playback Volume", | 2916 | "Headphone Playback Volume", |
@@ -1752,7 +2949,7 @@ static int vt1709_auto_create_analog_input_ctls(struct via_spec *spec, | |||
1752 | case 0x1d: /* Mic */ | 2949 | case 0x1d: /* Mic */ |
1753 | idx = 2; | 2950 | idx = 2; |
1754 | break; | 2951 | break; |
1755 | 2952 | ||
1756 | case 0x1e: /* Line In */ | 2953 | case 0x1e: /* Line In */ |
1757 | idx = 3; | 2954 | idx = 3; |
1758 | break; | 2955 | break; |
@@ -1765,8 +2962,7 @@ static int vt1709_auto_create_analog_input_ctls(struct via_spec *spec, | |||
1765 | idx = 1; | 2962 | idx = 1; |
1766 | break; | 2963 | break; |
1767 | } | 2964 | } |
1768 | err = via_new_analog_input(spec, cfg->input_pins[i], labels[i], | 2965 | err = via_new_analog_input(spec, labels[i], idx, 0x18); |
1769 | idx, 0x18); | ||
1770 | if (err < 0) | 2966 | if (err < 0) |
1771 | return err; | 2967 | return err; |
1772 | imux->items[imux->num_items].label = labels[i]; | 2968 | imux->items[imux->num_items].label = labels[i]; |
@@ -1816,6 +3012,7 @@ static int vt1709_parse_auto_config(struct hda_codec *codec) | |||
1816 | if (spec->hp_mux) | 3012 | if (spec->hp_mux) |
1817 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | 3013 | spec->mixers[spec->num_mixers++] = via_hp_mixer; |
1818 | 3014 | ||
3015 | spec->mixers[spec->num_mixers++] = via_smart51_mixer; | ||
1819 | return 1; | 3016 | return 1; |
1820 | } | 3017 | } |
1821 | 3018 | ||
@@ -1861,7 +3058,7 @@ static int patch_vt1709_10ch(struct hda_codec *codec) | |||
1861 | spec->stream_digital_playback = &vt1709_pcm_digital_playback; | 3058 | spec->stream_digital_playback = &vt1709_pcm_digital_playback; |
1862 | spec->stream_digital_capture = &vt1709_pcm_digital_capture; | 3059 | spec->stream_digital_capture = &vt1709_pcm_digital_capture; |
1863 | 3060 | ||
1864 | 3061 | ||
1865 | if (!spec->adc_nids && spec->input_mux) { | 3062 | if (!spec->adc_nids && spec->input_mux) { |
1866 | spec->adc_nids = vt1709_adc_nids; | 3063 | spec->adc_nids = vt1709_adc_nids; |
1867 | spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids); | 3064 | spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids); |
@@ -1955,7 +3152,7 @@ static int patch_vt1709_6ch(struct hda_codec *codec) | |||
1955 | spec->stream_digital_playback = &vt1709_pcm_digital_playback; | 3152 | spec->stream_digital_playback = &vt1709_pcm_digital_playback; |
1956 | spec->stream_digital_capture = &vt1709_pcm_digital_capture; | 3153 | spec->stream_digital_capture = &vt1709_pcm_digital_capture; |
1957 | 3154 | ||
1958 | 3155 | ||
1959 | if (!spec->adc_nids && spec->input_mux) { | 3156 | if (!spec->adc_nids && spec->input_mux) { |
1960 | spec->adc_nids = vt1709_adc_nids; | 3157 | spec->adc_nids = vt1709_adc_nids; |
1961 | spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids); | 3158 | spec->num_adc_nids = ARRAY_SIZE(vt1709_adc_nids); |
@@ -2024,7 +3221,7 @@ static struct hda_verb vt1708B_8ch_volume_init_verbs[] = { | |||
2024 | {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, | 3221 | {0x27, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO}, |
2025 | 3222 | ||
2026 | /* Setup default input to PW4 */ | 3223 | /* Setup default input to PW4 */ |
2027 | {0x1d, AC_VERB_SET_CONNECT_SEL, 0x1}, | 3224 | {0x1d, AC_VERB_SET_CONNECT_SEL, 0}, |
2028 | /* PW9 Output enable */ | 3225 | /* PW9 Output enable */ |
2029 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | 3226 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, |
2030 | /* PW10 Input enable */ | 3227 | /* PW10 Input enable */ |
@@ -2068,10 +3265,29 @@ static struct hda_verb vt1708B_4ch_volume_init_verbs[] = { | |||
2068 | }; | 3265 | }; |
2069 | 3266 | ||
2070 | static struct hda_verb vt1708B_uniwill_init_verbs[] = { | 3267 | static struct hda_verb vt1708B_uniwill_init_verbs[] = { |
2071 | {0x1D, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_HP_EVENT}, | 3268 | {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, |
3269 | AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT}, | ||
3270 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3271 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3272 | {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3273 | {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3274 | {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3275 | {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3276 | {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
2072 | { } | 3277 | { } |
2073 | }; | 3278 | }; |
2074 | 3279 | ||
3280 | static int via_pcm_open_close(struct hda_pcm_stream *hinfo, | ||
3281 | struct hda_codec *codec, | ||
3282 | struct snd_pcm_substream *substream) | ||
3283 | { | ||
3284 | int idle = substream->pstr->substream_opened == 1 | ||
3285 | && substream->ref_count == 0; | ||
3286 | |||
3287 | analog_low_current_mode(codec, idle); | ||
3288 | return 0; | ||
3289 | } | ||
3290 | |||
2075 | static struct hda_pcm_stream vt1708B_8ch_pcm_analog_playback = { | 3291 | static struct hda_pcm_stream vt1708B_8ch_pcm_analog_playback = { |
2076 | .substreams = 2, | 3292 | .substreams = 2, |
2077 | .channels_min = 2, | 3293 | .channels_min = 2, |
@@ -2080,7 +3296,8 @@ static struct hda_pcm_stream vt1708B_8ch_pcm_analog_playback = { | |||
2080 | .ops = { | 3296 | .ops = { |
2081 | .open = via_playback_pcm_open, | 3297 | .open = via_playback_pcm_open, |
2082 | .prepare = via_playback_multi_pcm_prepare, | 3298 | .prepare = via_playback_multi_pcm_prepare, |
2083 | .cleanup = via_playback_multi_pcm_cleanup | 3299 | .cleanup = via_playback_multi_pcm_cleanup, |
3300 | .close = via_pcm_open_close | ||
2084 | }, | 3301 | }, |
2085 | }; | 3302 | }; |
2086 | 3303 | ||
@@ -2102,8 +3319,10 @@ static struct hda_pcm_stream vt1708B_pcm_analog_capture = { | |||
2102 | .channels_max = 2, | 3319 | .channels_max = 2, |
2103 | .nid = 0x13, /* NID to query formats and rates */ | 3320 | .nid = 0x13, /* NID to query formats and rates */ |
2104 | .ops = { | 3321 | .ops = { |
3322 | .open = via_pcm_open_close, | ||
2105 | .prepare = via_capture_pcm_prepare, | 3323 | .prepare = via_capture_pcm_prepare, |
2106 | .cleanup = via_capture_pcm_cleanup | 3324 | .cleanup = via_capture_pcm_cleanup, |
3325 | .close = via_pcm_open_close | ||
2107 | }, | 3326 | }, |
2108 | }; | 3327 | }; |
2109 | 3328 | ||
@@ -2260,6 +3479,7 @@ static int vt1708B_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | |||
2260 | return 0; | 3479 | return 0; |
2261 | 3480 | ||
2262 | spec->multiout.hp_nid = VT1708B_HP_NID; /* AOW3 */ | 3481 | spec->multiout.hp_nid = VT1708B_HP_NID; /* AOW3 */ |
3482 | spec->hp_independent_mode_index = 1; | ||
2263 | 3483 | ||
2264 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 3484 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
2265 | "Headphone Playback Volume", | 3485 | "Headphone Playback Volume", |
@@ -2313,8 +3533,7 @@ static int vt1708B_auto_create_analog_input_ctls(struct via_spec *spec, | |||
2313 | idx = 1; | 3533 | idx = 1; |
2314 | break; | 3534 | break; |
2315 | } | 3535 | } |
2316 | err = via_new_analog_input(spec, cfg->input_pins[i], labels[i], | 3536 | err = via_new_analog_input(spec, labels[i], idx, 0x16); |
2317 | idx, 0x16); | ||
2318 | if (err < 0) | 3537 | if (err < 0) |
2319 | return err; | 3538 | return err; |
2320 | imux->items[imux->num_items].label = labels[i]; | 3539 | imux->items[imux->num_items].label = labels[i]; |
@@ -2364,6 +3583,7 @@ static int vt1708B_parse_auto_config(struct hda_codec *codec) | |||
2364 | if (spec->hp_mux) | 3583 | if (spec->hp_mux) |
2365 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | 3584 | spec->mixers[spec->num_mixers++] = via_hp_mixer; |
2366 | 3585 | ||
3586 | spec->mixers[spec->num_mixers++] = via_smart51_mixer; | ||
2367 | return 1; | 3587 | return 1; |
2368 | } | 3588 | } |
2369 | 3589 | ||
@@ -2376,12 +3596,14 @@ static struct hda_amp_list vt1708B_loopbacks[] = { | |||
2376 | { } /* end */ | 3596 | { } /* end */ |
2377 | }; | 3597 | }; |
2378 | #endif | 3598 | #endif |
2379 | 3599 | static int patch_vt1708S(struct hda_codec *codec); | |
2380 | static int patch_vt1708B_8ch(struct hda_codec *codec) | 3600 | static int patch_vt1708B_8ch(struct hda_codec *codec) |
2381 | { | 3601 | { |
2382 | struct via_spec *spec; | 3602 | struct via_spec *spec; |
2383 | int err; | 3603 | int err; |
2384 | 3604 | ||
3605 | if (get_codec_type(codec) == VT1708BCE) | ||
3606 | return patch_vt1708S(codec); | ||
2385 | /* create a codec specific record */ | 3607 | /* create a codec specific record */ |
2386 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 3608 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
2387 | if (spec == NULL) | 3609 | if (spec == NULL) |
@@ -2483,29 +3705,15 @@ static int patch_vt1708B_4ch(struct hda_codec *codec) | |||
2483 | 3705 | ||
2484 | /* Patch for VT1708S */ | 3706 | /* Patch for VT1708S */ |
2485 | 3707 | ||
2486 | /* VT1708S software backdoor based override for buggy hardware micboost | ||
2487 | * setting */ | ||
2488 | #define MIC_BOOST_VOLUME(xname, nid) { \ | ||
2489 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \ | ||
2490 | .name = xname, \ | ||
2491 | .index = 0, \ | ||
2492 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | \ | ||
2493 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | \ | ||
2494 | SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK, \ | ||
2495 | .info = mic_boost_volume_info, \ | ||
2496 | .get = snd_hda_mixer_amp_volume_get, \ | ||
2497 | .put = snd_hda_mixer_amp_volume_put, \ | ||
2498 | .tlv = { .c = mic_boost_tlv }, \ | ||
2499 | .private_value = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT) } | ||
2500 | |||
2501 | /* capture mixer elements */ | 3708 | /* capture mixer elements */ |
2502 | static struct snd_kcontrol_new vt1708S_capture_mixer[] = { | 3709 | static struct snd_kcontrol_new vt1708S_capture_mixer[] = { |
2503 | HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT), | 3710 | HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT), |
2504 | HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT), | 3711 | HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT), |
2505 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT), | 3712 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT), |
2506 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT), | 3713 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT), |
2507 | MIC_BOOST_VOLUME("Mic Boost Capture Volume", 0x1A), | 3714 | HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT), |
2508 | MIC_BOOST_VOLUME("Front Mic Boost Capture Volume", 0x1E), | 3715 | HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0, |
3716 | HDA_INPUT), | ||
2509 | { | 3717 | { |
2510 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 3718 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
2511 | /* The multiple "Capture Source" controls confuse alsamixer | 3719 | /* The multiple "Capture Source" controls confuse alsamixer |
@@ -2542,11 +3750,21 @@ static struct hda_verb vt1708S_volume_init_verbs[] = { | |||
2542 | {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | 3750 | {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, |
2543 | /* Enable Mic Boost Volume backdoor */ | 3751 | /* Enable Mic Boost Volume backdoor */ |
2544 | {0x1, 0xf98, 0x1}, | 3752 | {0x1, 0xf98, 0x1}, |
3753 | /* don't bybass mixer */ | ||
3754 | {0x1, 0xf88, 0xc0}, | ||
2545 | { } | 3755 | { } |
2546 | }; | 3756 | }; |
2547 | 3757 | ||
2548 | static struct hda_verb vt1708S_uniwill_init_verbs[] = { | 3758 | static struct hda_verb vt1708S_uniwill_init_verbs[] = { |
2549 | {0x1D, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_HP_EVENT}, | 3759 | {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, |
3760 | AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT}, | ||
3761 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3762 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3763 | {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3764 | {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3765 | {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3766 | {0x22, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
3767 | {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
2550 | { } | 3768 | { } |
2551 | }; | 3769 | }; |
2552 | 3770 | ||
@@ -2557,8 +3775,9 @@ static struct hda_pcm_stream vt1708S_pcm_analog_playback = { | |||
2557 | .nid = 0x10, /* NID to query formats and rates */ | 3775 | .nid = 0x10, /* NID to query formats and rates */ |
2558 | .ops = { | 3776 | .ops = { |
2559 | .open = via_playback_pcm_open, | 3777 | .open = via_playback_pcm_open, |
2560 | .prepare = via_playback_pcm_prepare, | 3778 | .prepare = via_playback_multi_pcm_prepare, |
2561 | .cleanup = via_playback_pcm_cleanup | 3779 | .cleanup = via_playback_multi_pcm_cleanup, |
3780 | .close = via_pcm_open_close | ||
2562 | }, | 3781 | }, |
2563 | }; | 3782 | }; |
2564 | 3783 | ||
@@ -2568,8 +3787,10 @@ static struct hda_pcm_stream vt1708S_pcm_analog_capture = { | |||
2568 | .channels_max = 2, | 3787 | .channels_max = 2, |
2569 | .nid = 0x13, /* NID to query formats and rates */ | 3788 | .nid = 0x13, /* NID to query formats and rates */ |
2570 | .ops = { | 3789 | .ops = { |
3790 | .open = via_pcm_open_close, | ||
2571 | .prepare = via_capture_pcm_prepare, | 3791 | .prepare = via_capture_pcm_prepare, |
2572 | .cleanup = via_capture_pcm_cleanup | 3792 | .cleanup = via_capture_pcm_cleanup, |
3793 | .close = via_pcm_open_close | ||
2573 | }, | 3794 | }, |
2574 | }; | 3795 | }; |
2575 | 3796 | ||
@@ -2726,6 +3947,7 @@ static int vt1708S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | |||
2726 | return 0; | 3947 | return 0; |
2727 | 3948 | ||
2728 | spec->multiout.hp_nid = VT1708S_HP_NID; /* AOW3 */ | 3949 | spec->multiout.hp_nid = VT1708S_HP_NID; /* AOW3 */ |
3950 | spec->hp_independent_mode_index = 1; | ||
2729 | 3951 | ||
2730 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 3952 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
2731 | "Headphone Playback Volume", | 3953 | "Headphone Playback Volume", |
@@ -2780,8 +4002,7 @@ static int vt1708S_auto_create_analog_input_ctls(struct via_spec *spec, | |||
2780 | idx = 1; | 4002 | idx = 1; |
2781 | break; | 4003 | break; |
2782 | } | 4004 | } |
2783 | err = via_new_analog_input(spec, cfg->input_pins[i], labels[i], | 4005 | err = via_new_analog_input(spec, labels[i], idx, 0x16); |
2784 | idx, 0x16); | ||
2785 | if (err < 0) | 4006 | if (err < 0) |
2786 | return err; | 4007 | return err; |
2787 | imux->items[imux->num_items].label = labels[i]; | 4008 | imux->items[imux->num_items].label = labels[i]; |
@@ -2852,6 +4073,7 @@ static int vt1708S_parse_auto_config(struct hda_codec *codec) | |||
2852 | if (spec->hp_mux) | 4073 | if (spec->hp_mux) |
2853 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | 4074 | spec->mixers[spec->num_mixers++] = via_hp_mixer; |
2854 | 4075 | ||
4076 | spec->mixers[spec->num_mixers++] = via_smart51_mixer; | ||
2855 | return 1; | 4077 | return 1; |
2856 | } | 4078 | } |
2857 | 4079 | ||
@@ -2865,6 +4087,16 @@ static struct hda_amp_list vt1708S_loopbacks[] = { | |||
2865 | }; | 4087 | }; |
2866 | #endif | 4088 | #endif |
2867 | 4089 | ||
4090 | static void override_mic_boost(struct hda_codec *codec, hda_nid_t pin, | ||
4091 | int offset, int num_steps, int step_size) | ||
4092 | { | ||
4093 | snd_hda_override_amp_caps(codec, pin, HDA_INPUT, | ||
4094 | (offset << AC_AMPCAP_OFFSET_SHIFT) | | ||
4095 | (num_steps << AC_AMPCAP_NUM_STEPS_SHIFT) | | ||
4096 | (step_size << AC_AMPCAP_STEP_SIZE_SHIFT) | | ||
4097 | (0 << AC_AMPCAP_MUTE_SHIFT)); | ||
4098 | } | ||
4099 | |||
2868 | static int patch_vt1708S(struct hda_codec *codec) | 4100 | static int patch_vt1708S(struct hda_codec *codec) |
2869 | { | 4101 | { |
2870 | struct via_spec *spec; | 4102 | struct via_spec *spec; |
@@ -2890,17 +4122,25 @@ static int patch_vt1708S(struct hda_codec *codec) | |||
2890 | spec->init_verbs[spec->num_iverbs++] = vt1708S_volume_init_verbs; | 4122 | spec->init_verbs[spec->num_iverbs++] = vt1708S_volume_init_verbs; |
2891 | spec->init_verbs[spec->num_iverbs++] = vt1708S_uniwill_init_verbs; | 4123 | spec->init_verbs[spec->num_iverbs++] = vt1708S_uniwill_init_verbs; |
2892 | 4124 | ||
2893 | spec->stream_name_analog = "VT1708S Analog"; | 4125 | if (codec->vendor_id == 0x11060440) |
4126 | spec->stream_name_analog = "VT1818S Analog"; | ||
4127 | else | ||
4128 | spec->stream_name_analog = "VT1708S Analog"; | ||
2894 | spec->stream_analog_playback = &vt1708S_pcm_analog_playback; | 4129 | spec->stream_analog_playback = &vt1708S_pcm_analog_playback; |
2895 | spec->stream_analog_capture = &vt1708S_pcm_analog_capture; | 4130 | spec->stream_analog_capture = &vt1708S_pcm_analog_capture; |
2896 | 4131 | ||
2897 | spec->stream_name_digital = "VT1708S Digital"; | 4132 | if (codec->vendor_id == 0x11060440) |
4133 | spec->stream_name_digital = "VT1818S Digital"; | ||
4134 | else | ||
4135 | spec->stream_name_digital = "VT1708S Digital"; | ||
2898 | spec->stream_digital_playback = &vt1708S_pcm_digital_playback; | 4136 | spec->stream_digital_playback = &vt1708S_pcm_digital_playback; |
2899 | 4137 | ||
2900 | if (!spec->adc_nids && spec->input_mux) { | 4138 | if (!spec->adc_nids && spec->input_mux) { |
2901 | spec->adc_nids = vt1708S_adc_nids; | 4139 | spec->adc_nids = vt1708S_adc_nids; |
2902 | spec->num_adc_nids = ARRAY_SIZE(vt1708S_adc_nids); | 4140 | spec->num_adc_nids = ARRAY_SIZE(vt1708S_adc_nids); |
2903 | get_mux_nids(codec); | 4141 | get_mux_nids(codec); |
4142 | override_mic_boost(codec, 0x1a, 0, 3, 40); | ||
4143 | override_mic_boost(codec, 0x1e, 0, 3, 40); | ||
2904 | spec->mixers[spec->num_mixers] = vt1708S_capture_mixer; | 4144 | spec->mixers[spec->num_mixers] = vt1708S_capture_mixer; |
2905 | spec->num_mixers++; | 4145 | spec->num_mixers++; |
2906 | } | 4146 | } |
@@ -2913,6 +4153,16 @@ static int patch_vt1708S(struct hda_codec *codec) | |||
2913 | spec->loopback.amplist = vt1708S_loopbacks; | 4153 | spec->loopback.amplist = vt1708S_loopbacks; |
2914 | #endif | 4154 | #endif |
2915 | 4155 | ||
4156 | /* correct names for VT1708BCE */ | ||
4157 | if (get_codec_type(codec) == VT1708BCE) { | ||
4158 | kfree(codec->chip_name); | ||
4159 | codec->chip_name = kstrdup("VT1708BCE", GFP_KERNEL); | ||
4160 | snprintf(codec->bus->card->mixername, | ||
4161 | sizeof(codec->bus->card->mixername), | ||
4162 | "%s %s", codec->vendor_name, codec->chip_name); | ||
4163 | spec->stream_name_analog = "VT1708BCE Analog"; | ||
4164 | spec->stream_name_digital = "VT1708BCE Digital"; | ||
4165 | } | ||
2916 | return 0; | 4166 | return 0; |
2917 | } | 4167 | } |
2918 | 4168 | ||
@@ -2967,12 +4217,20 @@ static struct hda_verb vt1702_volume_init_verbs[] = { | |||
2967 | /* PW6 PW7 Output enable */ | 4217 | /* PW6 PW7 Output enable */ |
2968 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | 4218 | {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, |
2969 | {0x1C, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | 4219 | {0x1C, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, |
4220 | /* mixer enable */ | ||
4221 | {0x1, 0xF88, 0x3}, | ||
4222 | /* GPIO 0~2 */ | ||
4223 | {0x1, 0xF82, 0x3F}, | ||
2970 | { } | 4224 | { } |
2971 | }; | 4225 | }; |
2972 | 4226 | ||
2973 | static struct hda_verb vt1702_uniwill_init_verbs[] = { | 4227 | static struct hda_verb vt1702_uniwill_init_verbs[] = { |
2974 | {0x01, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_GPIO_EVENT}, | 4228 | {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, |
2975 | {0x17, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_HP_EVENT}, | 4229 | AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT}, |
4230 | {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4231 | {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4232 | {0x16, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4233 | {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
2976 | { } | 4234 | { } |
2977 | }; | 4235 | }; |
2978 | 4236 | ||
@@ -2984,7 +4242,8 @@ static struct hda_pcm_stream vt1702_pcm_analog_playback = { | |||
2984 | .ops = { | 4242 | .ops = { |
2985 | .open = via_playback_pcm_open, | 4243 | .open = via_playback_pcm_open, |
2986 | .prepare = via_playback_multi_pcm_prepare, | 4244 | .prepare = via_playback_multi_pcm_prepare, |
2987 | .cleanup = via_playback_multi_pcm_cleanup | 4245 | .cleanup = via_playback_multi_pcm_cleanup, |
4246 | .close = via_pcm_open_close | ||
2988 | }, | 4247 | }, |
2989 | }; | 4248 | }; |
2990 | 4249 | ||
@@ -2994,8 +4253,10 @@ static struct hda_pcm_stream vt1702_pcm_analog_capture = { | |||
2994 | .channels_max = 2, | 4253 | .channels_max = 2, |
2995 | .nid = 0x12, /* NID to query formats and rates */ | 4254 | .nid = 0x12, /* NID to query formats and rates */ |
2996 | .ops = { | 4255 | .ops = { |
4256 | .open = via_pcm_open_close, | ||
2997 | .prepare = via_capture_pcm_prepare, | 4257 | .prepare = via_capture_pcm_prepare, |
2998 | .cleanup = via_capture_pcm_cleanup | 4258 | .cleanup = via_capture_pcm_cleanup, |
4259 | .close = via_pcm_open_close | ||
2999 | }, | 4260 | }, |
3000 | }; | 4261 | }; |
3001 | 4262 | ||
@@ -3065,12 +4326,13 @@ static int vt1702_auto_create_line_out_ctls(struct via_spec *spec, | |||
3065 | 4326 | ||
3066 | static int vt1702_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | 4327 | static int vt1702_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) |
3067 | { | 4328 | { |
3068 | int err; | 4329 | int err, i; |
3069 | 4330 | struct hda_input_mux *imux; | |
4331 | static const char *texts[] = { "ON", "OFF", NULL}; | ||
3070 | if (!pin) | 4332 | if (!pin) |
3071 | return 0; | 4333 | return 0; |
3072 | |||
3073 | spec->multiout.hp_nid = 0x1D; | 4334 | spec->multiout.hp_nid = 0x1D; |
4335 | spec->hp_independent_mode_index = 0; | ||
3074 | 4336 | ||
3075 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | 4337 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, |
3076 | "Headphone Playback Volume", | 4338 | "Headphone Playback Volume", |
@@ -3084,8 +4346,18 @@ static int vt1702_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | |||
3084 | if (err < 0) | 4346 | if (err < 0) |
3085 | return err; | 4347 | return err; |
3086 | 4348 | ||
3087 | create_hp_imux(spec); | 4349 | imux = &spec->private_imux[1]; |
3088 | 4350 | ||
4351 | /* for hp mode select */ | ||
4352 | i = 0; | ||
4353 | while (texts[i] != NULL) { | ||
4354 | imux->items[imux->num_items].label = texts[i]; | ||
4355 | imux->items[imux->num_items].index = i; | ||
4356 | imux->num_items++; | ||
4357 | i++; | ||
4358 | } | ||
4359 | |||
4360 | spec->hp_mux = &spec->private_imux[1]; | ||
3089 | return 0; | 4361 | return 0; |
3090 | } | 4362 | } |
3091 | 4363 | ||
@@ -3121,8 +4393,7 @@ static int vt1702_auto_create_analog_input_ctls(struct via_spec *spec, | |||
3121 | idx = 3; | 4393 | idx = 3; |
3122 | break; | 4394 | break; |
3123 | } | 4395 | } |
3124 | err = via_new_analog_input(spec, cfg->input_pins[i], | 4396 | err = via_new_analog_input(spec, labels[i], idx, 0x1A); |
3125 | labels[i], idx, 0x1A); | ||
3126 | if (err < 0) | 4397 | if (err < 0) |
3127 | return err; | 4398 | return err; |
3128 | imux->items[imux->num_items].label = labels[i]; | 4399 | imux->items[imux->num_items].label = labels[i]; |
@@ -3152,6 +4423,12 @@ static int vt1702_parse_auto_config(struct hda_codec *codec) | |||
3152 | err = vt1702_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]); | 4423 | err = vt1702_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]); |
3153 | if (err < 0) | 4424 | if (err < 0) |
3154 | return err; | 4425 | return err; |
4426 | /* limit AA path volume to 0 dB */ | ||
4427 | snd_hda_override_amp_caps(codec, 0x1A, HDA_INPUT, | ||
4428 | (0x17 << AC_AMPCAP_OFFSET_SHIFT) | | ||
4429 | (0x17 << AC_AMPCAP_NUM_STEPS_SHIFT) | | ||
4430 | (0x5 << AC_AMPCAP_STEP_SIZE_SHIFT) | | ||
4431 | (1 << AC_AMPCAP_MUTE_SHIFT)); | ||
3155 | err = vt1702_auto_create_analog_input_ctls(spec, &spec->autocfg); | 4432 | err = vt1702_auto_create_analog_input_ctls(spec, &spec->autocfg); |
3156 | if (err < 0) | 4433 | if (err < 0) |
3157 | return err; | 4434 | return err; |
@@ -3185,8 +4462,6 @@ static int patch_vt1702(struct hda_codec *codec) | |||
3185 | { | 4462 | { |
3186 | struct via_spec *spec; | 4463 | struct via_spec *spec; |
3187 | int err; | 4464 | int err; |
3188 | unsigned int response; | ||
3189 | unsigned char control; | ||
3190 | 4465 | ||
3191 | /* create a codec specific record */ | 4466 | /* create a codec specific record */ |
3192 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | 4467 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
@@ -3231,17 +4506,1638 @@ static int patch_vt1702(struct hda_codec *codec) | |||
3231 | spec->loopback.amplist = vt1702_loopbacks; | 4506 | spec->loopback.amplist = vt1702_loopbacks; |
3232 | #endif | 4507 | #endif |
3233 | 4508 | ||
3234 | /* Open backdoor */ | 4509 | return 0; |
3235 | response = snd_hda_codec_read(codec, codec->afg, 0, 0xF8C, 0); | 4510 | } |
3236 | control = (unsigned char)(response & 0xff); | 4511 | |
3237 | control |= 0x3; | 4512 | /* Patch for VT1718S */ |
3238 | snd_hda_codec_write(codec, codec->afg, 0, 0xF88, control); | 4513 | |
4514 | /* capture mixer elements */ | ||
4515 | static struct snd_kcontrol_new vt1718S_capture_mixer[] = { | ||
4516 | HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT), | ||
4517 | HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT), | ||
4518 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT), | ||
4519 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT), | ||
4520 | HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT), | ||
4521 | HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x29, 0x0, | ||
4522 | HDA_INPUT), | ||
4523 | { | ||
4524 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
4525 | /* The multiple "Capture Source" controls confuse alsamixer | ||
4526 | * So call somewhat different.. | ||
4527 | */ | ||
4528 | .name = "Input Source", | ||
4529 | .count = 2, | ||
4530 | .info = via_mux_enum_info, | ||
4531 | .get = via_mux_enum_get, | ||
4532 | .put = via_mux_enum_put, | ||
4533 | }, | ||
4534 | { } /* end */ | ||
4535 | }; | ||
4536 | |||
4537 | static struct hda_verb vt1718S_volume_init_verbs[] = { | ||
4538 | /* | ||
4539 | * Unmute ADC0-1 and set the default input to mic-in | ||
4540 | */ | ||
4541 | {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4542 | {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4543 | |||
4544 | |||
4545 | /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback | ||
4546 | * mixer widget | ||
4547 | */ | ||
4548 | /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */ | ||
4549 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
4550 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
4551 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
4552 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
4553 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, | ||
4554 | |||
4555 | /* Setup default input of Front HP to MW9 */ | ||
4556 | {0x28, AC_VERB_SET_CONNECT_SEL, 0x1}, | ||
4557 | /* PW9 PW10 Output enable */ | ||
4558 | {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN}, | ||
4559 | {0x2e, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN}, | ||
4560 | /* PW11 Input enable */ | ||
4561 | {0x2f, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_IN_EN}, | ||
4562 | /* Enable Boost Volume backdoor */ | ||
4563 | {0x1, 0xf88, 0x8}, | ||
4564 | /* MW0/1/2/3/4: un-mute index 0 (AOWx), mute index 1 (MW9) */ | ||
4565 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4566 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4567 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4568 | {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4569 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4570 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
4571 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
4572 | {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
4573 | {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
4574 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
4575 | /* set MUX1 = 2 (AOW4), MUX2 = 1 (AOW3) */ | ||
4576 | {0x34, AC_VERB_SET_CONNECT_SEL, 0x2}, | ||
4577 | {0x35, AC_VERB_SET_CONNECT_SEL, 0x1}, | ||
4578 | /* Unmute MW4's index 0 */ | ||
4579 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
4580 | { } | ||
4581 | }; | ||
4582 | |||
4583 | |||
4584 | static struct hda_verb vt1718S_uniwill_init_verbs[] = { | ||
4585 | {0x28, AC_VERB_SET_UNSOLICITED_ENABLE, | ||
4586 | AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT}, | ||
4587 | {0x24, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4588 | {0x25, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4589 | {0x26, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4590 | {0x27, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4591 | {0x29, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4592 | {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4593 | {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
4594 | { } | ||
4595 | }; | ||
4596 | |||
4597 | static struct hda_pcm_stream vt1718S_pcm_analog_playback = { | ||
4598 | .substreams = 2, | ||
4599 | .channels_min = 2, | ||
4600 | .channels_max = 10, | ||
4601 | .nid = 0x8, /* NID to query formats and rates */ | ||
4602 | .ops = { | ||
4603 | .open = via_playback_pcm_open, | ||
4604 | .prepare = via_playback_multi_pcm_prepare, | ||
4605 | .cleanup = via_playback_multi_pcm_cleanup, | ||
4606 | .close = via_pcm_open_close, | ||
4607 | }, | ||
4608 | }; | ||
4609 | |||
4610 | static struct hda_pcm_stream vt1718S_pcm_analog_capture = { | ||
4611 | .substreams = 2, | ||
4612 | .channels_min = 2, | ||
4613 | .channels_max = 2, | ||
4614 | .nid = 0x10, /* NID to query formats and rates */ | ||
4615 | .ops = { | ||
4616 | .open = via_pcm_open_close, | ||
4617 | .prepare = via_capture_pcm_prepare, | ||
4618 | .cleanup = via_capture_pcm_cleanup, | ||
4619 | .close = via_pcm_open_close, | ||
4620 | }, | ||
4621 | }; | ||
4622 | |||
4623 | static struct hda_pcm_stream vt1718S_pcm_digital_playback = { | ||
4624 | .substreams = 2, | ||
4625 | .channels_min = 2, | ||
4626 | .channels_max = 2, | ||
4627 | /* NID is set in via_build_pcms */ | ||
4628 | .ops = { | ||
4629 | .open = via_dig_playback_pcm_open, | ||
4630 | .close = via_dig_playback_pcm_close, | ||
4631 | .prepare = via_dig_playback_pcm_prepare, | ||
4632 | .cleanup = via_dig_playback_pcm_cleanup | ||
4633 | }, | ||
4634 | }; | ||
4635 | |||
4636 | static struct hda_pcm_stream vt1718S_pcm_digital_capture = { | ||
4637 | .substreams = 1, | ||
4638 | .channels_min = 2, | ||
4639 | .channels_max = 2, | ||
4640 | }; | ||
4641 | |||
4642 | /* fill in the dac_nids table from the parsed pin configuration */ | ||
4643 | static int vt1718S_auto_fill_dac_nids(struct via_spec *spec, | ||
4644 | const struct auto_pin_cfg *cfg) | ||
4645 | { | ||
4646 | int i; | ||
4647 | hda_nid_t nid; | ||
4648 | |||
4649 | spec->multiout.num_dacs = cfg->line_outs; | ||
4650 | |||
4651 | spec->multiout.dac_nids = spec->private_dac_nids; | ||
4652 | |||
4653 | for (i = 0; i < 4; i++) { | ||
4654 | nid = cfg->line_out_pins[i]; | ||
4655 | if (nid) { | ||
4656 | /* config dac list */ | ||
4657 | switch (i) { | ||
4658 | case AUTO_SEQ_FRONT: | ||
4659 | spec->multiout.dac_nids[i] = 0x8; | ||
4660 | break; | ||
4661 | case AUTO_SEQ_CENLFE: | ||
4662 | spec->multiout.dac_nids[i] = 0xa; | ||
4663 | break; | ||
4664 | case AUTO_SEQ_SURROUND: | ||
4665 | spec->multiout.dac_nids[i] = 0x9; | ||
4666 | break; | ||
4667 | case AUTO_SEQ_SIDE: | ||
4668 | spec->multiout.dac_nids[i] = 0xb; | ||
4669 | break; | ||
4670 | } | ||
4671 | } | ||
4672 | } | ||
4673 | |||
4674 | return 0; | ||
4675 | } | ||
4676 | |||
4677 | /* add playback controls from the parsed DAC table */ | ||
4678 | static int vt1718S_auto_create_multi_out_ctls(struct via_spec *spec, | ||
4679 | const struct auto_pin_cfg *cfg) | ||
4680 | { | ||
4681 | char name[32]; | ||
4682 | static const char *chname[4] = { "Front", "Surround", "C/LFE", "Side" }; | ||
4683 | hda_nid_t nid_vols[] = {0x8, 0x9, 0xa, 0xb}; | ||
4684 | hda_nid_t nid_mutes[] = {0x24, 0x25, 0x26, 0x27}; | ||
4685 | hda_nid_t nid, nid_vol, nid_mute = 0; | ||
4686 | int i, err; | ||
4687 | |||
4688 | for (i = 0; i <= AUTO_SEQ_SIDE; i++) { | ||
4689 | nid = cfg->line_out_pins[i]; | ||
4690 | |||
4691 | if (!nid) | ||
4692 | continue; | ||
4693 | nid_vol = nid_vols[i]; | ||
4694 | nid_mute = nid_mutes[i]; | ||
4695 | |||
4696 | if (i == AUTO_SEQ_CENLFE) { | ||
4697 | /* Center/LFE */ | ||
4698 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
4699 | "Center Playback Volume", | ||
4700 | HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0, | ||
4701 | HDA_OUTPUT)); | ||
4702 | if (err < 0) | ||
4703 | return err; | ||
4704 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
4705 | "LFE Playback Volume", | ||
4706 | HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, | ||
4707 | HDA_OUTPUT)); | ||
4708 | if (err < 0) | ||
4709 | return err; | ||
4710 | err = via_add_control( | ||
4711 | spec, VIA_CTL_WIDGET_MUTE, | ||
4712 | "Center Playback Switch", | ||
4713 | HDA_COMPOSE_AMP_VAL(nid_mute, 1, 0, | ||
4714 | HDA_OUTPUT)); | ||
4715 | if (err < 0) | ||
4716 | return err; | ||
4717 | err = via_add_control( | ||
4718 | spec, VIA_CTL_WIDGET_MUTE, | ||
4719 | "LFE Playback Switch", | ||
4720 | HDA_COMPOSE_AMP_VAL(nid_mute, 2, 0, | ||
4721 | HDA_OUTPUT)); | ||
4722 | if (err < 0) | ||
4723 | return err; | ||
4724 | } else if (i == AUTO_SEQ_FRONT) { | ||
4725 | /* Front */ | ||
4726 | sprintf(name, "%s Playback Volume", chname[i]); | ||
4727 | err = via_add_control( | ||
4728 | spec, VIA_CTL_WIDGET_VOL, name, | ||
4729 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT)); | ||
4730 | if (err < 0) | ||
4731 | return err; | ||
4732 | sprintf(name, "%s Playback Switch", chname[i]); | ||
4733 | err = via_add_control( | ||
4734 | spec, VIA_CTL_WIDGET_MUTE, name, | ||
4735 | HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0, | ||
4736 | HDA_OUTPUT)); | ||
4737 | if (err < 0) | ||
4738 | return err; | ||
4739 | } else { | ||
4740 | sprintf(name, "%s Playback Volume", chname[i]); | ||
4741 | err = via_add_control( | ||
4742 | spec, VIA_CTL_WIDGET_VOL, name, | ||
4743 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT)); | ||
4744 | if (err < 0) | ||
4745 | return err; | ||
4746 | sprintf(name, "%s Playback Switch", chname[i]); | ||
4747 | err = via_add_control( | ||
4748 | spec, VIA_CTL_WIDGET_MUTE, name, | ||
4749 | HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0, | ||
4750 | HDA_OUTPUT)); | ||
4751 | if (err < 0) | ||
4752 | return err; | ||
4753 | } | ||
4754 | } | ||
4755 | return 0; | ||
4756 | } | ||
4757 | |||
4758 | static int vt1718S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | ||
4759 | { | ||
4760 | int err; | ||
4761 | |||
4762 | if (!pin) | ||
4763 | return 0; | ||
4764 | |||
4765 | spec->multiout.hp_nid = 0xc; /* AOW4 */ | ||
4766 | spec->hp_independent_mode_index = 1; | ||
4767 | |||
4768 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
4769 | "Headphone Playback Volume", | ||
4770 | HDA_COMPOSE_AMP_VAL(0xc, 3, 0, HDA_OUTPUT)); | ||
4771 | if (err < 0) | ||
4772 | return err; | ||
4773 | |||
4774 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | ||
4775 | "Headphone Playback Switch", | ||
4776 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); | ||
4777 | if (err < 0) | ||
4778 | return err; | ||
4779 | |||
4780 | create_hp_imux(spec); | ||
4781 | return 0; | ||
4782 | } | ||
4783 | |||
4784 | /* create playback/capture controls for input pins */ | ||
4785 | static int vt1718S_auto_create_analog_input_ctls(struct via_spec *spec, | ||
4786 | const struct auto_pin_cfg *cfg) | ||
4787 | { | ||
4788 | static char *labels[] = { | ||
4789 | "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux", NULL | ||
4790 | }; | ||
4791 | struct hda_input_mux *imux = &spec->private_imux[0]; | ||
4792 | int i, err, idx = 0; | ||
4793 | |||
4794 | /* for internal loopback recording select */ | ||
4795 | imux->items[imux->num_items].label = "Stereo Mixer"; | ||
4796 | imux->items[imux->num_items].index = 5; | ||
4797 | imux->num_items++; | ||
4798 | |||
4799 | for (i = 0; i < AUTO_PIN_LAST; i++) { | ||
4800 | if (!cfg->input_pins[i]) | ||
4801 | continue; | ||
4802 | |||
4803 | switch (cfg->input_pins[i]) { | ||
4804 | case 0x2b: /* Mic */ | ||
4805 | idx = 1; | ||
4806 | break; | ||
4807 | |||
4808 | case 0x2a: /* Line In */ | ||
4809 | idx = 2; | ||
4810 | break; | ||
4811 | |||
4812 | case 0x29: /* Front Mic */ | ||
4813 | idx = 3; | ||
4814 | break; | ||
4815 | |||
4816 | case 0x2c: /* CD */ | ||
4817 | idx = 0; | ||
4818 | break; | ||
4819 | } | ||
4820 | err = via_new_analog_input(spec, labels[i], idx, 0x21); | ||
4821 | if (err < 0) | ||
4822 | return err; | ||
4823 | imux->items[imux->num_items].label = labels[i]; | ||
4824 | imux->items[imux->num_items].index = idx; | ||
4825 | imux->num_items++; | ||
4826 | } | ||
4827 | return 0; | ||
4828 | } | ||
4829 | |||
4830 | static int vt1718S_parse_auto_config(struct hda_codec *codec) | ||
4831 | { | ||
4832 | struct via_spec *spec = codec->spec; | ||
4833 | int err; | ||
4834 | |||
4835 | err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL); | ||
4836 | |||
4837 | if (err < 0) | ||
4838 | return err; | ||
4839 | err = vt1718S_auto_fill_dac_nids(spec, &spec->autocfg); | ||
4840 | if (err < 0) | ||
4841 | return err; | ||
4842 | if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0]) | ||
4843 | return 0; /* can't find valid BIOS pin config */ | ||
4844 | |||
4845 | err = vt1718S_auto_create_multi_out_ctls(spec, &spec->autocfg); | ||
4846 | if (err < 0) | ||
4847 | return err; | ||
4848 | err = vt1718S_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]); | ||
4849 | if (err < 0) | ||
4850 | return err; | ||
4851 | err = vt1718S_auto_create_analog_input_ctls(spec, &spec->autocfg); | ||
4852 | if (err < 0) | ||
4853 | return err; | ||
4854 | |||
4855 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; | ||
4856 | |||
4857 | fill_dig_outs(codec); | ||
4858 | |||
4859 | if (spec->autocfg.dig_in_pin && codec->vendor_id == 0x11060428) | ||
4860 | spec->dig_in_nid = 0x13; | ||
4861 | |||
4862 | if (spec->kctls.list) | ||
4863 | spec->mixers[spec->num_mixers++] = spec->kctls.list; | ||
4864 | |||
4865 | spec->input_mux = &spec->private_imux[0]; | ||
4866 | |||
4867 | if (spec->hp_mux) | ||
4868 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | ||
4869 | |||
4870 | spec->mixers[spec->num_mixers++] = via_smart51_mixer; | ||
4871 | |||
4872 | return 1; | ||
4873 | } | ||
4874 | |||
4875 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
4876 | static struct hda_amp_list vt1718S_loopbacks[] = { | ||
4877 | { 0x21, HDA_INPUT, 1 }, | ||
4878 | { 0x21, HDA_INPUT, 2 }, | ||
4879 | { 0x21, HDA_INPUT, 3 }, | ||
4880 | { 0x21, HDA_INPUT, 4 }, | ||
4881 | { } /* end */ | ||
4882 | }; | ||
4883 | #endif | ||
4884 | |||
4885 | static int patch_vt1718S(struct hda_codec *codec) | ||
4886 | { | ||
4887 | struct via_spec *spec; | ||
4888 | int err; | ||
3239 | 4889 | ||
3240 | /* Enable GPIO 0&1 for volume&mute control */ | 4890 | /* create a codec specific record */ |
3241 | /* Enable GPIO 2 for DMIC-DATA */ | 4891 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); |
3242 | response = snd_hda_codec_read(codec, codec->afg, 0, 0xF84, 0); | 4892 | if (spec == NULL) |
3243 | control = (unsigned char)((response >> 16) & 0x3f); | 4893 | return -ENOMEM; |
3244 | snd_hda_codec_write(codec, codec->afg, 0, 0xF82, control); | 4894 | |
4895 | codec->spec = spec; | ||
4896 | |||
4897 | /* automatic parse from the BIOS config */ | ||
4898 | err = vt1718S_parse_auto_config(codec); | ||
4899 | if (err < 0) { | ||
4900 | via_free(codec); | ||
4901 | return err; | ||
4902 | } else if (!err) { | ||
4903 | printk(KERN_INFO "hda_codec: Cannot set up configuration " | ||
4904 | "from BIOS. Using genenic mode...\n"); | ||
4905 | } | ||
4906 | |||
4907 | spec->init_verbs[spec->num_iverbs++] = vt1718S_volume_init_verbs; | ||
4908 | spec->init_verbs[spec->num_iverbs++] = vt1718S_uniwill_init_verbs; | ||
4909 | |||
4910 | if (codec->vendor_id == 0x11060441) | ||
4911 | spec->stream_name_analog = "VT2020 Analog"; | ||
4912 | else if (codec->vendor_id == 0x11064441) | ||
4913 | spec->stream_name_analog = "VT1828S Analog"; | ||
4914 | else | ||
4915 | spec->stream_name_analog = "VT1718S Analog"; | ||
4916 | spec->stream_analog_playback = &vt1718S_pcm_analog_playback; | ||
4917 | spec->stream_analog_capture = &vt1718S_pcm_analog_capture; | ||
4918 | |||
4919 | if (codec->vendor_id == 0x11060441) | ||
4920 | spec->stream_name_digital = "VT2020 Digital"; | ||
4921 | else if (codec->vendor_id == 0x11064441) | ||
4922 | spec->stream_name_digital = "VT1828S Digital"; | ||
4923 | else | ||
4924 | spec->stream_name_digital = "VT1718S Digital"; | ||
4925 | spec->stream_digital_playback = &vt1718S_pcm_digital_playback; | ||
4926 | if (codec->vendor_id == 0x11060428 || codec->vendor_id == 0x11060441) | ||
4927 | spec->stream_digital_capture = &vt1718S_pcm_digital_capture; | ||
4928 | |||
4929 | if (!spec->adc_nids && spec->input_mux) { | ||
4930 | spec->adc_nids = vt1718S_adc_nids; | ||
4931 | spec->num_adc_nids = ARRAY_SIZE(vt1718S_adc_nids); | ||
4932 | get_mux_nids(codec); | ||
4933 | override_mic_boost(codec, 0x2b, 0, 3, 40); | ||
4934 | override_mic_boost(codec, 0x29, 0, 3, 40); | ||
4935 | spec->mixers[spec->num_mixers] = vt1718S_capture_mixer; | ||
4936 | spec->num_mixers++; | ||
4937 | } | ||
4938 | |||
4939 | codec->patch_ops = via_patch_ops; | ||
4940 | |||
4941 | codec->patch_ops.init = via_auto_init; | ||
4942 | codec->patch_ops.unsol_event = via_unsol_event; | ||
4943 | |||
4944 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
4945 | spec->loopback.amplist = vt1718S_loopbacks; | ||
4946 | #endif | ||
4947 | |||
4948 | return 0; | ||
4949 | } | ||
4950 | |||
4951 | /* Patch for VT1716S */ | ||
4952 | |||
4953 | static int vt1716s_dmic_info(struct snd_kcontrol *kcontrol, | ||
4954 | struct snd_ctl_elem_info *uinfo) | ||
4955 | { | ||
4956 | uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN; | ||
4957 | uinfo->count = 1; | ||
4958 | uinfo->value.integer.min = 0; | ||
4959 | uinfo->value.integer.max = 1; | ||
4960 | return 0; | ||
4961 | } | ||
4962 | |||
4963 | static int vt1716s_dmic_get(struct snd_kcontrol *kcontrol, | ||
4964 | struct snd_ctl_elem_value *ucontrol) | ||
4965 | { | ||
4966 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | ||
4967 | int index = 0; | ||
4968 | |||
4969 | index = snd_hda_codec_read(codec, 0x26, 0, | ||
4970 | AC_VERB_GET_CONNECT_SEL, 0); | ||
4971 | if (index != -1) | ||
4972 | *ucontrol->value.integer.value = index; | ||
4973 | |||
4974 | return 0; | ||
4975 | } | ||
4976 | |||
4977 | static int vt1716s_dmic_put(struct snd_kcontrol *kcontrol, | ||
4978 | struct snd_ctl_elem_value *ucontrol) | ||
4979 | { | ||
4980 | struct hda_codec *codec = snd_kcontrol_chip(kcontrol); | ||
4981 | struct via_spec *spec = codec->spec; | ||
4982 | int index = *ucontrol->value.integer.value; | ||
4983 | |||
4984 | snd_hda_codec_write(codec, 0x26, 0, | ||
4985 | AC_VERB_SET_CONNECT_SEL, index); | ||
4986 | spec->dmic_enabled = index; | ||
4987 | set_jack_power_state(codec); | ||
4988 | |||
4989 | return 1; | ||
4990 | } | ||
4991 | |||
4992 | /* capture mixer elements */ | ||
4993 | static struct snd_kcontrol_new vt1716S_capture_mixer[] = { | ||
4994 | HDA_CODEC_VOLUME("Capture Volume", 0x13, 0x0, HDA_INPUT), | ||
4995 | HDA_CODEC_MUTE("Capture Switch", 0x13, 0x0, HDA_INPUT), | ||
4996 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x14, 0x0, HDA_INPUT), | ||
4997 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x14, 0x0, HDA_INPUT), | ||
4998 | HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x1A, 0x0, HDA_INPUT), | ||
4999 | HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x1E, 0x0, | ||
5000 | HDA_INPUT), | ||
5001 | { | ||
5002 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
5003 | .name = "Input Source", | ||
5004 | .count = 1, | ||
5005 | .info = via_mux_enum_info, | ||
5006 | .get = via_mux_enum_get, | ||
5007 | .put = via_mux_enum_put, | ||
5008 | }, | ||
5009 | { } /* end */ | ||
5010 | }; | ||
5011 | |||
5012 | static struct snd_kcontrol_new vt1716s_dmic_mixer[] = { | ||
5013 | HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x22, 0x0, HDA_INPUT), | ||
5014 | { | ||
5015 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
5016 | .name = "Digital Mic Capture Switch", | ||
5017 | .count = 1, | ||
5018 | .info = vt1716s_dmic_info, | ||
5019 | .get = vt1716s_dmic_get, | ||
5020 | .put = vt1716s_dmic_put, | ||
5021 | }, | ||
5022 | {} /* end */ | ||
5023 | }; | ||
5024 | |||
5025 | |||
5026 | /* mono-out mixer elements */ | ||
5027 | static struct snd_kcontrol_new vt1716S_mono_out_mixer[] = { | ||
5028 | HDA_CODEC_MUTE("Mono Playback Switch", 0x2a, 0x0, HDA_OUTPUT), | ||
5029 | { } /* end */ | ||
5030 | }; | ||
5031 | |||
5032 | static struct hda_verb vt1716S_volume_init_verbs[] = { | ||
5033 | /* | ||
5034 | * Unmute ADC0-1 and set the default input to mic-in | ||
5035 | */ | ||
5036 | {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5037 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5038 | |||
5039 | |||
5040 | /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback | ||
5041 | * mixer widget | ||
5042 | */ | ||
5043 | /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */ | ||
5044 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
5045 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
5046 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
5047 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
5048 | {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, | ||
5049 | |||
5050 | /* MUX Indices: Stereo Mixer = 5 */ | ||
5051 | {0x17, AC_VERB_SET_CONNECT_SEL, 0x5}, | ||
5052 | |||
5053 | /* Setup default input of PW4 to MW0 */ | ||
5054 | {0x1d, AC_VERB_SET_CONNECT_SEL, 0x0}, | ||
5055 | |||
5056 | /* Setup default input of SW1 as MW0 */ | ||
5057 | {0x18, AC_VERB_SET_CONNECT_SEL, 0x1}, | ||
5058 | |||
5059 | /* Setup default input of SW4 as AOW0 */ | ||
5060 | {0x28, AC_VERB_SET_CONNECT_SEL, 0x1}, | ||
5061 | |||
5062 | /* PW9 PW10 Output enable */ | ||
5063 | {0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | ||
5064 | {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | ||
5065 | |||
5066 | /* Unmute SW1, PW12 */ | ||
5067 | {0x29, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5068 | {0x2a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, | ||
5069 | /* PW12 Output enable */ | ||
5070 | {0x2a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40}, | ||
5071 | /* Enable Boost Volume backdoor */ | ||
5072 | {0x1, 0xf8a, 0x80}, | ||
5073 | /* don't bybass mixer */ | ||
5074 | {0x1, 0xf88, 0xc0}, | ||
5075 | /* Enable mono output */ | ||
5076 | {0x1, 0xf90, 0x08}, | ||
5077 | { } | ||
5078 | }; | ||
5079 | |||
5080 | |||
5081 | static struct hda_verb vt1716S_uniwill_init_verbs[] = { | ||
5082 | {0x1d, AC_VERB_SET_UNSOLICITED_ENABLE, | ||
5083 | AC_USRSP_EN | VIA_HP_EVENT | VIA_JACK_EVENT}, | ||
5084 | {0x19, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5085 | {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5086 | {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5087 | {0x1c, AC_VERB_SET_UNSOLICITED_ENABLE, | ||
5088 | AC_USRSP_EN | VIA_MONO_EVENT | VIA_JACK_EVENT}, | ||
5089 | {0x1e, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5090 | {0x23, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5091 | { } | ||
5092 | }; | ||
5093 | |||
5094 | static struct hda_pcm_stream vt1716S_pcm_analog_playback = { | ||
5095 | .substreams = 2, | ||
5096 | .channels_min = 2, | ||
5097 | .channels_max = 6, | ||
5098 | .nid = 0x10, /* NID to query formats and rates */ | ||
5099 | .ops = { | ||
5100 | .open = via_playback_pcm_open, | ||
5101 | .prepare = via_playback_multi_pcm_prepare, | ||
5102 | .cleanup = via_playback_multi_pcm_cleanup, | ||
5103 | .close = via_pcm_open_close, | ||
5104 | }, | ||
5105 | }; | ||
5106 | |||
5107 | static struct hda_pcm_stream vt1716S_pcm_analog_capture = { | ||
5108 | .substreams = 2, | ||
5109 | .channels_min = 2, | ||
5110 | .channels_max = 2, | ||
5111 | .nid = 0x13, /* NID to query formats and rates */ | ||
5112 | .ops = { | ||
5113 | .open = via_pcm_open_close, | ||
5114 | .prepare = via_capture_pcm_prepare, | ||
5115 | .cleanup = via_capture_pcm_cleanup, | ||
5116 | .close = via_pcm_open_close, | ||
5117 | }, | ||
5118 | }; | ||
5119 | |||
5120 | static struct hda_pcm_stream vt1716S_pcm_digital_playback = { | ||
5121 | .substreams = 2, | ||
5122 | .channels_min = 2, | ||
5123 | .channels_max = 2, | ||
5124 | /* NID is set in via_build_pcms */ | ||
5125 | .ops = { | ||
5126 | .open = via_dig_playback_pcm_open, | ||
5127 | .close = via_dig_playback_pcm_close, | ||
5128 | .prepare = via_dig_playback_pcm_prepare, | ||
5129 | .cleanup = via_dig_playback_pcm_cleanup | ||
5130 | }, | ||
5131 | }; | ||
5132 | |||
5133 | /* fill in the dac_nids table from the parsed pin configuration */ | ||
5134 | static int vt1716S_auto_fill_dac_nids(struct via_spec *spec, | ||
5135 | const struct auto_pin_cfg *cfg) | ||
5136 | { int i; | ||
5137 | hda_nid_t nid; | ||
5138 | |||
5139 | spec->multiout.num_dacs = cfg->line_outs; | ||
5140 | |||
5141 | spec->multiout.dac_nids = spec->private_dac_nids; | ||
5142 | |||
5143 | for (i = 0; i < 3; i++) { | ||
5144 | nid = cfg->line_out_pins[i]; | ||
5145 | if (nid) { | ||
5146 | /* config dac list */ | ||
5147 | switch (i) { | ||
5148 | case AUTO_SEQ_FRONT: | ||
5149 | spec->multiout.dac_nids[i] = 0x10; | ||
5150 | break; | ||
5151 | case AUTO_SEQ_CENLFE: | ||
5152 | spec->multiout.dac_nids[i] = 0x25; | ||
5153 | break; | ||
5154 | case AUTO_SEQ_SURROUND: | ||
5155 | spec->multiout.dac_nids[i] = 0x11; | ||
5156 | break; | ||
5157 | } | ||
5158 | } | ||
5159 | } | ||
5160 | |||
5161 | return 0; | ||
5162 | } | ||
5163 | |||
5164 | /* add playback controls from the parsed DAC table */ | ||
5165 | static int vt1716S_auto_create_multi_out_ctls(struct via_spec *spec, | ||
5166 | const struct auto_pin_cfg *cfg) | ||
5167 | { | ||
5168 | char name[32]; | ||
5169 | static const char *chname[3] = { "Front", "Surround", "C/LFE" }; | ||
5170 | hda_nid_t nid_vols[] = {0x10, 0x11, 0x25}; | ||
5171 | hda_nid_t nid_mutes[] = {0x1C, 0x18, 0x27}; | ||
5172 | hda_nid_t nid, nid_vol, nid_mute; | ||
5173 | int i, err; | ||
5174 | |||
5175 | for (i = 0; i <= AUTO_SEQ_CENLFE; i++) { | ||
5176 | nid = cfg->line_out_pins[i]; | ||
5177 | |||
5178 | if (!nid) | ||
5179 | continue; | ||
5180 | |||
5181 | nid_vol = nid_vols[i]; | ||
5182 | nid_mute = nid_mutes[i]; | ||
5183 | |||
5184 | if (i == AUTO_SEQ_CENLFE) { | ||
5185 | err = via_add_control( | ||
5186 | spec, VIA_CTL_WIDGET_VOL, | ||
5187 | "Center Playback Volume", | ||
5188 | HDA_COMPOSE_AMP_VAL(nid_vol, 1, 0, HDA_OUTPUT)); | ||
5189 | if (err < 0) | ||
5190 | return err; | ||
5191 | err = via_add_control( | ||
5192 | spec, VIA_CTL_WIDGET_VOL, | ||
5193 | "LFE Playback Volume", | ||
5194 | HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT)); | ||
5195 | if (err < 0) | ||
5196 | return err; | ||
5197 | err = via_add_control( | ||
5198 | spec, VIA_CTL_WIDGET_MUTE, | ||
5199 | "Center Playback Switch", | ||
5200 | HDA_COMPOSE_AMP_VAL(nid_mute, 1, 0, | ||
5201 | HDA_OUTPUT)); | ||
5202 | if (err < 0) | ||
5203 | return err; | ||
5204 | err = via_add_control( | ||
5205 | spec, VIA_CTL_WIDGET_MUTE, | ||
5206 | "LFE Playback Switch", | ||
5207 | HDA_COMPOSE_AMP_VAL(nid_mute, 2, 0, | ||
5208 | HDA_OUTPUT)); | ||
5209 | if (err < 0) | ||
5210 | return err; | ||
5211 | } else if (i == AUTO_SEQ_FRONT) { | ||
5212 | |||
5213 | err = via_add_control( | ||
5214 | spec, VIA_CTL_WIDGET_VOL, | ||
5215 | "Master Front Playback Volume", | ||
5216 | HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_INPUT)); | ||
5217 | if (err < 0) | ||
5218 | return err; | ||
5219 | err = via_add_control( | ||
5220 | spec, VIA_CTL_WIDGET_MUTE, | ||
5221 | "Master Front Playback Switch", | ||
5222 | HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_INPUT)); | ||
5223 | if (err < 0) | ||
5224 | return err; | ||
5225 | |||
5226 | sprintf(name, "%s Playback Volume", chname[i]); | ||
5227 | err = via_add_control( | ||
5228 | spec, VIA_CTL_WIDGET_VOL, name, | ||
5229 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT)); | ||
5230 | if (err < 0) | ||
5231 | return err; | ||
5232 | sprintf(name, "%s Playback Switch", chname[i]); | ||
5233 | err = via_add_control( | ||
5234 | spec, VIA_CTL_WIDGET_MUTE, name, | ||
5235 | HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0, | ||
5236 | HDA_OUTPUT)); | ||
5237 | if (err < 0) | ||
5238 | return err; | ||
5239 | } else { | ||
5240 | sprintf(name, "%s Playback Volume", chname[i]); | ||
5241 | err = via_add_control( | ||
5242 | spec, VIA_CTL_WIDGET_VOL, name, | ||
5243 | HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT)); | ||
5244 | if (err < 0) | ||
5245 | return err; | ||
5246 | sprintf(name, "%s Playback Switch", chname[i]); | ||
5247 | err = via_add_control( | ||
5248 | spec, VIA_CTL_WIDGET_MUTE, name, | ||
5249 | HDA_COMPOSE_AMP_VAL(nid_mute, 3, 0, | ||
5250 | HDA_OUTPUT)); | ||
5251 | if (err < 0) | ||
5252 | return err; | ||
5253 | } | ||
5254 | } | ||
5255 | return 0; | ||
5256 | } | ||
5257 | |||
5258 | static int vt1716S_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | ||
5259 | { | ||
5260 | int err; | ||
5261 | |||
5262 | if (!pin) | ||
5263 | return 0; | ||
5264 | |||
5265 | spec->multiout.hp_nid = 0x25; /* AOW3 */ | ||
5266 | spec->hp_independent_mode_index = 1; | ||
5267 | |||
5268 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
5269 | "Headphone Playback Volume", | ||
5270 | HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT)); | ||
5271 | if (err < 0) | ||
5272 | return err; | ||
5273 | |||
5274 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | ||
5275 | "Headphone Playback Switch", | ||
5276 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); | ||
5277 | if (err < 0) | ||
5278 | return err; | ||
5279 | |||
5280 | create_hp_imux(spec); | ||
5281 | return 0; | ||
5282 | } | ||
5283 | |||
5284 | /* create playback/capture controls for input pins */ | ||
5285 | static int vt1716S_auto_create_analog_input_ctls(struct via_spec *spec, | ||
5286 | const struct auto_pin_cfg *cfg) | ||
5287 | { | ||
5288 | static char *labels[] = { | ||
5289 | "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux", NULL | ||
5290 | }; | ||
5291 | struct hda_input_mux *imux = &spec->private_imux[0]; | ||
5292 | int i, err, idx = 0; | ||
5293 | |||
5294 | /* for internal loopback recording select */ | ||
5295 | imux->items[imux->num_items].label = "Stereo Mixer"; | ||
5296 | imux->items[imux->num_items].index = 5; | ||
5297 | imux->num_items++; | ||
5298 | |||
5299 | for (i = 0; i < AUTO_PIN_LAST; i++) { | ||
5300 | if (!cfg->input_pins[i]) | ||
5301 | continue; | ||
5302 | |||
5303 | switch (cfg->input_pins[i]) { | ||
5304 | case 0x1a: /* Mic */ | ||
5305 | idx = 2; | ||
5306 | break; | ||
5307 | |||
5308 | case 0x1b: /* Line In */ | ||
5309 | idx = 3; | ||
5310 | break; | ||
5311 | |||
5312 | case 0x1e: /* Front Mic */ | ||
5313 | idx = 4; | ||
5314 | break; | ||
5315 | |||
5316 | case 0x1f: /* CD */ | ||
5317 | idx = 1; | ||
5318 | break; | ||
5319 | } | ||
5320 | err = via_new_analog_input(spec, labels[i], idx, 0x16); | ||
5321 | if (err < 0) | ||
5322 | return err; | ||
5323 | imux->items[imux->num_items].label = labels[i]; | ||
5324 | imux->items[imux->num_items].index = idx-1; | ||
5325 | imux->num_items++; | ||
5326 | } | ||
5327 | return 0; | ||
5328 | } | ||
5329 | |||
5330 | static int vt1716S_parse_auto_config(struct hda_codec *codec) | ||
5331 | { | ||
5332 | struct via_spec *spec = codec->spec; | ||
5333 | int err; | ||
5334 | |||
5335 | err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL); | ||
5336 | if (err < 0) | ||
5337 | return err; | ||
5338 | err = vt1716S_auto_fill_dac_nids(spec, &spec->autocfg); | ||
5339 | if (err < 0) | ||
5340 | return err; | ||
5341 | if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0]) | ||
5342 | return 0; /* can't find valid BIOS pin config */ | ||
5343 | |||
5344 | err = vt1716S_auto_create_multi_out_ctls(spec, &spec->autocfg); | ||
5345 | if (err < 0) | ||
5346 | return err; | ||
5347 | err = vt1716S_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]); | ||
5348 | if (err < 0) | ||
5349 | return err; | ||
5350 | err = vt1716S_auto_create_analog_input_ctls(spec, &spec->autocfg); | ||
5351 | if (err < 0) | ||
5352 | return err; | ||
5353 | |||
5354 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; | ||
5355 | |||
5356 | fill_dig_outs(codec); | ||
5357 | |||
5358 | if (spec->kctls.list) | ||
5359 | spec->mixers[spec->num_mixers++] = spec->kctls.list; | ||
5360 | |||
5361 | spec->input_mux = &spec->private_imux[0]; | ||
5362 | |||
5363 | if (spec->hp_mux) | ||
5364 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | ||
5365 | |||
5366 | spec->mixers[spec->num_mixers++] = via_smart51_mixer; | ||
5367 | |||
5368 | return 1; | ||
5369 | } | ||
5370 | |||
5371 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
5372 | static struct hda_amp_list vt1716S_loopbacks[] = { | ||
5373 | { 0x16, HDA_INPUT, 1 }, | ||
5374 | { 0x16, HDA_INPUT, 2 }, | ||
5375 | { 0x16, HDA_INPUT, 3 }, | ||
5376 | { 0x16, HDA_INPUT, 4 }, | ||
5377 | { } /* end */ | ||
5378 | }; | ||
5379 | #endif | ||
5380 | |||
5381 | static int patch_vt1716S(struct hda_codec *codec) | ||
5382 | { | ||
5383 | struct via_spec *spec; | ||
5384 | int err; | ||
5385 | |||
5386 | /* create a codec specific record */ | ||
5387 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | ||
5388 | if (spec == NULL) | ||
5389 | return -ENOMEM; | ||
5390 | |||
5391 | codec->spec = spec; | ||
5392 | |||
5393 | /* automatic parse from the BIOS config */ | ||
5394 | err = vt1716S_parse_auto_config(codec); | ||
5395 | if (err < 0) { | ||
5396 | via_free(codec); | ||
5397 | return err; | ||
5398 | } else if (!err) { | ||
5399 | printk(KERN_INFO "hda_codec: Cannot set up configuration " | ||
5400 | "from BIOS. Using genenic mode...\n"); | ||
5401 | } | ||
5402 | |||
5403 | spec->init_verbs[spec->num_iverbs++] = vt1716S_volume_init_verbs; | ||
5404 | spec->init_verbs[spec->num_iverbs++] = vt1716S_uniwill_init_verbs; | ||
5405 | |||
5406 | spec->stream_name_analog = "VT1716S Analog"; | ||
5407 | spec->stream_analog_playback = &vt1716S_pcm_analog_playback; | ||
5408 | spec->stream_analog_capture = &vt1716S_pcm_analog_capture; | ||
5409 | |||
5410 | spec->stream_name_digital = "VT1716S Digital"; | ||
5411 | spec->stream_digital_playback = &vt1716S_pcm_digital_playback; | ||
5412 | |||
5413 | if (!spec->adc_nids && spec->input_mux) { | ||
5414 | spec->adc_nids = vt1716S_adc_nids; | ||
5415 | spec->num_adc_nids = ARRAY_SIZE(vt1716S_adc_nids); | ||
5416 | get_mux_nids(codec); | ||
5417 | override_mic_boost(codec, 0x1a, 0, 3, 40); | ||
5418 | override_mic_boost(codec, 0x1e, 0, 3, 40); | ||
5419 | spec->mixers[spec->num_mixers] = vt1716S_capture_mixer; | ||
5420 | spec->num_mixers++; | ||
5421 | } | ||
5422 | |||
5423 | spec->mixers[spec->num_mixers] = vt1716s_dmic_mixer; | ||
5424 | spec->num_mixers++; | ||
5425 | |||
5426 | spec->mixers[spec->num_mixers++] = vt1716S_mono_out_mixer; | ||
5427 | |||
5428 | codec->patch_ops = via_patch_ops; | ||
5429 | |||
5430 | codec->patch_ops.init = via_auto_init; | ||
5431 | codec->patch_ops.unsol_event = via_unsol_event; | ||
5432 | |||
5433 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
5434 | spec->loopback.amplist = vt1716S_loopbacks; | ||
5435 | #endif | ||
5436 | |||
5437 | return 0; | ||
5438 | } | ||
5439 | |||
5440 | /* for vt2002P */ | ||
5441 | |||
5442 | /* capture mixer elements */ | ||
5443 | static struct snd_kcontrol_new vt2002P_capture_mixer[] = { | ||
5444 | HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT), | ||
5445 | HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT), | ||
5446 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT), | ||
5447 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT), | ||
5448 | HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT), | ||
5449 | HDA_CODEC_VOLUME("Front Mic Boost Capture Volume", 0x29, 0x0, | ||
5450 | HDA_INPUT), | ||
5451 | { | ||
5452 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
5453 | /* The multiple "Capture Source" controls confuse alsamixer | ||
5454 | * So call somewhat different.. | ||
5455 | */ | ||
5456 | /* .name = "Capture Source", */ | ||
5457 | .name = "Input Source", | ||
5458 | .count = 2, | ||
5459 | .info = via_mux_enum_info, | ||
5460 | .get = via_mux_enum_get, | ||
5461 | .put = via_mux_enum_put, | ||
5462 | }, | ||
5463 | { } /* end */ | ||
5464 | }; | ||
5465 | |||
5466 | static struct hda_verb vt2002P_volume_init_verbs[] = { | ||
5467 | /* | ||
5468 | * Unmute ADC0-1 and set the default input to mic-in | ||
5469 | */ | ||
5470 | {0x8, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5471 | {0x9, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5472 | |||
5473 | |||
5474 | /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback | ||
5475 | * mixer widget | ||
5476 | */ | ||
5477 | /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */ | ||
5478 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
5479 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
5480 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
5481 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
5482 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, | ||
5483 | |||
5484 | /* MUX Indices: Mic = 0 */ | ||
5485 | {0x1e, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5486 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5487 | |||
5488 | /* PW9 Output enable */ | ||
5489 | {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN}, | ||
5490 | |||
5491 | /* Enable Boost Volume backdoor */ | ||
5492 | {0x1, 0xfb9, 0x24}, | ||
5493 | |||
5494 | /* MW0/1/4/8: un-mute index 0 (MUXx), un-mute index 1 (MW9) */ | ||
5495 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5496 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5497 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5498 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5499 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5500 | {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5501 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5502 | {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5503 | |||
5504 | /* set MUX0/1/4/8 = 0 (AOW0) */ | ||
5505 | {0x34, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5506 | {0x35, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5507 | {0x37, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5508 | {0x3b, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5509 | |||
5510 | /* set PW0 index=0 (MW0) */ | ||
5511 | {0x24, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5512 | |||
5513 | /* Enable AOW0 to MW9 */ | ||
5514 | {0x1, 0xfb8, 0x88}, | ||
5515 | { } | ||
5516 | }; | ||
5517 | |||
5518 | |||
5519 | static struct hda_verb vt2002P_uniwill_init_verbs[] = { | ||
5520 | {0x25, AC_VERB_SET_UNSOLICITED_ENABLE, | ||
5521 | AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT}, | ||
5522 | {0x26, AC_VERB_SET_UNSOLICITED_ENABLE, | ||
5523 | AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT}, | ||
5524 | {0x29, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5525 | {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5526 | {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5527 | { } | ||
5528 | }; | ||
5529 | |||
5530 | static struct hda_pcm_stream vt2002P_pcm_analog_playback = { | ||
5531 | .substreams = 2, | ||
5532 | .channels_min = 2, | ||
5533 | .channels_max = 2, | ||
5534 | .nid = 0x8, /* NID to query formats and rates */ | ||
5535 | .ops = { | ||
5536 | .open = via_playback_pcm_open, | ||
5537 | .prepare = via_playback_multi_pcm_prepare, | ||
5538 | .cleanup = via_playback_multi_pcm_cleanup, | ||
5539 | .close = via_pcm_open_close, | ||
5540 | }, | ||
5541 | }; | ||
5542 | |||
5543 | static struct hda_pcm_stream vt2002P_pcm_analog_capture = { | ||
5544 | .substreams = 2, | ||
5545 | .channels_min = 2, | ||
5546 | .channels_max = 2, | ||
5547 | .nid = 0x10, /* NID to query formats and rates */ | ||
5548 | .ops = { | ||
5549 | .open = via_pcm_open_close, | ||
5550 | .prepare = via_capture_pcm_prepare, | ||
5551 | .cleanup = via_capture_pcm_cleanup, | ||
5552 | .close = via_pcm_open_close, | ||
5553 | }, | ||
5554 | }; | ||
5555 | |||
5556 | static struct hda_pcm_stream vt2002P_pcm_digital_playback = { | ||
5557 | .substreams = 1, | ||
5558 | .channels_min = 2, | ||
5559 | .channels_max = 2, | ||
5560 | /* NID is set in via_build_pcms */ | ||
5561 | .ops = { | ||
5562 | .open = via_dig_playback_pcm_open, | ||
5563 | .close = via_dig_playback_pcm_close, | ||
5564 | .prepare = via_dig_playback_pcm_prepare, | ||
5565 | .cleanup = via_dig_playback_pcm_cleanup | ||
5566 | }, | ||
5567 | }; | ||
5568 | |||
5569 | /* fill in the dac_nids table from the parsed pin configuration */ | ||
5570 | static int vt2002P_auto_fill_dac_nids(struct via_spec *spec, | ||
5571 | const struct auto_pin_cfg *cfg) | ||
5572 | { | ||
5573 | spec->multiout.num_dacs = 1; | ||
5574 | spec->multiout.dac_nids = spec->private_dac_nids; | ||
5575 | if (cfg->line_out_pins[0]) | ||
5576 | spec->multiout.dac_nids[0] = 0x8; | ||
5577 | return 0; | ||
5578 | } | ||
5579 | |||
5580 | /* add playback controls from the parsed DAC table */ | ||
5581 | static int vt2002P_auto_create_multi_out_ctls(struct via_spec *spec, | ||
5582 | const struct auto_pin_cfg *cfg) | ||
5583 | { | ||
5584 | int err; | ||
5585 | |||
5586 | if (!cfg->line_out_pins[0]) | ||
5587 | return -1; | ||
5588 | |||
5589 | |||
5590 | /* Line-Out: PortE */ | ||
5591 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
5592 | "Master Front Playback Volume", | ||
5593 | HDA_COMPOSE_AMP_VAL(0x8, 3, 0, HDA_OUTPUT)); | ||
5594 | if (err < 0) | ||
5595 | return err; | ||
5596 | err = via_add_control(spec, VIA_CTL_WIDGET_BIND_PIN_MUTE, | ||
5597 | "Master Front Playback Switch", | ||
5598 | HDA_COMPOSE_AMP_VAL(0x26, 3, 0, HDA_OUTPUT)); | ||
5599 | if (err < 0) | ||
5600 | return err; | ||
5601 | |||
5602 | return 0; | ||
5603 | } | ||
5604 | |||
5605 | static int vt2002P_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | ||
5606 | { | ||
5607 | int err; | ||
5608 | |||
5609 | if (!pin) | ||
5610 | return 0; | ||
5611 | |||
5612 | spec->multiout.hp_nid = 0x9; | ||
5613 | spec->hp_independent_mode_index = 1; | ||
5614 | |||
5615 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
5616 | "Headphone Playback Volume", | ||
5617 | HDA_COMPOSE_AMP_VAL( | ||
5618 | spec->multiout.hp_nid, 3, 0, HDA_OUTPUT)); | ||
5619 | if (err < 0) | ||
5620 | return err; | ||
5621 | |||
5622 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | ||
5623 | "Headphone Playback Switch", | ||
5624 | HDA_COMPOSE_AMP_VAL(0x25, 3, 0, HDA_OUTPUT)); | ||
5625 | if (err < 0) | ||
5626 | return err; | ||
5627 | |||
5628 | create_hp_imux(spec); | ||
5629 | return 0; | ||
5630 | } | ||
5631 | |||
5632 | /* create playback/capture controls for input pins */ | ||
5633 | static int vt2002P_auto_create_analog_input_ctls(struct via_spec *spec, | ||
5634 | const struct auto_pin_cfg *cfg) | ||
5635 | { | ||
5636 | static char *labels[] = { | ||
5637 | "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux", NULL | ||
5638 | }; | ||
5639 | struct hda_input_mux *imux = &spec->private_imux[0]; | ||
5640 | int i, err, idx = 0; | ||
5641 | |||
5642 | for (i = 0; i < AUTO_PIN_LAST; i++) { | ||
5643 | if (!cfg->input_pins[i]) | ||
5644 | continue; | ||
5645 | |||
5646 | switch (cfg->input_pins[i]) { | ||
5647 | case 0x2b: /* Mic */ | ||
5648 | idx = 0; | ||
5649 | break; | ||
5650 | |||
5651 | case 0x2a: /* Line In */ | ||
5652 | idx = 1; | ||
5653 | break; | ||
5654 | |||
5655 | case 0x29: /* Front Mic */ | ||
5656 | idx = 2; | ||
5657 | break; | ||
5658 | } | ||
5659 | err = via_new_analog_input(spec, labels[i], idx, 0x21); | ||
5660 | if (err < 0) | ||
5661 | return err; | ||
5662 | imux->items[imux->num_items].label = labels[i]; | ||
5663 | imux->items[imux->num_items].index = idx; | ||
5664 | imux->num_items++; | ||
5665 | } | ||
5666 | |||
5667 | /* build volume/mute control of loopback */ | ||
5668 | err = via_new_analog_input(spec, "Stereo Mixer", 3, 0x21); | ||
5669 | if (err < 0) | ||
5670 | return err; | ||
5671 | |||
5672 | /* for internal loopback recording select */ | ||
5673 | imux->items[imux->num_items].label = "Stereo Mixer"; | ||
5674 | imux->items[imux->num_items].index = 3; | ||
5675 | imux->num_items++; | ||
5676 | |||
5677 | /* for digital mic select */ | ||
5678 | imux->items[imux->num_items].label = "Digital Mic"; | ||
5679 | imux->items[imux->num_items].index = 4; | ||
5680 | imux->num_items++; | ||
5681 | |||
5682 | return 0; | ||
5683 | } | ||
5684 | |||
5685 | static int vt2002P_parse_auto_config(struct hda_codec *codec) | ||
5686 | { | ||
5687 | struct via_spec *spec = codec->spec; | ||
5688 | int err; | ||
5689 | |||
5690 | |||
5691 | err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL); | ||
5692 | if (err < 0) | ||
5693 | return err; | ||
5694 | |||
5695 | err = vt2002P_auto_fill_dac_nids(spec, &spec->autocfg); | ||
5696 | if (err < 0) | ||
5697 | return err; | ||
5698 | |||
5699 | if (!spec->autocfg.line_outs && !spec->autocfg.hp_pins[0]) | ||
5700 | return 0; /* can't find valid BIOS pin config */ | ||
5701 | |||
5702 | err = vt2002P_auto_create_multi_out_ctls(spec, &spec->autocfg); | ||
5703 | if (err < 0) | ||
5704 | return err; | ||
5705 | err = vt2002P_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]); | ||
5706 | if (err < 0) | ||
5707 | return err; | ||
5708 | err = vt2002P_auto_create_analog_input_ctls(spec, &spec->autocfg); | ||
5709 | if (err < 0) | ||
5710 | return err; | ||
5711 | |||
5712 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; | ||
5713 | |||
5714 | fill_dig_outs(codec); | ||
5715 | |||
5716 | if (spec->kctls.list) | ||
5717 | spec->mixers[spec->num_mixers++] = spec->kctls.list; | ||
5718 | |||
5719 | spec->input_mux = &spec->private_imux[0]; | ||
5720 | |||
5721 | if (spec->hp_mux) | ||
5722 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | ||
5723 | |||
5724 | return 1; | ||
5725 | } | ||
5726 | |||
5727 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
5728 | static struct hda_amp_list vt2002P_loopbacks[] = { | ||
5729 | { 0x21, HDA_INPUT, 0 }, | ||
5730 | { 0x21, HDA_INPUT, 1 }, | ||
5731 | { 0x21, HDA_INPUT, 2 }, | ||
5732 | { } /* end */ | ||
5733 | }; | ||
5734 | #endif | ||
5735 | |||
5736 | |||
5737 | /* patch for vt2002P */ | ||
5738 | static int patch_vt2002P(struct hda_codec *codec) | ||
5739 | { | ||
5740 | struct via_spec *spec; | ||
5741 | int err; | ||
5742 | |||
5743 | /* create a codec specific record */ | ||
5744 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | ||
5745 | if (spec == NULL) | ||
5746 | return -ENOMEM; | ||
5747 | |||
5748 | codec->spec = spec; | ||
5749 | |||
5750 | /* automatic parse from the BIOS config */ | ||
5751 | err = vt2002P_parse_auto_config(codec); | ||
5752 | if (err < 0) { | ||
5753 | via_free(codec); | ||
5754 | return err; | ||
5755 | } else if (!err) { | ||
5756 | printk(KERN_INFO "hda_codec: Cannot set up configuration " | ||
5757 | "from BIOS. Using genenic mode...\n"); | ||
5758 | } | ||
5759 | |||
5760 | spec->init_verbs[spec->num_iverbs++] = vt2002P_volume_init_verbs; | ||
5761 | spec->init_verbs[spec->num_iverbs++] = vt2002P_uniwill_init_verbs; | ||
5762 | |||
5763 | spec->stream_name_analog = "VT2002P Analog"; | ||
5764 | spec->stream_analog_playback = &vt2002P_pcm_analog_playback; | ||
5765 | spec->stream_analog_capture = &vt2002P_pcm_analog_capture; | ||
5766 | |||
5767 | spec->stream_name_digital = "VT2002P Digital"; | ||
5768 | spec->stream_digital_playback = &vt2002P_pcm_digital_playback; | ||
5769 | |||
5770 | if (!spec->adc_nids && spec->input_mux) { | ||
5771 | spec->adc_nids = vt2002P_adc_nids; | ||
5772 | spec->num_adc_nids = ARRAY_SIZE(vt2002P_adc_nids); | ||
5773 | get_mux_nids(codec); | ||
5774 | override_mic_boost(codec, 0x2b, 0, 3, 40); | ||
5775 | override_mic_boost(codec, 0x29, 0, 3, 40); | ||
5776 | spec->mixers[spec->num_mixers] = vt2002P_capture_mixer; | ||
5777 | spec->num_mixers++; | ||
5778 | } | ||
5779 | |||
5780 | codec->patch_ops = via_patch_ops; | ||
5781 | |||
5782 | codec->patch_ops.init = via_auto_init; | ||
5783 | codec->patch_ops.unsol_event = via_unsol_event; | ||
5784 | |||
5785 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
5786 | spec->loopback.amplist = vt2002P_loopbacks; | ||
5787 | #endif | ||
5788 | |||
5789 | return 0; | ||
5790 | } | ||
5791 | |||
5792 | /* for vt1812 */ | ||
5793 | |||
5794 | /* capture mixer elements */ | ||
5795 | static struct snd_kcontrol_new vt1812_capture_mixer[] = { | ||
5796 | HDA_CODEC_VOLUME("Capture Volume", 0x10, 0x0, HDA_INPUT), | ||
5797 | HDA_CODEC_MUTE("Capture Switch", 0x10, 0x0, HDA_INPUT), | ||
5798 | HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x11, 0x0, HDA_INPUT), | ||
5799 | HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x11, 0x0, HDA_INPUT), | ||
5800 | HDA_CODEC_MUTE("Mic Boost Capture Volume", 0x2b, 0x0, HDA_INPUT), | ||
5801 | HDA_CODEC_MUTE("Front Mic Boost Capture Volume", 0x29, 0x0, | ||
5802 | HDA_INPUT), | ||
5803 | { | ||
5804 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
5805 | /* The multiple "Capture Source" controls confuse alsamixer | ||
5806 | * So call somewhat different.. | ||
5807 | */ | ||
5808 | .name = "Input Source", | ||
5809 | .count = 2, | ||
5810 | .info = via_mux_enum_info, | ||
5811 | .get = via_mux_enum_get, | ||
5812 | .put = via_mux_enum_put, | ||
5813 | }, | ||
5814 | { } /* end */ | ||
5815 | }; | ||
5816 | |||
5817 | static struct hda_verb vt1812_volume_init_verbs[] = { | ||
5818 | /* | ||
5819 | * Unmute ADC0-1 and set the default input to mic-in | ||
5820 | */ | ||
5821 | {0x8, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5822 | {0x9, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5823 | |||
5824 | |||
5825 | /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback | ||
5826 | * mixer widget | ||
5827 | */ | ||
5828 | /* Amp Indices: CD = 1, Mic1 = 2, Line = 3, Mic2 = 4 */ | ||
5829 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, | ||
5830 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, | ||
5831 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, | ||
5832 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, | ||
5833 | {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, | ||
5834 | |||
5835 | /* MUX Indices: Mic = 0 */ | ||
5836 | {0x1e, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5837 | {0x1f, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5838 | |||
5839 | /* PW9 Output enable */ | ||
5840 | {0x2d, AC_VERB_SET_PIN_WIDGET_CONTROL, AC_PINCTL_OUT_EN}, | ||
5841 | |||
5842 | /* Enable Boost Volume backdoor */ | ||
5843 | {0x1, 0xfb9, 0x24}, | ||
5844 | |||
5845 | /* MW0/1/4/13/15: un-mute index 0 (MUXx), un-mute index 1 (MW9) */ | ||
5846 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5847 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5848 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5849 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5850 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)}, | ||
5851 | {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5852 | {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5853 | {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5854 | {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5855 | {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)}, | ||
5856 | |||
5857 | /* set MUX0/1/4/13/15 = 0 (AOW0) */ | ||
5858 | {0x34, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5859 | {0x35, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5860 | {0x38, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5861 | {0x3c, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5862 | {0x3d, AC_VERB_SET_CONNECT_SEL, 0}, | ||
5863 | |||
5864 | /* Enable AOW0 to MW9 */ | ||
5865 | {0x1, 0xfb8, 0xa8}, | ||
5866 | { } | ||
5867 | }; | ||
5868 | |||
5869 | |||
5870 | static struct hda_verb vt1812_uniwill_init_verbs[] = { | ||
5871 | {0x33, AC_VERB_SET_UNSOLICITED_ENABLE, | ||
5872 | AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT}, | ||
5873 | {0x25, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT }, | ||
5874 | {0x28, AC_VERB_SET_UNSOLICITED_ENABLE, | ||
5875 | AC_USRSP_EN | VIA_JACK_EVENT | VIA_BIND_HP_EVENT}, | ||
5876 | {0x29, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5877 | {0x2a, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5878 | {0x2b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | VIA_JACK_EVENT}, | ||
5879 | { } | ||
5880 | }; | ||
5881 | |||
5882 | static struct hda_pcm_stream vt1812_pcm_analog_playback = { | ||
5883 | .substreams = 2, | ||
5884 | .channels_min = 2, | ||
5885 | .channels_max = 2, | ||
5886 | .nid = 0x8, /* NID to query formats and rates */ | ||
5887 | .ops = { | ||
5888 | .open = via_playback_pcm_open, | ||
5889 | .prepare = via_playback_multi_pcm_prepare, | ||
5890 | .cleanup = via_playback_multi_pcm_cleanup, | ||
5891 | .close = via_pcm_open_close, | ||
5892 | }, | ||
5893 | }; | ||
5894 | |||
5895 | static struct hda_pcm_stream vt1812_pcm_analog_capture = { | ||
5896 | .substreams = 2, | ||
5897 | .channels_min = 2, | ||
5898 | .channels_max = 2, | ||
5899 | .nid = 0x10, /* NID to query formats and rates */ | ||
5900 | .ops = { | ||
5901 | .open = via_pcm_open_close, | ||
5902 | .prepare = via_capture_pcm_prepare, | ||
5903 | .cleanup = via_capture_pcm_cleanup, | ||
5904 | .close = via_pcm_open_close, | ||
5905 | }, | ||
5906 | }; | ||
5907 | |||
5908 | static struct hda_pcm_stream vt1812_pcm_digital_playback = { | ||
5909 | .substreams = 1, | ||
5910 | .channels_min = 2, | ||
5911 | .channels_max = 2, | ||
5912 | /* NID is set in via_build_pcms */ | ||
5913 | .ops = { | ||
5914 | .open = via_dig_playback_pcm_open, | ||
5915 | .close = via_dig_playback_pcm_close, | ||
5916 | .prepare = via_dig_playback_pcm_prepare, | ||
5917 | .cleanup = via_dig_playback_pcm_cleanup | ||
5918 | }, | ||
5919 | }; | ||
5920 | /* fill in the dac_nids table from the parsed pin configuration */ | ||
5921 | static int vt1812_auto_fill_dac_nids(struct via_spec *spec, | ||
5922 | const struct auto_pin_cfg *cfg) | ||
5923 | { | ||
5924 | spec->multiout.num_dacs = 1; | ||
5925 | spec->multiout.dac_nids = spec->private_dac_nids; | ||
5926 | if (cfg->line_out_pins[0]) | ||
5927 | spec->multiout.dac_nids[0] = 0x8; | ||
5928 | return 0; | ||
5929 | } | ||
5930 | |||
5931 | |||
5932 | /* add playback controls from the parsed DAC table */ | ||
5933 | static int vt1812_auto_create_multi_out_ctls(struct via_spec *spec, | ||
5934 | const struct auto_pin_cfg *cfg) | ||
5935 | { | ||
5936 | int err; | ||
5937 | |||
5938 | if (!cfg->line_out_pins[0]) | ||
5939 | return -1; | ||
5940 | |||
5941 | /* Line-Out: PortE */ | ||
5942 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
5943 | "Master Front Playback Volume", | ||
5944 | HDA_COMPOSE_AMP_VAL(0x8, 3, 0, HDA_OUTPUT)); | ||
5945 | if (err < 0) | ||
5946 | return err; | ||
5947 | err = via_add_control(spec, VIA_CTL_WIDGET_BIND_PIN_MUTE, | ||
5948 | "Master Front Playback Switch", | ||
5949 | HDA_COMPOSE_AMP_VAL(0x28, 3, 0, HDA_OUTPUT)); | ||
5950 | if (err < 0) | ||
5951 | return err; | ||
5952 | |||
5953 | return 0; | ||
5954 | } | ||
5955 | |||
5956 | static int vt1812_auto_create_hp_ctls(struct via_spec *spec, hda_nid_t pin) | ||
5957 | { | ||
5958 | int err; | ||
5959 | |||
5960 | if (!pin) | ||
5961 | return 0; | ||
5962 | |||
5963 | spec->multiout.hp_nid = 0x9; | ||
5964 | spec->hp_independent_mode_index = 1; | ||
5965 | |||
5966 | |||
5967 | err = via_add_control(spec, VIA_CTL_WIDGET_VOL, | ||
5968 | "Headphone Playback Volume", | ||
5969 | HDA_COMPOSE_AMP_VAL( | ||
5970 | spec->multiout.hp_nid, 3, 0, HDA_OUTPUT)); | ||
5971 | if (err < 0) | ||
5972 | return err; | ||
5973 | |||
5974 | err = via_add_control(spec, VIA_CTL_WIDGET_MUTE, | ||
5975 | "Headphone Playback Switch", | ||
5976 | HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT)); | ||
5977 | if (err < 0) | ||
5978 | return err; | ||
5979 | |||
5980 | create_hp_imux(spec); | ||
5981 | return 0; | ||
5982 | } | ||
5983 | |||
5984 | /* create playback/capture controls for input pins */ | ||
5985 | static int vt1812_auto_create_analog_input_ctls(struct via_spec *spec, | ||
5986 | const struct auto_pin_cfg *cfg) | ||
5987 | { | ||
5988 | static char *labels[] = { | ||
5989 | "Mic", "Front Mic", "Line", "Front Line", "CD", "Aux", NULL | ||
5990 | }; | ||
5991 | struct hda_input_mux *imux = &spec->private_imux[0]; | ||
5992 | int i, err, idx = 0; | ||
5993 | |||
5994 | for (i = 0; i < AUTO_PIN_LAST; i++) { | ||
5995 | if (!cfg->input_pins[i]) | ||
5996 | continue; | ||
5997 | |||
5998 | switch (cfg->input_pins[i]) { | ||
5999 | case 0x2b: /* Mic */ | ||
6000 | idx = 0; | ||
6001 | break; | ||
6002 | |||
6003 | case 0x2a: /* Line In */ | ||
6004 | idx = 1; | ||
6005 | break; | ||
6006 | |||
6007 | case 0x29: /* Front Mic */ | ||
6008 | idx = 2; | ||
6009 | break; | ||
6010 | } | ||
6011 | err = via_new_analog_input(spec, labels[i], idx, 0x21); | ||
6012 | if (err < 0) | ||
6013 | return err; | ||
6014 | imux->items[imux->num_items].label = labels[i]; | ||
6015 | imux->items[imux->num_items].index = idx; | ||
6016 | imux->num_items++; | ||
6017 | } | ||
6018 | /* build volume/mute control of loopback */ | ||
6019 | err = via_new_analog_input(spec, "Stereo Mixer", 5, 0x21); | ||
6020 | if (err < 0) | ||
6021 | return err; | ||
6022 | |||
6023 | /* for internal loopback recording select */ | ||
6024 | imux->items[imux->num_items].label = "Stereo Mixer"; | ||
6025 | imux->items[imux->num_items].index = 5; | ||
6026 | imux->num_items++; | ||
6027 | |||
6028 | /* for digital mic select */ | ||
6029 | imux->items[imux->num_items].label = "Digital Mic"; | ||
6030 | imux->items[imux->num_items].index = 6; | ||
6031 | imux->num_items++; | ||
6032 | |||
6033 | return 0; | ||
6034 | } | ||
6035 | |||
6036 | static int vt1812_parse_auto_config(struct hda_codec *codec) | ||
6037 | { | ||
6038 | struct via_spec *spec = codec->spec; | ||
6039 | int err; | ||
6040 | |||
6041 | |||
6042 | err = snd_hda_parse_pin_def_config(codec, &spec->autocfg, NULL); | ||
6043 | if (err < 0) | ||
6044 | return err; | ||
6045 | fill_dig_outs(codec); | ||
6046 | err = vt1812_auto_fill_dac_nids(spec, &spec->autocfg); | ||
6047 | if (err < 0) | ||
6048 | return err; | ||
6049 | |||
6050 | if (!spec->autocfg.line_outs && !spec->autocfg.hp_outs) | ||
6051 | return 0; /* can't find valid BIOS pin config */ | ||
6052 | |||
6053 | err = vt1812_auto_create_multi_out_ctls(spec, &spec->autocfg); | ||
6054 | if (err < 0) | ||
6055 | return err; | ||
6056 | err = vt1812_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]); | ||
6057 | if (err < 0) | ||
6058 | return err; | ||
6059 | err = vt1812_auto_create_analog_input_ctls(spec, &spec->autocfg); | ||
6060 | if (err < 0) | ||
6061 | return err; | ||
6062 | |||
6063 | spec->multiout.max_channels = spec->multiout.num_dacs * 2; | ||
6064 | |||
6065 | fill_dig_outs(codec); | ||
6066 | |||
6067 | if (spec->kctls.list) | ||
6068 | spec->mixers[spec->num_mixers++] = spec->kctls.list; | ||
6069 | |||
6070 | spec->input_mux = &spec->private_imux[0]; | ||
6071 | |||
6072 | if (spec->hp_mux) | ||
6073 | spec->mixers[spec->num_mixers++] = via_hp_mixer; | ||
6074 | |||
6075 | return 1; | ||
6076 | } | ||
6077 | |||
6078 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
6079 | static struct hda_amp_list vt1812_loopbacks[] = { | ||
6080 | { 0x21, HDA_INPUT, 0 }, | ||
6081 | { 0x21, HDA_INPUT, 1 }, | ||
6082 | { 0x21, HDA_INPUT, 2 }, | ||
6083 | { } /* end */ | ||
6084 | }; | ||
6085 | #endif | ||
6086 | |||
6087 | |||
6088 | /* patch for vt1812 */ | ||
6089 | static int patch_vt1812(struct hda_codec *codec) | ||
6090 | { | ||
6091 | struct via_spec *spec; | ||
6092 | int err; | ||
6093 | |||
6094 | /* create a codec specific record */ | ||
6095 | spec = kzalloc(sizeof(*spec), GFP_KERNEL); | ||
6096 | if (spec == NULL) | ||
6097 | return -ENOMEM; | ||
6098 | |||
6099 | codec->spec = spec; | ||
6100 | |||
6101 | /* automatic parse from the BIOS config */ | ||
6102 | err = vt1812_parse_auto_config(codec); | ||
6103 | if (err < 0) { | ||
6104 | via_free(codec); | ||
6105 | return err; | ||
6106 | } else if (!err) { | ||
6107 | printk(KERN_INFO "hda_codec: Cannot set up configuration " | ||
6108 | "from BIOS. Using genenic mode...\n"); | ||
6109 | } | ||
6110 | |||
6111 | |||
6112 | spec->init_verbs[spec->num_iverbs++] = vt1812_volume_init_verbs; | ||
6113 | spec->init_verbs[spec->num_iverbs++] = vt1812_uniwill_init_verbs; | ||
6114 | |||
6115 | spec->stream_name_analog = "VT1812 Analog"; | ||
6116 | spec->stream_analog_playback = &vt1812_pcm_analog_playback; | ||
6117 | spec->stream_analog_capture = &vt1812_pcm_analog_capture; | ||
6118 | |||
6119 | spec->stream_name_digital = "VT1812 Digital"; | ||
6120 | spec->stream_digital_playback = &vt1812_pcm_digital_playback; | ||
6121 | |||
6122 | |||
6123 | if (!spec->adc_nids && spec->input_mux) { | ||
6124 | spec->adc_nids = vt1812_adc_nids; | ||
6125 | spec->num_adc_nids = ARRAY_SIZE(vt1812_adc_nids); | ||
6126 | get_mux_nids(codec); | ||
6127 | override_mic_boost(codec, 0x2b, 0, 3, 40); | ||
6128 | override_mic_boost(codec, 0x29, 0, 3, 40); | ||
6129 | spec->mixers[spec->num_mixers] = vt1812_capture_mixer; | ||
6130 | spec->num_mixers++; | ||
6131 | } | ||
6132 | |||
6133 | codec->patch_ops = via_patch_ops; | ||
6134 | |||
6135 | codec->patch_ops.init = via_auto_init; | ||
6136 | codec->patch_ops.unsol_event = via_unsol_event; | ||
6137 | |||
6138 | #ifdef CONFIG_SND_HDA_POWER_SAVE | ||
6139 | spec->loopback.amplist = vt1812_loopbacks; | ||
6140 | #endif | ||
3245 | 6141 | ||
3246 | return 0; | 6142 | return 0; |
3247 | } | 6143 | } |
@@ -3318,6 +6214,23 @@ static struct hda_codec_preset snd_hda_preset_via[] = { | |||
3318 | .patch = patch_vt1702}, | 6214 | .patch = patch_vt1702}, |
3319 | { .id = 0x11067398, .name = "VT1702", | 6215 | { .id = 0x11067398, .name = "VT1702", |
3320 | .patch = patch_vt1702}, | 6216 | .patch = patch_vt1702}, |
6217 | { .id = 0x11060428, .name = "VT1718S", | ||
6218 | .patch = patch_vt1718S}, | ||
6219 | { .id = 0x11064428, .name = "VT1718S", | ||
6220 | .patch = patch_vt1718S}, | ||
6221 | { .id = 0x11060441, .name = "VT2020", | ||
6222 | .patch = patch_vt1718S}, | ||
6223 | { .id = 0x11064441, .name = "VT1828S", | ||
6224 | .patch = patch_vt1718S}, | ||
6225 | { .id = 0x11060433, .name = "VT1716S", | ||
6226 | .patch = patch_vt1716S}, | ||
6227 | { .id = 0x1106a721, .name = "VT1716S", | ||
6228 | .patch = patch_vt1716S}, | ||
6229 | { .id = 0x11060438, .name = "VT2002P", .patch = patch_vt2002P}, | ||
6230 | { .id = 0x11064438, .name = "VT2002P", .patch = patch_vt2002P}, | ||
6231 | { .id = 0x11060448, .name = "VT1812", .patch = patch_vt1812}, | ||
6232 | { .id = 0x11060440, .name = "VT1818S", | ||
6233 | .patch = patch_vt1708S}, | ||
3321 | {} /* terminator */ | 6234 | {} /* terminator */ |
3322 | }; | 6235 | }; |
3323 | 6236 | ||
diff --git a/sound/pci/ice1712/amp.c b/sound/pci/ice1712/amp.c index 37564300b50d..6da21a2bcade 100644 --- a/sound/pci/ice1712/amp.c +++ b/sound/pci/ice1712/amp.c | |||
@@ -52,11 +52,13 @@ static int __devinit snd_vt1724_amp_init(struct snd_ice1712 *ice) | |||
52 | 52 | ||
53 | /* only use basic functionality for now */ | 53 | /* only use basic functionality for now */ |
54 | 54 | ||
55 | ice->num_total_dacs = 2; /* only PSDOUT0 is connected */ | 55 | /* VT1616 6ch codec connected to PSDOUT0 using packed mode */ |
56 | ice->num_total_dacs = 6; | ||
56 | ice->num_total_adcs = 2; | 57 | ice->num_total_adcs = 2; |
57 | 58 | ||
58 | /* Chaintech AV-710 has another codecs, which need initialization */ | 59 | /* Chaintech AV-710 has another WM8728 codec connected to PSDOUT4 |
59 | /* initialize WM8728 codec */ | 60 | (shared with the SPDIF output). Mixer control for this codec |
61 | is not yet supported. */ | ||
60 | if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AV710) { | 62 | if (ice->eeprom.subvendor == VT1724_SUBDEVICE_AV710) { |
61 | for (i = 0; i < ARRAY_SIZE(wm_inits); i += 2) | 63 | for (i = 0; i < ARRAY_SIZE(wm_inits); i += 2) |
62 | wm_put(ice, wm_inits[i], wm_inits[i+1]); | 64 | wm_put(ice, wm_inits[i], wm_inits[i+1]); |
diff --git a/sound/pci/ice1712/ice1712.c b/sound/pci/ice1712/ice1712.c index 56d8d67f1ac3..c7cff6f8168a 100644 --- a/sound/pci/ice1712/ice1712.c +++ b/sound/pci/ice1712/ice1712.c | |||
@@ -2269,7 +2269,7 @@ static int snd_ice1712_pro_peak_get(struct snd_kcontrol *kcontrol, | |||
2269 | } | 2269 | } |
2270 | 2270 | ||
2271 | static struct snd_kcontrol_new snd_ice1712_mixer_pro_peak __devinitdata = { | 2271 | static struct snd_kcontrol_new snd_ice1712_mixer_pro_peak __devinitdata = { |
2272 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 2272 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
2273 | .name = "Multi Track Peak", | 2273 | .name = "Multi Track Peak", |
2274 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, | 2274 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
2275 | .info = snd_ice1712_pro_peak_info, | 2275 | .info = snd_ice1712_pro_peak_info, |
diff --git a/sound/pci/ice1712/ice1724.c b/sound/pci/ice1712/ice1724.c index 3896fb931de1..ae29073eea93 100644 --- a/sound/pci/ice1712/ice1724.c +++ b/sound/pci/ice1712/ice1724.c | |||
@@ -672,7 +672,7 @@ static int snd_vt1724_set_pro_rate(struct snd_ice1712 *ice, unsigned int rate, | |||
672 | (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) { | 672 | (inb(ICEMT1724(ice, DMA_PAUSE)) & DMA_PAUSES)) { |
673 | /* running? we cannot change the rate now... */ | 673 | /* running? we cannot change the rate now... */ |
674 | spin_unlock_irqrestore(&ice->reg_lock, flags); | 674 | spin_unlock_irqrestore(&ice->reg_lock, flags); |
675 | return -EBUSY; | 675 | return ((rate == ice->cur_rate) && !force) ? 0 : -EBUSY; |
676 | } | 676 | } |
677 | if (!force && is_pro_rate_locked(ice)) { | 677 | if (!force && is_pro_rate_locked(ice)) { |
678 | /* comparing required and current rate - makes sense for | 678 | /* comparing required and current rate - makes sense for |
@@ -1328,7 +1328,7 @@ static int __devinit snd_vt1724_pcm_spdif(struct snd_ice1712 *ice, int device) | |||
1328 | 1328 | ||
1329 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, | 1329 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, |
1330 | snd_dma_pci_data(ice->pci), | 1330 | snd_dma_pci_data(ice->pci), |
1331 | 64*1024, 64*1024); | 1331 | 256*1024, 256*1024); |
1332 | 1332 | ||
1333 | ice->pcm = pcm; | 1333 | ice->pcm = pcm; |
1334 | 1334 | ||
@@ -1442,7 +1442,7 @@ static int __devinit snd_vt1724_pcm_indep(struct snd_ice1712 *ice, int device) | |||
1442 | 1442 | ||
1443 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, | 1443 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, |
1444 | snd_dma_pci_data(ice->pci), | 1444 | snd_dma_pci_data(ice->pci), |
1445 | 64*1024, 64*1024); | 1445 | 256*1024, 256*1024); |
1446 | 1446 | ||
1447 | ice->pcm_ds = pcm; | 1447 | ice->pcm_ds = pcm; |
1448 | 1448 | ||
@@ -2160,7 +2160,7 @@ static int snd_vt1724_pro_peak_get(struct snd_kcontrol *kcontrol, | |||
2160 | } | 2160 | } |
2161 | 2161 | ||
2162 | static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = { | 2162 | static struct snd_kcontrol_new snd_vt1724_mixer_pro_peak __devinitdata = { |
2163 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 2163 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
2164 | .name = "Multi Track Peak", | 2164 | .name = "Multi Track Peak", |
2165 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, | 2165 | .access = SNDRV_CTL_ELEM_ACCESS_READ | SNDRV_CTL_ELEM_ACCESS_VOLATILE, |
2166 | .info = snd_vt1724_pro_peak_info, | 2166 | .info = snd_vt1724_pro_peak_info, |
diff --git a/sound/pci/intel8x0.c b/sound/pci/intel8x0.c index 171ada535209..754867ed4785 100644 --- a/sound/pci/intel8x0.c +++ b/sound/pci/intel8x0.c | |||
@@ -1954,6 +1954,18 @@ static struct ac97_quirk ac97_quirks[] __devinitdata = { | |||
1954 | .name = "Sony S1XP", | 1954 | .name = "Sony S1XP", |
1955 | .type = AC97_TUNE_INV_EAPD | 1955 | .type = AC97_TUNE_INV_EAPD |
1956 | }, | 1956 | }, |
1957 | { | ||
1958 | .subvendor = 0x104d, | ||
1959 | .subdevice = 0x81c0, | ||
1960 | .name = "Sony VAIO VGN-T350P", /*AD1981B*/ | ||
1961 | .type = AC97_TUNE_INV_EAPD | ||
1962 | }, | ||
1963 | { | ||
1964 | .subvendor = 0x104d, | ||
1965 | .subdevice = 0x81c5, | ||
1966 | .name = "Sony VAIO VGN-B1VP", /*AD1981B*/ | ||
1967 | .type = AC97_TUNE_INV_EAPD | ||
1968 | }, | ||
1957 | { | 1969 | { |
1958 | .subvendor = 0x1043, | 1970 | .subvendor = 0x1043, |
1959 | .subdevice = 0x80f3, | 1971 | .subdevice = 0x80f3, |
diff --git a/sound/pci/lx6464es/lx6464es.h b/sound/pci/lx6464es/lx6464es.h index 012c010c8c89..51afc048961d 100644 --- a/sound/pci/lx6464es/lx6464es.h +++ b/sound/pci/lx6464es/lx6464es.h | |||
@@ -86,7 +86,6 @@ struct lx6464es { | |||
86 | 86 | ||
87 | /* messaging */ | 87 | /* messaging */ |
88 | spinlock_t msg_lock; /* message spinlock */ | 88 | spinlock_t msg_lock; /* message spinlock */ |
89 | atomic_t send_message_locked; | ||
90 | struct lx_rmh rmh; | 89 | struct lx_rmh rmh; |
91 | 90 | ||
92 | /* configuration */ | 91 | /* configuration */ |
@@ -95,7 +94,6 @@ struct lx6464es { | |||
95 | uint hardware_running[2]; | 94 | uint hardware_running[2]; |
96 | u32 board_sample_rate; /* sample rate read from | 95 | u32 board_sample_rate; /* sample rate read from |
97 | * board */ | 96 | * board */ |
98 | u32 sample_rate; /* our sample rate */ | ||
99 | u16 pcm_granularity; /* board blocksize */ | 97 | u16 pcm_granularity; /* board blocksize */ |
100 | 98 | ||
101 | /* dma */ | 99 | /* dma */ |
diff --git a/sound/pci/lx6464es/lx_core.c b/sound/pci/lx6464es/lx_core.c index 5812780d6e89..3086b751da4a 100644 --- a/sound/pci/lx6464es/lx_core.c +++ b/sound/pci/lx6464es/lx_core.c | |||
@@ -314,98 +314,6 @@ static inline void lx_message_dump(struct lx_rmh *rmh) | |||
314 | #define XILINX_POLL_NO_SLEEP 100 | 314 | #define XILINX_POLL_NO_SLEEP 100 |
315 | #define XILINX_POLL_ITERATIONS 150 | 315 | #define XILINX_POLL_ITERATIONS 150 |
316 | 316 | ||
317 | #if 0 /* not used now */ | ||
318 | static int lx_message_send(struct lx6464es *chip, struct lx_rmh *rmh) | ||
319 | { | ||
320 | u32 reg = ED_DSP_TIMED_OUT; | ||
321 | int dwloop; | ||
322 | int answer_received; | ||
323 | |||
324 | if (lx_dsp_reg_read(chip, eReg_CSM) & (Reg_CSM_MC | Reg_CSM_MR)) { | ||
325 | snd_printk(KERN_ERR LXP "PIOSendMessage eReg_CSM %x\n", reg); | ||
326 | return -EBUSY; | ||
327 | } | ||
328 | |||
329 | /* write command */ | ||
330 | lx_dsp_reg_writebuf(chip, eReg_CRM1, rmh->cmd, rmh->cmd_len); | ||
331 | |||
332 | snd_BUG_ON(atomic_read(&chip->send_message_locked) != 0); | ||
333 | atomic_set(&chip->send_message_locked, 1); | ||
334 | |||
335 | /* MicoBlaze gogogo */ | ||
336 | lx_dsp_reg_write(chip, eReg_CSM, Reg_CSM_MC); | ||
337 | |||
338 | /* wait for interrupt to answer */ | ||
339 | for (dwloop = 0; dwloop != XILINX_TIMEOUT_MS; ++dwloop) { | ||
340 | answer_received = atomic_read(&chip->send_message_locked); | ||
341 | if (answer_received == 0) | ||
342 | break; | ||
343 | msleep(1); | ||
344 | } | ||
345 | |||
346 | if (answer_received == 0) { | ||
347 | /* in Debug mode verify Reg_CSM_MR */ | ||
348 | snd_BUG_ON(!(lx_dsp_reg_read(chip, eReg_CSM) & Reg_CSM_MR)); | ||
349 | |||
350 | /* command finished, read status */ | ||
351 | if (rmh->dsp_stat == 0) | ||
352 | reg = lx_dsp_reg_read(chip, eReg_CRM1); | ||
353 | else | ||
354 | reg = 0; | ||
355 | } else { | ||
356 | int i; | ||
357 | snd_printk(KERN_WARNING LXP "TIMEOUT lx_message_send! " | ||
358 | "Interrupts disabled?\n"); | ||
359 | |||
360 | /* attente bit Reg_CSM_MR */ | ||
361 | for (i = 0; i != XILINX_POLL_ITERATIONS; i++) { | ||
362 | if ((lx_dsp_reg_read(chip, eReg_CSM) & Reg_CSM_MR)) { | ||
363 | if (rmh->dsp_stat == 0) | ||
364 | reg = lx_dsp_reg_read(chip, eReg_CRM1); | ||
365 | else | ||
366 | reg = 0; | ||
367 | goto polling_successful; | ||
368 | } | ||
369 | |||
370 | if (i > XILINX_POLL_NO_SLEEP) | ||
371 | msleep(1); | ||
372 | } | ||
373 | snd_printk(KERN_WARNING LXP "TIMEOUT lx_message_send! " | ||
374 | "polling failed\n"); | ||
375 | |||
376 | polling_successful: | ||
377 | atomic_set(&chip->send_message_locked, 0); | ||
378 | } | ||
379 | |||
380 | if ((reg & ERROR_VALUE) == 0) { | ||
381 | /* read response */ | ||
382 | if (rmh->stat_len) { | ||
383 | snd_BUG_ON(rmh->stat_len >= (REG_CRM_NUMBER-1)); | ||
384 | |||
385 | lx_dsp_reg_readbuf(chip, eReg_CRM2, rmh->stat, | ||
386 | rmh->stat_len); | ||
387 | } | ||
388 | } else | ||
389 | snd_printk(KERN_WARNING LXP "lx_message_send: error_value %x\n", | ||
390 | reg); | ||
391 | |||
392 | /* clear Reg_CSM_MR */ | ||
393 | lx_dsp_reg_write(chip, eReg_CSM, 0); | ||
394 | |||
395 | switch (reg) { | ||
396 | case ED_DSP_TIMED_OUT: | ||
397 | snd_printk(KERN_WARNING LXP "lx_message_send: dsp timeout\n"); | ||
398 | return -ETIMEDOUT; | ||
399 | |||
400 | case ED_DSP_CRASHED: | ||
401 | snd_printk(KERN_WARNING LXP "lx_message_send: dsp crashed\n"); | ||
402 | return -EAGAIN; | ||
403 | } | ||
404 | |||
405 | lx_message_dump(rmh); | ||
406 | return 0; | ||
407 | } | ||
408 | #endif /* not used now */ | ||
409 | 317 | ||
410 | static int lx_message_send_atomic(struct lx6464es *chip, struct lx_rmh *rmh) | 318 | static int lx_message_send_atomic(struct lx6464es *chip, struct lx_rmh *rmh) |
411 | { | 319 | { |
@@ -423,7 +331,7 @@ static int lx_message_send_atomic(struct lx6464es *chip, struct lx_rmh *rmh) | |||
423 | /* MicoBlaze gogogo */ | 331 | /* MicoBlaze gogogo */ |
424 | lx_dsp_reg_write(chip, eReg_CSM, Reg_CSM_MC); | 332 | lx_dsp_reg_write(chip, eReg_CSM, Reg_CSM_MC); |
425 | 333 | ||
426 | /* wait for interrupt to answer */ | 334 | /* wait for device to answer */ |
427 | for (dwloop = 0; dwloop != XILINX_TIMEOUT_MS * 1000; ++dwloop) { | 335 | for (dwloop = 0; dwloop != XILINX_TIMEOUT_MS * 1000; ++dwloop) { |
428 | if (lx_dsp_reg_read(chip, eReg_CSM) & Reg_CSM_MR) { | 336 | if (lx_dsp_reg_read(chip, eReg_CSM) & Reg_CSM_MR) { |
429 | if (rmh->dsp_stat == 0) | 337 | if (rmh->dsp_stat == 0) |
@@ -1175,10 +1083,6 @@ static int lx_interrupt_ack(struct lx6464es *chip, u32 *r_irqsrc, | |||
1175 | *r_async_escmd = 1; | 1083 | *r_async_escmd = 1; |
1176 | } | 1084 | } |
1177 | 1085 | ||
1178 | if (irqsrc & MASK_SYS_STATUS_CMD_DONE) | ||
1179 | /* xilinx command notification */ | ||
1180 | atomic_set(&chip->send_message_locked, 0); | ||
1181 | |||
1182 | if (irq_async) { | 1086 | if (irq_async) { |
1183 | /* snd_printd("interrupt: async event pending\n"); */ | 1087 | /* snd_printd("interrupt: async event pending\n"); */ |
1184 | *r_async_pending = 1; | 1088 | *r_async_pending = 1; |
diff --git a/sound/pci/oxygen/Makefile b/sound/pci/oxygen/Makefile index 4ba07d42fd1d..389941cf6100 100644 --- a/sound/pci/oxygen/Makefile +++ b/sound/pci/oxygen/Makefile | |||
@@ -1,7 +1,8 @@ | |||
1 | snd-oxygen-lib-objs := oxygen_io.o oxygen_lib.o oxygen_mixer.o oxygen_pcm.o | 1 | snd-oxygen-lib-objs := oxygen_io.o oxygen_lib.o oxygen_mixer.o oxygen_pcm.o |
2 | snd-hifier-objs := hifier.o | 2 | snd-hifier-objs := hifier.o |
3 | snd-oxygen-objs := oxygen.o | 3 | snd-oxygen-objs := oxygen.o |
4 | snd-virtuoso-objs := virtuoso.o | 4 | snd-virtuoso-objs := virtuoso.o xonar_lib.o \ |
5 | xonar_pcm179x.o xonar_cs43xx.o xonar_hdmi.o | ||
5 | 6 | ||
6 | obj-$(CONFIG_SND_OXYGEN_LIB) += snd-oxygen-lib.o | 7 | obj-$(CONFIG_SND_OXYGEN_LIB) += snd-oxygen-lib.o |
7 | obj-$(CONFIG_SND_HIFIER) += snd-hifier.o | 8 | obj-$(CONFIG_SND_HIFIER) += snd-hifier.o |
diff --git a/sound/pci/oxygen/cs2000.h b/sound/pci/oxygen/cs2000.h new file mode 100644 index 000000000000..c3501bdb5edc --- /dev/null +++ b/sound/pci/oxygen/cs2000.h | |||
@@ -0,0 +1,83 @@ | |||
1 | #ifndef CS2000_H_INCLUDED | ||
2 | #define CS2000_H_INCLUDED | ||
3 | |||
4 | #define CS2000_DEV_ID 0x01 | ||
5 | #define CS2000_DEV_CTRL 0x02 | ||
6 | #define CS2000_DEV_CFG_1 0x03 | ||
7 | #define CS2000_DEV_CFG_2 0x04 | ||
8 | #define CS2000_GLOBAL_CFG 0x05 | ||
9 | #define CS2000_RATIO_0 0x06 /* 32 bits, big endian */ | ||
10 | #define CS2000_RATIO_1 0x0a | ||
11 | #define CS2000_RATIO_2 0x0e | ||
12 | #define CS2000_RATIO_3 0x12 | ||
13 | #define CS2000_FUN_CFG_1 0x16 | ||
14 | #define CS2000_FUN_CFG_2 0x17 | ||
15 | #define CS2000_FUN_CFG_3 0x1e | ||
16 | |||
17 | /* DEV_ID */ | ||
18 | #define CS2000_DEVICE_MASK 0xf8 | ||
19 | #define CS2000_REVISION_MASK 0x07 | ||
20 | |||
21 | /* DEV_CTRL */ | ||
22 | #define CS2000_UNLOCK 0x80 | ||
23 | #define CS2000_AUX_OUT_DIS 0x02 | ||
24 | #define CS2000_CLK_OUT_DIS 0x01 | ||
25 | |||
26 | /* DEV_CFG_1 */ | ||
27 | #define CS2000_R_MOD_SEL_MASK 0xe0 | ||
28 | #define CS2000_R_MOD_SEL_1 0x00 | ||
29 | #define CS2000_R_MOD_SEL_2 0x20 | ||
30 | #define CS2000_R_MOD_SEL_4 0x40 | ||
31 | #define CS2000_R_MOD_SEL_8 0x60 | ||
32 | #define CS2000_R_MOD_SEL_1_2 0x80 | ||
33 | #define CS2000_R_MOD_SEL_1_4 0xa0 | ||
34 | #define CS2000_R_MOD_SEL_1_8 0xc0 | ||
35 | #define CS2000_R_MOD_SEL_1_16 0xe0 | ||
36 | #define CS2000_R_SEL_MASK 0x18 | ||
37 | #define CS2000_R_SEL_SHIFT 3 | ||
38 | #define CS2000_AUX_OUT_SRC_MASK 0x06 | ||
39 | #define CS2000_AUX_OUT_SRC_REF_CLK 0x00 | ||
40 | #define CS2000_AUX_OUT_SRC_CLK_IN 0x02 | ||
41 | #define CS2000_AUX_OUT_SRC_CLK_OUT 0x04 | ||
42 | #define CS2000_AUX_OUT_SRC_PLL_LOCK 0x06 | ||
43 | #define CS2000_EN_DEV_CFG_1 0x01 | ||
44 | |||
45 | /* DEV_CFG_2 */ | ||
46 | #define CS2000_LOCK_CLK_MASK 0x06 | ||
47 | #define CS2000_LOCK_CLK_SHIFT 1 | ||
48 | #define CS2000_FRAC_N_SRC_MASK 0x01 | ||
49 | #define CS2000_FRAC_N_SRC_STATIC 0x00 | ||
50 | #define CS2000_FRAC_N_SRC_DYNAMIC 0x01 | ||
51 | |||
52 | /* GLOBAL_CFG */ | ||
53 | #define CS2000_FREEZE 0x08 | ||
54 | #define CS2000_EN_DEV_CFG_2 0x01 | ||
55 | |||
56 | /* FUN_CFG_1 */ | ||
57 | #define CS2000_CLK_SKIP_EN 0x80 | ||
58 | #define CS2000_AUX_LOCK_CFG_MASK 0x40 | ||
59 | #define CS2000_AUX_LOCK_CFG_PP_HIGH 0x00 | ||
60 | #define CS2000_AUX_LOCK_CFG_OD_LOW 0x40 | ||
61 | #define CS2000_REF_CLK_DIV_MASK 0x18 | ||
62 | #define CS2000_REF_CLK_DIV_4 0x00 | ||
63 | #define CS2000_REF_CLK_DIV_2 0x08 | ||
64 | #define CS2000_REF_CLK_DIV_1 0x10 | ||
65 | |||
66 | /* FUN_CFG_2 */ | ||
67 | #define CS2000_CLK_OUT_UNL 0x10 | ||
68 | #define CS2000_L_F_RATIO_CFG_MASK 0x08 | ||
69 | #define CS2000_L_F_RATIO_CFG_20_12 0x00 | ||
70 | #define CS2000_L_F_RATIO_CFG_12_20 0x08 | ||
71 | |||
72 | /* FUN_CFG_3 */ | ||
73 | #define CS2000_CLK_IN_BW_MASK 0x70 | ||
74 | #define CS2000_CLK_IN_BW_1 0x00 | ||
75 | #define CS2000_CLK_IN_BW_2 0x10 | ||
76 | #define CS2000_CLK_IN_BW_4 0x20 | ||
77 | #define CS2000_CLK_IN_BW_8 0x30 | ||
78 | #define CS2000_CLK_IN_BW_16 0x40 | ||
79 | #define CS2000_CLK_IN_BW_32 0x50 | ||
80 | #define CS2000_CLK_IN_BW_64 0x60 | ||
81 | #define CS2000_CLK_IN_BW_128 0x70 | ||
82 | |||
83 | #endif | ||
diff --git a/sound/pci/oxygen/hifier.c b/sound/pci/oxygen/hifier.c index 84ef13183419..e3c229b63311 100644 --- a/sound/pci/oxygen/hifier.c +++ b/sound/pci/oxygen/hifier.c | |||
@@ -17,6 +17,12 @@ | |||
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
18 | */ | 18 | */ |
19 | 19 | ||
20 | /* | ||
21 | * CMI8788: | ||
22 | * | ||
23 | * SPI 0 -> AK4396 | ||
24 | */ | ||
25 | |||
20 | #include <linux/delay.h> | 26 | #include <linux/delay.h> |
21 | #include <linux/pci.h> | 27 | #include <linux/pci.h> |
22 | #include <sound/control.h> | 28 | #include <sound/control.h> |
@@ -51,23 +57,28 @@ static struct pci_device_id hifier_ids[] __devinitdata = { | |||
51 | MODULE_DEVICE_TABLE(pci, hifier_ids); | 57 | MODULE_DEVICE_TABLE(pci, hifier_ids); |
52 | 58 | ||
53 | struct hifier_data { | 59 | struct hifier_data { |
54 | u8 ak4396_ctl2; | 60 | u8 ak4396_regs[5]; |
55 | }; | 61 | }; |
56 | 62 | ||
57 | static void ak4396_write(struct oxygen *chip, u8 reg, u8 value) | 63 | static void ak4396_write(struct oxygen *chip, u8 reg, u8 value) |
58 | { | 64 | { |
65 | struct hifier_data *data = chip->model_data; | ||
66 | |||
59 | oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER | | 67 | oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER | |
60 | OXYGEN_SPI_DATA_LENGTH_2 | | 68 | OXYGEN_SPI_DATA_LENGTH_2 | |
61 | OXYGEN_SPI_CLOCK_160 | | 69 | OXYGEN_SPI_CLOCK_160 | |
62 | (0 << OXYGEN_SPI_CODEC_SHIFT) | | 70 | (0 << OXYGEN_SPI_CODEC_SHIFT) | |
63 | OXYGEN_SPI_CEN_LATCH_CLOCK_HI, | 71 | OXYGEN_SPI_CEN_LATCH_CLOCK_HI, |
64 | AK4396_WRITE | (reg << 8) | value); | 72 | AK4396_WRITE | (reg << 8) | value); |
73 | data->ak4396_regs[reg] = value; | ||
65 | } | 74 | } |
66 | 75 | ||
67 | static void update_ak4396_volume(struct oxygen *chip) | 76 | static void ak4396_write_cached(struct oxygen *chip, u8 reg, u8 value) |
68 | { | 77 | { |
69 | ak4396_write(chip, AK4396_LCH_ATT, chip->dac_volume[0]); | 78 | struct hifier_data *data = chip->model_data; |
70 | ak4396_write(chip, AK4396_RCH_ATT, chip->dac_volume[1]); | 79 | |
80 | if (value != data->ak4396_regs[reg]) | ||
81 | ak4396_write(chip, reg, value); | ||
71 | } | 82 | } |
72 | 83 | ||
73 | static void hifier_registers_init(struct oxygen *chip) | 84 | static void hifier_registers_init(struct oxygen *chip) |
@@ -75,16 +86,19 @@ static void hifier_registers_init(struct oxygen *chip) | |||
75 | struct hifier_data *data = chip->model_data; | 86 | struct hifier_data *data = chip->model_data; |
76 | 87 | ||
77 | ak4396_write(chip, AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN); | 88 | ak4396_write(chip, AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN); |
78 | ak4396_write(chip, AK4396_CONTROL_2, data->ak4396_ctl2); | 89 | ak4396_write(chip, AK4396_CONTROL_2, |
90 | data->ak4396_regs[AK4396_CONTROL_2]); | ||
79 | ak4396_write(chip, AK4396_CONTROL_3, AK4396_PCM); | 91 | ak4396_write(chip, AK4396_CONTROL_3, AK4396_PCM); |
80 | update_ak4396_volume(chip); | 92 | ak4396_write(chip, AK4396_LCH_ATT, chip->dac_volume[0]); |
93 | ak4396_write(chip, AK4396_RCH_ATT, chip->dac_volume[1]); | ||
81 | } | 94 | } |
82 | 95 | ||
83 | static void hifier_init(struct oxygen *chip) | 96 | static void hifier_init(struct oxygen *chip) |
84 | { | 97 | { |
85 | struct hifier_data *data = chip->model_data; | 98 | struct hifier_data *data = chip->model_data; |
86 | 99 | ||
87 | data->ak4396_ctl2 = AK4396_SMUTE | AK4396_DEM_OFF | AK4396_DFS_NORMAL; | 100 | data->ak4396_regs[AK4396_CONTROL_2] = |
101 | AK4396_SMUTE | AK4396_DEM_OFF | AK4396_DFS_NORMAL; | ||
88 | hifier_registers_init(chip); | 102 | hifier_registers_init(chip); |
89 | 103 | ||
90 | snd_component_add(chip->card, "AK4396"); | 104 | snd_component_add(chip->card, "AK4396"); |
@@ -106,20 +120,29 @@ static void set_ak4396_params(struct oxygen *chip, | |||
106 | struct hifier_data *data = chip->model_data; | 120 | struct hifier_data *data = chip->model_data; |
107 | u8 value; | 121 | u8 value; |
108 | 122 | ||
109 | value = data->ak4396_ctl2 & ~AK4396_DFS_MASK; | 123 | value = data->ak4396_regs[AK4396_CONTROL_2] & ~AK4396_DFS_MASK; |
110 | if (params_rate(params) <= 54000) | 124 | if (params_rate(params) <= 54000) |
111 | value |= AK4396_DFS_NORMAL; | 125 | value |= AK4396_DFS_NORMAL; |
112 | else if (params_rate(params) <= 108000) | 126 | else if (params_rate(params) <= 108000) |
113 | value |= AK4396_DFS_DOUBLE; | 127 | value |= AK4396_DFS_DOUBLE; |
114 | else | 128 | else |
115 | value |= AK4396_DFS_QUAD; | 129 | value |= AK4396_DFS_QUAD; |
116 | data->ak4396_ctl2 = value; | ||
117 | 130 | ||
118 | msleep(1); /* wait for the new MCLK to become stable */ | 131 | msleep(1); /* wait for the new MCLK to become stable */ |
119 | 132 | ||
120 | ak4396_write(chip, AK4396_CONTROL_1, AK4396_DIF_24_MSB); | 133 | if (value != data->ak4396_regs[AK4396_CONTROL_2]) { |
121 | ak4396_write(chip, AK4396_CONTROL_2, value); | 134 | ak4396_write(chip, AK4396_CONTROL_1, |
122 | ak4396_write(chip, AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN); | 135 | AK4396_DIF_24_MSB); |
136 | ak4396_write(chip, AK4396_CONTROL_2, value); | ||
137 | ak4396_write(chip, AK4396_CONTROL_1, | ||
138 | AK4396_DIF_24_MSB | AK4396_RSTN); | ||
139 | } | ||
140 | } | ||
141 | |||
142 | static void update_ak4396_volume(struct oxygen *chip) | ||
143 | { | ||
144 | ak4396_write_cached(chip, AK4396_LCH_ATT, chip->dac_volume[0]); | ||
145 | ak4396_write_cached(chip, AK4396_RCH_ATT, chip->dac_volume[1]); | ||
123 | } | 146 | } |
124 | 147 | ||
125 | static void update_ak4396_mute(struct oxygen *chip) | 148 | static void update_ak4396_mute(struct oxygen *chip) |
@@ -127,11 +150,10 @@ static void update_ak4396_mute(struct oxygen *chip) | |||
127 | struct hifier_data *data = chip->model_data; | 150 | struct hifier_data *data = chip->model_data; |
128 | u8 value; | 151 | u8 value; |
129 | 152 | ||
130 | value = data->ak4396_ctl2 & ~AK4396_SMUTE; | 153 | value = data->ak4396_regs[AK4396_CONTROL_2] & ~AK4396_SMUTE; |
131 | if (chip->dac_mute) | 154 | if (chip->dac_mute) |
132 | value |= AK4396_SMUTE; | 155 | value |= AK4396_SMUTE; |
133 | data->ak4396_ctl2 = value; | 156 | ak4396_write_cached(chip, AK4396_CONTROL_2, value); |
134 | ak4396_write(chip, AK4396_CONTROL_2, value); | ||
135 | } | 157 | } |
136 | 158 | ||
137 | static void set_cs5340_params(struct oxygen *chip, | 159 | static void set_cs5340_params(struct oxygen *chip, |
@@ -141,21 +163,14 @@ static void set_cs5340_params(struct oxygen *chip, | |||
141 | 163 | ||
142 | static const DECLARE_TLV_DB_LINEAR(ak4396_db_scale, TLV_DB_GAIN_MUTE, 0); | 164 | static const DECLARE_TLV_DB_LINEAR(ak4396_db_scale, TLV_DB_GAIN_MUTE, 0); |
143 | 165 | ||
144 | static int hifier_control_filter(struct snd_kcontrol_new *template) | ||
145 | { | ||
146 | if (!strcmp(template->name, "Stereo Upmixing")) | ||
147 | return 1; /* stereo only - we don't need upmixing */ | ||
148 | return 0; | ||
149 | } | ||
150 | |||
151 | static const struct oxygen_model model_hifier = { | 166 | static const struct oxygen_model model_hifier = { |
152 | .shortname = "C-Media CMI8787", | 167 | .shortname = "C-Media CMI8787", |
153 | .longname = "C-Media Oxygen HD Audio", | 168 | .longname = "C-Media Oxygen HD Audio", |
154 | .chip = "CMI8788", | 169 | .chip = "CMI8788", |
155 | .init = hifier_init, | 170 | .init = hifier_init, |
156 | .control_filter = hifier_control_filter, | ||
157 | .cleanup = hifier_cleanup, | 171 | .cleanup = hifier_cleanup, |
158 | .resume = hifier_resume, | 172 | .resume = hifier_resume, |
173 | .get_i2s_mclk = oxygen_default_i2s_mclk, | ||
159 | .set_dac_params = set_ak4396_params, | 174 | .set_dac_params = set_ak4396_params, |
160 | .set_adc_params = set_cs5340_params, | 175 | .set_adc_params = set_cs5340_params, |
161 | .update_dac_volume = update_ak4396_volume, | 176 | .update_dac_volume = update_ak4396_volume, |
diff --git a/sound/pci/oxygen/oxygen.c b/sound/pci/oxygen/oxygen.c index 72db4c39007f..acbedebcffd9 100644 --- a/sound/pci/oxygen/oxygen.c +++ b/sound/pci/oxygen/oxygen.c | |||
@@ -18,6 +18,8 @@ | |||
18 | */ | 18 | */ |
19 | 19 | ||
20 | /* | 20 | /* |
21 | * CMI8788: | ||
22 | * | ||
21 | * SPI 0 -> 1st AK4396 (front) | 23 | * SPI 0 -> 1st AK4396 (front) |
22 | * SPI 1 -> 2nd AK4396 (surround) | 24 | * SPI 1 -> 2nd AK4396 (surround) |
23 | * SPI 2 -> 3rd AK4396 (center/LFE) | 25 | * SPI 2 -> 3rd AK4396 (center/LFE) |
@@ -27,6 +29,10 @@ | |||
27 | * GPIO 0 -> DFS0 of AK5385 | 29 | * GPIO 0 -> DFS0 of AK5385 |
28 | * GPIO 1 -> DFS1 of AK5385 | 30 | * GPIO 1 -> DFS1 of AK5385 |
29 | * GPIO 8 -> enable headphone amplifier on HT-Omega models | 31 | * GPIO 8 -> enable headphone amplifier on HT-Omega models |
32 | * | ||
33 | * CM9780: | ||
34 | * | ||
35 | * GPO 0 -> route line-in (0) or AC97 output (1) to ADC input | ||
30 | */ | 36 | */ |
31 | 37 | ||
32 | #include <linux/delay.h> | 38 | #include <linux/delay.h> |
@@ -91,8 +97,8 @@ MODULE_DEVICE_TABLE(pci, oxygen_ids); | |||
91 | #define GPIO_CLARO_HP 0x0100 | 97 | #define GPIO_CLARO_HP 0x0100 |
92 | 98 | ||
93 | struct generic_data { | 99 | struct generic_data { |
94 | u8 ak4396_ctl2; | 100 | u8 ak4396_regs[4][5]; |
95 | u16 saved_wm8785_registers[2]; | 101 | u16 wm8785_regs[3]; |
96 | }; | 102 | }; |
97 | 103 | ||
98 | static void ak4396_write(struct oxygen *chip, unsigned int codec, | 104 | static void ak4396_write(struct oxygen *chip, unsigned int codec, |
@@ -102,12 +108,24 @@ static void ak4396_write(struct oxygen *chip, unsigned int codec, | |||
102 | static const u8 codec_spi_map[4] = { | 108 | static const u8 codec_spi_map[4] = { |
103 | 0, 1, 2, 4 | 109 | 0, 1, 2, 4 |
104 | }; | 110 | }; |
111 | struct generic_data *data = chip->model_data; | ||
112 | |||
105 | oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER | | 113 | oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER | |
106 | OXYGEN_SPI_DATA_LENGTH_2 | | 114 | OXYGEN_SPI_DATA_LENGTH_2 | |
107 | OXYGEN_SPI_CLOCK_160 | | 115 | OXYGEN_SPI_CLOCK_160 | |
108 | (codec_spi_map[codec] << OXYGEN_SPI_CODEC_SHIFT) | | 116 | (codec_spi_map[codec] << OXYGEN_SPI_CODEC_SHIFT) | |
109 | OXYGEN_SPI_CEN_LATCH_CLOCK_HI, | 117 | OXYGEN_SPI_CEN_LATCH_CLOCK_HI, |
110 | AK4396_WRITE | (reg << 8) | value); | 118 | AK4396_WRITE | (reg << 8) | value); |
119 | data->ak4396_regs[codec][reg] = value; | ||
120 | } | ||
121 | |||
122 | static void ak4396_write_cached(struct oxygen *chip, unsigned int codec, | ||
123 | u8 reg, u8 value) | ||
124 | { | ||
125 | struct generic_data *data = chip->model_data; | ||
126 | |||
127 | if (value != data->ak4396_regs[codec][reg]) | ||
128 | ak4396_write(chip, codec, reg, value); | ||
111 | } | 129 | } |
112 | 130 | ||
113 | static void wm8785_write(struct oxygen *chip, u8 reg, unsigned int value) | 131 | static void wm8785_write(struct oxygen *chip, u8 reg, unsigned int value) |
@@ -120,20 +138,8 @@ static void wm8785_write(struct oxygen *chip, u8 reg, unsigned int value) | |||
120 | (3 << OXYGEN_SPI_CODEC_SHIFT) | | 138 | (3 << OXYGEN_SPI_CODEC_SHIFT) | |
121 | OXYGEN_SPI_CEN_LATCH_CLOCK_LO, | 139 | OXYGEN_SPI_CEN_LATCH_CLOCK_LO, |
122 | (reg << 9) | value); | 140 | (reg << 9) | value); |
123 | if (reg < ARRAY_SIZE(data->saved_wm8785_registers)) | 141 | if (reg < ARRAY_SIZE(data->wm8785_regs)) |
124 | data->saved_wm8785_registers[reg] = value; | 142 | data->wm8785_regs[reg] = value; |
125 | } | ||
126 | |||
127 | static void update_ak4396_volume(struct oxygen *chip) | ||
128 | { | ||
129 | unsigned int i; | ||
130 | |||
131 | for (i = 0; i < 4; ++i) { | ||
132 | ak4396_write(chip, i, | ||
133 | AK4396_LCH_ATT, chip->dac_volume[i * 2]); | ||
134 | ak4396_write(chip, i, | ||
135 | AK4396_RCH_ATT, chip->dac_volume[i * 2 + 1]); | ||
136 | } | ||
137 | } | 143 | } |
138 | 144 | ||
139 | static void ak4396_registers_init(struct oxygen *chip) | 145 | static void ak4396_registers_init(struct oxygen *chip) |
@@ -142,21 +148,25 @@ static void ak4396_registers_init(struct oxygen *chip) | |||
142 | unsigned int i; | 148 | unsigned int i; |
143 | 149 | ||
144 | for (i = 0; i < 4; ++i) { | 150 | for (i = 0; i < 4; ++i) { |
145 | ak4396_write(chip, i, | 151 | ak4396_write(chip, i, AK4396_CONTROL_1, |
146 | AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN); | 152 | AK4396_DIF_24_MSB | AK4396_RSTN); |
147 | ak4396_write(chip, i, | 153 | ak4396_write(chip, i, AK4396_CONTROL_2, |
148 | AK4396_CONTROL_2, data->ak4396_ctl2); | 154 | data->ak4396_regs[0][AK4396_CONTROL_2]); |
149 | ak4396_write(chip, i, | 155 | ak4396_write(chip, i, AK4396_CONTROL_3, |
150 | AK4396_CONTROL_3, AK4396_PCM); | 156 | AK4396_PCM); |
157 | ak4396_write(chip, i, AK4396_LCH_ATT, | ||
158 | chip->dac_volume[i * 2]); | ||
159 | ak4396_write(chip, i, AK4396_RCH_ATT, | ||
160 | chip->dac_volume[i * 2 + 1]); | ||
151 | } | 161 | } |
152 | update_ak4396_volume(chip); | ||
153 | } | 162 | } |
154 | 163 | ||
155 | static void ak4396_init(struct oxygen *chip) | 164 | static void ak4396_init(struct oxygen *chip) |
156 | { | 165 | { |
157 | struct generic_data *data = chip->model_data; | 166 | struct generic_data *data = chip->model_data; |
158 | 167 | ||
159 | data->ak4396_ctl2 = AK4396_SMUTE | AK4396_DEM_OFF | AK4396_DFS_NORMAL; | 168 | data->ak4396_regs[0][AK4396_CONTROL_2] = |
169 | AK4396_SMUTE | AK4396_DEM_OFF | AK4396_DFS_NORMAL; | ||
160 | ak4396_registers_init(chip); | 170 | ak4396_registers_init(chip); |
161 | snd_component_add(chip->card, "AK4396"); | 171 | snd_component_add(chip->card, "AK4396"); |
162 | } | 172 | } |
@@ -173,17 +183,17 @@ static void wm8785_registers_init(struct oxygen *chip) | |||
173 | struct generic_data *data = chip->model_data; | 183 | struct generic_data *data = chip->model_data; |
174 | 184 | ||
175 | wm8785_write(chip, WM8785_R7, 0); | 185 | wm8785_write(chip, WM8785_R7, 0); |
176 | wm8785_write(chip, WM8785_R0, data->saved_wm8785_registers[0]); | 186 | wm8785_write(chip, WM8785_R0, data->wm8785_regs[0]); |
177 | wm8785_write(chip, WM8785_R1, data->saved_wm8785_registers[1]); | 187 | wm8785_write(chip, WM8785_R2, data->wm8785_regs[2]); |
178 | } | 188 | } |
179 | 189 | ||
180 | static void wm8785_init(struct oxygen *chip) | 190 | static void wm8785_init(struct oxygen *chip) |
181 | { | 191 | { |
182 | struct generic_data *data = chip->model_data; | 192 | struct generic_data *data = chip->model_data; |
183 | 193 | ||
184 | data->saved_wm8785_registers[0] = WM8785_MCR_SLAVE | | 194 | data->wm8785_regs[0] = |
185 | WM8785_OSR_SINGLE | WM8785_FORMAT_LJUST; | 195 | WM8785_MCR_SLAVE | WM8785_OSR_SINGLE | WM8785_FORMAT_LJUST; |
186 | data->saved_wm8785_registers[1] = WM8785_WL_24; | 196 | data->wm8785_regs[2] = WM8785_HPFR | WM8785_HPFL; |
187 | wm8785_registers_init(chip); | 197 | wm8785_registers_init(chip); |
188 | snd_component_add(chip->card, "WM8785"); | 198 | snd_component_add(chip->card, "WM8785"); |
189 | } | 199 | } |
@@ -264,24 +274,36 @@ static void set_ak4396_params(struct oxygen *chip, | |||
264 | unsigned int i; | 274 | unsigned int i; |
265 | u8 value; | 275 | u8 value; |
266 | 276 | ||
267 | value = data->ak4396_ctl2 & ~AK4396_DFS_MASK; | 277 | value = data->ak4396_regs[0][AK4396_CONTROL_2] & ~AK4396_DFS_MASK; |
268 | if (params_rate(params) <= 54000) | 278 | if (params_rate(params) <= 54000) |
269 | value |= AK4396_DFS_NORMAL; | 279 | value |= AK4396_DFS_NORMAL; |
270 | else if (params_rate(params) <= 108000) | 280 | else if (params_rate(params) <= 108000) |
271 | value |= AK4396_DFS_DOUBLE; | 281 | value |= AK4396_DFS_DOUBLE; |
272 | else | 282 | else |
273 | value |= AK4396_DFS_QUAD; | 283 | value |= AK4396_DFS_QUAD; |
274 | data->ak4396_ctl2 = value; | ||
275 | 284 | ||
276 | msleep(1); /* wait for the new MCLK to become stable */ | 285 | msleep(1); /* wait for the new MCLK to become stable */ |
277 | 286 | ||
287 | if (value != data->ak4396_regs[0][AK4396_CONTROL_2]) { | ||
288 | for (i = 0; i < 4; ++i) { | ||
289 | ak4396_write(chip, i, AK4396_CONTROL_1, | ||
290 | AK4396_DIF_24_MSB); | ||
291 | ak4396_write(chip, i, AK4396_CONTROL_2, value); | ||
292 | ak4396_write(chip, i, AK4396_CONTROL_1, | ||
293 | AK4396_DIF_24_MSB | AK4396_RSTN); | ||
294 | } | ||
295 | } | ||
296 | } | ||
297 | |||
298 | static void update_ak4396_volume(struct oxygen *chip) | ||
299 | { | ||
300 | unsigned int i; | ||
301 | |||
278 | for (i = 0; i < 4; ++i) { | 302 | for (i = 0; i < 4; ++i) { |
279 | ak4396_write(chip, i, | 303 | ak4396_write_cached(chip, i, AK4396_LCH_ATT, |
280 | AK4396_CONTROL_1, AK4396_DIF_24_MSB); | 304 | chip->dac_volume[i * 2]); |
281 | ak4396_write(chip, i, | 305 | ak4396_write_cached(chip, i, AK4396_RCH_ATT, |
282 | AK4396_CONTROL_2, value); | 306 | chip->dac_volume[i * 2 + 1]); |
283 | ak4396_write(chip, i, | ||
284 | AK4396_CONTROL_1, AK4396_DIF_24_MSB | AK4396_RSTN); | ||
285 | } | 307 | } |
286 | } | 308 | } |
287 | 309 | ||
@@ -291,21 +313,19 @@ static void update_ak4396_mute(struct oxygen *chip) | |||
291 | unsigned int i; | 313 | unsigned int i; |
292 | u8 value; | 314 | u8 value; |
293 | 315 | ||
294 | value = data->ak4396_ctl2 & ~AK4396_SMUTE; | 316 | value = data->ak4396_regs[0][AK4396_CONTROL_2] & ~AK4396_SMUTE; |
295 | if (chip->dac_mute) | 317 | if (chip->dac_mute) |
296 | value |= AK4396_SMUTE; | 318 | value |= AK4396_SMUTE; |
297 | data->ak4396_ctl2 = value; | ||
298 | for (i = 0; i < 4; ++i) | 319 | for (i = 0; i < 4; ++i) |
299 | ak4396_write(chip, i, AK4396_CONTROL_2, value); | 320 | ak4396_write_cached(chip, i, AK4396_CONTROL_2, value); |
300 | } | 321 | } |
301 | 322 | ||
302 | static void set_wm8785_params(struct oxygen *chip, | 323 | static void set_wm8785_params(struct oxygen *chip, |
303 | struct snd_pcm_hw_params *params) | 324 | struct snd_pcm_hw_params *params) |
304 | { | 325 | { |
326 | struct generic_data *data = chip->model_data; | ||
305 | unsigned int value; | 327 | unsigned int value; |
306 | 328 | ||
307 | wm8785_write(chip, WM8785_R7, 0); | ||
308 | |||
309 | value = WM8785_MCR_SLAVE | WM8785_FORMAT_LJUST; | 329 | value = WM8785_MCR_SLAVE | WM8785_FORMAT_LJUST; |
310 | if (params_rate(params) <= 48000) | 330 | if (params_rate(params) <= 48000) |
311 | value |= WM8785_OSR_SINGLE; | 331 | value |= WM8785_OSR_SINGLE; |
@@ -313,13 +333,11 @@ static void set_wm8785_params(struct oxygen *chip, | |||
313 | value |= WM8785_OSR_DOUBLE; | 333 | value |= WM8785_OSR_DOUBLE; |
314 | else | 334 | else |
315 | value |= WM8785_OSR_QUAD; | 335 | value |= WM8785_OSR_QUAD; |
316 | wm8785_write(chip, WM8785_R0, value); | 336 | if (value != data->wm8785_regs[0]) { |
317 | 337 | wm8785_write(chip, WM8785_R7, 0); | |
318 | if (snd_pcm_format_width(params_format(params)) <= 16) | 338 | wm8785_write(chip, WM8785_R0, value); |
319 | value = WM8785_WL_16; | 339 | wm8785_write(chip, WM8785_R2, data->wm8785_regs[2]); |
320 | else | 340 | } |
321 | value = WM8785_WL_24; | ||
322 | wm8785_write(chip, WM8785_R1, value); | ||
323 | } | 341 | } |
324 | 342 | ||
325 | static void set_ak5385_params(struct oxygen *chip, | 343 | static void set_ak5385_params(struct oxygen *chip, |
@@ -337,6 +355,134 @@ static void set_ak5385_params(struct oxygen *chip, | |||
337 | value, GPIO_AK5385_DFS_MASK); | 355 | value, GPIO_AK5385_DFS_MASK); |
338 | } | 356 | } |
339 | 357 | ||
358 | static int rolloff_info(struct snd_kcontrol *ctl, | ||
359 | struct snd_ctl_elem_info *info) | ||
360 | { | ||
361 | static const char *const names[2] = { | ||
362 | "Sharp Roll-off", "Slow Roll-off" | ||
363 | }; | ||
364 | |||
365 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
366 | info->count = 1; | ||
367 | info->value.enumerated.items = 2; | ||
368 | if (info->value.enumerated.item >= 2) | ||
369 | info->value.enumerated.item = 1; | ||
370 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
371 | return 0; | ||
372 | } | ||
373 | |||
374 | static int rolloff_get(struct snd_kcontrol *ctl, | ||
375 | struct snd_ctl_elem_value *value) | ||
376 | { | ||
377 | struct oxygen *chip = ctl->private_data; | ||
378 | struct generic_data *data = chip->model_data; | ||
379 | |||
380 | value->value.enumerated.item[0] = | ||
381 | (data->ak4396_regs[0][AK4396_CONTROL_2] & AK4396_SLOW) != 0; | ||
382 | return 0; | ||
383 | } | ||
384 | |||
385 | static int rolloff_put(struct snd_kcontrol *ctl, | ||
386 | struct snd_ctl_elem_value *value) | ||
387 | { | ||
388 | struct oxygen *chip = ctl->private_data; | ||
389 | struct generic_data *data = chip->model_data; | ||
390 | unsigned int i; | ||
391 | int changed; | ||
392 | u8 reg; | ||
393 | |||
394 | mutex_lock(&chip->mutex); | ||
395 | reg = data->ak4396_regs[0][AK4396_CONTROL_2]; | ||
396 | if (value->value.enumerated.item[0]) | ||
397 | reg |= AK4396_SLOW; | ||
398 | else | ||
399 | reg &= ~AK4396_SLOW; | ||
400 | changed = reg != data->ak4396_regs[0][AK4396_CONTROL_2]; | ||
401 | if (changed) { | ||
402 | for (i = 0; i < 4; ++i) | ||
403 | ak4396_write(chip, i, AK4396_CONTROL_2, reg); | ||
404 | } | ||
405 | mutex_unlock(&chip->mutex); | ||
406 | return changed; | ||
407 | } | ||
408 | |||
409 | static const struct snd_kcontrol_new rolloff_control = { | ||
410 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
411 | .name = "DAC Filter Playback Enum", | ||
412 | .info = rolloff_info, | ||
413 | .get = rolloff_get, | ||
414 | .put = rolloff_put, | ||
415 | }; | ||
416 | |||
417 | static int hpf_info(struct snd_kcontrol *ctl, struct snd_ctl_elem_info *info) | ||
418 | { | ||
419 | static const char *const names[2] = { | ||
420 | "None", "High-pass Filter" | ||
421 | }; | ||
422 | |||
423 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
424 | info->count = 1; | ||
425 | info->value.enumerated.items = 2; | ||
426 | if (info->value.enumerated.item >= 2) | ||
427 | info->value.enumerated.item = 1; | ||
428 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
429 | return 0; | ||
430 | } | ||
431 | |||
432 | static int hpf_get(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) | ||
433 | { | ||
434 | struct oxygen *chip = ctl->private_data; | ||
435 | struct generic_data *data = chip->model_data; | ||
436 | |||
437 | value->value.enumerated.item[0] = | ||
438 | (data->wm8785_regs[WM8785_R2] & WM8785_HPFR) != 0; | ||
439 | return 0; | ||
440 | } | ||
441 | |||
442 | static int hpf_put(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) | ||
443 | { | ||
444 | struct oxygen *chip = ctl->private_data; | ||
445 | struct generic_data *data = chip->model_data; | ||
446 | unsigned int reg; | ||
447 | int changed; | ||
448 | |||
449 | mutex_lock(&chip->mutex); | ||
450 | reg = data->wm8785_regs[WM8785_R2] & ~(WM8785_HPFR | WM8785_HPFL); | ||
451 | if (value->value.enumerated.item[0]) | ||
452 | reg |= WM8785_HPFR | WM8785_HPFL; | ||
453 | changed = reg != data->wm8785_regs[WM8785_R2]; | ||
454 | if (changed) | ||
455 | wm8785_write(chip, WM8785_R2, reg); | ||
456 | mutex_unlock(&chip->mutex); | ||
457 | return changed; | ||
458 | } | ||
459 | |||
460 | static const struct snd_kcontrol_new hpf_control = { | ||
461 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
462 | .name = "ADC Filter Capture Enum", | ||
463 | .info = hpf_info, | ||
464 | .get = hpf_get, | ||
465 | .put = hpf_put, | ||
466 | }; | ||
467 | |||
468 | static int generic_mixer_init(struct oxygen *chip) | ||
469 | { | ||
470 | return snd_ctl_add(chip->card, snd_ctl_new1(&rolloff_control, chip)); | ||
471 | } | ||
472 | |||
473 | static int generic_wm8785_mixer_init(struct oxygen *chip) | ||
474 | { | ||
475 | int err; | ||
476 | |||
477 | err = generic_mixer_init(chip); | ||
478 | if (err < 0) | ||
479 | return err; | ||
480 | err = snd_ctl_add(chip->card, snd_ctl_new1(&hpf_control, chip)); | ||
481 | if (err < 0) | ||
482 | return err; | ||
483 | return 0; | ||
484 | } | ||
485 | |||
340 | static const DECLARE_TLV_DB_LINEAR(ak4396_db_scale, TLV_DB_GAIN_MUTE, 0); | 486 | static const DECLARE_TLV_DB_LINEAR(ak4396_db_scale, TLV_DB_GAIN_MUTE, 0); |
341 | 487 | ||
342 | static const struct oxygen_model model_generic = { | 488 | static const struct oxygen_model model_generic = { |
@@ -344,8 +490,10 @@ static const struct oxygen_model model_generic = { | |||
344 | .longname = "C-Media Oxygen HD Audio", | 490 | .longname = "C-Media Oxygen HD Audio", |
345 | .chip = "CMI8788", | 491 | .chip = "CMI8788", |
346 | .init = generic_init, | 492 | .init = generic_init, |
493 | .mixer_init = generic_wm8785_mixer_init, | ||
347 | .cleanup = generic_cleanup, | 494 | .cleanup = generic_cleanup, |
348 | .resume = generic_resume, | 495 | .resume = generic_resume, |
496 | .get_i2s_mclk = oxygen_default_i2s_mclk, | ||
349 | .set_dac_params = set_ak4396_params, | 497 | .set_dac_params = set_ak4396_params, |
350 | .set_adc_params = set_wm8785_params, | 498 | .set_adc_params = set_wm8785_params, |
351 | .update_dac_volume = update_ak4396_volume, | 499 | .update_dac_volume = update_ak4396_volume, |
@@ -374,6 +522,7 @@ static int __devinit get_oxygen_model(struct oxygen *chip, | |||
374 | switch (id->driver_data) { | 522 | switch (id->driver_data) { |
375 | case MODEL_MERIDIAN: | 523 | case MODEL_MERIDIAN: |
376 | chip->model.init = meridian_init; | 524 | chip->model.init = meridian_init; |
525 | chip->model.mixer_init = generic_mixer_init; | ||
377 | chip->model.resume = meridian_resume; | 526 | chip->model.resume = meridian_resume; |
378 | chip->model.set_adc_params = set_ak5385_params; | 527 | chip->model.set_adc_params = set_ak5385_params; |
379 | chip->model.device_config = PLAYBACK_0_TO_I2S | | 528 | chip->model.device_config = PLAYBACK_0_TO_I2S | |
@@ -389,6 +538,7 @@ static int __devinit get_oxygen_model(struct oxygen *chip, | |||
389 | break; | 538 | break; |
390 | case MODEL_CLARO_HALO: | 539 | case MODEL_CLARO_HALO: |
391 | chip->model.init = claro_halo_init; | 540 | chip->model.init = claro_halo_init; |
541 | chip->model.mixer_init = generic_mixer_init; | ||
392 | chip->model.cleanup = claro_cleanup; | 542 | chip->model.cleanup = claro_cleanup; |
393 | chip->model.suspend = claro_suspend; | 543 | chip->model.suspend = claro_suspend; |
394 | chip->model.resume = claro_resume; | 544 | chip->model.resume = claro_resume; |
diff --git a/sound/pci/oxygen/oxygen.h b/sound/pci/oxygen/oxygen.h index bd615dbffadb..6147216af744 100644 --- a/sound/pci/oxygen/oxygen.h +++ b/sound/pci/oxygen/oxygen.h | |||
@@ -78,12 +78,15 @@ struct oxygen_model { | |||
78 | void (*resume)(struct oxygen *chip); | 78 | void (*resume)(struct oxygen *chip); |
79 | void (*pcm_hardware_filter)(unsigned int channel, | 79 | void (*pcm_hardware_filter)(unsigned int channel, |
80 | struct snd_pcm_hardware *hardware); | 80 | struct snd_pcm_hardware *hardware); |
81 | unsigned int (*get_i2s_mclk)(struct oxygen *chip, unsigned int channel, | ||
82 | struct snd_pcm_hw_params *hw_params); | ||
81 | void (*set_dac_params)(struct oxygen *chip, | 83 | void (*set_dac_params)(struct oxygen *chip, |
82 | struct snd_pcm_hw_params *params); | 84 | struct snd_pcm_hw_params *params); |
83 | void (*set_adc_params)(struct oxygen *chip, | 85 | void (*set_adc_params)(struct oxygen *chip, |
84 | struct snd_pcm_hw_params *params); | 86 | struct snd_pcm_hw_params *params); |
85 | void (*update_dac_volume)(struct oxygen *chip); | 87 | void (*update_dac_volume)(struct oxygen *chip); |
86 | void (*update_dac_mute)(struct oxygen *chip); | 88 | void (*update_dac_mute)(struct oxygen *chip); |
89 | void (*update_center_lfe_mix)(struct oxygen *chip, bool mixed); | ||
87 | void (*gpio_changed)(struct oxygen *chip); | 90 | void (*gpio_changed)(struct oxygen *chip); |
88 | void (*uart_input)(struct oxygen *chip); | 91 | void (*uart_input)(struct oxygen *chip); |
89 | void (*ac97_switch)(struct oxygen *chip, | 92 | void (*ac97_switch)(struct oxygen *chip, |
@@ -162,6 +165,8 @@ void oxygen_update_spdif_source(struct oxygen *chip); | |||
162 | /* oxygen_pcm.c */ | 165 | /* oxygen_pcm.c */ |
163 | 166 | ||
164 | int oxygen_pcm_init(struct oxygen *chip); | 167 | int oxygen_pcm_init(struct oxygen *chip); |
168 | unsigned int oxygen_default_i2s_mclk(struct oxygen *chip, unsigned int channel, | ||
169 | struct snd_pcm_hw_params *hw_params); | ||
165 | 170 | ||
166 | /* oxygen_io.c */ | 171 | /* oxygen_io.c */ |
167 | 172 | ||
diff --git a/sound/pci/oxygen/oxygen_lib.c b/sound/pci/oxygen/oxygen_lib.c index 9a8936e20744..9c5e6450eebb 100644 --- a/sound/pci/oxygen/oxygen_lib.c +++ b/sound/pci/oxygen/oxygen_lib.c | |||
@@ -278,7 +278,11 @@ oxygen_search_pci_id(struct oxygen *chip, const struct pci_device_id ids[]) | |||
278 | static void oxygen_restore_eeprom(struct oxygen *chip, | 278 | static void oxygen_restore_eeprom(struct oxygen *chip, |
279 | const struct pci_device_id *id) | 279 | const struct pci_device_id *id) |
280 | { | 280 | { |
281 | if (oxygen_read_eeprom(chip, 0) != OXYGEN_EEPROM_ID) { | 281 | u16 eeprom_id; |
282 | |||
283 | eeprom_id = oxygen_read_eeprom(chip, 0); | ||
284 | if (eeprom_id != OXYGEN_EEPROM_ID && | ||
285 | (eeprom_id != 0xffff || id->subdevice != 0x8788)) { | ||
282 | /* | 286 | /* |
283 | * This function gets called only when a known card model has | 287 | * This function gets called only when a known card model has |
284 | * been detected, i.e., we know there is a valid subsystem | 288 | * been detected, i.e., we know there is a valid subsystem |
@@ -303,6 +307,28 @@ static void oxygen_restore_eeprom(struct oxygen *chip, | |||
303 | } | 307 | } |
304 | } | 308 | } |
305 | 309 | ||
310 | static void pci_bridge_magic(void) | ||
311 | { | ||
312 | struct pci_dev *pci = NULL; | ||
313 | u32 tmp; | ||
314 | |||
315 | for (;;) { | ||
316 | /* If there is any Pericom PI7C9X110 PCI-E/PCI bridge ... */ | ||
317 | pci = pci_get_device(0x12d8, 0xe110, pci); | ||
318 | if (!pci) | ||
319 | break; | ||
320 | /* | ||
321 | * ... configure its secondary internal arbiter to park to | ||
322 | * the secondary port, instead of to the last master. | ||
323 | */ | ||
324 | if (!pci_read_config_dword(pci, 0x40, &tmp)) { | ||
325 | tmp |= 1; | ||
326 | pci_write_config_dword(pci, 0x40, tmp); | ||
327 | } | ||
328 | /* Why? Try asking C-Media. */ | ||
329 | } | ||
330 | } | ||
331 | |||
306 | static void oxygen_init(struct oxygen *chip) | 332 | static void oxygen_init(struct oxygen *chip) |
307 | { | 333 | { |
308 | unsigned int i; | 334 | unsigned int i; |
@@ -581,6 +607,7 @@ int oxygen_pci_probe(struct pci_dev *pci, int index, char *id, | |||
581 | snd_card_set_dev(card, &pci->dev); | 607 | snd_card_set_dev(card, &pci->dev); |
582 | card->private_free = oxygen_card_free; | 608 | card->private_free = oxygen_card_free; |
583 | 609 | ||
610 | pci_bridge_magic(); | ||
584 | oxygen_init(chip); | 611 | oxygen_init(chip); |
585 | chip->model.init(chip); | 612 | chip->model.init(chip); |
586 | 613 | ||
diff --git a/sound/pci/oxygen/oxygen_mixer.c b/sound/pci/oxygen/oxygen_mixer.c index 5401c547c4e3..f375b8a27862 100644 --- a/sound/pci/oxygen/oxygen_mixer.c +++ b/sound/pci/oxygen/oxygen_mixer.c | |||
@@ -99,11 +99,15 @@ static int dac_mute_put(struct snd_kcontrol *ctl, | |||
99 | 99 | ||
100 | static int upmix_info(struct snd_kcontrol *ctl, struct snd_ctl_elem_info *info) | 100 | static int upmix_info(struct snd_kcontrol *ctl, struct snd_ctl_elem_info *info) |
101 | { | 101 | { |
102 | static const char *const names[3] = { | 102 | static const char *const names[5] = { |
103 | "Front", "Front+Surround", "Front+Surround+Back" | 103 | "Front", |
104 | "Front+Surround", | ||
105 | "Front+Surround+Back", | ||
106 | "Front+Surround+Center/LFE", | ||
107 | "Front+Surround+Center/LFE+Back", | ||
104 | }; | 108 | }; |
105 | struct oxygen *chip = ctl->private_data; | 109 | struct oxygen *chip = ctl->private_data; |
106 | unsigned int count = 2 + (chip->model.dac_channels == 8); | 110 | unsigned int count = chip->model.update_center_lfe_mix ? 5 : 3; |
107 | 111 | ||
108 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | 112 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
109 | info->count = 1; | 113 | info->count = 1; |
@@ -127,7 +131,7 @@ static int upmix_get(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) | |||
127 | void oxygen_update_dac_routing(struct oxygen *chip) | 131 | void oxygen_update_dac_routing(struct oxygen *chip) |
128 | { | 132 | { |
129 | /* DAC 0: front, DAC 1: surround, DAC 2: center/LFE, DAC 3: back */ | 133 | /* DAC 0: front, DAC 1: surround, DAC 2: center/LFE, DAC 3: back */ |
130 | static const unsigned int reg_values[3] = { | 134 | static const unsigned int reg_values[5] = { |
131 | /* stereo -> front */ | 135 | /* stereo -> front */ |
132 | (0 << OXYGEN_PLAY_DAC0_SOURCE_SHIFT) | | 136 | (0 << OXYGEN_PLAY_DAC0_SOURCE_SHIFT) | |
133 | (1 << OXYGEN_PLAY_DAC1_SOURCE_SHIFT) | | 137 | (1 << OXYGEN_PLAY_DAC1_SOURCE_SHIFT) | |
@@ -143,6 +147,16 @@ void oxygen_update_dac_routing(struct oxygen *chip) | |||
143 | (0 << OXYGEN_PLAY_DAC1_SOURCE_SHIFT) | | 147 | (0 << OXYGEN_PLAY_DAC1_SOURCE_SHIFT) | |
144 | (2 << OXYGEN_PLAY_DAC2_SOURCE_SHIFT) | | 148 | (2 << OXYGEN_PLAY_DAC2_SOURCE_SHIFT) | |
145 | (0 << OXYGEN_PLAY_DAC3_SOURCE_SHIFT), | 149 | (0 << OXYGEN_PLAY_DAC3_SOURCE_SHIFT), |
150 | /* stereo -> front+surround+center/LFE */ | ||
151 | (0 << OXYGEN_PLAY_DAC0_SOURCE_SHIFT) | | ||
152 | (0 << OXYGEN_PLAY_DAC1_SOURCE_SHIFT) | | ||
153 | (0 << OXYGEN_PLAY_DAC2_SOURCE_SHIFT) | | ||
154 | (3 << OXYGEN_PLAY_DAC3_SOURCE_SHIFT), | ||
155 | /* stereo -> front+surround+center/LFE+back */ | ||
156 | (0 << OXYGEN_PLAY_DAC0_SOURCE_SHIFT) | | ||
157 | (0 << OXYGEN_PLAY_DAC1_SOURCE_SHIFT) | | ||
158 | (0 << OXYGEN_PLAY_DAC2_SOURCE_SHIFT) | | ||
159 | (0 << OXYGEN_PLAY_DAC3_SOURCE_SHIFT), | ||
146 | }; | 160 | }; |
147 | u8 channels; | 161 | u8 channels; |
148 | unsigned int reg_value; | 162 | unsigned int reg_value; |
@@ -167,22 +181,23 @@ void oxygen_update_dac_routing(struct oxygen *chip) | |||
167 | OXYGEN_PLAY_DAC1_SOURCE_MASK | | 181 | OXYGEN_PLAY_DAC1_SOURCE_MASK | |
168 | OXYGEN_PLAY_DAC2_SOURCE_MASK | | 182 | OXYGEN_PLAY_DAC2_SOURCE_MASK | |
169 | OXYGEN_PLAY_DAC3_SOURCE_MASK); | 183 | OXYGEN_PLAY_DAC3_SOURCE_MASK); |
184 | if (chip->model.update_center_lfe_mix) | ||
185 | chip->model.update_center_lfe_mix(chip, chip->dac_routing > 2); | ||
170 | } | 186 | } |
171 | 187 | ||
172 | static int upmix_put(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) | 188 | static int upmix_put(struct snd_kcontrol *ctl, struct snd_ctl_elem_value *value) |
173 | { | 189 | { |
174 | struct oxygen *chip = ctl->private_data; | 190 | struct oxygen *chip = ctl->private_data; |
175 | unsigned int count = 2 + (chip->model.dac_channels == 8); | 191 | unsigned int count = chip->model.update_center_lfe_mix ? 5 : 3; |
176 | int changed; | 192 | int changed; |
177 | 193 | ||
194 | if (value->value.enumerated.item[0] >= count) | ||
195 | return -EINVAL; | ||
178 | mutex_lock(&chip->mutex); | 196 | mutex_lock(&chip->mutex); |
179 | changed = value->value.enumerated.item[0] != chip->dac_routing; | 197 | changed = value->value.enumerated.item[0] != chip->dac_routing; |
180 | if (changed) { | 198 | if (changed) { |
181 | chip->dac_routing = min(value->value.enumerated.item[0], | 199 | chip->dac_routing = value->value.enumerated.item[0]; |
182 | count - 1); | ||
183 | spin_lock_irq(&chip->reg_lock); | ||
184 | oxygen_update_dac_routing(chip); | 200 | oxygen_update_dac_routing(chip); |
185 | spin_unlock_irq(&chip->reg_lock); | ||
186 | } | 201 | } |
187 | mutex_unlock(&chip->mutex); | 202 | mutex_unlock(&chip->mutex); |
188 | return changed; | 203 | return changed; |
@@ -790,7 +805,7 @@ static const struct { | |||
790 | .controls = { | 805 | .controls = { |
791 | { | 806 | { |
792 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 807 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
793 | .name = "Analog Input Monitor Switch", | 808 | .name = "Analog Input Monitor Playback Switch", |
794 | .info = snd_ctl_boolean_mono_info, | 809 | .info = snd_ctl_boolean_mono_info, |
795 | .get = monitor_get, | 810 | .get = monitor_get, |
796 | .put = monitor_put, | 811 | .put = monitor_put, |
@@ -798,7 +813,7 @@ static const struct { | |||
798 | }, | 813 | }, |
799 | { | 814 | { |
800 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 815 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
801 | .name = "Analog Input Monitor Volume", | 816 | .name = "Analog Input Monitor Playback Volume", |
802 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | | 817 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
803 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, | 818 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, |
804 | .info = monitor_volume_info, | 819 | .info = monitor_volume_info, |
@@ -815,7 +830,7 @@ static const struct { | |||
815 | .controls = { | 830 | .controls = { |
816 | { | 831 | { |
817 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 832 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
818 | .name = "Analog Input Monitor Switch", | 833 | .name = "Analog Input Monitor Playback Switch", |
819 | .info = snd_ctl_boolean_mono_info, | 834 | .info = snd_ctl_boolean_mono_info, |
820 | .get = monitor_get, | 835 | .get = monitor_get, |
821 | .put = monitor_put, | 836 | .put = monitor_put, |
@@ -823,7 +838,7 @@ static const struct { | |||
823 | }, | 838 | }, |
824 | { | 839 | { |
825 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 840 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
826 | .name = "Analog Input Monitor Volume", | 841 | .name = "Analog Input Monitor Playback Volume", |
827 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | | 842 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
828 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, | 843 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, |
829 | .info = monitor_volume_info, | 844 | .info = monitor_volume_info, |
@@ -840,7 +855,7 @@ static const struct { | |||
840 | .controls = { | 855 | .controls = { |
841 | { | 856 | { |
842 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 857 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
843 | .name = "Analog Input Monitor Switch", | 858 | .name = "Analog Input Monitor Playback Switch", |
844 | .index = 1, | 859 | .index = 1, |
845 | .info = snd_ctl_boolean_mono_info, | 860 | .info = snd_ctl_boolean_mono_info, |
846 | .get = monitor_get, | 861 | .get = monitor_get, |
@@ -849,7 +864,7 @@ static const struct { | |||
849 | }, | 864 | }, |
850 | { | 865 | { |
851 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 866 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
852 | .name = "Analog Input Monitor Volume", | 867 | .name = "Analog Input Monitor Playback Volume", |
853 | .index = 1, | 868 | .index = 1, |
854 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | | 869 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
855 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, | 870 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, |
@@ -867,7 +882,7 @@ static const struct { | |||
867 | .controls = { | 882 | .controls = { |
868 | { | 883 | { |
869 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 884 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
870 | .name = "Digital Input Monitor Switch", | 885 | .name = "Digital Input Monitor Playback Switch", |
871 | .info = snd_ctl_boolean_mono_info, | 886 | .info = snd_ctl_boolean_mono_info, |
872 | .get = monitor_get, | 887 | .get = monitor_get, |
873 | .put = monitor_put, | 888 | .put = monitor_put, |
@@ -875,7 +890,7 @@ static const struct { | |||
875 | }, | 890 | }, |
876 | { | 891 | { |
877 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 892 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
878 | .name = "Digital Input Monitor Volume", | 893 | .name = "Digital Input Monitor Playback Volume", |
879 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | | 894 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
880 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, | 895 | SNDRV_CTL_ELEM_ACCESS_TLV_READ, |
881 | .info = monitor_volume_info, | 896 | .info = monitor_volume_info, |
@@ -954,6 +969,9 @@ static int add_controls(struct oxygen *chip, | |||
954 | if (err == 1) | 969 | if (err == 1) |
955 | continue; | 970 | continue; |
956 | } | 971 | } |
972 | if (!strcmp(template.name, "Stereo Upmixing") && | ||
973 | chip->model.dac_channels == 2) | ||
974 | continue; | ||
957 | if (!strcmp(template.name, "Master Playback Volume") && | 975 | if (!strcmp(template.name, "Master Playback Volume") && |
958 | chip->model.dac_tlv) { | 976 | chip->model.dac_tlv) { |
959 | template.tlv.p = chip->model.dac_tlv; | 977 | template.tlv.p = chip->model.dac_tlv; |
diff --git a/sound/pci/oxygen/oxygen_pcm.c b/sound/pci/oxygen/oxygen_pcm.c index ef2345d82b86..9dff6954c397 100644 --- a/sound/pci/oxygen/oxygen_pcm.c +++ b/sound/pci/oxygen/oxygen_pcm.c | |||
@@ -271,13 +271,16 @@ static unsigned int oxygen_rate(struct snd_pcm_hw_params *hw_params) | |||
271 | } | 271 | } |
272 | } | 272 | } |
273 | 273 | ||
274 | static unsigned int oxygen_i2s_mclk(struct snd_pcm_hw_params *hw_params) | 274 | unsigned int oxygen_default_i2s_mclk(struct oxygen *chip, |
275 | unsigned int channel, | ||
276 | struct snd_pcm_hw_params *hw_params) | ||
275 | { | 277 | { |
276 | if (params_rate(hw_params) <= 96000) | 278 | if (params_rate(hw_params) <= 96000) |
277 | return OXYGEN_I2S_MCLK_256; | 279 | return OXYGEN_I2S_MCLK_256; |
278 | else | 280 | else |
279 | return OXYGEN_I2S_MCLK_128; | 281 | return OXYGEN_I2S_MCLK_128; |
280 | } | 282 | } |
283 | EXPORT_SYMBOL(oxygen_default_i2s_mclk); | ||
281 | 284 | ||
282 | static unsigned int oxygen_i2s_bits(struct snd_pcm_hw_params *hw_params) | 285 | static unsigned int oxygen_i2s_bits(struct snd_pcm_hw_params *hw_params) |
283 | { | 286 | { |
@@ -354,7 +357,7 @@ static int oxygen_rec_a_hw_params(struct snd_pcm_substream *substream, | |||
354 | OXYGEN_REC_FORMAT_A_MASK); | 357 | OXYGEN_REC_FORMAT_A_MASK); |
355 | oxygen_write16_masked(chip, OXYGEN_I2S_A_FORMAT, | 358 | oxygen_write16_masked(chip, OXYGEN_I2S_A_FORMAT, |
356 | oxygen_rate(hw_params) | | 359 | oxygen_rate(hw_params) | |
357 | oxygen_i2s_mclk(hw_params) | | 360 | chip->model.get_i2s_mclk(chip, PCM_A, hw_params) | |
358 | chip->model.adc_i2s_format | | 361 | chip->model.adc_i2s_format | |
359 | oxygen_i2s_bits(hw_params), | 362 | oxygen_i2s_bits(hw_params), |
360 | OXYGEN_I2S_RATE_MASK | | 363 | OXYGEN_I2S_RATE_MASK | |
@@ -390,7 +393,8 @@ static int oxygen_rec_b_hw_params(struct snd_pcm_substream *substream, | |||
390 | if (!is_ac97) | 393 | if (!is_ac97) |
391 | oxygen_write16_masked(chip, OXYGEN_I2S_B_FORMAT, | 394 | oxygen_write16_masked(chip, OXYGEN_I2S_B_FORMAT, |
392 | oxygen_rate(hw_params) | | 395 | oxygen_rate(hw_params) | |
393 | oxygen_i2s_mclk(hw_params) | | 396 | chip->model.get_i2s_mclk(chip, PCM_B, |
397 | hw_params) | | ||
394 | chip->model.adc_i2s_format | | 398 | chip->model.adc_i2s_format | |
395 | oxygen_i2s_bits(hw_params), | 399 | oxygen_i2s_bits(hw_params), |
396 | OXYGEN_I2S_RATE_MASK | | 400 | OXYGEN_I2S_RATE_MASK | |
@@ -435,6 +439,7 @@ static int oxygen_spdif_hw_params(struct snd_pcm_substream *substream, | |||
435 | if (err < 0) | 439 | if (err < 0) |
436 | return err; | 440 | return err; |
437 | 441 | ||
442 | mutex_lock(&chip->mutex); | ||
438 | spin_lock_irq(&chip->reg_lock); | 443 | spin_lock_irq(&chip->reg_lock); |
439 | oxygen_clear_bits32(chip, OXYGEN_SPDIF_CONTROL, | 444 | oxygen_clear_bits32(chip, OXYGEN_SPDIF_CONTROL, |
440 | OXYGEN_SPDIF_OUT_ENABLE); | 445 | OXYGEN_SPDIF_OUT_ENABLE); |
@@ -446,6 +451,7 @@ static int oxygen_spdif_hw_params(struct snd_pcm_substream *substream, | |||
446 | OXYGEN_SPDIF_OUT_RATE_MASK); | 451 | OXYGEN_SPDIF_OUT_RATE_MASK); |
447 | oxygen_update_spdif_source(chip); | 452 | oxygen_update_spdif_source(chip); |
448 | spin_unlock_irq(&chip->reg_lock); | 453 | spin_unlock_irq(&chip->reg_lock); |
454 | mutex_unlock(&chip->mutex); | ||
449 | return 0; | 455 | return 0; |
450 | } | 456 | } |
451 | 457 | ||
@@ -459,6 +465,7 @@ static int oxygen_multich_hw_params(struct snd_pcm_substream *substream, | |||
459 | if (err < 0) | 465 | if (err < 0) |
460 | return err; | 466 | return err; |
461 | 467 | ||
468 | mutex_lock(&chip->mutex); | ||
462 | spin_lock_irq(&chip->reg_lock); | 469 | spin_lock_irq(&chip->reg_lock); |
463 | oxygen_write8_masked(chip, OXYGEN_PLAY_CHANNELS, | 470 | oxygen_write8_masked(chip, OXYGEN_PLAY_CHANNELS, |
464 | oxygen_play_channels(hw_params), | 471 | oxygen_play_channels(hw_params), |
@@ -469,18 +476,18 @@ static int oxygen_multich_hw_params(struct snd_pcm_substream *substream, | |||
469 | oxygen_write16_masked(chip, OXYGEN_I2S_MULTICH_FORMAT, | 476 | oxygen_write16_masked(chip, OXYGEN_I2S_MULTICH_FORMAT, |
470 | oxygen_rate(hw_params) | | 477 | oxygen_rate(hw_params) | |
471 | chip->model.dac_i2s_format | | 478 | chip->model.dac_i2s_format | |
472 | oxygen_i2s_mclk(hw_params) | | 479 | chip->model.get_i2s_mclk(chip, PCM_MULTICH, |
480 | hw_params) | | ||
473 | oxygen_i2s_bits(hw_params), | 481 | oxygen_i2s_bits(hw_params), |
474 | OXYGEN_I2S_RATE_MASK | | 482 | OXYGEN_I2S_RATE_MASK | |
475 | OXYGEN_I2S_FORMAT_MASK | | 483 | OXYGEN_I2S_FORMAT_MASK | |
476 | OXYGEN_I2S_MCLK_MASK | | 484 | OXYGEN_I2S_MCLK_MASK | |
477 | OXYGEN_I2S_BITS_MASK); | 485 | OXYGEN_I2S_BITS_MASK); |
478 | oxygen_update_dac_routing(chip); | ||
479 | oxygen_update_spdif_source(chip); | 486 | oxygen_update_spdif_source(chip); |
480 | spin_unlock_irq(&chip->reg_lock); | 487 | spin_unlock_irq(&chip->reg_lock); |
481 | 488 | ||
482 | mutex_lock(&chip->mutex); | ||
483 | chip->model.set_dac_params(chip, hw_params); | 489 | chip->model.set_dac_params(chip, hw_params); |
490 | oxygen_update_dac_routing(chip); | ||
484 | mutex_unlock(&chip->mutex); | 491 | mutex_unlock(&chip->mutex); |
485 | return 0; | 492 | return 0; |
486 | } | 493 | } |
diff --git a/sound/pci/oxygen/virtuoso.c b/sound/pci/oxygen/virtuoso.c index 6ebcb6bdd712..6accaf9580b2 100644 --- a/sound/pci/oxygen/virtuoso.c +++ b/sound/pci/oxygen/virtuoso.c | |||
@@ -17,145 +17,12 @@ | |||
17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
18 | */ | 18 | */ |
19 | 19 | ||
20 | /* | ||
21 | * Xonar D2/D2X | ||
22 | * ------------ | ||
23 | * | ||
24 | * CMI8788: | ||
25 | * | ||
26 | * SPI 0 -> 1st PCM1796 (front) | ||
27 | * SPI 1 -> 2nd PCM1796 (surround) | ||
28 | * SPI 2 -> 3rd PCM1796 (center/LFE) | ||
29 | * SPI 4 -> 4th PCM1796 (back) | ||
30 | * | ||
31 | * GPIO 2 -> M0 of CS5381 | ||
32 | * GPIO 3 -> M1 of CS5381 | ||
33 | * GPIO 5 <- external power present (D2X only) | ||
34 | * GPIO 7 -> ALT | ||
35 | * GPIO 8 -> enable output to speakers | ||
36 | */ | ||
37 | |||
38 | /* | ||
39 | * Xonar D1/DX | ||
40 | * ----------- | ||
41 | * | ||
42 | * CMI8788: | ||
43 | * | ||
44 | * I²C <-> CS4398 (front) | ||
45 | * <-> CS4362A (surround, center/LFE, back) | ||
46 | * | ||
47 | * GPI 0 <- external power present (DX only) | ||
48 | * | ||
49 | * GPIO 0 -> enable output to speakers | ||
50 | * GPIO 1 -> enable front panel I/O | ||
51 | * GPIO 2 -> M0 of CS5361 | ||
52 | * GPIO 3 -> M1 of CS5361 | ||
53 | * GPIO 8 -> route input jack to line-in (0) or mic-in (1) | ||
54 | * | ||
55 | * CS4398: | ||
56 | * | ||
57 | * AD0 <- 1 | ||
58 | * AD1 <- 1 | ||
59 | * | ||
60 | * CS4362A: | ||
61 | * | ||
62 | * AD0 <- 0 | ||
63 | */ | ||
64 | |||
65 | /* | ||
66 | * Xonar HDAV1.3 (Deluxe) | ||
67 | * ---------------------- | ||
68 | * | ||
69 | * CMI8788: | ||
70 | * | ||
71 | * I²C <-> PCM1796 (front) | ||
72 | * | ||
73 | * GPI 0 <- external power present | ||
74 | * | ||
75 | * GPIO 0 -> enable output to speakers | ||
76 | * GPIO 2 -> M0 of CS5381 | ||
77 | * GPIO 3 -> M1 of CS5381 | ||
78 | * GPIO 8 -> route input jack to line-in (0) or mic-in (1) | ||
79 | * | ||
80 | * TXD -> HDMI controller | ||
81 | * RXD <- HDMI controller | ||
82 | * | ||
83 | * PCM1796 front: AD1,0 <- 0,0 | ||
84 | * | ||
85 | * no daughterboard | ||
86 | * ---------------- | ||
87 | * | ||
88 | * GPIO 4 <- 1 | ||
89 | * | ||
90 | * H6 daughterboard | ||
91 | * ---------------- | ||
92 | * | ||
93 | * GPIO 4 <- 0 | ||
94 | * GPIO 5 <- 0 | ||
95 | * | ||
96 | * I²C <-> PCM1796 (surround) | ||
97 | * <-> PCM1796 (center/LFE) | ||
98 | * <-> PCM1796 (back) | ||
99 | * | ||
100 | * PCM1796 surround: AD1,0 <- 0,1 | ||
101 | * PCM1796 center/LFE: AD1,0 <- 1,0 | ||
102 | * PCM1796 back: AD1,0 <- 1,1 | ||
103 | * | ||
104 | * unknown daughterboard | ||
105 | * --------------------- | ||
106 | * | ||
107 | * GPIO 4 <- 0 | ||
108 | * GPIO 5 <- 1 | ||
109 | * | ||
110 | * I²C <-> CS4362A (surround, center/LFE, back) | ||
111 | * | ||
112 | * CS4362A: AD0 <- 0 | ||
113 | */ | ||
114 | |||
115 | /* | ||
116 | * Xonar Essence ST (Deluxe)/STX | ||
117 | * ----------------------------- | ||
118 | * | ||
119 | * CMI8788: | ||
120 | * | ||
121 | * I²C <-> PCM1792A | ||
122 | * | ||
123 | * GPI 0 <- external power present | ||
124 | * | ||
125 | * GPIO 0 -> enable output to speakers | ||
126 | * GPIO 1 -> route HP to front panel (0) or rear jack (1) | ||
127 | * GPIO 2 -> M0 of CS5381 | ||
128 | * GPIO 3 -> M1 of CS5381 | ||
129 | * GPIO 7 -> route output to speaker jacks (0) or HP (1) | ||
130 | * GPIO 8 -> route input jack to line-in (0) or mic-in (1) | ||
131 | * | ||
132 | * PCM1792A: | ||
133 | * | ||
134 | * AD0 <- 0 | ||
135 | * | ||
136 | * H6 daughterboard | ||
137 | * ---------------- | ||
138 | * | ||
139 | * GPIO 4 <- 0 | ||
140 | * GPIO 5 <- 0 | ||
141 | */ | ||
142 | |||
143 | #include <linux/pci.h> | 20 | #include <linux/pci.h> |
144 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
145 | #include <linux/mutex.h> | ||
146 | #include <sound/ac97_codec.h> | ||
147 | #include <sound/asoundef.h> | ||
148 | #include <sound/control.h> | ||
149 | #include <sound/core.h> | 22 | #include <sound/core.h> |
150 | #include <sound/initval.h> | 23 | #include <sound/initval.h> |
151 | #include <sound/pcm.h> | 24 | #include <sound/pcm.h> |
152 | #include <sound/pcm_params.h> | 25 | #include "xonar.h" |
153 | #include <sound/tlv.h> | ||
154 | #include "oxygen.h" | ||
155 | #include "cm9780.h" | ||
156 | #include "pcm1796.h" | ||
157 | #include "cs4398.h" | ||
158 | #include "cs4362a.h" | ||
159 | 26 | ||
160 | MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>"); | 27 | MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>"); |
161 | MODULE_DESCRIPTION("Asus AVx00 driver"); | 28 | MODULE_DESCRIPTION("Asus AVx00 driver"); |
@@ -173,972 +40,28 @@ MODULE_PARM_DESC(id, "ID string"); | |||
173 | module_param_array(enable, bool, NULL, 0444); | 40 | module_param_array(enable, bool, NULL, 0444); |
174 | MODULE_PARM_DESC(enable, "enable card"); | 41 | MODULE_PARM_DESC(enable, "enable card"); |
175 | 42 | ||
176 | enum { | ||
177 | MODEL_D2, | ||
178 | MODEL_D2X, | ||
179 | MODEL_D1, | ||
180 | MODEL_DX, | ||
181 | MODEL_HDAV, /* without daughterboard */ | ||
182 | MODEL_HDAV_H6, /* with H6 daughterboard */ | ||
183 | MODEL_ST, | ||
184 | MODEL_ST_H6, | ||
185 | MODEL_STX, | ||
186 | }; | ||
187 | |||
188 | static struct pci_device_id xonar_ids[] __devinitdata = { | 43 | static struct pci_device_id xonar_ids[] __devinitdata = { |
189 | { OXYGEN_PCI_SUBID(0x1043, 0x8269), .driver_data = MODEL_D2 }, | 44 | { OXYGEN_PCI_SUBID(0x1043, 0x8269) }, |
190 | { OXYGEN_PCI_SUBID(0x1043, 0x8275), .driver_data = MODEL_DX }, | 45 | { OXYGEN_PCI_SUBID(0x1043, 0x8275) }, |
191 | { OXYGEN_PCI_SUBID(0x1043, 0x82b7), .driver_data = MODEL_D2X }, | 46 | { OXYGEN_PCI_SUBID(0x1043, 0x82b7) }, |
192 | { OXYGEN_PCI_SUBID(0x1043, 0x8314), .driver_data = MODEL_HDAV }, | 47 | { OXYGEN_PCI_SUBID(0x1043, 0x8314) }, |
193 | { OXYGEN_PCI_SUBID(0x1043, 0x8327), .driver_data = MODEL_DX }, | 48 | { OXYGEN_PCI_SUBID(0x1043, 0x8327) }, |
194 | { OXYGEN_PCI_SUBID(0x1043, 0x834f), .driver_data = MODEL_D1 }, | 49 | { OXYGEN_PCI_SUBID(0x1043, 0x834f) }, |
195 | { OXYGEN_PCI_SUBID(0x1043, 0x835c), .driver_data = MODEL_STX }, | 50 | { OXYGEN_PCI_SUBID(0x1043, 0x835c) }, |
196 | { OXYGEN_PCI_SUBID(0x1043, 0x835d), .driver_data = MODEL_ST }, | 51 | { OXYGEN_PCI_SUBID(0x1043, 0x835d) }, |
197 | { OXYGEN_PCI_SUBID_BROKEN_EEPROM }, | 52 | { OXYGEN_PCI_SUBID_BROKEN_EEPROM }, |
198 | { } | 53 | { } |
199 | }; | 54 | }; |
200 | MODULE_DEVICE_TABLE(pci, xonar_ids); | 55 | MODULE_DEVICE_TABLE(pci, xonar_ids); |
201 | 56 | ||
202 | |||
203 | #define GPIO_CS53x1_M_MASK 0x000c | ||
204 | #define GPIO_CS53x1_M_SINGLE 0x0000 | ||
205 | #define GPIO_CS53x1_M_DOUBLE 0x0004 | ||
206 | #define GPIO_CS53x1_M_QUAD 0x0008 | ||
207 | |||
208 | #define GPIO_D2X_EXT_POWER 0x0020 | ||
209 | #define GPIO_D2_ALT 0x0080 | ||
210 | #define GPIO_D2_OUTPUT_ENABLE 0x0100 | ||
211 | |||
212 | #define GPI_DX_EXT_POWER 0x01 | ||
213 | #define GPIO_DX_OUTPUT_ENABLE 0x0001 | ||
214 | #define GPIO_DX_FRONT_PANEL 0x0002 | ||
215 | #define GPIO_DX_INPUT_ROUTE 0x0100 | ||
216 | |||
217 | #define GPIO_DB_MASK 0x0030 | ||
218 | #define GPIO_DB_H6 0x0000 | ||
219 | #define GPIO_DB_XX 0x0020 | ||
220 | |||
221 | #define GPIO_ST_HP_REAR 0x0002 | ||
222 | #define GPIO_ST_HP 0x0080 | ||
223 | |||
224 | #define I2C_DEVICE_PCM1796(i) (0x98 + ((i) << 1)) /* 10011, ADx=i, /W=0 */ | ||
225 | #define I2C_DEVICE_CS4398 0x9e /* 10011, AD1=1, AD0=1, /W=0 */ | ||
226 | #define I2C_DEVICE_CS4362A 0x30 /* 001100, AD0=0, /W=0 */ | ||
227 | |||
228 | struct xonar_data { | ||
229 | unsigned int anti_pop_delay; | ||
230 | unsigned int dacs; | ||
231 | u16 output_enable_bit; | ||
232 | u8 ext_power_reg; | ||
233 | u8 ext_power_int_reg; | ||
234 | u8 ext_power_bit; | ||
235 | u8 has_power; | ||
236 | u8 pcm1796_oversampling; | ||
237 | u8 cs4398_fm; | ||
238 | u8 cs4362a_fm; | ||
239 | u8 hdmi_params[5]; | ||
240 | }; | ||
241 | |||
242 | static void xonar_gpio_changed(struct oxygen *chip); | ||
243 | |||
244 | static inline void pcm1796_write_spi(struct oxygen *chip, unsigned int codec, | ||
245 | u8 reg, u8 value) | ||
246 | { | ||
247 | /* maps ALSA channel pair number to SPI output */ | ||
248 | static const u8 codec_map[4] = { | ||
249 | 0, 1, 2, 4 | ||
250 | }; | ||
251 | oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER | | ||
252 | OXYGEN_SPI_DATA_LENGTH_2 | | ||
253 | OXYGEN_SPI_CLOCK_160 | | ||
254 | (codec_map[codec] << OXYGEN_SPI_CODEC_SHIFT) | | ||
255 | OXYGEN_SPI_CEN_LATCH_CLOCK_HI, | ||
256 | (reg << 8) | value); | ||
257 | } | ||
258 | |||
259 | static inline void pcm1796_write_i2c(struct oxygen *chip, unsigned int codec, | ||
260 | u8 reg, u8 value) | ||
261 | { | ||
262 | oxygen_write_i2c(chip, I2C_DEVICE_PCM1796(codec), reg, value); | ||
263 | } | ||
264 | |||
265 | static void pcm1796_write(struct oxygen *chip, unsigned int codec, | ||
266 | u8 reg, u8 value) | ||
267 | { | ||
268 | if ((chip->model.function_flags & OXYGEN_FUNCTION_2WIRE_SPI_MASK) == | ||
269 | OXYGEN_FUNCTION_SPI) | ||
270 | pcm1796_write_spi(chip, codec, reg, value); | ||
271 | else | ||
272 | pcm1796_write_i2c(chip, codec, reg, value); | ||
273 | } | ||
274 | |||
275 | static void cs4398_write(struct oxygen *chip, u8 reg, u8 value) | ||
276 | { | ||
277 | oxygen_write_i2c(chip, I2C_DEVICE_CS4398, reg, value); | ||
278 | } | ||
279 | |||
280 | static void cs4362a_write(struct oxygen *chip, u8 reg, u8 value) | ||
281 | { | ||
282 | oxygen_write_i2c(chip, I2C_DEVICE_CS4362A, reg, value); | ||
283 | } | ||
284 | |||
285 | static void hdmi_write_command(struct oxygen *chip, u8 command, | ||
286 | unsigned int count, const u8 *params) | ||
287 | { | ||
288 | unsigned int i; | ||
289 | u8 checksum; | ||
290 | |||
291 | oxygen_write_uart(chip, 0xfb); | ||
292 | oxygen_write_uart(chip, 0xef); | ||
293 | oxygen_write_uart(chip, command); | ||
294 | oxygen_write_uart(chip, count); | ||
295 | for (i = 0; i < count; ++i) | ||
296 | oxygen_write_uart(chip, params[i]); | ||
297 | checksum = 0xfb + 0xef + command + count; | ||
298 | for (i = 0; i < count; ++i) | ||
299 | checksum += params[i]; | ||
300 | oxygen_write_uart(chip, checksum); | ||
301 | } | ||
302 | |||
303 | static void xonar_enable_output(struct oxygen *chip) | ||
304 | { | ||
305 | struct xonar_data *data = chip->model_data; | ||
306 | |||
307 | msleep(data->anti_pop_delay); | ||
308 | oxygen_set_bits16(chip, OXYGEN_GPIO_DATA, data->output_enable_bit); | ||
309 | } | ||
310 | |||
311 | static void xonar_common_init(struct oxygen *chip) | ||
312 | { | ||
313 | struct xonar_data *data = chip->model_data; | ||
314 | |||
315 | if (data->ext_power_reg) { | ||
316 | oxygen_set_bits8(chip, data->ext_power_int_reg, | ||
317 | data->ext_power_bit); | ||
318 | chip->interrupt_mask |= OXYGEN_INT_GPIO; | ||
319 | chip->model.gpio_changed = xonar_gpio_changed; | ||
320 | data->has_power = !!(oxygen_read8(chip, data->ext_power_reg) | ||
321 | & data->ext_power_bit); | ||
322 | } | ||
323 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, | ||
324 | GPIO_CS53x1_M_MASK | data->output_enable_bit); | ||
325 | oxygen_write16_masked(chip, OXYGEN_GPIO_DATA, | ||
326 | GPIO_CS53x1_M_SINGLE, GPIO_CS53x1_M_MASK); | ||
327 | oxygen_ac97_set_bits(chip, 0, CM9780_JACK, CM9780_FMIC2MIC); | ||
328 | xonar_enable_output(chip); | ||
329 | } | ||
330 | |||
331 | static void update_pcm1796_volume(struct oxygen *chip) | ||
332 | { | ||
333 | struct xonar_data *data = chip->model_data; | ||
334 | unsigned int i; | ||
335 | |||
336 | for (i = 0; i < data->dacs; ++i) { | ||
337 | pcm1796_write(chip, i, 16, chip->dac_volume[i * 2]); | ||
338 | pcm1796_write(chip, i, 17, chip->dac_volume[i * 2 + 1]); | ||
339 | } | ||
340 | } | ||
341 | |||
342 | static void update_pcm1796_mute(struct oxygen *chip) | ||
343 | { | ||
344 | struct xonar_data *data = chip->model_data; | ||
345 | unsigned int i; | ||
346 | u8 value; | ||
347 | |||
348 | value = PCM1796_DMF_DISABLED | PCM1796_FMT_24_LJUST | PCM1796_ATLD; | ||
349 | if (chip->dac_mute) | ||
350 | value |= PCM1796_MUTE; | ||
351 | for (i = 0; i < data->dacs; ++i) | ||
352 | pcm1796_write(chip, i, 18, value); | ||
353 | } | ||
354 | |||
355 | static void pcm1796_init(struct oxygen *chip) | ||
356 | { | ||
357 | struct xonar_data *data = chip->model_data; | ||
358 | unsigned int i; | ||
359 | |||
360 | for (i = 0; i < data->dacs; ++i) { | ||
361 | pcm1796_write(chip, i, 19, PCM1796_FLT_SHARP | PCM1796_ATS_1); | ||
362 | pcm1796_write(chip, i, 20, data->pcm1796_oversampling); | ||
363 | pcm1796_write(chip, i, 21, 0); | ||
364 | } | ||
365 | update_pcm1796_mute(chip); /* set ATLD before ATL/ATR */ | ||
366 | update_pcm1796_volume(chip); | ||
367 | } | ||
368 | |||
369 | static void xonar_d2_init(struct oxygen *chip) | ||
370 | { | ||
371 | struct xonar_data *data = chip->model_data; | ||
372 | |||
373 | data->anti_pop_delay = 300; | ||
374 | data->dacs = 4; | ||
375 | data->output_enable_bit = GPIO_D2_OUTPUT_ENABLE; | ||
376 | data->pcm1796_oversampling = PCM1796_OS_64; | ||
377 | |||
378 | pcm1796_init(chip); | ||
379 | |||
380 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_D2_ALT); | ||
381 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, GPIO_D2_ALT); | ||
382 | |||
383 | xonar_common_init(chip); | ||
384 | |||
385 | snd_component_add(chip->card, "PCM1796"); | ||
386 | snd_component_add(chip->card, "CS5381"); | ||
387 | } | ||
388 | |||
389 | static void xonar_d2x_init(struct oxygen *chip) | ||
390 | { | ||
391 | struct xonar_data *data = chip->model_data; | ||
392 | |||
393 | data->ext_power_reg = OXYGEN_GPIO_DATA; | ||
394 | data->ext_power_int_reg = OXYGEN_GPIO_INTERRUPT_MASK; | ||
395 | data->ext_power_bit = GPIO_D2X_EXT_POWER; | ||
396 | oxygen_clear_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_D2X_EXT_POWER); | ||
397 | |||
398 | xonar_d2_init(chip); | ||
399 | } | ||
400 | |||
401 | static void update_cs4362a_volumes(struct oxygen *chip) | ||
402 | { | ||
403 | u8 mute; | ||
404 | |||
405 | mute = chip->dac_mute ? CS4362A_MUTE : 0; | ||
406 | cs4362a_write(chip, 7, (127 - chip->dac_volume[2]) | mute); | ||
407 | cs4362a_write(chip, 8, (127 - chip->dac_volume[3]) | mute); | ||
408 | cs4362a_write(chip, 10, (127 - chip->dac_volume[4]) | mute); | ||
409 | cs4362a_write(chip, 11, (127 - chip->dac_volume[5]) | mute); | ||
410 | cs4362a_write(chip, 13, (127 - chip->dac_volume[6]) | mute); | ||
411 | cs4362a_write(chip, 14, (127 - chip->dac_volume[7]) | mute); | ||
412 | } | ||
413 | |||
414 | static void update_cs43xx_volume(struct oxygen *chip) | ||
415 | { | ||
416 | cs4398_write(chip, 5, (127 - chip->dac_volume[0]) * 2); | ||
417 | cs4398_write(chip, 6, (127 - chip->dac_volume[1]) * 2); | ||
418 | update_cs4362a_volumes(chip); | ||
419 | } | ||
420 | |||
421 | static void update_cs43xx_mute(struct oxygen *chip) | ||
422 | { | ||
423 | u8 reg; | ||
424 | |||
425 | reg = CS4398_MUTEP_LOW | CS4398_PAMUTE; | ||
426 | if (chip->dac_mute) | ||
427 | reg |= CS4398_MUTE_B | CS4398_MUTE_A; | ||
428 | cs4398_write(chip, 4, reg); | ||
429 | update_cs4362a_volumes(chip); | ||
430 | } | ||
431 | |||
432 | static void cs43xx_init(struct oxygen *chip) | ||
433 | { | ||
434 | struct xonar_data *data = chip->model_data; | ||
435 | |||
436 | /* set CPEN (control port mode) and power down */ | ||
437 | cs4398_write(chip, 8, CS4398_CPEN | CS4398_PDN); | ||
438 | cs4362a_write(chip, 0x01, CS4362A_PDN | CS4362A_CPEN); | ||
439 | /* configure */ | ||
440 | cs4398_write(chip, 2, data->cs4398_fm); | ||
441 | cs4398_write(chip, 3, CS4398_ATAPI_B_R | CS4398_ATAPI_A_L); | ||
442 | cs4398_write(chip, 7, CS4398_RMP_DN | CS4398_RMP_UP | | ||
443 | CS4398_ZERO_CROSS | CS4398_SOFT_RAMP); | ||
444 | cs4362a_write(chip, 0x02, CS4362A_DIF_LJUST); | ||
445 | cs4362a_write(chip, 0x03, CS4362A_MUTEC_6 | CS4362A_AMUTE | | ||
446 | CS4362A_RMP_UP | CS4362A_ZERO_CROSS | CS4362A_SOFT_RAMP); | ||
447 | cs4362a_write(chip, 0x04, CS4362A_RMP_DN | CS4362A_DEM_NONE); | ||
448 | cs4362a_write(chip, 0x05, 0); | ||
449 | cs4362a_write(chip, 0x06, data->cs4362a_fm); | ||
450 | cs4362a_write(chip, 0x09, data->cs4362a_fm); | ||
451 | cs4362a_write(chip, 0x0c, data->cs4362a_fm); | ||
452 | update_cs43xx_volume(chip); | ||
453 | update_cs43xx_mute(chip); | ||
454 | /* clear power down */ | ||
455 | cs4398_write(chip, 8, CS4398_CPEN); | ||
456 | cs4362a_write(chip, 0x01, CS4362A_CPEN); | ||
457 | } | ||
458 | |||
459 | static void xonar_d1_init(struct oxygen *chip) | ||
460 | { | ||
461 | struct xonar_data *data = chip->model_data; | ||
462 | |||
463 | data->anti_pop_delay = 800; | ||
464 | data->output_enable_bit = GPIO_DX_OUTPUT_ENABLE; | ||
465 | data->cs4398_fm = CS4398_FM_SINGLE | CS4398_DEM_NONE | CS4398_DIF_LJUST; | ||
466 | data->cs4362a_fm = CS4362A_FM_SINGLE | | ||
467 | CS4362A_ATAPI_B_R | CS4362A_ATAPI_A_L; | ||
468 | |||
469 | oxygen_write16(chip, OXYGEN_2WIRE_BUS_STATUS, | ||
470 | OXYGEN_2WIRE_LENGTH_8 | | ||
471 | OXYGEN_2WIRE_INTERRUPT_MASK | | ||
472 | OXYGEN_2WIRE_SPEED_FAST); | ||
473 | |||
474 | cs43xx_init(chip); | ||
475 | |||
476 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, | ||
477 | GPIO_DX_FRONT_PANEL | GPIO_DX_INPUT_ROUTE); | ||
478 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, | ||
479 | GPIO_DX_FRONT_PANEL | GPIO_DX_INPUT_ROUTE); | ||
480 | |||
481 | xonar_common_init(chip); | ||
482 | |||
483 | snd_component_add(chip->card, "CS4398"); | ||
484 | snd_component_add(chip->card, "CS4362A"); | ||
485 | snd_component_add(chip->card, "CS5361"); | ||
486 | } | ||
487 | |||
488 | static void xonar_dx_init(struct oxygen *chip) | ||
489 | { | ||
490 | struct xonar_data *data = chip->model_data; | ||
491 | |||
492 | data->ext_power_reg = OXYGEN_GPI_DATA; | ||
493 | data->ext_power_int_reg = OXYGEN_GPI_INTERRUPT_MASK; | ||
494 | data->ext_power_bit = GPI_DX_EXT_POWER; | ||
495 | |||
496 | xonar_d1_init(chip); | ||
497 | } | ||
498 | |||
499 | static void xonar_hdav_init(struct oxygen *chip) | ||
500 | { | ||
501 | struct xonar_data *data = chip->model_data; | ||
502 | u8 param; | ||
503 | |||
504 | oxygen_write16(chip, OXYGEN_2WIRE_BUS_STATUS, | ||
505 | OXYGEN_2WIRE_LENGTH_8 | | ||
506 | OXYGEN_2WIRE_INTERRUPT_MASK | | ||
507 | OXYGEN_2WIRE_SPEED_FAST); | ||
508 | |||
509 | data->anti_pop_delay = 100; | ||
510 | data->dacs = chip->model.private_data == MODEL_HDAV_H6 ? 4 : 1; | ||
511 | data->output_enable_bit = GPIO_DX_OUTPUT_ENABLE; | ||
512 | data->ext_power_reg = OXYGEN_GPI_DATA; | ||
513 | data->ext_power_int_reg = OXYGEN_GPI_INTERRUPT_MASK; | ||
514 | data->ext_power_bit = GPI_DX_EXT_POWER; | ||
515 | data->pcm1796_oversampling = PCM1796_OS_64; | ||
516 | |||
517 | pcm1796_init(chip); | ||
518 | |||
519 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_DX_INPUT_ROUTE); | ||
520 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, GPIO_DX_INPUT_ROUTE); | ||
521 | |||
522 | oxygen_reset_uart(chip); | ||
523 | param = 0; | ||
524 | hdmi_write_command(chip, 0x61, 1, ¶m); | ||
525 | param = 1; | ||
526 | hdmi_write_command(chip, 0x74, 1, ¶m); | ||
527 | data->hdmi_params[1] = IEC958_AES3_CON_FS_48000; | ||
528 | data->hdmi_params[4] = 1; | ||
529 | hdmi_write_command(chip, 0x54, 5, data->hdmi_params); | ||
530 | |||
531 | xonar_common_init(chip); | ||
532 | |||
533 | snd_component_add(chip->card, "PCM1796"); | ||
534 | snd_component_add(chip->card, "CS5381"); | ||
535 | } | ||
536 | |||
537 | static void xonar_st_init(struct oxygen *chip) | ||
538 | { | ||
539 | struct xonar_data *data = chip->model_data; | ||
540 | |||
541 | oxygen_write16(chip, OXYGEN_2WIRE_BUS_STATUS, | ||
542 | OXYGEN_2WIRE_LENGTH_8 | | ||
543 | OXYGEN_2WIRE_INTERRUPT_MASK | | ||
544 | OXYGEN_2WIRE_SPEED_FAST); | ||
545 | |||
546 | if (chip->model.private_data == MODEL_ST_H6) | ||
547 | chip->model.dac_channels = 8; | ||
548 | data->anti_pop_delay = 100; | ||
549 | data->dacs = chip->model.private_data == MODEL_ST_H6 ? 4 : 1; | ||
550 | data->output_enable_bit = GPIO_DX_OUTPUT_ENABLE; | ||
551 | data->pcm1796_oversampling = PCM1796_OS_64; | ||
552 | |||
553 | pcm1796_init(chip); | ||
554 | |||
555 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, | ||
556 | GPIO_DX_INPUT_ROUTE | GPIO_ST_HP_REAR | GPIO_ST_HP); | ||
557 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, | ||
558 | GPIO_DX_INPUT_ROUTE | GPIO_ST_HP_REAR | GPIO_ST_HP); | ||
559 | |||
560 | xonar_common_init(chip); | ||
561 | |||
562 | snd_component_add(chip->card, "PCM1792A"); | ||
563 | snd_component_add(chip->card, "CS5381"); | ||
564 | } | ||
565 | |||
566 | static void xonar_stx_init(struct oxygen *chip) | ||
567 | { | ||
568 | struct xonar_data *data = chip->model_data; | ||
569 | |||
570 | data->ext_power_reg = OXYGEN_GPI_DATA; | ||
571 | data->ext_power_int_reg = OXYGEN_GPI_INTERRUPT_MASK; | ||
572 | data->ext_power_bit = GPI_DX_EXT_POWER; | ||
573 | |||
574 | xonar_st_init(chip); | ||
575 | } | ||
576 | |||
577 | static void xonar_disable_output(struct oxygen *chip) | ||
578 | { | ||
579 | struct xonar_data *data = chip->model_data; | ||
580 | |||
581 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, data->output_enable_bit); | ||
582 | } | ||
583 | |||
584 | static void xonar_d2_cleanup(struct oxygen *chip) | ||
585 | { | ||
586 | xonar_disable_output(chip); | ||
587 | } | ||
588 | |||
589 | static void xonar_d1_cleanup(struct oxygen *chip) | ||
590 | { | ||
591 | xonar_disable_output(chip); | ||
592 | cs4362a_write(chip, 0x01, CS4362A_PDN | CS4362A_CPEN); | ||
593 | oxygen_clear_bits8(chip, OXYGEN_FUNCTION, OXYGEN_FUNCTION_RESET_CODEC); | ||
594 | } | ||
595 | |||
596 | static void xonar_hdav_cleanup(struct oxygen *chip) | ||
597 | { | ||
598 | u8 param = 0; | ||
599 | |||
600 | hdmi_write_command(chip, 0x74, 1, ¶m); | ||
601 | xonar_disable_output(chip); | ||
602 | } | ||
603 | |||
604 | static void xonar_st_cleanup(struct oxygen *chip) | ||
605 | { | ||
606 | xonar_disable_output(chip); | ||
607 | } | ||
608 | |||
609 | static void xonar_d2_suspend(struct oxygen *chip) | ||
610 | { | ||
611 | xonar_d2_cleanup(chip); | ||
612 | } | ||
613 | |||
614 | static void xonar_d1_suspend(struct oxygen *chip) | ||
615 | { | ||
616 | xonar_d1_cleanup(chip); | ||
617 | } | ||
618 | |||
619 | static void xonar_hdav_suspend(struct oxygen *chip) | ||
620 | { | ||
621 | xonar_hdav_cleanup(chip); | ||
622 | msleep(2); | ||
623 | } | ||
624 | |||
625 | static void xonar_st_suspend(struct oxygen *chip) | ||
626 | { | ||
627 | xonar_st_cleanup(chip); | ||
628 | } | ||
629 | |||
630 | static void xonar_d2_resume(struct oxygen *chip) | ||
631 | { | ||
632 | pcm1796_init(chip); | ||
633 | xonar_enable_output(chip); | ||
634 | } | ||
635 | |||
636 | static void xonar_d1_resume(struct oxygen *chip) | ||
637 | { | ||
638 | oxygen_set_bits8(chip, OXYGEN_FUNCTION, OXYGEN_FUNCTION_RESET_CODEC); | ||
639 | msleep(1); | ||
640 | cs43xx_init(chip); | ||
641 | xonar_enable_output(chip); | ||
642 | } | ||
643 | |||
644 | static void xonar_hdav_resume(struct oxygen *chip) | ||
645 | { | ||
646 | struct xonar_data *data = chip->model_data; | ||
647 | u8 param; | ||
648 | |||
649 | oxygen_reset_uart(chip); | ||
650 | param = 0; | ||
651 | hdmi_write_command(chip, 0x61, 1, ¶m); | ||
652 | param = 1; | ||
653 | hdmi_write_command(chip, 0x74, 1, ¶m); | ||
654 | hdmi_write_command(chip, 0x54, 5, data->hdmi_params); | ||
655 | pcm1796_init(chip); | ||
656 | xonar_enable_output(chip); | ||
657 | } | ||
658 | |||
659 | static void xonar_st_resume(struct oxygen *chip) | ||
660 | { | ||
661 | pcm1796_init(chip); | ||
662 | xonar_enable_output(chip); | ||
663 | } | ||
664 | |||
665 | static void xonar_hdav_pcm_hardware_filter(unsigned int channel, | ||
666 | struct snd_pcm_hardware *hardware) | ||
667 | { | ||
668 | if (channel == PCM_MULTICH) { | ||
669 | hardware->rates = SNDRV_PCM_RATE_44100 | | ||
670 | SNDRV_PCM_RATE_48000 | | ||
671 | SNDRV_PCM_RATE_96000 | | ||
672 | SNDRV_PCM_RATE_192000; | ||
673 | hardware->rate_min = 44100; | ||
674 | } | ||
675 | } | ||
676 | |||
677 | static void set_pcm1796_params(struct oxygen *chip, | ||
678 | struct snd_pcm_hw_params *params) | ||
679 | { | ||
680 | struct xonar_data *data = chip->model_data; | ||
681 | unsigned int i; | ||
682 | |||
683 | data->pcm1796_oversampling = | ||
684 | params_rate(params) >= 96000 ? PCM1796_OS_32 : PCM1796_OS_64; | ||
685 | for (i = 0; i < data->dacs; ++i) | ||
686 | pcm1796_write(chip, i, 20, data->pcm1796_oversampling); | ||
687 | } | ||
688 | |||
689 | static void set_cs53x1_params(struct oxygen *chip, | ||
690 | struct snd_pcm_hw_params *params) | ||
691 | { | ||
692 | unsigned int value; | ||
693 | |||
694 | if (params_rate(params) <= 54000) | ||
695 | value = GPIO_CS53x1_M_SINGLE; | ||
696 | else if (params_rate(params) <= 108000) | ||
697 | value = GPIO_CS53x1_M_DOUBLE; | ||
698 | else | ||
699 | value = GPIO_CS53x1_M_QUAD; | ||
700 | oxygen_write16_masked(chip, OXYGEN_GPIO_DATA, | ||
701 | value, GPIO_CS53x1_M_MASK); | ||
702 | } | ||
703 | |||
704 | static void set_cs43xx_params(struct oxygen *chip, | ||
705 | struct snd_pcm_hw_params *params) | ||
706 | { | ||
707 | struct xonar_data *data = chip->model_data; | ||
708 | |||
709 | data->cs4398_fm = CS4398_DEM_NONE | CS4398_DIF_LJUST; | ||
710 | data->cs4362a_fm = CS4362A_ATAPI_B_R | CS4362A_ATAPI_A_L; | ||
711 | if (params_rate(params) <= 50000) { | ||
712 | data->cs4398_fm |= CS4398_FM_SINGLE; | ||
713 | data->cs4362a_fm |= CS4362A_FM_SINGLE; | ||
714 | } else if (params_rate(params) <= 100000) { | ||
715 | data->cs4398_fm |= CS4398_FM_DOUBLE; | ||
716 | data->cs4362a_fm |= CS4362A_FM_DOUBLE; | ||
717 | } else { | ||
718 | data->cs4398_fm |= CS4398_FM_QUAD; | ||
719 | data->cs4362a_fm |= CS4362A_FM_QUAD; | ||
720 | } | ||
721 | cs4398_write(chip, 2, data->cs4398_fm); | ||
722 | cs4362a_write(chip, 0x06, data->cs4362a_fm); | ||
723 | cs4362a_write(chip, 0x09, data->cs4362a_fm); | ||
724 | cs4362a_write(chip, 0x0c, data->cs4362a_fm); | ||
725 | } | ||
726 | |||
727 | static void set_hdmi_params(struct oxygen *chip, | ||
728 | struct snd_pcm_hw_params *params) | ||
729 | { | ||
730 | struct xonar_data *data = chip->model_data; | ||
731 | |||
732 | data->hdmi_params[0] = 0; /* 1 = non-audio */ | ||
733 | switch (params_rate(params)) { | ||
734 | case 44100: | ||
735 | data->hdmi_params[1] = IEC958_AES3_CON_FS_44100; | ||
736 | break; | ||
737 | case 48000: | ||
738 | data->hdmi_params[1] = IEC958_AES3_CON_FS_48000; | ||
739 | break; | ||
740 | default: /* 96000 */ | ||
741 | data->hdmi_params[1] = IEC958_AES3_CON_FS_96000; | ||
742 | break; | ||
743 | case 192000: | ||
744 | data->hdmi_params[1] = IEC958_AES3_CON_FS_192000; | ||
745 | break; | ||
746 | } | ||
747 | data->hdmi_params[2] = params_channels(params) / 2 - 1; | ||
748 | if (params_format(params) == SNDRV_PCM_FORMAT_S16_LE) | ||
749 | data->hdmi_params[3] = 0; | ||
750 | else | ||
751 | data->hdmi_params[3] = 0xc0; | ||
752 | data->hdmi_params[4] = 1; /* ? */ | ||
753 | hdmi_write_command(chip, 0x54, 5, data->hdmi_params); | ||
754 | } | ||
755 | |||
756 | static void set_hdav_params(struct oxygen *chip, | ||
757 | struct snd_pcm_hw_params *params) | ||
758 | { | ||
759 | set_pcm1796_params(chip, params); | ||
760 | set_hdmi_params(chip, params); | ||
761 | } | ||
762 | |||
763 | static void xonar_gpio_changed(struct oxygen *chip) | ||
764 | { | ||
765 | struct xonar_data *data = chip->model_data; | ||
766 | u8 has_power; | ||
767 | |||
768 | has_power = !!(oxygen_read8(chip, data->ext_power_reg) | ||
769 | & data->ext_power_bit); | ||
770 | if (has_power != data->has_power) { | ||
771 | data->has_power = has_power; | ||
772 | if (has_power) { | ||
773 | snd_printk(KERN_NOTICE "power restored\n"); | ||
774 | } else { | ||
775 | snd_printk(KERN_CRIT | ||
776 | "Hey! Don't unplug the power cable!\n"); | ||
777 | /* TODO: stop PCMs */ | ||
778 | } | ||
779 | } | ||
780 | } | ||
781 | |||
782 | static void xonar_hdav_uart_input(struct oxygen *chip) | ||
783 | { | ||
784 | if (chip->uart_input_count >= 2 && | ||
785 | chip->uart_input[chip->uart_input_count - 2] == 'O' && | ||
786 | chip->uart_input[chip->uart_input_count - 1] == 'K') { | ||
787 | printk(KERN_DEBUG "message from Xonar HDAV HDMI chip received:\n"); | ||
788 | print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, | ||
789 | chip->uart_input, chip->uart_input_count); | ||
790 | chip->uart_input_count = 0; | ||
791 | } | ||
792 | } | ||
793 | |||
794 | static int gpio_bit_switch_get(struct snd_kcontrol *ctl, | ||
795 | struct snd_ctl_elem_value *value) | ||
796 | { | ||
797 | struct oxygen *chip = ctl->private_data; | ||
798 | u16 bit = ctl->private_value; | ||
799 | |||
800 | value->value.integer.value[0] = | ||
801 | !!(oxygen_read16(chip, OXYGEN_GPIO_DATA) & bit); | ||
802 | return 0; | ||
803 | } | ||
804 | |||
805 | static int gpio_bit_switch_put(struct snd_kcontrol *ctl, | ||
806 | struct snd_ctl_elem_value *value) | ||
807 | { | ||
808 | struct oxygen *chip = ctl->private_data; | ||
809 | u16 bit = ctl->private_value; | ||
810 | u16 old_bits, new_bits; | ||
811 | int changed; | ||
812 | |||
813 | spin_lock_irq(&chip->reg_lock); | ||
814 | old_bits = oxygen_read16(chip, OXYGEN_GPIO_DATA); | ||
815 | if (value->value.integer.value[0]) | ||
816 | new_bits = old_bits | bit; | ||
817 | else | ||
818 | new_bits = old_bits & ~bit; | ||
819 | changed = new_bits != old_bits; | ||
820 | if (changed) | ||
821 | oxygen_write16(chip, OXYGEN_GPIO_DATA, new_bits); | ||
822 | spin_unlock_irq(&chip->reg_lock); | ||
823 | return changed; | ||
824 | } | ||
825 | |||
826 | static const struct snd_kcontrol_new alt_switch = { | ||
827 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
828 | .name = "Analog Loopback Switch", | ||
829 | .info = snd_ctl_boolean_mono_info, | ||
830 | .get = gpio_bit_switch_get, | ||
831 | .put = gpio_bit_switch_put, | ||
832 | .private_value = GPIO_D2_ALT, | ||
833 | }; | ||
834 | |||
835 | static const struct snd_kcontrol_new front_panel_switch = { | ||
836 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
837 | .name = "Front Panel Switch", | ||
838 | .info = snd_ctl_boolean_mono_info, | ||
839 | .get = gpio_bit_switch_get, | ||
840 | .put = gpio_bit_switch_put, | ||
841 | .private_value = GPIO_DX_FRONT_PANEL, | ||
842 | }; | ||
843 | |||
844 | static int st_output_switch_info(struct snd_kcontrol *ctl, | ||
845 | struct snd_ctl_elem_info *info) | ||
846 | { | ||
847 | static const char *const names[3] = { | ||
848 | "Speakers", "Headphones", "FP Headphones" | ||
849 | }; | ||
850 | |||
851 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
852 | info->count = 1; | ||
853 | info->value.enumerated.items = 3; | ||
854 | if (info->value.enumerated.item >= 3) | ||
855 | info->value.enumerated.item = 2; | ||
856 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
857 | return 0; | ||
858 | } | ||
859 | |||
860 | static int st_output_switch_get(struct snd_kcontrol *ctl, | ||
861 | struct snd_ctl_elem_value *value) | ||
862 | { | ||
863 | struct oxygen *chip = ctl->private_data; | ||
864 | u16 gpio; | ||
865 | |||
866 | gpio = oxygen_read16(chip, OXYGEN_GPIO_DATA); | ||
867 | if (!(gpio & GPIO_ST_HP)) | ||
868 | value->value.enumerated.item[0] = 0; | ||
869 | else if (gpio & GPIO_ST_HP_REAR) | ||
870 | value->value.enumerated.item[0] = 1; | ||
871 | else | ||
872 | value->value.enumerated.item[0] = 2; | ||
873 | return 0; | ||
874 | } | ||
875 | |||
876 | |||
877 | static int st_output_switch_put(struct snd_kcontrol *ctl, | ||
878 | struct snd_ctl_elem_value *value) | ||
879 | { | ||
880 | struct oxygen *chip = ctl->private_data; | ||
881 | u16 gpio_old, gpio; | ||
882 | |||
883 | mutex_lock(&chip->mutex); | ||
884 | gpio_old = oxygen_read16(chip, OXYGEN_GPIO_DATA); | ||
885 | gpio = gpio_old; | ||
886 | switch (value->value.enumerated.item[0]) { | ||
887 | case 0: | ||
888 | gpio &= ~(GPIO_ST_HP | GPIO_ST_HP_REAR); | ||
889 | break; | ||
890 | case 1: | ||
891 | gpio |= GPIO_ST_HP | GPIO_ST_HP_REAR; | ||
892 | break; | ||
893 | case 2: | ||
894 | gpio = (gpio | GPIO_ST_HP) & ~GPIO_ST_HP_REAR; | ||
895 | break; | ||
896 | } | ||
897 | oxygen_write16(chip, OXYGEN_GPIO_DATA, gpio); | ||
898 | mutex_unlock(&chip->mutex); | ||
899 | return gpio != gpio_old; | ||
900 | } | ||
901 | |||
902 | static const struct snd_kcontrol_new st_output_switch = { | ||
903 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
904 | .name = "Analog Output", | ||
905 | .info = st_output_switch_info, | ||
906 | .get = st_output_switch_get, | ||
907 | .put = st_output_switch_put, | ||
908 | }; | ||
909 | |||
910 | static void xonar_line_mic_ac97_switch(struct oxygen *chip, | ||
911 | unsigned int reg, unsigned int mute) | ||
912 | { | ||
913 | if (reg == AC97_LINE) { | ||
914 | spin_lock_irq(&chip->reg_lock); | ||
915 | oxygen_write16_masked(chip, OXYGEN_GPIO_DATA, | ||
916 | mute ? GPIO_DX_INPUT_ROUTE : 0, | ||
917 | GPIO_DX_INPUT_ROUTE); | ||
918 | spin_unlock_irq(&chip->reg_lock); | ||
919 | } | ||
920 | } | ||
921 | |||
922 | static const DECLARE_TLV_DB_SCALE(pcm1796_db_scale, -6000, 50, 0); | ||
923 | static const DECLARE_TLV_DB_SCALE(cs4362a_db_scale, -6000, 100, 0); | ||
924 | |||
925 | static int xonar_d2_control_filter(struct snd_kcontrol_new *template) | ||
926 | { | ||
927 | if (!strncmp(template->name, "CD Capture ", 11)) | ||
928 | /* CD in is actually connected to the video in pin */ | ||
929 | template->private_value ^= AC97_CD ^ AC97_VIDEO; | ||
930 | return 0; | ||
931 | } | ||
932 | |||
933 | static int xonar_d1_control_filter(struct snd_kcontrol_new *template) | ||
934 | { | ||
935 | if (!strncmp(template->name, "CD Capture ", 11)) | ||
936 | return 1; /* no CD input */ | ||
937 | return 0; | ||
938 | } | ||
939 | |||
940 | static int xonar_st_control_filter(struct snd_kcontrol_new *template) | ||
941 | { | ||
942 | if (!strncmp(template->name, "CD Capture ", 11)) | ||
943 | return 1; /* no CD input */ | ||
944 | if (!strcmp(template->name, "Stereo Upmixing")) | ||
945 | return 1; /* stereo only - we don't need upmixing */ | ||
946 | return 0; | ||
947 | } | ||
948 | |||
949 | static int xonar_d2_mixer_init(struct oxygen *chip) | ||
950 | { | ||
951 | return snd_ctl_add(chip->card, snd_ctl_new1(&alt_switch, chip)); | ||
952 | } | ||
953 | |||
954 | static int xonar_d1_mixer_init(struct oxygen *chip) | ||
955 | { | ||
956 | return snd_ctl_add(chip->card, snd_ctl_new1(&front_panel_switch, chip)); | ||
957 | } | ||
958 | |||
959 | static int xonar_st_mixer_init(struct oxygen *chip) | ||
960 | { | ||
961 | return snd_ctl_add(chip->card, snd_ctl_new1(&st_output_switch, chip)); | ||
962 | } | ||
963 | |||
964 | static const struct oxygen_model model_xonar_d2 = { | ||
965 | .longname = "Asus Virtuoso 200", | ||
966 | .chip = "AV200", | ||
967 | .init = xonar_d2_init, | ||
968 | .control_filter = xonar_d2_control_filter, | ||
969 | .mixer_init = xonar_d2_mixer_init, | ||
970 | .cleanup = xonar_d2_cleanup, | ||
971 | .suspend = xonar_d2_suspend, | ||
972 | .resume = xonar_d2_resume, | ||
973 | .set_dac_params = set_pcm1796_params, | ||
974 | .set_adc_params = set_cs53x1_params, | ||
975 | .update_dac_volume = update_pcm1796_volume, | ||
976 | .update_dac_mute = update_pcm1796_mute, | ||
977 | .dac_tlv = pcm1796_db_scale, | ||
978 | .model_data_size = sizeof(struct xonar_data), | ||
979 | .device_config = PLAYBACK_0_TO_I2S | | ||
980 | PLAYBACK_1_TO_SPDIF | | ||
981 | CAPTURE_0_FROM_I2S_2 | | ||
982 | CAPTURE_1_FROM_SPDIF | | ||
983 | MIDI_OUTPUT | | ||
984 | MIDI_INPUT, | ||
985 | .dac_channels = 8, | ||
986 | .dac_volume_min = 255 - 2*60, | ||
987 | .dac_volume_max = 255, | ||
988 | .misc_flags = OXYGEN_MISC_MIDI, | ||
989 | .function_flags = OXYGEN_FUNCTION_SPI | | ||
990 | OXYGEN_FUNCTION_ENABLE_SPI_4_5, | ||
991 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
992 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
993 | }; | ||
994 | |||
995 | static const struct oxygen_model model_xonar_d1 = { | ||
996 | .longname = "Asus Virtuoso 100", | ||
997 | .chip = "AV200", | ||
998 | .init = xonar_d1_init, | ||
999 | .control_filter = xonar_d1_control_filter, | ||
1000 | .mixer_init = xonar_d1_mixer_init, | ||
1001 | .cleanup = xonar_d1_cleanup, | ||
1002 | .suspend = xonar_d1_suspend, | ||
1003 | .resume = xonar_d1_resume, | ||
1004 | .set_dac_params = set_cs43xx_params, | ||
1005 | .set_adc_params = set_cs53x1_params, | ||
1006 | .update_dac_volume = update_cs43xx_volume, | ||
1007 | .update_dac_mute = update_cs43xx_mute, | ||
1008 | .ac97_switch = xonar_line_mic_ac97_switch, | ||
1009 | .dac_tlv = cs4362a_db_scale, | ||
1010 | .model_data_size = sizeof(struct xonar_data), | ||
1011 | .device_config = PLAYBACK_0_TO_I2S | | ||
1012 | PLAYBACK_1_TO_SPDIF | | ||
1013 | CAPTURE_0_FROM_I2S_2, | ||
1014 | .dac_channels = 8, | ||
1015 | .dac_volume_min = 127 - 60, | ||
1016 | .dac_volume_max = 127, | ||
1017 | .function_flags = OXYGEN_FUNCTION_2WIRE, | ||
1018 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1019 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1020 | }; | ||
1021 | |||
1022 | static const struct oxygen_model model_xonar_hdav = { | ||
1023 | .longname = "Asus Virtuoso 200", | ||
1024 | .chip = "AV200", | ||
1025 | .init = xonar_hdav_init, | ||
1026 | .cleanup = xonar_hdav_cleanup, | ||
1027 | .suspend = xonar_hdav_suspend, | ||
1028 | .resume = xonar_hdav_resume, | ||
1029 | .pcm_hardware_filter = xonar_hdav_pcm_hardware_filter, | ||
1030 | .set_dac_params = set_hdav_params, | ||
1031 | .set_adc_params = set_cs53x1_params, | ||
1032 | .update_dac_volume = update_pcm1796_volume, | ||
1033 | .update_dac_mute = update_pcm1796_mute, | ||
1034 | .uart_input = xonar_hdav_uart_input, | ||
1035 | .ac97_switch = xonar_line_mic_ac97_switch, | ||
1036 | .dac_tlv = pcm1796_db_scale, | ||
1037 | .model_data_size = sizeof(struct xonar_data), | ||
1038 | .device_config = PLAYBACK_0_TO_I2S | | ||
1039 | PLAYBACK_1_TO_SPDIF | | ||
1040 | CAPTURE_0_FROM_I2S_2 | | ||
1041 | CAPTURE_1_FROM_SPDIF, | ||
1042 | .dac_channels = 8, | ||
1043 | .dac_volume_min = 255 - 2*60, | ||
1044 | .dac_volume_max = 255, | ||
1045 | .misc_flags = OXYGEN_MISC_MIDI, | ||
1046 | .function_flags = OXYGEN_FUNCTION_2WIRE, | ||
1047 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1048 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1049 | }; | ||
1050 | |||
1051 | static const struct oxygen_model model_xonar_st = { | ||
1052 | .longname = "Asus Virtuoso 100", | ||
1053 | .chip = "AV200", | ||
1054 | .init = xonar_st_init, | ||
1055 | .control_filter = xonar_st_control_filter, | ||
1056 | .mixer_init = xonar_st_mixer_init, | ||
1057 | .cleanup = xonar_st_cleanup, | ||
1058 | .suspend = xonar_st_suspend, | ||
1059 | .resume = xonar_st_resume, | ||
1060 | .set_dac_params = set_pcm1796_params, | ||
1061 | .set_adc_params = set_cs53x1_params, | ||
1062 | .update_dac_volume = update_pcm1796_volume, | ||
1063 | .update_dac_mute = update_pcm1796_mute, | ||
1064 | .ac97_switch = xonar_line_mic_ac97_switch, | ||
1065 | .dac_tlv = pcm1796_db_scale, | ||
1066 | .model_data_size = sizeof(struct xonar_data), | ||
1067 | .device_config = PLAYBACK_0_TO_I2S | | ||
1068 | PLAYBACK_1_TO_SPDIF | | ||
1069 | CAPTURE_0_FROM_I2S_2, | ||
1070 | .dac_channels = 2, | ||
1071 | .dac_volume_min = 255 - 2*60, | ||
1072 | .dac_volume_max = 255, | ||
1073 | .function_flags = OXYGEN_FUNCTION_2WIRE, | ||
1074 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1075 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1076 | }; | ||
1077 | |||
1078 | static int __devinit get_xonar_model(struct oxygen *chip, | 57 | static int __devinit get_xonar_model(struct oxygen *chip, |
1079 | const struct pci_device_id *id) | 58 | const struct pci_device_id *id) |
1080 | { | 59 | { |
1081 | static const struct oxygen_model *const models[] = { | 60 | if (get_xonar_pcm179x_model(chip, id) >= 0) |
1082 | [MODEL_D1] = &model_xonar_d1, | 61 | return 0; |
1083 | [MODEL_DX] = &model_xonar_d1, | 62 | if (get_xonar_cs43xx_model(chip, id) >= 0) |
1084 | [MODEL_D2] = &model_xonar_d2, | 63 | return 0; |
1085 | [MODEL_D2X] = &model_xonar_d2, | 64 | return -EINVAL; |
1086 | [MODEL_HDAV] = &model_xonar_hdav, | ||
1087 | [MODEL_ST] = &model_xonar_st, | ||
1088 | [MODEL_STX] = &model_xonar_st, | ||
1089 | }; | ||
1090 | static const char *const names[] = { | ||
1091 | [MODEL_D1] = "Xonar D1", | ||
1092 | [MODEL_DX] = "Xonar DX", | ||
1093 | [MODEL_D2] = "Xonar D2", | ||
1094 | [MODEL_D2X] = "Xonar D2X", | ||
1095 | [MODEL_HDAV] = "Xonar HDAV1.3", | ||
1096 | [MODEL_HDAV_H6] = "Xonar HDAV1.3+H6", | ||
1097 | [MODEL_ST] = "Xonar Essence ST", | ||
1098 | [MODEL_ST_H6] = "Xonar Essence ST+H6", | ||
1099 | [MODEL_STX] = "Xonar Essence STX", | ||
1100 | }; | ||
1101 | unsigned int model = id->driver_data; | ||
1102 | |||
1103 | if (model >= ARRAY_SIZE(models) || !models[model]) | ||
1104 | return -EINVAL; | ||
1105 | chip->model = *models[model]; | ||
1106 | |||
1107 | switch (model) { | ||
1108 | case MODEL_D2X: | ||
1109 | chip->model.init = xonar_d2x_init; | ||
1110 | break; | ||
1111 | case MODEL_DX: | ||
1112 | chip->model.init = xonar_dx_init; | ||
1113 | break; | ||
1114 | case MODEL_HDAV: | ||
1115 | oxygen_clear_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_DB_MASK); | ||
1116 | switch (oxygen_read16(chip, OXYGEN_GPIO_DATA) & GPIO_DB_MASK) { | ||
1117 | case GPIO_DB_H6: | ||
1118 | model = MODEL_HDAV_H6; | ||
1119 | break; | ||
1120 | case GPIO_DB_XX: | ||
1121 | snd_printk(KERN_ERR "unknown daughterboard\n"); | ||
1122 | return -ENODEV; | ||
1123 | } | ||
1124 | break; | ||
1125 | case MODEL_ST: | ||
1126 | oxygen_clear_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_DB_MASK); | ||
1127 | switch (oxygen_read16(chip, OXYGEN_GPIO_DATA) & GPIO_DB_MASK) { | ||
1128 | case GPIO_DB_H6: | ||
1129 | model = MODEL_ST_H6; | ||
1130 | break; | ||
1131 | } | ||
1132 | break; | ||
1133 | case MODEL_STX: | ||
1134 | chip->model.init = xonar_stx_init; | ||
1135 | oxygen_clear_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_DB_MASK); | ||
1136 | break; | ||
1137 | } | ||
1138 | |||
1139 | chip->model.shortname = names[model]; | ||
1140 | chip->model.private_data = model; | ||
1141 | return 0; | ||
1142 | } | 65 | } |
1143 | 66 | ||
1144 | static int __devinit xonar_probe(struct pci_dev *pci, | 67 | static int __devinit xonar_probe(struct pci_dev *pci, |
diff --git a/sound/pci/oxygen/xonar.h b/sound/pci/oxygen/xonar.h new file mode 100644 index 000000000000..89b3ed814d64 --- /dev/null +++ b/sound/pci/oxygen/xonar.h | |||
@@ -0,0 +1,50 @@ | |||
1 | #ifndef XONAR_H_INCLUDED | ||
2 | #define XONAR_H_INCLUDED | ||
3 | |||
4 | #include "oxygen.h" | ||
5 | |||
6 | struct xonar_generic { | ||
7 | unsigned int anti_pop_delay; | ||
8 | u16 output_enable_bit; | ||
9 | u8 ext_power_reg; | ||
10 | u8 ext_power_int_reg; | ||
11 | u8 ext_power_bit; | ||
12 | u8 has_power; | ||
13 | }; | ||
14 | |||
15 | struct xonar_hdmi { | ||
16 | u8 params[5]; | ||
17 | }; | ||
18 | |||
19 | /* generic helper functions */ | ||
20 | |||
21 | void xonar_enable_output(struct oxygen *chip); | ||
22 | void xonar_disable_output(struct oxygen *chip); | ||
23 | void xonar_init_ext_power(struct oxygen *chip); | ||
24 | void xonar_init_cs53x1(struct oxygen *chip); | ||
25 | void xonar_set_cs53x1_params(struct oxygen *chip, | ||
26 | struct snd_pcm_hw_params *params); | ||
27 | int xonar_gpio_bit_switch_get(struct snd_kcontrol *ctl, | ||
28 | struct snd_ctl_elem_value *value); | ||
29 | int xonar_gpio_bit_switch_put(struct snd_kcontrol *ctl, | ||
30 | struct snd_ctl_elem_value *value); | ||
31 | |||
32 | /* model-specific card drivers */ | ||
33 | |||
34 | int get_xonar_pcm179x_model(struct oxygen *chip, | ||
35 | const struct pci_device_id *id); | ||
36 | int get_xonar_cs43xx_model(struct oxygen *chip, | ||
37 | const struct pci_device_id *id); | ||
38 | |||
39 | /* HDMI helper functions */ | ||
40 | |||
41 | void xonar_hdmi_init(struct oxygen *chip, struct xonar_hdmi *data); | ||
42 | void xonar_hdmi_cleanup(struct oxygen *chip); | ||
43 | void xonar_hdmi_resume(struct oxygen *chip, struct xonar_hdmi *hdmi); | ||
44 | void xonar_hdmi_pcm_hardware_filter(unsigned int channel, | ||
45 | struct snd_pcm_hardware *hardware); | ||
46 | void xonar_set_hdmi_params(struct oxygen *chip, struct xonar_hdmi *hdmi, | ||
47 | struct snd_pcm_hw_params *params); | ||
48 | void xonar_hdmi_uart_input(struct oxygen *chip); | ||
49 | |||
50 | #endif | ||
diff --git a/sound/pci/oxygen/xonar_cs43xx.c b/sound/pci/oxygen/xonar_cs43xx.c new file mode 100644 index 000000000000..16c226bfcd2b --- /dev/null +++ b/sound/pci/oxygen/xonar_cs43xx.c | |||
@@ -0,0 +1,434 @@ | |||
1 | /* | ||
2 | * card driver for models with CS4398/CS4362A DACs (Xonar D1/DX) | ||
3 | * | ||
4 | * Copyright (c) Clemens Ladisch <clemens@ladisch.de> | ||
5 | * | ||
6 | * | ||
7 | * This driver is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License, version 2. | ||
9 | * | ||
10 | * This driver is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this driver; if not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | /* | ||
20 | * Xonar D1/DX | ||
21 | * ----------- | ||
22 | * | ||
23 | * CMI8788: | ||
24 | * | ||
25 | * I²C <-> CS4398 (front) | ||
26 | * <-> CS4362A (surround, center/LFE, back) | ||
27 | * | ||
28 | * GPI 0 <- external power present (DX only) | ||
29 | * | ||
30 | * GPIO 0 -> enable output to speakers | ||
31 | * GPIO 1 -> enable front panel I/O | ||
32 | * GPIO 2 -> M0 of CS5361 | ||
33 | * GPIO 3 -> M1 of CS5361 | ||
34 | * GPIO 8 -> route input jack to line-in (0) or mic-in (1) | ||
35 | * | ||
36 | * CS4398: | ||
37 | * | ||
38 | * AD0 <- 1 | ||
39 | * AD1 <- 1 | ||
40 | * | ||
41 | * CS4362A: | ||
42 | * | ||
43 | * AD0 <- 0 | ||
44 | * | ||
45 | * CM9780: | ||
46 | * | ||
47 | * GPO 0 -> route line-in (0) or AC97 output (1) to CS5361 input | ||
48 | */ | ||
49 | |||
50 | #include <linux/pci.h> | ||
51 | #include <linux/delay.h> | ||
52 | #include <sound/ac97_codec.h> | ||
53 | #include <sound/control.h> | ||
54 | #include <sound/core.h> | ||
55 | #include <sound/pcm.h> | ||
56 | #include <sound/pcm_params.h> | ||
57 | #include <sound/tlv.h> | ||
58 | #include "xonar.h" | ||
59 | #include "cs4398.h" | ||
60 | #include "cs4362a.h" | ||
61 | |||
62 | #define GPI_EXT_POWER 0x01 | ||
63 | #define GPIO_D1_OUTPUT_ENABLE 0x0001 | ||
64 | #define GPIO_D1_FRONT_PANEL 0x0002 | ||
65 | #define GPIO_D1_INPUT_ROUTE 0x0100 | ||
66 | |||
67 | #define I2C_DEVICE_CS4398 0x9e /* 10011, AD1=1, AD0=1, /W=0 */ | ||
68 | #define I2C_DEVICE_CS4362A 0x30 /* 001100, AD0=0, /W=0 */ | ||
69 | |||
70 | struct xonar_cs43xx { | ||
71 | struct xonar_generic generic; | ||
72 | u8 cs4398_regs[8]; | ||
73 | u8 cs4362a_regs[15]; | ||
74 | }; | ||
75 | |||
76 | static void cs4398_write(struct oxygen *chip, u8 reg, u8 value) | ||
77 | { | ||
78 | struct xonar_cs43xx *data = chip->model_data; | ||
79 | |||
80 | oxygen_write_i2c(chip, I2C_DEVICE_CS4398, reg, value); | ||
81 | if (reg < ARRAY_SIZE(data->cs4398_regs)) | ||
82 | data->cs4398_regs[reg] = value; | ||
83 | } | ||
84 | |||
85 | static void cs4398_write_cached(struct oxygen *chip, u8 reg, u8 value) | ||
86 | { | ||
87 | struct xonar_cs43xx *data = chip->model_data; | ||
88 | |||
89 | if (value != data->cs4398_regs[reg]) | ||
90 | cs4398_write(chip, reg, value); | ||
91 | } | ||
92 | |||
93 | static void cs4362a_write(struct oxygen *chip, u8 reg, u8 value) | ||
94 | { | ||
95 | struct xonar_cs43xx *data = chip->model_data; | ||
96 | |||
97 | oxygen_write_i2c(chip, I2C_DEVICE_CS4362A, reg, value); | ||
98 | if (reg < ARRAY_SIZE(data->cs4362a_regs)) | ||
99 | data->cs4362a_regs[reg] = value; | ||
100 | } | ||
101 | |||
102 | static void cs4362a_write_cached(struct oxygen *chip, u8 reg, u8 value) | ||
103 | { | ||
104 | struct xonar_cs43xx *data = chip->model_data; | ||
105 | |||
106 | if (value != data->cs4362a_regs[reg]) | ||
107 | cs4362a_write(chip, reg, value); | ||
108 | } | ||
109 | |||
110 | static void cs43xx_registers_init(struct oxygen *chip) | ||
111 | { | ||
112 | struct xonar_cs43xx *data = chip->model_data; | ||
113 | unsigned int i; | ||
114 | |||
115 | /* set CPEN (control port mode) and power down */ | ||
116 | cs4398_write(chip, 8, CS4398_CPEN | CS4398_PDN); | ||
117 | cs4362a_write(chip, 0x01, CS4362A_PDN | CS4362A_CPEN); | ||
118 | /* configure */ | ||
119 | cs4398_write(chip, 2, data->cs4398_regs[2]); | ||
120 | cs4398_write(chip, 3, CS4398_ATAPI_B_R | CS4398_ATAPI_A_L); | ||
121 | cs4398_write(chip, 4, data->cs4398_regs[4]); | ||
122 | cs4398_write(chip, 5, data->cs4398_regs[5]); | ||
123 | cs4398_write(chip, 6, data->cs4398_regs[6]); | ||
124 | cs4398_write(chip, 7, data->cs4398_regs[7]); | ||
125 | cs4362a_write(chip, 0x02, CS4362A_DIF_LJUST); | ||
126 | cs4362a_write(chip, 0x03, CS4362A_MUTEC_6 | CS4362A_AMUTE | | ||
127 | CS4362A_RMP_UP | CS4362A_ZERO_CROSS | CS4362A_SOFT_RAMP); | ||
128 | cs4362a_write(chip, 0x04, data->cs4362a_regs[0x04]); | ||
129 | cs4362a_write(chip, 0x05, 0); | ||
130 | for (i = 6; i <= 14; ++i) | ||
131 | cs4362a_write(chip, i, data->cs4362a_regs[i]); | ||
132 | /* clear power down */ | ||
133 | cs4398_write(chip, 8, CS4398_CPEN); | ||
134 | cs4362a_write(chip, 0x01, CS4362A_CPEN); | ||
135 | } | ||
136 | |||
137 | static void xonar_d1_init(struct oxygen *chip) | ||
138 | { | ||
139 | struct xonar_cs43xx *data = chip->model_data; | ||
140 | |||
141 | data->generic.anti_pop_delay = 800; | ||
142 | data->generic.output_enable_bit = GPIO_D1_OUTPUT_ENABLE; | ||
143 | data->cs4398_regs[2] = | ||
144 | CS4398_FM_SINGLE | CS4398_DEM_NONE | CS4398_DIF_LJUST; | ||
145 | data->cs4398_regs[4] = CS4398_MUTEP_LOW | | ||
146 | CS4398_MUTE_B | CS4398_MUTE_A | CS4398_PAMUTE; | ||
147 | data->cs4398_regs[5] = 60 * 2; | ||
148 | data->cs4398_regs[6] = 60 * 2; | ||
149 | data->cs4398_regs[7] = CS4398_RMP_DN | CS4398_RMP_UP | | ||
150 | CS4398_ZERO_CROSS | CS4398_SOFT_RAMP; | ||
151 | data->cs4362a_regs[4] = CS4362A_RMP_DN | CS4362A_DEM_NONE; | ||
152 | data->cs4362a_regs[6] = CS4362A_FM_SINGLE | | ||
153 | CS4362A_ATAPI_B_R | CS4362A_ATAPI_A_L; | ||
154 | data->cs4362a_regs[7] = 60 | CS4362A_MUTE; | ||
155 | data->cs4362a_regs[8] = 60 | CS4362A_MUTE; | ||
156 | data->cs4362a_regs[9] = data->cs4362a_regs[6]; | ||
157 | data->cs4362a_regs[10] = 60 | CS4362A_MUTE; | ||
158 | data->cs4362a_regs[11] = 60 | CS4362A_MUTE; | ||
159 | data->cs4362a_regs[12] = data->cs4362a_regs[6]; | ||
160 | data->cs4362a_regs[13] = 60 | CS4362A_MUTE; | ||
161 | data->cs4362a_regs[14] = 60 | CS4362A_MUTE; | ||
162 | |||
163 | oxygen_write16(chip, OXYGEN_2WIRE_BUS_STATUS, | ||
164 | OXYGEN_2WIRE_LENGTH_8 | | ||
165 | OXYGEN_2WIRE_INTERRUPT_MASK | | ||
166 | OXYGEN_2WIRE_SPEED_FAST); | ||
167 | |||
168 | cs43xx_registers_init(chip); | ||
169 | |||
170 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, | ||
171 | GPIO_D1_FRONT_PANEL | GPIO_D1_INPUT_ROUTE); | ||
172 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, | ||
173 | GPIO_D1_FRONT_PANEL | GPIO_D1_INPUT_ROUTE); | ||
174 | |||
175 | xonar_init_cs53x1(chip); | ||
176 | xonar_enable_output(chip); | ||
177 | |||
178 | snd_component_add(chip->card, "CS4398"); | ||
179 | snd_component_add(chip->card, "CS4362A"); | ||
180 | snd_component_add(chip->card, "CS5361"); | ||
181 | } | ||
182 | |||
183 | static void xonar_dx_init(struct oxygen *chip) | ||
184 | { | ||
185 | struct xonar_cs43xx *data = chip->model_data; | ||
186 | |||
187 | data->generic.ext_power_reg = OXYGEN_GPI_DATA; | ||
188 | data->generic.ext_power_int_reg = OXYGEN_GPI_INTERRUPT_MASK; | ||
189 | data->generic.ext_power_bit = GPI_EXT_POWER; | ||
190 | xonar_init_ext_power(chip); | ||
191 | xonar_d1_init(chip); | ||
192 | } | ||
193 | |||
194 | static void xonar_d1_cleanup(struct oxygen *chip) | ||
195 | { | ||
196 | xonar_disable_output(chip); | ||
197 | cs4362a_write(chip, 0x01, CS4362A_PDN | CS4362A_CPEN); | ||
198 | oxygen_clear_bits8(chip, OXYGEN_FUNCTION, OXYGEN_FUNCTION_RESET_CODEC); | ||
199 | } | ||
200 | |||
201 | static void xonar_d1_suspend(struct oxygen *chip) | ||
202 | { | ||
203 | xonar_d1_cleanup(chip); | ||
204 | } | ||
205 | |||
206 | static void xonar_d1_resume(struct oxygen *chip) | ||
207 | { | ||
208 | oxygen_set_bits8(chip, OXYGEN_FUNCTION, OXYGEN_FUNCTION_RESET_CODEC); | ||
209 | msleep(1); | ||
210 | cs43xx_registers_init(chip); | ||
211 | xonar_enable_output(chip); | ||
212 | } | ||
213 | |||
214 | static void set_cs43xx_params(struct oxygen *chip, | ||
215 | struct snd_pcm_hw_params *params) | ||
216 | { | ||
217 | struct xonar_cs43xx *data = chip->model_data; | ||
218 | u8 cs4398_fm, cs4362a_fm; | ||
219 | |||
220 | if (params_rate(params) <= 50000) { | ||
221 | cs4398_fm = CS4398_FM_SINGLE; | ||
222 | cs4362a_fm = CS4362A_FM_SINGLE; | ||
223 | } else if (params_rate(params) <= 100000) { | ||
224 | cs4398_fm = CS4398_FM_DOUBLE; | ||
225 | cs4362a_fm = CS4362A_FM_DOUBLE; | ||
226 | } else { | ||
227 | cs4398_fm = CS4398_FM_QUAD; | ||
228 | cs4362a_fm = CS4362A_FM_QUAD; | ||
229 | } | ||
230 | cs4398_fm |= CS4398_DEM_NONE | CS4398_DIF_LJUST; | ||
231 | cs4398_write_cached(chip, 2, cs4398_fm); | ||
232 | cs4362a_fm |= data->cs4362a_regs[6] & ~CS4362A_FM_MASK; | ||
233 | cs4362a_write_cached(chip, 6, cs4362a_fm); | ||
234 | cs4362a_write_cached(chip, 12, cs4362a_fm); | ||
235 | cs4362a_fm &= CS4362A_FM_MASK; | ||
236 | cs4362a_fm |= data->cs4362a_regs[9] & ~CS4362A_FM_MASK; | ||
237 | cs4362a_write_cached(chip, 9, cs4362a_fm); | ||
238 | } | ||
239 | |||
240 | static void update_cs4362a_volumes(struct oxygen *chip) | ||
241 | { | ||
242 | unsigned int i; | ||
243 | u8 mute; | ||
244 | |||
245 | mute = chip->dac_mute ? CS4362A_MUTE : 0; | ||
246 | for (i = 0; i < 6; ++i) | ||
247 | cs4362a_write_cached(chip, 7 + i + i / 2, | ||
248 | (127 - chip->dac_volume[2 + i]) | mute); | ||
249 | } | ||
250 | |||
251 | static void update_cs43xx_volume(struct oxygen *chip) | ||
252 | { | ||
253 | cs4398_write_cached(chip, 5, (127 - chip->dac_volume[0]) * 2); | ||
254 | cs4398_write_cached(chip, 6, (127 - chip->dac_volume[1]) * 2); | ||
255 | update_cs4362a_volumes(chip); | ||
256 | } | ||
257 | |||
258 | static void update_cs43xx_mute(struct oxygen *chip) | ||
259 | { | ||
260 | u8 reg; | ||
261 | |||
262 | reg = CS4398_MUTEP_LOW | CS4398_PAMUTE; | ||
263 | if (chip->dac_mute) | ||
264 | reg |= CS4398_MUTE_B | CS4398_MUTE_A; | ||
265 | cs4398_write_cached(chip, 4, reg); | ||
266 | update_cs4362a_volumes(chip); | ||
267 | } | ||
268 | |||
269 | static void update_cs43xx_center_lfe_mix(struct oxygen *chip, bool mixed) | ||
270 | { | ||
271 | struct xonar_cs43xx *data = chip->model_data; | ||
272 | u8 reg; | ||
273 | |||
274 | reg = data->cs4362a_regs[9] & ~CS4362A_ATAPI_MASK; | ||
275 | if (mixed) | ||
276 | reg |= CS4362A_ATAPI_B_LR | CS4362A_ATAPI_A_LR; | ||
277 | else | ||
278 | reg |= CS4362A_ATAPI_B_R | CS4362A_ATAPI_A_L; | ||
279 | cs4362a_write_cached(chip, 9, reg); | ||
280 | } | ||
281 | |||
282 | static const struct snd_kcontrol_new front_panel_switch = { | ||
283 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
284 | .name = "Front Panel Switch", | ||
285 | .info = snd_ctl_boolean_mono_info, | ||
286 | .get = xonar_gpio_bit_switch_get, | ||
287 | .put = xonar_gpio_bit_switch_put, | ||
288 | .private_value = GPIO_D1_FRONT_PANEL, | ||
289 | }; | ||
290 | |||
291 | static int rolloff_info(struct snd_kcontrol *ctl, | ||
292 | struct snd_ctl_elem_info *info) | ||
293 | { | ||
294 | static const char *const names[2] = { | ||
295 | "Fast Roll-off", "Slow Roll-off" | ||
296 | }; | ||
297 | |||
298 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
299 | info->count = 1; | ||
300 | info->value.enumerated.items = 2; | ||
301 | if (info->value.enumerated.item >= 2) | ||
302 | info->value.enumerated.item = 1; | ||
303 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
304 | return 0; | ||
305 | } | ||
306 | |||
307 | static int rolloff_get(struct snd_kcontrol *ctl, | ||
308 | struct snd_ctl_elem_value *value) | ||
309 | { | ||
310 | struct oxygen *chip = ctl->private_data; | ||
311 | struct xonar_cs43xx *data = chip->model_data; | ||
312 | |||
313 | value->value.enumerated.item[0] = | ||
314 | (data->cs4398_regs[7] & CS4398_FILT_SEL) != 0; | ||
315 | return 0; | ||
316 | } | ||
317 | |||
318 | static int rolloff_put(struct snd_kcontrol *ctl, | ||
319 | struct snd_ctl_elem_value *value) | ||
320 | { | ||
321 | struct oxygen *chip = ctl->private_data; | ||
322 | struct xonar_cs43xx *data = chip->model_data; | ||
323 | int changed; | ||
324 | u8 reg; | ||
325 | |||
326 | mutex_lock(&chip->mutex); | ||
327 | reg = data->cs4398_regs[7]; | ||
328 | if (value->value.enumerated.item[0]) | ||
329 | reg |= CS4398_FILT_SEL; | ||
330 | else | ||
331 | reg &= ~CS4398_FILT_SEL; | ||
332 | changed = reg != data->cs4398_regs[7]; | ||
333 | if (changed) { | ||
334 | cs4398_write(chip, 7, reg); | ||
335 | if (reg & CS4398_FILT_SEL) | ||
336 | reg = data->cs4362a_regs[0x04] | CS4362A_FILT_SEL; | ||
337 | else | ||
338 | reg = data->cs4362a_regs[0x04] & ~CS4362A_FILT_SEL; | ||
339 | cs4362a_write(chip, 0x04, reg); | ||
340 | } | ||
341 | mutex_unlock(&chip->mutex); | ||
342 | return changed; | ||
343 | } | ||
344 | |||
345 | static const struct snd_kcontrol_new rolloff_control = { | ||
346 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
347 | .name = "DAC Filter Playback Enum", | ||
348 | .info = rolloff_info, | ||
349 | .get = rolloff_get, | ||
350 | .put = rolloff_put, | ||
351 | }; | ||
352 | |||
353 | static void xonar_d1_line_mic_ac97_switch(struct oxygen *chip, | ||
354 | unsigned int reg, unsigned int mute) | ||
355 | { | ||
356 | if (reg == AC97_LINE) { | ||
357 | spin_lock_irq(&chip->reg_lock); | ||
358 | oxygen_write16_masked(chip, OXYGEN_GPIO_DATA, | ||
359 | mute ? GPIO_D1_INPUT_ROUTE : 0, | ||
360 | GPIO_D1_INPUT_ROUTE); | ||
361 | spin_unlock_irq(&chip->reg_lock); | ||
362 | } | ||
363 | } | ||
364 | |||
365 | static const DECLARE_TLV_DB_SCALE(cs4362a_db_scale, -6000, 100, 0); | ||
366 | |||
367 | static int xonar_d1_control_filter(struct snd_kcontrol_new *template) | ||
368 | { | ||
369 | if (!strncmp(template->name, "CD Capture ", 11)) | ||
370 | return 1; /* no CD input */ | ||
371 | return 0; | ||
372 | } | ||
373 | |||
374 | static int xonar_d1_mixer_init(struct oxygen *chip) | ||
375 | { | ||
376 | int err; | ||
377 | |||
378 | err = snd_ctl_add(chip->card, snd_ctl_new1(&front_panel_switch, chip)); | ||
379 | if (err < 0) | ||
380 | return err; | ||
381 | err = snd_ctl_add(chip->card, snd_ctl_new1(&rolloff_control, chip)); | ||
382 | if (err < 0) | ||
383 | return err; | ||
384 | return 0; | ||
385 | } | ||
386 | |||
387 | static const struct oxygen_model model_xonar_d1 = { | ||
388 | .longname = "Asus Virtuoso 100", | ||
389 | .chip = "AV200", | ||
390 | .init = xonar_d1_init, | ||
391 | .control_filter = xonar_d1_control_filter, | ||
392 | .mixer_init = xonar_d1_mixer_init, | ||
393 | .cleanup = xonar_d1_cleanup, | ||
394 | .suspend = xonar_d1_suspend, | ||
395 | .resume = xonar_d1_resume, | ||
396 | .get_i2s_mclk = oxygen_default_i2s_mclk, | ||
397 | .set_dac_params = set_cs43xx_params, | ||
398 | .set_adc_params = xonar_set_cs53x1_params, | ||
399 | .update_dac_volume = update_cs43xx_volume, | ||
400 | .update_dac_mute = update_cs43xx_mute, | ||
401 | .update_center_lfe_mix = update_cs43xx_center_lfe_mix, | ||
402 | .ac97_switch = xonar_d1_line_mic_ac97_switch, | ||
403 | .dac_tlv = cs4362a_db_scale, | ||
404 | .model_data_size = sizeof(struct xonar_cs43xx), | ||
405 | .device_config = PLAYBACK_0_TO_I2S | | ||
406 | PLAYBACK_1_TO_SPDIF | | ||
407 | CAPTURE_0_FROM_I2S_2, | ||
408 | .dac_channels = 8, | ||
409 | .dac_volume_min = 127 - 60, | ||
410 | .dac_volume_max = 127, | ||
411 | .function_flags = OXYGEN_FUNCTION_2WIRE, | ||
412 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
413 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
414 | }; | ||
415 | |||
416 | int __devinit get_xonar_cs43xx_model(struct oxygen *chip, | ||
417 | const struct pci_device_id *id) | ||
418 | { | ||
419 | switch (id->subdevice) { | ||
420 | case 0x834f: | ||
421 | chip->model = model_xonar_d1; | ||
422 | chip->model.shortname = "Xonar D1"; | ||
423 | break; | ||
424 | case 0x8275: | ||
425 | case 0x8327: | ||
426 | chip->model = model_xonar_d1; | ||
427 | chip->model.shortname = "Xonar DX"; | ||
428 | chip->model.init = xonar_dx_init; | ||
429 | break; | ||
430 | default: | ||
431 | return -EINVAL; | ||
432 | } | ||
433 | return 0; | ||
434 | } | ||
diff --git a/sound/pci/oxygen/xonar_hdmi.c b/sound/pci/oxygen/xonar_hdmi.c new file mode 100644 index 000000000000..b12db1f1cea9 --- /dev/null +++ b/sound/pci/oxygen/xonar_hdmi.c | |||
@@ -0,0 +1,128 @@ | |||
1 | /* | ||
2 | * helper functions for HDMI models (Xonar HDAV1.3) | ||
3 | * | ||
4 | * Copyright (c) Clemens Ladisch <clemens@ladisch.de> | ||
5 | * | ||
6 | * | ||
7 | * This driver is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License, version 2. | ||
9 | * | ||
10 | * This driver is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this driver; if not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include <linux/pci.h> | ||
20 | #include <linux/delay.h> | ||
21 | #include <sound/asoundef.h> | ||
22 | #include <sound/control.h> | ||
23 | #include <sound/core.h> | ||
24 | #include <sound/pcm.h> | ||
25 | #include <sound/pcm_params.h> | ||
26 | #include <sound/tlv.h> | ||
27 | #include "xonar.h" | ||
28 | |||
29 | static void hdmi_write_command(struct oxygen *chip, u8 command, | ||
30 | unsigned int count, const u8 *params) | ||
31 | { | ||
32 | unsigned int i; | ||
33 | u8 checksum; | ||
34 | |||
35 | oxygen_write_uart(chip, 0xfb); | ||
36 | oxygen_write_uart(chip, 0xef); | ||
37 | oxygen_write_uart(chip, command); | ||
38 | oxygen_write_uart(chip, count); | ||
39 | for (i = 0; i < count; ++i) | ||
40 | oxygen_write_uart(chip, params[i]); | ||
41 | checksum = 0xfb + 0xef + command + count; | ||
42 | for (i = 0; i < count; ++i) | ||
43 | checksum += params[i]; | ||
44 | oxygen_write_uart(chip, checksum); | ||
45 | } | ||
46 | |||
47 | static void xonar_hdmi_init_commands(struct oxygen *chip, | ||
48 | struct xonar_hdmi *hdmi) | ||
49 | { | ||
50 | u8 param; | ||
51 | |||
52 | oxygen_reset_uart(chip); | ||
53 | param = 0; | ||
54 | hdmi_write_command(chip, 0x61, 1, ¶m); | ||
55 | param = 1; | ||
56 | hdmi_write_command(chip, 0x74, 1, ¶m); | ||
57 | hdmi_write_command(chip, 0x54, 5, hdmi->params); | ||
58 | } | ||
59 | |||
60 | void xonar_hdmi_init(struct oxygen *chip, struct xonar_hdmi *hdmi) | ||
61 | { | ||
62 | hdmi->params[1] = IEC958_AES3_CON_FS_48000; | ||
63 | hdmi->params[4] = 1; | ||
64 | xonar_hdmi_init_commands(chip, hdmi); | ||
65 | } | ||
66 | |||
67 | void xonar_hdmi_cleanup(struct oxygen *chip) | ||
68 | { | ||
69 | u8 param = 0; | ||
70 | |||
71 | hdmi_write_command(chip, 0x74, 1, ¶m); | ||
72 | } | ||
73 | |||
74 | void xonar_hdmi_resume(struct oxygen *chip, struct xonar_hdmi *hdmi) | ||
75 | { | ||
76 | xonar_hdmi_init_commands(chip, hdmi); | ||
77 | } | ||
78 | |||
79 | void xonar_hdmi_pcm_hardware_filter(unsigned int channel, | ||
80 | struct snd_pcm_hardware *hardware) | ||
81 | { | ||
82 | if (channel == PCM_MULTICH) { | ||
83 | hardware->rates = SNDRV_PCM_RATE_44100 | | ||
84 | SNDRV_PCM_RATE_48000 | | ||
85 | SNDRV_PCM_RATE_96000 | | ||
86 | SNDRV_PCM_RATE_192000; | ||
87 | hardware->rate_min = 44100; | ||
88 | } | ||
89 | } | ||
90 | |||
91 | void xonar_set_hdmi_params(struct oxygen *chip, struct xonar_hdmi *hdmi, | ||
92 | struct snd_pcm_hw_params *params) | ||
93 | { | ||
94 | hdmi->params[0] = 0; /* 1 = non-audio */ | ||
95 | switch (params_rate(params)) { | ||
96 | case 44100: | ||
97 | hdmi->params[1] = IEC958_AES3_CON_FS_44100; | ||
98 | break; | ||
99 | case 48000: | ||
100 | hdmi->params[1] = IEC958_AES3_CON_FS_48000; | ||
101 | break; | ||
102 | default: /* 96000 */ | ||
103 | hdmi->params[1] = IEC958_AES3_CON_FS_96000; | ||
104 | break; | ||
105 | case 192000: | ||
106 | hdmi->params[1] = IEC958_AES3_CON_FS_192000; | ||
107 | break; | ||
108 | } | ||
109 | hdmi->params[2] = params_channels(params) / 2 - 1; | ||
110 | if (params_format(params) == SNDRV_PCM_FORMAT_S16_LE) | ||
111 | hdmi->params[3] = 0; | ||
112 | else | ||
113 | hdmi->params[3] = 0xc0; | ||
114 | hdmi->params[4] = 1; /* ? */ | ||
115 | hdmi_write_command(chip, 0x54, 5, hdmi->params); | ||
116 | } | ||
117 | |||
118 | void xonar_hdmi_uart_input(struct oxygen *chip) | ||
119 | { | ||
120 | if (chip->uart_input_count >= 2 && | ||
121 | chip->uart_input[chip->uart_input_count - 2] == 'O' && | ||
122 | chip->uart_input[chip->uart_input_count - 1] == 'K') { | ||
123 | printk(KERN_DEBUG "message from HDMI chip received:\n"); | ||
124 | print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, | ||
125 | chip->uart_input, chip->uart_input_count); | ||
126 | chip->uart_input_count = 0; | ||
127 | } | ||
128 | } | ||
diff --git a/sound/pci/oxygen/xonar_lib.c b/sound/pci/oxygen/xonar_lib.c new file mode 100644 index 000000000000..b3ff71316653 --- /dev/null +++ b/sound/pci/oxygen/xonar_lib.c | |||
@@ -0,0 +1,132 @@ | |||
1 | /* | ||
2 | * helper functions for Asus Xonar cards | ||
3 | * | ||
4 | * Copyright (c) Clemens Ladisch <clemens@ladisch.de> | ||
5 | * | ||
6 | * | ||
7 | * This driver is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License, version 2. | ||
9 | * | ||
10 | * This driver is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this driver; if not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | #include <linux/delay.h> | ||
20 | #include <sound/core.h> | ||
21 | #include <sound/control.h> | ||
22 | #include <sound/pcm.h> | ||
23 | #include <sound/pcm_params.h> | ||
24 | #include "xonar.h" | ||
25 | |||
26 | |||
27 | #define GPIO_CS53x1_M_MASK 0x000c | ||
28 | #define GPIO_CS53x1_M_SINGLE 0x0000 | ||
29 | #define GPIO_CS53x1_M_DOUBLE 0x0004 | ||
30 | #define GPIO_CS53x1_M_QUAD 0x0008 | ||
31 | |||
32 | |||
33 | void xonar_enable_output(struct oxygen *chip) | ||
34 | { | ||
35 | struct xonar_generic *data = chip->model_data; | ||
36 | |||
37 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, data->output_enable_bit); | ||
38 | msleep(data->anti_pop_delay); | ||
39 | oxygen_set_bits16(chip, OXYGEN_GPIO_DATA, data->output_enable_bit); | ||
40 | } | ||
41 | |||
42 | void xonar_disable_output(struct oxygen *chip) | ||
43 | { | ||
44 | struct xonar_generic *data = chip->model_data; | ||
45 | |||
46 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, data->output_enable_bit); | ||
47 | } | ||
48 | |||
49 | static void xonar_ext_power_gpio_changed(struct oxygen *chip) | ||
50 | { | ||
51 | struct xonar_generic *data = chip->model_data; | ||
52 | u8 has_power; | ||
53 | |||
54 | has_power = !!(oxygen_read8(chip, data->ext_power_reg) | ||
55 | & data->ext_power_bit); | ||
56 | if (has_power != data->has_power) { | ||
57 | data->has_power = has_power; | ||
58 | if (has_power) { | ||
59 | snd_printk(KERN_NOTICE "power restored\n"); | ||
60 | } else { | ||
61 | snd_printk(KERN_CRIT | ||
62 | "Hey! Don't unplug the power cable!\n"); | ||
63 | /* TODO: stop PCMs */ | ||
64 | } | ||
65 | } | ||
66 | } | ||
67 | |||
68 | void xonar_init_ext_power(struct oxygen *chip) | ||
69 | { | ||
70 | struct xonar_generic *data = chip->model_data; | ||
71 | |||
72 | oxygen_set_bits8(chip, data->ext_power_int_reg, | ||
73 | data->ext_power_bit); | ||
74 | chip->interrupt_mask |= OXYGEN_INT_GPIO; | ||
75 | chip->model.gpio_changed = xonar_ext_power_gpio_changed; | ||
76 | data->has_power = !!(oxygen_read8(chip, data->ext_power_reg) | ||
77 | & data->ext_power_bit); | ||
78 | } | ||
79 | |||
80 | void xonar_init_cs53x1(struct oxygen *chip) | ||
81 | { | ||
82 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_CS53x1_M_MASK); | ||
83 | oxygen_write16_masked(chip, OXYGEN_GPIO_DATA, | ||
84 | GPIO_CS53x1_M_SINGLE, GPIO_CS53x1_M_MASK); | ||
85 | } | ||
86 | |||
87 | void xonar_set_cs53x1_params(struct oxygen *chip, | ||
88 | struct snd_pcm_hw_params *params) | ||
89 | { | ||
90 | unsigned int value; | ||
91 | |||
92 | if (params_rate(params) <= 54000) | ||
93 | value = GPIO_CS53x1_M_SINGLE; | ||
94 | else if (params_rate(params) <= 108000) | ||
95 | value = GPIO_CS53x1_M_DOUBLE; | ||
96 | else | ||
97 | value = GPIO_CS53x1_M_QUAD; | ||
98 | oxygen_write16_masked(chip, OXYGEN_GPIO_DATA, | ||
99 | value, GPIO_CS53x1_M_MASK); | ||
100 | } | ||
101 | |||
102 | int xonar_gpio_bit_switch_get(struct snd_kcontrol *ctl, | ||
103 | struct snd_ctl_elem_value *value) | ||
104 | { | ||
105 | struct oxygen *chip = ctl->private_data; | ||
106 | u16 bit = ctl->private_value; | ||
107 | |||
108 | value->value.integer.value[0] = | ||
109 | !!(oxygen_read16(chip, OXYGEN_GPIO_DATA) & bit); | ||
110 | return 0; | ||
111 | } | ||
112 | |||
113 | int xonar_gpio_bit_switch_put(struct snd_kcontrol *ctl, | ||
114 | struct snd_ctl_elem_value *value) | ||
115 | { | ||
116 | struct oxygen *chip = ctl->private_data; | ||
117 | u16 bit = ctl->private_value; | ||
118 | u16 old_bits, new_bits; | ||
119 | int changed; | ||
120 | |||
121 | spin_lock_irq(&chip->reg_lock); | ||
122 | old_bits = oxygen_read16(chip, OXYGEN_GPIO_DATA); | ||
123 | if (value->value.integer.value[0]) | ||
124 | new_bits = old_bits | bit; | ||
125 | else | ||
126 | new_bits = old_bits & ~bit; | ||
127 | changed = new_bits != old_bits; | ||
128 | if (changed) | ||
129 | oxygen_write16(chip, OXYGEN_GPIO_DATA, new_bits); | ||
130 | spin_unlock_irq(&chip->reg_lock); | ||
131 | return changed; | ||
132 | } | ||
diff --git a/sound/pci/oxygen/xonar_pcm179x.c b/sound/pci/oxygen/xonar_pcm179x.c new file mode 100644 index 000000000000..ba18fb546b4f --- /dev/null +++ b/sound/pci/oxygen/xonar_pcm179x.c | |||
@@ -0,0 +1,1115 @@ | |||
1 | /* | ||
2 | * card driver for models with PCM1796 DACs (Xonar D2/D2X/HDAV1.3/ST/STX) | ||
3 | * | ||
4 | * Copyright (c) Clemens Ladisch <clemens@ladisch.de> | ||
5 | * | ||
6 | * | ||
7 | * This driver is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License, version 2. | ||
9 | * | ||
10 | * This driver is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU General Public License | ||
16 | * along with this driver; if not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | /* | ||
20 | * Xonar D2/D2X | ||
21 | * ------------ | ||
22 | * | ||
23 | * CMI8788: | ||
24 | * | ||
25 | * SPI 0 -> 1st PCM1796 (front) | ||
26 | * SPI 1 -> 2nd PCM1796 (surround) | ||
27 | * SPI 2 -> 3rd PCM1796 (center/LFE) | ||
28 | * SPI 4 -> 4th PCM1796 (back) | ||
29 | * | ||
30 | * GPIO 2 -> M0 of CS5381 | ||
31 | * GPIO 3 -> M1 of CS5381 | ||
32 | * GPIO 5 <- external power present (D2X only) | ||
33 | * GPIO 7 -> ALT | ||
34 | * GPIO 8 -> enable output to speakers | ||
35 | * | ||
36 | * CM9780: | ||
37 | * | ||
38 | * GPO 0 -> route line-in (0) or AC97 output (1) to CS5381 input | ||
39 | */ | ||
40 | |||
41 | /* | ||
42 | * Xonar HDAV1.3 (Deluxe) | ||
43 | * ---------------------- | ||
44 | * | ||
45 | * CMI8788: | ||
46 | * | ||
47 | * I²C <-> PCM1796 (front) | ||
48 | * | ||
49 | * GPI 0 <- external power present | ||
50 | * | ||
51 | * GPIO 0 -> enable output to speakers | ||
52 | * GPIO 2 -> M0 of CS5381 | ||
53 | * GPIO 3 -> M1 of CS5381 | ||
54 | * GPIO 8 -> route input jack to line-in (0) or mic-in (1) | ||
55 | * | ||
56 | * TXD -> HDMI controller | ||
57 | * RXD <- HDMI controller | ||
58 | * | ||
59 | * PCM1796 front: AD1,0 <- 0,0 | ||
60 | * | ||
61 | * CM9780: | ||
62 | * | ||
63 | * GPO 0 -> route line-in (0) or AC97 output (1) to CS5381 input | ||
64 | * | ||
65 | * no daughterboard | ||
66 | * ---------------- | ||
67 | * | ||
68 | * GPIO 4 <- 1 | ||
69 | * | ||
70 | * H6 daughterboard | ||
71 | * ---------------- | ||
72 | * | ||
73 | * GPIO 4 <- 0 | ||
74 | * GPIO 5 <- 0 | ||
75 | * | ||
76 | * I²C <-> PCM1796 (surround) | ||
77 | * <-> PCM1796 (center/LFE) | ||
78 | * <-> PCM1796 (back) | ||
79 | * | ||
80 | * PCM1796 surround: AD1,0 <- 0,1 | ||
81 | * PCM1796 center/LFE: AD1,0 <- 1,0 | ||
82 | * PCM1796 back: AD1,0 <- 1,1 | ||
83 | * | ||
84 | * unknown daughterboard | ||
85 | * --------------------- | ||
86 | * | ||
87 | * GPIO 4 <- 0 | ||
88 | * GPIO 5 <- 1 | ||
89 | * | ||
90 | * I²C <-> CS4362A (surround, center/LFE, back) | ||
91 | * | ||
92 | * CS4362A: AD0 <- 0 | ||
93 | */ | ||
94 | |||
95 | /* | ||
96 | * Xonar Essence ST (Deluxe)/STX | ||
97 | * ----------------------------- | ||
98 | * | ||
99 | * CMI8788: | ||
100 | * | ||
101 | * I²C <-> PCM1792A | ||
102 | * <-> CS2000 (ST only) | ||
103 | * | ||
104 | * ADC1 MCLK -> REF_CLK of CS2000 (ST only) | ||
105 | * | ||
106 | * GPI 0 <- external power present (STX only) | ||
107 | * | ||
108 | * GPIO 0 -> enable output to speakers | ||
109 | * GPIO 1 -> route HP to front panel (0) or rear jack (1) | ||
110 | * GPIO 2 -> M0 of CS5381 | ||
111 | * GPIO 3 -> M1 of CS5381 | ||
112 | * GPIO 7 -> route output to speaker jacks (0) or HP (1) | ||
113 | * GPIO 8 -> route input jack to line-in (0) or mic-in (1) | ||
114 | * | ||
115 | * PCM1792A: | ||
116 | * | ||
117 | * AD1,0 <- 0,0 | ||
118 | * SCK <- CLK_OUT of CS2000 (ST only) | ||
119 | * | ||
120 | * CS2000: | ||
121 | * | ||
122 | * AD0 <- 0 | ||
123 | * | ||
124 | * CM9780: | ||
125 | * | ||
126 | * GPO 0 -> route line-in (0) or AC97 output (1) to CS5381 input | ||
127 | * | ||
128 | * H6 daughterboard | ||
129 | * ---------------- | ||
130 | * | ||
131 | * GPIO 4 <- 0 | ||
132 | * GPIO 5 <- 0 | ||
133 | */ | ||
134 | |||
135 | #include <linux/pci.h> | ||
136 | #include <linux/delay.h> | ||
137 | #include <linux/mutex.h> | ||
138 | #include <sound/ac97_codec.h> | ||
139 | #include <sound/control.h> | ||
140 | #include <sound/core.h> | ||
141 | #include <sound/pcm.h> | ||
142 | #include <sound/pcm_params.h> | ||
143 | #include <sound/tlv.h> | ||
144 | #include "xonar.h" | ||
145 | #include "cm9780.h" | ||
146 | #include "pcm1796.h" | ||
147 | #include "cs2000.h" | ||
148 | |||
149 | |||
150 | #define GPIO_D2X_EXT_POWER 0x0020 | ||
151 | #define GPIO_D2_ALT 0x0080 | ||
152 | #define GPIO_D2_OUTPUT_ENABLE 0x0100 | ||
153 | |||
154 | #define GPI_EXT_POWER 0x01 | ||
155 | #define GPIO_INPUT_ROUTE 0x0100 | ||
156 | |||
157 | #define GPIO_HDAV_OUTPUT_ENABLE 0x0001 | ||
158 | |||
159 | #define GPIO_DB_MASK 0x0030 | ||
160 | #define GPIO_DB_H6 0x0000 | ||
161 | |||
162 | #define GPIO_ST_OUTPUT_ENABLE 0x0001 | ||
163 | #define GPIO_ST_HP_REAR 0x0002 | ||
164 | #define GPIO_ST_HP 0x0080 | ||
165 | |||
166 | #define I2C_DEVICE_PCM1796(i) (0x98 + ((i) << 1)) /* 10011, ii, /W=0 */ | ||
167 | #define I2C_DEVICE_CS2000 0x9c /* 100111, 0, /W=0 */ | ||
168 | |||
169 | #define PCM1796_REG_BASE 16 | ||
170 | |||
171 | |||
172 | struct xonar_pcm179x { | ||
173 | struct xonar_generic generic; | ||
174 | unsigned int dacs; | ||
175 | u8 pcm1796_regs[4][5]; | ||
176 | unsigned int current_rate; | ||
177 | bool os_128; | ||
178 | bool hp_active; | ||
179 | s8 hp_gain_offset; | ||
180 | bool has_cs2000; | ||
181 | u8 cs2000_fun_cfg_1; | ||
182 | }; | ||
183 | |||
184 | struct xonar_hdav { | ||
185 | struct xonar_pcm179x pcm179x; | ||
186 | struct xonar_hdmi hdmi; | ||
187 | }; | ||
188 | |||
189 | |||
190 | static inline void pcm1796_write_spi(struct oxygen *chip, unsigned int codec, | ||
191 | u8 reg, u8 value) | ||
192 | { | ||
193 | /* maps ALSA channel pair number to SPI output */ | ||
194 | static const u8 codec_map[4] = { | ||
195 | 0, 1, 2, 4 | ||
196 | }; | ||
197 | oxygen_write_spi(chip, OXYGEN_SPI_TRIGGER | | ||
198 | OXYGEN_SPI_DATA_LENGTH_2 | | ||
199 | OXYGEN_SPI_CLOCK_160 | | ||
200 | (codec_map[codec] << OXYGEN_SPI_CODEC_SHIFT) | | ||
201 | OXYGEN_SPI_CEN_LATCH_CLOCK_HI, | ||
202 | (reg << 8) | value); | ||
203 | } | ||
204 | |||
205 | static inline void pcm1796_write_i2c(struct oxygen *chip, unsigned int codec, | ||
206 | u8 reg, u8 value) | ||
207 | { | ||
208 | oxygen_write_i2c(chip, I2C_DEVICE_PCM1796(codec), reg, value); | ||
209 | } | ||
210 | |||
211 | static void pcm1796_write(struct oxygen *chip, unsigned int codec, | ||
212 | u8 reg, u8 value) | ||
213 | { | ||
214 | struct xonar_pcm179x *data = chip->model_data; | ||
215 | |||
216 | if ((chip->model.function_flags & OXYGEN_FUNCTION_2WIRE_SPI_MASK) == | ||
217 | OXYGEN_FUNCTION_SPI) | ||
218 | pcm1796_write_spi(chip, codec, reg, value); | ||
219 | else | ||
220 | pcm1796_write_i2c(chip, codec, reg, value); | ||
221 | if ((unsigned int)(reg - PCM1796_REG_BASE) | ||
222 | < ARRAY_SIZE(data->pcm1796_regs[codec])) | ||
223 | data->pcm1796_regs[codec][reg - PCM1796_REG_BASE] = value; | ||
224 | } | ||
225 | |||
226 | static void pcm1796_write_cached(struct oxygen *chip, unsigned int codec, | ||
227 | u8 reg, u8 value) | ||
228 | { | ||
229 | struct xonar_pcm179x *data = chip->model_data; | ||
230 | |||
231 | if (value != data->pcm1796_regs[codec][reg - PCM1796_REG_BASE]) | ||
232 | pcm1796_write(chip, codec, reg, value); | ||
233 | } | ||
234 | |||
235 | static void cs2000_write(struct oxygen *chip, u8 reg, u8 value) | ||
236 | { | ||
237 | struct xonar_pcm179x *data = chip->model_data; | ||
238 | |||
239 | oxygen_write_i2c(chip, I2C_DEVICE_CS2000, reg, value); | ||
240 | if (reg == CS2000_FUN_CFG_1) | ||
241 | data->cs2000_fun_cfg_1 = value; | ||
242 | } | ||
243 | |||
244 | static void cs2000_write_cached(struct oxygen *chip, u8 reg, u8 value) | ||
245 | { | ||
246 | struct xonar_pcm179x *data = chip->model_data; | ||
247 | |||
248 | if (reg != CS2000_FUN_CFG_1 || | ||
249 | value != data->cs2000_fun_cfg_1) | ||
250 | cs2000_write(chip, reg, value); | ||
251 | } | ||
252 | |||
253 | static void pcm1796_registers_init(struct oxygen *chip) | ||
254 | { | ||
255 | struct xonar_pcm179x *data = chip->model_data; | ||
256 | unsigned int i; | ||
257 | s8 gain_offset; | ||
258 | |||
259 | gain_offset = data->hp_active ? data->hp_gain_offset : 0; | ||
260 | for (i = 0; i < data->dacs; ++i) { | ||
261 | /* set ATLD before ATL/ATR */ | ||
262 | pcm1796_write(chip, i, 18, | ||
263 | data->pcm1796_regs[0][18 - PCM1796_REG_BASE]); | ||
264 | pcm1796_write(chip, i, 16, chip->dac_volume[i * 2] | ||
265 | + gain_offset); | ||
266 | pcm1796_write(chip, i, 17, chip->dac_volume[i * 2 + 1] | ||
267 | + gain_offset); | ||
268 | pcm1796_write(chip, i, 19, | ||
269 | data->pcm1796_regs[0][19 - PCM1796_REG_BASE]); | ||
270 | pcm1796_write(chip, i, 20, | ||
271 | data->pcm1796_regs[0][20 - PCM1796_REG_BASE]); | ||
272 | pcm1796_write(chip, i, 21, 0); | ||
273 | } | ||
274 | } | ||
275 | |||
276 | static void pcm1796_init(struct oxygen *chip) | ||
277 | { | ||
278 | struct xonar_pcm179x *data = chip->model_data; | ||
279 | |||
280 | data->pcm1796_regs[0][18 - PCM1796_REG_BASE] = PCM1796_MUTE | | ||
281 | PCM1796_DMF_DISABLED | PCM1796_FMT_24_LJUST | PCM1796_ATLD; | ||
282 | data->pcm1796_regs[0][19 - PCM1796_REG_BASE] = | ||
283 | PCM1796_FLT_SHARP | PCM1796_ATS_1; | ||
284 | data->pcm1796_regs[0][20 - PCM1796_REG_BASE] = PCM1796_OS_64; | ||
285 | pcm1796_registers_init(chip); | ||
286 | data->current_rate = 48000; | ||
287 | } | ||
288 | |||
289 | static void xonar_d2_init(struct oxygen *chip) | ||
290 | { | ||
291 | struct xonar_pcm179x *data = chip->model_data; | ||
292 | |||
293 | data->generic.anti_pop_delay = 300; | ||
294 | data->generic.output_enable_bit = GPIO_D2_OUTPUT_ENABLE; | ||
295 | data->dacs = 4; | ||
296 | |||
297 | pcm1796_init(chip); | ||
298 | |||
299 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_D2_ALT); | ||
300 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, GPIO_D2_ALT); | ||
301 | |||
302 | oxygen_ac97_set_bits(chip, 0, CM9780_JACK, CM9780_FMIC2MIC); | ||
303 | |||
304 | xonar_init_cs53x1(chip); | ||
305 | xonar_enable_output(chip); | ||
306 | |||
307 | snd_component_add(chip->card, "PCM1796"); | ||
308 | snd_component_add(chip->card, "CS5381"); | ||
309 | } | ||
310 | |||
311 | static void xonar_d2x_init(struct oxygen *chip) | ||
312 | { | ||
313 | struct xonar_pcm179x *data = chip->model_data; | ||
314 | |||
315 | data->generic.ext_power_reg = OXYGEN_GPIO_DATA; | ||
316 | data->generic.ext_power_int_reg = OXYGEN_GPIO_INTERRUPT_MASK; | ||
317 | data->generic.ext_power_bit = GPIO_D2X_EXT_POWER; | ||
318 | oxygen_clear_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_D2X_EXT_POWER); | ||
319 | xonar_init_ext_power(chip); | ||
320 | xonar_d2_init(chip); | ||
321 | } | ||
322 | |||
323 | static void xonar_hdav_init(struct oxygen *chip) | ||
324 | { | ||
325 | struct xonar_hdav *data = chip->model_data; | ||
326 | |||
327 | oxygen_write16(chip, OXYGEN_2WIRE_BUS_STATUS, | ||
328 | OXYGEN_2WIRE_LENGTH_8 | | ||
329 | OXYGEN_2WIRE_INTERRUPT_MASK | | ||
330 | OXYGEN_2WIRE_SPEED_FAST); | ||
331 | |||
332 | data->pcm179x.generic.anti_pop_delay = 100; | ||
333 | data->pcm179x.generic.output_enable_bit = GPIO_HDAV_OUTPUT_ENABLE; | ||
334 | data->pcm179x.generic.ext_power_reg = OXYGEN_GPI_DATA; | ||
335 | data->pcm179x.generic.ext_power_int_reg = OXYGEN_GPI_INTERRUPT_MASK; | ||
336 | data->pcm179x.generic.ext_power_bit = GPI_EXT_POWER; | ||
337 | data->pcm179x.dacs = chip->model.private_data ? 4 : 1; | ||
338 | |||
339 | pcm1796_init(chip); | ||
340 | |||
341 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_INPUT_ROUTE); | ||
342 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, GPIO_INPUT_ROUTE); | ||
343 | |||
344 | xonar_init_cs53x1(chip); | ||
345 | xonar_init_ext_power(chip); | ||
346 | xonar_hdmi_init(chip, &data->hdmi); | ||
347 | xonar_enable_output(chip); | ||
348 | |||
349 | snd_component_add(chip->card, "PCM1796"); | ||
350 | snd_component_add(chip->card, "CS5381"); | ||
351 | } | ||
352 | |||
353 | static void xonar_st_init_i2c(struct oxygen *chip) | ||
354 | { | ||
355 | oxygen_write16(chip, OXYGEN_2WIRE_BUS_STATUS, | ||
356 | OXYGEN_2WIRE_LENGTH_8 | | ||
357 | OXYGEN_2WIRE_INTERRUPT_MASK | | ||
358 | OXYGEN_2WIRE_SPEED_FAST); | ||
359 | } | ||
360 | |||
361 | static void xonar_st_init_common(struct oxygen *chip) | ||
362 | { | ||
363 | struct xonar_pcm179x *data = chip->model_data; | ||
364 | |||
365 | data->generic.anti_pop_delay = 100; | ||
366 | data->generic.output_enable_bit = GPIO_ST_OUTPUT_ENABLE; | ||
367 | data->dacs = chip->model.private_data ? 4 : 1; | ||
368 | data->hp_gain_offset = 2*-18; | ||
369 | |||
370 | pcm1796_init(chip); | ||
371 | |||
372 | oxygen_set_bits16(chip, OXYGEN_GPIO_CONTROL, | ||
373 | GPIO_INPUT_ROUTE | GPIO_ST_HP_REAR | GPIO_ST_HP); | ||
374 | oxygen_clear_bits16(chip, OXYGEN_GPIO_DATA, | ||
375 | GPIO_INPUT_ROUTE | GPIO_ST_HP_REAR | GPIO_ST_HP); | ||
376 | |||
377 | xonar_init_cs53x1(chip); | ||
378 | xonar_enable_output(chip); | ||
379 | |||
380 | snd_component_add(chip->card, "PCM1792A"); | ||
381 | snd_component_add(chip->card, "CS5381"); | ||
382 | } | ||
383 | |||
384 | static void cs2000_registers_init(struct oxygen *chip) | ||
385 | { | ||
386 | struct xonar_pcm179x *data = chip->model_data; | ||
387 | |||
388 | cs2000_write(chip, CS2000_GLOBAL_CFG, CS2000_FREEZE); | ||
389 | cs2000_write(chip, CS2000_DEV_CTRL, 0); | ||
390 | cs2000_write(chip, CS2000_DEV_CFG_1, | ||
391 | CS2000_R_MOD_SEL_1 | | ||
392 | (0 << CS2000_R_SEL_SHIFT) | | ||
393 | CS2000_AUX_OUT_SRC_REF_CLK | | ||
394 | CS2000_EN_DEV_CFG_1); | ||
395 | cs2000_write(chip, CS2000_DEV_CFG_2, | ||
396 | (0 << CS2000_LOCK_CLK_SHIFT) | | ||
397 | CS2000_FRAC_N_SRC_STATIC); | ||
398 | cs2000_write(chip, CS2000_RATIO_0 + 0, 0x00); /* 1.0 */ | ||
399 | cs2000_write(chip, CS2000_RATIO_0 + 1, 0x10); | ||
400 | cs2000_write(chip, CS2000_RATIO_0 + 2, 0x00); | ||
401 | cs2000_write(chip, CS2000_RATIO_0 + 3, 0x00); | ||
402 | cs2000_write(chip, CS2000_FUN_CFG_1, data->cs2000_fun_cfg_1); | ||
403 | cs2000_write(chip, CS2000_FUN_CFG_2, 0); | ||
404 | cs2000_write(chip, CS2000_GLOBAL_CFG, CS2000_EN_DEV_CFG_2); | ||
405 | } | ||
406 | |||
407 | static void xonar_st_init(struct oxygen *chip) | ||
408 | { | ||
409 | struct xonar_pcm179x *data = chip->model_data; | ||
410 | |||
411 | data->has_cs2000 = 1; | ||
412 | data->cs2000_fun_cfg_1 = CS2000_REF_CLK_DIV_1; | ||
413 | |||
414 | oxygen_write16(chip, OXYGEN_I2S_A_FORMAT, | ||
415 | OXYGEN_RATE_48000 | OXYGEN_I2S_FORMAT_I2S | | ||
416 | OXYGEN_I2S_MCLK_128 | OXYGEN_I2S_BITS_16 | | ||
417 | OXYGEN_I2S_MASTER | OXYGEN_I2S_BCLK_64); | ||
418 | |||
419 | xonar_st_init_i2c(chip); | ||
420 | cs2000_registers_init(chip); | ||
421 | xonar_st_init_common(chip); | ||
422 | |||
423 | snd_component_add(chip->card, "CS2000"); | ||
424 | } | ||
425 | |||
426 | static void xonar_stx_init(struct oxygen *chip) | ||
427 | { | ||
428 | struct xonar_pcm179x *data = chip->model_data; | ||
429 | |||
430 | xonar_st_init_i2c(chip); | ||
431 | data->generic.ext_power_reg = OXYGEN_GPI_DATA; | ||
432 | data->generic.ext_power_int_reg = OXYGEN_GPI_INTERRUPT_MASK; | ||
433 | data->generic.ext_power_bit = GPI_EXT_POWER; | ||
434 | xonar_init_ext_power(chip); | ||
435 | xonar_st_init_common(chip); | ||
436 | } | ||
437 | |||
438 | static void xonar_d2_cleanup(struct oxygen *chip) | ||
439 | { | ||
440 | xonar_disable_output(chip); | ||
441 | } | ||
442 | |||
443 | static void xonar_hdav_cleanup(struct oxygen *chip) | ||
444 | { | ||
445 | xonar_hdmi_cleanup(chip); | ||
446 | xonar_disable_output(chip); | ||
447 | msleep(2); | ||
448 | } | ||
449 | |||
450 | static void xonar_st_cleanup(struct oxygen *chip) | ||
451 | { | ||
452 | xonar_disable_output(chip); | ||
453 | } | ||
454 | |||
455 | static void xonar_d2_suspend(struct oxygen *chip) | ||
456 | { | ||
457 | xonar_d2_cleanup(chip); | ||
458 | } | ||
459 | |||
460 | static void xonar_hdav_suspend(struct oxygen *chip) | ||
461 | { | ||
462 | xonar_hdav_cleanup(chip); | ||
463 | } | ||
464 | |||
465 | static void xonar_st_suspend(struct oxygen *chip) | ||
466 | { | ||
467 | xonar_st_cleanup(chip); | ||
468 | } | ||
469 | |||
470 | static void xonar_d2_resume(struct oxygen *chip) | ||
471 | { | ||
472 | pcm1796_registers_init(chip); | ||
473 | xonar_enable_output(chip); | ||
474 | } | ||
475 | |||
476 | static void xonar_hdav_resume(struct oxygen *chip) | ||
477 | { | ||
478 | struct xonar_hdav *data = chip->model_data; | ||
479 | |||
480 | pcm1796_registers_init(chip); | ||
481 | xonar_hdmi_resume(chip, &data->hdmi); | ||
482 | xonar_enable_output(chip); | ||
483 | } | ||
484 | |||
485 | static void xonar_stx_resume(struct oxygen *chip) | ||
486 | { | ||
487 | pcm1796_registers_init(chip); | ||
488 | xonar_enable_output(chip); | ||
489 | } | ||
490 | |||
491 | static void xonar_st_resume(struct oxygen *chip) | ||
492 | { | ||
493 | cs2000_registers_init(chip); | ||
494 | xonar_stx_resume(chip); | ||
495 | } | ||
496 | |||
497 | static unsigned int mclk_from_rate(struct oxygen *chip, unsigned int rate) | ||
498 | { | ||
499 | struct xonar_pcm179x *data = chip->model_data; | ||
500 | |||
501 | if (rate <= 32000) | ||
502 | return OXYGEN_I2S_MCLK_512; | ||
503 | else if (rate <= 48000 && data->os_128) | ||
504 | return OXYGEN_I2S_MCLK_512; | ||
505 | else if (rate <= 96000) | ||
506 | return OXYGEN_I2S_MCLK_256; | ||
507 | else | ||
508 | return OXYGEN_I2S_MCLK_128; | ||
509 | } | ||
510 | |||
511 | static unsigned int get_pcm1796_i2s_mclk(struct oxygen *chip, | ||
512 | unsigned int channel, | ||
513 | struct snd_pcm_hw_params *params) | ||
514 | { | ||
515 | if (channel == PCM_MULTICH) | ||
516 | return mclk_from_rate(chip, params_rate(params)); | ||
517 | else | ||
518 | return oxygen_default_i2s_mclk(chip, channel, params); | ||
519 | } | ||
520 | |||
521 | static void update_pcm1796_oversampling(struct oxygen *chip) | ||
522 | { | ||
523 | struct xonar_pcm179x *data = chip->model_data; | ||
524 | unsigned int i; | ||
525 | u8 reg; | ||
526 | |||
527 | if (data->current_rate <= 32000) | ||
528 | reg = PCM1796_OS_128; | ||
529 | else if (data->current_rate <= 48000 && data->os_128) | ||
530 | reg = PCM1796_OS_128; | ||
531 | else if (data->current_rate <= 96000 || data->os_128) | ||
532 | reg = PCM1796_OS_64; | ||
533 | else | ||
534 | reg = PCM1796_OS_32; | ||
535 | for (i = 0; i < data->dacs; ++i) | ||
536 | pcm1796_write_cached(chip, i, 20, reg); | ||
537 | } | ||
538 | |||
539 | static void set_pcm1796_params(struct oxygen *chip, | ||
540 | struct snd_pcm_hw_params *params) | ||
541 | { | ||
542 | struct xonar_pcm179x *data = chip->model_data; | ||
543 | |||
544 | data->current_rate = params_rate(params); | ||
545 | update_pcm1796_oversampling(chip); | ||
546 | } | ||
547 | |||
548 | static void update_pcm1796_volume(struct oxygen *chip) | ||
549 | { | ||
550 | struct xonar_pcm179x *data = chip->model_data; | ||
551 | unsigned int i; | ||
552 | s8 gain_offset; | ||
553 | |||
554 | gain_offset = data->hp_active ? data->hp_gain_offset : 0; | ||
555 | for (i = 0; i < data->dacs; ++i) { | ||
556 | pcm1796_write_cached(chip, i, 16, chip->dac_volume[i * 2] | ||
557 | + gain_offset); | ||
558 | pcm1796_write_cached(chip, i, 17, chip->dac_volume[i * 2 + 1] | ||
559 | + gain_offset); | ||
560 | } | ||
561 | } | ||
562 | |||
563 | static void update_pcm1796_mute(struct oxygen *chip) | ||
564 | { | ||
565 | struct xonar_pcm179x *data = chip->model_data; | ||
566 | unsigned int i; | ||
567 | u8 value; | ||
568 | |||
569 | value = PCM1796_DMF_DISABLED | PCM1796_FMT_24_LJUST | PCM1796_ATLD; | ||
570 | if (chip->dac_mute) | ||
571 | value |= PCM1796_MUTE; | ||
572 | for (i = 0; i < data->dacs; ++i) | ||
573 | pcm1796_write_cached(chip, i, 18, value); | ||
574 | } | ||
575 | |||
576 | static void update_cs2000_rate(struct oxygen *chip, unsigned int rate) | ||
577 | { | ||
578 | struct xonar_pcm179x *data = chip->model_data; | ||
579 | u8 rate_mclk, reg; | ||
580 | |||
581 | switch (rate) { | ||
582 | /* XXX Why is the I2S A MCLK half the actual I2S MCLK? */ | ||
583 | case 32000: | ||
584 | rate_mclk = OXYGEN_RATE_32000 | OXYGEN_I2S_MCLK_256; | ||
585 | break; | ||
586 | case 44100: | ||
587 | if (data->os_128) | ||
588 | rate_mclk = OXYGEN_RATE_44100 | OXYGEN_I2S_MCLK_256; | ||
589 | else | ||
590 | rate_mclk = OXYGEN_RATE_44100 | OXYGEN_I2S_MCLK_128; | ||
591 | break; | ||
592 | default: /* 48000 */ | ||
593 | if (data->os_128) | ||
594 | rate_mclk = OXYGEN_RATE_48000 | OXYGEN_I2S_MCLK_256; | ||
595 | else | ||
596 | rate_mclk = OXYGEN_RATE_48000 | OXYGEN_I2S_MCLK_128; | ||
597 | break; | ||
598 | case 64000: | ||
599 | rate_mclk = OXYGEN_RATE_32000 | OXYGEN_I2S_MCLK_256; | ||
600 | break; | ||
601 | case 88200: | ||
602 | rate_mclk = OXYGEN_RATE_44100 | OXYGEN_I2S_MCLK_256; | ||
603 | break; | ||
604 | case 96000: | ||
605 | rate_mclk = OXYGEN_RATE_48000 | OXYGEN_I2S_MCLK_256; | ||
606 | break; | ||
607 | case 176400: | ||
608 | rate_mclk = OXYGEN_RATE_44100 | OXYGEN_I2S_MCLK_256; | ||
609 | break; | ||
610 | case 192000: | ||
611 | rate_mclk = OXYGEN_RATE_48000 | OXYGEN_I2S_MCLK_256; | ||
612 | break; | ||
613 | } | ||
614 | oxygen_write16_masked(chip, OXYGEN_I2S_A_FORMAT, rate_mclk, | ||
615 | OXYGEN_I2S_RATE_MASK | OXYGEN_I2S_MCLK_MASK); | ||
616 | if ((rate_mclk & OXYGEN_I2S_MCLK_MASK) <= OXYGEN_I2S_MCLK_128) | ||
617 | reg = CS2000_REF_CLK_DIV_1; | ||
618 | else | ||
619 | reg = CS2000_REF_CLK_DIV_2; | ||
620 | cs2000_write_cached(chip, CS2000_FUN_CFG_1, reg); | ||
621 | } | ||
622 | |||
623 | static void set_st_params(struct oxygen *chip, | ||
624 | struct snd_pcm_hw_params *params) | ||
625 | { | ||
626 | update_cs2000_rate(chip, params_rate(params)); | ||
627 | set_pcm1796_params(chip, params); | ||
628 | } | ||
629 | |||
630 | static void set_hdav_params(struct oxygen *chip, | ||
631 | struct snd_pcm_hw_params *params) | ||
632 | { | ||
633 | struct xonar_hdav *data = chip->model_data; | ||
634 | |||
635 | set_pcm1796_params(chip, params); | ||
636 | xonar_set_hdmi_params(chip, &data->hdmi, params); | ||
637 | } | ||
638 | |||
639 | static const struct snd_kcontrol_new alt_switch = { | ||
640 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
641 | .name = "Analog Loopback Switch", | ||
642 | .info = snd_ctl_boolean_mono_info, | ||
643 | .get = xonar_gpio_bit_switch_get, | ||
644 | .put = xonar_gpio_bit_switch_put, | ||
645 | .private_value = GPIO_D2_ALT, | ||
646 | }; | ||
647 | |||
648 | static int rolloff_info(struct snd_kcontrol *ctl, | ||
649 | struct snd_ctl_elem_info *info) | ||
650 | { | ||
651 | static const char *const names[2] = { | ||
652 | "Sharp Roll-off", "Slow Roll-off" | ||
653 | }; | ||
654 | |||
655 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
656 | info->count = 1; | ||
657 | info->value.enumerated.items = 2; | ||
658 | if (info->value.enumerated.item >= 2) | ||
659 | info->value.enumerated.item = 1; | ||
660 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
661 | return 0; | ||
662 | } | ||
663 | |||
664 | static int rolloff_get(struct snd_kcontrol *ctl, | ||
665 | struct snd_ctl_elem_value *value) | ||
666 | { | ||
667 | struct oxygen *chip = ctl->private_data; | ||
668 | struct xonar_pcm179x *data = chip->model_data; | ||
669 | |||
670 | value->value.enumerated.item[0] = | ||
671 | (data->pcm1796_regs[0][19 - PCM1796_REG_BASE] & | ||
672 | PCM1796_FLT_MASK) != PCM1796_FLT_SHARP; | ||
673 | return 0; | ||
674 | } | ||
675 | |||
676 | static int rolloff_put(struct snd_kcontrol *ctl, | ||
677 | struct snd_ctl_elem_value *value) | ||
678 | { | ||
679 | struct oxygen *chip = ctl->private_data; | ||
680 | struct xonar_pcm179x *data = chip->model_data; | ||
681 | unsigned int i; | ||
682 | int changed; | ||
683 | u8 reg; | ||
684 | |||
685 | mutex_lock(&chip->mutex); | ||
686 | reg = data->pcm1796_regs[0][19 - PCM1796_REG_BASE]; | ||
687 | reg &= ~PCM1796_FLT_MASK; | ||
688 | if (!value->value.enumerated.item[0]) | ||
689 | reg |= PCM1796_FLT_SHARP; | ||
690 | else | ||
691 | reg |= PCM1796_FLT_SLOW; | ||
692 | changed = reg != data->pcm1796_regs[0][19 - PCM1796_REG_BASE]; | ||
693 | if (changed) { | ||
694 | for (i = 0; i < data->dacs; ++i) | ||
695 | pcm1796_write(chip, i, 19, reg); | ||
696 | } | ||
697 | mutex_unlock(&chip->mutex); | ||
698 | return changed; | ||
699 | } | ||
700 | |||
701 | static const struct snd_kcontrol_new rolloff_control = { | ||
702 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
703 | .name = "DAC Filter Playback Enum", | ||
704 | .info = rolloff_info, | ||
705 | .get = rolloff_get, | ||
706 | .put = rolloff_put, | ||
707 | }; | ||
708 | |||
709 | static int os_128_info(struct snd_kcontrol *ctl, struct snd_ctl_elem_info *info) | ||
710 | { | ||
711 | static const char *const names[2] = { "64x", "128x" }; | ||
712 | |||
713 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
714 | info->count = 1; | ||
715 | info->value.enumerated.items = 2; | ||
716 | if (info->value.enumerated.item >= 2) | ||
717 | info->value.enumerated.item = 1; | ||
718 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
719 | return 0; | ||
720 | } | ||
721 | |||
722 | static int os_128_get(struct snd_kcontrol *ctl, | ||
723 | struct snd_ctl_elem_value *value) | ||
724 | { | ||
725 | struct oxygen *chip = ctl->private_data; | ||
726 | struct xonar_pcm179x *data = chip->model_data; | ||
727 | |||
728 | value->value.enumerated.item[0] = data->os_128; | ||
729 | return 0; | ||
730 | } | ||
731 | |||
732 | static int os_128_put(struct snd_kcontrol *ctl, | ||
733 | struct snd_ctl_elem_value *value) | ||
734 | { | ||
735 | struct oxygen *chip = ctl->private_data; | ||
736 | struct xonar_pcm179x *data = chip->model_data; | ||
737 | int changed; | ||
738 | |||
739 | mutex_lock(&chip->mutex); | ||
740 | changed = value->value.enumerated.item[0] != data->os_128; | ||
741 | if (changed) { | ||
742 | data->os_128 = value->value.enumerated.item[0]; | ||
743 | if (data->has_cs2000) | ||
744 | update_cs2000_rate(chip, data->current_rate); | ||
745 | oxygen_write16_masked(chip, OXYGEN_I2S_MULTICH_FORMAT, | ||
746 | mclk_from_rate(chip, data->current_rate), | ||
747 | OXYGEN_I2S_MCLK_MASK); | ||
748 | update_pcm1796_oversampling(chip); | ||
749 | } | ||
750 | mutex_unlock(&chip->mutex); | ||
751 | return changed; | ||
752 | } | ||
753 | |||
754 | static const struct snd_kcontrol_new os_128_control = { | ||
755 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
756 | .name = "DAC Oversampling Playback Enum", | ||
757 | .info = os_128_info, | ||
758 | .get = os_128_get, | ||
759 | .put = os_128_put, | ||
760 | }; | ||
761 | |||
762 | static int st_output_switch_info(struct snd_kcontrol *ctl, | ||
763 | struct snd_ctl_elem_info *info) | ||
764 | { | ||
765 | static const char *const names[3] = { | ||
766 | "Speakers", "Headphones", "FP Headphones" | ||
767 | }; | ||
768 | |||
769 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
770 | info->count = 1; | ||
771 | info->value.enumerated.items = 3; | ||
772 | if (info->value.enumerated.item >= 3) | ||
773 | info->value.enumerated.item = 2; | ||
774 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
775 | return 0; | ||
776 | } | ||
777 | |||
778 | static int st_output_switch_get(struct snd_kcontrol *ctl, | ||
779 | struct snd_ctl_elem_value *value) | ||
780 | { | ||
781 | struct oxygen *chip = ctl->private_data; | ||
782 | u16 gpio; | ||
783 | |||
784 | gpio = oxygen_read16(chip, OXYGEN_GPIO_DATA); | ||
785 | if (!(gpio & GPIO_ST_HP)) | ||
786 | value->value.enumerated.item[0] = 0; | ||
787 | else if (gpio & GPIO_ST_HP_REAR) | ||
788 | value->value.enumerated.item[0] = 1; | ||
789 | else | ||
790 | value->value.enumerated.item[0] = 2; | ||
791 | return 0; | ||
792 | } | ||
793 | |||
794 | |||
795 | static int st_output_switch_put(struct snd_kcontrol *ctl, | ||
796 | struct snd_ctl_elem_value *value) | ||
797 | { | ||
798 | struct oxygen *chip = ctl->private_data; | ||
799 | struct xonar_pcm179x *data = chip->model_data; | ||
800 | u16 gpio_old, gpio; | ||
801 | |||
802 | mutex_lock(&chip->mutex); | ||
803 | gpio_old = oxygen_read16(chip, OXYGEN_GPIO_DATA); | ||
804 | gpio = gpio_old; | ||
805 | switch (value->value.enumerated.item[0]) { | ||
806 | case 0: | ||
807 | gpio &= ~(GPIO_ST_HP | GPIO_ST_HP_REAR); | ||
808 | break; | ||
809 | case 1: | ||
810 | gpio |= GPIO_ST_HP | GPIO_ST_HP_REAR; | ||
811 | break; | ||
812 | case 2: | ||
813 | gpio = (gpio | GPIO_ST_HP) & ~GPIO_ST_HP_REAR; | ||
814 | break; | ||
815 | } | ||
816 | oxygen_write16(chip, OXYGEN_GPIO_DATA, gpio); | ||
817 | data->hp_active = gpio & GPIO_ST_HP; | ||
818 | update_pcm1796_volume(chip); | ||
819 | mutex_unlock(&chip->mutex); | ||
820 | return gpio != gpio_old; | ||
821 | } | ||
822 | |||
823 | static int st_hp_volume_offset_info(struct snd_kcontrol *ctl, | ||
824 | struct snd_ctl_elem_info *info) | ||
825 | { | ||
826 | static const char *const names[3] = { | ||
827 | "< 64 ohms", "64-300 ohms", "300-600 ohms" | ||
828 | }; | ||
829 | |||
830 | info->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; | ||
831 | info->count = 1; | ||
832 | info->value.enumerated.items = 3; | ||
833 | if (info->value.enumerated.item > 2) | ||
834 | info->value.enumerated.item = 2; | ||
835 | strcpy(info->value.enumerated.name, names[info->value.enumerated.item]); | ||
836 | return 0; | ||
837 | } | ||
838 | |||
839 | static int st_hp_volume_offset_get(struct snd_kcontrol *ctl, | ||
840 | struct snd_ctl_elem_value *value) | ||
841 | { | ||
842 | struct oxygen *chip = ctl->private_data; | ||
843 | struct xonar_pcm179x *data = chip->model_data; | ||
844 | |||
845 | mutex_lock(&chip->mutex); | ||
846 | if (data->hp_gain_offset < 2*-6) | ||
847 | value->value.enumerated.item[0] = 0; | ||
848 | else if (data->hp_gain_offset < 0) | ||
849 | value->value.enumerated.item[0] = 1; | ||
850 | else | ||
851 | value->value.enumerated.item[0] = 2; | ||
852 | mutex_unlock(&chip->mutex); | ||
853 | return 0; | ||
854 | } | ||
855 | |||
856 | |||
857 | static int st_hp_volume_offset_put(struct snd_kcontrol *ctl, | ||
858 | struct snd_ctl_elem_value *value) | ||
859 | { | ||
860 | static const s8 offsets[] = { 2*-18, 2*-6, 0 }; | ||
861 | struct oxygen *chip = ctl->private_data; | ||
862 | struct xonar_pcm179x *data = chip->model_data; | ||
863 | s8 offset; | ||
864 | int changed; | ||
865 | |||
866 | if (value->value.enumerated.item[0] > 2) | ||
867 | return -EINVAL; | ||
868 | offset = offsets[value->value.enumerated.item[0]]; | ||
869 | mutex_lock(&chip->mutex); | ||
870 | changed = offset != data->hp_gain_offset; | ||
871 | if (changed) { | ||
872 | data->hp_gain_offset = offset; | ||
873 | update_pcm1796_volume(chip); | ||
874 | } | ||
875 | mutex_unlock(&chip->mutex); | ||
876 | return changed; | ||
877 | } | ||
878 | |||
879 | static const struct snd_kcontrol_new st_controls[] = { | ||
880 | { | ||
881 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
882 | .name = "Analog Output", | ||
883 | .info = st_output_switch_info, | ||
884 | .get = st_output_switch_get, | ||
885 | .put = st_output_switch_put, | ||
886 | }, | ||
887 | { | ||
888 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | ||
889 | .name = "Headphones Impedance Playback Enum", | ||
890 | .info = st_hp_volume_offset_info, | ||
891 | .get = st_hp_volume_offset_get, | ||
892 | .put = st_hp_volume_offset_put, | ||
893 | }, | ||
894 | }; | ||
895 | |||
896 | static void xonar_line_mic_ac97_switch(struct oxygen *chip, | ||
897 | unsigned int reg, unsigned int mute) | ||
898 | { | ||
899 | if (reg == AC97_LINE) { | ||
900 | spin_lock_irq(&chip->reg_lock); | ||
901 | oxygen_write16_masked(chip, OXYGEN_GPIO_DATA, | ||
902 | mute ? GPIO_INPUT_ROUTE : 0, | ||
903 | GPIO_INPUT_ROUTE); | ||
904 | spin_unlock_irq(&chip->reg_lock); | ||
905 | } | ||
906 | } | ||
907 | |||
908 | static const DECLARE_TLV_DB_SCALE(pcm1796_db_scale, -6000, 50, 0); | ||
909 | |||
910 | static int xonar_d2_control_filter(struct snd_kcontrol_new *template) | ||
911 | { | ||
912 | if (!strncmp(template->name, "CD Capture ", 11)) | ||
913 | /* CD in is actually connected to the video in pin */ | ||
914 | template->private_value ^= AC97_CD ^ AC97_VIDEO; | ||
915 | return 0; | ||
916 | } | ||
917 | |||
918 | static int xonar_st_control_filter(struct snd_kcontrol_new *template) | ||
919 | { | ||
920 | if (!strncmp(template->name, "CD Capture ", 11)) | ||
921 | return 1; /* no CD input */ | ||
922 | return 0; | ||
923 | } | ||
924 | |||
925 | static int add_pcm1796_controls(struct oxygen *chip) | ||
926 | { | ||
927 | int err; | ||
928 | |||
929 | err = snd_ctl_add(chip->card, snd_ctl_new1(&rolloff_control, chip)); | ||
930 | if (err < 0) | ||
931 | return err; | ||
932 | err = snd_ctl_add(chip->card, snd_ctl_new1(&os_128_control, chip)); | ||
933 | if (err < 0) | ||
934 | return err; | ||
935 | return 0; | ||
936 | } | ||
937 | |||
938 | static int xonar_d2_mixer_init(struct oxygen *chip) | ||
939 | { | ||
940 | int err; | ||
941 | |||
942 | err = snd_ctl_add(chip->card, snd_ctl_new1(&alt_switch, chip)); | ||
943 | if (err < 0) | ||
944 | return err; | ||
945 | err = add_pcm1796_controls(chip); | ||
946 | if (err < 0) | ||
947 | return err; | ||
948 | return 0; | ||
949 | } | ||
950 | |||
951 | static int xonar_hdav_mixer_init(struct oxygen *chip) | ||
952 | { | ||
953 | return add_pcm1796_controls(chip); | ||
954 | } | ||
955 | |||
956 | static int xonar_st_mixer_init(struct oxygen *chip) | ||
957 | { | ||
958 | unsigned int i; | ||
959 | int err; | ||
960 | |||
961 | for (i = 0; i < ARRAY_SIZE(st_controls); ++i) { | ||
962 | err = snd_ctl_add(chip->card, | ||
963 | snd_ctl_new1(&st_controls[i], chip)); | ||
964 | if (err < 0) | ||
965 | return err; | ||
966 | } | ||
967 | err = add_pcm1796_controls(chip); | ||
968 | if (err < 0) | ||
969 | return err; | ||
970 | return 0; | ||
971 | } | ||
972 | |||
973 | static const struct oxygen_model model_xonar_d2 = { | ||
974 | .longname = "Asus Virtuoso 200", | ||
975 | .chip = "AV200", | ||
976 | .init = xonar_d2_init, | ||
977 | .control_filter = xonar_d2_control_filter, | ||
978 | .mixer_init = xonar_d2_mixer_init, | ||
979 | .cleanup = xonar_d2_cleanup, | ||
980 | .suspend = xonar_d2_suspend, | ||
981 | .resume = xonar_d2_resume, | ||
982 | .get_i2s_mclk = get_pcm1796_i2s_mclk, | ||
983 | .set_dac_params = set_pcm1796_params, | ||
984 | .set_adc_params = xonar_set_cs53x1_params, | ||
985 | .update_dac_volume = update_pcm1796_volume, | ||
986 | .update_dac_mute = update_pcm1796_mute, | ||
987 | .dac_tlv = pcm1796_db_scale, | ||
988 | .model_data_size = sizeof(struct xonar_pcm179x), | ||
989 | .device_config = PLAYBACK_0_TO_I2S | | ||
990 | PLAYBACK_1_TO_SPDIF | | ||
991 | CAPTURE_0_FROM_I2S_2 | | ||
992 | CAPTURE_1_FROM_SPDIF | | ||
993 | MIDI_OUTPUT | | ||
994 | MIDI_INPUT, | ||
995 | .dac_channels = 8, | ||
996 | .dac_volume_min = 255 - 2*60, | ||
997 | .dac_volume_max = 255, | ||
998 | .misc_flags = OXYGEN_MISC_MIDI, | ||
999 | .function_flags = OXYGEN_FUNCTION_SPI | | ||
1000 | OXYGEN_FUNCTION_ENABLE_SPI_4_5, | ||
1001 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1002 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1003 | }; | ||
1004 | |||
1005 | static const struct oxygen_model model_xonar_hdav = { | ||
1006 | .longname = "Asus Virtuoso 200", | ||
1007 | .chip = "AV200", | ||
1008 | .init = xonar_hdav_init, | ||
1009 | .mixer_init = xonar_hdav_mixer_init, | ||
1010 | .cleanup = xonar_hdav_cleanup, | ||
1011 | .suspend = xonar_hdav_suspend, | ||
1012 | .resume = xonar_hdav_resume, | ||
1013 | .pcm_hardware_filter = xonar_hdmi_pcm_hardware_filter, | ||
1014 | .get_i2s_mclk = get_pcm1796_i2s_mclk, | ||
1015 | .set_dac_params = set_hdav_params, | ||
1016 | .set_adc_params = xonar_set_cs53x1_params, | ||
1017 | .update_dac_volume = update_pcm1796_volume, | ||
1018 | .update_dac_mute = update_pcm1796_mute, | ||
1019 | .uart_input = xonar_hdmi_uart_input, | ||
1020 | .ac97_switch = xonar_line_mic_ac97_switch, | ||
1021 | .dac_tlv = pcm1796_db_scale, | ||
1022 | .model_data_size = sizeof(struct xonar_hdav), | ||
1023 | .device_config = PLAYBACK_0_TO_I2S | | ||
1024 | PLAYBACK_1_TO_SPDIF | | ||
1025 | CAPTURE_0_FROM_I2S_2 | | ||
1026 | CAPTURE_1_FROM_SPDIF, | ||
1027 | .dac_channels = 8, | ||
1028 | .dac_volume_min = 255 - 2*60, | ||
1029 | .dac_volume_max = 255, | ||
1030 | .misc_flags = OXYGEN_MISC_MIDI, | ||
1031 | .function_flags = OXYGEN_FUNCTION_2WIRE, | ||
1032 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1033 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1034 | }; | ||
1035 | |||
1036 | static const struct oxygen_model model_xonar_st = { | ||
1037 | .longname = "Asus Virtuoso 100", | ||
1038 | .chip = "AV200", | ||
1039 | .init = xonar_st_init, | ||
1040 | .control_filter = xonar_st_control_filter, | ||
1041 | .mixer_init = xonar_st_mixer_init, | ||
1042 | .cleanup = xonar_st_cleanup, | ||
1043 | .suspend = xonar_st_suspend, | ||
1044 | .resume = xonar_st_resume, | ||
1045 | .get_i2s_mclk = get_pcm1796_i2s_mclk, | ||
1046 | .set_dac_params = set_st_params, | ||
1047 | .set_adc_params = xonar_set_cs53x1_params, | ||
1048 | .update_dac_volume = update_pcm1796_volume, | ||
1049 | .update_dac_mute = update_pcm1796_mute, | ||
1050 | .ac97_switch = xonar_line_mic_ac97_switch, | ||
1051 | .dac_tlv = pcm1796_db_scale, | ||
1052 | .model_data_size = sizeof(struct xonar_pcm179x), | ||
1053 | .device_config = PLAYBACK_0_TO_I2S | | ||
1054 | PLAYBACK_1_TO_SPDIF | | ||
1055 | CAPTURE_0_FROM_I2S_2, | ||
1056 | .dac_channels = 2, | ||
1057 | .dac_volume_min = 255 - 2*60, | ||
1058 | .dac_volume_max = 255, | ||
1059 | .function_flags = OXYGEN_FUNCTION_2WIRE, | ||
1060 | .dac_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1061 | .adc_i2s_format = OXYGEN_I2S_FORMAT_LJUST, | ||
1062 | }; | ||
1063 | |||
1064 | int __devinit get_xonar_pcm179x_model(struct oxygen *chip, | ||
1065 | const struct pci_device_id *id) | ||
1066 | { | ||
1067 | switch (id->subdevice) { | ||
1068 | case 0x8269: | ||
1069 | chip->model = model_xonar_d2; | ||
1070 | chip->model.shortname = "Xonar D2"; | ||
1071 | break; | ||
1072 | case 0x82b7: | ||
1073 | chip->model = model_xonar_d2; | ||
1074 | chip->model.shortname = "Xonar D2X"; | ||
1075 | chip->model.init = xonar_d2x_init; | ||
1076 | break; | ||
1077 | case 0x8314: | ||
1078 | chip->model = model_xonar_hdav; | ||
1079 | oxygen_clear_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_DB_MASK); | ||
1080 | switch (oxygen_read16(chip, OXYGEN_GPIO_DATA) & GPIO_DB_MASK) { | ||
1081 | default: | ||
1082 | chip->model.shortname = "Xonar HDAV1.3"; | ||
1083 | break; | ||
1084 | case GPIO_DB_H6: | ||
1085 | chip->model.shortname = "Xonar HDAV1.3+H6"; | ||
1086 | chip->model.private_data = 1; | ||
1087 | break; | ||
1088 | } | ||
1089 | break; | ||
1090 | case 0x835d: | ||
1091 | chip->model = model_xonar_st; | ||
1092 | oxygen_clear_bits16(chip, OXYGEN_GPIO_CONTROL, GPIO_DB_MASK); | ||
1093 | switch (oxygen_read16(chip, OXYGEN_GPIO_DATA) & GPIO_DB_MASK) { | ||
1094 | default: | ||
1095 | chip->model.shortname = "Xonar ST"; | ||
1096 | break; | ||
1097 | case GPIO_DB_H6: | ||
1098 | chip->model.shortname = "Xonar ST+H6"; | ||
1099 | chip->model.dac_channels = 8; | ||
1100 | chip->model.private_data = 1; | ||
1101 | break; | ||
1102 | } | ||
1103 | break; | ||
1104 | case 0x835c: | ||
1105 | chip->model = model_xonar_st; | ||
1106 | chip->model.shortname = "Xonar STX"; | ||
1107 | chip->model.init = xonar_stx_init; | ||
1108 | chip->model.resume = xonar_stx_resume; | ||
1109 | chip->model.set_dac_params = set_pcm1796_params; | ||
1110 | break; | ||
1111 | default: | ||
1112 | return -EINVAL; | ||
1113 | } | ||
1114 | return 0; | ||
1115 | } | ||
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index acfa4760da49..8a332d2f615c 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c | |||
@@ -386,6 +386,7 @@ struct via82xx { | |||
386 | 386 | ||
387 | struct snd_pcm *pcms[2]; | 387 | struct snd_pcm *pcms[2]; |
388 | struct snd_rawmidi *rmidi; | 388 | struct snd_rawmidi *rmidi; |
389 | struct snd_kcontrol *dxs_controls[4]; | ||
389 | 390 | ||
390 | struct snd_ac97_bus *ac97_bus; | 391 | struct snd_ac97_bus *ac97_bus; |
391 | struct snd_ac97 *ac97; | 392 | struct snd_ac97 *ac97; |
@@ -1216,9 +1217,9 @@ static int snd_via82xx_pcm_open(struct via82xx *chip, struct viadev *viadev, | |||
1216 | 1217 | ||
1217 | 1218 | ||
1218 | /* | 1219 | /* |
1219 | * open callback for playback on via686 and via823x DSX | 1220 | * open callback for playback on via686 |
1220 | */ | 1221 | */ |
1221 | static int snd_via82xx_playback_open(struct snd_pcm_substream *substream) | 1222 | static int snd_via686_playback_open(struct snd_pcm_substream *substream) |
1222 | { | 1223 | { |
1223 | struct via82xx *chip = snd_pcm_substream_chip(substream); | 1224 | struct via82xx *chip = snd_pcm_substream_chip(substream); |
1224 | struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number]; | 1225 | struct viadev *viadev = &chip->devs[chip->playback_devno + substream->number]; |
@@ -1230,6 +1231,32 @@ static int snd_via82xx_playback_open(struct snd_pcm_substream *substream) | |||
1230 | } | 1231 | } |
1231 | 1232 | ||
1232 | /* | 1233 | /* |
1234 | * open callback for playback on via823x DXS | ||
1235 | */ | ||
1236 | static int snd_via8233_playback_open(struct snd_pcm_substream *substream) | ||
1237 | { | ||
1238 | struct via82xx *chip = snd_pcm_substream_chip(substream); | ||
1239 | struct viadev *viadev; | ||
1240 | unsigned int stream; | ||
1241 | int err; | ||
1242 | |||
1243 | viadev = &chip->devs[chip->playback_devno + substream->number]; | ||
1244 | if ((err = snd_via82xx_pcm_open(chip, viadev, substream)) < 0) | ||
1245 | return err; | ||
1246 | stream = viadev->reg_offset / 0x10; | ||
1247 | if (chip->dxs_controls[stream]) { | ||
1248 | chip->playback_volume[stream][0] = 0; | ||
1249 | chip->playback_volume[stream][1] = 0; | ||
1250 | chip->dxs_controls[stream]->vd[0].access &= | ||
1251 | ~SNDRV_CTL_ELEM_ACCESS_INACTIVE; | ||
1252 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_VALUE | | ||
1253 | SNDRV_CTL_EVENT_MASK_INFO, | ||
1254 | &chip->dxs_controls[stream]->id); | ||
1255 | } | ||
1256 | return 0; | ||
1257 | } | ||
1258 | |||
1259 | /* | ||
1233 | * open callback for playback on via823x multi-channel | 1260 | * open callback for playback on via823x multi-channel |
1234 | */ | 1261 | */ |
1235 | static int snd_via8233_multi_open(struct snd_pcm_substream *substream) | 1262 | static int snd_via8233_multi_open(struct snd_pcm_substream *substream) |
@@ -1302,10 +1329,26 @@ static int snd_via82xx_pcm_close(struct snd_pcm_substream *substream) | |||
1302 | return 0; | 1329 | return 0; |
1303 | } | 1330 | } |
1304 | 1331 | ||
1332 | static int snd_via8233_playback_close(struct snd_pcm_substream *substream) | ||
1333 | { | ||
1334 | struct via82xx *chip = snd_pcm_substream_chip(substream); | ||
1335 | struct viadev *viadev = substream->runtime->private_data; | ||
1336 | unsigned int stream; | ||
1337 | |||
1338 | stream = viadev->reg_offset / 0x10; | ||
1339 | if (chip->dxs_controls[stream]) { | ||
1340 | chip->dxs_controls[stream]->vd[0].access |= | ||
1341 | SNDRV_CTL_ELEM_ACCESS_INACTIVE; | ||
1342 | snd_ctl_notify(chip->card, SNDRV_CTL_EVENT_MASK_INFO, | ||
1343 | &chip->dxs_controls[stream]->id); | ||
1344 | } | ||
1345 | return snd_via82xx_pcm_close(substream); | ||
1346 | } | ||
1347 | |||
1305 | 1348 | ||
1306 | /* via686 playback callbacks */ | 1349 | /* via686 playback callbacks */ |
1307 | static struct snd_pcm_ops snd_via686_playback_ops = { | 1350 | static struct snd_pcm_ops snd_via686_playback_ops = { |
1308 | .open = snd_via82xx_playback_open, | 1351 | .open = snd_via686_playback_open, |
1309 | .close = snd_via82xx_pcm_close, | 1352 | .close = snd_via82xx_pcm_close, |
1310 | .ioctl = snd_pcm_lib_ioctl, | 1353 | .ioctl = snd_pcm_lib_ioctl, |
1311 | .hw_params = snd_via82xx_hw_params, | 1354 | .hw_params = snd_via82xx_hw_params, |
@@ -1331,8 +1374,8 @@ static struct snd_pcm_ops snd_via686_capture_ops = { | |||
1331 | 1374 | ||
1332 | /* via823x DSX playback callbacks */ | 1375 | /* via823x DSX playback callbacks */ |
1333 | static struct snd_pcm_ops snd_via8233_playback_ops = { | 1376 | static struct snd_pcm_ops snd_via8233_playback_ops = { |
1334 | .open = snd_via82xx_playback_open, | 1377 | .open = snd_via8233_playback_open, |
1335 | .close = snd_via82xx_pcm_close, | 1378 | .close = snd_via8233_playback_close, |
1336 | .ioctl = snd_pcm_lib_ioctl, | 1379 | .ioctl = snd_pcm_lib_ioctl, |
1337 | .hw_params = snd_via82xx_hw_params, | 1380 | .hw_params = snd_via82xx_hw_params, |
1338 | .hw_free = snd_via82xx_hw_free, | 1381 | .hw_free = snd_via82xx_hw_free, |
@@ -1626,7 +1669,7 @@ static int snd_via8233_dxs_volume_get(struct snd_kcontrol *kcontrol, | |||
1626 | struct snd_ctl_elem_value *ucontrol) | 1669 | struct snd_ctl_elem_value *ucontrol) |
1627 | { | 1670 | { |
1628 | struct via82xx *chip = snd_kcontrol_chip(kcontrol); | 1671 | struct via82xx *chip = snd_kcontrol_chip(kcontrol); |
1629 | unsigned int idx = snd_ctl_get_ioff(kcontrol, &ucontrol->id); | 1672 | unsigned int idx = kcontrol->id.subdevice; |
1630 | 1673 | ||
1631 | ucontrol->value.integer.value[0] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][0]; | 1674 | ucontrol->value.integer.value[0] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][0]; |
1632 | ucontrol->value.integer.value[1] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][1]; | 1675 | ucontrol->value.integer.value[1] = VIA_DXS_MAX_VOLUME - chip->playback_volume[idx][1]; |
@@ -1646,7 +1689,7 @@ static int snd_via8233_dxs_volume_put(struct snd_kcontrol *kcontrol, | |||
1646 | struct snd_ctl_elem_value *ucontrol) | 1689 | struct snd_ctl_elem_value *ucontrol) |
1647 | { | 1690 | { |
1648 | struct via82xx *chip = snd_kcontrol_chip(kcontrol); | 1691 | struct via82xx *chip = snd_kcontrol_chip(kcontrol); |
1649 | unsigned int idx = snd_ctl_get_ioff(kcontrol, &ucontrol->id); | 1692 | unsigned int idx = kcontrol->id.subdevice; |
1650 | unsigned long port = chip->port + 0x10 * idx; | 1693 | unsigned long port = chip->port + 0x10 * idx; |
1651 | unsigned char val; | 1694 | unsigned char val; |
1652 | int i, change = 0; | 1695 | int i, change = 0; |
@@ -1705,11 +1748,13 @@ static struct snd_kcontrol_new snd_via8233_pcmdxs_volume_control __devinitdata = | |||
1705 | }; | 1748 | }; |
1706 | 1749 | ||
1707 | static struct snd_kcontrol_new snd_via8233_dxs_volume_control __devinitdata = { | 1750 | static struct snd_kcontrol_new snd_via8233_dxs_volume_control __devinitdata = { |
1708 | .name = "VIA DXS Playback Volume", | 1751 | .iface = SNDRV_CTL_ELEM_IFACE_PCM, |
1709 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 1752 | .device = 0, |
1710 | .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | | 1753 | /* .subdevice set later */ |
1711 | SNDRV_CTL_ELEM_ACCESS_TLV_READ), | 1754 | .name = "PCM Playback Volume", |
1712 | .count = 4, | 1755 | .access = SNDRV_CTL_ELEM_ACCESS_READWRITE | |
1756 | SNDRV_CTL_ELEM_ACCESS_TLV_READ | | ||
1757 | SNDRV_CTL_ELEM_ACCESS_INACTIVE, | ||
1713 | .info = snd_via8233_dxs_volume_info, | 1758 | .info = snd_via8233_dxs_volume_info, |
1714 | .get = snd_via8233_dxs_volume_get, | 1759 | .get = snd_via8233_dxs_volume_get, |
1715 | .put = snd_via8233_dxs_volume_put, | 1760 | .put = snd_via8233_dxs_volume_put, |
@@ -1936,10 +1981,19 @@ static int __devinit snd_via8233_init_misc(struct via82xx *chip) | |||
1936 | } | 1981 | } |
1937 | else /* Using DXS when PCM emulation is enabled is really weird */ | 1982 | else /* Using DXS when PCM emulation is enabled is really weird */ |
1938 | { | 1983 | { |
1939 | /* Standalone DXS controls */ | 1984 | for (i = 0; i < 4; ++i) { |
1940 | err = snd_ctl_add(chip->card, snd_ctl_new1(&snd_via8233_dxs_volume_control, chip)); | 1985 | struct snd_kcontrol *kctl; |
1941 | if (err < 0) | 1986 | |
1942 | return err; | 1987 | kctl = snd_ctl_new1( |
1988 | &snd_via8233_dxs_volume_control, chip); | ||
1989 | if (!kctl) | ||
1990 | return -ENOMEM; | ||
1991 | kctl->id.subdevice = i; | ||
1992 | err = snd_ctl_add(chip->card, kctl); | ||
1993 | if (err < 0) | ||
1994 | return err; | ||
1995 | chip->dxs_controls[i] = kctl; | ||
1996 | } | ||
1943 | } | 1997 | } |
1944 | } | 1998 | } |
1945 | /* select spdif data slot 10/11 */ | 1999 | /* select spdif data slot 10/11 */ |
diff --git a/sound/ppc/awacs.c b/sound/ppc/awacs.c index 2cc0eda4f20e..2e156467b814 100644 --- a/sound/ppc/awacs.c +++ b/sound/ppc/awacs.c | |||
@@ -479,7 +479,7 @@ static int snd_pmac_awacs_put_master_amp(struct snd_kcontrol *kcontrol, | |||
479 | 479 | ||
480 | static struct snd_kcontrol_new snd_pmac_awacs_amp_vol[] __devinitdata = { | 480 | static struct snd_kcontrol_new snd_pmac_awacs_amp_vol[] __devinitdata = { |
481 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 481 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
482 | .name = "PC Speaker Playback Volume", | 482 | .name = "Speaker Playback Volume", |
483 | .info = snd_pmac_awacs_info_volume_amp, | 483 | .info = snd_pmac_awacs_info_volume_amp, |
484 | .get = snd_pmac_awacs_get_volume_amp, | 484 | .get = snd_pmac_awacs_get_volume_amp, |
485 | .put = snd_pmac_awacs_put_volume_amp, | 485 | .put = snd_pmac_awacs_put_volume_amp, |
@@ -525,7 +525,7 @@ static struct snd_kcontrol_new snd_pmac_awacs_amp_hp_sw __devinitdata = { | |||
525 | 525 | ||
526 | static struct snd_kcontrol_new snd_pmac_awacs_amp_spk_sw __devinitdata = { | 526 | static struct snd_kcontrol_new snd_pmac_awacs_amp_spk_sw __devinitdata = { |
527 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 527 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
528 | .name = "PC Speaker Playback Switch", | 528 | .name = "Speaker Playback Switch", |
529 | .info = snd_pmac_boolean_stereo_info, | 529 | .info = snd_pmac_boolean_stereo_info, |
530 | .get = snd_pmac_awacs_get_switch_amp, | 530 | .get = snd_pmac_awacs_get_switch_amp, |
531 | .put = snd_pmac_awacs_put_switch_amp, | 531 | .put = snd_pmac_awacs_put_switch_amp, |
@@ -696,17 +696,17 @@ static struct snd_kcontrol_new snd_pmac_screamer_mic_boost_imac[] __devinitdata | |||
696 | }; | 696 | }; |
697 | 697 | ||
698 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_vol[] __devinitdata = { | 698 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_vol[] __devinitdata = { |
699 | AWACS_VOLUME("PC Speaker Playback Volume", 4, 6, 1), | 699 | AWACS_VOLUME("Speaker Playback Volume", 4, 6, 1), |
700 | }; | 700 | }; |
701 | 701 | ||
702 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw __devinitdata = | 702 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw __devinitdata = |
703 | AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_SPKMUTE, 1); | 703 | AWACS_SWITCH("Speaker Playback Switch", 1, SHIFT_SPKMUTE, 1); |
704 | 704 | ||
705 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac1 __devinitdata = | 705 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac1 __devinitdata = |
706 | AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_PAROUT1, 1); | 706 | AWACS_SWITCH("Speaker Playback Switch", 1, SHIFT_PAROUT1, 1); |
707 | 707 | ||
708 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac2 __devinitdata = | 708 | static struct snd_kcontrol_new snd_pmac_awacs_speaker_sw_imac2 __devinitdata = |
709 | AWACS_SWITCH("PC Speaker Playback Switch", 1, SHIFT_PAROUT1, 0); | 709 | AWACS_SWITCH("Speaker Playback Switch", 1, SHIFT_PAROUT1, 0); |
710 | 710 | ||
711 | 711 | ||
712 | /* | 712 | /* |
diff --git a/sound/ppc/burgundy.c b/sound/ppc/burgundy.c index 16ed240e423c..0accfe49735b 100644 --- a/sound/ppc/burgundy.c +++ b/sound/ppc/burgundy.c | |||
@@ -505,7 +505,7 @@ static struct snd_kcontrol_new snd_pmac_burgundy_mixers_imac[] __devinitdata = { | |||
505 | MASK_ADDR_BURGUNDY_GAINLINE, 1, 0), | 505 | MASK_ADDR_BURGUNDY_GAINLINE, 1, 0), |
506 | BURGUNDY_VOLUME_B("Mic Gain Capture Volume", 0, | 506 | BURGUNDY_VOLUME_B("Mic Gain Capture Volume", 0, |
507 | MASK_ADDR_BURGUNDY_GAINMIC, 1, 0), | 507 | MASK_ADDR_BURGUNDY_GAINMIC, 1, 0), |
508 | BURGUNDY_VOLUME_B("PC Speaker Playback Volume", 0, | 508 | BURGUNDY_VOLUME_B("Speaker Playback Volume", 0, |
509 | MASK_ADDR_BURGUNDY_ATTENSPEAKER, 1, 1), | 509 | MASK_ADDR_BURGUNDY_ATTENSPEAKER, 1, 1), |
510 | BURGUNDY_VOLUME_B("Line out Playback Volume", 0, | 510 | BURGUNDY_VOLUME_B("Line out Playback Volume", 0, |
511 | MASK_ADDR_BURGUNDY_ATTENLINEOUT, 1, 1), | 511 | MASK_ADDR_BURGUNDY_ATTENLINEOUT, 1, 1), |
@@ -527,7 +527,7 @@ static struct snd_kcontrol_new snd_pmac_burgundy_mixers_pmac[] __devinitdata = { | |||
527 | MASK_ADDR_BURGUNDY_VOLMIC, 16), | 527 | MASK_ADDR_BURGUNDY_VOLMIC, 16), |
528 | BURGUNDY_VOLUME_B("Line in Gain Capture Volume", 0, | 528 | BURGUNDY_VOLUME_B("Line in Gain Capture Volume", 0, |
529 | MASK_ADDR_BURGUNDY_GAINMIC, 1, 0), | 529 | MASK_ADDR_BURGUNDY_GAINMIC, 1, 0), |
530 | BURGUNDY_VOLUME_B("PC Speaker Playback Volume", 0, | 530 | BURGUNDY_VOLUME_B("Speaker Playback Volume", 0, |
531 | MASK_ADDR_BURGUNDY_ATTENMONO, 0, 1), | 531 | MASK_ADDR_BURGUNDY_ATTENMONO, 0, 1), |
532 | BURGUNDY_VOLUME_B("Line out Playback Volume", 0, | 532 | BURGUNDY_VOLUME_B("Line out Playback Volume", 0, |
533 | MASK_ADDR_BURGUNDY_ATTENSPEAKER, 1, 1), | 533 | MASK_ADDR_BURGUNDY_ATTENSPEAKER, 1, 1), |
@@ -549,11 +549,11 @@ BURGUNDY_SWITCH_B("Master Playback Switch", 0, | |||
549 | BURGUNDY_OUTPUT_INTERN | 549 | BURGUNDY_OUTPUT_INTERN |
550 | | BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1); | 550 | | BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1); |
551 | static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_imac __devinitdata = | 551 | static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_imac __devinitdata = |
552 | BURGUNDY_SWITCH_B("PC Speaker Playback Switch", 0, | 552 | BURGUNDY_SWITCH_B("Speaker Playback Switch", 0, |
553 | MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES, | 553 | MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES, |
554 | BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1); | 554 | BURGUNDY_OUTPUT_LEFT, BURGUNDY_OUTPUT_RIGHT, 1); |
555 | static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_pmac __devinitdata = | 555 | static struct snd_kcontrol_new snd_pmac_burgundy_speaker_sw_pmac __devinitdata = |
556 | BURGUNDY_SWITCH_B("PC Speaker Playback Switch", 0, | 556 | BURGUNDY_SWITCH_B("Speaker Playback Switch", 0, |
557 | MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES, | 557 | MASK_ADDR_BURGUNDY_MORE_OUTPUTENABLES, |
558 | BURGUNDY_OUTPUT_INTERN, 0, 0); | 558 | BURGUNDY_OUTPUT_INTERN, 0, 0); |
559 | static struct snd_kcontrol_new snd_pmac_burgundy_line_sw_imac __devinitdata = | 559 | static struct snd_kcontrol_new snd_pmac_burgundy_line_sw_imac __devinitdata = |
diff --git a/sound/ppc/keywest.c b/sound/ppc/keywest.c index 835fa19ed461..d06f780bd7e8 100644 --- a/sound/ppc/keywest.c +++ b/sound/ppc/keywest.c | |||
@@ -59,6 +59,18 @@ static int keywest_attach_adapter(struct i2c_adapter *adapter) | |||
59 | strlcpy(info.type, "keywest", I2C_NAME_SIZE); | 59 | strlcpy(info.type, "keywest", I2C_NAME_SIZE); |
60 | info.addr = keywest_ctx->addr; | 60 | info.addr = keywest_ctx->addr; |
61 | keywest_ctx->client = i2c_new_device(adapter, &info); | 61 | keywest_ctx->client = i2c_new_device(adapter, &info); |
62 | if (!keywest_ctx->client) | ||
63 | return -ENODEV; | ||
64 | /* | ||
65 | * We know the driver is already loaded, so the device should be | ||
66 | * already bound. If not it means binding failed, and then there | ||
67 | * is no point in keeping the device instantiated. | ||
68 | */ | ||
69 | if (!keywest_ctx->client->driver) { | ||
70 | i2c_unregister_device(keywest_ctx->client); | ||
71 | keywest_ctx->client = NULL; | ||
72 | return -ENODEV; | ||
73 | } | ||
62 | 74 | ||
63 | /* | 75 | /* |
64 | * Let i2c-core delete that device on driver removal. | 76 | * Let i2c-core delete that device on driver removal. |
@@ -86,7 +98,7 @@ static const struct i2c_device_id keywest_i2c_id[] = { | |||
86 | { } | 98 | { } |
87 | }; | 99 | }; |
88 | 100 | ||
89 | struct i2c_driver keywest_driver = { | 101 | static struct i2c_driver keywest_driver = { |
90 | .driver = { | 102 | .driver = { |
91 | .name = "PMac Keywest Audio", | 103 | .name = "PMac Keywest Audio", |
92 | }, | 104 | }, |
diff --git a/sound/ppc/tumbler.c b/sound/ppc/tumbler.c index 08e584d1453a..789f44f4ac78 100644 --- a/sound/ppc/tumbler.c +++ b/sound/ppc/tumbler.c | |||
@@ -905,7 +905,7 @@ static struct snd_kcontrol_new tumbler_hp_sw __devinitdata = { | |||
905 | }; | 905 | }; |
906 | static struct snd_kcontrol_new tumbler_speaker_sw __devinitdata = { | 906 | static struct snd_kcontrol_new tumbler_speaker_sw __devinitdata = { |
907 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, | 907 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
908 | .name = "PC Speaker Playback Switch", | 908 | .name = "Speaker Playback Switch", |
909 | .info = snd_pmac_boolean_mono_info, | 909 | .info = snd_pmac_boolean_mono_info, |
910 | .get = tumbler_get_mute_switch, | 910 | .get = tumbler_get_mute_switch, |
911 | .put = tumbler_put_mute_switch, | 911 | .put = tumbler_put_mute_switch, |
diff --git a/sound/sh/Kconfig b/sound/sh/Kconfig index aed0f90c3919..61139f3c1614 100644 --- a/sound/sh/Kconfig +++ b/sound/sh/Kconfig | |||
@@ -19,5 +19,13 @@ config SND_AICA | |||
19 | help | 19 | help |
20 | ALSA Sound driver for the SEGA Dreamcast console. | 20 | ALSA Sound driver for the SEGA Dreamcast console. |
21 | 21 | ||
22 | config SND_SH_DAC_AUDIO | ||
23 | tristate "SuperH DAC audio support" | ||
24 | depends on SND | ||
25 | depends on CPU_SH3 && HIGH_RES_TIMERS | ||
26 | select SND_PCM | ||
27 | help | ||
28 | Say Y here to include support for the on-chip DAC. | ||
29 | |||
22 | endif # SND_SUPERH | 30 | endif # SND_SUPERH |
23 | 31 | ||
diff --git a/sound/sh/Makefile b/sound/sh/Makefile index 8fdcb6e26f00..7d09b5188cf7 100644 --- a/sound/sh/Makefile +++ b/sound/sh/Makefile | |||
@@ -3,6 +3,8 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | snd-aica-objs := aica.o | 5 | snd-aica-objs := aica.o |
6 | snd-sh_dac_audio-objs := sh_dac_audio.o | ||
6 | 7 | ||
7 | # Toplevel Module Dependency | 8 | # Toplevel Module Dependency |
8 | obj-$(CONFIG_SND_AICA) += snd-aica.o | 9 | obj-$(CONFIG_SND_AICA) += snd-aica.o |
10 | obj-$(CONFIG_SND_SH_DAC_AUDIO) += snd-sh_dac_audio.o | ||
diff --git a/sound/sh/sh_dac_audio.c b/sound/sh/sh_dac_audio.c new file mode 100644 index 000000000000..76d9ad27d91c --- /dev/null +++ b/sound/sh/sh_dac_audio.c | |||
@@ -0,0 +1,453 @@ | |||
1 | /* | ||
2 | * sh_dac_audio.c - SuperH DAC audio driver for ALSA | ||
3 | * | ||
4 | * Copyright (c) 2009 by Rafael Ignacio Zurita <rizurita@yahoo.com> | ||
5 | * | ||
6 | * | ||
7 | * Based on sh_dac_audio.c (Copyright (C) 2004, 2005 by Andriy Skulysh) | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
22 | * | ||
23 | */ | ||
24 | |||
25 | #include <linux/hrtimer.h> | ||
26 | #include <linux/interrupt.h> | ||
27 | #include <linux/io.h> | ||
28 | #include <linux/platform_device.h> | ||
29 | #include <sound/core.h> | ||
30 | #include <sound/initval.h> | ||
31 | #include <sound/pcm.h> | ||
32 | #include <sound/sh_dac_audio.h> | ||
33 | #include <asm/clock.h> | ||
34 | #include <asm/hd64461.h> | ||
35 | #include <mach/hp6xx.h> | ||
36 | #include <cpu/dac.h> | ||
37 | |||
38 | MODULE_AUTHOR("Rafael Ignacio Zurita <rizurita@yahoo.com>"); | ||
39 | MODULE_DESCRIPTION("SuperH DAC audio driver"); | ||
40 | MODULE_LICENSE("GPL"); | ||
41 | MODULE_SUPPORTED_DEVICE("{{SuperH DAC audio support}}"); | ||
42 | |||
43 | /* Module Parameters */ | ||
44 | static int index = SNDRV_DEFAULT_IDX1; | ||
45 | static char *id = SNDRV_DEFAULT_STR1; | ||
46 | module_param(index, int, 0444); | ||
47 | MODULE_PARM_DESC(index, "Index value for SuperH DAC audio."); | ||
48 | module_param(id, charp, 0444); | ||
49 | MODULE_PARM_DESC(id, "ID string for SuperH DAC audio."); | ||
50 | |||
51 | /* main struct */ | ||
52 | struct snd_sh_dac { | ||
53 | struct snd_card *card; | ||
54 | struct snd_pcm_substream *substream; | ||
55 | struct hrtimer hrtimer; | ||
56 | ktime_t wakeups_per_second; | ||
57 | |||
58 | int rate; | ||
59 | int empty; | ||
60 | char *data_buffer, *buffer_begin, *buffer_end; | ||
61 | int processed; /* bytes proccesed, to compare with period_size */ | ||
62 | int buffer_size; | ||
63 | struct dac_audio_pdata *pdata; | ||
64 | }; | ||
65 | |||
66 | |||
67 | static void dac_audio_start_timer(struct snd_sh_dac *chip) | ||
68 | { | ||
69 | hrtimer_start(&chip->hrtimer, chip->wakeups_per_second, | ||
70 | HRTIMER_MODE_REL); | ||
71 | } | ||
72 | |||
73 | static void dac_audio_stop_timer(struct snd_sh_dac *chip) | ||
74 | { | ||
75 | hrtimer_cancel(&chip->hrtimer); | ||
76 | } | ||
77 | |||
78 | static void dac_audio_reset(struct snd_sh_dac *chip) | ||
79 | { | ||
80 | dac_audio_stop_timer(chip); | ||
81 | chip->buffer_begin = chip->buffer_end = chip->data_buffer; | ||
82 | chip->processed = 0; | ||
83 | chip->empty = 1; | ||
84 | } | ||
85 | |||
86 | static void dac_audio_set_rate(struct snd_sh_dac *chip) | ||
87 | { | ||
88 | chip->wakeups_per_second = ktime_set(0, 1000000000 / chip->rate); | ||
89 | } | ||
90 | |||
91 | |||
92 | /* PCM INTERFACE */ | ||
93 | |||
94 | static struct snd_pcm_hardware snd_sh_dac_pcm_hw = { | ||
95 | .info = (SNDRV_PCM_INFO_MMAP | | ||
96 | SNDRV_PCM_INFO_MMAP_VALID | | ||
97 | SNDRV_PCM_INFO_INTERLEAVED | | ||
98 | SNDRV_PCM_INFO_HALF_DUPLEX), | ||
99 | .formats = SNDRV_PCM_FMTBIT_U8, | ||
100 | .rates = SNDRV_PCM_RATE_8000, | ||
101 | .rate_min = 8000, | ||
102 | .rate_max = 8000, | ||
103 | .channels_min = 1, | ||
104 | .channels_max = 1, | ||
105 | .buffer_bytes_max = (48*1024), | ||
106 | .period_bytes_min = 1, | ||
107 | .period_bytes_max = (48*1024), | ||
108 | .periods_min = 1, | ||
109 | .periods_max = 1024, | ||
110 | }; | ||
111 | |||
112 | static int snd_sh_dac_pcm_open(struct snd_pcm_substream *substream) | ||
113 | { | ||
114 | struct snd_sh_dac *chip = snd_pcm_substream_chip(substream); | ||
115 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
116 | |||
117 | runtime->hw = snd_sh_dac_pcm_hw; | ||
118 | |||
119 | chip->substream = substream; | ||
120 | chip->buffer_begin = chip->buffer_end = chip->data_buffer; | ||
121 | chip->processed = 0; | ||
122 | chip->empty = 1; | ||
123 | |||
124 | chip->pdata->start(chip->pdata); | ||
125 | |||
126 | return 0; | ||
127 | } | ||
128 | |||
129 | static int snd_sh_dac_pcm_close(struct snd_pcm_substream *substream) | ||
130 | { | ||
131 | struct snd_sh_dac *chip = snd_pcm_substream_chip(substream); | ||
132 | |||
133 | chip->substream = NULL; | ||
134 | |||
135 | dac_audio_stop_timer(chip); | ||
136 | chip->pdata->stop(chip->pdata); | ||
137 | |||
138 | return 0; | ||
139 | } | ||
140 | |||
141 | static int snd_sh_dac_pcm_hw_params(struct snd_pcm_substream *substream, | ||
142 | struct snd_pcm_hw_params *hw_params) | ||
143 | { | ||
144 | return snd_pcm_lib_malloc_pages(substream, | ||
145 | params_buffer_bytes(hw_params)); | ||
146 | } | ||
147 | |||
148 | static int snd_sh_dac_pcm_hw_free(struct snd_pcm_substream *substream) | ||
149 | { | ||
150 | return snd_pcm_lib_free_pages(substream); | ||
151 | } | ||
152 | |||
153 | static int snd_sh_dac_pcm_prepare(struct snd_pcm_substream *substream) | ||
154 | { | ||
155 | struct snd_sh_dac *chip = snd_pcm_substream_chip(substream); | ||
156 | struct snd_pcm_runtime *runtime = chip->substream->runtime; | ||
157 | |||
158 | chip->buffer_size = runtime->buffer_size; | ||
159 | memset(chip->data_buffer, 0, chip->pdata->buffer_size); | ||
160 | |||
161 | return 0; | ||
162 | } | ||
163 | |||
164 | static int snd_sh_dac_pcm_trigger(struct snd_pcm_substream *substream, int cmd) | ||
165 | { | ||
166 | struct snd_sh_dac *chip = snd_pcm_substream_chip(substream); | ||
167 | |||
168 | switch (cmd) { | ||
169 | case SNDRV_PCM_TRIGGER_START: | ||
170 | dac_audio_start_timer(chip); | ||
171 | break; | ||
172 | case SNDRV_PCM_TRIGGER_STOP: | ||
173 | chip->buffer_begin = chip->buffer_end = chip->data_buffer; | ||
174 | chip->processed = 0; | ||
175 | chip->empty = 1; | ||
176 | dac_audio_stop_timer(chip); | ||
177 | break; | ||
178 | default: | ||
179 | return -EINVAL; | ||
180 | } | ||
181 | |||
182 | return 0; | ||
183 | } | ||
184 | |||
185 | static int snd_sh_dac_pcm_copy(struct snd_pcm_substream *substream, int channel, | ||
186 | snd_pcm_uframes_t pos, void __user *src, snd_pcm_uframes_t count) | ||
187 | { | ||
188 | /* channel is not used (interleaved data) */ | ||
189 | struct snd_sh_dac *chip = snd_pcm_substream_chip(substream); | ||
190 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
191 | ssize_t b_count = frames_to_bytes(runtime , count); | ||
192 | ssize_t b_pos = frames_to_bytes(runtime , pos); | ||
193 | |||
194 | if (count < 0) | ||
195 | return -EINVAL; | ||
196 | |||
197 | if (!count) | ||
198 | return 0; | ||
199 | |||
200 | memcpy_toio(chip->data_buffer + b_pos, src, b_count); | ||
201 | chip->buffer_end = chip->data_buffer + b_pos + b_count; | ||
202 | |||
203 | if (chip->empty) { | ||
204 | chip->empty = 0; | ||
205 | dac_audio_start_timer(chip); | ||
206 | } | ||
207 | |||
208 | return 0; | ||
209 | } | ||
210 | |||
211 | static int snd_sh_dac_pcm_silence(struct snd_pcm_substream *substream, | ||
212 | int channel, snd_pcm_uframes_t pos, | ||
213 | snd_pcm_uframes_t count) | ||
214 | { | ||
215 | /* channel is not used (interleaved data) */ | ||
216 | struct snd_sh_dac *chip = snd_pcm_substream_chip(substream); | ||
217 | struct snd_pcm_runtime *runtime = substream->runtime; | ||
218 | ssize_t b_count = frames_to_bytes(runtime , count); | ||
219 | ssize_t b_pos = frames_to_bytes(runtime , pos); | ||
220 | |||
221 | if (count < 0) | ||
222 | return -EINVAL; | ||
223 | |||
224 | if (!count) | ||
225 | return 0; | ||
226 | |||
227 | memset_io(chip->data_buffer + b_pos, 0, b_count); | ||
228 | chip->buffer_end = chip->data_buffer + b_pos + b_count; | ||
229 | |||
230 | if (chip->empty) { | ||
231 | chip->empty = 0; | ||
232 | dac_audio_start_timer(chip); | ||
233 | } | ||
234 | |||
235 | return 0; | ||
236 | } | ||
237 | |||
238 | static | ||
239 | snd_pcm_uframes_t snd_sh_dac_pcm_pointer(struct snd_pcm_substream *substream) | ||
240 | { | ||
241 | struct snd_sh_dac *chip = snd_pcm_substream_chip(substream); | ||
242 | int pointer = chip->buffer_begin - chip->data_buffer; | ||
243 | |||
244 | return pointer; | ||
245 | } | ||
246 | |||
247 | /* pcm ops */ | ||
248 | static struct snd_pcm_ops snd_sh_dac_pcm_ops = { | ||
249 | .open = snd_sh_dac_pcm_open, | ||
250 | .close = snd_sh_dac_pcm_close, | ||
251 | .ioctl = snd_pcm_lib_ioctl, | ||
252 | .hw_params = snd_sh_dac_pcm_hw_params, | ||
253 | .hw_free = snd_sh_dac_pcm_hw_free, | ||
254 | .prepare = snd_sh_dac_pcm_prepare, | ||
255 | .trigger = snd_sh_dac_pcm_trigger, | ||
256 | .pointer = snd_sh_dac_pcm_pointer, | ||
257 | .copy = snd_sh_dac_pcm_copy, | ||
258 | .silence = snd_sh_dac_pcm_silence, | ||
259 | .mmap = snd_pcm_lib_mmap_iomem, | ||
260 | }; | ||
261 | |||
262 | static int __devinit snd_sh_dac_pcm(struct snd_sh_dac *chip, int device) | ||
263 | { | ||
264 | int err; | ||
265 | struct snd_pcm *pcm; | ||
266 | |||
267 | /* device should be always 0 for us */ | ||
268 | err = snd_pcm_new(chip->card, "SH_DAC PCM", device, 1, 0, &pcm); | ||
269 | if (err < 0) | ||
270 | return err; | ||
271 | |||
272 | pcm->private_data = chip; | ||
273 | strcpy(pcm->name, "SH_DAC PCM"); | ||
274 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_sh_dac_pcm_ops); | ||
275 | |||
276 | /* buffer size=48K */ | ||
277 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_CONTINUOUS, | ||
278 | snd_dma_continuous_data(GFP_KERNEL), | ||
279 | 48 * 1024, | ||
280 | 48 * 1024); | ||
281 | |||
282 | return 0; | ||
283 | } | ||
284 | /* END OF PCM INTERFACE */ | ||
285 | |||
286 | |||
287 | /* driver .remove -- destructor */ | ||
288 | static int snd_sh_dac_remove(struct platform_device *devptr) | ||
289 | { | ||
290 | snd_card_free(platform_get_drvdata(devptr)); | ||
291 | platform_set_drvdata(devptr, NULL); | ||
292 | |||
293 | return 0; | ||
294 | } | ||
295 | |||
296 | /* free -- it has been defined by create */ | ||
297 | static int snd_sh_dac_free(struct snd_sh_dac *chip) | ||
298 | { | ||
299 | /* release the data */ | ||
300 | kfree(chip->data_buffer); | ||
301 | kfree(chip); | ||
302 | |||
303 | return 0; | ||
304 | } | ||
305 | |||
306 | static int snd_sh_dac_dev_free(struct snd_device *device) | ||
307 | { | ||
308 | struct snd_sh_dac *chip = device->device_data; | ||
309 | |||
310 | return snd_sh_dac_free(chip); | ||
311 | } | ||
312 | |||
313 | static enum hrtimer_restart sh_dac_audio_timer(struct hrtimer *handle) | ||
314 | { | ||
315 | struct snd_sh_dac *chip = container_of(handle, struct snd_sh_dac, | ||
316 | hrtimer); | ||
317 | struct snd_pcm_runtime *runtime = chip->substream->runtime; | ||
318 | ssize_t b_ps = frames_to_bytes(runtime, runtime->period_size); | ||
319 | |||
320 | if (!chip->empty) { | ||
321 | sh_dac_output(*chip->buffer_begin, chip->pdata->channel); | ||
322 | chip->buffer_begin++; | ||
323 | |||
324 | chip->processed++; | ||
325 | if (chip->processed >= b_ps) { | ||
326 | chip->processed -= b_ps; | ||
327 | snd_pcm_period_elapsed(chip->substream); | ||
328 | } | ||
329 | |||
330 | if (chip->buffer_begin == (chip->data_buffer + | ||
331 | chip->buffer_size - 1)) | ||
332 | chip->buffer_begin = chip->data_buffer; | ||
333 | |||
334 | if (chip->buffer_begin == chip->buffer_end) | ||
335 | chip->empty = 1; | ||
336 | |||
337 | } | ||
338 | |||
339 | if (!chip->empty) | ||
340 | hrtimer_start(&chip->hrtimer, chip->wakeups_per_second, | ||
341 | HRTIMER_MODE_REL); | ||
342 | |||
343 | return HRTIMER_NORESTART; | ||
344 | } | ||
345 | |||
346 | /* create -- chip-specific constructor for the cards components */ | ||
347 | static int __devinit snd_sh_dac_create(struct snd_card *card, | ||
348 | struct platform_device *devptr, | ||
349 | struct snd_sh_dac **rchip) | ||
350 | { | ||
351 | struct snd_sh_dac *chip; | ||
352 | int err; | ||
353 | |||
354 | static struct snd_device_ops ops = { | ||
355 | .dev_free = snd_sh_dac_dev_free, | ||
356 | }; | ||
357 | |||
358 | *rchip = NULL; | ||
359 | |||
360 | chip = kzalloc(sizeof(*chip), GFP_KERNEL); | ||
361 | if (chip == NULL) | ||
362 | return -ENOMEM; | ||
363 | |||
364 | chip->card = card; | ||
365 | |||
366 | hrtimer_init(&chip->hrtimer, CLOCK_MONOTONIC, HRTIMER_MODE_REL); | ||
367 | chip->hrtimer.function = sh_dac_audio_timer; | ||
368 | |||
369 | dac_audio_reset(chip); | ||
370 | chip->rate = 8000; | ||
371 | dac_audio_set_rate(chip); | ||
372 | |||
373 | chip->pdata = devptr->dev.platform_data; | ||
374 | |||
375 | chip->data_buffer = kmalloc(chip->pdata->buffer_size, GFP_KERNEL); | ||
376 | if (chip->data_buffer == NULL) { | ||
377 | kfree(chip); | ||
378 | return -ENOMEM; | ||
379 | } | ||
380 | |||
381 | err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops); | ||
382 | if (err < 0) { | ||
383 | snd_sh_dac_free(chip); | ||
384 | return err; | ||
385 | } | ||
386 | |||
387 | *rchip = chip; | ||
388 | |||
389 | return 0; | ||
390 | } | ||
391 | |||
392 | /* driver .probe -- constructor */ | ||
393 | static int __devinit snd_sh_dac_probe(struct platform_device *devptr) | ||
394 | { | ||
395 | struct snd_sh_dac *chip; | ||
396 | struct snd_card *card; | ||
397 | int err; | ||
398 | |||
399 | err = snd_card_create(index, id, THIS_MODULE, 0, &card); | ||
400 | if (err < 0) { | ||
401 | snd_printk(KERN_ERR "cannot allocate the card\n"); | ||
402 | return err; | ||
403 | } | ||
404 | |||
405 | err = snd_sh_dac_create(card, devptr, &chip); | ||
406 | if (err < 0) | ||
407 | goto probe_error; | ||
408 | |||
409 | err = snd_sh_dac_pcm(chip, 0); | ||
410 | if (err < 0) | ||
411 | goto probe_error; | ||
412 | |||
413 | strcpy(card->driver, "snd_sh_dac"); | ||
414 | strcpy(card->shortname, "SuperH DAC audio driver"); | ||
415 | printk(KERN_INFO "%s %s", card->longname, card->shortname); | ||
416 | |||
417 | err = snd_card_register(card); | ||
418 | if (err < 0) | ||
419 | goto probe_error; | ||
420 | |||
421 | snd_printk("ALSA driver for SuperH DAC audio"); | ||
422 | |||
423 | platform_set_drvdata(devptr, card); | ||
424 | return 0; | ||
425 | |||
426 | probe_error: | ||
427 | snd_card_free(card); | ||
428 | return err; | ||
429 | } | ||
430 | |||
431 | /* | ||
432 | * "driver" definition | ||
433 | */ | ||
434 | static struct platform_driver driver = { | ||
435 | .probe = snd_sh_dac_probe, | ||
436 | .remove = snd_sh_dac_remove, | ||
437 | .driver = { | ||
438 | .name = "dac_audio", | ||
439 | }, | ||
440 | }; | ||
441 | |||
442 | static int __init sh_dac_init(void) | ||
443 | { | ||
444 | return platform_driver_register(&driver); | ||
445 | } | ||
446 | |||
447 | static void __exit sh_dac_exit(void) | ||
448 | { | ||
449 | platform_driver_unregister(&driver); | ||
450 | } | ||
451 | |||
452 | module_init(sh_dac_init); | ||
453 | module_exit(sh_dac_exit); | ||
diff --git a/sound/soc/blackfin/Kconfig b/sound/soc/blackfin/Kconfig index ac927ffdc961..97f1a251e446 100644 --- a/sound/soc/blackfin/Kconfig +++ b/sound/soc/blackfin/Kconfig | |||
@@ -7,15 +7,6 @@ config SND_BF5XX_I2S | |||
7 | mode (supports single stereo In/Out). | 7 | mode (supports single stereo In/Out). |
8 | You will also need to select the audio interfaces to support below. | 8 | You will also need to select the audio interfaces to support below. |
9 | 9 | ||
10 | config SND_BF5XX_TDM | ||
11 | tristate "SoC I2S(TDM mode) Audio for the ADI BF5xx chip" | ||
12 | depends on (BLACKFIN && SND_SOC) | ||
13 | help | ||
14 | Say Y or M if you want to add support for codecs attached to | ||
15 | the Blackfin SPORT (synchronous serial ports) interface in TDM | ||
16 | mode. | ||
17 | You will also need to select the audio interfaces to support below. | ||
18 | |||
19 | config SND_BF5XX_SOC_SSM2602 | 10 | config SND_BF5XX_SOC_SSM2602 |
20 | tristate "SoC SSM2602 Audio support for BF52x ezkit" | 11 | tristate "SoC SSM2602 Audio support for BF52x ezkit" |
21 | depends on SND_BF5XX_I2S | 12 | depends on SND_BF5XX_I2S |
@@ -41,6 +32,31 @@ config SND_BFIN_AD73311_SE | |||
41 | Enter the GPIO used to control AD73311's SE pin. Acceptable | 32 | Enter the GPIO used to control AD73311's SE pin. Acceptable |
42 | values are 0 to 7 | 33 | values are 0 to 7 |
43 | 34 | ||
35 | config SND_BF5XX_TDM | ||
36 | tristate "SoC I2S(TDM mode) Audio for the ADI BF5xx chip" | ||
37 | depends on (BLACKFIN && SND_SOC) | ||
38 | help | ||
39 | Say Y or M if you want to add support for codecs attached to | ||
40 | the Blackfin SPORT (synchronous serial ports) interface in TDM | ||
41 | mode. | ||
42 | You will also need to select the audio interfaces to support below. | ||
43 | |||
44 | config SND_BF5XX_SOC_AD1836 | ||
45 | tristate "SoC AD1836 Audio support for BF5xx" | ||
46 | depends on SND_BF5XX_TDM | ||
47 | select SND_BF5XX_SOC_TDM | ||
48 | select SND_SOC_AD1836 | ||
49 | help | ||
50 | Say Y if you want to add support for SoC audio on BF5xx STAMP/EZKIT. | ||
51 | |||
52 | config SND_BF5XX_SOC_AD1938 | ||
53 | tristate "SoC AD1938 Audio support for Blackfin" | ||
54 | depends on SND_BF5XX_TDM | ||
55 | select SND_BF5XX_SOC_TDM | ||
56 | select SND_SOC_AD1938 | ||
57 | help | ||
58 | Say Y if you want to add support for AD1938 codec on Blackfin. | ||
59 | |||
44 | config SND_BF5XX_AC97 | 60 | config SND_BF5XX_AC97 |
45 | tristate "SoC AC97 Audio for the ADI BF5xx chip" | 61 | tristate "SoC AC97 Audio for the ADI BF5xx chip" |
46 | depends on BLACKFIN | 62 | depends on BLACKFIN |
@@ -71,6 +87,30 @@ config SND_BF5XX_MULTICHAN_SUPPORT | |||
71 | Say y if you want AC97 driver to support up to 5.1 channel audio. | 87 | Say y if you want AC97 driver to support up to 5.1 channel audio. |
72 | this mode will consume much more memory for DMA. | 88 | this mode will consume much more memory for DMA. |
73 | 89 | ||
90 | config SND_BF5XX_HAVE_COLD_RESET | ||
91 | bool "BOARD has COLD Reset GPIO" | ||
92 | depends on SND_BF5XX_AC97 | ||
93 | default y if BFIN548_EZKIT | ||
94 | default n if !BFIN548_EZKIT | ||
95 | |||
96 | config SND_BF5XX_RESET_GPIO_NUM | ||
97 | int "Set a GPIO for cold reset" | ||
98 | depends on SND_BF5XX_HAVE_COLD_RESET | ||
99 | range 0 159 | ||
100 | default 19 if BFIN548_EZKIT | ||
101 | default 5 if BFIN537_STAMP | ||
102 | default 0 | ||
103 | help | ||
104 | Set the correct GPIO for RESET the sound chip. | ||
105 | |||
106 | config SND_BF5XX_SOC_AD1980 | ||
107 | tristate "SoC AD1980/1 Audio support for BF5xx" | ||
108 | depends on SND_BF5XX_AC97 | ||
109 | select SND_BF5XX_SOC_AC97 | ||
110 | select SND_SOC_AD1980 | ||
111 | help | ||
112 | Say Y if you want to add support for SoC audio on BF5xx STAMP/EZKIT. | ||
113 | |||
74 | config SND_BF5XX_SOC_SPORT | 114 | config SND_BF5XX_SOC_SPORT |
75 | tristate | 115 | tristate |
76 | 116 | ||
@@ -88,30 +128,6 @@ config SND_BF5XX_SOC_AC97 | |||
88 | select SND_SOC_AC97_BUS | 128 | select SND_SOC_AC97_BUS |
89 | select SND_BF5XX_SOC_SPORT | 129 | select SND_BF5XX_SOC_SPORT |
90 | 130 | ||
91 | config SND_BF5XX_SOC_AD1836 | ||
92 | tristate "SoC AD1836 Audio support for BF5xx" | ||
93 | depends on SND_BF5XX_TDM | ||
94 | select SND_BF5XX_SOC_TDM | ||
95 | select SND_SOC_AD1836 | ||
96 | help | ||
97 | Say Y if you want to add support for SoC audio on BF5xx STAMP/EZKIT. | ||
98 | |||
99 | config SND_BF5XX_SOC_AD1980 | ||
100 | tristate "SoC AD1980/1 Audio support for BF5xx" | ||
101 | depends on SND_BF5XX_AC97 | ||
102 | select SND_BF5XX_SOC_AC97 | ||
103 | select SND_SOC_AD1980 | ||
104 | help | ||
105 | Say Y if you want to add support for SoC audio on BF5xx STAMP/EZKIT. | ||
106 | |||
107 | config SND_BF5XX_SOC_AD1938 | ||
108 | tristate "SoC AD1938 Audio support for Blackfin" | ||
109 | depends on SND_BF5XX_TDM | ||
110 | select SND_BF5XX_SOC_TDM | ||
111 | select SND_SOC_AD1938 | ||
112 | help | ||
113 | Say Y if you want to add support for AD1938 codec on Blackfin. | ||
114 | |||
115 | config SND_BF5XX_SPORT_NUM | 131 | config SND_BF5XX_SPORT_NUM |
116 | int "Set a SPORT for Sound chip" | 132 | int "Set a SPORT for Sound chip" |
117 | depends on (SND_BF5XX_I2S || SND_BF5XX_AC97 || SND_BF5XX_TDM) | 133 | depends on (SND_BF5XX_I2S || SND_BF5XX_AC97 || SND_BF5XX_TDM) |
@@ -120,19 +136,3 @@ config SND_BF5XX_SPORT_NUM | |||
120 | default 0 | 136 | default 0 |
121 | help | 137 | help |
122 | Set the correct SPORT for sound chip. | 138 | Set the correct SPORT for sound chip. |
123 | |||
124 | config SND_BF5XX_HAVE_COLD_RESET | ||
125 | bool "BOARD has COLD Reset GPIO" | ||
126 | depends on SND_BF5XX_AC97 | ||
127 | default y if BFIN548_EZKIT | ||
128 | default n if !BFIN548_EZKIT | ||
129 | |||
130 | config SND_BF5XX_RESET_GPIO_NUM | ||
131 | int "Set a GPIO for cold reset" | ||
132 | depends on SND_BF5XX_HAVE_COLD_RESET | ||
133 | range 0 159 | ||
134 | default 19 if BFIN548_EZKIT | ||
135 | default 5 if BFIN537_STAMP | ||
136 | default 0 | ||
137 | help | ||
138 | Set the correct GPIO for RESET the sound chip. | ||
diff --git a/sound/soc/blackfin/bf5xx-ac97.c b/sound/soc/blackfin/bf5xx-ac97.c index 2758b9017a7f..e69322978739 100644 --- a/sound/soc/blackfin/bf5xx-ac97.c +++ b/sound/soc/blackfin/bf5xx-ac97.c | |||
@@ -277,7 +277,11 @@ static int bf5xx_ac97_resume(struct snd_soc_dai *dai) | |||
277 | if (!dai->active) | 277 | if (!dai->active) |
278 | return 0; | 278 | return 0; |
279 | 279 | ||
280 | #if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT) | ||
281 | ret = sport_set_multichannel(sport, 16, 0x3FF, 1); | ||
282 | #else | ||
280 | ret = sport_set_multichannel(sport, 16, 0x1F, 1); | 283 | ret = sport_set_multichannel(sport, 16, 0x1F, 1); |
284 | #endif | ||
281 | if (ret) { | 285 | if (ret) { |
282 | pr_err("SPORT is busy!\n"); | 286 | pr_err("SPORT is busy!\n"); |
283 | return -EBUSY; | 287 | return -EBUSY; |
@@ -334,7 +338,11 @@ static int bf5xx_ac97_probe(struct platform_device *pdev, | |||
334 | goto sport_err; | 338 | goto sport_err; |
335 | } | 339 | } |
336 | /*SPORT works in TDM mode to simulate AC97 transfers*/ | 340 | /*SPORT works in TDM mode to simulate AC97 transfers*/ |
341 | #if defined(CONFIG_SND_BF5XX_MULTICHAN_SUPPORT) | ||
342 | ret = sport_set_multichannel(sport_handle, 16, 0x3FF, 1); | ||
343 | #else | ||
337 | ret = sport_set_multichannel(sport_handle, 16, 0x1F, 1); | 344 | ret = sport_set_multichannel(sport_handle, 16, 0x1F, 1); |
345 | #endif | ||
338 | if (ret) { | 346 | if (ret) { |
339 | pr_err("SPORT is busy!\n"); | 347 | pr_err("SPORT is busy!\n"); |
340 | ret = -EBUSY; | 348 | ret = -EBUSY; |
diff --git a/sound/soc/blackfin/bf5xx-ac97.h b/sound/soc/blackfin/bf5xx-ac97.h index 3f2a911fe0cb..a1f97dd809d6 100644 --- a/sound/soc/blackfin/bf5xx-ac97.h +++ b/sound/soc/blackfin/bf5xx-ac97.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/sound/arm/bf5xx-ac97.h | 2 | * sound/soc/blackfin/bf5xx-ac97.h |
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or modify | 4 | * This program is free software; you can redistribute it and/or modify |
5 | * it under the terms of the GNU General Public License version 2 as | 5 | * it under the terms of the GNU General Public License version 2 as |
diff --git a/sound/soc/blackfin/bf5xx-i2s.c b/sound/soc/blackfin/bf5xx-i2s.c index 876abade27e1..084b68884ada 100644 --- a/sound/soc/blackfin/bf5xx-i2s.c +++ b/sound/soc/blackfin/bf5xx-i2s.c | |||
@@ -77,12 +77,12 @@ static struct sport_param sport_params[2] = { | |||
77 | * TFS. When Port G is selected and EMAC then there is a conflict between | 77 | * TFS. When Port G is selected and EMAC then there is a conflict between |
78 | * the PHY interrupt line and TFS. Current settings prevent the conflict | 78 | * the PHY interrupt line and TFS. Current settings prevent the conflict |
79 | * by ignoring the TFS pin when Port G is selected. This allows both | 79 | * by ignoring the TFS pin when Port G is selected. This allows both |
80 | * ssm2602 using Port G and EMAC concurrently. | 80 | * codecs and EMAC using Port G concurrently. |
81 | */ | 81 | */ |
82 | #ifdef CONFIG_BF527_SPORT0_PORTF | 82 | #ifdef CONFIG_BF527_SPORT0_PORTG |
83 | #define LOCAL_SPORT0_TFS (P_SPORT0_TFS) | ||
84 | #else | ||
85 | #define LOCAL_SPORT0_TFS (0) | 83 | #define LOCAL_SPORT0_TFS (0) |
84 | #else | ||
85 | #define LOCAL_SPORT0_TFS (P_SPORT0_TFS) | ||
86 | #endif | 86 | #endif |
87 | 87 | ||
88 | static u16 sport_req[][7] = { {P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 88 | static u16 sport_req[][7] = { {P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
@@ -227,7 +227,8 @@ static int bf5xx_i2s_probe(struct platform_device *pdev, | |||
227 | return 0; | 227 | return 0; |
228 | } | 228 | } |
229 | 229 | ||
230 | static void bf5xx_i2s_remove(struct snd_soc_dai *dai) | 230 | static void bf5xx_i2s_remove(struct platform_device *pdev, |
231 | struct snd_soc_dai *dai) | ||
231 | { | 232 | { |
232 | pr_debug("%s enter\n", __func__); | 233 | pr_debug("%s enter\n", __func__); |
233 | peripheral_free_list(&sport_req[sport_num][0]); | 234 | peripheral_free_list(&sport_req[sport_num][0]); |
@@ -236,36 +237,31 @@ static void bf5xx_i2s_remove(struct snd_soc_dai *dai) | |||
236 | #ifdef CONFIG_PM | 237 | #ifdef CONFIG_PM |
237 | static int bf5xx_i2s_suspend(struct snd_soc_dai *dai) | 238 | static int bf5xx_i2s_suspend(struct snd_soc_dai *dai) |
238 | { | 239 | { |
239 | struct sport_device *sport = | ||
240 | (struct sport_device *)dai->private_data; | ||
241 | 240 | ||
242 | pr_debug("%s : sport %d\n", __func__, dai->id); | 241 | pr_debug("%s : sport %d\n", __func__, dai->id); |
243 | if (!dai->active) | 242 | |
244 | return 0; | ||
245 | if (dai->capture.active) | 243 | if (dai->capture.active) |
246 | sport_rx_stop(sport); | 244 | sport_rx_stop(sport_handle); |
247 | if (dai->playback.active) | 245 | if (dai->playback.active) |
248 | sport_tx_stop(sport); | 246 | sport_tx_stop(sport_handle); |
249 | return 0; | 247 | return 0; |
250 | } | 248 | } |
251 | 249 | ||
252 | static int bf5xx_i2s_resume(struct snd_soc_dai *dai) | 250 | static int bf5xx_i2s_resume(struct snd_soc_dai *dai) |
253 | { | 251 | { |
254 | int ret; | 252 | int ret; |
255 | struct sport_device *sport = | ||
256 | (struct sport_device *)dai->private_data; | ||
257 | 253 | ||
258 | pr_debug("%s : sport %d\n", __func__, dai->id); | 254 | pr_debug("%s : sport %d\n", __func__, dai->id); |
259 | if (!dai->active) | ||
260 | return 0; | ||
261 | 255 | ||
262 | ret = sport_config_rx(sport, RFSR | RCKFE, RSFSE|0x1f, 0, 0); | 256 | ret = sport_config_rx(sport_handle, bf5xx_i2s.rcr1, |
257 | bf5xx_i2s.rcr2, 0, 0); | ||
263 | if (ret) { | 258 | if (ret) { |
264 | pr_err("SPORT is busy!\n"); | 259 | pr_err("SPORT is busy!\n"); |
265 | return -EBUSY; | 260 | return -EBUSY; |
266 | } | 261 | } |
267 | 262 | ||
268 | ret = sport_config_tx(sport, TFSR | TCKFE, TSFSE|0x1f, 0, 0); | 263 | ret = sport_config_tx(sport_handle, bf5xx_i2s.tcr1, |
264 | bf5xx_i2s.tcr2, 0, 0); | ||
269 | if (ret) { | 265 | if (ret) { |
270 | pr_err("SPORT is busy!\n"); | 266 | pr_err("SPORT is busy!\n"); |
271 | return -EBUSY; | 267 | return -EBUSY; |
diff --git a/sound/soc/blackfin/bf5xx-i2s.h b/sound/soc/blackfin/bf5xx-i2s.h index 7107d1a0b06b..264ecdcba35a 100644 --- a/sound/soc/blackfin/bf5xx-i2s.h +++ b/sound/soc/blackfin/bf5xx-i2s.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/sound/arm/bf5xx-i2s.h | 2 | * sound/soc/blackfin/bf5xx-i2s.h |
3 | * | 3 | * |
4 | * This program is free software; you can redistribute it and/or modify | 4 | * This program is free software; you can redistribute it and/or modify |
5 | * it under the terms of the GNU General Public License version 2 as | 5 | * it under the terms of the GNU General Public License version 2 as |
diff --git a/sound/soc/blackfin/bf5xx-sport.c b/sound/soc/blackfin/bf5xx-sport.c index 469ce7fab20c..99051ff0954e 100644 --- a/sound/soc/blackfin/bf5xx-sport.c +++ b/sound/soc/blackfin/bf5xx-sport.c | |||
@@ -326,7 +326,7 @@ static inline int sport_hook_tx_dummy(struct sport_device *sport) | |||
326 | 326 | ||
327 | int sport_tx_start(struct sport_device *sport) | 327 | int sport_tx_start(struct sport_device *sport) |
328 | { | 328 | { |
329 | unsigned flags; | 329 | unsigned long flags; |
330 | pr_debug("%s: tx_run:%d, rx_run:%d\n", __func__, | 330 | pr_debug("%s: tx_run:%d, rx_run:%d\n", __func__, |
331 | sport->tx_run, sport->rx_run); | 331 | sport->tx_run, sport->rx_run); |
332 | if (sport->tx_run) | 332 | if (sport->tx_run) |
diff --git a/sound/soc/blackfin/bf5xx-tdm.c b/sound/soc/blackfin/bf5xx-tdm.c index 3096badf09a5..ff546e91a22e 100644 --- a/sound/soc/blackfin/bf5xx-tdm.c +++ b/sound/soc/blackfin/bf5xx-tdm.c | |||
@@ -78,12 +78,12 @@ static struct sport_param sport_params[2] = { | |||
78 | * TFS. When Port G is selected and EMAC then there is a conflict between | 78 | * TFS. When Port G is selected and EMAC then there is a conflict between |
79 | * the PHY interrupt line and TFS. Current settings prevent the conflict | 79 | * the PHY interrupt line and TFS. Current settings prevent the conflict |
80 | * by ignoring the TFS pin when Port G is selected. This allows both | 80 | * by ignoring the TFS pin when Port G is selected. This allows both |
81 | * ssm2602 using Port G and EMAC concurrently. | 81 | * codecs and EMAC using Port G concurrently. |
82 | */ | 82 | */ |
83 | #ifdef CONFIG_BF527_SPORT0_PORTF | 83 | #ifdef CONFIG_BF527_SPORT0_PORTG |
84 | #define LOCAL_SPORT0_TFS (P_SPORT0_TFS) | ||
85 | #else | ||
86 | #define LOCAL_SPORT0_TFS (0) | 84 | #define LOCAL_SPORT0_TFS (0) |
85 | #else | ||
86 | #define LOCAL_SPORT0_TFS (P_SPORT0_TFS) | ||
87 | #endif | 87 | #endif |
88 | 88 | ||
89 | static u16 sport_req[][7] = { {P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, | 89 | static u16 sport_req[][7] = { {P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
diff --git a/sound/soc/codecs/ad1836.c b/sound/soc/codecs/ad1836.c index 01343dc984fd..c48485f2c55d 100644 --- a/sound/soc/codecs/ad1836.c +++ b/sound/soc/codecs/ad1836.c | |||
@@ -251,8 +251,7 @@ static int __devexit ad1836_spi_remove(struct spi_device *spi) | |||
251 | 251 | ||
252 | static struct spi_driver ad1836_spi_driver = { | 252 | static struct spi_driver ad1836_spi_driver = { |
253 | .driver = { | 253 | .driver = { |
254 | .name = "ad1836-spi", | 254 | .name = "ad1836", |
255 | .bus = &spi_bus_type, | ||
256 | .owner = THIS_MODULE, | 255 | .owner = THIS_MODULE, |
257 | }, | 256 | }, |
258 | .probe = ad1836_spi_probe, | 257 | .probe = ad1836_spi_probe, |
diff --git a/sound/soc/codecs/ad1938.c b/sound/soc/codecs/ad1938.c index 9a049a1995a3..34b30efc3cb0 100644 --- a/sound/soc/codecs/ad1938.c +++ b/sound/soc/codecs/ad1938.c | |||
@@ -456,7 +456,6 @@ static int __devexit ad1938_spi_remove(struct spi_device *spi) | |||
456 | static struct spi_driver ad1938_spi_driver = { | 456 | static struct spi_driver ad1938_spi_driver = { |
457 | .driver = { | 457 | .driver = { |
458 | .name = "ad1938", | 458 | .name = "ad1938", |
459 | .bus = &spi_bus_type, | ||
460 | .owner = THIS_MODULE, | 459 | .owner = THIS_MODULE, |
461 | }, | 460 | }, |
462 | .probe = ad1938_spi_probe, | 461 | .probe = ad1938_spi_probe, |
@@ -515,6 +514,7 @@ static int ad1938_register(struct ad1938_priv *ad1938) | |||
515 | codec->num_dai = 1; | 514 | codec->num_dai = 1; |
516 | codec->write = ad1938_write_reg; | 515 | codec->write = ad1938_write_reg; |
517 | codec->read = ad1938_read_reg_cache; | 516 | codec->read = ad1938_read_reg_cache; |
517 | codec->set_bias_level = ad1938_set_bias_level; | ||
518 | INIT_LIST_HEAD(&codec->dapm_widgets); | 518 | INIT_LIST_HEAD(&codec->dapm_widgets); |
519 | INIT_LIST_HEAD(&codec->dapm_paths); | 519 | INIT_LIST_HEAD(&codec->dapm_paths); |
520 | 520 | ||
diff --git a/sound/soc/codecs/tlv320aic23.c b/sound/soc/codecs/tlv320aic23.c index 0b8dcb5cd729..35606ae60868 100644 --- a/sound/soc/codecs/tlv320aic23.c +++ b/sound/soc/codecs/tlv320aic23.c | |||
@@ -85,7 +85,7 @@ static int tlv320aic23_write(struct snd_soc_codec *codec, unsigned int reg, | |||
85 | * of data into val | 85 | * of data into val |
86 | */ | 86 | */ |
87 | 87 | ||
88 | if ((reg < 0 || reg > 9) && (reg != 15)) { | 88 | if (reg > 9 && reg != 15) { |
89 | printk(KERN_WARNING "%s Invalid register R%u\n", __func__, reg); | 89 | printk(KERN_WARNING "%s Invalid register R%u\n", __func__, reg); |
90 | return -1; | 90 | return -1; |
91 | } | 91 | } |
diff --git a/sound/soc/codecs/wm8350.c b/sound/soc/codecs/wm8350.c index 3ff0373dff89..593d5b9c9f03 100644 --- a/sound/soc/codecs/wm8350.c +++ b/sound/soc/codecs/wm8350.c | |||
@@ -579,7 +579,7 @@ static const struct snd_kcontrol_new wm8350_left_capt_mixer_controls[] = { | |||
579 | SOC_DAPM_SINGLE_TLV("L3 Capture Volume", | 579 | SOC_DAPM_SINGLE_TLV("L3 Capture Volume", |
580 | WM8350_INPUT_MIXER_VOLUME_L, 9, 7, 0, out_mix_tlv), | 580 | WM8350_INPUT_MIXER_VOLUME_L, 9, 7, 0, out_mix_tlv), |
581 | SOC_DAPM_SINGLE("PGA Capture Switch", | 581 | SOC_DAPM_SINGLE("PGA Capture Switch", |
582 | WM8350_LEFT_INPUT_VOLUME, 14, 1, 0), | 582 | WM8350_LEFT_INPUT_VOLUME, 14, 1, 1), |
583 | }; | 583 | }; |
584 | 584 | ||
585 | /* Right Input Mixer */ | 585 | /* Right Input Mixer */ |
@@ -589,7 +589,7 @@ static const struct snd_kcontrol_new wm8350_right_capt_mixer_controls[] = { | |||
589 | SOC_DAPM_SINGLE_TLV("L3 Capture Volume", | 589 | SOC_DAPM_SINGLE_TLV("L3 Capture Volume", |
590 | WM8350_INPUT_MIXER_VOLUME_R, 13, 7, 0, out_mix_tlv), | 590 | WM8350_INPUT_MIXER_VOLUME_R, 13, 7, 0, out_mix_tlv), |
591 | SOC_DAPM_SINGLE("PGA Capture Switch", | 591 | SOC_DAPM_SINGLE("PGA Capture Switch", |
592 | WM8350_RIGHT_INPUT_VOLUME, 14, 1, 0), | 592 | WM8350_RIGHT_INPUT_VOLUME, 14, 1, 1), |
593 | }; | 593 | }; |
594 | 594 | ||
595 | /* Left Mic Mixer */ | 595 | /* Left Mic Mixer */ |
diff --git a/sound/soc/codecs/wm8753.c b/sound/soc/codecs/wm8753.c index d80d414cfbbd..5ad677ce80da 100644 --- a/sound/soc/codecs/wm8753.c +++ b/sound/soc/codecs/wm8753.c | |||
@@ -595,6 +595,7 @@ static const struct snd_soc_dapm_route audio_map[] = { | |||
595 | 595 | ||
596 | /* Mono Capture mixer-mux */ | 596 | /* Mono Capture mixer-mux */ |
597 | {"Capture Right Mixer", "Stereo", "Capture Right Mux"}, | 597 | {"Capture Right Mixer", "Stereo", "Capture Right Mux"}, |
598 | {"Capture Left Mixer", "Stereo", "Capture Left Mux"}, | ||
598 | {"Capture Left Mixer", "Analogue Mix Left", "Capture Left Mux"}, | 599 | {"Capture Left Mixer", "Analogue Mix Left", "Capture Left Mux"}, |
599 | {"Capture Left Mixer", "Analogue Mix Left", "Capture Right Mux"}, | 600 | {"Capture Left Mixer", "Analogue Mix Left", "Capture Right Mux"}, |
600 | {"Capture Right Mixer", "Analogue Mix Right", "Capture Left Mux"}, | 601 | {"Capture Right Mixer", "Analogue Mix Right", "Capture Left Mux"}, |
diff --git a/sound/soc/codecs/wm8940.c b/sound/soc/codecs/wm8940.c index da97aae475a2..1ef2454c5205 100644 --- a/sound/soc/codecs/wm8940.c +++ b/sound/soc/codecs/wm8940.c | |||
@@ -790,7 +790,7 @@ static int wm8940_register(struct wm8940_priv *wm8940, | |||
790 | codec->reg_cache = &wm8940->reg_cache; | 790 | codec->reg_cache = &wm8940->reg_cache; |
791 | 791 | ||
792 | ret = snd_soc_codec_set_cache_io(codec, 8, 16, control); | 792 | ret = snd_soc_codec_set_cache_io(codec, 8, 16, control); |
793 | if (ret == 0) { | 793 | if (ret < 0) { |
794 | dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); | 794 | dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); |
795 | return ret; | 795 | return ret; |
796 | } | 796 | } |
diff --git a/sound/soc/codecs/wm9081.c b/sound/soc/codecs/wm9081.c index c64e55aa63b6..686e5aa97206 100644 --- a/sound/soc/codecs/wm9081.c +++ b/sound/soc/codecs/wm9081.c | |||
@@ -1027,7 +1027,7 @@ static int wm9081_hw_params(struct snd_pcm_substream *substream, | |||
1027 | - wm9081->fs); | 1027 | - wm9081->fs); |
1028 | for (i = 1; i < ARRAY_SIZE(clk_sys_rates); i++) { | 1028 | for (i = 1; i < ARRAY_SIZE(clk_sys_rates); i++) { |
1029 | cur_val = abs((wm9081->sysclk_rate / | 1029 | cur_val = abs((wm9081->sysclk_rate / |
1030 | clk_sys_rates[i].ratio) - wm9081->fs);; | 1030 | clk_sys_rates[i].ratio) - wm9081->fs); |
1031 | if (cur_val < best_val) { | 1031 | if (cur_val < best_val) { |
1032 | best = i; | 1032 | best = i; |
1033 | best_val = cur_val; | 1033 | best_val = cur_val; |
diff --git a/sound/soc/codecs/wm9713.c b/sound/soc/codecs/wm9713.c index abed37acf787..60e360b10468 100644 --- a/sound/soc/codecs/wm9713.c +++ b/sound/soc/codecs/wm9713.c | |||
@@ -165,9 +165,9 @@ SOC_SINGLE("Mono Playback Switch", AC97_MASTER_TONE, 7, 1, 1), | |||
165 | SOC_SINGLE("Mono Playback ZC Switch", AC97_MASTER_TONE, 6, 1, 0), | 165 | SOC_SINGLE("Mono Playback ZC Switch", AC97_MASTER_TONE, 6, 1, 0), |
166 | SOC_SINGLE("Mono Playback Volume", AC97_MASTER_TONE, 0, 31, 1), | 166 | SOC_SINGLE("Mono Playback Volume", AC97_MASTER_TONE, 0, 31, 1), |
167 | 167 | ||
168 | SOC_SINGLE("PC Beep Playback Headphone Volume", AC97_AUX, 12, 7, 1), | 168 | SOC_SINGLE("Beep Playback Headphone Volume", AC97_AUX, 12, 7, 1), |
169 | SOC_SINGLE("PC Beep Playback Speaker Volume", AC97_AUX, 8, 7, 1), | 169 | SOC_SINGLE("Beep Playback Speaker Volume", AC97_AUX, 8, 7, 1), |
170 | SOC_SINGLE("PC Beep Playback Mono Volume", AC97_AUX, 4, 7, 1), | 170 | SOC_SINGLE("Beep Playback Mono Volume", AC97_AUX, 4, 7, 1), |
171 | 171 | ||
172 | SOC_SINGLE("Voice Playback Headphone Volume", AC97_PCM, 12, 7, 1), | 172 | SOC_SINGLE("Voice Playback Headphone Volume", AC97_PCM, 12, 7, 1), |
173 | SOC_SINGLE("Voice Playback Master Volume", AC97_PCM, 8, 7, 1), | 173 | SOC_SINGLE("Voice Playback Master Volume", AC97_PCM, 8, 7, 1), |
@@ -266,7 +266,7 @@ static int mixer_event(struct snd_soc_dapm_widget *w, | |||
266 | 266 | ||
267 | /* Left Headphone Mixers */ | 267 | /* Left Headphone Mixers */ |
268 | static const struct snd_kcontrol_new wm9713_hpl_mixer_controls[] = { | 268 | static const struct snd_kcontrol_new wm9713_hpl_mixer_controls[] = { |
269 | SOC_DAPM_SINGLE("PC Beep Playback Switch", HPL_MIXER, 5, 1, 0), | 269 | SOC_DAPM_SINGLE("Beep Playback Switch", HPL_MIXER, 5, 1, 0), |
270 | SOC_DAPM_SINGLE("Voice Playback Switch", HPL_MIXER, 4, 1, 0), | 270 | SOC_DAPM_SINGLE("Voice Playback Switch", HPL_MIXER, 4, 1, 0), |
271 | SOC_DAPM_SINGLE("Aux Playback Switch", HPL_MIXER, 3, 1, 0), | 271 | SOC_DAPM_SINGLE("Aux Playback Switch", HPL_MIXER, 3, 1, 0), |
272 | SOC_DAPM_SINGLE("PCM Playback Switch", HPL_MIXER, 2, 1, 0), | 272 | SOC_DAPM_SINGLE("PCM Playback Switch", HPL_MIXER, 2, 1, 0), |
@@ -276,7 +276,7 @@ SOC_DAPM_SINGLE("Bypass Playback Switch", HPL_MIXER, 0, 1, 0), | |||
276 | 276 | ||
277 | /* Right Headphone Mixers */ | 277 | /* Right Headphone Mixers */ |
278 | static const struct snd_kcontrol_new wm9713_hpr_mixer_controls[] = { | 278 | static const struct snd_kcontrol_new wm9713_hpr_mixer_controls[] = { |
279 | SOC_DAPM_SINGLE("PC Beep Playback Switch", HPR_MIXER, 5, 1, 0), | 279 | SOC_DAPM_SINGLE("Beep Playback Switch", HPR_MIXER, 5, 1, 0), |
280 | SOC_DAPM_SINGLE("Voice Playback Switch", HPR_MIXER, 4, 1, 0), | 280 | SOC_DAPM_SINGLE("Voice Playback Switch", HPR_MIXER, 4, 1, 0), |
281 | SOC_DAPM_SINGLE("Aux Playback Switch", HPR_MIXER, 3, 1, 0), | 281 | SOC_DAPM_SINGLE("Aux Playback Switch", HPR_MIXER, 3, 1, 0), |
282 | SOC_DAPM_SINGLE("PCM Playback Switch", HPR_MIXER, 2, 1, 0), | 282 | SOC_DAPM_SINGLE("PCM Playback Switch", HPR_MIXER, 2, 1, 0), |
@@ -294,7 +294,7 @@ SOC_DAPM_ENUM("Route", wm9713_enum[0]); | |||
294 | 294 | ||
295 | /* Speaker Mixer */ | 295 | /* Speaker Mixer */ |
296 | static const struct snd_kcontrol_new wm9713_speaker_mixer_controls[] = { | 296 | static const struct snd_kcontrol_new wm9713_speaker_mixer_controls[] = { |
297 | SOC_DAPM_SINGLE("PC Beep Playback Switch", AC97_AUX, 11, 1, 1), | 297 | SOC_DAPM_SINGLE("Beep Playback Switch", AC97_AUX, 11, 1, 1), |
298 | SOC_DAPM_SINGLE("Voice Playback Switch", AC97_PCM, 11, 1, 1), | 298 | SOC_DAPM_SINGLE("Voice Playback Switch", AC97_PCM, 11, 1, 1), |
299 | SOC_DAPM_SINGLE("Aux Playback Switch", AC97_REC_SEL, 11, 1, 1), | 299 | SOC_DAPM_SINGLE("Aux Playback Switch", AC97_REC_SEL, 11, 1, 1), |
300 | SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PHONE, 14, 1, 1), | 300 | SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PHONE, 14, 1, 1), |
@@ -304,7 +304,7 @@ SOC_DAPM_SINGLE("Bypass Playback Switch", AC97_PC_BEEP, 14, 1, 1), | |||
304 | 304 | ||
305 | /* Mono Mixer */ | 305 | /* Mono Mixer */ |
306 | static const struct snd_kcontrol_new wm9713_mono_mixer_controls[] = { | 306 | static const struct snd_kcontrol_new wm9713_mono_mixer_controls[] = { |
307 | SOC_DAPM_SINGLE("PC Beep Playback Switch", AC97_AUX, 7, 1, 1), | 307 | SOC_DAPM_SINGLE("Beep Playback Switch", AC97_AUX, 7, 1, 1), |
308 | SOC_DAPM_SINGLE("Voice Playback Switch", AC97_PCM, 7, 1, 1), | 308 | SOC_DAPM_SINGLE("Voice Playback Switch", AC97_PCM, 7, 1, 1), |
309 | SOC_DAPM_SINGLE("Aux Playback Switch", AC97_REC_SEL, 7, 1, 1), | 309 | SOC_DAPM_SINGLE("Aux Playback Switch", AC97_REC_SEL, 7, 1, 1), |
310 | SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PHONE, 13, 1, 1), | 310 | SOC_DAPM_SINGLE("PCM Playback Switch", AC97_PHONE, 13, 1, 1), |
@@ -463,7 +463,7 @@ SND_SOC_DAPM_VMID("VMID"), | |||
463 | 463 | ||
464 | static const struct snd_soc_dapm_route audio_map[] = { | 464 | static const struct snd_soc_dapm_route audio_map[] = { |
465 | /* left HP mixer */ | 465 | /* left HP mixer */ |
466 | {"Left HP Mixer", "PC Beep Playback Switch", "PCBEEP"}, | 466 | {"Left HP Mixer", "Beep Playback Switch", "PCBEEP"}, |
467 | {"Left HP Mixer", "Voice Playback Switch", "Voice DAC"}, | 467 | {"Left HP Mixer", "Voice Playback Switch", "Voice DAC"}, |
468 | {"Left HP Mixer", "Aux Playback Switch", "Aux DAC"}, | 468 | {"Left HP Mixer", "Aux Playback Switch", "Aux DAC"}, |
469 | {"Left HP Mixer", "Bypass Playback Switch", "Left Line In"}, | 469 | {"Left HP Mixer", "Bypass Playback Switch", "Left Line In"}, |
@@ -472,7 +472,7 @@ static const struct snd_soc_dapm_route audio_map[] = { | |||
472 | {"Left HP Mixer", NULL, "Capture Headphone Mux"}, | 472 | {"Left HP Mixer", NULL, "Capture Headphone Mux"}, |
473 | 473 | ||
474 | /* right HP mixer */ | 474 | /* right HP mixer */ |
475 | {"Right HP Mixer", "PC Beep Playback Switch", "PCBEEP"}, | 475 | {"Right HP Mixer", "Beep Playback Switch", "PCBEEP"}, |
476 | {"Right HP Mixer", "Voice Playback Switch", "Voice DAC"}, | 476 | {"Right HP Mixer", "Voice Playback Switch", "Voice DAC"}, |
477 | {"Right HP Mixer", "Aux Playback Switch", "Aux DAC"}, | 477 | {"Right HP Mixer", "Aux Playback Switch", "Aux DAC"}, |
478 | {"Right HP Mixer", "Bypass Playback Switch", "Right Line In"}, | 478 | {"Right HP Mixer", "Bypass Playback Switch", "Right Line In"}, |
@@ -491,7 +491,7 @@ static const struct snd_soc_dapm_route audio_map[] = { | |||
491 | {"Capture Mixer", NULL, "Right Capture Source"}, | 491 | {"Capture Mixer", NULL, "Right Capture Source"}, |
492 | 492 | ||
493 | /* speaker mixer */ | 493 | /* speaker mixer */ |
494 | {"Speaker Mixer", "PC Beep Playback Switch", "PCBEEP"}, | 494 | {"Speaker Mixer", "Beep Playback Switch", "PCBEEP"}, |
495 | {"Speaker Mixer", "Voice Playback Switch", "Voice DAC"}, | 495 | {"Speaker Mixer", "Voice Playback Switch", "Voice DAC"}, |
496 | {"Speaker Mixer", "Aux Playback Switch", "Aux DAC"}, | 496 | {"Speaker Mixer", "Aux Playback Switch", "Aux DAC"}, |
497 | {"Speaker Mixer", "Bypass Playback Switch", "Line Mixer"}, | 497 | {"Speaker Mixer", "Bypass Playback Switch", "Line Mixer"}, |
@@ -499,7 +499,7 @@ static const struct snd_soc_dapm_route audio_map[] = { | |||
499 | {"Speaker Mixer", "MonoIn Playback Switch", "Mono In"}, | 499 | {"Speaker Mixer", "MonoIn Playback Switch", "Mono In"}, |
500 | 500 | ||
501 | /* mono mixer */ | 501 | /* mono mixer */ |
502 | {"Mono Mixer", "PC Beep Playback Switch", "PCBEEP"}, | 502 | {"Mono Mixer", "Beep Playback Switch", "PCBEEP"}, |
503 | {"Mono Mixer", "Voice Playback Switch", "Voice DAC"}, | 503 | {"Mono Mixer", "Voice Playback Switch", "Voice DAC"}, |
504 | {"Mono Mixer", "Aux Playback Switch", "Aux DAC"}, | 504 | {"Mono Mixer", "Aux Playback Switch", "Aux DAC"}, |
505 | {"Mono Mixer", "Bypass Playback Switch", "Line Mixer"}, | 505 | {"Mono Mixer", "Bypass Playback Switch", "Line Mixer"}, |
diff --git a/sound/soc/davinci/davinci-i2s.c b/sound/soc/davinci/davinci-i2s.c index 12a6c549ee6e..4ae707048021 100644 --- a/sound/soc/davinci/davinci-i2s.c +++ b/sound/soc/davinci/davinci-i2s.c | |||
@@ -97,22 +97,19 @@ enum { | |||
97 | DAVINCI_MCBSP_WORD_32, | 97 | DAVINCI_MCBSP_WORD_32, |
98 | }; | 98 | }; |
99 | 99 | ||
100 | static struct davinci_pcm_dma_params davinci_i2s_pcm_out = { | ||
101 | .name = "I2S PCM Stereo out", | ||
102 | }; | ||
103 | |||
104 | static struct davinci_pcm_dma_params davinci_i2s_pcm_in = { | ||
105 | .name = "I2S PCM Stereo in", | ||
106 | }; | ||
107 | |||
108 | struct davinci_mcbsp_dev { | 100 | struct davinci_mcbsp_dev { |
101 | /* | ||
102 | * dma_params must be first because rtd->dai->cpu_dai->private_data | ||
103 | * is cast to a pointer of an array of struct davinci_pcm_dma_params in | ||
104 | * davinci_pcm_open. | ||
105 | */ | ||
106 | struct davinci_pcm_dma_params dma_params[2]; | ||
109 | void __iomem *base; | 107 | void __iomem *base; |
110 | #define MOD_DSP_A 0 | 108 | #define MOD_DSP_A 0 |
111 | #define MOD_DSP_B 1 | 109 | #define MOD_DSP_B 1 |
112 | int mode; | 110 | int mode; |
113 | u32 pcr; | 111 | u32 pcr; |
114 | struct clk *clk; | 112 | struct clk *clk; |
115 | struct davinci_pcm_dma_params *dma_params[2]; | ||
116 | }; | 113 | }; |
117 | 114 | ||
118 | static inline void davinci_mcbsp_write_reg(struct davinci_mcbsp_dev *dev, | 115 | static inline void davinci_mcbsp_write_reg(struct davinci_mcbsp_dev *dev, |
@@ -215,14 +212,6 @@ static void davinci_mcbsp_stop(struct davinci_mcbsp_dev *dev, int playback) | |||
215 | toggle_clock(dev, playback); | 212 | toggle_clock(dev, playback); |
216 | } | 213 | } |
217 | 214 | ||
218 | static int davinci_i2s_startup(struct snd_pcm_substream *substream, | ||
219 | struct snd_soc_dai *cpu_dai) | ||
220 | { | ||
221 | struct davinci_mcbsp_dev *dev = cpu_dai->private_data; | ||
222 | cpu_dai->dma_data = dev->dma_params[substream->stream]; | ||
223 | return 0; | ||
224 | } | ||
225 | |||
226 | #define DEFAULT_BITPERSAMPLE 16 | 215 | #define DEFAULT_BITPERSAMPLE 16 |
227 | 216 | ||
228 | static int davinci_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai, | 217 | static int davinci_i2s_set_dai_fmt(struct snd_soc_dai *cpu_dai, |
@@ -353,8 +342,9 @@ static int davinci_i2s_hw_params(struct snd_pcm_substream *substream, | |||
353 | struct snd_pcm_hw_params *params, | 342 | struct snd_pcm_hw_params *params, |
354 | struct snd_soc_dai *dai) | 343 | struct snd_soc_dai *dai) |
355 | { | 344 | { |
356 | struct davinci_pcm_dma_params *dma_params = dai->dma_data; | ||
357 | struct davinci_mcbsp_dev *dev = dai->private_data; | 345 | struct davinci_mcbsp_dev *dev = dai->private_data; |
346 | struct davinci_pcm_dma_params *dma_params = | ||
347 | &dev->dma_params[substream->stream]; | ||
358 | struct snd_interval *i = NULL; | 348 | struct snd_interval *i = NULL; |
359 | int mcbsp_word_length; | 349 | int mcbsp_word_length; |
360 | unsigned int rcr, xcr, srgr; | 350 | unsigned int rcr, xcr, srgr; |
@@ -472,7 +462,6 @@ static void davinci_i2s_shutdown(struct snd_pcm_substream *substream, | |||
472 | #define DAVINCI_I2S_RATES SNDRV_PCM_RATE_8000_96000 | 462 | #define DAVINCI_I2S_RATES SNDRV_PCM_RATE_8000_96000 |
473 | 463 | ||
474 | static struct snd_soc_dai_ops davinci_i2s_dai_ops = { | 464 | static struct snd_soc_dai_ops davinci_i2s_dai_ops = { |
475 | .startup = davinci_i2s_startup, | ||
476 | .shutdown = davinci_i2s_shutdown, | 465 | .shutdown = davinci_i2s_shutdown, |
477 | .prepare = davinci_i2s_prepare, | 466 | .prepare = davinci_i2s_prepare, |
478 | .trigger = davinci_i2s_trigger, | 467 | .trigger = davinci_i2s_trigger, |
@@ -534,12 +523,10 @@ static int davinci_i2s_probe(struct platform_device *pdev) | |||
534 | 523 | ||
535 | dev->base = (void __iomem *)IO_ADDRESS(mem->start); | 524 | dev->base = (void __iomem *)IO_ADDRESS(mem->start); |
536 | 525 | ||
537 | dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK] = &davinci_i2s_pcm_out; | 526 | dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK].dma_addr = |
538 | dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK]->dma_addr = | ||
539 | (dma_addr_t)(io_v2p(dev->base) + DAVINCI_MCBSP_DXR_REG); | 527 | (dma_addr_t)(io_v2p(dev->base) + DAVINCI_MCBSP_DXR_REG); |
540 | 528 | ||
541 | dev->dma_params[SNDRV_PCM_STREAM_CAPTURE] = &davinci_i2s_pcm_in; | 529 | dev->dma_params[SNDRV_PCM_STREAM_CAPTURE].dma_addr = |
542 | dev->dma_params[SNDRV_PCM_STREAM_CAPTURE]->dma_addr = | ||
543 | (dma_addr_t)(io_v2p(dev->base) + DAVINCI_MCBSP_DRR_REG); | 530 | (dma_addr_t)(io_v2p(dev->base) + DAVINCI_MCBSP_DRR_REG); |
544 | 531 | ||
545 | /* first TX, then RX */ | 532 | /* first TX, then RX */ |
@@ -549,7 +536,7 @@ static int davinci_i2s_probe(struct platform_device *pdev) | |||
549 | ret = -ENXIO; | 536 | ret = -ENXIO; |
550 | goto err_free_mem; | 537 | goto err_free_mem; |
551 | } | 538 | } |
552 | dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK]->channel = res->start; | 539 | dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK].channel = res->start; |
553 | 540 | ||
554 | res = platform_get_resource(pdev, IORESOURCE_DMA, 1); | 541 | res = platform_get_resource(pdev, IORESOURCE_DMA, 1); |
555 | if (!res) { | 542 | if (!res) { |
@@ -557,7 +544,7 @@ static int davinci_i2s_probe(struct platform_device *pdev) | |||
557 | ret = -ENXIO; | 544 | ret = -ENXIO; |
558 | goto err_free_mem; | 545 | goto err_free_mem; |
559 | } | 546 | } |
560 | dev->dma_params[SNDRV_PCM_STREAM_CAPTURE]->channel = res->start; | 547 | dev->dma_params[SNDRV_PCM_STREAM_CAPTURE].channel = res->start; |
561 | 548 | ||
562 | davinci_i2s_dai.private_data = dev; | 549 | davinci_i2s_dai.private_data = dev; |
563 | ret = snd_soc_register_dai(&davinci_i2s_dai); | 550 | ret = snd_soc_register_dai(&davinci_i2s_dai); |
diff --git a/sound/soc/davinci/davinci-mcasp.c b/sound/soc/davinci/davinci-mcasp.c index eca22d7829d2..5d1f98a4c978 100644 --- a/sound/soc/davinci/davinci-mcasp.c +++ b/sound/soc/davinci/davinci-mcasp.c | |||
@@ -332,14 +332,6 @@ static inline void mcasp_set_ctl_reg(void __iomem *regs, u32 val) | |||
332 | printk(KERN_ERR "GBLCTL write error\n"); | 332 | printk(KERN_ERR "GBLCTL write error\n"); |
333 | } | 333 | } |
334 | 334 | ||
335 | static int davinci_mcasp_startup(struct snd_pcm_substream *substream, | ||
336 | struct snd_soc_dai *cpu_dai) | ||
337 | { | ||
338 | struct davinci_audio_dev *dev = cpu_dai->private_data; | ||
339 | cpu_dai->dma_data = dev->dma_params[substream->stream]; | ||
340 | return 0; | ||
341 | } | ||
342 | |||
343 | static void mcasp_start_rx(struct davinci_audio_dev *dev) | 335 | static void mcasp_start_rx(struct davinci_audio_dev *dev) |
344 | { | 336 | { |
345 | mcasp_set_ctl_reg(dev->base + DAVINCI_MCASP_GBLCTLR_REG, RXHCLKRST); | 337 | mcasp_set_ctl_reg(dev->base + DAVINCI_MCASP_GBLCTLR_REG, RXHCLKRST); |
@@ -386,17 +378,17 @@ static void mcasp_start_tx(struct davinci_audio_dev *dev) | |||
386 | 378 | ||
387 | static void davinci_mcasp_start(struct davinci_audio_dev *dev, int stream) | 379 | static void davinci_mcasp_start(struct davinci_audio_dev *dev, int stream) |
388 | { | 380 | { |
389 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) | 381 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
382 | if (dev->txnumevt) /* enable FIFO */ | ||
383 | mcasp_set_bits(dev->base + DAVINCI_MCASP_WFIFOCTL, | ||
384 | FIFO_ENABLE); | ||
390 | mcasp_start_tx(dev); | 385 | mcasp_start_tx(dev); |
391 | else | 386 | } else { |
387 | if (dev->rxnumevt) /* enable FIFO */ | ||
388 | mcasp_set_bits(dev->base + DAVINCI_MCASP_RFIFOCTL, | ||
389 | FIFO_ENABLE); | ||
392 | mcasp_start_rx(dev); | 390 | mcasp_start_rx(dev); |
393 | 391 | } | |
394 | /* enable FIFO */ | ||
395 | if (dev->txnumevt) | ||
396 | mcasp_set_bits(dev->base + DAVINCI_MCASP_WFIFOCTL, FIFO_ENABLE); | ||
397 | |||
398 | if (dev->rxnumevt) | ||
399 | mcasp_set_bits(dev->base + DAVINCI_MCASP_RFIFOCTL, FIFO_ENABLE); | ||
400 | } | 392 | } |
401 | 393 | ||
402 | static void mcasp_stop_rx(struct davinci_audio_dev *dev) | 394 | static void mcasp_stop_rx(struct davinci_audio_dev *dev) |
@@ -413,17 +405,17 @@ static void mcasp_stop_tx(struct davinci_audio_dev *dev) | |||
413 | 405 | ||
414 | static void davinci_mcasp_stop(struct davinci_audio_dev *dev, int stream) | 406 | static void davinci_mcasp_stop(struct davinci_audio_dev *dev, int stream) |
415 | { | 407 | { |
416 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) | 408 | if (stream == SNDRV_PCM_STREAM_PLAYBACK) { |
409 | if (dev->txnumevt) /* disable FIFO */ | ||
410 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_WFIFOCTL, | ||
411 | FIFO_ENABLE); | ||
417 | mcasp_stop_tx(dev); | 412 | mcasp_stop_tx(dev); |
418 | else | 413 | } else { |
414 | if (dev->rxnumevt) /* disable FIFO */ | ||
415 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_RFIFOCTL, | ||
416 | FIFO_ENABLE); | ||
419 | mcasp_stop_rx(dev); | 417 | mcasp_stop_rx(dev); |
420 | 418 | } | |
421 | /* disable FIFO */ | ||
422 | if (dev->txnumevt) | ||
423 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_WFIFOCTL, FIFO_ENABLE); | ||
424 | |||
425 | if (dev->rxnumevt) | ||
426 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_RFIFOCTL, FIFO_ENABLE); | ||
427 | } | 419 | } |
428 | 420 | ||
429 | static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai, | 421 | static int davinci_mcasp_set_dai_fmt(struct snd_soc_dai *cpu_dai, |
@@ -512,34 +504,49 @@ static int davinci_config_channel_size(struct davinci_audio_dev *dev, | |||
512 | int channel_size) | 504 | int channel_size) |
513 | { | 505 | { |
514 | u32 fmt = 0; | 506 | u32 fmt = 0; |
507 | u32 mask, rotate; | ||
515 | 508 | ||
516 | switch (channel_size) { | 509 | switch (channel_size) { |
517 | case DAVINCI_AUDIO_WORD_8: | 510 | case DAVINCI_AUDIO_WORD_8: |
518 | fmt = 0x03; | 511 | fmt = 0x03; |
512 | rotate = 6; | ||
513 | mask = 0x000000ff; | ||
519 | break; | 514 | break; |
520 | 515 | ||
521 | case DAVINCI_AUDIO_WORD_12: | 516 | case DAVINCI_AUDIO_WORD_12: |
522 | fmt = 0x05; | 517 | fmt = 0x05; |
518 | rotate = 5; | ||
519 | mask = 0x00000fff; | ||
523 | break; | 520 | break; |
524 | 521 | ||
525 | case DAVINCI_AUDIO_WORD_16: | 522 | case DAVINCI_AUDIO_WORD_16: |
526 | fmt = 0x07; | 523 | fmt = 0x07; |
524 | rotate = 4; | ||
525 | mask = 0x0000ffff; | ||
527 | break; | 526 | break; |
528 | 527 | ||
529 | case DAVINCI_AUDIO_WORD_20: | 528 | case DAVINCI_AUDIO_WORD_20: |
530 | fmt = 0x09; | 529 | fmt = 0x09; |
530 | rotate = 3; | ||
531 | mask = 0x000fffff; | ||
531 | break; | 532 | break; |
532 | 533 | ||
533 | case DAVINCI_AUDIO_WORD_24: | 534 | case DAVINCI_AUDIO_WORD_24: |
534 | fmt = 0x0B; | 535 | fmt = 0x0B; |
536 | rotate = 2; | ||
537 | mask = 0x00ffffff; | ||
535 | break; | 538 | break; |
536 | 539 | ||
537 | case DAVINCI_AUDIO_WORD_28: | 540 | case DAVINCI_AUDIO_WORD_28: |
538 | fmt = 0x0D; | 541 | fmt = 0x0D; |
542 | rotate = 1; | ||
543 | mask = 0x0fffffff; | ||
539 | break; | 544 | break; |
540 | 545 | ||
541 | case DAVINCI_AUDIO_WORD_32: | 546 | case DAVINCI_AUDIO_WORD_32: |
542 | fmt = 0x0F; | 547 | fmt = 0x0F; |
548 | rotate = 0; | ||
549 | mask = 0xffffffff; | ||
543 | break; | 550 | break; |
544 | 551 | ||
545 | default: | 552 | default: |
@@ -550,6 +557,13 @@ static int davinci_config_channel_size(struct davinci_audio_dev *dev, | |||
550 | RXSSZ(fmt), RXSSZ(0x0F)); | 557 | RXSSZ(fmt), RXSSZ(0x0F)); |
551 | mcasp_mod_bits(dev->base + DAVINCI_MCASP_TXFMT_REG, | 558 | mcasp_mod_bits(dev->base + DAVINCI_MCASP_TXFMT_REG, |
552 | TXSSZ(fmt), TXSSZ(0x0F)); | 559 | TXSSZ(fmt), TXSSZ(0x0F)); |
560 | mcasp_mod_bits(dev->base + DAVINCI_MCASP_TXFMT_REG, TXROT(rotate), | ||
561 | TXROT(7)); | ||
562 | mcasp_mod_bits(dev->base + DAVINCI_MCASP_RXFMT_REG, RXROT(rotate), | ||
563 | RXROT(7)); | ||
564 | mcasp_set_reg(dev->base + DAVINCI_MCASP_TXMASK_REG, mask); | ||
565 | mcasp_set_reg(dev->base + DAVINCI_MCASP_RXMASK_REG, mask); | ||
566 | |||
553 | return 0; | 567 | return 0; |
554 | } | 568 | } |
555 | 569 | ||
@@ -638,7 +652,6 @@ static void davinci_hw_param(struct davinci_audio_dev *dev, int stream) | |||
638 | printk(KERN_ERR "playback tdm slot %d not supported\n", | 652 | printk(KERN_ERR "playback tdm slot %d not supported\n", |
639 | dev->tdm_slots); | 653 | dev->tdm_slots); |
640 | 654 | ||
641 | mcasp_set_reg(dev->base + DAVINCI_MCASP_TXMASK_REG, 0xFFFFFFFF); | ||
642 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_TXFMCTL_REG, FSXDUR); | 655 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_TXFMCTL_REG, FSXDUR); |
643 | } else { | 656 | } else { |
644 | /* bit stream is MSB first with no delay */ | 657 | /* bit stream is MSB first with no delay */ |
@@ -655,7 +668,6 @@ static void davinci_hw_param(struct davinci_audio_dev *dev, int stream) | |||
655 | printk(KERN_ERR "capture tdm slot %d not supported\n", | 668 | printk(KERN_ERR "capture tdm slot %d not supported\n", |
656 | dev->tdm_slots); | 669 | dev->tdm_slots); |
657 | 670 | ||
658 | mcasp_set_reg(dev->base + DAVINCI_MCASP_RXMASK_REG, 0xFFFFFFFF); | ||
659 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_RXFMCTL_REG, FSRDUR); | 671 | mcasp_clr_bits(dev->base + DAVINCI_MCASP_RXFMCTL_REG, FSRDUR); |
660 | } | 672 | } |
661 | } | 673 | } |
@@ -700,7 +712,7 @@ static int davinci_mcasp_hw_params(struct snd_pcm_substream *substream, | |||
700 | { | 712 | { |
701 | struct davinci_audio_dev *dev = cpu_dai->private_data; | 713 | struct davinci_audio_dev *dev = cpu_dai->private_data; |
702 | struct davinci_pcm_dma_params *dma_params = | 714 | struct davinci_pcm_dma_params *dma_params = |
703 | dev->dma_params[substream->stream]; | 715 | &dev->dma_params[substream->stream]; |
704 | int word_length; | 716 | int word_length; |
705 | u8 numevt; | 717 | u8 numevt; |
706 | 718 | ||
@@ -778,7 +790,6 @@ static int davinci_mcasp_trigger(struct snd_pcm_substream *substream, | |||
778 | } | 790 | } |
779 | 791 | ||
780 | static struct snd_soc_dai_ops davinci_mcasp_dai_ops = { | 792 | static struct snd_soc_dai_ops davinci_mcasp_dai_ops = { |
781 | .startup = davinci_mcasp_startup, | ||
782 | .trigger = davinci_mcasp_trigger, | 793 | .trigger = davinci_mcasp_trigger, |
783 | .hw_params = davinci_mcasp_hw_params, | 794 | .hw_params = davinci_mcasp_hw_params, |
784 | .set_fmt = davinci_mcasp_set_dai_fmt, | 795 | .set_fmt = davinci_mcasp_set_dai_fmt, |
@@ -829,20 +840,12 @@ static int davinci_mcasp_probe(struct platform_device *pdev) | |||
829 | struct resource *mem, *ioarea, *res; | 840 | struct resource *mem, *ioarea, *res; |
830 | struct snd_platform_data *pdata; | 841 | struct snd_platform_data *pdata; |
831 | struct davinci_audio_dev *dev; | 842 | struct davinci_audio_dev *dev; |
832 | int count = 0; | ||
833 | int ret = 0; | 843 | int ret = 0; |
834 | 844 | ||
835 | dev = kzalloc(sizeof(struct davinci_audio_dev), GFP_KERNEL); | 845 | dev = kzalloc(sizeof(struct davinci_audio_dev), GFP_KERNEL); |
836 | if (!dev) | 846 | if (!dev) |
837 | return -ENOMEM; | 847 | return -ENOMEM; |
838 | 848 | ||
839 | dma_data = kzalloc(sizeof(struct davinci_pcm_dma_params) * 2, | ||
840 | GFP_KERNEL); | ||
841 | if (!dma_data) { | ||
842 | ret = -ENOMEM; | ||
843 | goto err_release_dev; | ||
844 | } | ||
845 | |||
846 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 849 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
847 | if (!mem) { | 850 | if (!mem) { |
848 | dev_err(&pdev->dev, "no mem resource?\n"); | 851 | dev_err(&pdev->dev, "no mem resource?\n"); |
@@ -877,11 +880,10 @@ static int davinci_mcasp_probe(struct platform_device *pdev) | |||
877 | dev->txnumevt = pdata->txnumevt; | 880 | dev->txnumevt = pdata->txnumevt; |
878 | dev->rxnumevt = pdata->rxnumevt; | 881 | dev->rxnumevt = pdata->rxnumevt; |
879 | 882 | ||
880 | dma_data[count].name = "I2S PCM Stereo out"; | 883 | dma_data = &dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK]; |
881 | dma_data[count].eventq_no = pdata->eventq_no; | 884 | dma_data->eventq_no = pdata->eventq_no; |
882 | dma_data[count].dma_addr = (dma_addr_t) (pdata->tx_dma_offset + | 885 | dma_data->dma_addr = (dma_addr_t) (pdata->tx_dma_offset + |
883 | io_v2p(dev->base)); | 886 | io_v2p(dev->base)); |
884 | dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK] = &dma_data[count]; | ||
885 | 887 | ||
886 | /* first TX, then RX */ | 888 | /* first TX, then RX */ |
887 | res = platform_get_resource(pdev, IORESOURCE_DMA, 0); | 889 | res = platform_get_resource(pdev, IORESOURCE_DMA, 0); |
@@ -890,13 +892,12 @@ static int davinci_mcasp_probe(struct platform_device *pdev) | |||
890 | goto err_release_region; | 892 | goto err_release_region; |
891 | } | 893 | } |
892 | 894 | ||
893 | dma_data[count].channel = res->start; | 895 | dma_data->channel = res->start; |
894 | count++; | 896 | |
895 | dma_data[count].name = "I2S PCM Stereo in"; | 897 | dma_data = &dev->dma_params[SNDRV_PCM_STREAM_CAPTURE]; |
896 | dma_data[count].eventq_no = pdata->eventq_no; | 898 | dma_data->eventq_no = pdata->eventq_no; |
897 | dma_data[count].dma_addr = (dma_addr_t)(pdata->rx_dma_offset + | 899 | dma_data->dma_addr = (dma_addr_t)(pdata->rx_dma_offset + |
898 | io_v2p(dev->base)); | 900 | io_v2p(dev->base)); |
899 | dev->dma_params[SNDRV_PCM_STREAM_CAPTURE] = &dma_data[count]; | ||
900 | 901 | ||
901 | res = platform_get_resource(pdev, IORESOURCE_DMA, 1); | 902 | res = platform_get_resource(pdev, IORESOURCE_DMA, 1); |
902 | if (!res) { | 903 | if (!res) { |
@@ -904,7 +905,7 @@ static int davinci_mcasp_probe(struct platform_device *pdev) | |||
904 | goto err_release_region; | 905 | goto err_release_region; |
905 | } | 906 | } |
906 | 907 | ||
907 | dma_data[count].channel = res->start; | 908 | dma_data->channel = res->start; |
908 | davinci_mcasp_dai[pdata->op_mode].private_data = dev; | 909 | davinci_mcasp_dai[pdata->op_mode].private_data = dev; |
909 | davinci_mcasp_dai[pdata->op_mode].dev = &pdev->dev; | 910 | davinci_mcasp_dai[pdata->op_mode].dev = &pdev->dev; |
910 | ret = snd_soc_register_dai(&davinci_mcasp_dai[pdata->op_mode]); | 911 | ret = snd_soc_register_dai(&davinci_mcasp_dai[pdata->op_mode]); |
@@ -916,8 +917,6 @@ static int davinci_mcasp_probe(struct platform_device *pdev) | |||
916 | err_release_region: | 917 | err_release_region: |
917 | release_mem_region(mem->start, (mem->end - mem->start) + 1); | 918 | release_mem_region(mem->start, (mem->end - mem->start) + 1); |
918 | err_release_data: | 919 | err_release_data: |
919 | kfree(dma_data); | ||
920 | err_release_dev: | ||
921 | kfree(dev); | 920 | kfree(dev); |
922 | 921 | ||
923 | return ret; | 922 | return ret; |
@@ -926,7 +925,6 @@ err_release_dev: | |||
926 | static int davinci_mcasp_remove(struct platform_device *pdev) | 925 | static int davinci_mcasp_remove(struct platform_device *pdev) |
927 | { | 926 | { |
928 | struct snd_platform_data *pdata = pdev->dev.platform_data; | 927 | struct snd_platform_data *pdata = pdev->dev.platform_data; |
929 | struct davinci_pcm_dma_params *dma_data; | ||
930 | struct davinci_audio_dev *dev; | 928 | struct davinci_audio_dev *dev; |
931 | struct resource *mem; | 929 | struct resource *mem; |
932 | 930 | ||
@@ -939,8 +937,6 @@ static int davinci_mcasp_remove(struct platform_device *pdev) | |||
939 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 937 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
940 | release_mem_region(mem->start, (mem->end - mem->start) + 1); | 938 | release_mem_region(mem->start, (mem->end - mem->start) + 1); |
941 | 939 | ||
942 | dma_data = dev->dma_params[SNDRV_PCM_STREAM_PLAYBACK]; | ||
943 | kfree(dma_data); | ||
944 | kfree(dev); | 940 | kfree(dev); |
945 | 941 | ||
946 | return 0; | 942 | return 0; |
diff --git a/sound/soc/davinci/davinci-mcasp.h b/sound/soc/davinci/davinci-mcasp.h index 554354c1cc2f..9d179cc88f7b 100644 --- a/sound/soc/davinci/davinci-mcasp.h +++ b/sound/soc/davinci/davinci-mcasp.h | |||
@@ -39,10 +39,15 @@ enum { | |||
39 | }; | 39 | }; |
40 | 40 | ||
41 | struct davinci_audio_dev { | 41 | struct davinci_audio_dev { |
42 | /* | ||
43 | * dma_params must be first because rtd->dai->cpu_dai->private_data | ||
44 | * is cast to a pointer of an array of struct davinci_pcm_dma_params in | ||
45 | * davinci_pcm_open. | ||
46 | */ | ||
47 | struct davinci_pcm_dma_params dma_params[2]; | ||
42 | void __iomem *base; | 48 | void __iomem *base; |
43 | int sample_rate; | 49 | int sample_rate; |
44 | struct clk *clk; | 50 | struct clk *clk; |
45 | struct davinci_pcm_dma_params *dma_params[2]; | ||
46 | unsigned int codec_fmt; | 51 | unsigned int codec_fmt; |
47 | 52 | ||
48 | /* McASP specific data */ | 53 | /* McASP specific data */ |
diff --git a/sound/soc/davinci/davinci-pcm.c b/sound/soc/davinci/davinci-pcm.c index 2f7da49ed34f..c73a915f233f 100644 --- a/sound/soc/davinci/davinci-pcm.c +++ b/sound/soc/davinci/davinci-pcm.c | |||
@@ -126,16 +126,9 @@ static void davinci_pcm_dma_irq(unsigned lch, u16 ch_status, void *data) | |||
126 | static int davinci_pcm_dma_request(struct snd_pcm_substream *substream) | 126 | static int davinci_pcm_dma_request(struct snd_pcm_substream *substream) |
127 | { | 127 | { |
128 | struct davinci_runtime_data *prtd = substream->runtime->private_data; | 128 | struct davinci_runtime_data *prtd = substream->runtime->private_data; |
129 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | ||
130 | struct davinci_pcm_dma_params *dma_data = rtd->dai->cpu_dai->dma_data; | ||
131 | struct edmacc_param p_ram; | 129 | struct edmacc_param p_ram; |
132 | int ret; | 130 | int ret; |
133 | 131 | ||
134 | if (!dma_data) | ||
135 | return -ENODEV; | ||
136 | |||
137 | prtd->params = dma_data; | ||
138 | |||
139 | /* Request master DMA channel */ | 132 | /* Request master DMA channel */ |
140 | ret = edma_alloc_channel(prtd->params->channel, | 133 | ret = edma_alloc_channel(prtd->params->channel, |
141 | davinci_pcm_dma_irq, substream, | 134 | davinci_pcm_dma_irq, substream, |
@@ -244,6 +237,11 @@ static int davinci_pcm_open(struct snd_pcm_substream *substream) | |||
244 | struct snd_pcm_runtime *runtime = substream->runtime; | 237 | struct snd_pcm_runtime *runtime = substream->runtime; |
245 | struct davinci_runtime_data *prtd; | 238 | struct davinci_runtime_data *prtd; |
246 | int ret = 0; | 239 | int ret = 0; |
240 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | ||
241 | struct davinci_pcm_dma_params *pa = rtd->dai->cpu_dai->private_data; | ||
242 | struct davinci_pcm_dma_params *params = &pa[substream->stream]; | ||
243 | if (!params) | ||
244 | return -ENODEV; | ||
247 | 245 | ||
248 | snd_soc_set_runtime_hwparams(substream, &davinci_pcm_hardware); | 246 | snd_soc_set_runtime_hwparams(substream, &davinci_pcm_hardware); |
249 | /* ensure that buffer size is a multiple of period size */ | 247 | /* ensure that buffer size is a multiple of period size */ |
@@ -257,6 +255,7 @@ static int davinci_pcm_open(struct snd_pcm_substream *substream) | |||
257 | return -ENOMEM; | 255 | return -ENOMEM; |
258 | 256 | ||
259 | spin_lock_init(&prtd->lock); | 257 | spin_lock_init(&prtd->lock); |
258 | prtd->params = params; | ||
260 | 259 | ||
261 | runtime->private_data = prtd; | 260 | runtime->private_data = prtd; |
262 | 261 | ||
diff --git a/sound/soc/davinci/davinci-pcm.h b/sound/soc/davinci/davinci-pcm.h index 63d96253c73a..8746606efc89 100644 --- a/sound/soc/davinci/davinci-pcm.h +++ b/sound/soc/davinci/davinci-pcm.h | |||
@@ -17,7 +17,6 @@ | |||
17 | 17 | ||
18 | 18 | ||
19 | struct davinci_pcm_dma_params { | 19 | struct davinci_pcm_dma_params { |
20 | char *name; /* stream identifier */ | ||
21 | int channel; /* sync dma channel ID */ | 20 | int channel; /* sync dma channel ID */ |
22 | unsigned short acnt; | 21 | unsigned short acnt; |
23 | dma_addr_t dma_addr; /* device physical address for DMA */ | 22 | dma_addr_t dma_addr; /* device physical address for DMA */ |
diff --git a/sound/soc/imx/mxc-ssi.c b/sound/soc/imx/mxc-ssi.c index 3806ff2c0cd4..ccdefe60e752 100644 --- a/sound/soc/imx/mxc-ssi.c +++ b/sound/soc/imx/mxc-ssi.c | |||
@@ -397,14 +397,6 @@ static int imx_ssi_set_dai_fmt(struct snd_soc_dai *cpu_dai, | |||
397 | break; | 397 | break; |
398 | } | 398 | } |
399 | 399 | ||
400 | /* sync */ | ||
401 | if (!(fmt & SND_SOC_DAIFMT_ASYNC)) | ||
402 | scr |= SSI_SCR_SYN; | ||
403 | |||
404 | /* tdm - only for stereo atm */ | ||
405 | if (fmt & SND_SOC_DAIFMT_TDM) | ||
406 | scr |= SSI_SCR_NET; | ||
407 | |||
408 | if (cpu_dai->id == IMX_DAI_SSI0 || cpu_dai->id == IMX_DAI_SSI2) { | 400 | if (cpu_dai->id == IMX_DAI_SSI0 || cpu_dai->id == IMX_DAI_SSI2) { |
409 | SSI1_STCR = stcr; | 401 | SSI1_STCR = stcr; |
410 | SSI1_SRCR = srcr; | 402 | SSI1_SRCR = srcr; |
diff --git a/sound/soc/pxa/Kconfig b/sound/soc/pxa/Kconfig index 6375b4ea525d..dcb3181bb340 100644 --- a/sound/soc/pxa/Kconfig +++ b/sound/soc/pxa/Kconfig | |||
@@ -138,7 +138,7 @@ config SND_PXA2XX_SOC_MIOA701 | |||
138 | 138 | ||
139 | config SND_PXA2XX_SOC_IMOTE2 | 139 | config SND_PXA2XX_SOC_IMOTE2 |
140 | tristate "SoC Audio support for IMote 2" | 140 | tristate "SoC Audio support for IMote 2" |
141 | depends on SND_PXA2XX_SOC && MACH_INTELMOTE2 | 141 | depends on SND_PXA2XX_SOC && MACH_INTELMOTE2 && I2C |
142 | select SND_PXA2XX_SOC_I2S | 142 | select SND_PXA2XX_SOC_I2S |
143 | select SND_SOC_WM8940 | 143 | select SND_SOC_WM8940 |
144 | help | 144 | help |
diff --git a/sound/soc/pxa/pxa-ssp.c b/sound/soc/pxa/pxa-ssp.c index 5b9ed6464789..d11a6d7e384a 100644 --- a/sound/soc/pxa/pxa-ssp.c +++ b/sound/soc/pxa/pxa-ssp.c | |||
@@ -351,7 +351,7 @@ static int pxa_ssp_set_dai_pll(struct snd_soc_dai *cpu_dai, | |||
351 | do_div(tmp, freq_out); | 351 | do_div(tmp, freq_out); |
352 | val = tmp; | 352 | val = tmp; |
353 | 353 | ||
354 | val = (val << 16) | 64;; | 354 | val = (val << 16) | 64; |
355 | ssp_write_reg(ssp, SSACDD, val); | 355 | ssp_write_reg(ssp, SSACDD, val); |
356 | 356 | ||
357 | ssacd |= (0x6 << 4); | 357 | ssacd |= (0x6 << 4); |
diff --git a/sound/soc/s3c24xx/s3c24xx_uda134x.c b/sound/soc/s3c24xx/s3c24xx_uda134x.c index 8e79a416db57..c215d32d6322 100644 --- a/sound/soc/s3c24xx/s3c24xx_uda134x.c +++ b/sound/soc/s3c24xx/s3c24xx_uda134x.c | |||
@@ -67,7 +67,7 @@ static int s3c24xx_uda134x_startup(struct snd_pcm_substream *substream) | |||
67 | { | 67 | { |
68 | int ret = 0; | 68 | int ret = 0; |
69 | #ifdef ENFORCE_RATES | 69 | #ifdef ENFORCE_RATES |
70 | struct snd_pcm_runtime *runtime = substream->runtime;; | 70 | struct snd_pcm_runtime *runtime = substream->runtime; |
71 | #endif | 71 | #endif |
72 | 72 | ||
73 | mutex_lock(&clk_lock); | 73 | mutex_lock(&clk_lock); |
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index f79711b9fa5b..8de6f9dec4a2 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c | |||
@@ -524,7 +524,7 @@ static int is_connected_output_ep(struct snd_soc_dapm_widget *widget) | |||
524 | 524 | ||
525 | /* connected jack or spk ? */ | 525 | /* connected jack or spk ? */ |
526 | if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk || | 526 | if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk || |
527 | widget->id == snd_soc_dapm_line) | 527 | (widget->id == snd_soc_dapm_line && !list_empty(&widget->sources))) |
528 | return 1; | 528 | return 1; |
529 | } | 529 | } |
530 | 530 | ||
@@ -573,7 +573,8 @@ static int is_connected_input_ep(struct snd_soc_dapm_widget *widget) | |||
573 | return 1; | 573 | return 1; |
574 | 574 | ||
575 | /* connected jack ? */ | 575 | /* connected jack ? */ |
576 | if (widget->id == snd_soc_dapm_mic || widget->id == snd_soc_dapm_line) | 576 | if (widget->id == snd_soc_dapm_mic || |
577 | (widget->id == snd_soc_dapm_line && !list_empty(&widget->sinks))) | ||
577 | return 1; | 578 | return 1; |
578 | } | 579 | } |
579 | 580 | ||
diff --git a/sound/sound_core.c b/sound/sound_core.c index bb4b88e606bb..49c998186592 100644 --- a/sound/sound_core.c +++ b/sound/sound_core.c | |||
@@ -29,7 +29,7 @@ MODULE_DESCRIPTION("Core sound module"); | |||
29 | MODULE_AUTHOR("Alan Cox"); | 29 | MODULE_AUTHOR("Alan Cox"); |
30 | MODULE_LICENSE("GPL"); | 30 | MODULE_LICENSE("GPL"); |
31 | 31 | ||
32 | static char *sound_nodename(struct device *dev) | 32 | static char *sound_devnode(struct device *dev, mode_t *mode) |
33 | { | 33 | { |
34 | if (MAJOR(dev->devt) == SOUND_MAJOR) | 34 | if (MAJOR(dev->devt) == SOUND_MAJOR) |
35 | return NULL; | 35 | return NULL; |
@@ -50,7 +50,7 @@ static int __init init_soundcore(void) | |||
50 | return PTR_ERR(sound_class); | 50 | return PTR_ERR(sound_class); |
51 | } | 51 | } |
52 | 52 | ||
53 | sound_class->nodename = sound_nodename; | 53 | sound_class->devnode = sound_devnode; |
54 | 54 | ||
55 | return 0; | 55 | return 0; |
56 | } | 56 | } |
diff --git a/sound/usb/caiaq/audio.c b/sound/usb/caiaq/audio.c index 121af0644fd9..86b2c3b92df5 100644 --- a/sound/usb/caiaq/audio.c +++ b/sound/usb/caiaq/audio.c | |||
@@ -62,10 +62,14 @@ static void | |||
62 | activate_substream(struct snd_usb_caiaqdev *dev, | 62 | activate_substream(struct snd_usb_caiaqdev *dev, |
63 | struct snd_pcm_substream *sub) | 63 | struct snd_pcm_substream *sub) |
64 | { | 64 | { |
65 | spin_lock(&dev->spinlock); | ||
66 | |||
65 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) | 67 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) |
66 | dev->sub_playback[sub->number] = sub; | 68 | dev->sub_playback[sub->number] = sub; |
67 | else | 69 | else |
68 | dev->sub_capture[sub->number] = sub; | 70 | dev->sub_capture[sub->number] = sub; |
71 | |||
72 | spin_unlock(&dev->spinlock); | ||
69 | } | 73 | } |
70 | 74 | ||
71 | static void | 75 | static void |
@@ -269,16 +273,22 @@ snd_usb_caiaq_pcm_pointer(struct snd_pcm_substream *sub) | |||
269 | { | 273 | { |
270 | int index = sub->number; | 274 | int index = sub->number; |
271 | struct snd_usb_caiaqdev *dev = snd_pcm_substream_chip(sub); | 275 | struct snd_usb_caiaqdev *dev = snd_pcm_substream_chip(sub); |
276 | snd_pcm_uframes_t ptr; | ||
277 | |||
278 | spin_lock(&dev->spinlock); | ||
272 | 279 | ||
273 | if (dev->input_panic || dev->output_panic) | 280 | if (dev->input_panic || dev->output_panic) |
274 | return SNDRV_PCM_POS_XRUN; | 281 | ptr = SNDRV_PCM_POS_XRUN; |
275 | 282 | ||
276 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) | 283 | if (sub->stream == SNDRV_PCM_STREAM_PLAYBACK) |
277 | return bytes_to_frames(sub->runtime, | 284 | ptr = bytes_to_frames(sub->runtime, |
278 | dev->audio_out_buf_pos[index]); | 285 | dev->audio_out_buf_pos[index]); |
279 | else | 286 | else |
280 | return bytes_to_frames(sub->runtime, | 287 | ptr = bytes_to_frames(sub->runtime, |
281 | dev->audio_in_buf_pos[index]); | 288 | dev->audio_in_buf_pos[index]); |
289 | |||
290 | spin_unlock(&dev->spinlock); | ||
291 | return ptr; | ||
282 | } | 292 | } |
283 | 293 | ||
284 | /* operators for both playback and capture */ | 294 | /* operators for both playback and capture */ |
diff --git a/sound/usb/caiaq/device.c b/sound/usb/caiaq/device.c index 83e6c1312d47..a3f02dd97440 100644 --- a/sound/usb/caiaq/device.c +++ b/sound/usb/caiaq/device.c | |||
@@ -35,7 +35,7 @@ | |||
35 | #include "input.h" | 35 | #include "input.h" |
36 | 36 | ||
37 | MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); | 37 | MODULE_AUTHOR("Daniel Mack <daniel@caiaq.de>"); |
38 | MODULE_DESCRIPTION("caiaq USB audio, version 1.3.19"); | 38 | MODULE_DESCRIPTION("caiaq USB audio, version 1.3.20"); |
39 | MODULE_LICENSE("GPL"); | 39 | MODULE_LICENSE("GPL"); |
40 | MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," | 40 | MODULE_SUPPORTED_DEVICE("{{Native Instruments, RigKontrol2}," |
41 | "{Native Instruments, RigKontrol3}," | 41 | "{Native Instruments, RigKontrol3}," |
diff --git a/sound/usb/usbmixer.c b/sound/usb/usbmixer.c index ab5a3ac2ac47..9efcfd08d747 100644 --- a/sound/usb/usbmixer.c +++ b/sound/usb/usbmixer.c | |||
@@ -898,6 +898,11 @@ static struct snd_kcontrol_new usb_feature_unit_ctl = { | |||
898 | * build a feature control | 898 | * build a feature control |
899 | */ | 899 | */ |
900 | 900 | ||
901 | static size_t append_ctl_name(struct snd_kcontrol *kctl, const char *str) | ||
902 | { | ||
903 | return strlcat(kctl->id.name, str, sizeof(kctl->id.name)); | ||
904 | } | ||
905 | |||
901 | static void build_feature_ctl(struct mixer_build *state, unsigned char *desc, | 906 | static void build_feature_ctl(struct mixer_build *state, unsigned char *desc, |
902 | unsigned int ctl_mask, int control, | 907 | unsigned int ctl_mask, int control, |
903 | struct usb_audio_term *iterm, int unitid) | 908 | struct usb_audio_term *iterm, int unitid) |
@@ -978,13 +983,13 @@ static void build_feature_ctl(struct mixer_build *state, unsigned char *desc, | |||
978 | */ | 983 | */ |
979 | if (! mapped_name && ! (state->oterm.type >> 16)) { | 984 | if (! mapped_name && ! (state->oterm.type >> 16)) { |
980 | if ((state->oterm.type & 0xff00) == 0x0100) { | 985 | if ((state->oterm.type & 0xff00) == 0x0100) { |
981 | len = strlcat(kctl->id.name, " Capture", sizeof(kctl->id.name)); | 986 | len = append_ctl_name(kctl, " Capture"); |
982 | } else { | 987 | } else { |
983 | len = strlcat(kctl->id.name + len, " Playback", sizeof(kctl->id.name)); | 988 | len = append_ctl_name(kctl, " Playback"); |
984 | } | 989 | } |
985 | } | 990 | } |
986 | strlcat(kctl->id.name + len, control == USB_FEATURE_MUTE ? " Switch" : " Volume", | 991 | append_ctl_name(kctl, control == USB_FEATURE_MUTE ? |
987 | sizeof(kctl->id.name)); | 992 | " Switch" : " Volume"); |
988 | if (control == USB_FEATURE_VOLUME) { | 993 | if (control == USB_FEATURE_VOLUME) { |
989 | kctl->tlv.c = mixer_vol_tlv; | 994 | kctl->tlv.c = mixer_vol_tlv; |
990 | kctl->vd[0].access |= | 995 | kctl->vd[0].access |= |
@@ -1143,7 +1148,7 @@ static void build_mixer_unit_ctl(struct mixer_build *state, unsigned char *desc, | |||
1143 | len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0); | 1148 | len = get_term_name(state, iterm, kctl->id.name, sizeof(kctl->id.name), 0); |
1144 | if (! len) | 1149 | if (! len) |
1145 | len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1); | 1150 | len = sprintf(kctl->id.name, "Mixer Source %d", in_ch + 1); |
1146 | strlcat(kctl->id.name + len, " Volume", sizeof(kctl->id.name)); | 1151 | append_ctl_name(kctl, " Volume"); |
1147 | 1152 | ||
1148 | snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n", | 1153 | snd_printdd(KERN_INFO "[%d] MU [%s] ch = %d, val = %d/%d\n", |
1149 | cval->id, kctl->id.name, cval->channels, cval->min, cval->max); | 1154 | cval->id, kctl->id.name, cval->channels, cval->min, cval->max); |
@@ -1400,8 +1405,8 @@ static int build_audio_procunit(struct mixer_build *state, int unitid, unsigned | |||
1400 | if (! len) | 1405 | if (! len) |
1401 | strlcpy(kctl->id.name, name, sizeof(kctl->id.name)); | 1406 | strlcpy(kctl->id.name, name, sizeof(kctl->id.name)); |
1402 | } | 1407 | } |
1403 | strlcat(kctl->id.name, " ", sizeof(kctl->id.name)); | 1408 | append_ctl_name(kctl, " "); |
1404 | strlcat(kctl->id.name, valinfo->suffix, sizeof(kctl->id.name)); | 1409 | append_ctl_name(kctl, valinfo->suffix); |
1405 | 1410 | ||
1406 | snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n", | 1411 | snd_printdd(KERN_INFO "[%d] PU [%s] ch = %d, val = %d/%d\n", |
1407 | cval->id, kctl->id.name, cval->channels, cval->min, cval->max); | 1412 | cval->id, kctl->id.name, cval->channels, cval->min, cval->max); |
@@ -1610,9 +1615,9 @@ static int parse_audio_selector_unit(struct mixer_build *state, int unitid, unsi | |||
1610 | strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name)); | 1615 | strlcpy(kctl->id.name, "USB", sizeof(kctl->id.name)); |
1611 | 1616 | ||
1612 | if ((state->oterm.type & 0xff00) == 0x0100) | 1617 | if ((state->oterm.type & 0xff00) == 0x0100) |
1613 | strlcat(kctl->id.name, " Capture Source", sizeof(kctl->id.name)); | 1618 | append_ctl_name(kctl, " Capture Source"); |
1614 | else | 1619 | else |
1615 | strlcat(kctl->id.name, " Playback Source", sizeof(kctl->id.name)); | 1620 | append_ctl_name(kctl, " Playback Source"); |
1616 | } | 1621 | } |
1617 | 1622 | ||
1618 | snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n", | 1623 | snd_printdd(KERN_INFO "[%d] SU [%s] items = %d\n", |
diff --git a/sound/usb/usx2y/us122l.c b/sound/usb/usx2y/us122l.c index fd44946ce4b3..00cd54c236b4 100644 --- a/sound/usb/usx2y/us122l.c +++ b/sound/usb/usx2y/us122l.c | |||
@@ -66,6 +66,28 @@ static int us122l_create_usbmidi(struct snd_card *card) | |||
66 | iface, &quirk); | 66 | iface, &quirk); |
67 | } | 67 | } |
68 | 68 | ||
69 | static int us144_create_usbmidi(struct snd_card *card) | ||
70 | { | ||
71 | static struct snd_usb_midi_endpoint_info quirk_data = { | ||
72 | .out_ep = 4, | ||
73 | .in_ep = 3, | ||
74 | .out_cables = 0x001, | ||
75 | .in_cables = 0x001 | ||
76 | }; | ||
77 | static struct snd_usb_audio_quirk quirk = { | ||
78 | .vendor_name = "US144", | ||
79 | .product_name = NAME_ALLCAPS, | ||
80 | .ifnum = 0, | ||
81 | .type = QUIRK_MIDI_US122L, | ||
82 | .data = &quirk_data | ||
83 | }; | ||
84 | struct usb_device *dev = US122L(card)->chip.dev; | ||
85 | struct usb_interface *iface = usb_ifnum_to_if(dev, 0); | ||
86 | |||
87 | return snd_usb_create_midi_interface(&US122L(card)->chip, | ||
88 | iface, &quirk); | ||
89 | } | ||
90 | |||
69 | /* | 91 | /* |
70 | * Wrapper for usb_control_msg(). | 92 | * Wrapper for usb_control_msg(). |
71 | * Allocates a temp buffer to prevent dmaing from/to the stack. | 93 | * Allocates a temp buffer to prevent dmaing from/to the stack. |
@@ -154,7 +176,7 @@ static void usb_stream_hwdep_vm_close(struct vm_area_struct *area) | |||
154 | snd_printdd(KERN_DEBUG "%i\n", atomic_read(&us122l->mmap_count)); | 176 | snd_printdd(KERN_DEBUG "%i\n", atomic_read(&us122l->mmap_count)); |
155 | } | 177 | } |
156 | 178 | ||
157 | static struct vm_operations_struct usb_stream_hwdep_vm_ops = { | 179 | static const struct vm_operations_struct usb_stream_hwdep_vm_ops = { |
158 | .open = usb_stream_hwdep_vm_open, | 180 | .open = usb_stream_hwdep_vm_open, |
159 | .fault = usb_stream_hwdep_vm_fault, | 181 | .fault = usb_stream_hwdep_vm_fault, |
160 | .close = usb_stream_hwdep_vm_close, | 182 | .close = usb_stream_hwdep_vm_close, |
@@ -171,6 +193,11 @@ static int usb_stream_hwdep_open(struct snd_hwdep *hw, struct file *file) | |||
171 | 193 | ||
172 | if (!us122l->first) | 194 | if (!us122l->first) |
173 | us122l->first = file; | 195 | us122l->first = file; |
196 | |||
197 | if (us122l->chip.dev->descriptor.idProduct == USB_ID_US144) { | ||
198 | iface = usb_ifnum_to_if(us122l->chip.dev, 0); | ||
199 | usb_autopm_get_interface(iface); | ||
200 | } | ||
174 | iface = usb_ifnum_to_if(us122l->chip.dev, 1); | 201 | iface = usb_ifnum_to_if(us122l->chip.dev, 1); |
175 | usb_autopm_get_interface(iface); | 202 | usb_autopm_get_interface(iface); |
176 | return 0; | 203 | return 0; |
@@ -179,8 +206,14 @@ static int usb_stream_hwdep_open(struct snd_hwdep *hw, struct file *file) | |||
179 | static int usb_stream_hwdep_release(struct snd_hwdep *hw, struct file *file) | 206 | static int usb_stream_hwdep_release(struct snd_hwdep *hw, struct file *file) |
180 | { | 207 | { |
181 | struct us122l *us122l = hw->private_data; | 208 | struct us122l *us122l = hw->private_data; |
182 | struct usb_interface *iface = usb_ifnum_to_if(us122l->chip.dev, 1); | 209 | struct usb_interface *iface; |
183 | snd_printdd(KERN_DEBUG "%p %p\n", hw, file); | 210 | snd_printdd(KERN_DEBUG "%p %p\n", hw, file); |
211 | |||
212 | if (us122l->chip.dev->descriptor.idProduct == USB_ID_US144) { | ||
213 | iface = usb_ifnum_to_if(us122l->chip.dev, 0); | ||
214 | usb_autopm_put_interface(iface); | ||
215 | } | ||
216 | iface = usb_ifnum_to_if(us122l->chip.dev, 1); | ||
184 | usb_autopm_put_interface(iface); | 217 | usb_autopm_put_interface(iface); |
185 | if (us122l->first == file) | 218 | if (us122l->first == file) |
186 | us122l->first = NULL; | 219 | us122l->first = NULL; |
@@ -443,6 +476,13 @@ static bool us122l_create_card(struct snd_card *card) | |||
443 | int err; | 476 | int err; |
444 | struct us122l *us122l = US122L(card); | 477 | struct us122l *us122l = US122L(card); |
445 | 478 | ||
479 | if (us122l->chip.dev->descriptor.idProduct == USB_ID_US144) { | ||
480 | err = usb_set_interface(us122l->chip.dev, 0, 1); | ||
481 | if (err) { | ||
482 | snd_printk(KERN_ERR "usb_set_interface error \n"); | ||
483 | return false; | ||
484 | } | ||
485 | } | ||
446 | err = usb_set_interface(us122l->chip.dev, 1, 1); | 486 | err = usb_set_interface(us122l->chip.dev, 1, 1); |
447 | if (err) { | 487 | if (err) { |
448 | snd_printk(KERN_ERR "usb_set_interface error \n"); | 488 | snd_printk(KERN_ERR "usb_set_interface error \n"); |
@@ -455,7 +495,10 @@ static bool us122l_create_card(struct snd_card *card) | |||
455 | if (!us122l_start(us122l, 44100, 256)) | 495 | if (!us122l_start(us122l, 44100, 256)) |
456 | return false; | 496 | return false; |
457 | 497 | ||
458 | err = us122l_create_usbmidi(card); | 498 | if (us122l->chip.dev->descriptor.idProduct == USB_ID_US144) |
499 | err = us144_create_usbmidi(card); | ||
500 | else | ||
501 | err = us122l_create_usbmidi(card); | ||
459 | if (err < 0) { | 502 | if (err < 0) { |
460 | snd_printk(KERN_ERR "us122l_create_usbmidi error %i \n", err); | 503 | snd_printk(KERN_ERR "us122l_create_usbmidi error %i \n", err); |
461 | us122l_stop(us122l); | 504 | us122l_stop(us122l); |
@@ -542,6 +585,7 @@ static int us122l_usb_probe(struct usb_interface *intf, | |||
542 | return err; | 585 | return err; |
543 | } | 586 | } |
544 | 587 | ||
588 | usb_get_intf(usb_ifnum_to_if(device, 0)); | ||
545 | usb_get_dev(device); | 589 | usb_get_dev(device); |
546 | *cardp = card; | 590 | *cardp = card; |
547 | return 0; | 591 | return 0; |
@@ -550,9 +594,16 @@ static int us122l_usb_probe(struct usb_interface *intf, | |||
550 | static int snd_us122l_probe(struct usb_interface *intf, | 594 | static int snd_us122l_probe(struct usb_interface *intf, |
551 | const struct usb_device_id *id) | 595 | const struct usb_device_id *id) |
552 | { | 596 | { |
597 | struct usb_device *device = interface_to_usbdev(intf); | ||
553 | struct snd_card *card; | 598 | struct snd_card *card; |
554 | int err; | 599 | int err; |
555 | 600 | ||
601 | if (device->descriptor.idProduct == USB_ID_US144 | ||
602 | && device->speed == USB_SPEED_HIGH) { | ||
603 | snd_printk(KERN_ERR "disable ehci-hcd to run US-144 \n"); | ||
604 | return -ENODEV; | ||
605 | } | ||
606 | |||
556 | snd_printdd(KERN_DEBUG"%p:%i\n", | 607 | snd_printdd(KERN_DEBUG"%p:%i\n", |
557 | intf, intf->cur_altsetting->desc.bInterfaceNumber); | 608 | intf, intf->cur_altsetting->desc.bInterfaceNumber); |
558 | if (intf->cur_altsetting->desc.bInterfaceNumber != 1) | 609 | if (intf->cur_altsetting->desc.bInterfaceNumber != 1) |
@@ -591,7 +642,8 @@ static void snd_us122l_disconnect(struct usb_interface *intf) | |||
591 | snd_usbmidi_disconnect(p); | 642 | snd_usbmidi_disconnect(p); |
592 | } | 643 | } |
593 | 644 | ||
594 | usb_put_intf(intf); | 645 | usb_put_intf(usb_ifnum_to_if(us122l->chip.dev, 0)); |
646 | usb_put_intf(usb_ifnum_to_if(us122l->chip.dev, 1)); | ||
595 | usb_put_dev(us122l->chip.dev); | 647 | usb_put_dev(us122l->chip.dev); |
596 | 648 | ||
597 | while (atomic_read(&us122l->mmap_count)) | 649 | while (atomic_read(&us122l->mmap_count)) |
@@ -642,6 +694,13 @@ static int snd_us122l_resume(struct usb_interface *intf) | |||
642 | 694 | ||
643 | mutex_lock(&us122l->mutex); | 695 | mutex_lock(&us122l->mutex); |
644 | /* needed, doesn't restart without: */ | 696 | /* needed, doesn't restart without: */ |
697 | if (us122l->chip.dev->descriptor.idProduct == USB_ID_US144) { | ||
698 | err = usb_set_interface(us122l->chip.dev, 0, 1); | ||
699 | if (err) { | ||
700 | snd_printk(KERN_ERR "usb_set_interface error \n"); | ||
701 | goto unlock; | ||
702 | } | ||
703 | } | ||
645 | err = usb_set_interface(us122l->chip.dev, 1, 1); | 704 | err = usb_set_interface(us122l->chip.dev, 1, 1); |
646 | if (err) { | 705 | if (err) { |
647 | snd_printk(KERN_ERR "usb_set_interface error \n"); | 706 | snd_printk(KERN_ERR "usb_set_interface error \n"); |
@@ -675,11 +734,11 @@ static struct usb_device_id snd_us122l_usb_id_table[] = { | |||
675 | .idVendor = 0x0644, | 734 | .idVendor = 0x0644, |
676 | .idProduct = USB_ID_US122L | 735 | .idProduct = USB_ID_US122L |
677 | }, | 736 | }, |
678 | /* { */ /* US-144 maybe works when @USB1.1. Untested. */ | 737 | { /* US-144 only works at USB1.1! Disable module ehci-hcd. */ |
679 | /* .match_flags = USB_DEVICE_ID_MATCH_DEVICE, */ | 738 | .match_flags = USB_DEVICE_ID_MATCH_DEVICE, |
680 | /* .idVendor = 0x0644, */ | 739 | .idVendor = 0x0644, |
681 | /* .idProduct = USB_ID_US144 */ | 740 | .idProduct = USB_ID_US144 |
682 | /* }, */ | 741 | }, |
683 | { /* terminator */ } | 742 | { /* terminator */ } |
684 | }; | 743 | }; |
685 | 744 | ||
diff --git a/sound/usb/usx2y/usX2Yhwdep.c b/sound/usb/usx2y/usX2Yhwdep.c index f3d8f71265dd..52e04b2f35d3 100644 --- a/sound/usb/usx2y/usX2Yhwdep.c +++ b/sound/usb/usx2y/usX2Yhwdep.c | |||
@@ -53,7 +53,7 @@ static int snd_us428ctls_vm_fault(struct vm_area_struct *area, | |||
53 | return 0; | 53 | return 0; |
54 | } | 54 | } |
55 | 55 | ||
56 | static struct vm_operations_struct us428ctls_vm_ops = { | 56 | static const struct vm_operations_struct us428ctls_vm_ops = { |
57 | .fault = snd_us428ctls_vm_fault, | 57 | .fault = snd_us428ctls_vm_fault, |
58 | }; | 58 | }; |
59 | 59 | ||
diff --git a/sound/usb/usx2y/usx2yhwdeppcm.c b/sound/usb/usx2y/usx2yhwdeppcm.c index 117946f2debb..4b2304c2e02d 100644 --- a/sound/usb/usx2y/usx2yhwdeppcm.c +++ b/sound/usb/usx2y/usx2yhwdeppcm.c | |||
@@ -697,7 +697,7 @@ static int snd_usX2Y_hwdep_pcm_vm_fault(struct vm_area_struct *area, | |||
697 | } | 697 | } |
698 | 698 | ||
699 | 699 | ||
700 | static struct vm_operations_struct snd_usX2Y_hwdep_pcm_vm_ops = { | 700 | static const struct vm_operations_struct snd_usX2Y_hwdep_pcm_vm_ops = { |
701 | .open = snd_usX2Y_hwdep_pcm_vm_open, | 701 | .open = snd_usX2Y_hwdep_pcm_vm_open, |
702 | .close = snd_usX2Y_hwdep_pcm_vm_close, | 702 | .close = snd_usX2Y_hwdep_pcm_vm_close, |
703 | .fault = snd_usX2Y_hwdep_pcm_vm_fault, | 703 | .fault = snd_usX2Y_hwdep_pcm_vm_fault, |