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