1
2
3
4
5
6
7
8#include <linux/init.h>
9#include <linux/delay.h>
10#include <linux/slab.h>
11#include <linux/mutex.h>
12#include <linux/module.h>
13#include <linux/pm.h>
14#include <linux/pm_runtime.h>
15#include <sound/core.h>
16#include <sound/hda_codec.h>
17#include <sound/asoundef.h>
18#include <sound/tlv.h>
19#include <sound/initval.h>
20#include <sound/jack.h>
21#include "hda_local.h"
22#include "hda_beep.h"
23#include "hda_jack.h"
24#include <sound/hda_hwdep.h>
25#include <sound/hda_component.h>
26
27#define codec_in_pm(codec) snd_hdac_is_in_pm(&codec->core)
28#define hda_codec_is_power_on(codec) snd_hdac_is_power_on(&codec->core)
29#define codec_has_epss(codec) \
30 ((codec)->core.power_caps & AC_PWRST_EPSS)
31#define codec_has_clkstop(codec) \
32 ((codec)->core.power_caps & AC_PWRST_CLKSTOP)
33
34
35
36
37static int codec_exec_verb(struct hdac_device *dev, unsigned int cmd,
38 unsigned int flags, unsigned int *res)
39{
40 struct hda_codec *codec = container_of(dev, struct hda_codec, core);
41 struct hda_bus *bus = codec->bus;
42 int err;
43
44 if (cmd == ~0)
45 return -1;
46
47 again:
48 snd_hda_power_up_pm(codec);
49 mutex_lock(&bus->core.cmd_mutex);
50 if (flags & HDA_RW_NO_RESPONSE_FALLBACK)
51 bus->no_response_fallback = 1;
52 err = snd_hdac_bus_exec_verb_unlocked(&bus->core, codec->core.addr,
53 cmd, res);
54 bus->no_response_fallback = 0;
55 mutex_unlock(&bus->core.cmd_mutex);
56 snd_hda_power_down_pm(codec);
57 if (!codec_in_pm(codec) && res && err == -EAGAIN) {
58 if (bus->response_reset) {
59 codec_dbg(codec,
60 "resetting BUS due to fatal communication error\n");
61 snd_hda_bus_reset(bus);
62 }
63 goto again;
64 }
65
66 if (!err || codec_in_pm(codec))
67 bus->response_reset = 0;
68 return err;
69}
70
71
72
73
74
75
76
77
78
79void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
80{
81 for (; seq->nid; seq++)
82 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
83}
84EXPORT_SYMBOL_GPL(snd_hda_sequence_write);
85
86
87struct hda_conn_list {
88 struct list_head list;
89 int len;
90 hda_nid_t nid;
91 hda_nid_t conns[];
92};
93
94
95static struct hda_conn_list *
96lookup_conn_list(struct hda_codec *codec, hda_nid_t nid)
97{
98 struct hda_conn_list *p;
99 list_for_each_entry(p, &codec->conn_list, list) {
100 if (p->nid == nid)
101 return p;
102 }
103 return NULL;
104}
105
106static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
107 const hda_nid_t *list)
108{
109 struct hda_conn_list *p;
110
111 p = kmalloc(struct_size(p, conns, len), GFP_KERNEL);
112 if (!p)
113 return -ENOMEM;
114 p->len = len;
115 p->nid = nid;
116 memcpy(p->conns, list, len * sizeof(hda_nid_t));
117 list_add(&p->list, &codec->conn_list);
118 return 0;
119}
120
121static void remove_conn_list(struct hda_codec *codec)
122{
123 while (!list_empty(&codec->conn_list)) {
124 struct hda_conn_list *p;
125 p = list_first_entry(&codec->conn_list, typeof(*p), list);
126 list_del(&p->list);
127 kfree(p);
128 }
129}
130
131
132static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid)
133{
134 hda_nid_t list[32];
135 hda_nid_t *result = list;
136 int len;
137
138 len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list));
139 if (len == -ENOSPC) {
140 len = snd_hda_get_num_raw_conns(codec, nid);
141 result = kmalloc_array(len, sizeof(hda_nid_t), GFP_KERNEL);
142 if (!result)
143 return -ENOMEM;
144 len = snd_hda_get_raw_connections(codec, nid, result, len);
145 }
146 if (len >= 0)
147 len = snd_hda_override_conn_list(codec, nid, len, result);
148 if (result != list)
149 kfree(result);
150 return len;
151}
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
169 const hda_nid_t **listp)
170{
171 bool added = false;
172
173 for (;;) {
174 int err;
175 const struct hda_conn_list *p;
176
177
178 p = lookup_conn_list(codec, nid);
179 if (p) {
180 if (listp)
181 *listp = p->conns;
182 return p->len;
183 }
184 if (snd_BUG_ON(added))
185 return -EINVAL;
186
187 err = read_and_add_raw_conns(codec, nid);
188 if (err < 0)
189 return err;
190 added = true;
191 }
192}
193EXPORT_SYMBOL_GPL(snd_hda_get_conn_list);
194
195
196
197
198
199
200
201
202
203
204
205
206
207int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
208 hda_nid_t *conn_list, int max_conns)
209{
210 const hda_nid_t *list;
211 int len = snd_hda_get_conn_list(codec, nid, &list);
212
213 if (len > 0 && conn_list) {
214 if (len > max_conns) {
215 codec_err(codec, "Too many connections %d for NID 0x%x\n",
216 len, nid);
217 return -EINVAL;
218 }
219 memcpy(conn_list, list, len * sizeof(hda_nid_t));
220 }
221
222 return len;
223}
224EXPORT_SYMBOL_GPL(snd_hda_get_connections);
225
226
227
228
229
230
231
232
233
234
235
236
237
238int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
239 const hda_nid_t *list)
240{
241 struct hda_conn_list *p;
242
243 p = lookup_conn_list(codec, nid);
244 if (p) {
245 list_del(&p->list);
246 kfree(p);
247 }
248
249 return add_conn_list(codec, nid, len, list);
250}
251EXPORT_SYMBOL_GPL(snd_hda_override_conn_list);
252
253
254
255
256
257
258
259
260
261
262
263
264int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
265 hda_nid_t nid, int recursive)
266{
267 const hda_nid_t *conn;
268 int i, nums;
269
270 nums = snd_hda_get_conn_list(codec, mux, &conn);
271 for (i = 0; i < nums; i++)
272 if (conn[i] == nid)
273 return i;
274 if (!recursive)
275 return -1;
276 if (recursive > 10) {
277 codec_dbg(codec, "too deep connection for 0x%x\n", nid);
278 return -1;
279 }
280 recursive++;
281 for (i = 0; i < nums; i++) {
282 unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i]));
283 if (type == AC_WID_PIN || type == AC_WID_AUD_OUT)
284 continue;
285 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0)
286 return i;
287 }
288 return -1;
289}
290EXPORT_SYMBOL_GPL(snd_hda_get_conn_index);
291
292
293
294
295
296
297
298
299
300unsigned int snd_hda_get_num_devices(struct hda_codec *codec, hda_nid_t nid)
301{
302 unsigned int wcaps = get_wcaps(codec, nid);
303 unsigned int parm;
304
305 if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) ||
306 get_wcaps_type(wcaps) != AC_WID_PIN)
307 return 0;
308
309 parm = snd_hdac_read_parm_uncached(&codec->core, nid, AC_PAR_DEVLIST_LEN);
310 if (parm == -1)
311 parm = 0;
312 return parm & AC_DEV_LIST_LEN_MASK;
313}
314EXPORT_SYMBOL_GPL(snd_hda_get_num_devices);
315
316
317
318
319
320
321
322
323
324
325
326int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
327 u8 *dev_list, int max_devices)
328{
329 unsigned int parm;
330 int i, dev_len, devices;
331
332 parm = snd_hda_get_num_devices(codec, nid);
333 if (!parm)
334 return 0;
335
336 dev_len = parm + 1;
337 dev_len = dev_len < max_devices ? dev_len : max_devices;
338
339 devices = 0;
340 while (devices < dev_len) {
341 if (snd_hdac_read(&codec->core, nid,
342 AC_VERB_GET_DEVICE_LIST, devices, &parm))
343 break;
344
345 for (i = 0; i < 8; i++) {
346 dev_list[devices] = (u8)parm;
347 parm >>= 4;
348 devices++;
349 if (devices >= dev_len)
350 break;
351 }
352 }
353 return devices;
354}
355
356
357
358
359
360
361
362
363
364
365int snd_hda_get_dev_select(struct hda_codec *codec, hda_nid_t nid)
366{
367
368 if (!codec->dp_mst)
369 return 0;
370
371 return snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_DEVICE_SEL, 0);
372}
373EXPORT_SYMBOL_GPL(snd_hda_get_dev_select);
374
375
376
377
378
379
380
381
382
383int snd_hda_set_dev_select(struct hda_codec *codec, hda_nid_t nid, int dev_id)
384{
385 int ret, num_devices;
386
387
388 if (!codec->dp_mst)
389 return 0;
390
391
392 num_devices = snd_hda_get_num_devices(codec, nid) + 1;
393
394
395
396
397 if (num_devices == 1)
398 return 0;
399
400
401
402
403 if (num_devices <= dev_id)
404 return -EINVAL;
405
406 ret = snd_hda_codec_write(codec, nid, 0,
407 AC_VERB_SET_DEVICE_SEL, dev_id);
408
409 return ret;
410}
411EXPORT_SYMBOL_GPL(snd_hda_set_dev_select);
412
413
414
415
416static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
417{
418 int i;
419 hda_nid_t nid;
420
421 codec->wcaps = kmalloc_array(codec->core.num_nodes, 4, GFP_KERNEL);
422 if (!codec->wcaps)
423 return -ENOMEM;
424 nid = codec->core.start_nid;
425 for (i = 0; i < codec->core.num_nodes; i++, nid++)
426 codec->wcaps[i] = snd_hdac_read_parm_uncached(&codec->core,
427 nid, AC_PAR_AUDIO_WIDGET_CAP);
428 return 0;
429}
430
431
432static int read_pin_defaults(struct hda_codec *codec)
433{
434 hda_nid_t nid;
435
436 for_each_hda_codec_node(nid, codec) {
437 struct hda_pincfg *pin;
438 unsigned int wcaps = get_wcaps(codec, nid);
439 unsigned int wid_type = get_wcaps_type(wcaps);
440 if (wid_type != AC_WID_PIN)
441 continue;
442 pin = snd_array_new(&codec->init_pins);
443 if (!pin)
444 return -ENOMEM;
445 pin->nid = nid;
446 pin->cfg = snd_hda_codec_read(codec, nid, 0,
447 AC_VERB_GET_CONFIG_DEFAULT, 0);
448
449
450
451
452 pin->ctrl = snd_hda_codec_read(codec, nid, 0,
453 AC_VERB_GET_PIN_WIDGET_CONTROL,
454 0);
455 }
456 return 0;
457}
458
459
460static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
461 struct snd_array *array,
462 hda_nid_t nid)
463{
464 struct hda_pincfg *pin;
465 int i;
466
467 snd_array_for_each(array, i, pin) {
468 if (pin->nid == nid)
469 return pin;
470 }
471 return NULL;
472}
473
474
475
476
477int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
478 hda_nid_t nid, unsigned int cfg)
479{
480 struct hda_pincfg *pin;
481
482
483
484
485
486
487
488
489
490
491 pin = look_up_pincfg(codec, list, nid);
492 if (!pin) {
493 pin = snd_array_new(list);
494 if (!pin)
495 return -ENOMEM;
496 pin->nid = nid;
497 }
498 pin->cfg = cfg;
499 return 0;
500}
501
502
503
504
505
506
507
508
509
510
511
512int snd_hda_codec_set_pincfg(struct hda_codec *codec,
513 hda_nid_t nid, unsigned int cfg)
514{
515 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
516}
517EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg);
518
519
520
521
522
523
524
525
526
527
528unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
529{
530 struct hda_pincfg *pin;
531
532#ifdef CONFIG_SND_HDA_RECONFIG
533 {
534 unsigned int cfg = 0;
535 mutex_lock(&codec->user_mutex);
536 pin = look_up_pincfg(codec, &codec->user_pins, nid);
537 if (pin)
538 cfg = pin->cfg;
539 mutex_unlock(&codec->user_mutex);
540 if (cfg)
541 return cfg;
542 }
543#endif
544 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
545 if (pin)
546 return pin->cfg;
547 pin = look_up_pincfg(codec, &codec->init_pins, nid);
548 if (pin)
549 return pin->cfg;
550 return 0;
551}
552EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg);
553
554
555
556
557
558
559
560
561
562
563
564int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
565 unsigned int val)
566{
567 struct hda_pincfg *pin;
568
569 pin = look_up_pincfg(codec, &codec->init_pins, nid);
570 if (!pin)
571 return -EINVAL;
572 pin->target = val;
573 return 0;
574}
575EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target);
576
577
578
579
580
581
582int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid)
583{
584 struct hda_pincfg *pin;
585
586 pin = look_up_pincfg(codec, &codec->init_pins, nid);
587 if (!pin)
588 return 0;
589 return pin->target;
590}
591EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target);
592
593
594
595
596
597
598
599
600void snd_hda_shutup_pins(struct hda_codec *codec)
601{
602 const struct hda_pincfg *pin;
603 int i;
604
605
606
607
608 if (codec->bus->shutdown)
609 return;
610 snd_array_for_each(&codec->init_pins, i, pin) {
611
612 snd_hda_codec_read(codec, pin->nid, 0,
613 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
614 }
615 codec->pins_shutup = 1;
616}
617EXPORT_SYMBOL_GPL(snd_hda_shutup_pins);
618
619#ifdef CONFIG_PM
620
621static void restore_shutup_pins(struct hda_codec *codec)
622{
623 const struct hda_pincfg *pin;
624 int i;
625
626 if (!codec->pins_shutup)
627 return;
628 if (codec->bus->shutdown)
629 return;
630 snd_array_for_each(&codec->init_pins, i, pin) {
631 snd_hda_codec_write(codec, pin->nid, 0,
632 AC_VERB_SET_PIN_WIDGET_CONTROL,
633 pin->ctrl);
634 }
635 codec->pins_shutup = 0;
636}
637#endif
638
639static void hda_jackpoll_work(struct work_struct *work)
640{
641 struct hda_codec *codec =
642 container_of(work, struct hda_codec, jackpoll_work.work);
643
644
645 if (!codec->jackpoll_interval && snd_hdac_is_power_on(&codec->core))
646 return;
647
648
649 snd_hda_power_up_pm(codec);
650
651 if (codec->jackpoll_interval) {
652 snd_hda_jack_set_dirty_all(codec);
653 snd_hda_jack_poll_all(codec);
654 }
655 snd_hda_power_down_pm(codec);
656
657 if (!codec->jackpoll_interval)
658 return;
659
660 schedule_delayed_work(&codec->jackpoll_work,
661 codec->jackpoll_interval);
662}
663
664
665static void free_init_pincfgs(struct hda_codec *codec)
666{
667 snd_array_free(&codec->driver_pins);
668#ifdef CONFIG_SND_HDA_RECONFIG
669 snd_array_free(&codec->user_pins);
670#endif
671 snd_array_free(&codec->init_pins);
672}
673
674
675
676
677struct hda_cvt_setup {
678 hda_nid_t nid;
679 u8 stream_tag;
680 u8 channel_id;
681 u16 format_id;
682 unsigned char active;
683 unsigned char dirty;
684};
685
686
687static struct hda_cvt_setup *
688get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
689{
690 struct hda_cvt_setup *p;
691 int i;
692
693 snd_array_for_each(&codec->cvt_setups, i, p) {
694 if (p->nid == nid)
695 return p;
696 }
697 p = snd_array_new(&codec->cvt_setups);
698 if (p)
699 p->nid = nid;
700 return p;
701}
702
703
704
705
706static void release_pcm(struct kref *kref)
707{
708 struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref);
709
710 if (pcm->pcm)
711 snd_device_free(pcm->codec->card, pcm->pcm);
712 clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits);
713 kfree(pcm->name);
714 kfree(pcm);
715}
716
717void snd_hda_codec_pcm_put(struct hda_pcm *pcm)
718{
719 kref_put(&pcm->kref, release_pcm);
720}
721EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put);
722
723struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec,
724 const char *fmt, ...)
725{
726 struct hda_pcm *pcm;
727 va_list args;
728
729 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
730 if (!pcm)
731 return NULL;
732
733 pcm->codec = codec;
734 kref_init(&pcm->kref);
735 va_start(args, fmt);
736 pcm->name = kvasprintf(GFP_KERNEL, fmt, args);
737 va_end(args);
738 if (!pcm->name) {
739 kfree(pcm);
740 return NULL;
741 }
742
743 list_add_tail(&pcm->list, &codec->pcm_list_head);
744 return pcm;
745}
746EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new);
747
748
749
750
751static void codec_release_pcms(struct hda_codec *codec)
752{
753 struct hda_pcm *pcm, *n;
754
755 list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) {
756 list_del_init(&pcm->list);
757 if (pcm->pcm)
758 snd_device_disconnect(codec->card, pcm->pcm);
759 snd_hda_codec_pcm_put(pcm);
760 }
761}
762
763void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec)
764{
765 if (codec->registered) {
766
767 pm_runtime_get_noresume(hda_codec_dev(codec));
768 pm_runtime_disable(hda_codec_dev(codec));
769 codec->registered = 0;
770 }
771
772 cancel_delayed_work_sync(&codec->jackpoll_work);
773 if (!codec->in_freeing)
774 snd_hda_ctls_clear(codec);
775 codec_release_pcms(codec);
776 snd_hda_detach_beep_device(codec);
777 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
778 snd_hda_jack_tbl_clear(codec);
779 codec->proc_widget_hook = NULL;
780 codec->spec = NULL;
781
782
783 snd_array_free(&codec->driver_pins);
784 snd_array_free(&codec->cvt_setups);
785 snd_array_free(&codec->spdif_out);
786 snd_array_free(&codec->verbs);
787 codec->preset = NULL;
788 codec->follower_dig_outs = NULL;
789 codec->spdif_status_reset = 0;
790 snd_array_free(&codec->mixers);
791 snd_array_free(&codec->nids);
792 remove_conn_list(codec);
793 snd_hdac_regmap_exit(&codec->core);
794}
795EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup_for_unbind);
796
797static unsigned int hda_set_power_state(struct hda_codec *codec,
798 unsigned int power_state);
799
800
801static void codec_display_power(struct hda_codec *codec, bool enable)
802{
803 if (codec->display_power_control)
804 snd_hdac_display_power(&codec->bus->core, codec->addr, enable);
805}
806
807
808void snd_hda_codec_register(struct hda_codec *codec)
809{
810 if (codec->registered)
811 return;
812 if (device_is_registered(hda_codec_dev(codec))) {
813 codec_display_power(codec, true);
814 pm_runtime_enable(hda_codec_dev(codec));
815
816 snd_hda_power_down(codec);
817 codec->registered = 1;
818 }
819}
820
821static int snd_hda_codec_dev_register(struct snd_device *device)
822{
823 snd_hda_codec_register(device->device_data);
824 return 0;
825}
826
827static int snd_hda_codec_dev_free(struct snd_device *device)
828{
829 struct hda_codec *codec = device->device_data;
830
831 codec->in_freeing = 1;
832
833
834
835
836
837 if (codec->core.type == HDA_DEV_LEGACY)
838 snd_hdac_device_unregister(&codec->core);
839 codec_display_power(codec, false);
840
841
842
843
844
845 if (codec->core.type == HDA_DEV_LEGACY)
846 put_device(hda_codec_dev(codec));
847
848 return 0;
849}
850
851static void snd_hda_codec_dev_release(struct device *dev)
852{
853 struct hda_codec *codec = dev_to_hda_codec(dev);
854
855 free_init_pincfgs(codec);
856 snd_hdac_device_exit(&codec->core);
857 snd_hda_sysfs_clear(codec);
858 kfree(codec->modelname);
859 kfree(codec->wcaps);
860
861
862
863
864
865 if (codec->core.type == HDA_DEV_LEGACY)
866 kfree(codec);
867}
868
869#define DEV_NAME_LEN 31
870
871static int snd_hda_codec_device_init(struct hda_bus *bus, struct snd_card *card,
872 unsigned int codec_addr, struct hda_codec **codecp)
873{
874 char name[DEV_NAME_LEN];
875 struct hda_codec *codec;
876 int err;
877
878 dev_dbg(card->dev, "%s: entry\n", __func__);
879
880 if (snd_BUG_ON(!bus))
881 return -EINVAL;
882 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
883 return -EINVAL;
884
885 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
886 if (!codec)
887 return -ENOMEM;
888
889 sprintf(name, "hdaudioC%dD%d", card->number, codec_addr);
890 err = snd_hdac_device_init(&codec->core, &bus->core, name, codec_addr);
891 if (err < 0) {
892 kfree(codec);
893 return err;
894 }
895
896 codec->core.type = HDA_DEV_LEGACY;
897 *codecp = codec;
898
899 return err;
900}
901
902
903
904
905
906
907
908
909
910
911int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
912 unsigned int codec_addr, struct hda_codec **codecp)
913{
914 int ret;
915
916 ret = snd_hda_codec_device_init(bus, card, codec_addr, codecp);
917 if (ret < 0)
918 return ret;
919
920 return snd_hda_codec_device_new(bus, card, codec_addr, *codecp);
921}
922EXPORT_SYMBOL_GPL(snd_hda_codec_new);
923
924int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card,
925 unsigned int codec_addr, struct hda_codec *codec)
926{
927 char component[31];
928 hda_nid_t fg;
929 int err;
930 static const struct snd_device_ops dev_ops = {
931 .dev_register = snd_hda_codec_dev_register,
932 .dev_free = snd_hda_codec_dev_free,
933 };
934
935 dev_dbg(card->dev, "%s: entry\n", __func__);
936
937 if (snd_BUG_ON(!bus))
938 return -EINVAL;
939 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
940 return -EINVAL;
941
942 codec->core.dev.release = snd_hda_codec_dev_release;
943 codec->core.exec_verb = codec_exec_verb;
944
945 codec->bus = bus;
946 codec->card = card;
947 codec->addr = codec_addr;
948 mutex_init(&codec->spdif_mutex);
949 mutex_init(&codec->control_mutex);
950 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
951 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
952 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
953 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
954 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
955 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
956 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
957 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
958 INIT_LIST_HEAD(&codec->conn_list);
959 INIT_LIST_HEAD(&codec->pcm_list_head);
960
961 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
962 codec->depop_delay = -1;
963 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
964
965#ifdef CONFIG_PM
966 codec->power_jiffies = jiffies;
967#endif
968
969 snd_hda_sysfs_init(codec);
970
971 if (codec->bus->modelname) {
972 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
973 if (!codec->modelname) {
974 err = -ENOMEM;
975 goto error;
976 }
977 }
978
979 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
980 err = read_widget_caps(codec, fg);
981 if (err < 0)
982 goto error;
983 err = read_pin_defaults(codec);
984 if (err < 0)
985 goto error;
986
987
988 hda_set_power_state(codec, AC_PWRST_D0);
989 codec->core.dev.power.power_state = PMSG_ON;
990
991 snd_hda_codec_proc_new(codec);
992
993 snd_hda_create_hwdep(codec);
994
995 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id,
996 codec->core.subsystem_id, codec->core.revision_id);
997 snd_component_add(card, component);
998
999 err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
1000 if (err < 0)
1001 goto error;
1002
1003
1004 pm_runtime_forbid(&codec->core.dev);
1005
1006 return 0;
1007
1008 error:
1009 put_device(hda_codec_dev(codec));
1010 return err;
1011}
1012EXPORT_SYMBOL_GPL(snd_hda_codec_device_new);
1013
1014
1015
1016
1017
1018
1019
1020
1021int snd_hda_codec_update_widgets(struct hda_codec *codec)
1022{
1023 hda_nid_t fg;
1024 int err;
1025
1026 err = snd_hdac_refresh_widgets(&codec->core);
1027 if (err < 0)
1028 return err;
1029
1030
1031
1032
1033 kfree(codec->wcaps);
1034 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
1035 err = read_widget_caps(codec, fg);
1036 if (err < 0)
1037 return err;
1038
1039 snd_array_free(&codec->init_pins);
1040 err = read_pin_defaults(codec);
1041
1042 return err;
1043}
1044EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
1045
1046
1047static void update_pcm_stream_id(struct hda_codec *codec,
1048 struct hda_cvt_setup *p, hda_nid_t nid,
1049 u32 stream_tag, int channel_id)
1050{
1051 unsigned int oldval, newval;
1052
1053 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1054 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1055 newval = (stream_tag << 4) | channel_id;
1056 if (oldval != newval)
1057 snd_hda_codec_write(codec, nid, 0,
1058 AC_VERB_SET_CHANNEL_STREAMID,
1059 newval);
1060 p->stream_tag = stream_tag;
1061 p->channel_id = channel_id;
1062 }
1063}
1064
1065
1066static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1067 hda_nid_t nid, int format)
1068{
1069 unsigned int oldval;
1070
1071 if (p->format_id != format) {
1072 oldval = snd_hda_codec_read(codec, nid, 0,
1073 AC_VERB_GET_STREAM_FORMAT, 0);
1074 if (oldval != format) {
1075 msleep(1);
1076 snd_hda_codec_write(codec, nid, 0,
1077 AC_VERB_SET_STREAM_FORMAT,
1078 format);
1079 }
1080 p->format_id = format;
1081 }
1082}
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1093 u32 stream_tag,
1094 int channel_id, int format)
1095{
1096 struct hda_codec *c;
1097 struct hda_cvt_setup *p;
1098 int type;
1099 int i;
1100
1101 if (!nid)
1102 return;
1103
1104 codec_dbg(codec,
1105 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1106 nid, stream_tag, channel_id, format);
1107 p = get_hda_cvt_setup(codec, nid);
1108 if (!p)
1109 return;
1110
1111 if (codec->patch_ops.stream_pm)
1112 codec->patch_ops.stream_pm(codec, nid, true);
1113 if (codec->pcm_format_first)
1114 update_pcm_format(codec, p, nid, format);
1115 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1116 if (!codec->pcm_format_first)
1117 update_pcm_format(codec, p, nid, format);
1118
1119 p->active = 1;
1120 p->dirty = 0;
1121
1122
1123 type = get_wcaps_type(get_wcaps(codec, nid));
1124 list_for_each_codec(c, codec->bus) {
1125 snd_array_for_each(&c->cvt_setups, i, p) {
1126 if (!p->active && p->stream_tag == stream_tag &&
1127 get_wcaps_type(get_wcaps(c, p->nid)) == type)
1128 p->dirty = 1;
1129 }
1130 }
1131}
1132EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
1133
1134static void really_cleanup_stream(struct hda_codec *codec,
1135 struct hda_cvt_setup *q);
1136
1137
1138
1139
1140
1141
1142
1143void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1144 int do_now)
1145{
1146 struct hda_cvt_setup *p;
1147
1148 if (!nid)
1149 return;
1150
1151 if (codec->no_sticky_stream)
1152 do_now = 1;
1153
1154 codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
1155 p = get_hda_cvt_setup(codec, nid);
1156 if (p) {
1157
1158
1159
1160
1161 if (do_now)
1162 really_cleanup_stream(codec, p);
1163 else
1164 p->active = 0;
1165 }
1166}
1167EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
1168
1169static void really_cleanup_stream(struct hda_codec *codec,
1170 struct hda_cvt_setup *q)
1171{
1172 hda_nid_t nid = q->nid;
1173 if (q->stream_tag || q->channel_id)
1174 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1175 if (q->format_id)
1176 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1177);
1178 memset(q, 0, sizeof(*q));
1179 q->nid = nid;
1180 if (codec->patch_ops.stream_pm)
1181 codec->patch_ops.stream_pm(codec, nid, false);
1182}
1183
1184
1185static void purify_inactive_streams(struct hda_codec *codec)
1186{
1187 struct hda_codec *c;
1188 struct hda_cvt_setup *p;
1189 int i;
1190
1191 list_for_each_codec(c, codec->bus) {
1192 snd_array_for_each(&c->cvt_setups, i, p) {
1193 if (p->dirty)
1194 really_cleanup_stream(c, p);
1195 }
1196 }
1197}
1198
1199#ifdef CONFIG_PM
1200
1201static void hda_cleanup_all_streams(struct hda_codec *codec)
1202{
1203 struct hda_cvt_setup *p;
1204 int i;
1205
1206 snd_array_for_each(&codec->cvt_setups, i, p) {
1207 if (p->stream_tag)
1208 really_cleanup_stream(codec, p);
1209 }
1210}
1211#endif
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
1230{
1231 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1232 nid = codec->core.afg;
1233 return snd_hda_param_read(codec, nid,
1234 direction == HDA_OUTPUT ?
1235 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
1236}
1237EXPORT_SYMBOL_GPL(query_amp_caps);
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1249 int dir, unsigned int bits)
1250{
1251 if (!nid)
1252 return false;
1253 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1254 if (query_amp_caps(codec, nid, dir) & bits)
1255 return true;
1256 return false;
1257}
1258EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1274 unsigned int caps)
1275{
1276 unsigned int parm;
1277
1278 snd_hda_override_wcaps(codec, nid,
1279 get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD);
1280 parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP;
1281 return snd_hdac_override_parm(&codec->core, nid, parm, caps);
1282}
1283EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
1284
1285static unsigned int encode_amp(struct hda_codec *codec, hda_nid_t nid,
1286 int ch, int dir, int idx)
1287{
1288 unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx);
1289
1290
1291 if ((query_amp_caps(codec, nid, dir) &
1292 (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) == AC_AMPCAP_MIN_MUTE)
1293 cmd |= AC_AMP_FAKE_MUTE;
1294 return cmd;
1295}
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
1310 int ch, int dir, int idx, int mask, int val)
1311{
1312 unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
1313
1314 return snd_hdac_regmap_update_raw(&codec->core, cmd, mask, val);
1315}
1316EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1331 int direction, int idx, int mask, int val)
1332{
1333 int ch, ret = 0;
1334
1335 if (snd_BUG_ON(mask & ~0xff))
1336 mask &= 0xff;
1337 for (ch = 0; ch < 2; ch++)
1338 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1339 idx, mask, val);
1340 return ret;
1341}
1342EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
1359 int dir, int idx, int mask, int val)
1360{
1361 unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
1362
1363 if (!codec->core.regmap)
1364 return -EINVAL;
1365 return snd_hdac_regmap_update_raw_once(&codec->core, cmd, mask, val);
1366}
1367EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
1381 int dir, int idx, int mask, int val)
1382{
1383 int ch, ret = 0;
1384
1385 if (snd_BUG_ON(mask & ~0xff))
1386 mask &= 0xff;
1387 for (ch = 0; ch < 2; ch++)
1388 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
1389 idx, mask, val);
1390 return ret;
1391}
1392EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
1393
1394static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
1395 unsigned int ofs)
1396{
1397 u32 caps = query_amp_caps(codec, nid, dir);
1398
1399 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1400 if (ofs < caps)
1401 caps -= ofs;
1402 return caps;
1403}
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1414 struct snd_ctl_elem_info *uinfo)
1415{
1416 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1417 u16 nid = get_amp_nid(kcontrol);
1418 u8 chs = get_amp_channels(kcontrol);
1419 int dir = get_amp_direction(kcontrol);
1420 unsigned int ofs = get_amp_offset(kcontrol);
1421
1422 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1423 uinfo->count = chs == 3 ? 2 : 1;
1424 uinfo->value.integer.min = 0;
1425 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
1426 if (!uinfo->value.integer.max) {
1427 codec_warn(codec,
1428 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1429 nid, kcontrol->id.name);
1430 return -EINVAL;
1431 }
1432 return 0;
1433}
1434EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
1435
1436
1437static inline unsigned int
1438read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1439 int ch, int dir, int idx, unsigned int ofs)
1440{
1441 unsigned int val;
1442 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1443 val &= HDA_AMP_VOLMASK;
1444 if (val >= ofs)
1445 val -= ofs;
1446 else
1447 val = 0;
1448 return val;
1449}
1450
1451static inline int
1452update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1453 int ch, int dir, int idx, unsigned int ofs,
1454 unsigned int val)
1455{
1456 unsigned int maxval;
1457
1458 if (val > 0)
1459 val += ofs;
1460
1461 maxval = get_amp_max_value(codec, nid, dir, 0);
1462 if (val > maxval)
1463 val = maxval;
1464 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1465 HDA_AMP_VOLMASK, val);
1466}
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1477 struct snd_ctl_elem_value *ucontrol)
1478{
1479 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1480 hda_nid_t nid = get_amp_nid(kcontrol);
1481 int chs = get_amp_channels(kcontrol);
1482 int dir = get_amp_direction(kcontrol);
1483 int idx = get_amp_index(kcontrol);
1484 unsigned int ofs = get_amp_offset(kcontrol);
1485 long *valp = ucontrol->value.integer.value;
1486
1487 if (chs & 1)
1488 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
1489 if (chs & 2)
1490 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
1491 return 0;
1492}
1493EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1504 struct snd_ctl_elem_value *ucontrol)
1505{
1506 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1507 hda_nid_t nid = get_amp_nid(kcontrol);
1508 int chs = get_amp_channels(kcontrol);
1509 int dir = get_amp_direction(kcontrol);
1510 int idx = get_amp_index(kcontrol);
1511 unsigned int ofs = get_amp_offset(kcontrol);
1512 long *valp = ucontrol->value.integer.value;
1513 int change = 0;
1514
1515 if (chs & 1) {
1516 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
1517 valp++;
1518 }
1519 if (chs & 2)
1520 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
1521 return change;
1522}
1523EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
1524
1525
1526static void get_ctl_amp_tlv(struct snd_kcontrol *kcontrol, unsigned int *tlv)
1527{
1528 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1529 hda_nid_t nid = get_amp_nid(kcontrol);
1530 int dir = get_amp_direction(kcontrol);
1531 unsigned int ofs = get_amp_offset(kcontrol);
1532 bool min_mute = get_amp_min_mute(kcontrol);
1533 u32 caps, val1, val2;
1534
1535 caps = query_amp_caps(codec, nid, dir);
1536 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1537 val2 = (val2 + 1) * 25;
1538 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1539 val1 += ofs;
1540 val1 = ((int)val1) * ((int)val2);
1541 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
1542 val2 |= TLV_DB_SCALE_MUTE;
1543 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1544 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1545 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = val1;
1546 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = val2;
1547}
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1560 unsigned int size, unsigned int __user *_tlv)
1561{
1562 unsigned int tlv[4];
1563
1564 if (size < 4 * sizeof(unsigned int))
1565 return -ENOMEM;
1566 get_ctl_amp_tlv(kcontrol, tlv);
1567 if (copy_to_user(_tlv, tlv, sizeof(tlv)))
1568 return -EFAULT;
1569 return 0;
1570}
1571EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1585 unsigned int *tlv)
1586{
1587 u32 caps;
1588 int nums, step;
1589
1590 caps = query_amp_caps(codec, nid, dir);
1591 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1592 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1593 step = (step + 1) * 25;
1594 tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1595 tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1596 tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = -nums * step;
1597 tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = step;
1598}
1599EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
1600
1601
1602static struct snd_kcontrol *
1603find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
1604{
1605 struct snd_ctl_elem_id id;
1606 memset(&id, 0, sizeof(id));
1607 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1608 id.device = dev;
1609 id.index = idx;
1610 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1611 return NULL;
1612 strcpy(id.name, name);
1613 return snd_ctl_find_id(codec->card, &id);
1614}
1615
1616
1617
1618
1619
1620
1621
1622
1623struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1624 const char *name)
1625{
1626 return find_mixer_ctl(codec, name, 0, 0);
1627}
1628EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
1629
1630static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
1631 int start_idx)
1632{
1633 int i, idx;
1634
1635 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
1636 if (!find_mixer_ctl(codec, name, 0, idx))
1637 return idx;
1638 }
1639 return -EBUSY;
1640}
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
1662 struct snd_kcontrol *kctl)
1663{
1664 int err;
1665 unsigned short flags = 0;
1666 struct hda_nid_item *item;
1667
1668 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
1669 flags |= HDA_NID_ITEM_AMP;
1670 if (nid == 0)
1671 nid = get_amp_nid_(kctl->private_value);
1672 }
1673 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
1674 nid = kctl->id.subdevice & 0xffff;
1675 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
1676 kctl->id.subdevice = 0;
1677 err = snd_ctl_add(codec->card, kctl);
1678 if (err < 0)
1679 return err;
1680 item = snd_array_new(&codec->mixers);
1681 if (!item)
1682 return -ENOMEM;
1683 item->kctl = kctl;
1684 item->nid = nid;
1685 item->flags = flags;
1686 return 0;
1687}
1688EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
1702 unsigned int index, hda_nid_t nid)
1703{
1704 struct hda_nid_item *item;
1705
1706 if (nid > 0) {
1707 item = snd_array_new(&codec->nids);
1708 if (!item)
1709 return -ENOMEM;
1710 item->kctl = kctl;
1711 item->index = index;
1712 item->nid = nid;
1713 return 0;
1714 }
1715 codec_err(codec, "no NID for mapping control %s:%d:%d\n",
1716 kctl->id.name, kctl->id.index, index);
1717 return -EINVAL;
1718}
1719EXPORT_SYMBOL_GPL(snd_hda_add_nid);
1720
1721
1722
1723
1724
1725void snd_hda_ctls_clear(struct hda_codec *codec)
1726{
1727 int i;
1728 struct hda_nid_item *items = codec->mixers.list;
1729 for (i = 0; i < codec->mixers.used; i++)
1730 snd_ctl_remove(codec->card, items[i].kctl);
1731 snd_array_free(&codec->mixers);
1732 snd_array_free(&codec->nids);
1733}
1734
1735
1736
1737
1738
1739
1740
1741int snd_hda_lock_devices(struct hda_bus *bus)
1742{
1743 struct snd_card *card = bus->card;
1744 struct hda_codec *codec;
1745
1746 spin_lock(&card->files_lock);
1747 if (card->shutdown)
1748 goto err_unlock;
1749 card->shutdown = 1;
1750 if (!list_empty(&card->ctl_files))
1751 goto err_clear;
1752
1753 list_for_each_codec(codec, bus) {
1754 struct hda_pcm *cpcm;
1755 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
1756 if (!cpcm->pcm)
1757 continue;
1758 if (cpcm->pcm->streams[0].substream_opened ||
1759 cpcm->pcm->streams[1].substream_opened)
1760 goto err_clear;
1761 }
1762 }
1763 spin_unlock(&card->files_lock);
1764 return 0;
1765
1766 err_clear:
1767 card->shutdown = 0;
1768 err_unlock:
1769 spin_unlock(&card->files_lock);
1770 return -EINVAL;
1771}
1772EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
1773
1774
1775
1776
1777
1778void snd_hda_unlock_devices(struct hda_bus *bus)
1779{
1780 struct snd_card *card = bus->card;
1781
1782 spin_lock(&card->files_lock);
1783 card->shutdown = 0;
1784 spin_unlock(&card->files_lock);
1785}
1786EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798int snd_hda_codec_reset(struct hda_codec *codec)
1799{
1800 struct hda_bus *bus = codec->bus;
1801
1802 if (snd_hda_lock_devices(bus) < 0)
1803 return -EBUSY;
1804
1805
1806 snd_hdac_device_unregister(&codec->core);
1807
1808
1809 snd_hda_unlock_devices(bus);
1810 return 0;
1811}
1812
1813typedef int (*map_follower_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
1814
1815
1816static int map_followers(struct hda_codec *codec, const char * const *followers,
1817 const char *suffix, map_follower_func_t func, void *data)
1818{
1819 struct hda_nid_item *items;
1820 const char * const *s;
1821 int i, err;
1822
1823 items = codec->mixers.list;
1824 for (i = 0; i < codec->mixers.used; i++) {
1825 struct snd_kcontrol *sctl = items[i].kctl;
1826 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
1827 continue;
1828 for (s = followers; *s; s++) {
1829 char tmpname[sizeof(sctl->id.name)];
1830 const char *name = *s;
1831 if (suffix) {
1832 snprintf(tmpname, sizeof(tmpname), "%s %s",
1833 name, suffix);
1834 name = tmpname;
1835 }
1836 if (!strcmp(sctl->id.name, name)) {
1837 err = func(codec, data, sctl);
1838 if (err)
1839 return err;
1840 break;
1841 }
1842 }
1843 }
1844 return 0;
1845}
1846
1847static int check_follower_present(struct hda_codec *codec,
1848 void *data, struct snd_kcontrol *sctl)
1849{
1850 return 1;
1851}
1852
1853
1854static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
1855{
1856 struct snd_ctl_elem_value *ucontrol;
1857 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
1858 if (!ucontrol)
1859 return -ENOMEM;
1860 ucontrol->value.integer.value[0] = val;
1861 ucontrol->value.integer.value[1] = val;
1862 kctl->put(kctl, ucontrol);
1863 kfree(ucontrol);
1864 return 0;
1865}
1866
1867struct follower_init_arg {
1868 struct hda_codec *codec;
1869 int step;
1870};
1871
1872
1873static int init_follower_0dB(struct snd_kcontrol *follower,
1874 struct snd_kcontrol *kctl,
1875 void *_arg)
1876{
1877 struct follower_init_arg *arg = _arg;
1878 int _tlv[4];
1879 const int *tlv = NULL;
1880 int step;
1881 int val;
1882
1883 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1884 if (kctl->tlv.c != snd_hda_mixer_amp_tlv) {
1885 codec_err(arg->codec,
1886 "Unexpected TLV callback for follower %s:%d\n",
1887 kctl->id.name, kctl->id.index);
1888 return 0;
1889 }
1890 get_ctl_amp_tlv(kctl, _tlv);
1891 tlv = _tlv;
1892 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
1893 tlv = kctl->tlv.p;
1894
1895 if (!tlv || tlv[SNDRV_CTL_TLVO_TYPE] != SNDRV_CTL_TLVT_DB_SCALE)
1896 return 0;
1897
1898 step = tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP];
1899 step &= ~TLV_DB_SCALE_MUTE;
1900 if (!step)
1901 return 0;
1902 if (arg->step && arg->step != step) {
1903 codec_err(arg->codec,
1904 "Mismatching dB step for vmaster follower (%d!=%d)\n",
1905 arg->step, step);
1906 return 0;
1907 }
1908
1909 arg->step = step;
1910 val = -tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] / step;
1911 if (val > 0) {
1912 put_kctl_with_value(follower, val);
1913 return val;
1914 }
1915
1916 return 0;
1917}
1918
1919
1920static int init_follower_unmute(struct snd_kcontrol *follower,
1921 struct snd_kcontrol *kctl,
1922 void *_arg)
1923{
1924 return put_kctl_with_value(follower, 1);
1925}
1926
1927static int add_follower(struct hda_codec *codec,
1928 void *data, struct snd_kcontrol *follower)
1929{
1930 return snd_ctl_add_follower(data, follower);
1931}
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1953 unsigned int *tlv, const char * const *followers,
1954 const char *suffix, bool init_follower_vol,
1955 struct snd_kcontrol **ctl_ret)
1956{
1957 struct snd_kcontrol *kctl;
1958 int err;
1959
1960 if (ctl_ret)
1961 *ctl_ret = NULL;
1962
1963 err = map_followers(codec, followers, suffix, check_follower_present, NULL);
1964 if (err != 1) {
1965 codec_dbg(codec, "No follower found for %s\n", name);
1966 return 0;
1967 }
1968 kctl = snd_ctl_make_virtual_master(name, tlv);
1969 if (!kctl)
1970 return -ENOMEM;
1971 err = snd_hda_ctl_add(codec, 0, kctl);
1972 if (err < 0)
1973 return err;
1974
1975 err = map_followers(codec, followers, suffix, add_follower, kctl);
1976 if (err < 0)
1977 return err;
1978
1979
1980 put_kctl_with_value(kctl, 0);
1981 if (init_follower_vol) {
1982 struct follower_init_arg arg = {
1983 .codec = codec,
1984 .step = 0,
1985 };
1986 snd_ctl_apply_vmaster_followers(kctl,
1987 tlv ? init_follower_0dB : init_follower_unmute,
1988 &arg);
1989 }
1990
1991 if (ctl_ret)
1992 *ctl_ret = kctl;
1993 return 0;
1994}
1995EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
1996
1997
1998
1999
2000static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
2001 struct snd_ctl_elem_info *uinfo)
2002{
2003 static const char * const texts[] = {
2004 "On", "Off", "Follow Master"
2005 };
2006
2007 return snd_ctl_enum_info(uinfo, 1, 3, texts);
2008}
2009
2010static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2011 struct snd_ctl_elem_value *ucontrol)
2012{
2013 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2014 ucontrol->value.enumerated.item[0] = hook->mute_mode;
2015 return 0;
2016}
2017
2018static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2019 struct snd_ctl_elem_value *ucontrol)
2020{
2021 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2022 unsigned int old_mode = hook->mute_mode;
2023
2024 hook->mute_mode = ucontrol->value.enumerated.item[0];
2025 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2026 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2027 if (old_mode == hook->mute_mode)
2028 return 0;
2029 snd_hda_sync_vmaster_hook(hook);
2030 return 1;
2031}
2032
2033static const struct snd_kcontrol_new vmaster_mute_mode = {
2034 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2035 .name = "Mute-LED Mode",
2036 .info = vmaster_mute_mode_info,
2037 .get = vmaster_mute_mode_get,
2038 .put = vmaster_mute_mode_put,
2039};
2040
2041
2042static void vmaster_hook(void *private_data, int enabled)
2043{
2044 struct hda_vmaster_mute_hook *hook = private_data;
2045
2046 if (hook->mute_mode != HDA_VMUTE_FOLLOW_MASTER)
2047 enabled = hook->mute_mode;
2048 hook->hook(hook->codec, enabled);
2049}
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061int snd_hda_add_vmaster_hook(struct hda_codec *codec,
2062 struct hda_vmaster_mute_hook *hook,
2063 bool expose_enum_ctl)
2064{
2065 struct snd_kcontrol *kctl;
2066
2067 if (!hook->hook || !hook->sw_kctl)
2068 return 0;
2069 hook->codec = codec;
2070 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2071 snd_ctl_add_vmaster_hook(hook->sw_kctl, vmaster_hook, hook);
2072 if (!expose_enum_ctl)
2073 return 0;
2074 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2075 if (!kctl)
2076 return -ENOMEM;
2077 return snd_hda_ctl_add(codec, 0, kctl);
2078}
2079EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
2080
2081
2082
2083
2084
2085
2086
2087
2088void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2089{
2090 if (!hook->hook || !hook->codec)
2091 return;
2092
2093
2094
2095 if (hook->codec->bus->shutdown)
2096 return;
2097 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
2098}
2099EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2111 struct snd_ctl_elem_info *uinfo)
2112{
2113 int chs = get_amp_channels(kcontrol);
2114
2115 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2116 uinfo->count = chs == 3 ? 2 : 1;
2117 uinfo->value.integer.min = 0;
2118 uinfo->value.integer.max = 1;
2119 return 0;
2120}
2121EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2132 struct snd_ctl_elem_value *ucontrol)
2133{
2134 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2135 hda_nid_t nid = get_amp_nid(kcontrol);
2136 int chs = get_amp_channels(kcontrol);
2137 int dir = get_amp_direction(kcontrol);
2138 int idx = get_amp_index(kcontrol);
2139 long *valp = ucontrol->value.integer.value;
2140
2141 if (chs & 1)
2142 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
2143 HDA_AMP_MUTE) ? 0 : 1;
2144 if (chs & 2)
2145 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
2146 HDA_AMP_MUTE) ? 0 : 1;
2147 return 0;
2148}
2149EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2160 struct snd_ctl_elem_value *ucontrol)
2161{
2162 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2163 hda_nid_t nid = get_amp_nid(kcontrol);
2164 int chs = get_amp_channels(kcontrol);
2165 int dir = get_amp_direction(kcontrol);
2166 int idx = get_amp_index(kcontrol);
2167 long *valp = ucontrol->value.integer.value;
2168 int change = 0;
2169
2170 if (chs & 1) {
2171 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
2172 HDA_AMP_MUTE,
2173 *valp ? 0 : HDA_AMP_MUTE);
2174 valp++;
2175 }
2176 if (chs & 2)
2177 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
2178 HDA_AMP_MUTE,
2179 *valp ? 0 : HDA_AMP_MUTE);
2180 hda_call_check_power_status(codec, nid);
2181 return change;
2182}
2183EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
2184
2185
2186
2187
2188
2189static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2190 struct snd_ctl_elem_info *uinfo)
2191{
2192 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2193 uinfo->count = 1;
2194 return 0;
2195}
2196
2197static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2198 struct snd_ctl_elem_value *ucontrol)
2199{
2200 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2201 IEC958_AES0_NONAUDIO |
2202 IEC958_AES0_CON_EMPHASIS_5015 |
2203 IEC958_AES0_CON_NOT_COPYRIGHT;
2204 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2205 IEC958_AES1_CON_ORIGINAL;
2206 return 0;
2207}
2208
2209static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2210 struct snd_ctl_elem_value *ucontrol)
2211{
2212 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2213 IEC958_AES0_NONAUDIO |
2214 IEC958_AES0_PRO_EMPHASIS_5015;
2215 return 0;
2216}
2217
2218static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2219 struct snd_ctl_elem_value *ucontrol)
2220{
2221 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2222 int idx = kcontrol->private_value;
2223 struct hda_spdif_out *spdif;
2224
2225 if (WARN_ON(codec->spdif_out.used <= idx))
2226 return -EINVAL;
2227 mutex_lock(&codec->spdif_mutex);
2228 spdif = snd_array_elem(&codec->spdif_out, idx);
2229 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
2230 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
2231 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
2232 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
2233 mutex_unlock(&codec->spdif_mutex);
2234
2235 return 0;
2236}
2237
2238
2239
2240
2241static unsigned short convert_from_spdif_status(unsigned int sbits)
2242{
2243 unsigned short val = 0;
2244
2245 if (sbits & IEC958_AES0_PROFESSIONAL)
2246 val |= AC_DIG1_PROFESSIONAL;
2247 if (sbits & IEC958_AES0_NONAUDIO)
2248 val |= AC_DIG1_NONAUDIO;
2249 if (sbits & IEC958_AES0_PROFESSIONAL) {
2250 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2251 IEC958_AES0_PRO_EMPHASIS_5015)
2252 val |= AC_DIG1_EMPHASIS;
2253 } else {
2254 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2255 IEC958_AES0_CON_EMPHASIS_5015)
2256 val |= AC_DIG1_EMPHASIS;
2257 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2258 val |= AC_DIG1_COPYRIGHT;
2259 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
2260 val |= AC_DIG1_LEVEL;
2261 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2262 }
2263 return val;
2264}
2265
2266
2267
2268static unsigned int convert_to_spdif_status(unsigned short val)
2269{
2270 unsigned int sbits = 0;
2271
2272 if (val & AC_DIG1_NONAUDIO)
2273 sbits |= IEC958_AES0_NONAUDIO;
2274 if (val & AC_DIG1_PROFESSIONAL)
2275 sbits |= IEC958_AES0_PROFESSIONAL;
2276 if (sbits & IEC958_AES0_PROFESSIONAL) {
2277 if (val & AC_DIG1_EMPHASIS)
2278 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2279 } else {
2280 if (val & AC_DIG1_EMPHASIS)
2281 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
2282 if (!(val & AC_DIG1_COPYRIGHT))
2283 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
2284 if (val & AC_DIG1_LEVEL)
2285 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2286 sbits |= val & (0x7f << 8);
2287 }
2288 return sbits;
2289}
2290
2291
2292static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
2293 int mask, int val)
2294{
2295 const hda_nid_t *d;
2296
2297 snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1,
2298 mask, val);
2299 d = codec->follower_dig_outs;
2300 if (!d)
2301 return;
2302 for (; *d; d++)
2303 snd_hdac_regmap_update(&codec->core, *d,
2304 AC_VERB_SET_DIGI_CONVERT_1, mask, val);
2305}
2306
2307static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2308 int dig1, int dig2)
2309{
2310 unsigned int mask = 0;
2311 unsigned int val = 0;
2312
2313 if (dig1 != -1) {
2314 mask |= 0xff;
2315 val = dig1;
2316 }
2317 if (dig2 != -1) {
2318 mask |= 0xff00;
2319 val |= dig2 << 8;
2320 }
2321 set_dig_out(codec, nid, mask, val);
2322}
2323
2324static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2325 struct snd_ctl_elem_value *ucontrol)
2326{
2327 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2328 int idx = kcontrol->private_value;
2329 struct hda_spdif_out *spdif;
2330 hda_nid_t nid;
2331 unsigned short val;
2332 int change;
2333
2334 if (WARN_ON(codec->spdif_out.used <= idx))
2335 return -EINVAL;
2336 mutex_lock(&codec->spdif_mutex);
2337 spdif = snd_array_elem(&codec->spdif_out, idx);
2338 nid = spdif->nid;
2339 spdif->status = ucontrol->value.iec958.status[0] |
2340 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2341 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2342 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
2343 val = convert_from_spdif_status(spdif->status);
2344 val |= spdif->ctls & 1;
2345 change = spdif->ctls != val;
2346 spdif->ctls = val;
2347 if (change && nid != (u16)-1)
2348 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
2349 mutex_unlock(&codec->spdif_mutex);
2350 return change;
2351}
2352
2353#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
2354
2355static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2356 struct snd_ctl_elem_value *ucontrol)
2357{
2358 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2359 int idx = kcontrol->private_value;
2360 struct hda_spdif_out *spdif;
2361
2362 if (WARN_ON(codec->spdif_out.used <= idx))
2363 return -EINVAL;
2364 mutex_lock(&codec->spdif_mutex);
2365 spdif = snd_array_elem(&codec->spdif_out, idx);
2366 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
2367 mutex_unlock(&codec->spdif_mutex);
2368 return 0;
2369}
2370
2371static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
2372 int dig1, int dig2)
2373{
2374 set_dig_out_convert(codec, nid, dig1, dig2);
2375
2376 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2377 (dig1 & AC_DIG1_ENABLE))
2378 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2379 HDA_AMP_MUTE, 0);
2380}
2381
2382static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2383 struct snd_ctl_elem_value *ucontrol)
2384{
2385 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2386 int idx = kcontrol->private_value;
2387 struct hda_spdif_out *spdif;
2388 hda_nid_t nid;
2389 unsigned short val;
2390 int change;
2391
2392 if (WARN_ON(codec->spdif_out.used <= idx))
2393 return -EINVAL;
2394 mutex_lock(&codec->spdif_mutex);
2395 spdif = snd_array_elem(&codec->spdif_out, idx);
2396 nid = spdif->nid;
2397 val = spdif->ctls & ~AC_DIG1_ENABLE;
2398 if (ucontrol->value.integer.value[0])
2399 val |= AC_DIG1_ENABLE;
2400 change = spdif->ctls != val;
2401 spdif->ctls = val;
2402 if (change && nid != (u16)-1)
2403 set_spdif_ctls(codec, nid, val & 0xff, -1);
2404 mutex_unlock(&codec->spdif_mutex);
2405 return change;
2406}
2407
2408static const struct snd_kcontrol_new dig_mixes[] = {
2409 {
2410 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2411 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2412 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
2413 .info = snd_hda_spdif_mask_info,
2414 .get = snd_hda_spdif_cmask_get,
2415 },
2416 {
2417 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2418 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2419 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
2420 .info = snd_hda_spdif_mask_info,
2421 .get = snd_hda_spdif_pmask_get,
2422 },
2423 {
2424 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2425 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
2426 .info = snd_hda_spdif_mask_info,
2427 .get = snd_hda_spdif_default_get,
2428 .put = snd_hda_spdif_default_put,
2429 },
2430 {
2431 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2432 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
2433 .info = snd_hda_spdif_out_switch_info,
2434 .get = snd_hda_spdif_out_switch_get,
2435 .put = snd_hda_spdif_out_switch_put,
2436 },
2437 { }
2438};
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
2452 hda_nid_t associated_nid,
2453 hda_nid_t cvt_nid,
2454 int type)
2455{
2456 int err;
2457 struct snd_kcontrol *kctl;
2458 const struct snd_kcontrol_new *dig_mix;
2459 int idx = 0;
2460 int val = 0;
2461 const int spdif_index = 16;
2462 struct hda_spdif_out *spdif;
2463 struct hda_bus *bus = codec->bus;
2464
2465 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
2466 type == HDA_PCM_TYPE_SPDIF) {
2467 idx = spdif_index;
2468 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
2469 type == HDA_PCM_TYPE_HDMI) {
2470
2471 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2472 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
2473 if (!kctl)
2474 break;
2475 kctl->id.index = spdif_index;
2476 }
2477 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
2478 }
2479 if (!bus->primary_dig_out_type)
2480 bus->primary_dig_out_type = type;
2481
2482 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
2483 if (idx < 0) {
2484 codec_err(codec, "too many IEC958 outputs\n");
2485 return -EBUSY;
2486 }
2487 spdif = snd_array_new(&codec->spdif_out);
2488 if (!spdif)
2489 return -ENOMEM;
2490 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2491 kctl = snd_ctl_new1(dig_mix, codec);
2492 if (!kctl)
2493 return -ENOMEM;
2494 kctl->id.index = idx;
2495 kctl->private_value = codec->spdif_out.used - 1;
2496 err = snd_hda_ctl_add(codec, associated_nid, kctl);
2497 if (err < 0)
2498 return err;
2499 }
2500 spdif->nid = cvt_nid;
2501 snd_hdac_regmap_read(&codec->core, cvt_nid,
2502 AC_VERB_GET_DIGI_CONVERT_1, &val);
2503 spdif->ctls = val;
2504 spdif->status = convert_to_spdif_status(spdif->ctls);
2505 return 0;
2506}
2507EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
2508
2509
2510
2511
2512
2513
2514
2515
2516struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
2517 hda_nid_t nid)
2518{
2519 struct hda_spdif_out *spdif;
2520 int i;
2521
2522 snd_array_for_each(&codec->spdif_out, i, spdif) {
2523 if (spdif->nid == nid)
2524 return spdif;
2525 }
2526 return NULL;
2527}
2528EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
2529
2530
2531
2532
2533
2534
2535
2536
2537void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
2538{
2539 struct hda_spdif_out *spdif;
2540
2541 if (WARN_ON(codec->spdif_out.used <= idx))
2542 return;
2543 mutex_lock(&codec->spdif_mutex);
2544 spdif = snd_array_elem(&codec->spdif_out, idx);
2545 spdif->nid = (u16)-1;
2546 mutex_unlock(&codec->spdif_mutex);
2547}
2548EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
2559{
2560 struct hda_spdif_out *spdif;
2561 unsigned short val;
2562
2563 if (WARN_ON(codec->spdif_out.used <= idx))
2564 return;
2565 mutex_lock(&codec->spdif_mutex);
2566 spdif = snd_array_elem(&codec->spdif_out, idx);
2567 if (spdif->nid != nid) {
2568 spdif->nid = nid;
2569 val = spdif->ctls;
2570 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
2571 }
2572 mutex_unlock(&codec->spdif_mutex);
2573}
2574EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
2575
2576
2577
2578
2579static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2580 struct snd_ctl_elem_value *ucontrol)
2581{
2582 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2583 ucontrol->value.integer.value[0] = mout->share_spdif;
2584 return 0;
2585}
2586
2587static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2588 struct snd_ctl_elem_value *ucontrol)
2589{
2590 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2591 mout->share_spdif = !!ucontrol->value.integer.value[0];
2592 return 0;
2593}
2594
2595static const struct snd_kcontrol_new spdif_share_sw = {
2596 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2597 .name = "IEC958 Default PCM Playback Switch",
2598 .info = snd_ctl_boolean_mono_info,
2599 .get = spdif_share_sw_get,
2600 .put = spdif_share_sw_put,
2601};
2602
2603
2604
2605
2606
2607
2608int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2609 struct hda_multi_out *mout)
2610{
2611 struct snd_kcontrol *kctl;
2612
2613 if (!mout->dig_out_nid)
2614 return 0;
2615
2616 kctl = snd_ctl_new1(&spdif_share_sw, mout);
2617 if (!kctl)
2618 return -ENOMEM;
2619
2620 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
2621}
2622EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
2623
2624
2625
2626
2627
2628#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2629
2630static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2631 struct snd_ctl_elem_value *ucontrol)
2632{
2633 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2634
2635 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2636 return 0;
2637}
2638
2639static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2640 struct snd_ctl_elem_value *ucontrol)
2641{
2642 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2643 hda_nid_t nid = kcontrol->private_value;
2644 unsigned int val = !!ucontrol->value.integer.value[0];
2645 int change;
2646
2647 mutex_lock(&codec->spdif_mutex);
2648 change = codec->spdif_in_enable != val;
2649 if (change) {
2650 codec->spdif_in_enable = val;
2651 snd_hdac_regmap_write(&codec->core, nid,
2652 AC_VERB_SET_DIGI_CONVERT_1, val);
2653 }
2654 mutex_unlock(&codec->spdif_mutex);
2655 return change;
2656}
2657
2658static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2659 struct snd_ctl_elem_value *ucontrol)
2660{
2661 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2662 hda_nid_t nid = kcontrol->private_value;
2663 unsigned int val;
2664 unsigned int sbits;
2665
2666 snd_hdac_regmap_read(&codec->core, nid,
2667 AC_VERB_GET_DIGI_CONVERT_1, &val);
2668 sbits = convert_to_spdif_status(val);
2669 ucontrol->value.iec958.status[0] = sbits;
2670 ucontrol->value.iec958.status[1] = sbits >> 8;
2671 ucontrol->value.iec958.status[2] = sbits >> 16;
2672 ucontrol->value.iec958.status[3] = sbits >> 24;
2673 return 0;
2674}
2675
2676static const struct snd_kcontrol_new dig_in_ctls[] = {
2677 {
2678 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2679 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
2680 .info = snd_hda_spdif_in_switch_info,
2681 .get = snd_hda_spdif_in_switch_get,
2682 .put = snd_hda_spdif_in_switch_put,
2683 },
2684 {
2685 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2686 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2687 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
2688 .info = snd_hda_spdif_mask_info,
2689 .get = snd_hda_spdif_in_status_get,
2690 },
2691 { }
2692};
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
2705{
2706 int err;
2707 struct snd_kcontrol *kctl;
2708 const struct snd_kcontrol_new *dig_mix;
2709 int idx;
2710
2711 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
2712 if (idx < 0) {
2713 codec_err(codec, "too many IEC958 inputs\n");
2714 return -EBUSY;
2715 }
2716 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2717 kctl = snd_ctl_new1(dig_mix, codec);
2718 if (!kctl)
2719 return -ENOMEM;
2720 kctl->private_value = nid;
2721 err = snd_hda_ctl_add(codec, nid, kctl);
2722 if (err < 0)
2723 return err;
2724 }
2725 codec->spdif_in_enable =
2726 snd_hda_codec_read(codec, nid, 0,
2727 AC_VERB_GET_DIGI_CONVERT_1, 0) &
2728 AC_DIG1_ENABLE;
2729 return 0;
2730}
2731EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
2744 unsigned int power_state)
2745{
2746 hda_nid_t nid;
2747
2748 for_each_hda_codec_node(nid, codec) {
2749 unsigned int wcaps = get_wcaps(codec, nid);
2750 unsigned int state = power_state;
2751 if (!(wcaps & AC_WCAP_POWER))
2752 continue;
2753 if (codec->power_filter) {
2754 state = codec->power_filter(codec, nid, power_state);
2755 if (state != power_state && power_state == AC_PWRST_D3)
2756 continue;
2757 }
2758 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
2759 state);
2760 }
2761}
2762EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
2774 hda_nid_t nid,
2775 unsigned int power_state)
2776{
2777 if (nid == codec->core.afg || nid == codec->core.mfg)
2778 return power_state;
2779 if (power_state == AC_PWRST_D3 &&
2780 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
2781 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
2782 int eapd = snd_hda_codec_read(codec, nid, 0,
2783 AC_VERB_GET_EAPD_BTLENABLE, 0);
2784 if (eapd & 0x02)
2785 return AC_PWRST_D0;
2786 }
2787 return power_state;
2788}
2789EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
2790
2791
2792
2793
2794static unsigned int hda_set_power_state(struct hda_codec *codec,
2795 unsigned int power_state)
2796{
2797 hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
2798 int count;
2799 unsigned int state;
2800 int flags = 0;
2801
2802
2803 if (power_state == AC_PWRST_D3) {
2804 if (codec->depop_delay < 0)
2805 msleep(codec_has_epss(codec) ? 10 : 100);
2806 else if (codec->depop_delay > 0)
2807 msleep(codec->depop_delay);
2808 flags = HDA_RW_NO_RESPONSE_FALLBACK;
2809 }
2810
2811
2812 for (count = 0; count < 10; count++) {
2813 if (codec->patch_ops.set_power_state)
2814 codec->patch_ops.set_power_state(codec, fg,
2815 power_state);
2816 else {
2817 state = power_state;
2818 if (codec->power_filter)
2819 state = codec->power_filter(codec, fg, state);
2820 if (state == power_state || power_state != AC_PWRST_D3)
2821 snd_hda_codec_read(codec, fg, flags,
2822 AC_VERB_SET_POWER_STATE,
2823 state);
2824 snd_hda_codec_set_power_to_all(codec, fg, power_state);
2825 }
2826 state = snd_hda_sync_power_state(codec, fg, power_state);
2827 if (!(state & AC_PWRST_ERROR))
2828 break;
2829 }
2830
2831 return state;
2832}
2833
2834
2835
2836
2837static void sync_power_up_states(struct hda_codec *codec)
2838{
2839 hda_nid_t nid;
2840
2841
2842 if (!codec->power_filter)
2843 return;
2844
2845 for_each_hda_codec_node(nid, codec) {
2846 unsigned int wcaps = get_wcaps(codec, nid);
2847 unsigned int target;
2848 if (!(wcaps & AC_WCAP_POWER))
2849 continue;
2850 target = codec->power_filter(codec, nid, AC_PWRST_D0);
2851 if (target == AC_PWRST_D0)
2852 continue;
2853 if (!snd_hda_check_power_state(codec, nid, target))
2854 snd_hda_codec_write(codec, nid, 0,
2855 AC_VERB_SET_POWER_STATE, target);
2856 }
2857}
2858
2859#ifdef CONFIG_SND_HDA_RECONFIG
2860
2861static void hda_exec_init_verbs(struct hda_codec *codec)
2862{
2863 if (codec->init_verbs.list)
2864 snd_hda_sequence_write(codec, codec->init_verbs.list);
2865}
2866#else
2867static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2868#endif
2869
2870#ifdef CONFIG_PM
2871
2872static void update_power_acct(struct hda_codec *codec, bool on)
2873{
2874 unsigned long delta = jiffies - codec->power_jiffies;
2875
2876 if (on)
2877 codec->power_on_acct += delta;
2878 else
2879 codec->power_off_acct += delta;
2880 codec->power_jiffies += delta;
2881}
2882
2883void snd_hda_update_power_acct(struct hda_codec *codec)
2884{
2885 update_power_acct(codec, hda_codec_is_power_on(codec));
2886}
2887
2888
2889
2890
2891
2892static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
2893{
2894 unsigned int state;
2895
2896 snd_hdac_enter_pm(&codec->core);
2897 if (codec->patch_ops.suspend)
2898 codec->patch_ops.suspend(codec);
2899 hda_cleanup_all_streams(codec);
2900 state = hda_set_power_state(codec, AC_PWRST_D3);
2901 update_power_acct(codec, true);
2902 snd_hdac_leave_pm(&codec->core);
2903 return state;
2904}
2905
2906
2907
2908
2909static void hda_call_codec_resume(struct hda_codec *codec)
2910{
2911 snd_hdac_enter_pm(&codec->core);
2912 if (codec->core.regmap)
2913 regcache_mark_dirty(codec->core.regmap);
2914
2915 codec->power_jiffies = jiffies;
2916
2917 hda_set_power_state(codec, AC_PWRST_D0);
2918 restore_shutup_pins(codec);
2919 hda_exec_init_verbs(codec);
2920 snd_hda_jack_set_dirty_all(codec);
2921 if (codec->patch_ops.resume)
2922 codec->patch_ops.resume(codec);
2923 else {
2924 if (codec->patch_ops.init)
2925 codec->patch_ops.init(codec);
2926 snd_hda_regmap_sync(codec);
2927 }
2928
2929 if (codec->jackpoll_interval)
2930 hda_jackpoll_work(&codec->jackpoll_work.work);
2931 else
2932 snd_hda_jack_report_sync(codec);
2933 codec->core.dev.power.power_state = PMSG_ON;
2934 snd_hdac_leave_pm(&codec->core);
2935}
2936
2937static int hda_codec_suspend(struct device *dev)
2938{
2939 struct hda_codec *codec = dev_to_hda_codec(dev);
2940 unsigned int state;
2941
2942
2943 if (!codec->card)
2944 return 0;
2945
2946 cancel_delayed_work_sync(&codec->jackpoll_work);
2947 state = hda_call_codec_suspend(codec);
2948 if (codec->link_down_at_suspend ||
2949 (codec_has_clkstop(codec) && codec_has_epss(codec) &&
2950 (state & AC_PWRST_CLK_STOP_OK)))
2951 snd_hdac_codec_link_down(&codec->core);
2952 codec_display_power(codec, false);
2953 return 0;
2954}
2955
2956static int hda_codec_resume(struct device *dev)
2957{
2958 struct hda_codec *codec = dev_to_hda_codec(dev);
2959
2960
2961 if (!codec->card)
2962 return 0;
2963
2964 codec_display_power(codec, true);
2965 snd_hdac_codec_link_up(&codec->core);
2966 hda_call_codec_resume(codec);
2967 pm_runtime_mark_last_busy(dev);
2968 return 0;
2969}
2970
2971static int hda_codec_runtime_suspend(struct device *dev)
2972{
2973 return hda_codec_suspend(dev);
2974}
2975
2976static int hda_codec_runtime_resume(struct device *dev)
2977{
2978 return hda_codec_resume(dev);
2979}
2980
2981#endif
2982
2983#ifdef CONFIG_PM_SLEEP
2984static int hda_codec_pm_prepare(struct device *dev)
2985{
2986 return pm_runtime_suspended(dev);
2987}
2988
2989static void hda_codec_pm_complete(struct device *dev)
2990{
2991 struct hda_codec *codec = dev_to_hda_codec(dev);
2992
2993 if (pm_runtime_suspended(dev) && (codec->jackpoll_interval ||
2994 hda_codec_need_resume(codec) || codec->forced_resume))
2995 pm_request_resume(dev);
2996}
2997
2998static int hda_codec_pm_suspend(struct device *dev)
2999{
3000 dev->power.power_state = PMSG_SUSPEND;
3001 return hda_codec_suspend(dev);
3002}
3003
3004static int hda_codec_pm_resume(struct device *dev)
3005{
3006 dev->power.power_state = PMSG_RESUME;
3007 return hda_codec_resume(dev);
3008}
3009
3010static int hda_codec_pm_freeze(struct device *dev)
3011{
3012 dev->power.power_state = PMSG_FREEZE;
3013 return hda_codec_suspend(dev);
3014}
3015
3016static int hda_codec_pm_thaw(struct device *dev)
3017{
3018 dev->power.power_state = PMSG_THAW;
3019 return hda_codec_resume(dev);
3020}
3021
3022static int hda_codec_pm_restore(struct device *dev)
3023{
3024 dev->power.power_state = PMSG_RESTORE;
3025 return hda_codec_resume(dev);
3026}
3027#endif
3028
3029
3030const struct dev_pm_ops hda_codec_driver_pm = {
3031#ifdef CONFIG_PM_SLEEP
3032 .prepare = hda_codec_pm_prepare,
3033 .complete = hda_codec_pm_complete,
3034 .suspend = hda_codec_pm_suspend,
3035 .resume = hda_codec_pm_resume,
3036 .freeze = hda_codec_pm_freeze,
3037 .thaw = hda_codec_pm_thaw,
3038 .poweroff = hda_codec_pm_suspend,
3039 .restore = hda_codec_pm_restore,
3040#endif
3041 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
3042 NULL)
3043};
3044
3045
3046
3047
3048static int add_std_chmaps(struct hda_codec *codec)
3049{
3050 struct hda_pcm *pcm;
3051 int str, err;
3052
3053 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
3054 for (str = 0; str < 2; str++) {
3055 struct hda_pcm_stream *hinfo = &pcm->stream[str];
3056 struct snd_pcm_chmap *chmap;
3057 const struct snd_pcm_chmap_elem *elem;
3058
3059 if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams)
3060 continue;
3061 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
3062 err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
3063 hinfo->channels_max,
3064 0, &chmap);
3065 if (err < 0)
3066 return err;
3067 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3068 }
3069 }
3070 return 0;
3071}
3072
3073
3074
3075
3076const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3077 { .channels = 2,
3078 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3079 { .channels = 4,
3080 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3081 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3082 { }
3083};
3084EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
3085
3086int snd_hda_codec_build_controls(struct hda_codec *codec)
3087{
3088 int err = 0;
3089 hda_exec_init_verbs(codec);
3090
3091 if (codec->patch_ops.init)
3092 err = codec->patch_ops.init(codec);
3093 if (!err && codec->patch_ops.build_controls)
3094 err = codec->patch_ops.build_controls(codec);
3095 if (err < 0)
3096 return err;
3097
3098
3099 err = add_std_chmaps(codec);
3100 if (err < 0)
3101 return err;
3102
3103 if (codec->jackpoll_interval)
3104 hda_jackpoll_work(&codec->jackpoll_work.work);
3105 else
3106 snd_hda_jack_report_sync(codec);
3107 sync_power_up_states(codec);
3108 return 0;
3109}
3110EXPORT_SYMBOL_GPL(snd_hda_codec_build_controls);
3111
3112
3113
3114
3115static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
3116 struct hda_codec *codec,
3117 struct snd_pcm_substream *substream)
3118{
3119 return 0;
3120}
3121
3122static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
3123 struct hda_codec *codec,
3124 unsigned int stream_tag,
3125 unsigned int format,
3126 struct snd_pcm_substream *substream)
3127{
3128 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
3129 return 0;
3130}
3131
3132static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
3133 struct hda_codec *codec,
3134 struct snd_pcm_substream *substream)
3135{
3136 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
3137 return 0;
3138}
3139
3140static int set_pcm_default_values(struct hda_codec *codec,
3141 struct hda_pcm_stream *info)
3142{
3143 int err;
3144
3145
3146 if (info->nid && (!info->rates || !info->formats)) {
3147 err = snd_hda_query_supported_pcm(codec, info->nid,
3148 info->rates ? NULL : &info->rates,
3149 info->formats ? NULL : &info->formats,
3150 info->maxbps ? NULL : &info->maxbps);
3151 if (err < 0)
3152 return err;
3153 }
3154 if (info->ops.open == NULL)
3155 info->ops.open = hda_pcm_default_open_close;
3156 if (info->ops.close == NULL)
3157 info->ops.close = hda_pcm_default_open_close;
3158 if (info->ops.prepare == NULL) {
3159 if (snd_BUG_ON(!info->nid))
3160 return -EINVAL;
3161 info->ops.prepare = hda_pcm_default_prepare;
3162 }
3163 if (info->ops.cleanup == NULL) {
3164 if (snd_BUG_ON(!info->nid))
3165 return -EINVAL;
3166 info->ops.cleanup = hda_pcm_default_cleanup;
3167 }
3168 return 0;
3169}
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185int snd_hda_codec_prepare(struct hda_codec *codec,
3186 struct hda_pcm_stream *hinfo,
3187 unsigned int stream,
3188 unsigned int format,
3189 struct snd_pcm_substream *substream)
3190{
3191 int ret;
3192 mutex_lock(&codec->bus->prepare_mutex);
3193 if (hinfo->ops.prepare)
3194 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
3195 substream);
3196 else
3197 ret = -ENODEV;
3198 if (ret >= 0)
3199 purify_inactive_streams(codec);
3200 mutex_unlock(&codec->bus->prepare_mutex);
3201 return ret;
3202}
3203EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213void snd_hda_codec_cleanup(struct hda_codec *codec,
3214 struct hda_pcm_stream *hinfo,
3215 struct snd_pcm_substream *substream)
3216{
3217 mutex_lock(&codec->bus->prepare_mutex);
3218 if (hinfo->ops.cleanup)
3219 hinfo->ops.cleanup(hinfo, codec, substream);
3220 mutex_unlock(&codec->bus->prepare_mutex);
3221}
3222EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
3223
3224
3225const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
3226 "Audio", "SPDIF", "HDMI", "Modem"
3227};
3228
3229
3230
3231
3232static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
3233{
3234
3235
3236
3237
3238 static const int audio_idx[HDA_PCM_NTYPES][5] = {
3239 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
3240 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
3241 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
3242 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
3243 };
3244 int i;
3245
3246 if (type >= HDA_PCM_NTYPES) {
3247 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
3248 return -EINVAL;
3249 }
3250
3251 for (i = 0; audio_idx[type][i] >= 0; i++) {
3252#ifndef CONFIG_SND_DYNAMIC_MINORS
3253 if (audio_idx[type][i] >= 8)
3254 break;
3255#endif
3256 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
3257 return audio_idx[type][i];
3258 }
3259
3260#ifdef CONFIG_SND_DYNAMIC_MINORS
3261
3262 for (i = 10; i < 32; i++) {
3263 if (!test_and_set_bit(i, bus->pcm_dev_bits))
3264 return i;
3265 }
3266#endif
3267
3268 dev_warn(bus->card->dev, "Too many %s devices\n",
3269 snd_hda_pcm_type_name[type]);
3270#ifndef CONFIG_SND_DYNAMIC_MINORS
3271 dev_warn(bus->card->dev,
3272 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
3273#endif
3274 return -EAGAIN;
3275}
3276
3277
3278int snd_hda_codec_parse_pcms(struct hda_codec *codec)
3279{
3280 struct hda_pcm *cpcm;
3281 int err;
3282
3283 if (!list_empty(&codec->pcm_list_head))
3284 return 0;
3285
3286 if (!codec->patch_ops.build_pcms)
3287 return 0;
3288
3289 err = codec->patch_ops.build_pcms(codec);
3290 if (err < 0) {
3291 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
3292 codec->core.addr, err);
3293 return err;
3294 }
3295
3296 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
3297 int stream;
3298
3299 for (stream = 0; stream < 2; stream++) {
3300 struct hda_pcm_stream *info = &cpcm->stream[stream];
3301
3302 if (!info->substreams)
3303 continue;
3304 err = set_pcm_default_values(codec, info);
3305 if (err < 0) {
3306 codec_warn(codec,
3307 "fail to setup default for PCM %s\n",
3308 cpcm->name);
3309 return err;
3310 }
3311 }
3312 }
3313
3314 return 0;
3315}
3316EXPORT_SYMBOL_GPL(snd_hda_codec_parse_pcms);
3317
3318
3319int snd_hda_codec_build_pcms(struct hda_codec *codec)
3320{
3321 struct hda_bus *bus = codec->bus;
3322 struct hda_pcm *cpcm;
3323 int dev, err;
3324
3325 err = snd_hda_codec_parse_pcms(codec);
3326 if (err < 0)
3327 return err;
3328
3329
3330 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
3331 if (cpcm->pcm)
3332 continue;
3333 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
3334 continue;
3335
3336 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
3337 if (dev < 0) {
3338 cpcm->device = SNDRV_PCM_INVALID_DEVICE;
3339 continue;
3340 }
3341 cpcm->device = dev;
3342 err = snd_hda_attach_pcm_stream(bus, codec, cpcm);
3343 if (err < 0) {
3344 codec_err(codec,
3345 "cannot attach PCM stream %d for codec #%d\n",
3346 dev, codec->core.addr);
3347 continue;
3348 }
3349 }
3350
3351 return 0;
3352}
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364int snd_hda_add_new_ctls(struct hda_codec *codec,
3365 const struct snd_kcontrol_new *knew)
3366{
3367 int err;
3368
3369 for (; knew->name; knew++) {
3370 struct snd_kcontrol *kctl;
3371 int addr = 0, idx = 0;
3372 if (knew->iface == (__force snd_ctl_elem_iface_t)-1)
3373 continue;
3374 for (;;) {
3375 kctl = snd_ctl_new1(knew, codec);
3376 if (!kctl)
3377 return -ENOMEM;
3378 if (addr > 0)
3379 kctl->id.device = addr;
3380 if (idx > 0)
3381 kctl->id.index = idx;
3382 err = snd_hda_ctl_add(codec, 0, kctl);
3383 if (!err)
3384 break;
3385
3386
3387
3388
3389 if (!addr && codec->core.addr)
3390 addr = codec->core.addr;
3391 else if (!idx && !knew->index) {
3392 idx = find_empty_mixer_ctl_idx(codec,
3393 knew->name, 0);
3394 if (idx <= 0)
3395 return err;
3396 } else
3397 return err;
3398 }
3399 }
3400 return 0;
3401}
3402EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
3403
3404#ifdef CONFIG_PM
3405static void codec_set_power_save(struct hda_codec *codec, int delay)
3406{
3407 struct device *dev = hda_codec_dev(codec);
3408
3409 if (delay == 0 && codec->auto_runtime_pm)
3410 delay = 3000;
3411
3412 if (delay > 0) {
3413 pm_runtime_set_autosuspend_delay(dev, delay);
3414 pm_runtime_use_autosuspend(dev);
3415 pm_runtime_allow(dev);
3416 if (!pm_runtime_suspended(dev))
3417 pm_runtime_mark_last_busy(dev);
3418 } else {
3419 pm_runtime_dont_use_autosuspend(dev);
3420 pm_runtime_forbid(dev);
3421 }
3422}
3423
3424
3425
3426
3427
3428
3429
3430
3431void snd_hda_set_power_save(struct hda_bus *bus, int delay)
3432{
3433 struct hda_codec *c;
3434
3435 list_for_each_codec(c, bus)
3436 codec_set_power_save(c, delay);
3437}
3438EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453int snd_hda_check_amp_list_power(struct hda_codec *codec,
3454 struct hda_loopback_check *check,
3455 hda_nid_t nid)
3456{
3457 const struct hda_amp_list *p;
3458 int ch, v;
3459
3460 if (!check->amplist)
3461 return 0;
3462 for (p = check->amplist; p->nid; p++) {
3463 if (p->nid == nid)
3464 break;
3465 }
3466 if (!p->nid)
3467 return 0;
3468
3469 for (p = check->amplist; p->nid; p++) {
3470 for (ch = 0; ch < 2; ch++) {
3471 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3472 p->idx);
3473 if (!(v & HDA_AMP_MUTE) && v > 0) {
3474 if (!check->power_on) {
3475 check->power_on = 1;
3476 snd_hda_power_up_pm(codec);
3477 }
3478 return 1;
3479 }
3480 }
3481 }
3482 if (check->power_on) {
3483 check->power_on = 0;
3484 snd_hda_power_down_pm(codec);
3485 }
3486 return 0;
3487}
3488EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
3489#endif
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3501 struct snd_ctl_elem_info *uinfo)
3502{
3503 unsigned int index;
3504
3505 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3506 uinfo->count = 1;
3507 uinfo->value.enumerated.items = imux->num_items;
3508 if (!imux->num_items)
3509 return 0;
3510 index = uinfo->value.enumerated.item;
3511 if (index >= imux->num_items)
3512 index = imux->num_items - 1;
3513 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3514 return 0;
3515}
3516EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526int snd_hda_input_mux_put(struct hda_codec *codec,
3527 const struct hda_input_mux *imux,
3528 struct snd_ctl_elem_value *ucontrol,
3529 hda_nid_t nid,
3530 unsigned int *cur_val)
3531{
3532 unsigned int idx;
3533
3534 if (!imux->num_items)
3535 return 0;
3536 idx = ucontrol->value.enumerated.item[0];
3537 if (idx >= imux->num_items)
3538 idx = imux->num_items - 1;
3539 if (*cur_val == idx)
3540 return 0;
3541 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3542 imux->items[idx].index);
3543 *cur_val = idx;
3544 return 1;
3545}
3546EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
3560 struct snd_ctl_elem_info *uinfo,
3561 int num_items, const char * const *texts)
3562{
3563 static const char * const texts_default[] = {
3564 "Disabled", "Enabled"
3565 };
3566
3567 if (!texts || !num_items) {
3568 num_items = 2;
3569 texts = texts_default;
3570 }
3571
3572 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
3573}
3574EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
3575
3576
3577
3578
3579
3580
3581static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3582 unsigned int stream_tag, unsigned int format)
3583{
3584 struct hda_spdif_out *spdif;
3585 unsigned int curr_fmt;
3586 bool reset;
3587
3588 spdif = snd_hda_spdif_out_of_nid(codec, nid);
3589
3590
3591
3592 if (WARN_ON(spdif == NULL))
3593 return;
3594
3595 curr_fmt = snd_hda_codec_read(codec, nid, 0,
3596 AC_VERB_GET_STREAM_FORMAT, 0);
3597 reset = codec->spdif_status_reset &&
3598 (spdif->ctls & AC_DIG1_ENABLE) &&
3599 curr_fmt != format;
3600
3601
3602
3603 if (reset)
3604 set_dig_out_convert(codec, nid,
3605 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
3606 -1);
3607 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
3608 if (codec->follower_dig_outs) {
3609 const hda_nid_t *d;
3610 for (d = codec->follower_dig_outs; *d; d++)
3611 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3612 format);
3613 }
3614
3615 if (reset)
3616 set_dig_out_convert(codec, nid,
3617 spdif->ctls & 0xff, -1);
3618}
3619
3620static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3621{
3622 snd_hda_codec_cleanup_stream(codec, nid);
3623 if (codec->follower_dig_outs) {
3624 const hda_nid_t *d;
3625 for (d = codec->follower_dig_outs; *d; d++)
3626 snd_hda_codec_cleanup_stream(codec, *d);
3627 }
3628}
3629
3630
3631
3632
3633
3634
3635int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3636 struct hda_multi_out *mout)
3637{
3638 mutex_lock(&codec->spdif_mutex);
3639 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3640
3641 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3642 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
3643 mutex_unlock(&codec->spdif_mutex);
3644 return 0;
3645}
3646EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3657 struct hda_multi_out *mout,
3658 unsigned int stream_tag,
3659 unsigned int format,
3660 struct snd_pcm_substream *substream)
3661{
3662 mutex_lock(&codec->spdif_mutex);
3663 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3664 mutex_unlock(&codec->spdif_mutex);
3665 return 0;
3666}
3667EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
3668
3669
3670
3671
3672
3673
3674int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3675 struct hda_multi_out *mout)
3676{
3677 mutex_lock(&codec->spdif_mutex);
3678 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3679 mutex_unlock(&codec->spdif_mutex);
3680 return 0;
3681}
3682EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
3683
3684
3685
3686
3687
3688
3689int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3690 struct hda_multi_out *mout)
3691{
3692 mutex_lock(&codec->spdif_mutex);
3693 mout->dig_out_used = 0;
3694 mutex_unlock(&codec->spdif_mutex);
3695 return 0;
3696}
3697EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3711 struct hda_multi_out *mout,
3712 struct snd_pcm_substream *substream,
3713 struct hda_pcm_stream *hinfo)
3714{
3715 struct snd_pcm_runtime *runtime = substream->runtime;
3716 runtime->hw.channels_max = mout->max_channels;
3717 if (mout->dig_out_nid) {
3718 if (!mout->analog_rates) {
3719 mout->analog_rates = hinfo->rates;
3720 mout->analog_formats = hinfo->formats;
3721 mout->analog_maxbps = hinfo->maxbps;
3722 } else {
3723 runtime->hw.rates = mout->analog_rates;
3724 runtime->hw.formats = mout->analog_formats;
3725 hinfo->maxbps = mout->analog_maxbps;
3726 }
3727 if (!mout->spdif_rates) {
3728 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3729 &mout->spdif_rates,
3730 &mout->spdif_formats,
3731 &mout->spdif_maxbps);
3732 }
3733 mutex_lock(&codec->spdif_mutex);
3734 if (mout->share_spdif) {
3735 if ((runtime->hw.rates & mout->spdif_rates) &&
3736 (runtime->hw.formats & mout->spdif_formats)) {
3737 runtime->hw.rates &= mout->spdif_rates;
3738 runtime->hw.formats &= mout->spdif_formats;
3739 if (mout->spdif_maxbps < hinfo->maxbps)
3740 hinfo->maxbps = mout->spdif_maxbps;
3741 } else {
3742 mout->share_spdif = 0;
3743
3744 }
3745 }
3746 mutex_unlock(&codec->spdif_mutex);
3747 }
3748 return snd_pcm_hw_constraint_step(substream->runtime, 0,
3749 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3750}
3751EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3765 struct hda_multi_out *mout,
3766 unsigned int stream_tag,
3767 unsigned int format,
3768 struct snd_pcm_substream *substream)
3769{
3770 const hda_nid_t *nids = mout->dac_nids;
3771 int chs = substream->runtime->channels;
3772 struct hda_spdif_out *spdif;
3773 int i;
3774
3775 mutex_lock(&codec->spdif_mutex);
3776 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
3777 if (mout->dig_out_nid && mout->share_spdif &&
3778 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
3779 if (chs == 2 && spdif != NULL &&
3780 snd_hda_is_supported_format(codec, mout->dig_out_nid,
3781 format) &&
3782 !(spdif->status & IEC958_AES0_NONAUDIO)) {
3783 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
3784 setup_dig_out_stream(codec, mout->dig_out_nid,
3785 stream_tag, format);
3786 } else {
3787 mout->dig_out_used = 0;
3788 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3789 }
3790 }
3791 mutex_unlock(&codec->spdif_mutex);
3792
3793
3794 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3795 0, format);
3796 if (!mout->no_share_stream &&
3797 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
3798
3799 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3800 0, format);
3801
3802 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3803 if (!mout->no_share_stream && mout->hp_out_nid[i])
3804 snd_hda_codec_setup_stream(codec,
3805 mout->hp_out_nid[i],
3806 stream_tag, 0, format);
3807
3808
3809 for (i = 1; i < mout->num_dacs; i++) {
3810 if (chs >= (i + 1) * 2)
3811 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3812 i * 2, format);
3813 else if (!mout->no_share_stream)
3814 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3815 0, format);
3816 }
3817
3818
3819 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
3820 int ch = 0;
3821 if (!mout->extra_out_nid[i])
3822 break;
3823 if (chs >= (i + 1) * 2)
3824 ch = i * 2;
3825 else if (!mout->no_share_stream)
3826 break;
3827 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
3828 stream_tag, ch, format);
3829 }
3830
3831 return 0;
3832}
3833EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
3834
3835
3836
3837
3838
3839
3840int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3841 struct hda_multi_out *mout)
3842{
3843 const hda_nid_t *nids = mout->dac_nids;
3844 int i;
3845
3846 for (i = 0; i < mout->num_dacs; i++)
3847 snd_hda_codec_cleanup_stream(codec, nids[i]);
3848 if (mout->hp_nid)
3849 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
3850 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3851 if (mout->hp_out_nid[i])
3852 snd_hda_codec_cleanup_stream(codec,
3853 mout->hp_out_nid[i]);
3854 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3855 if (mout->extra_out_nid[i])
3856 snd_hda_codec_cleanup_stream(codec,
3857 mout->extra_out_nid[i]);
3858 mutex_lock(&codec->spdif_mutex);
3859 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
3860 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3861 mout->dig_out_used = 0;
3862 }
3863 mutex_unlock(&codec->spdif_mutex);
3864 return 0;
3865}
3866EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
3877{
3878 unsigned int pincap;
3879 unsigned int oldval;
3880 oldval = snd_hda_codec_read(codec, pin, 0,
3881 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3882 pincap = snd_hda_query_pin_caps(codec, pin);
3883 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3884
3885 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
3886 return AC_PINCTL_VREF_80;
3887 else if (pincap & AC_PINCAP_VREF_50)
3888 return AC_PINCTL_VREF_50;
3889 else if (pincap & AC_PINCAP_VREF_100)
3890 return AC_PINCTL_VREF_100;
3891 else if (pincap & AC_PINCAP_VREF_GRD)
3892 return AC_PINCTL_VREF_GRD;
3893 return AC_PINCTL_VREF_HIZ;
3894}
3895EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
3896
3897
3898
3899
3900
3901
3902
3903unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
3904 hda_nid_t pin, unsigned int val)
3905{
3906 static const unsigned int cap_lists[][2] = {
3907 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
3908 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
3909 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
3910 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
3911 };
3912 unsigned int cap;
3913
3914 if (!val)
3915 return 0;
3916 cap = snd_hda_query_pin_caps(codec, pin);
3917 if (!cap)
3918 return val;
3919
3920 if (val & AC_PINCTL_OUT_EN) {
3921 if (!(cap & AC_PINCAP_OUT))
3922 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3923 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
3924 val &= ~AC_PINCTL_HP_EN;
3925 }
3926
3927 if (val & AC_PINCTL_IN_EN) {
3928 if (!(cap & AC_PINCAP_IN))
3929 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
3930 else {
3931 unsigned int vcap, vref;
3932 int i;
3933 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3934 vref = val & AC_PINCTL_VREFEN;
3935 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
3936 if (vref == cap_lists[i][0] &&
3937 !(vcap & cap_lists[i][1])) {
3938 if (i == ARRAY_SIZE(cap_lists) - 1)
3939 vref = AC_PINCTL_VREF_HIZ;
3940 else
3941 vref = cap_lists[i + 1][0];
3942 }
3943 }
3944 val &= ~AC_PINCTL_VREFEN;
3945 val |= vref;
3946 }
3947 }
3948
3949 return val;
3950}
3951EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
3967 unsigned int val, bool cached)
3968{
3969 val = snd_hda_correct_pin_ctl(codec, pin, val);
3970 snd_hda_codec_set_pin_target(codec, pin, val);
3971 if (cached)
3972 return snd_hda_codec_write_cache(codec, pin, 0,
3973 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3974 else
3975 return snd_hda_codec_write(codec, pin, 0,
3976 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3977}
3978EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992int snd_hda_add_imux_item(struct hda_codec *codec,
3993 struct hda_input_mux *imux, const char *label,
3994 int index, int *type_idx)
3995{
3996 int i, label_idx = 0;
3997 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
3998 codec_err(codec, "hda_codec: Too many imux items!\n");
3999 return -EINVAL;
4000 }
4001 for (i = 0; i < imux->num_items; i++) {
4002 if (!strncmp(label, imux->items[i].label, strlen(label)))
4003 label_idx++;
4004 }
4005 if (type_idx)
4006 *type_idx = label_idx;
4007 if (label_idx > 0)
4008 snprintf(imux->items[imux->num_items].label,
4009 sizeof(imux->items[imux->num_items].label),
4010 "%s %d", label, label_idx);
4011 else
4012 strlcpy(imux->items[imux->num_items].label, label,
4013 sizeof(imux->items[imux->num_items].label));
4014 imux->items[imux->num_items].index = index;
4015 imux->num_items++;
4016 return 0;
4017}
4018EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
4019
4020
4021
4022
4023
4024void snd_hda_bus_reset_codecs(struct hda_bus *bus)
4025{
4026 struct hda_codec *codec;
4027
4028 list_for_each_codec(codec, bus) {
4029
4030 if (current_work() != &codec->jackpoll_work.work)
4031 cancel_delayed_work_sync(&codec->jackpoll_work);
4032#ifdef CONFIG_PM
4033 if (hda_codec_is_power_on(codec)) {
4034 hda_call_codec_suspend(codec);
4035 hda_call_codec_resume(codec);
4036 }
4037#endif
4038 }
4039}
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049void snd_print_pcm_bits(int pcm, char *buf, int buflen)
4050{
4051 static const unsigned int bits[] = { 8, 16, 20, 24, 32 };
4052 int i, j;
4053
4054 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
4055 if (pcm & (AC_SUPPCM_BITS_8 << i))
4056 j += scnprintf(buf + j, buflen - j, " %d", bits[i]);
4057
4058 buf[j] = '\0';
4059}
4060EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
4061
4062MODULE_DESCRIPTION("HDA codec core");
4063MODULE_LICENSE("GPL");
4064