GNU Linux-libre 5.4.257-gnu1
[releases.git] / sound / pci / hda / hda_codec.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Universal Interface for Intel High Definition Audio Codec
4  *
5  * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
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  * Send and receive a verb - passed to exec_verb override for hdac_device
36  */
37 static 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         /* clear reset-flag when the communication gets recovered */
66         if (!err || codec_in_pm(codec))
67                 bus->response_reset = 0;
68         return err;
69 }
70
71 /**
72  * snd_hda_sequence_write - sequence writes
73  * @codec: the HDA codec
74  * @seq: VERB array to send
75  *
76  * Send the commands sequentially from the given array.
77  * The array must be terminated with NID=0.
78  */
79 void 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 }
84 EXPORT_SYMBOL_GPL(snd_hda_sequence_write);
85
86 /* connection list element */
87 struct hda_conn_list {
88         struct list_head list;
89         int len;
90         hda_nid_t nid;
91         hda_nid_t conns[0];
92 };
93
94 /* look up the cached results */
95 static struct hda_conn_list *
96 lookup_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
106 static 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
121 static 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 /* read the connection and add to the cache */
132 static 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  * snd_hda_get_conn_list - get connection list
155  * @codec: the HDA codec
156  * @nid: NID to parse
157  * @listp: the pointer to store NID list
158  *
159  * Parses the connection list of the given widget and stores the pointer
160  * to the list of NIDs.
161  *
162  * Returns the number of connections, or a negative error code.
163  *
164  * Note that the returned pointer isn't protected against the list
165  * modification.  If snd_hda_override_conn_list() might be called
166  * concurrently, protect with a mutex appropriately.
167  */
168 int 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                 /* if the connection-list is already cached, read it */
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 }
193 EXPORT_SYMBOL_GPL(snd_hda_get_conn_list);
194
195 /**
196  * snd_hda_get_connections - copy connection list
197  * @codec: the HDA codec
198  * @nid: NID to parse
199  * @conn_list: connection list array; when NULL, checks only the size
200  * @max_conns: max. number of connections to store
201  *
202  * Parses the connection list of the given widget and stores the list
203  * of NIDs.
204  *
205  * Returns the number of connections, or a negative error code.
206  */
207 int 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 }
224 EXPORT_SYMBOL_GPL(snd_hda_get_connections);
225
226 /**
227  * snd_hda_override_conn_list - add/modify the connection-list to cache
228  * @codec: the HDA codec
229  * @nid: NID to parse
230  * @len: number of connection list entries
231  * @list: the list of connection entries
232  *
233  * Add or modify the given connection-list to the cache.  If the corresponding
234  * cache already exists, invalidate it and append a new one.
235  *
236  * Returns zero or a negative error code.
237  */
238 int 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 }
251 EXPORT_SYMBOL_GPL(snd_hda_override_conn_list);
252
253 /**
254  * snd_hda_get_conn_index - get the connection index of the given NID
255  * @codec: the HDA codec
256  * @mux: NID containing the list
257  * @nid: NID to select
258  * @recursive: 1 when searching NID recursively, otherwise 0
259  *
260  * Parses the connection list of the widget @mux and checks whether the
261  * widget @nid is present.  If it is, return the connection index.
262  * Otherwise it returns -1.
263  */
264 int 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 }
290 EXPORT_SYMBOL_GPL(snd_hda_get_conn_index);
291
292 /**
293  * snd_hda_get_num_devices - get DEVLIST_LEN parameter of the given widget
294  *  @codec: the HDA codec
295  *  @nid: NID of the pin to parse
296  *
297  * Get the device entry number on the given widget. This is a feature of
298  * DP MST audio. Each pin can have several device entries in it.
299  */
300 unsigned 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 }
314 EXPORT_SYMBOL_GPL(snd_hda_get_num_devices);
315
316 /**
317  * snd_hda_get_devices - copy device list without cache
318  * @codec: the HDA codec
319  * @nid: NID of the pin to parse
320  * @dev_list: device list array
321  * @max_devices: max. number of devices to store
322  *
323  * Copy the device list. This info is dynamic and so not cached.
324  * Currently called only from hda_proc.c, so not exported.
325  */
326 int 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)      /* not multi-stream capable */
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; /* error */
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  * snd_hda_get_dev_select - get device entry select on the pin
358  * @codec: the HDA codec
359  * @nid: NID of the pin to get device entry select
360  *
361  * Get the devcie entry select on the pin. Return the device entry
362  * id selected on the pin. Return 0 means the first device entry
363  * is selected or MST is not supported.
364  */
365 int snd_hda_get_dev_select(struct hda_codec *codec, hda_nid_t nid)
366 {
367         /* not support dp_mst will always return 0, using first dev_entry */
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 }
373 EXPORT_SYMBOL_GPL(snd_hda_get_dev_select);
374
375 /**
376  * snd_hda_set_dev_select - set device entry select on the pin
377  * @codec: the HDA codec
378  * @nid: NID of the pin to set device entry select
379  * @dev_id: device entry id to be set
380  *
381  * Set the device entry select on the pin nid.
382  */
383 int snd_hda_set_dev_select(struct hda_codec *codec, hda_nid_t nid, int dev_id)
384 {
385         int ret, num_devices;
386
387         /* not support dp_mst will always return 0, using first dev_entry */
388         if (!codec->dp_mst)
389                 return 0;
390
391         /* AC_PAR_DEVLIST_LEN is 0 based. */
392         num_devices = snd_hda_get_num_devices(codec, nid) + 1;
393         /* If Device List Length is 0 (num_device = 1),
394          * the pin is not multi stream capable.
395          * Do nothing in this case.
396          */
397         if (num_devices == 1)
398                 return 0;
399
400         /* Behavior of setting index being equal to or greater than
401          * Device List Length is not predictable
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 }
411 EXPORT_SYMBOL_GPL(snd_hda_set_dev_select);
412
413 /*
414  * read widget caps for each widget and store in cache
415  */
416 static 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 /* read all pin default configurations and save codec->init_pins */
432 static 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                  * all device entries are the same widget control so far
450                  * fixme: if any codec is different, need fix here
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 /* look up the given pin config list and return the item matching with NID */
460 static 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 /* set the current pin config value for the given NID.
475  * the value is cached, and read via snd_hda_codec_get_pincfg()
476  */
477 int 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         /* the check below may be invalid when pins are added by a fixup
483          * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled
484          * for now
485          */
486         /*
487         if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
488                 return -EINVAL;
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  * snd_hda_codec_set_pincfg - Override a pin default configuration
504  * @codec: the HDA codec
505  * @nid: NID to set the pin config
506  * @cfg: the pin default config value
507  *
508  * Override a pin default configuration value in the cache.
509  * This value can be read by snd_hda_codec_get_pincfg() in a higher
510  * priority than the real hardware value.
511  */
512 int 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 }
517 EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg);
518
519 /**
520  * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
521  * @codec: the HDA codec
522  * @nid: NID to get the pin config
523  *
524  * Get the current pin config value of the given pin NID.
525  * If the pincfg value is cached or overridden via sysfs or driver,
526  * returns the cached value.
527  */
528 unsigned 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 }
552 EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg);
553
554 /**
555  * snd_hda_codec_set_pin_target - remember the current pinctl target value
556  * @codec: the HDA codec
557  * @nid: pin NID
558  * @val: assigned pinctl value
559  *
560  * This function stores the given value to a pinctl target value in the
561  * pincfg table.  This isn't always as same as the actually written value
562  * but can be referred at any time via snd_hda_codec_get_pin_target().
563  */
564 int 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 }
575 EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target);
576
577 /**
578  * snd_hda_codec_get_pin_target - return the current pinctl target value
579  * @codec: the HDA codec
580  * @nid: pin NID
581  */
582 int 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 }
591 EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target);
592
593 /**
594  * snd_hda_shutup_pins - Shut up all pins
595  * @codec: the HDA codec
596  *
597  * Clear all pin controls to shup up before suspend for avoiding click noise.
598  * The controls aren't cached so that they can be resumed properly.
599  */
600 void snd_hda_shutup_pins(struct hda_codec *codec)
601 {
602         const struct hda_pincfg *pin;
603         int i;
604
605         /* don't shut up pins when unloading the driver; otherwise it breaks
606          * the default pin setup at the next load of the driver
607          */
608         if (codec->bus->shutdown)
609                 return;
610         snd_array_for_each(&codec->init_pins, i, pin) {
611                 /* use read here for syncing after issuing each verb */
612                 snd_hda_codec_read(codec, pin->nid, 0,
613                                    AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
614         }
615         codec->pins_shutup = 1;
616 }
617 EXPORT_SYMBOL_GPL(snd_hda_shutup_pins);
618
619 #ifdef CONFIG_PM
620 /* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
621 static 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
639 static 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         /* for non-polling trigger: we need nothing if already powered on */
645         if (!codec->jackpoll_interval && snd_hdac_is_power_on(&codec->core))
646                 return;
647
648         /* the power-up/down sequence triggers the runtime resume */
649         snd_hda_power_up_pm(codec);
650         /* update jacks manually if polling is required, too */
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 /* release all pincfg lists */
665 static 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  * audio-converter setup caches
676  */
677 struct hda_cvt_setup {
678         hda_nid_t nid;
679         u8 stream_tag;
680         u8 channel_id;
681         u16 format_id;
682         unsigned char active;   /* cvt is currently used */
683         unsigned char dirty;    /* setups should be cleared */
684 };
685
686 /* get or create a cache entry for the given audio converter NID */
687 static struct hda_cvt_setup *
688 get_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  * PCM device
705  */
706 static 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
717 void snd_hda_codec_pcm_put(struct hda_pcm *pcm)
718 {
719         kref_put(&pcm->kref, release_pcm);
720 }
721 EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put);
722
723 struct 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 }
746 EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new);
747
748 /*
749  * codec destructor
750  */
751 static 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
763 void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec)
764 {
765         if (codec->registered) {
766                 /* pm_runtime_put() is called in snd_hdac_device_exit() */
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         /* free only driver_pins so that init_pins + user_pins are restored */
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->slave_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 }
795
796 static unsigned int hda_set_power_state(struct hda_codec *codec,
797                                 unsigned int power_state);
798
799 /* enable/disable display power per codec */
800 static void codec_display_power(struct hda_codec *codec, bool enable)
801 {
802         if (codec->display_power_control)
803                 snd_hdac_display_power(&codec->bus->core, codec->addr, enable);
804 }
805
806 /* also called from hda_bind.c */
807 void snd_hda_codec_register(struct hda_codec *codec)
808 {
809         if (codec->registered)
810                 return;
811         if (device_is_registered(hda_codec_dev(codec))) {
812                 codec_display_power(codec, true);
813                 pm_runtime_enable(hda_codec_dev(codec));
814                 /* it was powered up in snd_hda_codec_new(), now all done */
815                 snd_hda_power_down(codec);
816                 codec->registered = 1;
817         }
818 }
819
820 static int snd_hda_codec_dev_register(struct snd_device *device)
821 {
822         snd_hda_codec_register(device->device_data);
823         return 0;
824 }
825
826 static int snd_hda_codec_dev_free(struct snd_device *device)
827 {
828         struct hda_codec *codec = device->device_data;
829
830         codec->in_freeing = 1;
831         /*
832          * snd_hda_codec_device_new() is used by legacy HDA and ASoC driver.
833          * We can't unregister ASoC device since it will be unregistered in
834          * snd_hdac_ext_bus_device_remove().
835          */
836         if (codec->core.type == HDA_DEV_LEGACY)
837                 snd_hdac_device_unregister(&codec->core);
838         codec_display_power(codec, false);
839
840         /*
841          * In the case of ASoC HD-audio bus, the device refcount is released in
842          * snd_hdac_ext_bus_device_remove() explicitly.
843          */
844         if (codec->core.type == HDA_DEV_LEGACY)
845                 put_device(hda_codec_dev(codec));
846
847         return 0;
848 }
849
850 static void snd_hda_codec_dev_release(struct device *dev)
851 {
852         struct hda_codec *codec = dev_to_hda_codec(dev);
853
854         free_init_pincfgs(codec);
855         snd_hdac_device_exit(&codec->core);
856         snd_hda_sysfs_clear(codec);
857         kfree(codec->modelname);
858         kfree(codec->wcaps);
859
860         /*
861          * In the case of ASoC HD-audio, hda_codec is device managed.
862          * It will be freed when the ASoC device is removed.
863          */
864         if (codec->core.type == HDA_DEV_LEGACY)
865                 kfree(codec);
866 }
867
868 #define DEV_NAME_LEN 31
869
870 static int snd_hda_codec_device_init(struct hda_bus *bus, struct snd_card *card,
871                         unsigned int codec_addr, struct hda_codec **codecp)
872 {
873         char name[DEV_NAME_LEN];
874         struct hda_codec *codec;
875         int err;
876
877         dev_dbg(card->dev, "%s: entry\n", __func__);
878
879         if (snd_BUG_ON(!bus))
880                 return -EINVAL;
881         if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
882                 return -EINVAL;
883
884         codec = kzalloc(sizeof(*codec), GFP_KERNEL);
885         if (!codec)
886                 return -ENOMEM;
887
888         sprintf(name, "hdaudioC%dD%d", card->number, codec_addr);
889         err = snd_hdac_device_init(&codec->core, &bus->core, name, codec_addr);
890         if (err < 0) {
891                 kfree(codec);
892                 return err;
893         }
894
895         codec->core.type = HDA_DEV_LEGACY;
896         *codecp = codec;
897
898         return err;
899 }
900
901 /**
902  * snd_hda_codec_new - create a HDA codec
903  * @bus: the bus to assign
904  * @codec_addr: the codec address
905  * @codecp: the pointer to store the generated codec
906  *
907  * Returns 0 if successful, or a negative error code.
908  */
909 int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
910                       unsigned int codec_addr, struct hda_codec **codecp)
911 {
912         int ret;
913
914         ret = snd_hda_codec_device_init(bus, card, codec_addr, codecp);
915         if (ret < 0)
916                 return ret;
917
918         return snd_hda_codec_device_new(bus, card, codec_addr, *codecp);
919 }
920 EXPORT_SYMBOL_GPL(snd_hda_codec_new);
921
922 int snd_hda_codec_device_new(struct hda_bus *bus, struct snd_card *card,
923                         unsigned int codec_addr, struct hda_codec *codec)
924 {
925         char component[31];
926         hda_nid_t fg;
927         int err;
928         static struct snd_device_ops dev_ops = {
929                 .dev_register = snd_hda_codec_dev_register,
930                 .dev_free = snd_hda_codec_dev_free,
931         };
932
933         dev_dbg(card->dev, "%s: entry\n", __func__);
934
935         if (snd_BUG_ON(!bus))
936                 return -EINVAL;
937         if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
938                 return -EINVAL;
939
940         codec->core.dev.release = snd_hda_codec_dev_release;
941         codec->core.exec_verb = codec_exec_verb;
942
943         codec->bus = bus;
944         codec->card = card;
945         codec->addr = codec_addr;
946         mutex_init(&codec->spdif_mutex);
947         mutex_init(&codec->control_mutex);
948         snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
949         snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
950         snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
951         snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
952         snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
953         snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
954         snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
955         snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
956         INIT_LIST_HEAD(&codec->conn_list);
957         INIT_LIST_HEAD(&codec->pcm_list_head);
958
959         INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
960         codec->depop_delay = -1;
961         codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
962
963 #ifdef CONFIG_PM
964         codec->power_jiffies = jiffies;
965 #endif
966
967         snd_hda_sysfs_init(codec);
968
969         if (codec->bus->modelname) {
970                 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
971                 if (!codec->modelname) {
972                         err = -ENOMEM;
973                         goto error;
974                 }
975         }
976
977         fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
978         err = read_widget_caps(codec, fg);
979         if (err < 0)
980                 goto error;
981         err = read_pin_defaults(codec);
982         if (err < 0)
983                 goto error;
984
985         /* power-up all before initialization */
986         hda_set_power_state(codec, AC_PWRST_D0);
987         codec->core.dev.power.power_state = PMSG_ON;
988
989         snd_hda_codec_proc_new(codec);
990
991         snd_hda_create_hwdep(codec);
992
993         sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id,
994                 codec->core.subsystem_id, codec->core.revision_id);
995         snd_component_add(card, component);
996
997         err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
998         if (err < 0)
999                 goto error;
1000
1001         return 0;
1002
1003  error:
1004         put_device(hda_codec_dev(codec));
1005         return err;
1006 }
1007 EXPORT_SYMBOL_GPL(snd_hda_codec_device_new);
1008
1009 /**
1010  * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
1011  * @codec: the HDA codec
1012  *
1013  * Forcibly refresh the all widget caps and the init pin configurations of
1014  * the given codec.
1015  */
1016 int snd_hda_codec_update_widgets(struct hda_codec *codec)
1017 {
1018         hda_nid_t fg;
1019         int err;
1020
1021         err = snd_hdac_refresh_widgets(&codec->core);
1022         if (err < 0)
1023                 return err;
1024
1025         /* Assume the function group node does not change,
1026          * only the widget nodes may change.
1027          */
1028         kfree(codec->wcaps);
1029         fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
1030         err = read_widget_caps(codec, fg);
1031         if (err < 0)
1032                 return err;
1033
1034         snd_array_free(&codec->init_pins);
1035         err = read_pin_defaults(codec);
1036
1037         return err;
1038 }
1039 EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
1040
1041 /* update the stream-id if changed */
1042 static void update_pcm_stream_id(struct hda_codec *codec,
1043                                  struct hda_cvt_setup *p, hda_nid_t nid,
1044                                  u32 stream_tag, int channel_id)
1045 {
1046         unsigned int oldval, newval;
1047
1048         if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1049                 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1050                 newval = (stream_tag << 4) | channel_id;
1051                 if (oldval != newval)
1052                         snd_hda_codec_write(codec, nid, 0,
1053                                             AC_VERB_SET_CHANNEL_STREAMID,
1054                                             newval);
1055                 p->stream_tag = stream_tag;
1056                 p->channel_id = channel_id;
1057         }
1058 }
1059
1060 /* update the format-id if changed */
1061 static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1062                               hda_nid_t nid, int format)
1063 {
1064         unsigned int oldval;
1065
1066         if (p->format_id != format) {
1067                 oldval = snd_hda_codec_read(codec, nid, 0,
1068                                             AC_VERB_GET_STREAM_FORMAT, 0);
1069                 if (oldval != format) {
1070                         msleep(1);
1071                         snd_hda_codec_write(codec, nid, 0,
1072                                             AC_VERB_SET_STREAM_FORMAT,
1073                                             format);
1074                 }
1075                 p->format_id = format;
1076         }
1077 }
1078
1079 /**
1080  * snd_hda_codec_setup_stream - set up the codec for streaming
1081  * @codec: the CODEC to set up
1082  * @nid: the NID to set up
1083  * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1084  * @channel_id: channel id to pass, zero based.
1085  * @format: stream format.
1086  */
1087 void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1088                                 u32 stream_tag,
1089                                 int channel_id, int format)
1090 {
1091         struct hda_codec *c;
1092         struct hda_cvt_setup *p;
1093         int type;
1094         int i;
1095
1096         if (!nid)
1097                 return;
1098
1099         codec_dbg(codec,
1100                   "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1101                   nid, stream_tag, channel_id, format);
1102         p = get_hda_cvt_setup(codec, nid);
1103         if (!p)
1104                 return;
1105
1106         if (codec->patch_ops.stream_pm)
1107                 codec->patch_ops.stream_pm(codec, nid, true);
1108         if (codec->pcm_format_first)
1109                 update_pcm_format(codec, p, nid, format);
1110         update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1111         if (!codec->pcm_format_first)
1112                 update_pcm_format(codec, p, nid, format);
1113
1114         p->active = 1;
1115         p->dirty = 0;
1116
1117         /* make other inactive cvts with the same stream-tag dirty */
1118         type = get_wcaps_type(get_wcaps(codec, nid));
1119         list_for_each_codec(c, codec->bus) {
1120                 snd_array_for_each(&c->cvt_setups, i, p) {
1121                         if (!p->active && p->stream_tag == stream_tag &&
1122                             get_wcaps_type(get_wcaps(c, p->nid)) == type)
1123                                 p->dirty = 1;
1124                 }
1125         }
1126 }
1127 EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
1128
1129 static void really_cleanup_stream(struct hda_codec *codec,
1130                                   struct hda_cvt_setup *q);
1131
1132 /**
1133  * __snd_hda_codec_cleanup_stream - clean up the codec for closing
1134  * @codec: the CODEC to clean up
1135  * @nid: the NID to clean up
1136  * @do_now: really clean up the stream instead of clearing the active flag
1137  */
1138 void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1139                                     int do_now)
1140 {
1141         struct hda_cvt_setup *p;
1142
1143         if (!nid)
1144                 return;
1145
1146         if (codec->no_sticky_stream)
1147                 do_now = 1;
1148
1149         codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
1150         p = get_hda_cvt_setup(codec, nid);
1151         if (p) {
1152                 /* here we just clear the active flag when do_now isn't set;
1153                  * actual clean-ups will be done later in
1154                  * purify_inactive_streams() called from snd_hda_codec_prpapre()
1155                  */
1156                 if (do_now)
1157                         really_cleanup_stream(codec, p);
1158                 else
1159                         p->active = 0;
1160         }
1161 }
1162 EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
1163
1164 static void really_cleanup_stream(struct hda_codec *codec,
1165                                   struct hda_cvt_setup *q)
1166 {
1167         hda_nid_t nid = q->nid;
1168         if (q->stream_tag || q->channel_id)
1169                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1170         if (q->format_id)
1171                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1172 );
1173         memset(q, 0, sizeof(*q));
1174         q->nid = nid;
1175         if (codec->patch_ops.stream_pm)
1176                 codec->patch_ops.stream_pm(codec, nid, false);
1177 }
1178
1179 /* clean up the all conflicting obsolete streams */
1180 static void purify_inactive_streams(struct hda_codec *codec)
1181 {
1182         struct hda_codec *c;
1183         struct hda_cvt_setup *p;
1184         int i;
1185
1186         list_for_each_codec(c, codec->bus) {
1187                 snd_array_for_each(&c->cvt_setups, i, p) {
1188                         if (p->dirty)
1189                                 really_cleanup_stream(c, p);
1190                 }
1191         }
1192 }
1193
1194 #ifdef CONFIG_PM
1195 /* clean up all streams; called from suspend */
1196 static void hda_cleanup_all_streams(struct hda_codec *codec)
1197 {
1198         struct hda_cvt_setup *p;
1199         int i;
1200
1201         snd_array_for_each(&codec->cvt_setups, i, p) {
1202                 if (p->stream_tag)
1203                         really_cleanup_stream(codec, p);
1204         }
1205 }
1206 #endif
1207
1208 /*
1209  * amp access functions
1210  */
1211
1212 /**
1213  * query_amp_caps - query AMP capabilities
1214  * @codec: the HD-auio codec
1215  * @nid: the NID to query
1216  * @direction: either #HDA_INPUT or #HDA_OUTPUT
1217  *
1218  * Query AMP capabilities for the given widget and direction.
1219  * Returns the obtained capability bits.
1220  *
1221  * When cap bits have been already read, this doesn't read again but
1222  * returns the cached value.
1223  */
1224 u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
1225 {
1226         if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1227                 nid = codec->core.afg;
1228         return snd_hda_param_read(codec, nid,
1229                                   direction == HDA_OUTPUT ?
1230                                   AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
1231 }
1232 EXPORT_SYMBOL_GPL(query_amp_caps);
1233
1234 /**
1235  * snd_hda_check_amp_caps - query AMP capabilities
1236  * @codec: the HD-audio codec
1237  * @nid: the NID to query
1238  * @dir: either #HDA_INPUT or #HDA_OUTPUT
1239  * @bits: bit mask to check the result
1240  *
1241  * Check whether the widget has the given amp capability for the direction.
1242  */
1243 bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1244                            int dir, unsigned int bits)
1245 {
1246         if (!nid)
1247                 return false;
1248         if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1249                 if (query_amp_caps(codec, nid, dir) & bits)
1250                         return true;
1251         return false;
1252 }
1253 EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1254
1255 /**
1256  * snd_hda_override_amp_caps - Override the AMP capabilities
1257  * @codec: the CODEC to clean up
1258  * @nid: the NID to clean up
1259  * @dir: either #HDA_INPUT or #HDA_OUTPUT
1260  * @caps: the capability bits to set
1261  *
1262  * Override the cached AMP caps bits value by the given one.
1263  * This function is useful if the driver needs to adjust the AMP ranges,
1264  * e.g. limit to 0dB, etc.
1265  *
1266  * Returns zero if successful or a negative error code.
1267  */
1268 int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1269                               unsigned int caps)
1270 {
1271         unsigned int parm;
1272
1273         snd_hda_override_wcaps(codec, nid,
1274                                get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD);
1275         parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP;
1276         return snd_hdac_override_parm(&codec->core, nid, parm, caps);
1277 }
1278 EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
1279
1280 static unsigned int encode_amp(struct hda_codec *codec, hda_nid_t nid,
1281                                int ch, int dir, int idx)
1282 {
1283         unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx);
1284
1285         /* enable fake mute if no h/w mute but min=mute */
1286         if ((query_amp_caps(codec, nid, dir) &
1287              (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) == AC_AMPCAP_MIN_MUTE)
1288                 cmd |= AC_AMP_FAKE_MUTE;
1289         return cmd;
1290 }
1291
1292 /**
1293  * snd_hda_codec_amp_update - update the AMP mono value
1294  * @codec: HD-audio codec
1295  * @nid: NID to read the AMP value
1296  * @ch: channel to update (0 or 1)
1297  * @dir: #HDA_INPUT or #HDA_OUTPUT
1298  * @idx: the index value (only for input direction)
1299  * @mask: bit mask to set
1300  * @val: the bits value to set
1301  *
1302  * Update the AMP values for the given channel, direction and index.
1303  */
1304 int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
1305                              int ch, int dir, int idx, int mask, int val)
1306 {
1307         unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
1308
1309         return snd_hdac_regmap_update_raw(&codec->core, cmd, mask, val);
1310 }
1311 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
1312
1313 /**
1314  * snd_hda_codec_amp_stereo - update the AMP stereo values
1315  * @codec: HD-audio codec
1316  * @nid: NID to read the AMP value
1317  * @direction: #HDA_INPUT or #HDA_OUTPUT
1318  * @idx: the index value (only for input direction)
1319  * @mask: bit mask to set
1320  * @val: the bits value to set
1321  *
1322  * Update the AMP values like snd_hda_codec_amp_update(), but for a
1323  * stereo widget with the same mask and value.
1324  */
1325 int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1326                              int direction, int idx, int mask, int val)
1327 {
1328         int ch, ret = 0;
1329
1330         if (snd_BUG_ON(mask & ~0xff))
1331                 mask &= 0xff;
1332         for (ch = 0; ch < 2; ch++)
1333                 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1334                                                 idx, mask, val);
1335         return ret;
1336 }
1337 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
1338
1339 /**
1340  * snd_hda_codec_amp_init - initialize the AMP value
1341  * @codec: the HDA codec
1342  * @nid: NID to read the AMP value
1343  * @ch: channel (left=0 or right=1)
1344  * @dir: #HDA_INPUT or #HDA_OUTPUT
1345  * @idx: the index value (only for input direction)
1346  * @mask: bit mask to set
1347  * @val: the bits value to set
1348  *
1349  * Works like snd_hda_codec_amp_update() but it writes the value only at
1350  * the first access.  If the amp was already initialized / updated beforehand,
1351  * this does nothing.
1352  */
1353 int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
1354                            int dir, int idx, int mask, int val)
1355 {
1356         unsigned int cmd = encode_amp(codec, nid, ch, dir, idx);
1357
1358         if (!codec->core.regmap)
1359                 return -EINVAL;
1360         return snd_hdac_regmap_update_raw_once(&codec->core, cmd, mask, val);
1361 }
1362 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
1363
1364 /**
1365  * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
1366  * @codec: the HDA codec
1367  * @nid: NID to read the AMP value
1368  * @dir: #HDA_INPUT or #HDA_OUTPUT
1369  * @idx: the index value (only for input direction)
1370  * @mask: bit mask to set
1371  * @val: the bits value to set
1372  *
1373  * Call snd_hda_codec_amp_init() for both stereo channels.
1374  */
1375 int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
1376                                   int dir, int idx, int mask, int val)
1377 {
1378         int ch, ret = 0;
1379
1380         if (snd_BUG_ON(mask & ~0xff))
1381                 mask &= 0xff;
1382         for (ch = 0; ch < 2; ch++)
1383                 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
1384                                               idx, mask, val);
1385         return ret;
1386 }
1387 EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
1388
1389 static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
1390                              unsigned int ofs)
1391 {
1392         u32 caps = query_amp_caps(codec, nid, dir);
1393         /* get num steps */
1394         caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1395         if (ofs < caps)
1396                 caps -= ofs;
1397         return caps;
1398 }
1399
1400 /**
1401  * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
1402  * @kcontrol: referred ctl element
1403  * @uinfo: pointer to get/store the data
1404  *
1405  * The control element is supposed to have the private_value field
1406  * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1407  */
1408 int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1409                                   struct snd_ctl_elem_info *uinfo)
1410 {
1411         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1412         u16 nid = get_amp_nid(kcontrol);
1413         u8 chs = get_amp_channels(kcontrol);
1414         int dir = get_amp_direction(kcontrol);
1415         unsigned int ofs = get_amp_offset(kcontrol);
1416
1417         uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1418         uinfo->count = chs == 3 ? 2 : 1;
1419         uinfo->value.integer.min = 0;
1420         uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
1421         if (!uinfo->value.integer.max) {
1422                 codec_warn(codec,
1423                            "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1424                            nid, kcontrol->id.name);
1425                 return -EINVAL;
1426         }
1427         return 0;
1428 }
1429 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
1430
1431
1432 static inline unsigned int
1433 read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1434                int ch, int dir, int idx, unsigned int ofs)
1435 {
1436         unsigned int val;
1437         val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1438         val &= HDA_AMP_VOLMASK;
1439         if (val >= ofs)
1440                 val -= ofs;
1441         else
1442                 val = 0;
1443         return val;
1444 }
1445
1446 static inline int
1447 update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1448                  int ch, int dir, int idx, unsigned int ofs,
1449                  unsigned int val)
1450 {
1451         unsigned int maxval;
1452
1453         if (val > 0)
1454                 val += ofs;
1455         /* ofs = 0: raw max value */
1456         maxval = get_amp_max_value(codec, nid, dir, 0);
1457         if (val > maxval)
1458                 val = maxval;
1459         return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1460                                         HDA_AMP_VOLMASK, val);
1461 }
1462
1463 /**
1464  * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
1465  * @kcontrol: ctl element
1466  * @ucontrol: pointer to get/store the data
1467  *
1468  * The control element is supposed to have the private_value field
1469  * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1470  */
1471 int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1472                                  struct snd_ctl_elem_value *ucontrol)
1473 {
1474         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1475         hda_nid_t nid = get_amp_nid(kcontrol);
1476         int chs = get_amp_channels(kcontrol);
1477         int dir = get_amp_direction(kcontrol);
1478         int idx = get_amp_index(kcontrol);
1479         unsigned int ofs = get_amp_offset(kcontrol);
1480         long *valp = ucontrol->value.integer.value;
1481
1482         if (chs & 1)
1483                 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
1484         if (chs & 2)
1485                 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
1486         return 0;
1487 }
1488 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
1489
1490 /**
1491  * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
1492  * @kcontrol: ctl element
1493  * @ucontrol: pointer to get/store the data
1494  *
1495  * The control element is supposed to have the private_value field
1496  * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1497  */
1498 int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1499                                  struct snd_ctl_elem_value *ucontrol)
1500 {
1501         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1502         hda_nid_t nid = get_amp_nid(kcontrol);
1503         int chs = get_amp_channels(kcontrol);
1504         int dir = get_amp_direction(kcontrol);
1505         int idx = get_amp_index(kcontrol);
1506         unsigned int ofs = get_amp_offset(kcontrol);
1507         long *valp = ucontrol->value.integer.value;
1508         int change = 0;
1509
1510         if (chs & 1) {
1511                 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
1512                 valp++;
1513         }
1514         if (chs & 2)
1515                 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
1516         return change;
1517 }
1518 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
1519
1520 /* inquiry the amp caps and convert to TLV */
1521 static void get_ctl_amp_tlv(struct snd_kcontrol *kcontrol, unsigned int *tlv)
1522 {
1523         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1524         hda_nid_t nid = get_amp_nid(kcontrol);
1525         int dir = get_amp_direction(kcontrol);
1526         unsigned int ofs = get_amp_offset(kcontrol);
1527         bool min_mute = get_amp_min_mute(kcontrol);
1528         u32 caps, val1, val2;
1529
1530         caps = query_amp_caps(codec, nid, dir);
1531         val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1532         val2 = (val2 + 1) * 25;
1533         val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
1534         val1 += ofs;
1535         val1 = ((int)val1) * ((int)val2);
1536         if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
1537                 val2 |= TLV_DB_SCALE_MUTE;
1538         tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1539         tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1540         tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = val1;
1541         tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = val2;
1542 }
1543
1544 /**
1545  * snd_hda_mixer_amp_tlv - TLV callback for a standard AMP mixer volume
1546  * @kcontrol: ctl element
1547  * @op_flag: operation flag
1548  * @size: byte size of input TLV
1549  * @_tlv: TLV data
1550  *
1551  * The control element is supposed to have the private_value field
1552  * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1553  */
1554 int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1555                           unsigned int size, unsigned int __user *_tlv)
1556 {
1557         unsigned int tlv[4];
1558
1559         if (size < 4 * sizeof(unsigned int))
1560                 return -ENOMEM;
1561         get_ctl_amp_tlv(kcontrol, tlv);
1562         if (copy_to_user(_tlv, tlv, sizeof(tlv)))
1563                 return -EFAULT;
1564         return 0;
1565 }
1566 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
1567
1568 /**
1569  * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1570  * @codec: HD-audio codec
1571  * @nid: NID of a reference widget
1572  * @dir: #HDA_INPUT or #HDA_OUTPUT
1573  * @tlv: TLV data to be stored, at least 4 elements
1574  *
1575  * Set (static) TLV data for a virtual master volume using the AMP caps
1576  * obtained from the reference NID.
1577  * The volume range is recalculated as if the max volume is 0dB.
1578  */
1579 void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1580                              unsigned int *tlv)
1581 {
1582         u32 caps;
1583         int nums, step;
1584
1585         caps = query_amp_caps(codec, nid, dir);
1586         nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1587         step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1588         step = (step + 1) * 25;
1589         tlv[SNDRV_CTL_TLVO_TYPE] = SNDRV_CTL_TLVT_DB_SCALE;
1590         tlv[SNDRV_CTL_TLVO_LEN] = 2 * sizeof(unsigned int);
1591         tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] = -nums * step;
1592         tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP] = step;
1593 }
1594 EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
1595
1596 /* find a mixer control element with the given name */
1597 static struct snd_kcontrol *
1598 find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
1599 {
1600         struct snd_ctl_elem_id id;
1601         memset(&id, 0, sizeof(id));
1602         id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
1603         id.device = dev;
1604         id.index = idx;
1605         if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1606                 return NULL;
1607         strcpy(id.name, name);
1608         return snd_ctl_find_id(codec->card, &id);
1609 }
1610
1611 /**
1612  * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1613  * @codec: HD-audio codec
1614  * @name: ctl id name string
1615  *
1616  * Get the control element with the given id string and IFACE_MIXER.
1617  */
1618 struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1619                                             const char *name)
1620 {
1621         return find_mixer_ctl(codec, name, 0, 0);
1622 }
1623 EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
1624
1625 static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
1626                                     int start_idx)
1627 {
1628         int i, idx;
1629         /* 16 ctlrs should be large enough */
1630         for (i = 0, idx = start_idx; i < 16; i++, idx++) {
1631                 if (!find_mixer_ctl(codec, name, 0, idx))
1632                         return idx;
1633         }
1634         return -EBUSY;
1635 }
1636
1637 /**
1638  * snd_hda_ctl_add - Add a control element and assign to the codec
1639  * @codec: HD-audio codec
1640  * @nid: corresponding NID (optional)
1641  * @kctl: the control element to assign
1642  *
1643  * Add the given control element to an array inside the codec instance.
1644  * All control elements belonging to a codec are supposed to be added
1645  * by this function so that a proper clean-up works at the free or
1646  * reconfiguration time.
1647  *
1648  * If non-zero @nid is passed, the NID is assigned to the control element.
1649  * The assignment is shown in the codec proc file.
1650  *
1651  * snd_hda_ctl_add() checks the control subdev id field whether
1652  * #HDA_SUBDEV_NID_FLAG bit is set.  If set (and @nid is zero), the lower
1653  * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
1654  * specifies if kctl->private_value is a HDA amplifier value.
1655  */
1656 int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
1657                     struct snd_kcontrol *kctl)
1658 {
1659         int err;
1660         unsigned short flags = 0;
1661         struct hda_nid_item *item;
1662
1663         if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
1664                 flags |= HDA_NID_ITEM_AMP;
1665                 if (nid == 0)
1666                         nid = get_amp_nid_(kctl->private_value);
1667         }
1668         if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
1669                 nid = kctl->id.subdevice & 0xffff;
1670         if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
1671                 kctl->id.subdevice = 0;
1672         err = snd_ctl_add(codec->card, kctl);
1673         if (err < 0)
1674                 return err;
1675         item = snd_array_new(&codec->mixers);
1676         if (!item)
1677                 return -ENOMEM;
1678         item->kctl = kctl;
1679         item->nid = nid;
1680         item->flags = flags;
1681         return 0;
1682 }
1683 EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
1684
1685 /**
1686  * snd_hda_add_nid - Assign a NID to a control element
1687  * @codec: HD-audio codec
1688  * @nid: corresponding NID (optional)
1689  * @kctl: the control element to assign
1690  * @index: index to kctl
1691  *
1692  * Add the given control element to an array inside the codec instance.
1693  * This function is used when #snd_hda_ctl_add cannot be used for 1:1
1694  * NID:KCTL mapping - for example "Capture Source" selector.
1695  */
1696 int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
1697                     unsigned int index, hda_nid_t nid)
1698 {
1699         struct hda_nid_item *item;
1700
1701         if (nid > 0) {
1702                 item = snd_array_new(&codec->nids);
1703                 if (!item)
1704                         return -ENOMEM;
1705                 item->kctl = kctl;
1706                 item->index = index;
1707                 item->nid = nid;
1708                 return 0;
1709         }
1710         codec_err(codec, "no NID for mapping control %s:%d:%d\n",
1711                   kctl->id.name, kctl->id.index, index);
1712         return -EINVAL;
1713 }
1714 EXPORT_SYMBOL_GPL(snd_hda_add_nid);
1715
1716 /**
1717  * snd_hda_ctls_clear - Clear all controls assigned to the given codec
1718  * @codec: HD-audio codec
1719  */
1720 void snd_hda_ctls_clear(struct hda_codec *codec)
1721 {
1722         int i;
1723         struct hda_nid_item *items = codec->mixers.list;
1724
1725         down_write(&codec->card->controls_rwsem);
1726         for (i = 0; i < codec->mixers.used; i++)
1727                 snd_ctl_remove(codec->card, items[i].kctl);
1728         up_write(&codec->card->controls_rwsem);
1729         snd_array_free(&codec->mixers);
1730         snd_array_free(&codec->nids);
1731 }
1732
1733 /**
1734  * snd_hda_lock_devices - pseudo device locking
1735  * @bus: the BUS
1736  *
1737  * toggle card->shutdown to allow/disallow the device access (as a hack)
1738  */
1739 int snd_hda_lock_devices(struct hda_bus *bus)
1740 {
1741         struct snd_card *card = bus->card;
1742         struct hda_codec *codec;
1743
1744         spin_lock(&card->files_lock);
1745         if (card->shutdown)
1746                 goto err_unlock;
1747         card->shutdown = 1;
1748         if (!list_empty(&card->ctl_files))
1749                 goto err_clear;
1750
1751         list_for_each_codec(codec, bus) {
1752                 struct hda_pcm *cpcm;
1753                 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
1754                         if (!cpcm->pcm)
1755                                 continue;
1756                         if (cpcm->pcm->streams[0].substream_opened ||
1757                             cpcm->pcm->streams[1].substream_opened)
1758                                 goto err_clear;
1759                 }
1760         }
1761         spin_unlock(&card->files_lock);
1762         return 0;
1763
1764  err_clear:
1765         card->shutdown = 0;
1766  err_unlock:
1767         spin_unlock(&card->files_lock);
1768         return -EINVAL;
1769 }
1770 EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
1771
1772 /**
1773  * snd_hda_unlock_devices - pseudo device unlocking
1774  * @bus: the BUS
1775  */
1776 void snd_hda_unlock_devices(struct hda_bus *bus)
1777 {
1778         struct snd_card *card = bus->card;
1779
1780         spin_lock(&card->files_lock);
1781         card->shutdown = 0;
1782         spin_unlock(&card->files_lock);
1783 }
1784 EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
1785
1786 /**
1787  * snd_hda_codec_reset - Clear all objects assigned to the codec
1788  * @codec: HD-audio codec
1789  *
1790  * This frees the all PCM and control elements assigned to the codec, and
1791  * clears the caches and restores the pin default configurations.
1792  *
1793  * When a device is being used, it returns -EBSY.  If successfully freed,
1794  * returns zero.
1795  */
1796 int snd_hda_codec_reset(struct hda_codec *codec)
1797 {
1798         struct hda_bus *bus = codec->bus;
1799
1800         if (snd_hda_lock_devices(bus) < 0)
1801                 return -EBUSY;
1802
1803         /* OK, let it free */
1804         device_release_driver(hda_codec_dev(codec));
1805
1806         /* allow device access again */
1807         snd_hda_unlock_devices(bus);
1808         return 0;
1809 }
1810
1811 typedef int (*map_slave_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
1812
1813 /* apply the function to all matching slave ctls in the mixer list */
1814 static int map_slaves(struct hda_codec *codec, const char * const *slaves,
1815                       const char *suffix, map_slave_func_t func, void *data) 
1816 {
1817         struct hda_nid_item *items;
1818         const char * const *s;
1819         int i, err;
1820
1821         items = codec->mixers.list;
1822         for (i = 0; i < codec->mixers.used; i++) {
1823                 struct snd_kcontrol *sctl = items[i].kctl;
1824                 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
1825                         continue;
1826                 for (s = slaves; *s; s++) {
1827                         char tmpname[sizeof(sctl->id.name)];
1828                         const char *name = *s;
1829                         if (suffix) {
1830                                 snprintf(tmpname, sizeof(tmpname), "%s %s",
1831                                          name, suffix);
1832                                 name = tmpname;
1833                         }
1834                         if (!strcmp(sctl->id.name, name)) {
1835                                 err = func(codec, data, sctl);
1836                                 if (err)
1837                                         return err;
1838                                 break;
1839                         }
1840                 }
1841         }
1842         return 0;
1843 }
1844
1845 static int check_slave_present(struct hda_codec *codec,
1846                                void *data, struct snd_kcontrol *sctl)
1847 {
1848         return 1;
1849 }
1850
1851 /* call kctl->put with the given value(s) */
1852 static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
1853 {
1854         struct snd_ctl_elem_value *ucontrol;
1855         ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
1856         if (!ucontrol)
1857                 return -ENOMEM;
1858         ucontrol->value.integer.value[0] = val;
1859         ucontrol->value.integer.value[1] = val;
1860         kctl->put(kctl, ucontrol);
1861         kfree(ucontrol);
1862         return 0;
1863 }
1864
1865 struct slave_init_arg {
1866         struct hda_codec *codec;
1867         int step;
1868 };
1869
1870 /* initialize the slave volume with 0dB via snd_ctl_apply_vmaster_slaves() */
1871 static int init_slave_0dB(struct snd_kcontrol *slave,
1872                           struct snd_kcontrol *kctl,
1873                           void *_arg)
1874 {
1875         struct slave_init_arg *arg = _arg;
1876         int _tlv[4];
1877         const int *tlv = NULL;
1878         int step;
1879         int val;
1880
1881         if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1882                 if (kctl->tlv.c != snd_hda_mixer_amp_tlv) {
1883                         codec_err(arg->codec,
1884                                   "Unexpected TLV callback for slave %s:%d\n",
1885                                   kctl->id.name, kctl->id.index);
1886                         return 0; /* ignore */
1887                 }
1888                 get_ctl_amp_tlv(kctl, _tlv);
1889                 tlv = _tlv;
1890         } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
1891                 tlv = kctl->tlv.p;
1892
1893         if (!tlv || tlv[SNDRV_CTL_TLVO_TYPE] != SNDRV_CTL_TLVT_DB_SCALE)
1894                 return 0;
1895
1896         step = tlv[SNDRV_CTL_TLVO_DB_SCALE_MUTE_AND_STEP];
1897         step &= ~TLV_DB_SCALE_MUTE;
1898         if (!step)
1899                 return 0;
1900         if (arg->step && arg->step != step) {
1901                 codec_err(arg->codec,
1902                           "Mismatching dB step for vmaster slave (%d!=%d)\n",
1903                           arg->step, step);
1904                 return 0;
1905         }
1906
1907         arg->step = step;
1908         val = -tlv[SNDRV_CTL_TLVO_DB_SCALE_MIN] / step;
1909         if (val > 0) {
1910                 put_kctl_with_value(slave, val);
1911                 return val;
1912         }
1913
1914         return 0;
1915 }
1916
1917 /* unmute the slave via snd_ctl_apply_vmaster_slaves() */
1918 static int init_slave_unmute(struct snd_kcontrol *slave,
1919                              struct snd_kcontrol *kctl,
1920                              void *_arg)
1921 {
1922         return put_kctl_with_value(slave, 1);
1923 }
1924
1925 static int add_slave(struct hda_codec *codec,
1926                      void *data, struct snd_kcontrol *slave)
1927 {
1928         return snd_ctl_add_slave(data, slave);
1929 }
1930
1931 /**
1932  * __snd_hda_add_vmaster - create a virtual master control and add slaves
1933  * @codec: HD-audio codec
1934  * @name: vmaster control name
1935  * @tlv: TLV data (optional)
1936  * @slaves: slave control names (optional)
1937  * @suffix: suffix string to each slave name (optional)
1938  * @init_slave_vol: initialize slaves to unmute/0dB
1939  * @ctl_ret: store the vmaster kcontrol in return
1940  *
1941  * Create a virtual master control with the given name.  The TLV data
1942  * must be either NULL or a valid data.
1943  *
1944  * @slaves is a NULL-terminated array of strings, each of which is a
1945  * slave control name.  All controls with these names are assigned to
1946  * the new virtual master control.
1947  *
1948  * This function returns zero if successful or a negative error code.
1949  */
1950 int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
1951                         unsigned int *tlv, const char * const *slaves,
1952                           const char *suffix, bool init_slave_vol,
1953                           struct snd_kcontrol **ctl_ret)
1954 {
1955         struct snd_kcontrol *kctl;
1956         int err;
1957
1958         if (ctl_ret)
1959                 *ctl_ret = NULL;
1960
1961         err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
1962         if (err != 1) {
1963                 codec_dbg(codec, "No slave found for %s\n", name);
1964                 return 0;
1965         }
1966         kctl = snd_ctl_make_virtual_master(name, tlv);
1967         if (!kctl)
1968                 return -ENOMEM;
1969         err = snd_hda_ctl_add(codec, 0, kctl);
1970         if (err < 0)
1971                 return err;
1972
1973         err = map_slaves(codec, slaves, suffix, add_slave, kctl);
1974         if (err < 0)
1975                 return err;
1976
1977         /* init with master mute & zero volume */
1978         put_kctl_with_value(kctl, 0);
1979         if (init_slave_vol) {
1980                 struct slave_init_arg arg = {
1981                         .codec = codec,
1982                         .step = 0,
1983                 };
1984                 snd_ctl_apply_vmaster_slaves(kctl,
1985                                              tlv ? init_slave_0dB : init_slave_unmute,
1986                                              &arg);
1987         }
1988
1989         if (ctl_ret)
1990                 *ctl_ret = kctl;
1991         return 0;
1992 }
1993 EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
1994
1995 /*
1996  * mute-LED control using vmaster
1997  */
1998 static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
1999                                   struct snd_ctl_elem_info *uinfo)
2000 {
2001         static const char * const texts[] = {
2002                 "On", "Off", "Follow Master"
2003         };
2004
2005         return snd_ctl_enum_info(uinfo, 1, 3, texts);
2006 }
2007
2008 static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2009                                  struct snd_ctl_elem_value *ucontrol)
2010 {
2011         struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2012         ucontrol->value.enumerated.item[0] = hook->mute_mode;
2013         return 0;
2014 }
2015
2016 static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2017                                  struct snd_ctl_elem_value *ucontrol)
2018 {
2019         struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2020         unsigned int old_mode = hook->mute_mode;
2021
2022         hook->mute_mode = ucontrol->value.enumerated.item[0];
2023         if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2024                 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2025         if (old_mode == hook->mute_mode)
2026                 return 0;
2027         snd_hda_sync_vmaster_hook(hook);
2028         return 1;
2029 }
2030
2031 static const struct snd_kcontrol_new vmaster_mute_mode = {
2032         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2033         .name = "Mute-LED Mode",
2034         .info = vmaster_mute_mode_info,
2035         .get = vmaster_mute_mode_get,
2036         .put = vmaster_mute_mode_put,
2037 };
2038
2039 /* meta hook to call each driver's vmaster hook */
2040 static void vmaster_hook(void *private_data, int enabled)
2041 {
2042         struct hda_vmaster_mute_hook *hook = private_data;
2043
2044         if (hook->mute_mode != HDA_VMUTE_FOLLOW_MASTER)
2045                 enabled = hook->mute_mode;
2046         hook->hook(hook->codec, enabled);
2047 }
2048
2049 /**
2050  * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED
2051  * @codec: the HDA codec
2052  * @hook: the vmaster hook object
2053  * @expose_enum_ctl: flag to create an enum ctl
2054  *
2055  * Add a mute-LED hook with the given vmaster switch kctl.
2056  * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically
2057  * created and associated with the given hook.
2058  */
2059 int snd_hda_add_vmaster_hook(struct hda_codec *codec,
2060                              struct hda_vmaster_mute_hook *hook,
2061                              bool expose_enum_ctl)
2062 {
2063         struct snd_kcontrol *kctl;
2064
2065         if (!hook->hook || !hook->sw_kctl)
2066                 return 0;
2067         hook->codec = codec;
2068         hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2069         snd_ctl_add_vmaster_hook(hook->sw_kctl, vmaster_hook, hook);
2070         if (!expose_enum_ctl)
2071                 return 0;
2072         kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2073         if (!kctl)
2074                 return -ENOMEM;
2075         return snd_hda_ctl_add(codec, 0, kctl);
2076 }
2077 EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
2078
2079 /**
2080  * snd_hda_sync_vmaster_hook - Sync vmaster hook
2081  * @hook: the vmaster hook
2082  *
2083  * Call the hook with the current value for synchronization.
2084  * Should be called in init callback.
2085  */
2086 void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2087 {
2088         if (!hook->hook || !hook->codec)
2089                 return;
2090         /* don't call vmaster hook in the destructor since it might have
2091          * been already destroyed
2092          */
2093         if (hook->codec->bus->shutdown)
2094                 return;
2095         snd_ctl_sync_vmaster_hook(hook->sw_kctl);
2096 }
2097 EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
2098
2099
2100 /**
2101  * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
2102  * @kcontrol: referred ctl element
2103  * @uinfo: pointer to get/store the data
2104  *
2105  * The control element is supposed to have the private_value field
2106  * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2107  */
2108 int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2109                                   struct snd_ctl_elem_info *uinfo)
2110 {
2111         int chs = get_amp_channels(kcontrol);
2112
2113         uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2114         uinfo->count = chs == 3 ? 2 : 1;
2115         uinfo->value.integer.min = 0;
2116         uinfo->value.integer.max = 1;
2117         return 0;
2118 }
2119 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
2120
2121 /**
2122  * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
2123  * @kcontrol: ctl element
2124  * @ucontrol: pointer to get/store the data
2125  *
2126  * The control element is supposed to have the private_value field
2127  * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2128  */
2129 int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2130                                  struct snd_ctl_elem_value *ucontrol)
2131 {
2132         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2133         hda_nid_t nid = get_amp_nid(kcontrol);
2134         int chs = get_amp_channels(kcontrol);
2135         int dir = get_amp_direction(kcontrol);
2136         int idx = get_amp_index(kcontrol);
2137         long *valp = ucontrol->value.integer.value;
2138
2139         if (chs & 1)
2140                 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
2141                            HDA_AMP_MUTE) ? 0 : 1;
2142         if (chs & 2)
2143                 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
2144                          HDA_AMP_MUTE) ? 0 : 1;
2145         return 0;
2146 }
2147 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
2148
2149 /**
2150  * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
2151  * @kcontrol: ctl element
2152  * @ucontrol: pointer to get/store the data
2153  *
2154  * The control element is supposed to have the private_value field
2155  * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2156  */
2157 int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2158                                  struct snd_ctl_elem_value *ucontrol)
2159 {
2160         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2161         hda_nid_t nid = get_amp_nid(kcontrol);
2162         int chs = get_amp_channels(kcontrol);
2163         int dir = get_amp_direction(kcontrol);
2164         int idx = get_amp_index(kcontrol);
2165         long *valp = ucontrol->value.integer.value;
2166         int change = 0;
2167
2168         if (chs & 1) {
2169                 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
2170                                                   HDA_AMP_MUTE,
2171                                                   *valp ? 0 : HDA_AMP_MUTE);
2172                 valp++;
2173         }
2174         if (chs & 2)
2175                 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
2176                                                    HDA_AMP_MUTE,
2177                                                    *valp ? 0 : HDA_AMP_MUTE);
2178         hda_call_check_power_status(codec, nid);
2179         return change;
2180 }
2181 EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
2182
2183 /*
2184  * SPDIF out controls
2185  */
2186
2187 static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2188                                    struct snd_ctl_elem_info *uinfo)
2189 {
2190         uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2191         uinfo->count = 1;
2192         return 0;
2193 }
2194
2195 static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2196                                    struct snd_ctl_elem_value *ucontrol)
2197 {
2198         ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2199                                            IEC958_AES0_NONAUDIO |
2200                                            IEC958_AES0_CON_EMPHASIS_5015 |
2201                                            IEC958_AES0_CON_NOT_COPYRIGHT;
2202         ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2203                                            IEC958_AES1_CON_ORIGINAL;
2204         return 0;
2205 }
2206
2207 static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2208                                    struct snd_ctl_elem_value *ucontrol)
2209 {
2210         ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2211                                            IEC958_AES0_NONAUDIO |
2212                                            IEC958_AES0_PRO_EMPHASIS_5015;
2213         return 0;
2214 }
2215
2216 static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2217                                      struct snd_ctl_elem_value *ucontrol)
2218 {
2219         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2220         int idx = kcontrol->private_value;
2221         struct hda_spdif_out *spdif;
2222
2223         if (WARN_ON(codec->spdif_out.used <= idx))
2224                 return -EINVAL;
2225         mutex_lock(&codec->spdif_mutex);
2226         spdif = snd_array_elem(&codec->spdif_out, idx);
2227         ucontrol->value.iec958.status[0] = spdif->status & 0xff;
2228         ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
2229         ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
2230         ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
2231         mutex_unlock(&codec->spdif_mutex);
2232
2233         return 0;
2234 }
2235
2236 /* convert from SPDIF status bits to HDA SPDIF bits
2237  * bit 0 (DigEn) is always set zero (to be filled later)
2238  */
2239 static unsigned short convert_from_spdif_status(unsigned int sbits)
2240 {
2241         unsigned short val = 0;
2242
2243         if (sbits & IEC958_AES0_PROFESSIONAL)
2244                 val |= AC_DIG1_PROFESSIONAL;
2245         if (sbits & IEC958_AES0_NONAUDIO)
2246                 val |= AC_DIG1_NONAUDIO;
2247         if (sbits & IEC958_AES0_PROFESSIONAL) {
2248                 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2249                     IEC958_AES0_PRO_EMPHASIS_5015)
2250                         val |= AC_DIG1_EMPHASIS;
2251         } else {
2252                 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2253                     IEC958_AES0_CON_EMPHASIS_5015)
2254                         val |= AC_DIG1_EMPHASIS;
2255                 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2256                         val |= AC_DIG1_COPYRIGHT;
2257                 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
2258                         val |= AC_DIG1_LEVEL;
2259                 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2260         }
2261         return val;
2262 }
2263
2264 /* convert to SPDIF status bits from HDA SPDIF bits
2265  */
2266 static unsigned int convert_to_spdif_status(unsigned short val)
2267 {
2268         unsigned int sbits = 0;
2269
2270         if (val & AC_DIG1_NONAUDIO)
2271                 sbits |= IEC958_AES0_NONAUDIO;
2272         if (val & AC_DIG1_PROFESSIONAL)
2273                 sbits |= IEC958_AES0_PROFESSIONAL;
2274         if (sbits & IEC958_AES0_PROFESSIONAL) {
2275                 if (val & AC_DIG1_EMPHASIS)
2276                         sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2277         } else {
2278                 if (val & AC_DIG1_EMPHASIS)
2279                         sbits |= IEC958_AES0_CON_EMPHASIS_5015;
2280                 if (!(val & AC_DIG1_COPYRIGHT))
2281                         sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
2282                 if (val & AC_DIG1_LEVEL)
2283                         sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2284                 sbits |= val & (0x7f << 8);
2285         }
2286         return sbits;
2287 }
2288
2289 /* set digital convert verbs both for the given NID and its slaves */
2290 static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
2291                         int mask, int val)
2292 {
2293         const hda_nid_t *d;
2294
2295         snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1,
2296                                mask, val);
2297         d = codec->slave_dig_outs;
2298         if (!d)
2299                 return;
2300         for (; *d; d++)
2301                 snd_hdac_regmap_update(&codec->core, *d,
2302                                        AC_VERB_SET_DIGI_CONVERT_1, mask, val);
2303 }
2304
2305 static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2306                                        int dig1, int dig2)
2307 {
2308         unsigned int mask = 0;
2309         unsigned int val = 0;
2310
2311         if (dig1 != -1) {
2312                 mask |= 0xff;
2313                 val = dig1;
2314         }
2315         if (dig2 != -1) {
2316                 mask |= 0xff00;
2317                 val |= dig2 << 8;
2318         }
2319         set_dig_out(codec, nid, mask, val);
2320 }
2321
2322 static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2323                                      struct snd_ctl_elem_value *ucontrol)
2324 {
2325         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2326         int idx = kcontrol->private_value;
2327         struct hda_spdif_out *spdif;
2328         hda_nid_t nid;
2329         unsigned short val;
2330         int change;
2331
2332         if (WARN_ON(codec->spdif_out.used <= idx))
2333                 return -EINVAL;
2334         mutex_lock(&codec->spdif_mutex);
2335         spdif = snd_array_elem(&codec->spdif_out, idx);
2336         nid = spdif->nid;
2337         spdif->status = ucontrol->value.iec958.status[0] |
2338                 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2339                 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2340                 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
2341         val = convert_from_spdif_status(spdif->status);
2342         val |= spdif->ctls & 1;
2343         change = spdif->ctls != val;
2344         spdif->ctls = val;
2345         if (change && nid != (u16)-1)
2346                 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
2347         mutex_unlock(&codec->spdif_mutex);
2348         return change;
2349 }
2350
2351 #define snd_hda_spdif_out_switch_info   snd_ctl_boolean_mono_info
2352
2353 static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2354                                         struct snd_ctl_elem_value *ucontrol)
2355 {
2356         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2357         int idx = kcontrol->private_value;
2358         struct hda_spdif_out *spdif;
2359
2360         if (WARN_ON(codec->spdif_out.used <= idx))
2361                 return -EINVAL;
2362         mutex_lock(&codec->spdif_mutex);
2363         spdif = snd_array_elem(&codec->spdif_out, idx);
2364         ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
2365         mutex_unlock(&codec->spdif_mutex);
2366         return 0;
2367 }
2368
2369 static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
2370                                   int dig1, int dig2)
2371 {
2372         set_dig_out_convert(codec, nid, dig1, dig2);
2373         /* unmute amp switch (if any) */
2374         if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2375             (dig1 & AC_DIG1_ENABLE))
2376                 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2377                                             HDA_AMP_MUTE, 0);
2378 }
2379
2380 static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2381                                         struct snd_ctl_elem_value *ucontrol)
2382 {
2383         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2384         int idx = kcontrol->private_value;
2385         struct hda_spdif_out *spdif;
2386         hda_nid_t nid;
2387         unsigned short val;
2388         int change;
2389
2390         if (WARN_ON(codec->spdif_out.used <= idx))
2391                 return -EINVAL;
2392         mutex_lock(&codec->spdif_mutex);
2393         spdif = snd_array_elem(&codec->spdif_out, idx);
2394         nid = spdif->nid;
2395         val = spdif->ctls & ~AC_DIG1_ENABLE;
2396         if (ucontrol->value.integer.value[0])
2397                 val |= AC_DIG1_ENABLE;
2398         change = spdif->ctls != val;
2399         spdif->ctls = val;
2400         if (change && nid != (u16)-1)
2401                 set_spdif_ctls(codec, nid, val & 0xff, -1);
2402         mutex_unlock(&codec->spdif_mutex);
2403         return change;
2404 }
2405
2406 static struct snd_kcontrol_new dig_mixes[] = {
2407         {
2408                 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2409                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2410                 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
2411                 .info = snd_hda_spdif_mask_info,
2412                 .get = snd_hda_spdif_cmask_get,
2413         },
2414         {
2415                 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2416                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2417                 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
2418                 .info = snd_hda_spdif_mask_info,
2419                 .get = snd_hda_spdif_pmask_get,
2420         },
2421         {
2422                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2423                 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
2424                 .info = snd_hda_spdif_mask_info,
2425                 .get = snd_hda_spdif_default_get,
2426                 .put = snd_hda_spdif_default_put,
2427         },
2428         {
2429                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2430                 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
2431                 .info = snd_hda_spdif_out_switch_info,
2432                 .get = snd_hda_spdif_out_switch_get,
2433                 .put = snd_hda_spdif_out_switch_put,
2434         },
2435         { } /* end */
2436 };
2437
2438 /**
2439  * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
2440  * @codec: the HDA codec
2441  * @associated_nid: NID that new ctls associated with
2442  * @cvt_nid: converter NID
2443  * @type: HDA_PCM_TYPE_*
2444  * Creates controls related with the digital output.
2445  * Called from each patch supporting the digital out.
2446  *
2447  * Returns 0 if successful, or a negative error code.
2448  */
2449 int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
2450                                 hda_nid_t associated_nid,
2451                                 hda_nid_t cvt_nid,
2452                                 int type)
2453 {
2454         int err;
2455         struct snd_kcontrol *kctl;
2456         struct snd_kcontrol_new *dig_mix;
2457         int idx = 0;
2458         int val = 0;
2459         const int spdif_index = 16;
2460         struct hda_spdif_out *spdif;
2461         struct hda_bus *bus = codec->bus;
2462
2463         if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
2464             type == HDA_PCM_TYPE_SPDIF) {
2465                 idx = spdif_index;
2466         } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
2467                    type == HDA_PCM_TYPE_HDMI) {
2468                 /* suppose a single SPDIF device */
2469                 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2470                         kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
2471                         if (!kctl)
2472                                 break;
2473                         kctl->id.index = spdif_index;
2474                 }
2475                 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
2476         }
2477         if (!bus->primary_dig_out_type)
2478                 bus->primary_dig_out_type = type;
2479
2480         idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
2481         if (idx < 0) {
2482                 codec_err(codec, "too many IEC958 outputs\n");
2483                 return -EBUSY;
2484         }
2485         spdif = snd_array_new(&codec->spdif_out);
2486         if (!spdif)
2487                 return -ENOMEM;
2488         for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2489                 kctl = snd_ctl_new1(dig_mix, codec);
2490                 if (!kctl)
2491                         return -ENOMEM;
2492                 kctl->id.index = idx;
2493                 kctl->private_value = codec->spdif_out.used - 1;
2494                 err = snd_hda_ctl_add(codec, associated_nid, kctl);
2495                 if (err < 0)
2496                         return err;
2497         }
2498         spdif->nid = cvt_nid;
2499         snd_hdac_regmap_read(&codec->core, cvt_nid,
2500                              AC_VERB_GET_DIGI_CONVERT_1, &val);
2501         spdif->ctls = val;
2502         spdif->status = convert_to_spdif_status(spdif->ctls);
2503         return 0;
2504 }
2505 EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
2506
2507 /**
2508  * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
2509  * @codec: the HDA codec
2510  * @nid: widget NID
2511  *
2512  * call within spdif_mutex lock
2513  */
2514 struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
2515                                                hda_nid_t nid)
2516 {
2517         struct hda_spdif_out *spdif;
2518         int i;
2519
2520         snd_array_for_each(&codec->spdif_out, i, spdif) {
2521                 if (spdif->nid == nid)
2522                         return spdif;
2523         }
2524         return NULL;
2525 }
2526 EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
2527
2528 /**
2529  * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
2530  * @codec: the HDA codec
2531  * @idx: the SPDIF ctl index
2532  *
2533  * Unassign the widget from the given SPDIF control.
2534  */
2535 void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
2536 {
2537         struct hda_spdif_out *spdif;
2538
2539         if (WARN_ON(codec->spdif_out.used <= idx))
2540                 return;
2541         mutex_lock(&codec->spdif_mutex);
2542         spdif = snd_array_elem(&codec->spdif_out, idx);
2543         spdif->nid = (u16)-1;
2544         mutex_unlock(&codec->spdif_mutex);
2545 }
2546 EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
2547
2548 /**
2549  * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
2550  * @codec: the HDA codec
2551  * @idx: the SPDIF ctl idx
2552  * @nid: widget NID
2553  *
2554  * Assign the widget to the SPDIF control with the given index.
2555  */
2556 void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
2557 {
2558         struct hda_spdif_out *spdif;
2559         unsigned short val;
2560
2561         if (WARN_ON(codec->spdif_out.used <= idx))
2562                 return;
2563         mutex_lock(&codec->spdif_mutex);
2564         spdif = snd_array_elem(&codec->spdif_out, idx);
2565         if (spdif->nid != nid) {
2566                 spdif->nid = nid;
2567                 val = spdif->ctls;
2568                 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
2569         }
2570         mutex_unlock(&codec->spdif_mutex);
2571 }
2572 EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
2573
2574 /*
2575  * SPDIF sharing with analog output
2576  */
2577 static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2578                               struct snd_ctl_elem_value *ucontrol)
2579 {
2580         struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2581         ucontrol->value.integer.value[0] = mout->share_spdif;
2582         return 0;
2583 }
2584
2585 static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2586                               struct snd_ctl_elem_value *ucontrol)
2587 {
2588         struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2589         mout->share_spdif = !!ucontrol->value.integer.value[0];
2590         return 0;
2591 }
2592
2593 static const struct snd_kcontrol_new spdif_share_sw = {
2594         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2595         .name = "IEC958 Default PCM Playback Switch",
2596         .info = snd_ctl_boolean_mono_info,
2597         .get = spdif_share_sw_get,
2598         .put = spdif_share_sw_put,
2599 };
2600
2601 /**
2602  * snd_hda_create_spdif_share_sw - create Default PCM switch
2603  * @codec: the HDA codec
2604  * @mout: multi-out instance
2605  */
2606 int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2607                                   struct hda_multi_out *mout)
2608 {
2609         struct snd_kcontrol *kctl;
2610
2611         if (!mout->dig_out_nid)
2612                 return 0;
2613
2614         kctl = snd_ctl_new1(&spdif_share_sw, mout);
2615         if (!kctl)
2616                 return -ENOMEM;
2617         /* ATTENTION: here mout is passed as private_data, instead of codec */
2618         return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
2619 }
2620 EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
2621
2622 /*
2623  * SPDIF input
2624  */
2625
2626 #define snd_hda_spdif_in_switch_info    snd_hda_spdif_out_switch_info
2627
2628 static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2629                                        struct snd_ctl_elem_value *ucontrol)
2630 {
2631         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2632
2633         ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2634         return 0;
2635 }
2636
2637 static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2638                                        struct snd_ctl_elem_value *ucontrol)
2639 {
2640         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2641         hda_nid_t nid = kcontrol->private_value;
2642         unsigned int val = !!ucontrol->value.integer.value[0];
2643         int change;
2644
2645         mutex_lock(&codec->spdif_mutex);
2646         change = codec->spdif_in_enable != val;
2647         if (change) {
2648                 codec->spdif_in_enable = val;
2649                 snd_hdac_regmap_write(&codec->core, nid,
2650                                       AC_VERB_SET_DIGI_CONVERT_1, val);
2651         }
2652         mutex_unlock(&codec->spdif_mutex);
2653         return change;
2654 }
2655
2656 static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2657                                        struct snd_ctl_elem_value *ucontrol)
2658 {
2659         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2660         hda_nid_t nid = kcontrol->private_value;
2661         unsigned int val;
2662         unsigned int sbits;
2663
2664         snd_hdac_regmap_read(&codec->core, nid,
2665                              AC_VERB_GET_DIGI_CONVERT_1, &val);
2666         sbits = convert_to_spdif_status(val);
2667         ucontrol->value.iec958.status[0] = sbits;
2668         ucontrol->value.iec958.status[1] = sbits >> 8;
2669         ucontrol->value.iec958.status[2] = sbits >> 16;
2670         ucontrol->value.iec958.status[3] = sbits >> 24;
2671         return 0;
2672 }
2673
2674 static struct snd_kcontrol_new dig_in_ctls[] = {
2675         {
2676                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2677                 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
2678                 .info = snd_hda_spdif_in_switch_info,
2679                 .get = snd_hda_spdif_in_switch_get,
2680                 .put = snd_hda_spdif_in_switch_put,
2681         },
2682         {
2683                 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2684                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2685                 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
2686                 .info = snd_hda_spdif_mask_info,
2687                 .get = snd_hda_spdif_in_status_get,
2688         },
2689         { } /* end */
2690 };
2691
2692 /**
2693  * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2694  * @codec: the HDA codec
2695  * @nid: audio in widget NID
2696  *
2697  * Creates controls related with the SPDIF input.
2698  * Called from each patch supporting the SPDIF in.
2699  *
2700  * Returns 0 if successful, or a negative error code.
2701  */
2702 int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
2703 {
2704         int err;
2705         struct snd_kcontrol *kctl;
2706         struct snd_kcontrol_new *dig_mix;
2707         int idx;
2708
2709         idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
2710         if (idx < 0) {
2711                 codec_err(codec, "too many IEC958 inputs\n");
2712                 return -EBUSY;
2713         }
2714         for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2715                 kctl = snd_ctl_new1(dig_mix, codec);
2716                 if (!kctl)
2717                         return -ENOMEM;
2718                 kctl->private_value = nid;
2719                 err = snd_hda_ctl_add(codec, nid, kctl);
2720                 if (err < 0)
2721                         return err;
2722         }
2723         codec->spdif_in_enable =
2724                 snd_hda_codec_read(codec, nid, 0,
2725                                    AC_VERB_GET_DIGI_CONVERT_1, 0) &
2726                 AC_DIG1_ENABLE;
2727         return 0;
2728 }
2729 EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
2730
2731 /**
2732  * snd_hda_codec_set_power_to_all - Set the power state to all widgets
2733  * @codec: the HDA codec
2734  * @fg: function group (not used now)
2735  * @power_state: the power state to set (AC_PWRST_*)
2736  *
2737  * Set the given power state to all widgets that have the power control.
2738  * If the codec has power_filter set, it evaluates the power state and
2739  * filter out if it's unchanged as D3.
2740  */
2741 void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
2742                                     unsigned int power_state)
2743 {
2744         hda_nid_t nid;
2745
2746         for_each_hda_codec_node(nid, codec) {
2747                 unsigned int wcaps = get_wcaps(codec, nid);
2748                 unsigned int state = power_state;
2749                 if (!(wcaps & AC_WCAP_POWER))
2750                         continue;
2751                 if (codec->power_filter) {
2752                         state = codec->power_filter(codec, nid, power_state);
2753                         if (state != power_state && power_state == AC_PWRST_D3)
2754                                 continue;
2755                 }
2756                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
2757                                     state);
2758         }
2759 }
2760 EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
2761
2762 /**
2763  * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
2764  * @codec: the HDA codec
2765  * @nid: widget NID
2766  * @power_state: power state to evalue
2767  *
2768  * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
2769  * This can be used a codec power_filter callback.
2770  */
2771 unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
2772                                              hda_nid_t nid,
2773                                              unsigned int power_state)
2774 {
2775         if (nid == codec->core.afg || nid == codec->core.mfg)
2776                 return power_state;
2777         if (power_state == AC_PWRST_D3 &&
2778             get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
2779             (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
2780                 int eapd = snd_hda_codec_read(codec, nid, 0,
2781                                               AC_VERB_GET_EAPD_BTLENABLE, 0);
2782                 if (eapd & 0x02)
2783                         return AC_PWRST_D0;
2784         }
2785         return power_state;
2786 }
2787 EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
2788
2789 /*
2790  * set power state of the codec, and return the power state
2791  */
2792 static unsigned int hda_set_power_state(struct hda_codec *codec,
2793                                         unsigned int power_state)
2794 {
2795         hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
2796         int count;
2797         unsigned int state;
2798         int flags = 0;
2799
2800         /* this delay seems necessary to avoid click noise at power-down */
2801         if (power_state == AC_PWRST_D3) {
2802                 if (codec->depop_delay < 0)
2803                         msleep(codec_has_epss(codec) ? 10 : 100);
2804                 else if (codec->depop_delay > 0)
2805                         msleep(codec->depop_delay);
2806                 flags = HDA_RW_NO_RESPONSE_FALLBACK;
2807         }
2808
2809         /* repeat power states setting at most 10 times*/
2810         for (count = 0; count < 10; count++) {
2811                 if (codec->patch_ops.set_power_state)
2812                         codec->patch_ops.set_power_state(codec, fg,
2813                                                          power_state);
2814                 else {
2815                         state = power_state;
2816                         if (codec->power_filter)
2817                                 state = codec->power_filter(codec, fg, state);
2818                         if (state == power_state || power_state != AC_PWRST_D3)
2819                                 snd_hda_codec_read(codec, fg, flags,
2820                                                    AC_VERB_SET_POWER_STATE,
2821                                                    state);
2822                         snd_hda_codec_set_power_to_all(codec, fg, power_state);
2823                 }
2824                 state = snd_hda_sync_power_state(codec, fg, power_state);
2825                 if (!(state & AC_PWRST_ERROR))
2826                         break;
2827         }
2828
2829         return state;
2830 }
2831
2832 /* sync power states of all widgets;
2833  * this is called at the end of codec parsing
2834  */
2835 static void sync_power_up_states(struct hda_codec *codec)
2836 {
2837         hda_nid_t nid;
2838
2839         /* don't care if no filter is used */
2840         if (!codec->power_filter)
2841                 return;
2842
2843         for_each_hda_codec_node(nid, codec) {
2844                 unsigned int wcaps = get_wcaps(codec, nid);
2845                 unsigned int target;
2846                 if (!(wcaps & AC_WCAP_POWER))
2847                         continue;
2848                 target = codec->power_filter(codec, nid, AC_PWRST_D0);
2849                 if (target == AC_PWRST_D0)
2850                         continue;
2851                 if (!snd_hda_check_power_state(codec, nid, target))
2852                         snd_hda_codec_write(codec, nid, 0,
2853                                             AC_VERB_SET_POWER_STATE, target);
2854         }
2855 }
2856
2857 #ifdef CONFIG_SND_HDA_RECONFIG
2858 /* execute additional init verbs */
2859 static void hda_exec_init_verbs(struct hda_codec *codec)
2860 {
2861         if (codec->init_verbs.list)
2862                 snd_hda_sequence_write(codec, codec->init_verbs.list);
2863 }
2864 #else
2865 static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
2866 #endif
2867
2868 #ifdef CONFIG_PM
2869 /* update the power on/off account with the current jiffies */
2870 static void update_power_acct(struct hda_codec *codec, bool on)
2871 {
2872         unsigned long delta = jiffies - codec->power_jiffies;
2873
2874         if (on)
2875                 codec->power_on_acct += delta;
2876         else
2877                 codec->power_off_acct += delta;
2878         codec->power_jiffies += delta;
2879 }
2880
2881 void snd_hda_update_power_acct(struct hda_codec *codec)
2882 {
2883         update_power_acct(codec, hda_codec_is_power_on(codec));
2884 }
2885
2886 /*
2887  * call suspend and power-down; used both from PM and power-save
2888  * this function returns the power state in the end
2889  */
2890 static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
2891 {
2892         unsigned int state;
2893
2894         snd_hdac_enter_pm(&codec->core);
2895         if (codec->patch_ops.suspend)
2896                 codec->patch_ops.suspend(codec);
2897         hda_cleanup_all_streams(codec);
2898         state = hda_set_power_state(codec, AC_PWRST_D3);
2899         update_power_acct(codec, true);
2900         snd_hdac_leave_pm(&codec->core);
2901         return state;
2902 }
2903
2904 /*
2905  * kick up codec; used both from PM and power-save
2906  */
2907 static void hda_call_codec_resume(struct hda_codec *codec)
2908 {
2909         snd_hdac_enter_pm(&codec->core);
2910         if (codec->core.regmap)
2911                 regcache_mark_dirty(codec->core.regmap);
2912
2913         codec->power_jiffies = jiffies;
2914
2915         hda_set_power_state(codec, AC_PWRST_D0);
2916         restore_shutup_pins(codec);
2917         hda_exec_init_verbs(codec);
2918         snd_hda_jack_set_dirty_all(codec);
2919         if (codec->patch_ops.resume)
2920                 codec->patch_ops.resume(codec);
2921         else {
2922                 if (codec->patch_ops.init)
2923                         codec->patch_ops.init(codec);
2924                 snd_hda_regmap_sync(codec);
2925         }
2926
2927         if (codec->jackpoll_interval)
2928                 hda_jackpoll_work(&codec->jackpoll_work.work);
2929         else
2930                 snd_hda_jack_report_sync(codec);
2931         codec->core.dev.power.power_state = PMSG_ON;
2932         snd_hdac_leave_pm(&codec->core);
2933 }
2934
2935 static int hda_codec_runtime_suspend(struct device *dev)
2936 {
2937         struct hda_codec *codec = dev_to_hda_codec(dev);
2938         unsigned int state;
2939
2940         /* Nothing to do if card registration fails and the component driver never probes */
2941         if (!codec->card)
2942                 return 0;
2943
2944         cancel_delayed_work_sync(&codec->jackpoll_work);
2945         state = hda_call_codec_suspend(codec);
2946         if (codec->link_down_at_suspend ||
2947             (codec_has_clkstop(codec) && codec_has_epss(codec) &&
2948              (state & AC_PWRST_CLK_STOP_OK)))
2949                 snd_hdac_codec_link_down(&codec->core);
2950         codec_display_power(codec, false);
2951         return 0;
2952 }
2953
2954 static int hda_codec_runtime_resume(struct device *dev)
2955 {
2956         struct hda_codec *codec = dev_to_hda_codec(dev);
2957
2958         /* Nothing to do if card registration fails and the component driver never probes */
2959         if (!codec->card)
2960                 return 0;
2961
2962         codec_display_power(codec, true);
2963         snd_hdac_codec_link_up(&codec->core);
2964         hda_call_codec_resume(codec);
2965         pm_runtime_mark_last_busy(dev);
2966         return 0;
2967 }
2968 #endif /* CONFIG_PM */
2969
2970 #ifdef CONFIG_PM_SLEEP
2971 static int hda_codec_force_resume(struct device *dev)
2972 {
2973         struct hda_codec *codec = dev_to_hda_codec(dev);
2974         int ret;
2975
2976         ret = pm_runtime_force_resume(dev);
2977         /* schedule jackpoll work for jack detection update */
2978         if (codec->jackpoll_interval ||
2979             (pm_runtime_suspended(dev) && hda_codec_need_resume(codec)))
2980                 schedule_delayed_work(&codec->jackpoll_work,
2981                                       codec->jackpoll_interval);
2982         return ret;
2983 }
2984
2985 static int hda_codec_pm_suspend(struct device *dev)
2986 {
2987         dev->power.power_state = PMSG_SUSPEND;
2988         return pm_runtime_force_suspend(dev);
2989 }
2990
2991 static int hda_codec_pm_resume(struct device *dev)
2992 {
2993         dev->power.power_state = PMSG_RESUME;
2994         return hda_codec_force_resume(dev);
2995 }
2996
2997 static int hda_codec_pm_freeze(struct device *dev)
2998 {
2999         dev->power.power_state = PMSG_FREEZE;
3000         return pm_runtime_force_suspend(dev);
3001 }
3002
3003 static int hda_codec_pm_thaw(struct device *dev)
3004 {
3005         dev->power.power_state = PMSG_THAW;
3006         return hda_codec_force_resume(dev);
3007 }
3008
3009 static int hda_codec_pm_restore(struct device *dev)
3010 {
3011         dev->power.power_state = PMSG_RESTORE;
3012         return hda_codec_force_resume(dev);
3013 }
3014 #endif /* CONFIG_PM_SLEEP */
3015
3016 /* referred in hda_bind.c */
3017 const struct dev_pm_ops hda_codec_driver_pm = {
3018 #ifdef CONFIG_PM_SLEEP
3019         .suspend = hda_codec_pm_suspend,
3020         .resume = hda_codec_pm_resume,
3021         .freeze = hda_codec_pm_freeze,
3022         .thaw = hda_codec_pm_thaw,
3023         .poweroff = hda_codec_pm_suspend,
3024         .restore = hda_codec_pm_restore,
3025 #endif /* CONFIG_PM_SLEEP */
3026         SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
3027                            NULL)
3028 };
3029
3030 /*
3031  * add standard channel maps if not specified
3032  */
3033 static int add_std_chmaps(struct hda_codec *codec)
3034 {
3035         struct hda_pcm *pcm;
3036         int str, err;
3037
3038         list_for_each_entry(pcm, &codec->pcm_list_head, list) {
3039                 for (str = 0; str < 2; str++) {
3040                         struct hda_pcm_stream *hinfo = &pcm->stream[str];
3041                         struct snd_pcm_chmap *chmap;
3042                         const struct snd_pcm_chmap_elem *elem;
3043
3044                         if (!pcm->pcm || pcm->own_chmap || !hinfo->substreams)
3045                                 continue;
3046                         elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
3047                         err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
3048                                                      hinfo->channels_max,
3049                                                      0, &chmap);
3050                         if (err < 0)
3051                                 return err;
3052                         chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3053                 }
3054         }
3055         return 0;
3056 }
3057
3058 /* default channel maps for 2.1 speakers;
3059  * since HD-audio supports only stereo, odd number channels are omitted
3060  */
3061 const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3062         { .channels = 2,
3063           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3064         { .channels = 4,
3065           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3066                    SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3067         { }
3068 };
3069 EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
3070
3071 int snd_hda_codec_build_controls(struct hda_codec *codec)
3072 {
3073         int err = 0;
3074         hda_exec_init_verbs(codec);
3075         /* continue to initialize... */
3076         if (codec->patch_ops.init)
3077                 err = codec->patch_ops.init(codec);
3078         if (!err && codec->patch_ops.build_controls)
3079                 err = codec->patch_ops.build_controls(codec);
3080         if (err < 0)
3081                 return err;
3082
3083         /* we create chmaps here instead of build_pcms */
3084         err = add_std_chmaps(codec);
3085         if (err < 0)
3086                 return err;
3087
3088         if (codec->jackpoll_interval)
3089                 hda_jackpoll_work(&codec->jackpoll_work.work);
3090         else
3091                 snd_hda_jack_report_sync(codec); /* call at the last init point */
3092         sync_power_up_states(codec);
3093         return 0;
3094 }
3095 EXPORT_SYMBOL_GPL(snd_hda_codec_build_controls);
3096
3097 /*
3098  * PCM stuff
3099  */
3100 static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
3101                                       struct hda_codec *codec,
3102                                       struct snd_pcm_substream *substream)
3103 {
3104         return 0;
3105 }
3106
3107 static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
3108                                    struct hda_codec *codec,
3109                                    unsigned int stream_tag,
3110                                    unsigned int format,
3111                                    struct snd_pcm_substream *substream)
3112 {
3113         snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
3114         return 0;
3115 }
3116
3117 static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
3118                                    struct hda_codec *codec,
3119                                    struct snd_pcm_substream *substream)
3120 {
3121         snd_hda_codec_cleanup_stream(codec, hinfo->nid);
3122         return 0;
3123 }
3124
3125 static int set_pcm_default_values(struct hda_codec *codec,
3126                                   struct hda_pcm_stream *info)
3127 {
3128         int err;
3129
3130         /* query support PCM information from the given NID */
3131         if (info->nid && (!info->rates || !info->formats)) {
3132                 err = snd_hda_query_supported_pcm(codec, info->nid,
3133                                 info->rates ? NULL : &info->rates,
3134                                 info->formats ? NULL : &info->formats,
3135                                 info->maxbps ? NULL : &info->maxbps);
3136                 if (err < 0)
3137                         return err;
3138         }
3139         if (info->ops.open == NULL)
3140                 info->ops.open = hda_pcm_default_open_close;
3141         if (info->ops.close == NULL)
3142                 info->ops.close = hda_pcm_default_open_close;
3143         if (info->ops.prepare == NULL) {
3144                 if (snd_BUG_ON(!info->nid))
3145                         return -EINVAL;
3146                 info->ops.prepare = hda_pcm_default_prepare;
3147         }
3148         if (info->ops.cleanup == NULL) {
3149                 if (snd_BUG_ON(!info->nid))
3150                         return -EINVAL;
3151                 info->ops.cleanup = hda_pcm_default_cleanup;
3152         }
3153         return 0;
3154 }
3155
3156 /*
3157  * codec prepare/cleanup entries
3158  */
3159 /**
3160  * snd_hda_codec_prepare - Prepare a stream
3161  * @codec: the HDA codec
3162  * @hinfo: PCM information
3163  * @stream: stream tag to assign
3164  * @format: format id to assign
3165  * @substream: PCM substream to assign
3166  *
3167  * Calls the prepare callback set by the codec with the given arguments.
3168  * Clean up the inactive streams when successful.
3169  */
3170 int snd_hda_codec_prepare(struct hda_codec *codec,
3171                           struct hda_pcm_stream *hinfo,
3172                           unsigned int stream,
3173                           unsigned int format,
3174                           struct snd_pcm_substream *substream)
3175 {
3176         int ret;
3177         mutex_lock(&codec->bus->prepare_mutex);
3178         if (hinfo->ops.prepare)
3179                 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
3180                                          substream);
3181         else
3182                 ret = -ENODEV;
3183         if (ret >= 0)
3184                 purify_inactive_streams(codec);
3185         mutex_unlock(&codec->bus->prepare_mutex);
3186         return ret;
3187 }
3188 EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
3189
3190 /**
3191  * snd_hda_codec_cleanup - Prepare a stream
3192  * @codec: the HDA codec
3193  * @hinfo: PCM information
3194  * @substream: PCM substream
3195  *
3196  * Calls the cleanup callback set by the codec with the given arguments.
3197  */
3198 void snd_hda_codec_cleanup(struct hda_codec *codec,
3199                            struct hda_pcm_stream *hinfo,
3200                            struct snd_pcm_substream *substream)
3201 {
3202         mutex_lock(&codec->bus->prepare_mutex);
3203         if (hinfo->ops.cleanup)
3204                 hinfo->ops.cleanup(hinfo, codec, substream);
3205         mutex_unlock(&codec->bus->prepare_mutex);
3206 }
3207 EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
3208
3209 /* global */
3210 const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
3211         "Audio", "SPDIF", "HDMI", "Modem"
3212 };
3213
3214 /*
3215  * get the empty PCM device number to assign
3216  */
3217 static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
3218 {
3219         /* audio device indices; not linear to keep compatibility */
3220         /* assigned to static slots up to dev#10; if more needed, assign
3221          * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
3222          */
3223         static int audio_idx[HDA_PCM_NTYPES][5] = {
3224                 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
3225                 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
3226                 [HDA_PCM_TYPE_HDMI]  = { 3, 7, 8, 9, -1 },
3227                 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
3228         };
3229         int i;
3230
3231         if (type >= HDA_PCM_NTYPES) {
3232                 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
3233                 return -EINVAL;
3234         }
3235
3236         for (i = 0; audio_idx[type][i] >= 0; i++) {
3237 #ifndef CONFIG_SND_DYNAMIC_MINORS
3238                 if (audio_idx[type][i] >= 8)
3239                         break;
3240 #endif
3241                 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
3242                         return audio_idx[type][i];
3243         }
3244
3245 #ifdef CONFIG_SND_DYNAMIC_MINORS
3246         /* non-fixed slots starting from 10 */
3247         for (i = 10; i < 32; i++) {
3248                 if (!test_and_set_bit(i, bus->pcm_dev_bits))
3249                         return i;
3250         }
3251 #endif
3252
3253         dev_warn(bus->card->dev, "Too many %s devices\n",
3254                 snd_hda_pcm_type_name[type]);
3255 #ifndef CONFIG_SND_DYNAMIC_MINORS
3256         dev_warn(bus->card->dev,
3257                  "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
3258 #endif
3259         return -EAGAIN;
3260 }
3261
3262 /* call build_pcms ops of the given codec and set up the default parameters */
3263 int snd_hda_codec_parse_pcms(struct hda_codec *codec)
3264 {
3265         struct hda_pcm *cpcm;
3266         int err;
3267
3268         if (!list_empty(&codec->pcm_list_head))
3269                 return 0; /* already parsed */
3270
3271         if (!codec->patch_ops.build_pcms)
3272                 return 0;
3273
3274         err = codec->patch_ops.build_pcms(codec);
3275         if (err < 0) {
3276                 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
3277                           codec->core.addr, err);
3278                 return err;
3279         }
3280
3281         list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
3282                 int stream;
3283
3284                 for (stream = 0; stream < 2; stream++) {
3285                         struct hda_pcm_stream *info = &cpcm->stream[stream];
3286
3287                         if (!info->substreams)
3288                                 continue;
3289                         err = set_pcm_default_values(codec, info);
3290                         if (err < 0) {
3291                                 codec_warn(codec,
3292                                            "fail to setup default for PCM %s\n",
3293                                            cpcm->name);
3294                                 return err;
3295                         }
3296                 }
3297         }
3298
3299         return 0;
3300 }
3301 EXPORT_SYMBOL_GPL(snd_hda_codec_parse_pcms);
3302
3303 /* assign all PCMs of the given codec */
3304 int snd_hda_codec_build_pcms(struct hda_codec *codec)
3305 {
3306         struct hda_bus *bus = codec->bus;
3307         struct hda_pcm *cpcm;
3308         int dev, err;
3309
3310         err = snd_hda_codec_parse_pcms(codec);
3311         if (err < 0)
3312                 return err;
3313
3314         /* attach a new PCM streams */
3315         list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
3316                 if (cpcm->pcm)
3317                         continue; /* already attached */
3318                 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
3319                         continue; /* no substreams assigned */
3320
3321                 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
3322                 if (dev < 0) {
3323                         cpcm->device = SNDRV_PCM_INVALID_DEVICE;
3324                         continue; /* no fatal error */
3325                 }
3326                 cpcm->device = dev;
3327                 err =  snd_hda_attach_pcm_stream(bus, codec, cpcm);
3328                 if (err < 0) {
3329                         codec_err(codec,
3330                                   "cannot attach PCM stream %d for codec #%d\n",
3331                                   dev, codec->core.addr);
3332                         continue; /* no fatal error */
3333                 }
3334         }
3335
3336         return 0;
3337 }
3338
3339 /**
3340  * snd_hda_add_new_ctls - create controls from the array
3341  * @codec: the HDA codec
3342  * @knew: the array of struct snd_kcontrol_new
3343  *
3344  * This helper function creates and add new controls in the given array.
3345  * The array must be terminated with an empty entry as terminator.
3346  *
3347  * Returns 0 if successful, or a negative error code.
3348  */
3349 int snd_hda_add_new_ctls(struct hda_codec *codec,
3350                          const struct snd_kcontrol_new *knew)
3351 {
3352         int err;
3353
3354         for (; knew->name; knew++) {
3355                 struct snd_kcontrol *kctl;
3356                 int addr = 0, idx = 0;
3357                 if (knew->iface == (__force snd_ctl_elem_iface_t)-1)
3358                         continue; /* skip this codec private value */
3359                 for (;;) {
3360                         kctl = snd_ctl_new1(knew, codec);
3361                         if (!kctl)
3362                                 return -ENOMEM;
3363                         if (addr > 0)
3364                                 kctl->id.device = addr;
3365                         if (idx > 0)
3366                                 kctl->id.index = idx;
3367                         err = snd_hda_ctl_add(codec, 0, kctl);
3368                         if (!err)
3369                                 break;
3370                         /* try first with another device index corresponding to
3371                          * the codec addr; if it still fails (or it's the
3372                          * primary codec), then try another control index
3373                          */
3374                         if (!addr && codec->core.addr)
3375                                 addr = codec->core.addr;
3376                         else if (!idx && !knew->index) {
3377                                 idx = find_empty_mixer_ctl_idx(codec,
3378                                                                knew->name, 0);
3379                                 if (idx <= 0)
3380                                         return err;
3381                         } else
3382                                 return err;
3383                 }
3384         }
3385         return 0;
3386 }
3387 EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
3388
3389 #ifdef CONFIG_PM
3390 static void codec_set_power_save(struct hda_codec *codec, int delay)
3391 {
3392         struct device *dev = hda_codec_dev(codec);
3393
3394         if (delay == 0 && codec->auto_runtime_pm)
3395                 delay = 3000;
3396
3397         if (delay > 0) {
3398                 pm_runtime_set_autosuspend_delay(dev, delay);
3399                 pm_runtime_use_autosuspend(dev);
3400                 pm_runtime_allow(dev);
3401                 if (!pm_runtime_suspended(dev))
3402                         pm_runtime_mark_last_busy(dev);
3403         } else {
3404                 pm_runtime_dont_use_autosuspend(dev);
3405                 pm_runtime_forbid(dev);
3406         }
3407 }
3408
3409 /**
3410  * snd_hda_set_power_save - reprogram autosuspend for the given delay
3411  * @bus: HD-audio bus
3412  * @delay: autosuspend delay in msec, 0 = off
3413  *
3414  * Synchronize the runtime PM autosuspend state from the power_save option.
3415  */
3416 void snd_hda_set_power_save(struct hda_bus *bus, int delay)
3417 {
3418         struct hda_codec *c;
3419
3420         list_for_each_codec(c, bus)
3421                 codec_set_power_save(c, delay);
3422 }
3423 EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
3424
3425 /**
3426  * snd_hda_check_amp_list_power - Check the amp list and update the power
3427  * @codec: HD-audio codec
3428  * @check: the object containing an AMP list and the status
3429  * @nid: NID to check / update
3430  *
3431  * Check whether the given NID is in the amp list.  If it's in the list,
3432  * check the current AMP status, and update the power-status according
3433  * to the mute status.
3434  *
3435  * This function is supposed to be set or called from the check_power_status
3436  * patch ops.
3437  */
3438 int snd_hda_check_amp_list_power(struct hda_codec *codec,
3439                                  struct hda_loopback_check *check,
3440                                  hda_nid_t nid)
3441 {
3442         const struct hda_amp_list *p;
3443         int ch, v;
3444
3445         if (!check->amplist)
3446                 return 0;
3447         for (p = check->amplist; p->nid; p++) {
3448                 if (p->nid == nid)
3449                         break;
3450         }
3451         if (!p->nid)
3452                 return 0; /* nothing changed */
3453
3454         for (p = check->amplist; p->nid; p++) {
3455                 for (ch = 0; ch < 2; ch++) {
3456                         v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3457                                                    p->idx);
3458                         if (!(v & HDA_AMP_MUTE) && v > 0) {
3459                                 if (!check->power_on) {
3460                                         check->power_on = 1;
3461                                         snd_hda_power_up_pm(codec);
3462                                 }
3463                                 return 1;
3464                         }
3465                 }
3466         }
3467         if (check->power_on) {
3468                 check->power_on = 0;
3469                 snd_hda_power_down_pm(codec);
3470         }
3471         return 0;
3472 }
3473 EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
3474 #endif
3475
3476 /*
3477  * input MUX helper
3478  */
3479
3480 /**
3481  * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
3482  * @imux: imux helper object
3483  * @uinfo: pointer to get/store the data
3484  */
3485 int snd_hda_input_mux_info(const struct hda_input_mux *imux,
3486                            struct snd_ctl_elem_info *uinfo)
3487 {
3488         unsigned int index;
3489
3490         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3491         uinfo->count = 1;
3492         uinfo->value.enumerated.items = imux->num_items;
3493         if (!imux->num_items)
3494                 return 0;
3495         index = uinfo->value.enumerated.item;
3496         if (index >= imux->num_items)
3497                 index = imux->num_items - 1;
3498         strcpy(uinfo->value.enumerated.name, imux->items[index].label);
3499         return 0;
3500 }
3501 EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
3502
3503 /**
3504  * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
3505  * @codec: the HDA codec
3506  * @imux: imux helper object
3507  * @ucontrol: pointer to get/store the data
3508  * @nid: input mux NID
3509  * @cur_val: pointer to get/store the current imux value
3510  */
3511 int snd_hda_input_mux_put(struct hda_codec *codec,
3512                           const struct hda_input_mux *imux,
3513                           struct snd_ctl_elem_value *ucontrol,
3514                           hda_nid_t nid,
3515                           unsigned int *cur_val)
3516 {
3517         unsigned int idx;
3518
3519         if (!imux->num_items)
3520                 return 0;
3521         idx = ucontrol->value.enumerated.item[0];
3522         if (idx >= imux->num_items)
3523                 idx = imux->num_items - 1;
3524         if (*cur_val == idx)
3525                 return 0;
3526         snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
3527                                   imux->items[idx].index);
3528         *cur_val = idx;
3529         return 1;
3530 }
3531 EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
3532
3533
3534 /**
3535  * snd_hda_enum_helper_info - Helper for simple enum ctls
3536  * @kcontrol: ctl element
3537  * @uinfo: pointer to get/store the data
3538  * @num_items: number of enum items
3539  * @texts: enum item string array
3540  *
3541  * process kcontrol info callback of a simple string enum array
3542  * when @num_items is 0 or @texts is NULL, assume a boolean enum array
3543  */
3544 int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
3545                              struct snd_ctl_elem_info *uinfo,
3546                              int num_items, const char * const *texts)
3547 {
3548         static const char * const texts_default[] = {
3549                 "Disabled", "Enabled"
3550         };
3551
3552         if (!texts || !num_items) {
3553                 num_items = 2;
3554                 texts = texts_default;
3555         }
3556
3557         return snd_ctl_enum_info(uinfo, 1, num_items, texts);
3558 }
3559 EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
3560
3561 /*
3562  * Multi-channel / digital-out PCM helper functions
3563  */
3564
3565 /* setup SPDIF output stream */
3566 static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
3567                                  unsigned int stream_tag, unsigned int format)
3568 {
3569         struct hda_spdif_out *spdif;
3570         unsigned int curr_fmt;
3571         bool reset;
3572
3573         spdif = snd_hda_spdif_out_of_nid(codec, nid);
3574         /* Add sanity check to pass klockwork check.
3575          * This should never happen.
3576          */
3577         if (WARN_ON(spdif == NULL))
3578                 return;
3579
3580         curr_fmt = snd_hda_codec_read(codec, nid, 0,
3581                                       AC_VERB_GET_STREAM_FORMAT, 0);
3582         reset = codec->spdif_status_reset &&
3583                 (spdif->ctls & AC_DIG1_ENABLE) &&
3584                 curr_fmt != format;
3585
3586         /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
3587            updated */
3588         if (reset)
3589                 set_dig_out_convert(codec, nid,
3590                                     spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
3591                                     -1);
3592         snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
3593         if (codec->slave_dig_outs) {
3594                 const hda_nid_t *d;
3595                 for (d = codec->slave_dig_outs; *d; d++)
3596                         snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
3597                                                    format);
3598         }
3599         /* turn on again (if needed) */
3600         if (reset)
3601                 set_dig_out_convert(codec, nid,
3602                                     spdif->ctls & 0xff, -1);
3603 }
3604
3605 static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
3606 {
3607         snd_hda_codec_cleanup_stream(codec, nid);
3608         if (codec->slave_dig_outs) {
3609                 const hda_nid_t *d;
3610                 for (d = codec->slave_dig_outs; *d; d++)
3611                         snd_hda_codec_cleanup_stream(codec, *d);
3612         }
3613 }
3614
3615 /**
3616  * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
3617  * @codec: the HDA codec
3618  * @mout: hda_multi_out object
3619  */
3620 int snd_hda_multi_out_dig_open(struct hda_codec *codec,
3621                                struct hda_multi_out *mout)
3622 {
3623         mutex_lock(&codec->spdif_mutex);
3624         if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
3625                 /* already opened as analog dup; reset it once */
3626                 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3627         mout->dig_out_used = HDA_DIG_EXCLUSIVE;
3628         mutex_unlock(&codec->spdif_mutex);
3629         return 0;
3630 }
3631 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
3632
3633 /**
3634  * snd_hda_multi_out_dig_prepare - prepare the digital out stream
3635  * @codec: the HDA codec
3636  * @mout: hda_multi_out object
3637  * @stream_tag: stream tag to assign
3638  * @format: format id to assign
3639  * @substream: PCM substream to assign
3640  */
3641 int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
3642                                   struct hda_multi_out *mout,
3643                                   unsigned int stream_tag,
3644                                   unsigned int format,
3645                                   struct snd_pcm_substream *substream)
3646 {
3647         mutex_lock(&codec->spdif_mutex);
3648         setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
3649         mutex_unlock(&codec->spdif_mutex);
3650         return 0;
3651 }
3652 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
3653
3654 /**
3655  * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
3656  * @codec: the HDA codec
3657  * @mout: hda_multi_out object
3658  */
3659 int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
3660                                   struct hda_multi_out *mout)
3661 {
3662         mutex_lock(&codec->spdif_mutex);
3663         cleanup_dig_out_stream(codec, mout->dig_out_nid);
3664         mutex_unlock(&codec->spdif_mutex);
3665         return 0;
3666 }
3667 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
3668
3669 /**
3670  * snd_hda_multi_out_dig_close - release the digital out stream
3671  * @codec: the HDA codec
3672  * @mout: hda_multi_out object
3673  */
3674 int snd_hda_multi_out_dig_close(struct hda_codec *codec,
3675                                 struct hda_multi_out *mout)
3676 {
3677         mutex_lock(&codec->spdif_mutex);
3678         mout->dig_out_used = 0;
3679         mutex_unlock(&codec->spdif_mutex);
3680         return 0;
3681 }
3682 EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
3683
3684 /**
3685  * snd_hda_multi_out_analog_open - open analog outputs
3686  * @codec: the HDA codec
3687  * @mout: hda_multi_out object
3688  * @substream: PCM substream to assign
3689  * @hinfo: PCM information to assign
3690  *
3691  * Open analog outputs and set up the hw-constraints.
3692  * If the digital outputs can be opened as slave, open the digital
3693  * outputs, too.
3694  */
3695 int snd_hda_multi_out_analog_open(struct hda_codec *codec,
3696                                   struct hda_multi_out *mout,
3697                                   struct snd_pcm_substream *substream,
3698                                   struct hda_pcm_stream *hinfo)
3699 {
3700         struct snd_pcm_runtime *runtime = substream->runtime;
3701         runtime->hw.channels_max = mout->max_channels;
3702         if (mout->dig_out_nid) {
3703                 if (!mout->analog_rates) {
3704                         mout->analog_rates = hinfo->rates;
3705                         mout->analog_formats = hinfo->formats;
3706                         mout->analog_maxbps = hinfo->maxbps;
3707                 } else {
3708                         runtime->hw.rates = mout->analog_rates;
3709                         runtime->hw.formats = mout->analog_formats;
3710                         hinfo->maxbps = mout->analog_maxbps;
3711                 }
3712                 if (!mout->spdif_rates) {
3713                         snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
3714                                                     &mout->spdif_rates,
3715                                                     &mout->spdif_formats,
3716                                                     &mout->spdif_maxbps);
3717                 }
3718                 mutex_lock(&codec->spdif_mutex);
3719                 if (mout->share_spdif) {
3720                         if ((runtime->hw.rates & mout->spdif_rates) &&
3721                             (runtime->hw.formats & mout->spdif_formats)) {
3722                                 runtime->hw.rates &= mout->spdif_rates;
3723                                 runtime->hw.formats &= mout->spdif_formats;
3724                                 if (mout->spdif_maxbps < hinfo->maxbps)
3725                                         hinfo->maxbps = mout->spdif_maxbps;
3726                         } else {
3727                                 mout->share_spdif = 0;
3728                                 /* FIXME: need notify? */
3729                         }
3730                 }
3731                 mutex_unlock(&codec->spdif_mutex);
3732         }
3733         return snd_pcm_hw_constraint_step(substream->runtime, 0,
3734                                           SNDRV_PCM_HW_PARAM_CHANNELS, 2);
3735 }
3736 EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
3737
3738 /**
3739  * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
3740  * @codec: the HDA codec
3741  * @mout: hda_multi_out object
3742  * @stream_tag: stream tag to assign
3743  * @format: format id to assign
3744  * @substream: PCM substream to assign
3745  *
3746  * Set up the i/o for analog out.
3747  * When the digital out is available, copy the front out to digital out, too.
3748  */
3749 int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
3750                                      struct hda_multi_out *mout,
3751                                      unsigned int stream_tag,
3752                                      unsigned int format,
3753                                      struct snd_pcm_substream *substream)
3754 {
3755         const hda_nid_t *nids = mout->dac_nids;
3756         int chs = substream->runtime->channels;
3757         struct hda_spdif_out *spdif;
3758         int i;
3759
3760         mutex_lock(&codec->spdif_mutex);
3761         spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
3762         if (mout->dig_out_nid && mout->share_spdif &&
3763             mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
3764                 if (chs == 2 && spdif != NULL &&
3765                     snd_hda_is_supported_format(codec, mout->dig_out_nid,
3766                                                 format) &&
3767                     !(spdif->status & IEC958_AES0_NONAUDIO)) {
3768                         mout->dig_out_used = HDA_DIG_ANALOG_DUP;
3769                         setup_dig_out_stream(codec, mout->dig_out_nid,
3770                                              stream_tag, format);
3771                 } else {
3772                         mout->dig_out_used = 0;
3773                         cleanup_dig_out_stream(codec, mout->dig_out_nid);
3774                 }
3775         }
3776         mutex_unlock(&codec->spdif_mutex);
3777
3778         /* front */
3779         snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
3780                                    0, format);
3781         if (!mout->no_share_stream &&
3782             mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
3783                 /* headphone out will just decode front left/right (stereo) */
3784                 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
3785                                            0, format);
3786         /* extra outputs copied from front */
3787         for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3788                 if (!mout->no_share_stream && mout->hp_out_nid[i])
3789                         snd_hda_codec_setup_stream(codec,
3790                                                    mout->hp_out_nid[i],
3791                                                    stream_tag, 0, format);
3792
3793         /* surrounds */
3794         for (i = 1; i < mout->num_dacs; i++) {
3795                 if (chs >= (i + 1) * 2) /* independent out */
3796                         snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3797                                                    i * 2, format);
3798                 else if (!mout->no_share_stream) /* copy front */
3799                         snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
3800                                                    0, format);
3801         }
3802
3803         /* extra surrounds */
3804         for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
3805                 int ch = 0;
3806                 if (!mout->extra_out_nid[i])
3807                         break;
3808                 if (chs >= (i + 1) * 2)
3809                         ch = i * 2;
3810                 else if (!mout->no_share_stream)
3811                         break;
3812                 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
3813                                            stream_tag, ch, format);
3814         }
3815
3816         return 0;
3817 }
3818 EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
3819
3820 /**
3821  * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
3822  * @codec: the HDA codec
3823  * @mout: hda_multi_out object
3824  */
3825 int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
3826                                      struct hda_multi_out *mout)
3827 {
3828         const hda_nid_t *nids = mout->dac_nids;
3829         int i;
3830
3831         for (i = 0; i < mout->num_dacs; i++)
3832                 snd_hda_codec_cleanup_stream(codec, nids[i]);
3833         if (mout->hp_nid)
3834                 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
3835         for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
3836                 if (mout->hp_out_nid[i])
3837                         snd_hda_codec_cleanup_stream(codec,
3838                                                      mout->hp_out_nid[i]);
3839         for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
3840                 if (mout->extra_out_nid[i])
3841                         snd_hda_codec_cleanup_stream(codec,
3842                                                      mout->extra_out_nid[i]);
3843         mutex_lock(&codec->spdif_mutex);
3844         if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
3845                 cleanup_dig_out_stream(codec, mout->dig_out_nid);
3846                 mout->dig_out_used = 0;
3847         }
3848         mutex_unlock(&codec->spdif_mutex);
3849         return 0;
3850 }
3851 EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
3852
3853 /**
3854  * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
3855  * @codec: the HDA codec
3856  * @pin: referred pin NID
3857  *
3858  * Guess the suitable VREF pin bits to be set as the pin-control value.
3859  * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
3860  */
3861 unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
3862 {
3863         unsigned int pincap;
3864         unsigned int oldval;
3865         oldval = snd_hda_codec_read(codec, pin, 0,
3866                                     AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3867         pincap = snd_hda_query_pin_caps(codec, pin);
3868         pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3869         /* Exception: if the default pin setup is vref50, we give it priority */
3870         if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
3871                 return AC_PINCTL_VREF_80;
3872         else if (pincap & AC_PINCAP_VREF_50)
3873                 return AC_PINCTL_VREF_50;
3874         else if (pincap & AC_PINCAP_VREF_100)
3875                 return AC_PINCTL_VREF_100;
3876         else if (pincap & AC_PINCAP_VREF_GRD)
3877                 return AC_PINCTL_VREF_GRD;
3878         return AC_PINCTL_VREF_HIZ;
3879 }
3880 EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
3881
3882 /**
3883  * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
3884  * @codec: the HDA codec
3885  * @pin: referred pin NID
3886  * @val: pin ctl value to audit
3887  */
3888 unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
3889                                      hda_nid_t pin, unsigned int val)
3890 {
3891         static unsigned int cap_lists[][2] = {
3892                 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
3893                 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
3894                 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
3895                 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
3896         };
3897         unsigned int cap;
3898
3899         if (!val)
3900                 return 0;
3901         cap = snd_hda_query_pin_caps(codec, pin);
3902         if (!cap)
3903                 return val; /* don't know what to do... */
3904
3905         if (val & AC_PINCTL_OUT_EN) {
3906                 if (!(cap & AC_PINCAP_OUT))
3907                         val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3908                 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
3909                         val &= ~AC_PINCTL_HP_EN;
3910         }
3911
3912         if (val & AC_PINCTL_IN_EN) {
3913                 if (!(cap & AC_PINCAP_IN))
3914                         val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
3915                 else {
3916                         unsigned int vcap, vref;
3917                         int i;
3918                         vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
3919                         vref = val & AC_PINCTL_VREFEN;
3920                         for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
3921                                 if (vref == cap_lists[i][0] &&
3922                                     !(vcap & cap_lists[i][1])) {
3923                                         if (i == ARRAY_SIZE(cap_lists) - 1)
3924                                                 vref = AC_PINCTL_VREF_HIZ;
3925                                         else
3926                                                 vref = cap_lists[i + 1][0];
3927                                 }
3928                         }
3929                         val &= ~AC_PINCTL_VREFEN;
3930                         val |= vref;
3931                 }
3932         }
3933
3934         return val;
3935 }
3936 EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
3937
3938 /**
3939  * _snd_hda_pin_ctl - Helper to set pin ctl value
3940  * @codec: the HDA codec
3941  * @pin: referred pin NID
3942  * @val: pin control value to set
3943  * @cached: access over codec pinctl cache or direct write
3944  *
3945  * This function is a helper to set a pin ctl value more safely.
3946  * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
3947  * value in pin target array via snd_hda_codec_set_pin_target(), then
3948  * actually writes the value via either snd_hda_codec_write_cache() or
3949  * snd_hda_codec_write() depending on @cached flag.
3950  */
3951 int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
3952                          unsigned int val, bool cached)
3953 {
3954         val = snd_hda_correct_pin_ctl(codec, pin, val);
3955         snd_hda_codec_set_pin_target(codec, pin, val);
3956         if (cached)
3957                 return snd_hda_codec_write_cache(codec, pin, 0,
3958                                 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3959         else
3960                 return snd_hda_codec_write(codec, pin, 0,
3961                                            AC_VERB_SET_PIN_WIDGET_CONTROL, val);
3962 }
3963 EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
3964
3965 /**
3966  * snd_hda_add_imux_item - Add an item to input_mux
3967  * @codec: the HDA codec
3968  * @imux: imux helper object
3969  * @label: the name of imux item to assign
3970  * @index: index number of imux item to assign
3971  * @type_idx: pointer to store the resultant label index
3972  *
3973  * When the same label is used already in the existing items, the number
3974  * suffix is appended to the label.  This label index number is stored
3975  * to type_idx when non-NULL pointer is given.
3976  */
3977 int snd_hda_add_imux_item(struct hda_codec *codec,
3978                           struct hda_input_mux *imux, const char *label,
3979                           int index, int *type_idx)
3980 {
3981         int i, label_idx = 0;
3982         if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
3983                 codec_err(codec, "hda_codec: Too many imux items!\n");
3984                 return -EINVAL;
3985         }
3986         for (i = 0; i < imux->num_items; i++) {
3987                 if (!strncmp(label, imux->items[i].label, strlen(label)))
3988                         label_idx++;
3989         }
3990         if (type_idx)
3991                 *type_idx = label_idx;
3992         if (label_idx > 0)
3993                 snprintf(imux->items[imux->num_items].label,
3994                          sizeof(imux->items[imux->num_items].label),
3995                          "%s %d", label, label_idx);
3996         else
3997                 strlcpy(imux->items[imux->num_items].label, label,
3998                         sizeof(imux->items[imux->num_items].label));
3999         imux->items[imux->num_items].index = index;
4000         imux->num_items++;
4001         return 0;
4002 }
4003 EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
4004
4005 /**
4006  * snd_hda_bus_reset_codecs - Reset the bus
4007  * @bus: HD-audio bus
4008  */
4009 void snd_hda_bus_reset_codecs(struct hda_bus *bus)
4010 {
4011         struct hda_codec *codec;
4012
4013         list_for_each_codec(codec, bus) {
4014                 /* FIXME: maybe a better way needed for forced reset */
4015                 if (current_work() != &codec->jackpoll_work.work)
4016                         cancel_delayed_work_sync(&codec->jackpoll_work);
4017 #ifdef CONFIG_PM
4018                 if (hda_codec_is_power_on(codec)) {
4019                         hda_call_codec_suspend(codec);
4020                         hda_call_codec_resume(codec);
4021                 }
4022 #endif
4023         }
4024 }
4025
4026 /**
4027  * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
4028  * @pcm: PCM caps bits
4029  * @buf: the string buffer to write
4030  * @buflen: the max buffer length
4031  *
4032  * used by hda_proc.c and hda_eld.c
4033  */
4034 void snd_print_pcm_bits(int pcm, char *buf, int buflen)
4035 {
4036         static unsigned int bits[] = { 8, 16, 20, 24, 32 };
4037         int i, j;
4038
4039         for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
4040                 if (pcm & (AC_SUPPCM_BITS_8 << i))
4041                         j += scnprintf(buf + j, buflen - j,  " %d", bits[i]);
4042
4043         buf[j] = '\0'; /* necessary when j == 0 */
4044 }
4045 EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
4046
4047 MODULE_DESCRIPTION("HDA codec core");
4048 MODULE_LICENSE("GPL");