blob: 5645481af3d9571b8340c963a27c34e377c405c5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * Copyright (c) 2004 Takashi Iwai <tiwai@suse.de>
5 *
6 *
7 * This driver is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This driver is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
Takashi Iwai18478e82012-03-09 17:51:10 +010022#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/init.h>
24#include <linux/delay.h>
25#include <linux/slab.h>
Ingo Molnar62932df2006-01-16 16:34:20 +010026#include <linux/mutex.h>
Paul Gortmakerda155d52011-07-15 12:38:28 -040027#include <linux/module.h>
Takashi Iwaif4d6a552013-12-05 11:55:05 +010028#include <linux/async.h>
Takashi Iwaicc72da72015-02-19 16:00:22 +010029#include <linux/pm.h>
30#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <sound/core.h>
32#include "hda_codec.h"
33#include <sound/asoundef.h>
Jaroslav Kysela302e9c52006-07-05 17:39:49 +020034#include <sound/tlv.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <sound/initval.h>
Takashi Iwaicd372fb2011-03-03 14:40:14 +010036#include <sound/jack.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "hda_local.h"
Jaroslav Kysela123c07a2009-10-21 14:48:23 +020038#include "hda_beep.h"
Takashi Iwai1835a0f2011-10-27 22:12:46 +020039#include "hda_jack.h"
Takashi Iwai28073142007-07-27 18:58:06 +020040#include <sound/hda_hwdep.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Takashi Iwai83012a72012-08-24 18:38:08 +020042#ifdef CONFIG_PM
Takashi Iwai7639a062015-03-03 10:07:24 +010043#define codec_in_pm(codec) atomic_read(&(codec)->core.in_pm)
Takashi Iwaicc72da72015-02-19 16:00:22 +010044#define hda_codec_is_power_on(codec) \
45 (!pm_runtime_suspended(hda_codec_dev(codec)))
Takashi Iwaicb53c622007-08-10 17:21:45 +020046#else
Takashi Iwaid846b172012-11-24 11:58:24 +010047#define codec_in_pm(codec) 0
Takashi Iwaie581f3d2011-07-26 10:19:20 +020048#define hda_codec_is_power_on(codec) 1
Takashi Iwaicb53c622007-08-10 17:21:45 +020049#endif
50
Takashi Iwai7639a062015-03-03 10:07:24 +010051#define codec_has_epss(codec) \
52 ((codec)->core.power_caps & AC_PWRST_EPSS)
53#define codec_has_clkstop(codec) \
54 ((codec)->core.power_caps & AC_PWRST_CLKSTOP)
55
Takashi Iwaid5191e52009-11-16 14:58:17 +010056/**
57 * snd_hda_get_jack_location - Give a location string of the jack
58 * @cfg: pin default config value
59 *
60 * Parse the pin default config value and returns the string of the
61 * jack location, e.g. "Rear", "Front", etc.
62 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -040063const char *snd_hda_get_jack_location(u32 cfg)
64{
65 static char *bases[7] = {
66 "N/A", "Rear", "Front", "Left", "Right", "Top", "Bottom",
67 };
68 static unsigned char specials_idx[] = {
69 0x07, 0x08,
70 0x17, 0x18, 0x19,
71 0x37, 0x38
72 };
73 static char *specials[] = {
74 "Rear Panel", "Drive Bar",
75 "Riser", "HDMI", "ATAPI",
76 "Mobile-In", "Mobile-Out"
77 };
78 int i;
79 cfg = (cfg & AC_DEFCFG_LOCATION) >> AC_DEFCFG_LOCATION_SHIFT;
80 if ((cfg & 0x0f) < 7)
81 return bases[cfg & 0x0f];
82 for (i = 0; i < ARRAY_SIZE(specials_idx); i++) {
83 if (cfg == specials_idx[i])
84 return specials[i];
85 }
86 return "UNKNOWN";
87}
Takashi Iwai2698ea92013-12-18 07:45:52 +010088EXPORT_SYMBOL_GPL(snd_hda_get_jack_location);
Matthew Ranostay50a9f792008-10-25 01:05:45 -040089
Takashi Iwaid5191e52009-11-16 14:58:17 +010090/**
91 * snd_hda_get_jack_connectivity - Give a connectivity string of the jack
92 * @cfg: pin default config value
93 *
94 * Parse the pin default config value and returns the string of the
95 * jack connectivity, i.e. external or internal connection.
96 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -040097const char *snd_hda_get_jack_connectivity(u32 cfg)
98{
99 static char *jack_locations[4] = { "Ext", "Int", "Sep", "Oth" };
100
101 return jack_locations[(cfg >> (AC_DEFCFG_LOCATION_SHIFT + 4)) & 3];
102}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100103EXPORT_SYMBOL_GPL(snd_hda_get_jack_connectivity);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400104
Takashi Iwaid5191e52009-11-16 14:58:17 +0100105/**
106 * snd_hda_get_jack_type - Give a type string of the jack
107 * @cfg: pin default config value
108 *
109 * Parse the pin default config value and returns the string of the
110 * jack type, i.e. the purpose of the jack, such as Line-Out or CD.
111 */
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400112const char *snd_hda_get_jack_type(u32 cfg)
113{
114 static char *jack_types[16] = {
115 "Line Out", "Speaker", "HP Out", "CD",
116 "SPDIF Out", "Digital Out", "Modem Line", "Modem Hand",
117 "Line In", "Aux", "Mic", "Telephony",
David Henningssonaeb3a972013-04-04 11:47:13 +0200118 "SPDIF In", "Digital In", "Reserved", "Other"
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400119 };
120
121 return jack_types[(cfg & AC_DEFCFG_DEVICE)
122 >> AC_DEFCFG_DEVICE_SHIFT];
123}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100124EXPORT_SYMBOL_GPL(snd_hda_get_jack_type);
Matthew Ranostay50a9f792008-10-25 01:05:45 -0400125
Takashi Iwai33fa35e2008-11-06 16:50:40 +0100126/*
Takashi Iwai05852442015-03-03 15:40:08 +0100127 * Send and receive a verb - passed to exec_verb override for hdac_device
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200128 */
Takashi Iwai05852442015-03-03 15:40:08 +0100129static int codec_exec_verb(struct hdac_device *dev, unsigned int cmd,
130 unsigned int flags, unsigned int *res)
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200131{
Takashi Iwai05852442015-03-03 15:40:08 +0100132 struct hda_codec *codec = container_of(dev, struct hda_codec, core);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200133 struct hda_bus *bus = codec->bus;
Takashi Iwai8dd78332009-06-02 01:16:07 +0200134 int err;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200135
Wu Fengguang6430aee2009-07-17 16:49:19 +0800136 if (cmd == ~0)
137 return -1;
138
Takashi Iwai8dd78332009-06-02 01:16:07 +0200139 again:
Takashi Iwai664c7152015-04-08 11:43:14 +0200140 snd_hda_power_up_pm(codec);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100141 mutex_lock(&bus->core.cmd_mutex);
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200142 if (flags & HDA_RW_NO_RESPONSE_FALLBACK)
143 bus->no_response_fallback = 1;
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100144 err = snd_hdac_bus_exec_verb_unlocked(&bus->core, codec->core.addr,
145 cmd, res);
Takashi Iwai63e51fd2013-06-06 14:20:19 +0200146 bus->no_response_fallback = 0;
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100147 mutex_unlock(&bus->core.cmd_mutex);
Takashi Iwai664c7152015-04-08 11:43:14 +0200148 snd_hda_power_down_pm(codec);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100149 if (!codec_in_pm(codec) && res && err < 0 && bus->rirb_error) {
Takashi Iwai8dd78332009-06-02 01:16:07 +0200150 if (bus->response_reset) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100151 codec_dbg(codec,
152 "resetting BUS due to fatal communication error\n");
Takashi Iwai8dd78332009-06-02 01:16:07 +0200153 bus->ops.bus_reset(bus);
154 }
155 goto again;
156 }
157 /* clear reset-flag when the communication gets recovered */
Takashi Iwaid846b172012-11-24 11:58:24 +0100158 if (!err || codec_in_pm(codec))
Takashi Iwai8dd78332009-06-02 01:16:07 +0200159 bus->response_reset = 0;
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200160 return err;
161}
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/**
164 * snd_hda_codec_read - send a command and get the response
165 * @codec: the HDA codec
166 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200167 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * @verb: the verb to send
169 * @parm: the parameter for the verb
170 *
171 * Send a single command and read the corresponding response.
172 *
173 * Returns the obtained response value, or -1 for an error.
174 */
Takashi Iwai0ba21762007-04-16 11:29:14 +0200175unsigned int snd_hda_codec_read(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200176 int flags,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 unsigned int verb, unsigned int parm)
178{
Takashi Iwai7639a062015-03-03 10:07:24 +0100179 unsigned int cmd = snd_hdac_make_cmd(&codec->core, nid, verb, parm);
Takashi Iwaiaa2936f2009-05-26 16:07:57 +0200180 unsigned int res;
Takashi Iwai05852442015-03-03 15:40:08 +0100181 if (snd_hdac_exec_verb(&codec->core, cmd, flags, &res))
Greg Thelen9857edf2011-06-13 07:45:45 -0700182 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 return res;
184}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100185EXPORT_SYMBOL_GPL(snd_hda_codec_read);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187/**
188 * snd_hda_codec_write - send a single command without waiting for response
189 * @codec: the HDA codec
190 * @nid: NID to send the command
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200191 * @flags: optional bit flags
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * @verb: the verb to send
193 * @parm: the parameter for the verb
194 *
195 * Send a single command without waiting for response.
196 *
197 * Returns 0 if successful, or a negative error code.
198 */
Takashi Iwaie7ecc272013-06-06 14:00:23 +0200199int snd_hda_codec_write(struct hda_codec *codec, hda_nid_t nid, int flags,
200 unsigned int verb, unsigned int parm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Takashi Iwai7639a062015-03-03 10:07:24 +0100202 unsigned int cmd = snd_hdac_make_cmd(&codec->core, nid, verb, parm);
Takashi Iwai05852442015-03-03 15:40:08 +0100203 return snd_hdac_exec_verb(&codec->core, cmd, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100205EXPORT_SYMBOL_GPL(snd_hda_codec_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/**
208 * snd_hda_sequence_write - sequence writes
209 * @codec: the HDA codec
210 * @seq: VERB array to send
211 *
212 * Send the commands sequentially from the given array.
213 * The array must be terminated with NID=0.
214 */
215void snd_hda_sequence_write(struct hda_codec *codec, const struct hda_verb *seq)
216{
217 for (; seq->nid; seq++)
218 snd_hda_codec_write(codec, seq->nid, 0, seq->verb, seq->param);
219}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100220EXPORT_SYMBOL_GPL(snd_hda_sequence_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100222/* connection list element */
223struct hda_conn_list {
224 struct list_head list;
225 int len;
226 hda_nid_t nid;
227 hda_nid_t conns[0];
228};
229
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200230/* look up the cached results */
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100231static struct hda_conn_list *
232lookup_conn_list(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200233{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100234 struct hda_conn_list *p;
235 list_for_each_entry(p, &codec->conn_list, list) {
236 if (p->nid == nid)
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200237 return p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200238 }
239 return NULL;
240}
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200241
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100242static int add_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
243 const hda_nid_t *list)
244{
245 struct hda_conn_list *p;
246
247 p = kmalloc(sizeof(*p) + len * sizeof(hda_nid_t), GFP_KERNEL);
248 if (!p)
249 return -ENOMEM;
250 p->len = len;
251 p->nid = nid;
252 memcpy(p->conns, list, len * sizeof(hda_nid_t));
253 list_add(&p->list, &codec->conn_list);
254 return 0;
255}
256
257static void remove_conn_list(struct hda_codec *codec)
258{
259 while (!list_empty(&codec->conn_list)) {
260 struct hda_conn_list *p;
261 p = list_first_entry(&codec->conn_list, typeof(*p), list);
262 list_del(&p->list);
263 kfree(p);
264 }
265}
266
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200267/* read the connection and add to the cache */
268static int read_and_add_raw_conns(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200269{
Takashi Iwai4eea3092013-02-07 18:18:19 +0100270 hda_nid_t list[32];
271 hda_nid_t *result = list;
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200272 int len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200273
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200274 len = snd_hda_get_raw_connections(codec, nid, list, ARRAY_SIZE(list));
Takashi Iwai4eea3092013-02-07 18:18:19 +0100275 if (len == -ENOSPC) {
276 len = snd_hda_get_num_raw_conns(codec, nid);
277 result = kmalloc(sizeof(hda_nid_t) * len, GFP_KERNEL);
278 if (!result)
279 return -ENOMEM;
280 len = snd_hda_get_raw_connections(codec, nid, result, len);
281 }
282 if (len >= 0)
283 len = snd_hda_override_conn_list(codec, nid, len, result);
284 if (result != list)
285 kfree(result);
286 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200287}
Takashi Iwaidce20792011-06-24 14:10:28 +0200288
289/**
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100290 * snd_hda_get_conn_list - get connection list
291 * @codec: the HDA codec
292 * @nid: NID to parse
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100293 * @listp: the pointer to store NID list
294 *
295 * Parses the connection list of the given widget and stores the pointer
296 * to the list of NIDs.
297 *
298 * Returns the number of connections, or a negative error code.
299 *
300 * Note that the returned pointer isn't protected against the list
301 * modification. If snd_hda_override_conn_list() might be called
302 * concurrently, protect with a mutex appropriately.
303 */
304int snd_hda_get_conn_list(struct hda_codec *codec, hda_nid_t nid,
305 const hda_nid_t **listp)
306{
307 bool added = false;
308
309 for (;;) {
310 int err;
311 const struct hda_conn_list *p;
312
313 /* if the connection-list is already cached, read it */
314 p = lookup_conn_list(codec, nid);
315 if (p) {
316 if (listp)
317 *listp = p->conns;
318 return p->len;
319 }
320 if (snd_BUG_ON(added))
321 return -EINVAL;
322
323 err = read_and_add_raw_conns(codec, nid);
324 if (err < 0)
325 return err;
326 added = true;
327 }
328}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100329EXPORT_SYMBOL_GPL(snd_hda_get_conn_list);
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100330
331/**
Takashi Iwaidce20792011-06-24 14:10:28 +0200332 * snd_hda_get_connections - copy connection list
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 * @codec: the HDA codec
334 * @nid: NID to parse
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200335 * @conn_list: connection list array; when NULL, checks only the size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * @max_conns: max. number of connections to store
337 *
338 * Parses the connection list of the given widget and stores the list
339 * of NIDs.
340 *
341 * Returns the number of connections, or a negative error code.
342 */
343int snd_hda_get_connections(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200344 hda_nid_t *conn_list, int max_conns)
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200345{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100346 const hda_nid_t *list;
347 int len = snd_hda_get_conn_list(codec, nid, &list);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200348
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100349 if (len > 0 && conn_list) {
350 if (len > max_conns) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100351 codec_err(codec, "Too many connections %d for NID 0x%x\n",
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200352 len, nid);
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200353 return -EINVAL;
354 }
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100355 memcpy(conn_list, list, len * sizeof(hda_nid_t));
Takashi Iwaidce20792011-06-24 14:10:28 +0200356 }
Takashi Iwai09cf03b2012-05-19 17:21:25 +0200357
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100358 return len;
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200359}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100360EXPORT_SYMBOL_GPL(snd_hda_get_connections);
Takashi Iwaia12d3e12011-04-07 15:55:15 +0200361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/**
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200363 * snd_hda_override_conn_list - add/modify the connection-list to cache
364 * @codec: the HDA codec
365 * @nid: NID to parse
366 * @len: number of connection list entries
367 * @list: the list of connection entries
368 *
369 * Add or modify the given connection-list to the cache. If the corresponding
370 * cache already exists, invalidate it and append a new one.
371 *
372 * Returns zero or a negative error code.
373 */
374int snd_hda_override_conn_list(struct hda_codec *codec, hda_nid_t nid, int len,
375 const hda_nid_t *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100377 struct hda_conn_list *p;
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200378
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100379 p = lookup_conn_list(codec, nid);
380 if (p) {
381 list_del(&p->list);
382 kfree(p);
383 }
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200384
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100385 return add_conn_list(codec, nid, len, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100387EXPORT_SYMBOL_GPL(snd_hda_override_conn_list);
Takashi Iwaib2f934a2011-07-04 16:23:26 +0200388
389/**
Takashi Iwai8d087c72011-06-28 12:45:47 +0200390 * snd_hda_get_conn_index - get the connection index of the given NID
391 * @codec: the HDA codec
392 * @mux: NID containing the list
393 * @nid: NID to select
394 * @recursive: 1 when searching NID recursively, otherwise 0
395 *
396 * Parses the connection list of the widget @mux and checks whether the
397 * widget @nid is present. If it is, return the connection index.
398 * Otherwise it returns -1.
399 */
400int snd_hda_get_conn_index(struct hda_codec *codec, hda_nid_t mux,
401 hda_nid_t nid, int recursive)
402{
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100403 const hda_nid_t *conn;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200404 int i, nums;
405
Takashi Iwaiee8e7652013-01-03 15:25:11 +0100406 nums = snd_hda_get_conn_list(codec, mux, &conn);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200407 for (i = 0; i < nums; i++)
408 if (conn[i] == nid)
409 return i;
410 if (!recursive)
411 return -1;
Takashi Iwaid94ddd82012-12-20 14:42:42 +0100412 if (recursive > 10) {
Takashi Iwai4e76a882014-02-25 12:21:03 +0100413 codec_dbg(codec, "too deep connection for 0x%x\n", nid);
Takashi Iwai8d087c72011-06-28 12:45:47 +0200414 return -1;
415 }
416 recursive++;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200417 for (i = 0; i < nums; i++) {
418 unsigned int type = get_wcaps_type(get_wcaps(codec, conn[i]));
419 if (type == AC_WID_PIN || type == AC_WID_AUD_OUT)
420 continue;
Takashi Iwai8d087c72011-06-28 12:45:47 +0200421 if (snd_hda_get_conn_index(codec, conn[i], nid, recursive) >= 0)
422 return i;
Takashi Iwai99e14c92011-09-13 10:33:16 +0200423 }
Takashi Iwai8d087c72011-06-28 12:45:47 +0200424 return -1;
425}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100426EXPORT_SYMBOL_GPL(snd_hda_get_conn_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Mengdong Linf1aa0682013-08-26 21:35:21 -0400428
429/* return DEVLIST_LEN parameter of the given widget */
430static unsigned int get_num_devices(struct hda_codec *codec, hda_nid_t nid)
431{
432 unsigned int wcaps = get_wcaps(codec, nid);
433 unsigned int parm;
434
435 if (!codec->dp_mst || !(wcaps & AC_WCAP_DIGITAL) ||
436 get_wcaps_type(wcaps) != AC_WID_PIN)
437 return 0;
438
Dave Airlie132bd962015-06-09 13:39:31 +1000439 parm = snd_hdac_read_parm_uncached(&codec->core, nid, AC_PAR_DEVLIST_LEN);
Mengdong Linf1aa0682013-08-26 21:35:21 -0400440 if (parm == -1 && codec->bus->rirb_error)
441 parm = 0;
442 return parm & AC_DEV_LIST_LEN_MASK;
443}
444
445/**
446 * snd_hda_get_devices - copy device list without cache
447 * @codec: the HDA codec
448 * @nid: NID of the pin to parse
449 * @dev_list: device list array
450 * @max_devices: max. number of devices to store
451 *
452 * Copy the device list. This info is dynamic and so not cached.
453 * Currently called only from hda_proc.c, so not exported.
454 */
455int snd_hda_get_devices(struct hda_codec *codec, hda_nid_t nid,
456 u8 *dev_list, int max_devices)
457{
458 unsigned int parm;
459 int i, dev_len, devices;
460
461 parm = get_num_devices(codec, nid);
462 if (!parm) /* not multi-stream capable */
463 return 0;
464
465 dev_len = parm + 1;
466 dev_len = dev_len < max_devices ? dev_len : max_devices;
467
468 devices = 0;
469 while (devices < dev_len) {
470 parm = snd_hda_codec_read(codec, nid, 0,
471 AC_VERB_GET_DEVICE_LIST, devices);
472 if (parm == -1 && codec->bus->rirb_error)
473 break;
474
475 for (i = 0; i < 8; i++) {
476 dev_list[devices] = (u8)parm;
477 parm >>= 4;
478 devices++;
479 if (devices >= dev_len)
480 break;
481 }
482 }
483 return devices;
484}
485
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * destructor
488 */
Takashi Iwai2565c892014-02-19 11:41:09 +0100489static void snd_hda_bus_free(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Takashi Iwai0ba21762007-04-16 11:29:14 +0200491 if (!bus)
Takashi Iwai2565c892014-02-19 11:41:09 +0100492 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (bus->ops.private_free)
494 bus->ops.private_free(bus);
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100495 snd_hdac_bus_exit(&bus->core);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 kfree(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100499static int snd_hda_bus_dev_free(struct snd_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Takashi Iwai2565c892014-02-19 11:41:09 +0100501 snd_hda_bus_free(device->device_data);
502 return 0;
503}
504
505static int snd_hda_bus_dev_disconnect(struct snd_device *device)
506{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct hda_bus *bus = device->device_data;
Takashi Iwaib94d35392008-11-21 09:08:06 +0100508 bus->shutdown = 1;
Takashi Iwai2565c892014-02-19 11:41:09 +0100509 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100512/* hdac_bus_ops translations */
513static int _hda_bus_command(struct hdac_bus *_bus, unsigned int cmd)
514{
515 struct hda_bus *bus = container_of(_bus, struct hda_bus, core);
516 return bus->ops.command(bus, cmd);
517}
518
519static int _hda_bus_get_response(struct hdac_bus *_bus, unsigned int addr,
520 unsigned int *res)
521{
522 struct hda_bus *bus = container_of(_bus, struct hda_bus, core);
523 *res = bus->ops.get_response(bus, addr);
524 return bus->rirb_error ? -EIO : 0;
525}
526
527static const struct hdac_bus_ops bus_ops = {
528 .command = _hda_bus_command,
529 .get_response = _hda_bus_get_response,
530};
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532/**
533 * snd_hda_bus_new - create a HDA bus
534 * @card: the card entry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 * @busp: the pointer to store the created bus instance
536 *
537 * Returns 0 if successful, or a negative error code.
538 */
Takashi Iwai6a0f56a2012-12-07 07:41:56 +0100539int snd_hda_bus_new(struct snd_card *card,
Takashi Iwaief744972015-02-17 13:56:29 +0100540 struct hda_bus **busp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
542 struct hda_bus *bus;
543 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +0100544 static struct snd_device_ops dev_ops = {
Takashi Iwai2565c892014-02-19 11:41:09 +0100545 .dev_disconnect = snd_hda_bus_dev_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 .dev_free = snd_hda_bus_dev_free,
547 };
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (busp)
550 *busp = NULL;
551
Takashi Iwaie560d8d2005-09-09 14:21:46 +0200552 bus = kzalloc(sizeof(*bus), GFP_KERNEL);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +0100553 if (!bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
Takashi Iwaid068ebc2015-03-02 23:22:59 +0100556 err = snd_hdac_bus_init(&bus->core, card->dev, &bus_ops);
557 if (err < 0) {
558 kfree(bus);
559 return err;
560 }
561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 bus->card = card;
Takashi Iwai3f50ac62010-08-20 09:44:36 +0200563 mutex_init(&bus->prepare_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
Takashi Iwai0ba21762007-04-16 11:29:14 +0200565 err = snd_device_new(card, SNDRV_DEV_BUS, bus, &dev_ops);
566 if (err < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 snd_hda_bus_free(bus);
568 return err;
569 }
570 if (busp)
571 *busp = bus;
572 return 0;
573}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100574EXPORT_SYMBOL_GPL(snd_hda_bus_new);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576/*
Takashi Iwai54d17402005-11-21 16:33:22 +0100577 * read widget caps for each widget and store in cache
578 */
579static int read_widget_caps(struct hda_codec *codec, hda_nid_t fg_node)
580{
581 int i;
582 hda_nid_t nid;
583
Takashi Iwai7639a062015-03-03 10:07:24 +0100584 codec->wcaps = kmalloc(codec->core.num_nodes * 4, GFP_KERNEL);
Takashi Iwai0ba21762007-04-16 11:29:14 +0200585 if (!codec->wcaps)
Takashi Iwai54d17402005-11-21 16:33:22 +0100586 return -ENOMEM;
Takashi Iwai7639a062015-03-03 10:07:24 +0100587 nid = codec->core.start_nid;
588 for (i = 0; i < codec->core.num_nodes; i++, nid++)
Takashi Iwai9ba17b42015-03-03 23:29:47 +0100589 codec->wcaps[i] = snd_hdac_read_parm_uncached(&codec->core,
590 nid, AC_PAR_AUDIO_WIDGET_CAP);
Takashi Iwai54d17402005-11-21 16:33:22 +0100591 return 0;
592}
593
Takashi Iwai3be14142009-02-20 14:11:16 +0100594/* read all pin default configurations and save codec->init_pins */
595static int read_pin_defaults(struct hda_codec *codec)
596{
Takashi Iwai7639a062015-03-03 10:07:24 +0100597 hda_nid_t nid;
Takashi Iwai3be14142009-02-20 14:11:16 +0100598
Takashi Iwai7639a062015-03-03 10:07:24 +0100599 for_each_hda_codec_node(nid, codec) {
Takashi Iwai3be14142009-02-20 14:11:16 +0100600 struct hda_pincfg *pin;
601 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwaia22d5432009-07-27 12:54:26 +0200602 unsigned int wid_type = get_wcaps_type(wcaps);
Takashi Iwai3be14142009-02-20 14:11:16 +0100603 if (wid_type != AC_WID_PIN)
604 continue;
605 pin = snd_array_new(&codec->init_pins);
606 if (!pin)
607 return -ENOMEM;
608 pin->nid = nid;
609 pin->cfg = snd_hda_codec_read(codec, nid, 0,
610 AC_VERB_GET_CONFIG_DEFAULT, 0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200611 pin->ctrl = snd_hda_codec_read(codec, nid, 0,
612 AC_VERB_GET_PIN_WIDGET_CONTROL,
613 0);
Takashi Iwai3be14142009-02-20 14:11:16 +0100614 }
615 return 0;
616}
617
618/* look up the given pin config list and return the item matching with NID */
619static struct hda_pincfg *look_up_pincfg(struct hda_codec *codec,
620 struct snd_array *array,
621 hda_nid_t nid)
622{
623 int i;
624 for (i = 0; i < array->used; i++) {
625 struct hda_pincfg *pin = snd_array_elem(array, i);
626 if (pin->nid == nid)
627 return pin;
628 }
629 return NULL;
630}
631
Takashi Iwai3be14142009-02-20 14:11:16 +0100632/* set the current pin config value for the given NID.
633 * the value is cached, and read via snd_hda_codec_get_pincfg()
634 */
635int snd_hda_add_pincfg(struct hda_codec *codec, struct snd_array *list,
636 hda_nid_t nid, unsigned int cfg)
637{
638 struct hda_pincfg *pin;
639
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200640 /* the check below may be invalid when pins are added by a fixup
641 * dynamically (e.g. via snd_hda_codec_update_widgets()), so disabled
642 * for now
643 */
644 /*
Takashi Iwaib82855a2009-12-27 11:24:56 +0100645 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
646 return -EINVAL;
Takashi Iwaid5657ec2013-04-18 09:59:28 +0200647 */
Takashi Iwaib82855a2009-12-27 11:24:56 +0100648
Takashi Iwai3be14142009-02-20 14:11:16 +0100649 pin = look_up_pincfg(codec, list, nid);
650 if (!pin) {
651 pin = snd_array_new(list);
652 if (!pin)
653 return -ENOMEM;
654 pin->nid = nid;
655 }
656 pin->cfg = cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100657 return 0;
658}
659
Takashi Iwaid5191e52009-11-16 14:58:17 +0100660/**
661 * snd_hda_codec_set_pincfg - Override a pin default configuration
662 * @codec: the HDA codec
663 * @nid: NID to set the pin config
664 * @cfg: the pin default config value
665 *
666 * Override a pin default configuration value in the cache.
667 * This value can be read by snd_hda_codec_get_pincfg() in a higher
668 * priority than the real hardware value.
669 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100670int snd_hda_codec_set_pincfg(struct hda_codec *codec,
671 hda_nid_t nid, unsigned int cfg)
672{
Takashi Iwai346ff702009-02-23 09:42:57 +0100673 return snd_hda_add_pincfg(codec, &codec->driver_pins, nid, cfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100674}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100675EXPORT_SYMBOL_GPL(snd_hda_codec_set_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100676
Takashi Iwaid5191e52009-11-16 14:58:17 +0100677/**
678 * snd_hda_codec_get_pincfg - Obtain a pin-default configuration
679 * @codec: the HDA codec
680 * @nid: NID to get the pin config
681 *
682 * Get the current pin config value of the given pin NID.
683 * If the pincfg value is cached or overridden via sysfs or driver,
684 * returns the cached value.
685 */
Takashi Iwai3be14142009-02-20 14:11:16 +0100686unsigned int snd_hda_codec_get_pincfg(struct hda_codec *codec, hda_nid_t nid)
687{
688 struct hda_pincfg *pin;
689
Takashi Iwai648a8d22014-02-25 10:38:13 +0100690#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai09b70e82013-01-10 18:21:56 +0100691 {
692 unsigned int cfg = 0;
693 mutex_lock(&codec->user_mutex);
694 pin = look_up_pincfg(codec, &codec->user_pins, nid);
695 if (pin)
696 cfg = pin->cfg;
697 mutex_unlock(&codec->user_mutex);
698 if (cfg)
699 return cfg;
700 }
Takashi Iwai3be14142009-02-20 14:11:16 +0100701#endif
Takashi Iwai5e7b8e02009-02-23 09:45:59 +0100702 pin = look_up_pincfg(codec, &codec->driver_pins, nid);
703 if (pin)
704 return pin->cfg;
Takashi Iwai3be14142009-02-20 14:11:16 +0100705 pin = look_up_pincfg(codec, &codec->init_pins, nid);
706 if (pin)
707 return pin->cfg;
708 return 0;
709}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100710EXPORT_SYMBOL_GPL(snd_hda_codec_get_pincfg);
Takashi Iwai3be14142009-02-20 14:11:16 +0100711
Takashi Iwai95a962c2014-10-29 16:03:58 +0100712/**
713 * snd_hda_codec_set_pin_target - remember the current pinctl target value
714 * @codec: the HDA codec
715 * @nid: pin NID
716 * @val: assigned pinctl value
717 *
718 * This function stores the given value to a pinctl target value in the
719 * pincfg table. This isn't always as same as the actually written value
720 * but can be referred at any time via snd_hda_codec_get_pin_target().
721 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100722int snd_hda_codec_set_pin_target(struct hda_codec *codec, hda_nid_t nid,
723 unsigned int val)
724{
725 struct hda_pincfg *pin;
726
727 pin = look_up_pincfg(codec, &codec->init_pins, nid);
728 if (!pin)
729 return -EINVAL;
730 pin->target = val;
731 return 0;
732}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100733EXPORT_SYMBOL_GPL(snd_hda_codec_set_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100734
Takashi Iwai95a962c2014-10-29 16:03:58 +0100735/**
736 * snd_hda_codec_get_pin_target - return the current pinctl target value
737 * @codec: the HDA codec
738 * @nid: pin NID
739 */
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100740int snd_hda_codec_get_pin_target(struct hda_codec *codec, hda_nid_t nid)
741{
742 struct hda_pincfg *pin;
743
744 pin = look_up_pincfg(codec, &codec->init_pins, nid);
745 if (!pin)
746 return 0;
747 return pin->target;
748}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100749EXPORT_SYMBOL_GPL(snd_hda_codec_get_pin_target);
Takashi Iwaid7fdc002013-01-10 08:38:04 +0100750
Takashi Iwai92ee6162009-12-27 11:18:59 +0100751/**
752 * snd_hda_shutup_pins - Shut up all pins
753 * @codec: the HDA codec
754 *
755 * Clear all pin controls to shup up before suspend for avoiding click noise.
756 * The controls aren't cached so that they can be resumed properly.
757 */
758void snd_hda_shutup_pins(struct hda_codec *codec)
759{
760 int i;
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200761 /* don't shut up pins when unloading the driver; otherwise it breaks
762 * the default pin setup at the next load of the driver
763 */
764 if (codec->bus->shutdown)
765 return;
Takashi Iwai92ee6162009-12-27 11:18:59 +0100766 for (i = 0; i < codec->init_pins.used; i++) {
767 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
768 /* use read here for syncing after issuing each verb */
769 snd_hda_codec_read(codec, pin->nid, 0,
770 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
771 }
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200772 codec->pins_shutup = 1;
Takashi Iwai92ee6162009-12-27 11:18:59 +0100773}
Takashi Iwai2698ea92013-12-18 07:45:52 +0100774EXPORT_SYMBOL_GPL(snd_hda_shutup_pins);
Takashi Iwai92ee6162009-12-27 11:18:59 +0100775
Takashi Iwai2a439522011-07-26 09:52:50 +0200776#ifdef CONFIG_PM
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200777/* Restore the pin controls cleared previously via snd_hda_shutup_pins() */
778static void restore_shutup_pins(struct hda_codec *codec)
779{
780 int i;
781 if (!codec->pins_shutup)
782 return;
783 if (codec->bus->shutdown)
784 return;
785 for (i = 0; i < codec->init_pins.used; i++) {
786 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
787 snd_hda_codec_write(codec, pin->nid, 0,
788 AC_VERB_SET_PIN_WIDGET_CONTROL,
789 pin->ctrl);
790 }
791 codec->pins_shutup = 0;
792}
Mike Waychison1c7276c2011-04-20 12:04:36 -0700793#endif
Takashi Iwaiac0547d2010-07-05 16:50:13 +0200794
David Henningsson26a6cb62012-10-09 15:04:21 +0200795static void hda_jackpoll_work(struct work_struct *work)
796{
797 struct hda_codec *codec =
798 container_of(work, struct hda_codec, jackpoll_work.work);
David Henningsson26a6cb62012-10-09 15:04:21 +0200799
800 snd_hda_jack_set_dirty_all(codec);
801 snd_hda_jack_poll_all(codec);
Wang Xingchao18e60622013-07-25 23:34:45 -0400802
803 if (!codec->jackpoll_interval)
804 return;
805
Takashi Iwai2f35c632015-02-27 22:43:26 +0100806 schedule_delayed_work(&codec->jackpoll_work,
807 codec->jackpoll_interval);
David Henningsson26a6cb62012-10-09 15:04:21 +0200808}
809
Takashi Iwai3fdf1462012-11-22 08:16:31 +0100810/* release all pincfg lists */
811static void free_init_pincfgs(struct hda_codec *codec)
Takashi Iwai3be14142009-02-20 14:11:16 +0100812{
Takashi Iwai346ff702009-02-23 09:42:57 +0100813 snd_array_free(&codec->driver_pins);
Takashi Iwai648a8d22014-02-25 10:38:13 +0100814#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai346ff702009-02-23 09:42:57 +0100815 snd_array_free(&codec->user_pins);
Takashi Iwai3be14142009-02-20 14:11:16 +0100816#endif
Takashi Iwai3be14142009-02-20 14:11:16 +0100817 snd_array_free(&codec->init_pins);
818}
819
Takashi Iwai54d17402005-11-21 16:33:22 +0100820/*
Takashi Iwaieb541332010-08-06 13:48:11 +0200821 * audio-converter setup caches
822 */
823struct hda_cvt_setup {
824 hda_nid_t nid;
825 u8 stream_tag;
826 u8 channel_id;
827 u16 format_id;
828 unsigned char active; /* cvt is currently used */
829 unsigned char dirty; /* setups should be cleared */
830};
831
832/* get or create a cache entry for the given audio converter NID */
833static struct hda_cvt_setup *
834get_hda_cvt_setup(struct hda_codec *codec, hda_nid_t nid)
835{
836 struct hda_cvt_setup *p;
837 int i;
838
839 for (i = 0; i < codec->cvt_setups.used; i++) {
840 p = snd_array_elem(&codec->cvt_setups, i);
841 if (p->nid == nid)
842 return p;
843 }
844 p = snd_array_new(&codec->cvt_setups);
845 if (p)
846 p->nid = nid;
847 return p;
848}
849
850/*
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100851 * PCM device
852 */
853static void release_pcm(struct kref *kref)
854{
855 struct hda_pcm *pcm = container_of(kref, struct hda_pcm, kref);
856
857 if (pcm->pcm)
858 snd_device_free(pcm->codec->card, pcm->pcm);
859 clear_bit(pcm->device, pcm->codec->bus->pcm_dev_bits);
860 kfree(pcm->name);
861 kfree(pcm);
862}
863
864void snd_hda_codec_pcm_put(struct hda_pcm *pcm)
865{
866 kref_put(&pcm->kref, release_pcm);
867}
868EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_put);
869
870struct hda_pcm *snd_hda_codec_pcm_new(struct hda_codec *codec,
871 const char *fmt, ...)
872{
873 struct hda_pcm *pcm;
874 va_list args;
875
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100876 pcm = kzalloc(sizeof(*pcm), GFP_KERNEL);
877 if (!pcm)
878 return NULL;
879
880 pcm->codec = codec;
881 kref_init(&pcm->kref);
Takashi Iwai30e5f002015-04-27 16:39:19 +0200882 va_start(args, fmt);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100883 pcm->name = kvasprintf(GFP_KERNEL, fmt, args);
Takashi Iwai30e5f002015-04-27 16:39:19 +0200884 va_end(args);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100885 if (!pcm->name) {
886 kfree(pcm);
887 return NULL;
888 }
889
890 list_add_tail(&pcm->list, &codec->pcm_list_head);
891 return pcm;
892}
893EXPORT_SYMBOL_GPL(snd_hda_codec_pcm_new);
894
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100895/*
896 * codec destructor
897 */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100898static void codec_release_pcms(struct hda_codec *codec)
899{
900 struct hda_pcm *pcm, *n;
901
902 list_for_each_entry_safe(pcm, n, &codec->pcm_list_head, list) {
903 list_del_init(&pcm->list);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100904 if (pcm->pcm)
905 snd_device_disconnect(codec->card, pcm->pcm);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +0100906 snd_hda_codec_pcm_put(pcm);
907 }
908}
909
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100910void snd_hda_codec_cleanup_for_unbind(struct hda_codec *codec)
911{
Takashi Iwaic4c25332015-03-03 17:22:12 +0100912 if (codec->registered) {
913 /* pm_runtime_put() is called in snd_hdac_device_exit() */
914 pm_runtime_get_noresume(hda_codec_dev(codec));
915 pm_runtime_disable(hda_codec_dev(codec));
916 codec->registered = 0;
917 }
918
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100919 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100920 if (!codec->in_freeing)
921 snd_hda_ctls_clear(codec);
922 codec_release_pcms(codec);
923 snd_hda_detach_beep_device(codec);
924 memset(&codec->patch_ops, 0, sizeof(codec->patch_ops));
925 snd_hda_jack_tbl_clear(codec);
926 codec->proc_widget_hook = NULL;
927 codec->spec = NULL;
928
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100929 /* free only driver_pins so that init_pins + user_pins are restored */
930 snd_array_free(&codec->driver_pins);
931 snd_array_free(&codec->cvt_setups);
932 snd_array_free(&codec->spdif_out);
933 snd_array_free(&codec->verbs);
934 codec->preset = NULL;
935 codec->slave_dig_outs = NULL;
936 codec->spdif_status_reset = 0;
937 snd_array_free(&codec->mixers);
938 snd_array_free(&codec->nids);
939 remove_conn_list(codec);
Takashi Iwai4d75faa02015-02-25 14:42:38 +0100940 snd_hdac_regmap_exit(&codec->core);
Takashi Iwai9a6246f2015-02-27 18:17:28 +0100941}
942
Takashi Iwaid8193872012-08-31 07:54:38 -0700943static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwaibb6ac722009-03-13 09:02:42 +0100944 unsigned int power_state);
945
Takashi Iwaic4c25332015-03-03 17:22:12 +0100946/* also called from hda_bind.c */
947void snd_hda_codec_register(struct hda_codec *codec)
948{
949 if (codec->registered)
950 return;
951 if (device_is_registered(hda_codec_dev(codec))) {
952 snd_hda_register_beep_device(codec);
953 pm_runtime_enable(hda_codec_dev(codec));
954 /* it was powered up in snd_hda_codec_new(), now all done */
955 snd_hda_power_down(codec);
956 codec->registered = 1;
957 }
958}
959
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100960static int snd_hda_codec_dev_register(struct snd_device *device)
961{
Takashi Iwaic4c25332015-03-03 17:22:12 +0100962 snd_hda_codec_register(device->device_data);
Takashi Iwaid604b392014-02-28 13:42:09 +0100963 return 0;
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100964}
965
966static int snd_hda_codec_dev_disconnect(struct snd_device *device)
967{
968 struct hda_codec *codec = device->device_data;
969
Takashi Iwaid604b392014-02-28 13:42:09 +0100970 snd_hda_detach_beep_device(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100971 return 0;
972}
973
Takashi Iwai2565c892014-02-19 11:41:09 +0100974static int snd_hda_codec_dev_free(struct snd_device *device)
975{
Takashi Iwaid56db742015-02-27 23:25:35 +0100976 struct hda_codec *codec = device->device_data;
977
978 codec->in_freeing = 1;
Takashi Iwai3256be62015-02-24 14:59:42 +0100979 snd_hdac_device_unregister(&codec->core);
Takashi Iwaid56db742015-02-27 23:25:35 +0100980 put_device(hda_codec_dev(codec));
Takashi Iwai2565c892014-02-19 11:41:09 +0100981 return 0;
982}
983
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100984static void snd_hda_codec_dev_release(struct device *dev)
985{
Takashi Iwaid56db742015-02-27 23:25:35 +0100986 struct hda_codec *codec = dev_to_hda_codec(dev);
987
988 free_init_pincfgs(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +0100989 snd_hdac_device_exit(&codec->core);
Takashi Iwaid56db742015-02-27 23:25:35 +0100990 snd_hda_sysfs_clear(codec);
Takashi Iwaid56db742015-02-27 23:25:35 +0100991 kfree(codec->modelname);
992 kfree(codec->wcaps);
Takashi Iwaid56db742015-02-27 23:25:35 +0100993 kfree(codec);
Takashi Iwai13aeaf62014-02-25 07:53:47 +0100994}
995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/**
997 * snd_hda_codec_new - create a HDA codec
998 * @bus: the bus to assign
999 * @codec_addr: the codec address
1000 * @codecp: the pointer to store the generated codec
1001 *
1002 * Returns 0 if successful, or a negative error code.
1003 */
Takashi Iwai6efdd852015-02-27 16:09:22 +01001004int snd_hda_codec_new(struct hda_bus *bus, struct snd_card *card,
1005 unsigned int codec_addr, struct hda_codec **codecp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
1007 struct hda_codec *codec;
Jaroslav Kyselaba443682008-08-13 20:55:32 +02001008 char component[31];
Takashi Iwaid8193872012-08-31 07:54:38 -07001009 hda_nid_t fg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 int err;
Takashi Iwai2565c892014-02-19 11:41:09 +01001011 static struct snd_device_ops dev_ops = {
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001012 .dev_register = snd_hda_codec_dev_register,
1013 .dev_disconnect = snd_hda_codec_dev_disconnect,
Takashi Iwai2565c892014-02-19 11:41:09 +01001014 .dev_free = snd_hda_codec_dev_free,
1015 };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Takashi Iwaida3cec32008-08-08 17:12:14 +02001017 if (snd_BUG_ON(!bus))
1018 return -EINVAL;
1019 if (snd_BUG_ON(codec_addr > HDA_MAX_CODEC_ADDRESS))
1020 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Takashi Iwaie560d8d2005-09-09 14:21:46 +02001022 codec = kzalloc(sizeof(*codec), GFP_KERNEL);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001023 if (!codec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
Takashi Iwai7639a062015-03-03 10:07:24 +01001026 sprintf(component, "hdaudioC%dD%d", card->number, codec_addr);
1027 err = snd_hdac_device_init(&codec->core, &bus->core, component,
1028 codec_addr);
1029 if (err < 0) {
1030 kfree(codec);
1031 return err;
1032 }
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001033
Takashi Iwai7639a062015-03-03 10:07:24 +01001034 codec->core.dev.release = snd_hda_codec_dev_release;
1035 codec->core.type = HDA_DEV_LEGACY;
Takashi Iwai05852442015-03-03 15:40:08 +01001036 codec->core.exec_verb = codec_exec_verb;
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 codec->bus = bus;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001039 codec->card = card;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 codec->addr = codec_addr;
Ingo Molnar62932df2006-01-16 16:34:20 +01001041 mutex_init(&codec->spdif_mutex);
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08001042 mutex_init(&codec->control_mutex);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001043 snd_array_init(&codec->mixers, sizeof(struct hda_nid_item), 32);
1044 snd_array_init(&codec->nids, sizeof(struct hda_nid_item), 32);
Takashi Iwai3be14142009-02-20 14:11:16 +01001045 snd_array_init(&codec->init_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwai346ff702009-02-23 09:42:57 +01001046 snd_array_init(&codec->driver_pins, sizeof(struct hda_pincfg), 16);
Takashi Iwaieb541332010-08-06 13:48:11 +02001047 snd_array_init(&codec->cvt_setups, sizeof(struct hda_cvt_setup), 8);
Stephen Warren7c9359762011-06-01 11:14:17 -06001048 snd_array_init(&codec->spdif_out, sizeof(struct hda_spdif_out), 16);
Takashi Iwai361dab32012-05-09 14:35:27 +02001049 snd_array_init(&codec->jacktbl, sizeof(struct hda_jack_tbl), 16);
Takashi Iwaic9ce6b22012-12-18 18:12:44 +01001050 snd_array_init(&codec->verbs, sizeof(struct hda_verb *), 8);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001051 INIT_LIST_HEAD(&codec->conn_list);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001052 INIT_LIST_HEAD(&codec->pcm_list_head);
Takashi Iwaiee8e7652013-01-03 15:25:11 +01001053
David Henningsson26a6cb62012-10-09 15:04:21 +02001054 INIT_DELAYED_WORK(&codec->jackpoll_work, hda_jackpoll_work);
Mengdong Lin7f132922013-11-29 01:48:45 -05001055 codec->depop_delay = -1;
David Henningssonf5662e12014-07-22 14:09:34 +02001056 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057
Takashi Iwai83012a72012-08-24 18:38:08 +02001058#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01001059 codec->power_jiffies = jiffies;
Takashi Iwaicb53c622007-08-10 17:21:45 +02001060#endif
1061
Takashi Iwai648a8d22014-02-25 10:38:13 +01001062 snd_hda_sysfs_init(codec);
1063
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001064 if (codec->bus->modelname) {
1065 codec->modelname = kstrdup(codec->bus->modelname, GFP_KERNEL);
1066 if (!codec->modelname) {
Takashi Iwai13aeaf62014-02-25 07:53:47 +01001067 err = -ENODEV;
1068 goto error;
Takashi Iwaic382a9f2012-05-07 15:01:02 +02001069 }
1070 }
1071
Takashi Iwai7639a062015-03-03 10:07:24 +01001072 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Takashi Iwaid8193872012-08-31 07:54:38 -07001073 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001074 if (err < 0)
Takashi Iwai3be14142009-02-20 14:11:16 +01001075 goto error;
Takashi Iwai3be14142009-02-20 14:11:16 +01001076 err = read_pin_defaults(codec);
1077 if (err < 0)
1078 goto error;
Takashi Iwai54d17402005-11-21 16:33:22 +01001079
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001080 /* power-up all before initialization */
Takashi Iwaid8193872012-08-31 07:54:38 -07001081 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaibb6ac722009-03-13 09:02:42 +01001082
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001083 snd_hda_codec_proc_new(codec);
1084
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001085 snd_hda_create_hwdep(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001086
Takashi Iwai7639a062015-03-03 10:07:24 +01001087 sprintf(component, "HDA:%08x,%08x,%08x", codec->core.vendor_id,
1088 codec->core.subsystem_id, codec->core.revision_id);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001089 snd_component_add(card, component);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001090
Takashi Iwai6efdd852015-02-27 16:09:22 +01001091 err = snd_device_new(card, SNDRV_DEV_CODEC, codec, &dev_ops);
Takashi Iwai2565c892014-02-19 11:41:09 +01001092 if (err < 0)
1093 goto error;
1094
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001095 if (codecp)
1096 *codecp = codec;
1097 return 0;
Takashi Iwai3be14142009-02-20 14:11:16 +01001098
1099 error:
Takashi Iwaid56db742015-02-27 23:25:35 +01001100 put_device(hda_codec_dev(codec));
Takashi Iwai3be14142009-02-20 14:11:16 +01001101 return err;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001102}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001103EXPORT_SYMBOL_GPL(snd_hda_codec_new);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001104
Takashi Iwai95a962c2014-10-29 16:03:58 +01001105/**
1106 * snd_hda_codec_update_widgets - Refresh widget caps and pin defaults
1107 * @codec: the HDA codec
1108 *
1109 * Forcibly refresh the all widget caps and the init pin configurations of
1110 * the given codec.
1111 */
Mengdong Lina15d05d2013-02-08 17:09:31 -05001112int snd_hda_codec_update_widgets(struct hda_codec *codec)
1113{
1114 hda_nid_t fg;
1115 int err;
1116
Takashi Iwai7639a062015-03-03 10:07:24 +01001117 err = snd_hdac_refresh_widgets(&codec->core);
1118 if (err < 0)
1119 return err;
1120
Mengdong Lina15d05d2013-02-08 17:09:31 -05001121 /* Assume the function group node does not change,
1122 * only the widget nodes may change.
1123 */
1124 kfree(codec->wcaps);
Takashi Iwai7639a062015-03-03 10:07:24 +01001125 fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001126 err = read_widget_caps(codec, fg);
Takashi Iwaif4de8fe2015-02-27 16:17:18 +01001127 if (err < 0)
Mengdong Lina15d05d2013-02-08 17:09:31 -05001128 return err;
Mengdong Lina15d05d2013-02-08 17:09:31 -05001129
1130 snd_array_free(&codec->init_pins);
1131 err = read_pin_defaults(codec);
1132
1133 return err;
1134}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001135EXPORT_SYMBOL_GPL(snd_hda_codec_update_widgets);
Mengdong Lina15d05d2013-02-08 17:09:31 -05001136
Takashi Iwaied360812012-08-08 17:12:52 +02001137/* update the stream-id if changed */
1138static void update_pcm_stream_id(struct hda_codec *codec,
1139 struct hda_cvt_setup *p, hda_nid_t nid,
1140 u32 stream_tag, int channel_id)
1141{
1142 unsigned int oldval, newval;
1143
1144 if (p->stream_tag != stream_tag || p->channel_id != channel_id) {
1145 oldval = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONV, 0);
1146 newval = (stream_tag << 4) | channel_id;
1147 if (oldval != newval)
1148 snd_hda_codec_write(codec, nid, 0,
1149 AC_VERB_SET_CHANNEL_STREAMID,
1150 newval);
1151 p->stream_tag = stream_tag;
1152 p->channel_id = channel_id;
1153 }
1154}
1155
1156/* update the format-id if changed */
1157static void update_pcm_format(struct hda_codec *codec, struct hda_cvt_setup *p,
1158 hda_nid_t nid, int format)
1159{
1160 unsigned int oldval;
1161
1162 if (p->format_id != format) {
1163 oldval = snd_hda_codec_read(codec, nid, 0,
1164 AC_VERB_GET_STREAM_FORMAT, 0);
1165 if (oldval != format) {
1166 msleep(1);
1167 snd_hda_codec_write(codec, nid, 0,
1168 AC_VERB_SET_STREAM_FORMAT,
1169 format);
1170 }
1171 p->format_id = format;
1172 }
1173}
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/**
1176 * snd_hda_codec_setup_stream - set up the codec for streaming
1177 * @codec: the CODEC to set up
1178 * @nid: the NID to set up
1179 * @stream_tag: stream tag to pass, it's between 0x1 and 0xf.
1180 * @channel_id: channel id to pass, zero based.
1181 * @format: stream format.
1182 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001183void snd_hda_codec_setup_stream(struct hda_codec *codec, hda_nid_t nid,
1184 u32 stream_tag,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 int channel_id, int format)
1186{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001187 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001188 struct hda_cvt_setup *p;
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001189 int type;
Takashi Iwaieb541332010-08-06 13:48:11 +02001190 int i;
1191
Takashi Iwai0ba21762007-04-16 11:29:14 +02001192 if (!nid)
Takashi Iwaid21b37e2005-04-20 13:45:55 +02001193 return;
1194
Takashi Iwai4e76a882014-02-25 12:21:03 +01001195 codec_dbg(codec,
1196 "hda_codec_setup_stream: NID=0x%x, stream=0x%x, channel=%d, format=0x%x\n",
1197 nid, stream_tag, channel_id, format);
Takashi Iwaieb541332010-08-06 13:48:11 +02001198 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001199 if (!p)
Takashi Iwaieb541332010-08-06 13:48:11 +02001200 return;
Takashi Iwaied360812012-08-08 17:12:52 +02001201
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001202 if (codec->patch_ops.stream_pm)
1203 codec->patch_ops.stream_pm(codec, nid, true);
Takashi Iwaied360812012-08-08 17:12:52 +02001204 if (codec->pcm_format_first)
1205 update_pcm_format(codec, p, nid, format);
1206 update_pcm_stream_id(codec, p, nid, stream_tag, channel_id);
1207 if (!codec->pcm_format_first)
1208 update_pcm_format(codec, p, nid, format);
1209
Takashi Iwaieb541332010-08-06 13:48:11 +02001210 p->active = 1;
1211 p->dirty = 0;
1212
1213 /* make other inactive cvts with the same stream-tag dirty */
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001214 type = get_wcaps_type(get_wcaps(codec, nid));
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001215 list_for_each_codec(c, codec->bus) {
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001216 for (i = 0; i < c->cvt_setups.used; i++) {
1217 p = snd_array_elem(&c->cvt_setups, i);
Takashi Iwai62b7e5e2010-10-22 17:15:47 +02001218 if (!p->active && p->stream_tag == stream_tag &&
David Henningsson54c2a892012-02-01 12:05:41 +01001219 get_wcaps_type(get_wcaps(c, p->nid)) == type)
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001220 p->dirty = 1;
1221 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001224EXPORT_SYMBOL_GPL(snd_hda_codec_setup_stream);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Takashi Iwaif0cea792010-08-13 11:56:53 +02001226static void really_cleanup_stream(struct hda_codec *codec,
1227 struct hda_cvt_setup *q);
1228
Takashi Iwaid5191e52009-11-16 14:58:17 +01001229/**
Takashi Iwaif0cea792010-08-13 11:56:53 +02001230 * __snd_hda_codec_cleanup_stream - clean up the codec for closing
Takashi Iwaid5191e52009-11-16 14:58:17 +01001231 * @codec: the CODEC to clean up
1232 * @nid: the NID to clean up
Takashi Iwaif0cea792010-08-13 11:56:53 +02001233 * @do_now: really clean up the stream instead of clearing the active flag
Takashi Iwaid5191e52009-11-16 14:58:17 +01001234 */
Takashi Iwaif0cea792010-08-13 11:56:53 +02001235void __snd_hda_codec_cleanup_stream(struct hda_codec *codec, hda_nid_t nid,
1236 int do_now)
Takashi Iwai888afa12008-03-18 09:57:50 +01001237{
Takashi Iwaieb541332010-08-06 13:48:11 +02001238 struct hda_cvt_setup *p;
1239
Takashi Iwai888afa12008-03-18 09:57:50 +01001240 if (!nid)
1241 return;
1242
Takashi Iwai0e7adbe2010-10-25 10:37:11 +02001243 if (codec->no_sticky_stream)
1244 do_now = 1;
1245
Takashi Iwai4e76a882014-02-25 12:21:03 +01001246 codec_dbg(codec, "hda_codec_cleanup_stream: NID=0x%x\n", nid);
Takashi Iwaieb541332010-08-06 13:48:11 +02001247 p = get_hda_cvt_setup(codec, nid);
Takashi Iwai6c35ae32013-05-10 13:39:50 +02001248 if (p) {
Takashi Iwaif0cea792010-08-13 11:56:53 +02001249 /* here we just clear the active flag when do_now isn't set;
1250 * actual clean-ups will be done later in
1251 * purify_inactive_streams() called from snd_hda_codec_prpapre()
1252 */
1253 if (do_now)
1254 really_cleanup_stream(codec, p);
1255 else
1256 p->active = 0;
1257 }
Takashi Iwai888afa12008-03-18 09:57:50 +01001258}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001259EXPORT_SYMBOL_GPL(__snd_hda_codec_cleanup_stream);
Takashi Iwai888afa12008-03-18 09:57:50 +01001260
Takashi Iwaieb541332010-08-06 13:48:11 +02001261static void really_cleanup_stream(struct hda_codec *codec,
1262 struct hda_cvt_setup *q)
1263{
1264 hda_nid_t nid = q->nid;
Takashi Iwai218264a2011-09-27 17:33:45 +02001265 if (q->stream_tag || q->channel_id)
1266 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CHANNEL_STREAMID, 0);
1267 if (q->format_id)
1268 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_STREAM_FORMAT, 0
1269);
Takashi Iwaieb541332010-08-06 13:48:11 +02001270 memset(q, 0, sizeof(*q));
1271 q->nid = nid;
Takashi Iwaie6feb5d2015-03-16 21:32:11 +01001272 if (codec->patch_ops.stream_pm)
1273 codec->patch_ops.stream_pm(codec, nid, false);
Takashi Iwaieb541332010-08-06 13:48:11 +02001274}
1275
1276/* clean up the all conflicting obsolete streams */
1277static void purify_inactive_streams(struct hda_codec *codec)
1278{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001279 struct hda_codec *c;
Takashi Iwaieb541332010-08-06 13:48:11 +02001280 int i;
1281
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001282 list_for_each_codec(c, codec->bus) {
Takashi Iwai3f50ac62010-08-20 09:44:36 +02001283 for (i = 0; i < c->cvt_setups.used; i++) {
1284 struct hda_cvt_setup *p;
1285 p = snd_array_elem(&c->cvt_setups, i);
1286 if (p->dirty)
1287 really_cleanup_stream(c, p);
1288 }
Takashi Iwaieb541332010-08-06 13:48:11 +02001289 }
1290}
1291
Takashi Iwai2a439522011-07-26 09:52:50 +02001292#ifdef CONFIG_PM
Takashi Iwaieb541332010-08-06 13:48:11 +02001293/* clean up all streams; called from suspend */
1294static void hda_cleanup_all_streams(struct hda_codec *codec)
1295{
1296 int i;
1297
1298 for (i = 0; i < codec->cvt_setups.used; i++) {
1299 struct hda_cvt_setup *p = snd_array_elem(&codec->cvt_setups, i);
1300 if (p->stream_tag)
1301 really_cleanup_stream(codec, p);
1302 }
1303}
Mike Waychison1c7276c2011-04-20 12:04:36 -07001304#endif
Takashi Iwaieb541332010-08-06 13:48:11 +02001305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306/*
1307 * amp access functions
1308 */
1309
Takashi Iwaid5191e52009-11-16 14:58:17 +01001310/**
1311 * query_amp_caps - query AMP capabilities
1312 * @codec: the HD-auio codec
1313 * @nid: the NID to query
1314 * @direction: either #HDA_INPUT or #HDA_OUTPUT
1315 *
1316 * Query AMP capabilities for the given widget and direction.
1317 * Returns the obtained capability bits.
1318 *
1319 * When cap bits have been already read, this doesn't read again but
1320 * returns the cached value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 */
Matthew Ranostay09a99952008-01-24 11:49:21 +01001322u32 query_amp_caps(struct hda_codec *codec, hda_nid_t nid, int direction)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001324 if (!(get_wcaps(codec, nid) & AC_WCAP_AMP_OVRD))
1325 nid = codec->core.afg;
1326 return snd_hda_param_read(codec, nid,
1327 direction == HDA_OUTPUT ?
1328 AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001330EXPORT_SYMBOL_GPL(query_amp_caps);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331
Takashi Iwaid5191e52009-11-16 14:58:17 +01001332/**
David Henningsson861a04e2014-09-23 10:38:17 +02001333 * snd_hda_check_amp_caps - query AMP capabilities
1334 * @codec: the HD-audio codec
1335 * @nid: the NID to query
1336 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001337 * @bits: bit mask to check the result
David Henningsson861a04e2014-09-23 10:38:17 +02001338 *
1339 * Check whether the widget has the given amp capability for the direction.
1340 */
1341bool snd_hda_check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
1342 int dir, unsigned int bits)
1343{
1344 if (!nid)
1345 return false;
1346 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
1347 if (query_amp_caps(codec, nid, dir) & bits)
1348 return true;
1349 return false;
1350}
1351EXPORT_SYMBOL_GPL(snd_hda_check_amp_caps);
1352
1353/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001354 * snd_hda_override_amp_caps - Override the AMP capabilities
1355 * @codec: the CODEC to clean up
1356 * @nid: the NID to clean up
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001357 * @dir: either #HDA_INPUT or #HDA_OUTPUT
Takashi Iwaid5191e52009-11-16 14:58:17 +01001358 * @caps: the capability bits to set
1359 *
1360 * Override the cached AMP caps bits value by the given one.
1361 * This function is useful if the driver needs to adjust the AMP ranges,
1362 * e.g. limit to 0dB, etc.
1363 *
1364 * Returns zero if successful or a negative error code.
1365 */
Takashi Iwai897cc182007-05-29 19:01:37 +02001366int snd_hda_override_amp_caps(struct hda_codec *codec, hda_nid_t nid, int dir,
1367 unsigned int caps)
1368{
Takashi Iwaifaa75f82015-02-26 08:54:56 +01001369 unsigned int parm;
1370
1371 snd_hda_override_wcaps(codec, nid,
1372 get_wcaps(codec, nid) | AC_WCAP_AMP_OVRD);
1373 parm = dir == HDA_OUTPUT ? AC_PAR_AMP_OUT_CAP : AC_PAR_AMP_IN_CAP;
1374 return snd_hdac_override_parm(&codec->core, nid, parm, caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001375}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001376EXPORT_SYMBOL_GPL(snd_hda_override_amp_caps);
Takashi Iwai897cc182007-05-29 19:01:37 +02001377
Takashi Iwaid5191e52009-11-16 14:58:17 +01001378/**
Takashi Iwaia686ec42015-06-11 10:51:28 +02001379 * snd_hda_codec_amp_update - update the AMP mono value
1380 * @codec: HD-audio codec
1381 * @nid: NID to read the AMP value
1382 * @ch: channel to update (0 or 1)
1383 * @dir: #HDA_INPUT or #HDA_OUTPUT
1384 * @idx: the index value (only for input direction)
1385 * @mask: bit mask to set
1386 * @val: the bits value to set
1387 *
1388 * Update the AMP values for the given channel, direction and index.
1389 */
1390int snd_hda_codec_amp_update(struct hda_codec *codec, hda_nid_t nid,
1391 int ch, int dir, int idx, int mask, int val)
1392{
1393 unsigned int cmd = snd_hdac_regmap_encode_amp(nid, ch, dir, idx);
1394
1395 /* enable fake mute if no h/w mute but min=mute */
1396 if ((query_amp_caps(codec, nid, dir) &
1397 (AC_AMPCAP_MUTE | AC_AMPCAP_MIN_MUTE)) == AC_AMPCAP_MIN_MUTE)
1398 cmd |= AC_AMP_FAKE_MUTE;
1399 return snd_hdac_regmap_update_raw(&codec->core, cmd, mask, val);
1400}
1401EXPORT_SYMBOL_GPL(snd_hda_codec_amp_update);
1402
1403/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001404 * snd_hda_codec_amp_stereo - update the AMP stereo values
1405 * @codec: HD-audio codec
1406 * @nid: NID to read the AMP value
1407 * @direction: #HDA_INPUT or #HDA_OUTPUT
1408 * @idx: the index value (only for input direction)
1409 * @mask: bit mask to set
1410 * @val: the bits value to set
1411 *
1412 * Update the AMP values like snd_hda_codec_amp_update(), but for a
1413 * stereo widget with the same mask and value.
Takashi Iwai47fd8302007-08-10 17:11:07 +02001414 */
1415int snd_hda_codec_amp_stereo(struct hda_codec *codec, hda_nid_t nid,
1416 int direction, int idx, int mask, int val)
1417{
1418 int ch, ret = 0;
Takashi Iwai467126462010-03-29 09:19:38 +02001419
1420 if (snd_BUG_ON(mask & ~0xff))
1421 mask &= 0xff;
Takashi Iwai47fd8302007-08-10 17:11:07 +02001422 for (ch = 0; ch < 2; ch++)
1423 ret |= snd_hda_codec_amp_update(codec, nid, ch, direction,
1424 idx, mask, val);
1425 return ret;
1426}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001427EXPORT_SYMBOL_GPL(snd_hda_codec_amp_stereo);
Takashi Iwai47fd8302007-08-10 17:11:07 +02001428
Takashi Iwai95a962c2014-10-29 16:03:58 +01001429/**
1430 * snd_hda_codec_amp_init - initialize the AMP value
1431 * @codec: the HDA codec
1432 * @nid: NID to read the AMP value
1433 * @ch: channel (left=0 or right=1)
1434 * @dir: #HDA_INPUT or #HDA_OUTPUT
1435 * @idx: the index value (only for input direction)
1436 * @mask: bit mask to set
1437 * @val: the bits value to set
1438 *
1439 * Works like snd_hda_codec_amp_update() but it writes the value only at
Takashi Iwai280e57d2012-12-14 10:32:21 +01001440 * the first access. If the amp was already initialized / updated beforehand,
1441 * this does nothing.
1442 */
1443int snd_hda_codec_amp_init(struct hda_codec *codec, hda_nid_t nid, int ch,
1444 int dir, int idx, int mask, int val)
1445{
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001446 int orig;
1447
1448 if (!codec->core.regmap)
1449 return -EINVAL;
1450 regcache_cache_only(codec->core.regmap, true);
1451 orig = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1452 regcache_cache_only(codec->core.regmap, false);
1453 if (orig >= 0)
1454 return 0;
1455 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx, mask, val);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001456}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001457EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001458
Takashi Iwai95a962c2014-10-29 16:03:58 +01001459/**
1460 * snd_hda_codec_amp_init_stereo - initialize the stereo AMP value
1461 * @codec: the HDA codec
1462 * @nid: NID to read the AMP value
1463 * @dir: #HDA_INPUT or #HDA_OUTPUT
1464 * @idx: the index value (only for input direction)
1465 * @mask: bit mask to set
1466 * @val: the bits value to set
1467 *
1468 * Call snd_hda_codec_amp_init() for both stereo channels.
1469 */
Takashi Iwai280e57d2012-12-14 10:32:21 +01001470int snd_hda_codec_amp_init_stereo(struct hda_codec *codec, hda_nid_t nid,
1471 int dir, int idx, int mask, int val)
1472{
1473 int ch, ret = 0;
1474
1475 if (snd_BUG_ON(mask & ~0xff))
1476 mask &= 0xff;
1477 for (ch = 0; ch < 2; ch++)
1478 ret |= snd_hda_codec_amp_init(codec, nid, ch, dir,
1479 idx, mask, val);
1480 return ret;
1481}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001482EXPORT_SYMBOL_GPL(snd_hda_codec_amp_init_stereo);
Takashi Iwai280e57d2012-12-14 10:32:21 +01001483
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001484static u32 get_amp_max_value(struct hda_codec *codec, hda_nid_t nid, int dir,
1485 unsigned int ofs)
1486{
1487 u32 caps = query_amp_caps(codec, nid, dir);
1488 /* get num steps */
1489 caps = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1490 if (ofs < caps)
1491 caps -= ofs;
1492 return caps;
1493}
1494
Takashi Iwaid5191e52009-11-16 14:58:17 +01001495/**
1496 * snd_hda_mixer_amp_volume_info - Info callback for a standard AMP mixer
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001497 * @kcontrol: referred ctl element
1498 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001499 *
1500 * The control element is supposed to have the private_value field
1501 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1502 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001503int snd_hda_mixer_amp_volume_info(struct snd_kcontrol *kcontrol,
1504 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505{
1506 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1507 u16 nid = get_amp_nid(kcontrol);
1508 u8 chs = get_amp_channels(kcontrol);
1509 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001510 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001512 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
1513 uinfo->count = chs == 3 ? 2 : 1;
1514 uinfo->value.integer.min = 0;
1515 uinfo->value.integer.max = get_amp_max_value(codec, nid, dir, ofs);
1516 if (!uinfo->value.integer.max) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01001517 codec_warn(codec,
1518 "num_steps = 0 for NID=0x%x (ctl = %s)\n",
1519 nid, kcontrol->id.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 return -EINVAL;
1521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return 0;
1523}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001524EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001526
1527static inline unsigned int
1528read_amp_value(struct hda_codec *codec, hda_nid_t nid,
1529 int ch, int dir, int idx, unsigned int ofs)
1530{
1531 unsigned int val;
1532 val = snd_hda_codec_amp_read(codec, nid, ch, dir, idx);
1533 val &= HDA_AMP_VOLMASK;
1534 if (val >= ofs)
1535 val -= ofs;
1536 else
1537 val = 0;
1538 return val;
1539}
1540
1541static inline int
1542update_amp_value(struct hda_codec *codec, hda_nid_t nid,
1543 int ch, int dir, int idx, unsigned int ofs,
1544 unsigned int val)
1545{
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001546 unsigned int maxval;
1547
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001548 if (val > 0)
1549 val += ofs;
Takashi Iwai7ccc3ef2010-07-26 17:00:15 +02001550 /* ofs = 0: raw max value */
1551 maxval = get_amp_max_value(codec, nid, dir, 0);
Takashi Iwaiafbd9b82010-07-08 18:40:37 +02001552 if (val > maxval)
1553 val = maxval;
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01001554 return snd_hda_codec_amp_update(codec, nid, ch, dir, idx,
1555 HDA_AMP_VOLMASK, val);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001556}
1557
Takashi Iwaid5191e52009-11-16 14:58:17 +01001558/**
1559 * snd_hda_mixer_amp_volume_get - Get callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001560 * @kcontrol: ctl element
1561 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001562 *
1563 * The control element is supposed to have the private_value field
1564 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1565 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001566int snd_hda_mixer_amp_volume_get(struct snd_kcontrol *kcontrol,
1567 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568{
1569 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1570 hda_nid_t nid = get_amp_nid(kcontrol);
1571 int chs = get_amp_channels(kcontrol);
1572 int dir = get_amp_direction(kcontrol);
1573 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001574 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 long *valp = ucontrol->value.integer.value;
1576
1577 if (chs & 1)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001578 *valp++ = read_amp_value(codec, nid, 0, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001580 *valp = read_amp_value(codec, nid, 1, dir, idx, ofs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 return 0;
1582}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001583EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Takashi Iwaid5191e52009-11-16 14:58:17 +01001585/**
1586 * snd_hda_mixer_amp_volume_put - Put callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001587 * @kcontrol: ctl element
1588 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001589 *
1590 * The control element is supposed to have the private_value field
1591 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1592 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02001593int snd_hda_mixer_amp_volume_put(struct snd_kcontrol *kcontrol,
1594 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595{
1596 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1597 hda_nid_t nid = get_amp_nid(kcontrol);
1598 int chs = get_amp_channels(kcontrol);
1599 int dir = get_amp_direction(kcontrol);
1600 int idx = get_amp_index(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001601 unsigned int ofs = get_amp_offset(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 long *valp = ucontrol->value.integer.value;
1603 int change = 0;
1604
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001605 if (chs & 1) {
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001606 change = update_amp_value(codec, nid, 0, dir, idx, ofs, *valp);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02001607 valp++;
1608 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02001609 if (chs & 2)
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001610 change |= update_amp_value(codec, nid, 1, dir, idx, ofs, *valp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return change;
1612}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001613EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_volume_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Takashi Iwaid5191e52009-11-16 14:58:17 +01001615/**
1616 * snd_hda_mixer_amp_volume_put - TLV callback for a standard AMP mixer volume
Takashi Iwaia11e9b12014-10-29 15:06:01 +01001617 * @kcontrol: ctl element
1618 * @op_flag: operation flag
1619 * @size: byte size of input TLV
1620 * @_tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01001621 *
1622 * The control element is supposed to have the private_value field
1623 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
1624 */
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001625int snd_hda_mixer_amp_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1626 unsigned int size, unsigned int __user *_tlv)
1627{
1628 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1629 hda_nid_t nid = get_amp_nid(kcontrol);
1630 int dir = get_amp_direction(kcontrol);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001631 unsigned int ofs = get_amp_offset(kcontrol);
Clemens Ladischde8c85f2010-10-15 10:32:50 +02001632 bool min_mute = get_amp_min_mute(kcontrol);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001633 u32 caps, val1, val2;
1634
1635 if (size < 4 * sizeof(unsigned int))
1636 return -ENOMEM;
1637 caps = query_amp_caps(codec, nid, dir);
Takashi Iwai0ba21762007-04-16 11:29:14 +02001638 val2 = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1639 val2 = (val2 + 1) * 25;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001640 val1 = -((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT);
Takashi Iwai29fdbec2009-01-20 13:07:55 +01001641 val1 += ofs;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001642 val1 = ((int)val1) * ((int)val2);
Takashi Iwai38681372012-02-27 15:00:58 +01001643 if (min_mute || (caps & AC_AMPCAP_MIN_MUTE))
Takashi Iwaic08d9162010-10-17 10:40:53 +02001644 val2 |= TLV_DB_SCALE_MUTE;
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001645 if (put_user(SNDRV_CTL_TLVT_DB_SCALE, _tlv))
1646 return -EFAULT;
1647 if (put_user(2 * sizeof(unsigned int), _tlv + 1))
1648 return -EFAULT;
1649 if (put_user(val1, _tlv + 2))
1650 return -EFAULT;
1651 if (put_user(val2, _tlv + 3))
1652 return -EFAULT;
1653 return 0;
1654}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001655EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_tlv);
Jaroslav Kysela302e9c52006-07-05 17:39:49 +02001656
Takashi Iwaid5191e52009-11-16 14:58:17 +01001657/**
1658 * snd_hda_set_vmaster_tlv - Set TLV for a virtual master control
1659 * @codec: HD-audio codec
1660 * @nid: NID of a reference widget
1661 * @dir: #HDA_INPUT or #HDA_OUTPUT
1662 * @tlv: TLV data to be stored, at least 4 elements
1663 *
1664 * Set (static) TLV data for a virtual master volume using the AMP caps
1665 * obtained from the reference NID.
1666 * The volume range is recalculated as if the max volume is 0dB.
Takashi Iwai2134ea42008-01-10 16:53:55 +01001667 */
1668void snd_hda_set_vmaster_tlv(struct hda_codec *codec, hda_nid_t nid, int dir,
1669 unsigned int *tlv)
1670{
1671 u32 caps;
1672 int nums, step;
1673
1674 caps = query_amp_caps(codec, nid, dir);
1675 nums = (caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT;
1676 step = (caps & AC_AMPCAP_STEP_SIZE) >> AC_AMPCAP_STEP_SIZE_SHIFT;
1677 step = (step + 1) * 25;
1678 tlv[0] = SNDRV_CTL_TLVT_DB_SCALE;
1679 tlv[1] = 2 * sizeof(unsigned int);
1680 tlv[2] = -nums * step;
1681 tlv[3] = step;
1682}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001683EXPORT_SYMBOL_GPL(snd_hda_set_vmaster_tlv);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001684
1685/* find a mixer control element with the given name */
Takashi Iwai09f99702008-02-04 12:31:13 +01001686static struct snd_kcontrol *
Takashi Iwaidcda5802012-10-12 17:24:51 +02001687find_mixer_ctl(struct hda_codec *codec, const char *name, int dev, int idx)
Takashi Iwai2134ea42008-01-10 16:53:55 +01001688{
1689 struct snd_ctl_elem_id id;
1690 memset(&id, 0, sizeof(id));
1691 id.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
Takashi Iwaidcda5802012-10-12 17:24:51 +02001692 id.device = dev;
Takashi Iwai09f99702008-02-04 12:31:13 +01001693 id.index = idx;
Takashi Iwai18cb7102009-04-16 10:22:24 +02001694 if (snd_BUG_ON(strlen(name) >= sizeof(id.name)))
1695 return NULL;
Takashi Iwai2134ea42008-01-10 16:53:55 +01001696 strcpy(id.name, name);
Takashi Iwai6efdd852015-02-27 16:09:22 +01001697 return snd_ctl_find_id(codec->card, &id);
Takashi Iwai2134ea42008-01-10 16:53:55 +01001698}
1699
Takashi Iwaid5191e52009-11-16 14:58:17 +01001700/**
1701 * snd_hda_find_mixer_ctl - Find a mixer control element with the given name
1702 * @codec: HD-audio codec
1703 * @name: ctl id name string
1704 *
1705 * Get the control element with the given id string and IFACE_MIXER.
1706 */
Takashi Iwai09f99702008-02-04 12:31:13 +01001707struct snd_kcontrol *snd_hda_find_mixer_ctl(struct hda_codec *codec,
1708 const char *name)
1709{
Takashi Iwaidcda5802012-10-12 17:24:51 +02001710 return find_mixer_ctl(codec, name, 0, 0);
Takashi Iwai09f99702008-02-04 12:31:13 +01001711}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001712EXPORT_SYMBOL_GPL(snd_hda_find_mixer_ctl);
Takashi Iwai09f99702008-02-04 12:31:13 +01001713
Takashi Iwaidcda5802012-10-12 17:24:51 +02001714static int find_empty_mixer_ctl_idx(struct hda_codec *codec, const char *name,
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001715 int start_idx)
Takashi Iwai1afe2062010-12-23 10:17:52 +01001716{
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01001717 int i, idx;
1718 /* 16 ctlrs should be large enough */
1719 for (i = 0, idx = start_idx; i < 16; i++, idx++) {
1720 if (!find_mixer_ctl(codec, name, 0, idx))
Takashi Iwai1afe2062010-12-23 10:17:52 +01001721 return idx;
1722 }
1723 return -EBUSY;
1724}
1725
Takashi Iwaid5191e52009-11-16 14:58:17 +01001726/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001727 * snd_hda_ctl_add - Add a control element and assign to the codec
Takashi Iwaid5191e52009-11-16 14:58:17 +01001728 * @codec: HD-audio codec
1729 * @nid: corresponding NID (optional)
1730 * @kctl: the control element to assign
1731 *
1732 * Add the given control element to an array inside the codec instance.
1733 * All control elements belonging to a codec are supposed to be added
1734 * by this function so that a proper clean-up works at the free or
1735 * reconfiguration time.
1736 *
1737 * If non-zero @nid is passed, the NID is assigned to the control element.
1738 * The assignment is shown in the codec proc file.
1739 *
1740 * snd_hda_ctl_add() checks the control subdev id field whether
1741 * #HDA_SUBDEV_NID_FLAG bit is set. If set (and @nid is zero), the lower
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001742 * bits value is taken as the NID to assign. The #HDA_NID_ITEM_AMP bit
1743 * specifies if kctl->private_value is a HDA amplifier value.
Takashi Iwaid5191e52009-11-16 14:58:17 +01001744 */
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001745int snd_hda_ctl_add(struct hda_codec *codec, hda_nid_t nid,
1746 struct snd_kcontrol *kctl)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001747{
1748 int err;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001749 unsigned short flags = 0;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001750 struct hda_nid_item *item;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001751
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001752 if (kctl->id.subdevice & HDA_SUBDEV_AMP_FLAG) {
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001753 flags |= HDA_NID_ITEM_AMP;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001754 if (nid == 0)
1755 nid = get_amp_nid_(kctl->private_value);
1756 }
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001757 if ((kctl->id.subdevice & HDA_SUBDEV_NID_FLAG) != 0 && nid == 0)
1758 nid = kctl->id.subdevice & 0xffff;
Jaroslav Kysela5e26dfd2009-12-10 13:57:01 +01001759 if (kctl->id.subdevice & (HDA_SUBDEV_NID_FLAG|HDA_SUBDEV_AMP_FLAG))
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01001760 kctl->id.subdevice = 0;
Takashi Iwai6efdd852015-02-27 16:09:22 +01001761 err = snd_ctl_add(codec->card, kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001762 if (err < 0)
1763 return err;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001764 item = snd_array_new(&codec->mixers);
1765 if (!item)
Takashi Iwaid13bd412008-07-30 15:01:45 +02001766 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001767 item->kctl = kctl;
1768 item->nid = nid;
Jaroslav Kysela9e3fd872009-12-08 17:45:25 +01001769 item->flags = flags;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001770 return 0;
1771}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001772EXPORT_SYMBOL_GPL(snd_hda_ctl_add);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001773
Takashi Iwaid5191e52009-11-16 14:58:17 +01001774/**
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001775 * snd_hda_add_nid - Assign a NID to a control element
1776 * @codec: HD-audio codec
1777 * @nid: corresponding NID (optional)
1778 * @kctl: the control element to assign
1779 * @index: index to kctl
1780 *
1781 * Add the given control element to an array inside the codec instance.
1782 * This function is used when #snd_hda_ctl_add cannot be used for 1:1
1783 * NID:KCTL mapping - for example "Capture Source" selector.
1784 */
1785int snd_hda_add_nid(struct hda_codec *codec, struct snd_kcontrol *kctl,
1786 unsigned int index, hda_nid_t nid)
1787{
1788 struct hda_nid_item *item;
1789
1790 if (nid > 0) {
1791 item = snd_array_new(&codec->nids);
1792 if (!item)
1793 return -ENOMEM;
1794 item->kctl = kctl;
1795 item->index = index;
1796 item->nid = nid;
1797 return 0;
1798 }
Takashi Iwai4e76a882014-02-25 12:21:03 +01001799 codec_err(codec, "no NID for mapping control %s:%d:%d\n",
1800 kctl->id.name, kctl->id.index, index);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001801 return -EINVAL;
1802}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001803EXPORT_SYMBOL_GPL(snd_hda_add_nid);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001804
1805/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01001806 * snd_hda_ctls_clear - Clear all controls assigned to the given codec
1807 * @codec: HD-audio codec
1808 */
Takashi Iwaid13bd412008-07-30 15:01:45 +02001809void snd_hda_ctls_clear(struct hda_codec *codec)
1810{
1811 int i;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01001812 struct hda_nid_item *items = codec->mixers.list;
Takashi Iwaid13bd412008-07-30 15:01:45 +02001813 for (i = 0; i < codec->mixers.used; i++)
Takashi Iwai6efdd852015-02-27 16:09:22 +01001814 snd_ctl_remove(codec->card, items[i].kctl);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001815 snd_array_free(&codec->mixers);
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01001816 snd_array_free(&codec->nids);
Takashi Iwaid13bd412008-07-30 15:01:45 +02001817}
1818
Takashi Iwai95a962c2014-10-29 16:03:58 +01001819/**
1820 * snd_hda_lock_devices - pseudo device locking
1821 * @bus: the BUS
1822 *
Takashi Iwaia65d6292009-02-23 16:57:04 +01001823 * toggle card->shutdown to allow/disallow the device access (as a hack)
1824 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001825int snd_hda_lock_devices(struct hda_bus *bus)
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001826{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001827 struct snd_card *card = bus->card;
1828 struct hda_codec *codec;
1829
Takashi Iwaia65d6292009-02-23 16:57:04 +01001830 spin_lock(&card->files_lock);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001831 if (card->shutdown)
1832 goto err_unlock;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001833 card->shutdown = 1;
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001834 if (!list_empty(&card->ctl_files))
1835 goto err_clear;
1836
Takashi Iwaid068ebc2015-03-02 23:22:59 +01001837 list_for_each_codec(codec, bus) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01001838 struct hda_pcm *cpcm;
1839 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001840 if (!cpcm->pcm)
1841 continue;
1842 if (cpcm->pcm->streams[0].substream_opened ||
1843 cpcm->pcm->streams[1].substream_opened)
1844 goto err_clear;
1845 }
1846 }
Takashi Iwaia65d6292009-02-23 16:57:04 +01001847 spin_unlock(&card->files_lock);
1848 return 0;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001849
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001850 err_clear:
1851 card->shutdown = 0;
1852 err_unlock:
1853 spin_unlock(&card->files_lock);
1854 return -EINVAL;
1855}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001856EXPORT_SYMBOL_GPL(snd_hda_lock_devices);
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001857
Takashi Iwai95a962c2014-10-29 16:03:58 +01001858/**
1859 * snd_hda_unlock_devices - pseudo device unlocking
1860 * @bus: the BUS
1861 */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001862void snd_hda_unlock_devices(struct hda_bus *bus)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001863{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001864 struct snd_card *card = bus->card;
1865
Takashi Iwaia65d6292009-02-23 16:57:04 +01001866 spin_lock(&card->files_lock);
1867 card->shutdown = 0;
1868 spin_unlock(&card->files_lock);
1869}
Takashi Iwai2698ea92013-12-18 07:45:52 +01001870EXPORT_SYMBOL_GPL(snd_hda_unlock_devices);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001871
Takashi Iwaid5191e52009-11-16 14:58:17 +01001872/**
1873 * snd_hda_codec_reset - Clear all objects assigned to the codec
1874 * @codec: HD-audio codec
1875 *
1876 * This frees the all PCM and control elements assigned to the codec, and
1877 * clears the caches and restores the pin default configurations.
1878 *
1879 * When a device is being used, it returns -EBSY. If successfully freed,
1880 * returns zero.
1881 */
Takashi Iwaia65d6292009-02-23 16:57:04 +01001882int snd_hda_codec_reset(struct hda_codec *codec)
1883{
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001884 struct hda_bus *bus = codec->bus;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001885
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001886 if (snd_hda_lock_devices(bus) < 0)
Takashi Iwaia65d6292009-02-23 16:57:04 +01001887 return -EBUSY;
Takashi Iwaia65d6292009-02-23 16:57:04 +01001888
1889 /* OK, let it free */
Takashi Iwai3256be62015-02-24 14:59:42 +01001890 snd_hdac_device_unregister(&codec->core);
Takashi Iwaid8a766a2015-02-17 15:25:37 +01001891
Takashi Iwaia65d6292009-02-23 16:57:04 +01001892 /* allow device access again */
Takashi Iwaid3d020b2012-04-26 12:11:44 +02001893 snd_hda_unlock_devices(bus);
Takashi Iwaia65d6292009-02-23 16:57:04 +01001894 return 0;
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02001895}
1896
Takashi Iwai6194b992014-06-06 18:12:16 +02001897typedef int (*map_slave_func_t)(struct hda_codec *, void *, struct snd_kcontrol *);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001898
1899/* apply the function to all matching slave ctls in the mixer list */
1900static int map_slaves(struct hda_codec *codec, const char * const *slaves,
Takashi Iwai9322ca52012-02-03 14:28:01 +01001901 const char *suffix, map_slave_func_t func, void *data)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001902{
1903 struct hda_nid_item *items;
1904 const char * const *s;
1905 int i, err;
1906
1907 items = codec->mixers.list;
1908 for (i = 0; i < codec->mixers.used; i++) {
1909 struct snd_kcontrol *sctl = items[i].kctl;
Takashi Iwaica16ec02013-10-28 12:00:35 +01001910 if (!sctl || sctl->id.iface != SNDRV_CTL_ELEM_IFACE_MIXER)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001911 continue;
1912 for (s = slaves; *s; s++) {
Takashi Iwai9322ca52012-02-03 14:28:01 +01001913 char tmpname[sizeof(sctl->id.name)];
1914 const char *name = *s;
1915 if (suffix) {
1916 snprintf(tmpname, sizeof(tmpname), "%s %s",
1917 name, suffix);
1918 name = tmpname;
1919 }
Takashi Iwai9322ca52012-02-03 14:28:01 +01001920 if (!strcmp(sctl->id.name, name)) {
Takashi Iwai6194b992014-06-06 18:12:16 +02001921 err = func(codec, data, sctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001922 if (err)
1923 return err;
1924 break;
1925 }
1926 }
1927 }
1928 return 0;
1929}
1930
Takashi Iwai6194b992014-06-06 18:12:16 +02001931static int check_slave_present(struct hda_codec *codec,
1932 void *data, struct snd_kcontrol *sctl)
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01001933{
1934 return 1;
1935}
1936
Takashi Iwai18478e82012-03-09 17:51:10 +01001937/* guess the value corresponding to 0dB */
Takashi Iwai6194b992014-06-06 18:12:16 +02001938static int get_kctl_0dB_offset(struct hda_codec *codec,
1939 struct snd_kcontrol *kctl, int *step_to_check)
Takashi Iwai18478e82012-03-09 17:51:10 +01001940{
1941 int _tlv[4];
1942 const int *tlv = NULL;
1943 int val = -1;
1944
1945 if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) {
1946 /* FIXME: set_fs() hack for obtaining user-space TLV data */
1947 mm_segment_t fs = get_fs();
1948 set_fs(get_ds());
1949 if (!kctl->tlv.c(kctl, 0, sizeof(_tlv), _tlv))
1950 tlv = _tlv;
1951 set_fs(fs);
1952 } else if (kctl->vd[0].access & SNDRV_CTL_ELEM_ACCESS_TLV_READ)
1953 tlv = kctl->tlv.p;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01001954 if (tlv && tlv[0] == SNDRV_CTL_TLVT_DB_SCALE) {
1955 int step = tlv[3];
1956 step &= ~TLV_DB_SCALE_MUTE;
1957 if (!step)
1958 return -1;
Takashi Iwai485e3e02013-11-04 15:51:00 +01001959 if (*step_to_check && *step_to_check != step) {
Takashi Iwai6194b992014-06-06 18:12:16 +02001960 codec_err(codec, "Mismatching dB step for vmaster slave (%d!=%d)\n",
Takashi Iwai4e76a882014-02-25 12:21:03 +01001961- *step_to_check, step);
Takashi Iwai485e3e02013-11-04 15:51:00 +01001962 return -1;
1963 }
1964 *step_to_check = step;
Takashi Iwaia4e7a122013-11-04 15:44:09 +01001965 val = -tlv[2] / step;
1966 }
Takashi Iwai18478e82012-03-09 17:51:10 +01001967 return val;
1968}
1969
1970/* call kctl->put with the given value(s) */
1971static int put_kctl_with_value(struct snd_kcontrol *kctl, int val)
1972{
1973 struct snd_ctl_elem_value *ucontrol;
1974 ucontrol = kzalloc(sizeof(*ucontrol), GFP_KERNEL);
1975 if (!ucontrol)
1976 return -ENOMEM;
1977 ucontrol->value.integer.value[0] = val;
1978 ucontrol->value.integer.value[1] = val;
1979 kctl->put(kctl, ucontrol);
1980 kfree(ucontrol);
1981 return 0;
1982}
1983
1984/* initialize the slave volume with 0dB */
Takashi Iwai6194b992014-06-06 18:12:16 +02001985static int init_slave_0dB(struct hda_codec *codec,
1986 void *data, struct snd_kcontrol *slave)
Takashi Iwai18478e82012-03-09 17:51:10 +01001987{
Takashi Iwai6194b992014-06-06 18:12:16 +02001988 int offset = get_kctl_0dB_offset(codec, slave, data);
Takashi Iwai18478e82012-03-09 17:51:10 +01001989 if (offset > 0)
1990 put_kctl_with_value(slave, offset);
1991 return 0;
1992}
1993
1994/* unmute the slave */
Takashi Iwai6194b992014-06-06 18:12:16 +02001995static int init_slave_unmute(struct hda_codec *codec,
1996 void *data, struct snd_kcontrol *slave)
Takashi Iwai18478e82012-03-09 17:51:10 +01001997{
1998 return put_kctl_with_value(slave, 1);
1999}
2000
Takashi Iwaie8750942014-06-30 14:02:39 +02002001static int add_slave(struct hda_codec *codec,
2002 void *data, struct snd_kcontrol *slave)
2003{
2004 return snd_ctl_add_slave(data, slave);
2005}
2006
Takashi Iwaid5191e52009-11-16 14:58:17 +01002007/**
Takashi Iwai95a962c2014-10-29 16:03:58 +01002008 * __snd_hda_add_vmaster - create a virtual master control and add slaves
Takashi Iwaid5191e52009-11-16 14:58:17 +01002009 * @codec: HD-audio codec
2010 * @name: vmaster control name
2011 * @tlv: TLV data (optional)
2012 * @slaves: slave control names (optional)
Takashi Iwai9322ca52012-02-03 14:28:01 +01002013 * @suffix: suffix string to each slave name (optional)
Takashi Iwai18478e82012-03-09 17:51:10 +01002014 * @init_slave_vol: initialize slaves to unmute/0dB
Takashi Iwai29e58532012-03-12 12:25:03 +01002015 * @ctl_ret: store the vmaster kcontrol in return
Takashi Iwaid5191e52009-11-16 14:58:17 +01002016 *
2017 * Create a virtual master control with the given name. The TLV data
2018 * must be either NULL or a valid data.
2019 *
2020 * @slaves is a NULL-terminated array of strings, each of which is a
2021 * slave control name. All controls with these names are assigned to
2022 * the new virtual master control.
2023 *
2024 * This function returns zero if successful or a negative error code.
2025 */
Takashi Iwai18478e82012-03-09 17:51:10 +01002026int __snd_hda_add_vmaster(struct hda_codec *codec, char *name,
Takashi Iwai9322ca52012-02-03 14:28:01 +01002027 unsigned int *tlv, const char * const *slaves,
Takashi Iwai29e58532012-03-12 12:25:03 +01002028 const char *suffix, bool init_slave_vol,
2029 struct snd_kcontrol **ctl_ret)
Takashi Iwai2134ea42008-01-10 16:53:55 +01002030{
2031 struct snd_kcontrol *kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002032 int err;
2033
Takashi Iwai29e58532012-03-12 12:25:03 +01002034 if (ctl_ret)
2035 *ctl_ret = NULL;
2036
Takashi Iwai9322ca52012-02-03 14:28:01 +01002037 err = map_slaves(codec, slaves, suffix, check_slave_present, NULL);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002038 if (err != 1) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002039 codec_dbg(codec, "No slave found for %s\n", name);
Takashi Iwai2f085542008-02-22 18:43:50 +01002040 return 0;
2041 }
Takashi Iwai2134ea42008-01-10 16:53:55 +01002042 kctl = snd_ctl_make_virtual_master(name, tlv);
2043 if (!kctl)
2044 return -ENOMEM;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002045 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002046 if (err < 0)
2047 return err;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002048
Takashi Iwaie8750942014-06-30 14:02:39 +02002049 err = map_slaves(codec, slaves, suffix, add_slave, kctl);
Takashi Iwaiaeb4b882011-11-10 12:28:38 +01002050 if (err < 0)
2051 return err;
Takashi Iwai18478e82012-03-09 17:51:10 +01002052
2053 /* init with master mute & zero volume */
2054 put_kctl_with_value(kctl, 0);
Takashi Iwai485e3e02013-11-04 15:51:00 +01002055 if (init_slave_vol) {
2056 int step = 0;
Takashi Iwai18478e82012-03-09 17:51:10 +01002057 map_slaves(codec, slaves, suffix,
Takashi Iwai485e3e02013-11-04 15:51:00 +01002058 tlv ? init_slave_0dB : init_slave_unmute, &step);
2059 }
Takashi Iwai18478e82012-03-09 17:51:10 +01002060
Takashi Iwai29e58532012-03-12 12:25:03 +01002061 if (ctl_ret)
2062 *ctl_ret = kctl;
Takashi Iwai2134ea42008-01-10 16:53:55 +01002063 return 0;
2064}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002065EXPORT_SYMBOL_GPL(__snd_hda_add_vmaster);
Takashi Iwai2134ea42008-01-10 16:53:55 +01002066
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002067/*
2068 * mute-LED control using vmaster
2069 */
2070static int vmaster_mute_mode_info(struct snd_kcontrol *kcontrol,
2071 struct snd_ctl_elem_info *uinfo)
2072{
2073 static const char * const texts[] = {
David Henningssonc86c2d42013-01-03 14:12:29 +01002074 "On", "Off", "Follow Master"
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002075 };
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002076
Takashi Iwai3ff72212014-10-20 18:17:28 +02002077 return snd_ctl_enum_info(uinfo, 1, 3, texts);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002078}
2079
2080static int vmaster_mute_mode_get(struct snd_kcontrol *kcontrol,
2081 struct snd_ctl_elem_value *ucontrol)
2082{
2083 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2084 ucontrol->value.enumerated.item[0] = hook->mute_mode;
2085 return 0;
2086}
2087
2088static int vmaster_mute_mode_put(struct snd_kcontrol *kcontrol,
2089 struct snd_ctl_elem_value *ucontrol)
2090{
2091 struct hda_vmaster_mute_hook *hook = snd_kcontrol_chip(kcontrol);
2092 unsigned int old_mode = hook->mute_mode;
2093
2094 hook->mute_mode = ucontrol->value.enumerated.item[0];
2095 if (hook->mute_mode > HDA_VMUTE_FOLLOW_MASTER)
2096 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
2097 if (old_mode == hook->mute_mode)
2098 return 0;
2099 snd_hda_sync_vmaster_hook(hook);
2100 return 1;
2101}
2102
2103static struct snd_kcontrol_new vmaster_mute_mode = {
2104 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2105 .name = "Mute-LED Mode",
2106 .info = vmaster_mute_mode_info,
2107 .get = vmaster_mute_mode_get,
2108 .put = vmaster_mute_mode_put,
2109};
2110
Takashi Iwaiee52e562015-04-27 10:36:11 +02002111/* meta hook to call each driver's vmaster hook */
2112static void vmaster_hook(void *private_data, int enabled)
2113{
2114 struct hda_vmaster_mute_hook *hook = private_data;
2115
2116 if (hook->mute_mode != HDA_VMUTE_FOLLOW_MASTER)
2117 enabled = hook->mute_mode;
2118 hook->hook(hook->codec, enabled);
2119}
2120
Takashi Iwai95a962c2014-10-29 16:03:58 +01002121/**
2122 * snd_hda_add_vmaster_hook - Add a vmaster hook for mute-LED
2123 * @codec: the HDA codec
2124 * @hook: the vmaster hook object
2125 * @expose_enum_ctl: flag to create an enum ctl
2126 *
2127 * Add a mute-LED hook with the given vmaster switch kctl.
2128 * When @expose_enum_ctl is set, "Mute-LED Mode" control is automatically
2129 * created and associated with the given hook.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002130 */
2131int snd_hda_add_vmaster_hook(struct hda_codec *codec,
Takashi Iwaif29735c2012-03-13 07:55:10 +01002132 struct hda_vmaster_mute_hook *hook,
2133 bool expose_enum_ctl)
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002134{
2135 struct snd_kcontrol *kctl;
2136
2137 if (!hook->hook || !hook->sw_kctl)
2138 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002139 hook->codec = codec;
2140 hook->mute_mode = HDA_VMUTE_FOLLOW_MASTER;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002141 snd_ctl_add_vmaster_hook(hook->sw_kctl, vmaster_hook, hook);
Takashi Iwaif29735c2012-03-13 07:55:10 +01002142 if (!expose_enum_ctl)
2143 return 0;
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002144 kctl = snd_ctl_new1(&vmaster_mute_mode, hook);
2145 if (!kctl)
2146 return -ENOMEM;
2147 return snd_hda_ctl_add(codec, 0, kctl);
2148}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002149EXPORT_SYMBOL_GPL(snd_hda_add_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002150
Takashi Iwai95a962c2014-10-29 16:03:58 +01002151/**
2152 * snd_hda_sync_vmaster_hook - Sync vmaster hook
2153 * @hook: the vmaster hook
2154 *
2155 * Call the hook with the current value for synchronization.
2156 * Should be called in init callback.
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002157 */
2158void snd_hda_sync_vmaster_hook(struct hda_vmaster_mute_hook *hook)
2159{
2160 if (!hook->hook || !hook->codec)
2161 return;
Takashi Iwai594813f2013-04-17 18:16:05 +02002162 /* don't call vmaster hook in the destructor since it might have
2163 * been already destroyed
2164 */
2165 if (hook->codec->bus->shutdown)
2166 return;
Takashi Iwaiee52e562015-04-27 10:36:11 +02002167 snd_ctl_sync_vmaster_hook(hook->sw_kctl);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002168}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002169EXPORT_SYMBOL_GPL(snd_hda_sync_vmaster_hook);
Takashi Iwaid2f344b2012-03-12 16:59:58 +01002170
2171
Takashi Iwaid5191e52009-11-16 14:58:17 +01002172/**
2173 * snd_hda_mixer_amp_switch_info - Info callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002174 * @kcontrol: referred ctl element
2175 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002176 *
2177 * The control element is supposed to have the private_value field
2178 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2179 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002180int snd_hda_mixer_amp_switch_info(struct snd_kcontrol *kcontrol,
2181 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182{
2183 int chs = get_amp_channels(kcontrol);
2184
2185 uinfo->type = SNDRV_CTL_ELEM_TYPE_BOOLEAN;
2186 uinfo->count = chs == 3 ? 2 : 1;
2187 uinfo->value.integer.min = 0;
2188 uinfo->value.integer.max = 1;
2189 return 0;
2190}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002191EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Takashi Iwaid5191e52009-11-16 14:58:17 +01002193/**
2194 * snd_hda_mixer_amp_switch_get - Get callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002195 * @kcontrol: ctl element
2196 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002197 *
2198 * The control element is supposed to have the private_value field
2199 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2200 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002201int snd_hda_mixer_amp_switch_get(struct snd_kcontrol *kcontrol,
2202 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
2204 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2205 hda_nid_t nid = get_amp_nid(kcontrol);
2206 int chs = get_amp_channels(kcontrol);
2207 int dir = get_amp_direction(kcontrol);
2208 int idx = get_amp_index(kcontrol);
2209 long *valp = ucontrol->value.integer.value;
2210
2211 if (chs & 1)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002212 *valp++ = (snd_hda_codec_amp_read(codec, nid, 0, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002213 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 if (chs & 2)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002215 *valp = (snd_hda_codec_amp_read(codec, nid, 1, dir, idx) &
Takashi Iwai47fd8302007-08-10 17:11:07 +02002216 HDA_AMP_MUTE) ? 0 : 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return 0;
2218}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002219EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220
Takashi Iwaid5191e52009-11-16 14:58:17 +01002221/**
2222 * snd_hda_mixer_amp_switch_put - Put callback for a standard AMP mixer switch
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002223 * @kcontrol: ctl element
2224 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002225 *
2226 * The control element is supposed to have the private_value field
2227 * set up via HDA_COMPOSE_AMP_VAL*() or related macros.
2228 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002229int snd_hda_mixer_amp_switch_put(struct snd_kcontrol *kcontrol,
2230 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231{
2232 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2233 hda_nid_t nid = get_amp_nid(kcontrol);
2234 int chs = get_amp_channels(kcontrol);
2235 int dir = get_amp_direction(kcontrol);
2236 int idx = get_amp_index(kcontrol);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 long *valp = ucontrol->value.integer.value;
2238 int change = 0;
2239
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002240 if (chs & 1) {
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002241 change = snd_hda_codec_amp_update(codec, nid, 0, dir, idx,
2242 HDA_AMP_MUTE,
2243 *valp ? 0 : HDA_AMP_MUTE);
Nicolas Grazianob9f5a892005-07-29 12:17:20 +02002244 valp++;
2245 }
Takashi Iwai4a19fae2005-06-08 14:43:58 +02002246 if (chs & 2)
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01002247 change |= snd_hda_codec_amp_update(codec, nid, 1, dir, idx,
2248 HDA_AMP_MUTE,
2249 *valp ? 0 : HDA_AMP_MUTE);
Takashi Iwai9e5341b2010-09-21 09:57:06 +02002250 hda_call_check_power_status(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 return change;
2252}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002253EXPORT_SYMBOL_GPL(snd_hda_mixer_amp_switch_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255/*
Takashi Iwai985be542005-11-02 18:26:49 +01002256 * bound volume controls
2257 *
2258 * bind multiple volumes (# indices, from 0)
2259 */
2260
2261#define AMP_VAL_IDX_SHIFT 19
2262#define AMP_VAL_IDX_MASK (0x0f<<19)
2263
Takashi Iwaid5191e52009-11-16 14:58:17 +01002264/**
2265 * snd_hda_mixer_bind_switch_get - Get callback for a bound volume control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002266 * @kcontrol: ctl element
2267 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002268 *
2269 * The control element is supposed to have the private_value field
2270 * set up via HDA_BIND_MUTE*() macros.
2271 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002272int snd_hda_mixer_bind_switch_get(struct snd_kcontrol *kcontrol,
2273 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002274{
2275 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2276 unsigned long pval;
2277 int err;
2278
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002279 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002280 pval = kcontrol->private_value;
2281 kcontrol->private_value = pval & ~AMP_VAL_IDX_MASK; /* index 0 */
2282 err = snd_hda_mixer_amp_switch_get(kcontrol, ucontrol);
2283 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002284 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002285 return err;
2286}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002287EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_get);
Takashi Iwai985be542005-11-02 18:26:49 +01002288
Takashi Iwaid5191e52009-11-16 14:58:17 +01002289/**
2290 * snd_hda_mixer_bind_switch_put - Put callback for a bound volume control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002291 * @kcontrol: ctl element
2292 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002293 *
2294 * The control element is supposed to have the private_value field
2295 * set up via HDA_BIND_MUTE*() macros.
2296 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02002297int snd_hda_mixer_bind_switch_put(struct snd_kcontrol *kcontrol,
2298 struct snd_ctl_elem_value *ucontrol)
Takashi Iwai985be542005-11-02 18:26:49 +01002299{
2300 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2301 unsigned long pval;
2302 int i, indices, err = 0, change = 0;
2303
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002304 mutex_lock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002305 pval = kcontrol->private_value;
2306 indices = (pval & AMP_VAL_IDX_MASK) >> AMP_VAL_IDX_SHIFT;
2307 for (i = 0; i < indices; i++) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002308 kcontrol->private_value = (pval & ~AMP_VAL_IDX_MASK) |
2309 (i << AMP_VAL_IDX_SHIFT);
Takashi Iwai985be542005-11-02 18:26:49 +01002310 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2311 if (err < 0)
2312 break;
2313 change |= err;
2314 }
2315 kcontrol->private_value = pval;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002316 mutex_unlock(&codec->control_mutex);
Takashi Iwai985be542005-11-02 18:26:49 +01002317 return err < 0 ? err : change;
2318}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002319EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_switch_put);
Takashi Iwai985be542005-11-02 18:26:49 +01002320
Takashi Iwaid5191e52009-11-16 14:58:17 +01002321/**
2322 * snd_hda_mixer_bind_ctls_info - Info callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002323 * @kcontrol: referred ctl element
2324 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002325 *
2326 * The control element is supposed to have the private_value field
2327 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
Takashi Iwai532d5382007-07-27 19:02:40 +02002328 */
2329int snd_hda_mixer_bind_ctls_info(struct snd_kcontrol *kcontrol,
2330 struct snd_ctl_elem_info *uinfo)
2331{
2332 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2333 struct hda_bind_ctls *c;
2334 int err;
2335
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002336 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002337 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002338 kcontrol->private_value = *c->values;
2339 err = c->ops->info(kcontrol, uinfo);
2340 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002341 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002342 return err;
2343}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002344EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_info);
Takashi Iwai532d5382007-07-27 19:02:40 +02002345
Takashi Iwaid5191e52009-11-16 14:58:17 +01002346/**
2347 * snd_hda_mixer_bind_ctls_get - Get callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002348 * @kcontrol: ctl element
2349 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002350 *
2351 * The control element is supposed to have the private_value field
2352 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2353 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002354int snd_hda_mixer_bind_ctls_get(struct snd_kcontrol *kcontrol,
2355 struct snd_ctl_elem_value *ucontrol)
2356{
2357 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2358 struct hda_bind_ctls *c;
2359 int err;
2360
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002361 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002362 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002363 kcontrol->private_value = *c->values;
2364 err = c->ops->get(kcontrol, ucontrol);
2365 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002366 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002367 return err;
2368}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002369EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_get);
Takashi Iwai532d5382007-07-27 19:02:40 +02002370
Takashi Iwaid5191e52009-11-16 14:58:17 +01002371/**
2372 * snd_hda_mixer_bind_ctls_put - Put callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002373 * @kcontrol: ctl element
2374 * @ucontrol: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002375 *
2376 * The control element is supposed to have the private_value field
2377 * set up via HDA_BIND_VOL() or HDA_BIND_SW() macros.
2378 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002379int snd_hda_mixer_bind_ctls_put(struct snd_kcontrol *kcontrol,
2380 struct snd_ctl_elem_value *ucontrol)
2381{
2382 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2383 struct hda_bind_ctls *c;
2384 unsigned long *vals;
2385 int err = 0, change = 0;
2386
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002387 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002388 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002389 for (vals = c->values; *vals; vals++) {
2390 kcontrol->private_value = *vals;
2391 err = c->ops->put(kcontrol, ucontrol);
2392 if (err < 0)
2393 break;
2394 change |= err;
2395 }
2396 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002397 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002398 return err < 0 ? err : change;
2399}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002400EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_ctls_put);
Takashi Iwai532d5382007-07-27 19:02:40 +02002401
Takashi Iwaid5191e52009-11-16 14:58:17 +01002402/**
2403 * snd_hda_mixer_bind_tlv - TLV callback for a generic bound control
Takashi Iwaia11e9b12014-10-29 15:06:01 +01002404 * @kcontrol: ctl element
2405 * @op_flag: operation flag
2406 * @size: byte size of input TLV
2407 * @tlv: TLV data
Takashi Iwaid5191e52009-11-16 14:58:17 +01002408 *
2409 * The control element is supposed to have the private_value field
2410 * set up via HDA_BIND_VOL() macro.
2411 */
Takashi Iwai532d5382007-07-27 19:02:40 +02002412int snd_hda_mixer_bind_tlv(struct snd_kcontrol *kcontrol, int op_flag,
2413 unsigned int size, unsigned int __user *tlv)
2414{
2415 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2416 struct hda_bind_ctls *c;
2417 int err;
2418
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002419 mutex_lock(&codec->control_mutex);
Serge A. Suchkov14c65f92008-02-22 18:43:16 +01002420 c = (struct hda_bind_ctls *)kcontrol->private_value;
Takashi Iwai532d5382007-07-27 19:02:40 +02002421 kcontrol->private_value = *c->values;
2422 err = c->ops->tlv(kcontrol, op_flag, size, tlv);
2423 kcontrol->private_value = (long)c;
Wu Fengguang5a9e02e2009-01-09 16:45:24 +08002424 mutex_unlock(&codec->control_mutex);
Takashi Iwai532d5382007-07-27 19:02:40 +02002425 return err;
2426}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002427EXPORT_SYMBOL_GPL(snd_hda_mixer_bind_tlv);
Takashi Iwai532d5382007-07-27 19:02:40 +02002428
2429struct hda_ctl_ops snd_hda_bind_vol = {
2430 .info = snd_hda_mixer_amp_volume_info,
2431 .get = snd_hda_mixer_amp_volume_get,
2432 .put = snd_hda_mixer_amp_volume_put,
2433 .tlv = snd_hda_mixer_amp_tlv
2434};
Takashi Iwai2698ea92013-12-18 07:45:52 +01002435EXPORT_SYMBOL_GPL(snd_hda_bind_vol);
Takashi Iwai532d5382007-07-27 19:02:40 +02002436
2437struct hda_ctl_ops snd_hda_bind_sw = {
2438 .info = snd_hda_mixer_amp_switch_info,
2439 .get = snd_hda_mixer_amp_switch_get,
2440 .put = snd_hda_mixer_amp_switch_put,
2441 .tlv = snd_hda_mixer_amp_tlv
2442};
Takashi Iwai2698ea92013-12-18 07:45:52 +01002443EXPORT_SYMBOL_GPL(snd_hda_bind_sw);
Takashi Iwai532d5382007-07-27 19:02:40 +02002444
2445/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 * SPDIF out controls
2447 */
2448
Takashi Iwai0ba21762007-04-16 11:29:14 +02002449static int snd_hda_spdif_mask_info(struct snd_kcontrol *kcontrol,
2450 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
2452 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
2453 uinfo->count = 1;
2454 return 0;
2455}
2456
Takashi Iwai0ba21762007-04-16 11:29:14 +02002457static int snd_hda_spdif_cmask_get(struct snd_kcontrol *kcontrol,
2458 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2461 IEC958_AES0_NONAUDIO |
2462 IEC958_AES0_CON_EMPHASIS_5015 |
2463 IEC958_AES0_CON_NOT_COPYRIGHT;
2464 ucontrol->value.iec958.status[1] = IEC958_AES1_CON_CATEGORY |
2465 IEC958_AES1_CON_ORIGINAL;
2466 return 0;
2467}
2468
Takashi Iwai0ba21762007-04-16 11:29:14 +02002469static int snd_hda_spdif_pmask_get(struct snd_kcontrol *kcontrol,
2470 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471{
2472 ucontrol->value.iec958.status[0] = IEC958_AES0_PROFESSIONAL |
2473 IEC958_AES0_NONAUDIO |
2474 IEC958_AES0_PRO_EMPHASIS_5015;
2475 return 0;
2476}
2477
Takashi Iwai0ba21762007-04-16 11:29:14 +02002478static int snd_hda_spdif_default_get(struct snd_kcontrol *kcontrol,
2479 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480{
2481 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002482 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002483 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002485 mutex_lock(&codec->spdif_mutex);
2486 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06002487 ucontrol->value.iec958.status[0] = spdif->status & 0xff;
2488 ucontrol->value.iec958.status[1] = (spdif->status >> 8) & 0xff;
2489 ucontrol->value.iec958.status[2] = (spdif->status >> 16) & 0xff;
2490 ucontrol->value.iec958.status[3] = (spdif->status >> 24) & 0xff;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002491 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
2493 return 0;
2494}
2495
2496/* convert from SPDIF status bits to HDA SPDIF bits
2497 * bit 0 (DigEn) is always set zero (to be filled later)
2498 */
2499static unsigned short convert_from_spdif_status(unsigned int sbits)
2500{
2501 unsigned short val = 0;
2502
2503 if (sbits & IEC958_AES0_PROFESSIONAL)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002504 val |= AC_DIG1_PROFESSIONAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 if (sbits & IEC958_AES0_NONAUDIO)
Takashi Iwai0ba21762007-04-16 11:29:14 +02002506 val |= AC_DIG1_NONAUDIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002508 if ((sbits & IEC958_AES0_PRO_EMPHASIS) ==
2509 IEC958_AES0_PRO_EMPHASIS_5015)
2510 val |= AC_DIG1_EMPHASIS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002512 if ((sbits & IEC958_AES0_CON_EMPHASIS) ==
2513 IEC958_AES0_CON_EMPHASIS_5015)
2514 val |= AC_DIG1_EMPHASIS;
2515 if (!(sbits & IEC958_AES0_CON_NOT_COPYRIGHT))
2516 val |= AC_DIG1_COPYRIGHT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 if (sbits & (IEC958_AES1_CON_ORIGINAL << 8))
Takashi Iwai0ba21762007-04-16 11:29:14 +02002518 val |= AC_DIG1_LEVEL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 val |= sbits & (IEC958_AES1_CON_CATEGORY << 8);
2520 }
2521 return val;
2522}
2523
2524/* convert to SPDIF status bits from HDA SPDIF bits
2525 */
2526static unsigned int convert_to_spdif_status(unsigned short val)
2527{
2528 unsigned int sbits = 0;
2529
Takashi Iwai0ba21762007-04-16 11:29:14 +02002530 if (val & AC_DIG1_NONAUDIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 sbits |= IEC958_AES0_NONAUDIO;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002532 if (val & AC_DIG1_PROFESSIONAL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 sbits |= IEC958_AES0_PROFESSIONAL;
2534 if (sbits & IEC958_AES0_PROFESSIONAL) {
Takashi Iwaia686fd12013-03-20 15:42:00 +01002535 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 sbits |= IEC958_AES0_PRO_EMPHASIS_5015;
2537 } else {
Takashi Iwai0ba21762007-04-16 11:29:14 +02002538 if (val & AC_DIG1_EMPHASIS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 sbits |= IEC958_AES0_CON_EMPHASIS_5015;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002540 if (!(val & AC_DIG1_COPYRIGHT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 sbits |= IEC958_AES0_CON_NOT_COPYRIGHT;
Takashi Iwai0ba21762007-04-16 11:29:14 +02002542 if (val & AC_DIG1_LEVEL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 sbits |= (IEC958_AES1_CON_ORIGINAL << 8);
2544 sbits |= val & (0x7f << 8);
2545 }
2546 return sbits;
2547}
2548
Takashi Iwai2f728532008-09-25 16:32:41 +02002549/* set digital convert verbs both for the given NID and its slaves */
2550static void set_dig_out(struct hda_codec *codec, hda_nid_t nid,
Takashi Iwaia551d912015-02-26 12:34:49 +01002551 int mask, int val)
Takashi Iwai2f728532008-09-25 16:32:41 +02002552{
Takashi Iwaidda14412011-05-02 11:29:30 +02002553 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02002554
Takashi Iwaia551d912015-02-26 12:34:49 +01002555 snd_hdac_regmap_update(&codec->core, nid, AC_VERB_SET_DIGI_CONVERT_1,
2556 mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002557 d = codec->slave_dig_outs;
2558 if (!d)
2559 return;
2560 for (; *d; d++)
Takashi Iwai7d4b5e92015-04-16 15:14:53 +02002561 snd_hdac_regmap_update(&codec->core, *d,
Takashi Iwaia551d912015-02-26 12:34:49 +01002562 AC_VERB_SET_DIGI_CONVERT_1, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002563}
2564
2565static inline void set_dig_out_convert(struct hda_codec *codec, hda_nid_t nid,
2566 int dig1, int dig2)
2567{
Takashi Iwaia551d912015-02-26 12:34:49 +01002568 unsigned int mask = 0;
2569 unsigned int val = 0;
2570
2571 if (dig1 != -1) {
2572 mask |= 0xff;
2573 val = dig1;
2574 }
2575 if (dig2 != -1) {
2576 mask |= 0xff00;
2577 val |= dig2 << 8;
2578 }
2579 set_dig_out(codec, nid, mask, val);
Takashi Iwai2f728532008-09-25 16:32:41 +02002580}
2581
Takashi Iwai0ba21762007-04-16 11:29:14 +02002582static int snd_hda_spdif_default_put(struct snd_kcontrol *kcontrol,
2583 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584{
2585 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002586 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002587 struct hda_spdif_out *spdif;
2588 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 unsigned short val;
2590 int change;
2591
Ingo Molnar62932df2006-01-16 16:34:20 +01002592 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002593 spdif = snd_array_elem(&codec->spdif_out, idx);
2594 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06002595 spdif->status = ucontrol->value.iec958.status[0] |
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 ((unsigned int)ucontrol->value.iec958.status[1] << 8) |
2597 ((unsigned int)ucontrol->value.iec958.status[2] << 16) |
2598 ((unsigned int)ucontrol->value.iec958.status[3] << 24);
Stephen Warren7c9359762011-06-01 11:14:17 -06002599 val = convert_from_spdif_status(spdif->status);
2600 val |= spdif->ctls & 1;
2601 change = spdif->ctls != val;
2602 spdif->ctls = val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002603 if (change && nid != (u16)-1)
Takashi Iwai2f728532008-09-25 16:32:41 +02002604 set_dig_out_convert(codec, nid, val & 0xff, (val >> 8) & 0xff);
Ingo Molnar62932df2006-01-16 16:34:20 +01002605 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 return change;
2607}
2608
Takashi Iwaia5ce8892007-07-23 15:42:26 +02002609#define snd_hda_spdif_out_switch_info snd_ctl_boolean_mono_info
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Takashi Iwai0ba21762007-04-16 11:29:14 +02002611static int snd_hda_spdif_out_switch_get(struct snd_kcontrol *kcontrol,
2612 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613{
2614 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002615 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002616 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002618 mutex_lock(&codec->spdif_mutex);
2619 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren7c9359762011-06-01 11:14:17 -06002620 ucontrol->value.integer.value[0] = spdif->ctls & AC_DIG1_ENABLE;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002621 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 return 0;
2623}
2624
Stephen Warren74b654c2011-06-01 11:14:18 -06002625static inline void set_spdif_ctls(struct hda_codec *codec, hda_nid_t nid,
2626 int dig1, int dig2)
2627{
2628 set_dig_out_convert(codec, nid, dig1, dig2);
2629 /* unmute amp switch (if any) */
2630 if ((get_wcaps(codec, nid) & AC_WCAP_OUT_AMP) &&
2631 (dig1 & AC_DIG1_ENABLE))
2632 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2633 HDA_AMP_MUTE, 0);
2634}
2635
Takashi Iwai0ba21762007-04-16 11:29:14 +02002636static int snd_hda_spdif_out_switch_put(struct snd_kcontrol *kcontrol,
2637 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638{
2639 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
Stephen Warren7c9359762011-06-01 11:14:17 -06002640 int idx = kcontrol->private_value;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002641 struct hda_spdif_out *spdif;
2642 hda_nid_t nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 unsigned short val;
2644 int change;
2645
Ingo Molnar62932df2006-01-16 16:34:20 +01002646 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002647 spdif = snd_array_elem(&codec->spdif_out, idx);
2648 nid = spdif->nid;
Stephen Warren7c9359762011-06-01 11:14:17 -06002649 val = spdif->ctls & ~AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 if (ucontrol->value.integer.value[0])
Takashi Iwai0ba21762007-04-16 11:29:14 +02002651 val |= AC_DIG1_ENABLE;
Stephen Warren7c9359762011-06-01 11:14:17 -06002652 change = spdif->ctls != val;
Stephen Warren74b654c2011-06-01 11:14:18 -06002653 spdif->ctls = val;
2654 if (change && nid != (u16)-1)
2655 set_spdif_ctls(codec, nid, val & 0xff, -1);
Ingo Molnar62932df2006-01-16 16:34:20 +01002656 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 return change;
2658}
2659
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002660static struct snd_kcontrol_new dig_mixes[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 {
2662 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2663 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002664 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, CON_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 .info = snd_hda_spdif_mask_info,
2666 .get = snd_hda_spdif_cmask_get,
2667 },
2668 {
2669 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2670 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002671 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, PRO_MASK),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 .info = snd_hda_spdif_mask_info,
2673 .get = snd_hda_spdif_pmask_get,
2674 },
2675 {
2676 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002677 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 .info = snd_hda_spdif_mask_info,
2679 .get = snd_hda_spdif_default_get,
2680 .put = snd_hda_spdif_default_put,
2681 },
2682 {
2683 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002684 .name = SNDRV_CTL_NAME_IEC958("", PLAYBACK, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 .info = snd_hda_spdif_out_switch_info,
2686 .get = snd_hda_spdif_out_switch_get,
2687 .put = snd_hda_spdif_out_switch_put,
2688 },
2689 { } /* end */
2690};
2691
2692/**
Takashi Iwaidcda5802012-10-12 17:24:51 +02002693 * snd_hda_create_dig_out_ctls - create Output SPDIF-related controls
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 * @codec: the HDA codec
Takashi Iwaidcda5802012-10-12 17:24:51 +02002695 * @associated_nid: NID that new ctls associated with
2696 * @cvt_nid: converter NID
2697 * @type: HDA_PCM_TYPE_*
2698 * Creates controls related with the digital output.
2699 * Called from each patch supporting the digital out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 *
2701 * Returns 0 if successful, or a negative error code.
2702 */
Takashi Iwaidcda5802012-10-12 17:24:51 +02002703int snd_hda_create_dig_out_ctls(struct hda_codec *codec,
2704 hda_nid_t associated_nid,
2705 hda_nid_t cvt_nid,
2706 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707{
2708 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002709 struct snd_kcontrol *kctl;
2710 struct snd_kcontrol_new *dig_mix;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002711 int idx = 0;
Takashi Iwaia551d912015-02-26 12:34:49 +01002712 int val = 0;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002713 const int spdif_index = 16;
Stephen Warren7c9359762011-06-01 11:14:17 -06002714 struct hda_spdif_out *spdif;
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002715 struct hda_bus *bus = codec->bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002717 if (bus->primary_dig_out_type == HDA_PCM_TYPE_HDMI &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002718 type == HDA_PCM_TYPE_SPDIF) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002719 idx = spdif_index;
2720 } else if (bus->primary_dig_out_type == HDA_PCM_TYPE_SPDIF &&
Takashi Iwaidcda5802012-10-12 17:24:51 +02002721 type == HDA_PCM_TYPE_HDMI) {
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002722 /* suppose a single SPDIF device */
2723 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2724 kctl = find_mixer_ctl(codec, dig_mix->name, 0, 0);
2725 if (!kctl)
2726 break;
2727 kctl->id.index = spdif_index;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002728 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002729 bus->primary_dig_out_type = HDA_PCM_TYPE_HDMI;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002730 }
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002731 if (!bus->primary_dig_out_type)
2732 bus->primary_dig_out_type = type;
Takashi Iwaidcda5802012-10-12 17:24:51 +02002733
Takashi Iwaiea9b43a2013-02-12 17:02:41 +01002734 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Playback Switch", idx);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002735 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002736 codec_err(codec, "too many IEC958 outputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002737 return -EBUSY;
2738 }
Stephen Warren7c9359762011-06-01 11:14:17 -06002739 spdif = snd_array_new(&codec->spdif_out);
Mengdong Lin25336e82013-03-07 14:10:25 -05002740 if (!spdif)
2741 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 for (dig_mix = dig_mixes; dig_mix->name; dig_mix++) {
2743 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaib91f0802008-11-04 08:43:08 +01002744 if (!kctl)
2745 return -ENOMEM;
Takashi Iwai09f99702008-02-04 12:31:13 +01002746 kctl->id.index = idx;
Stephen Warren7c9359762011-06-01 11:14:17 -06002747 kctl->private_value = codec->spdif_out.used - 1;
Stephen Warren74b654c2011-06-01 11:14:18 -06002748 err = snd_hda_ctl_add(codec, associated_nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002749 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 return err;
2751 }
Stephen Warren74b654c2011-06-01 11:14:18 -06002752 spdif->nid = cvt_nid;
Takashi Iwaia551d912015-02-26 12:34:49 +01002753 snd_hdac_regmap_read(&codec->core, cvt_nid,
2754 AC_VERB_GET_DIGI_CONVERT_1, &val);
2755 spdif->ctls = val;
Stephen Warren7c9359762011-06-01 11:14:17 -06002756 spdif->status = convert_to_spdif_status(spdif->ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 return 0;
2758}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002759EXPORT_SYMBOL_GPL(snd_hda_create_dig_out_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
Takashi Iwai95a962c2014-10-29 16:03:58 +01002761/**
2762 * snd_hda_spdif_out_of_nid - get the hda_spdif_out entry from the given NID
2763 * @codec: the HDA codec
2764 * @nid: widget NID
2765 *
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002766 * call within spdif_mutex lock
2767 */
Stephen Warren7c9359762011-06-01 11:14:17 -06002768struct hda_spdif_out *snd_hda_spdif_out_of_nid(struct hda_codec *codec,
2769 hda_nid_t nid)
2770{
2771 int i;
2772 for (i = 0; i < codec->spdif_out.used; i++) {
2773 struct hda_spdif_out *spdif =
2774 snd_array_elem(&codec->spdif_out, i);
2775 if (spdif->nid == nid)
2776 return spdif;
2777 }
2778 return NULL;
2779}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002780EXPORT_SYMBOL_GPL(snd_hda_spdif_out_of_nid);
Stephen Warren7c9359762011-06-01 11:14:17 -06002781
Takashi Iwai95a962c2014-10-29 16:03:58 +01002782/**
2783 * snd_hda_spdif_ctls_unassign - Unassign the given SPDIF ctl
2784 * @codec: the HDA codec
2785 * @idx: the SPDIF ctl index
2786 *
2787 * Unassign the widget from the given SPDIF control.
2788 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002789void snd_hda_spdif_ctls_unassign(struct hda_codec *codec, int idx)
2790{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002791 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002792
2793 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002794 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002795 spdif->nid = (u16)-1;
2796 mutex_unlock(&codec->spdif_mutex);
2797}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002798EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_unassign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002799
Takashi Iwai95a962c2014-10-29 16:03:58 +01002800/**
2801 * snd_hda_spdif_ctls_assign - Assign the SPDIF controls to the given NID
2802 * @codec: the HDA codec
2803 * @idx: the SPDIF ctl idx
2804 * @nid: widget NID
2805 *
2806 * Assign the widget to the SPDIF control with the given index.
2807 */
Stephen Warren74b654c2011-06-01 11:14:18 -06002808void snd_hda_spdif_ctls_assign(struct hda_codec *codec, int idx, hda_nid_t nid)
2809{
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002810 struct hda_spdif_out *spdif;
Stephen Warren74b654c2011-06-01 11:14:18 -06002811 unsigned short val;
2812
2813 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02002814 spdif = snd_array_elem(&codec->spdif_out, idx);
Stephen Warren74b654c2011-06-01 11:14:18 -06002815 if (spdif->nid != nid) {
2816 spdif->nid = nid;
2817 val = spdif->ctls;
2818 set_spdif_ctls(codec, nid, val & 0xff, (val >> 8) & 0xff);
2819 }
2820 mutex_unlock(&codec->spdif_mutex);
2821}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002822EXPORT_SYMBOL_GPL(snd_hda_spdif_ctls_assign);
Stephen Warren74b654c2011-06-01 11:14:18 -06002823
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824/*
Takashi Iwai9a081602008-02-12 18:37:26 +01002825 * SPDIF sharing with analog output
2826 */
2827static int spdif_share_sw_get(struct snd_kcontrol *kcontrol,
2828 struct snd_ctl_elem_value *ucontrol)
2829{
2830 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2831 ucontrol->value.integer.value[0] = mout->share_spdif;
2832 return 0;
2833}
2834
2835static int spdif_share_sw_put(struct snd_kcontrol *kcontrol,
2836 struct snd_ctl_elem_value *ucontrol)
2837{
2838 struct hda_multi_out *mout = snd_kcontrol_chip(kcontrol);
2839 mout->share_spdif = !!ucontrol->value.integer.value[0];
2840 return 0;
2841}
2842
2843static struct snd_kcontrol_new spdif_share_sw = {
2844 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2845 .name = "IEC958 Default PCM Playback Switch",
2846 .info = snd_ctl_boolean_mono_info,
2847 .get = spdif_share_sw_get,
2848 .put = spdif_share_sw_put,
2849};
2850
Takashi Iwaid5191e52009-11-16 14:58:17 +01002851/**
2852 * snd_hda_create_spdif_share_sw - create Default PCM switch
2853 * @codec: the HDA codec
2854 * @mout: multi-out instance
2855 */
Takashi Iwai9a081602008-02-12 18:37:26 +01002856int snd_hda_create_spdif_share_sw(struct hda_codec *codec,
2857 struct hda_multi_out *mout)
2858{
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002859 struct snd_kcontrol *kctl;
2860
Takashi Iwai9a081602008-02-12 18:37:26 +01002861 if (!mout->dig_out_nid)
2862 return 0;
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002863
2864 kctl = snd_ctl_new1(&spdif_share_sw, mout);
2865 if (!kctl)
2866 return -ENOMEM;
Takashi Iwai9a081602008-02-12 18:37:26 +01002867 /* ATTENTION: here mout is passed as private_data, instead of codec */
Mengdong Lin4c7a5482013-03-07 14:11:05 -05002868 return snd_hda_ctl_add(codec, mout->dig_out_nid, kctl);
Takashi Iwai9a081602008-02-12 18:37:26 +01002869}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002870EXPORT_SYMBOL_GPL(snd_hda_create_spdif_share_sw);
Takashi Iwai9a081602008-02-12 18:37:26 +01002871
2872/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 * SPDIF input
2874 */
2875
2876#define snd_hda_spdif_in_switch_info snd_hda_spdif_out_switch_info
2877
Takashi Iwai0ba21762007-04-16 11:29:14 +02002878static int snd_hda_spdif_in_switch_get(struct snd_kcontrol *kcontrol,
2879 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
2881 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2882
2883 ucontrol->value.integer.value[0] = codec->spdif_in_enable;
2884 return 0;
2885}
2886
Takashi Iwai0ba21762007-04-16 11:29:14 +02002887static int snd_hda_spdif_in_switch_put(struct snd_kcontrol *kcontrol,
2888 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889{
2890 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2891 hda_nid_t nid = kcontrol->private_value;
2892 unsigned int val = !!ucontrol->value.integer.value[0];
2893 int change;
2894
Ingo Molnar62932df2006-01-16 16:34:20 +01002895 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 change = codec->spdif_in_enable != val;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02002897 if (change) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 codec->spdif_in_enable = val;
Takashi Iwaia551d912015-02-26 12:34:49 +01002899 snd_hdac_regmap_write(&codec->core, nid,
2900 AC_VERB_SET_DIGI_CONVERT_1, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 }
Ingo Molnar62932df2006-01-16 16:34:20 +01002902 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 return change;
2904}
2905
Takashi Iwai0ba21762007-04-16 11:29:14 +02002906static int snd_hda_spdif_in_status_get(struct snd_kcontrol *kcontrol,
2907 struct snd_ctl_elem_value *ucontrol)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908{
2909 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2910 hda_nid_t nid = kcontrol->private_value;
Takashi Iwaia551d912015-02-26 12:34:49 +01002911 unsigned int val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 unsigned int sbits;
2913
Takashi Iwaia551d912015-02-26 12:34:49 +01002914 snd_hdac_regmap_read(&codec->core, nid,
2915 AC_VERB_GET_DIGI_CONVERT_1, &val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 sbits = convert_to_spdif_status(val);
2917 ucontrol->value.iec958.status[0] = sbits;
2918 ucontrol->value.iec958.status[1] = sbits >> 8;
2919 ucontrol->value.iec958.status[2] = sbits >> 16;
2920 ucontrol->value.iec958.status[3] = sbits >> 24;
2921 return 0;
2922}
2923
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002924static struct snd_kcontrol_new dig_in_ctls[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 {
2926 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002927 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, SWITCH),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 .info = snd_hda_spdif_in_switch_info,
2929 .get = snd_hda_spdif_in_switch_get,
2930 .put = snd_hda_spdif_in_switch_put,
2931 },
2932 {
2933 .access = SNDRV_CTL_ELEM_ACCESS_READ,
2934 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
Norberto Lopes28aedaf2010-02-28 20:16:53 +01002935 .name = SNDRV_CTL_NAME_IEC958("", CAPTURE, DEFAULT),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 .info = snd_hda_spdif_mask_info,
2937 .get = snd_hda_spdif_in_status_get,
2938 },
2939 { } /* end */
2940};
2941
2942/**
2943 * snd_hda_create_spdif_in_ctls - create Input SPDIF-related controls
2944 * @codec: the HDA codec
2945 * @nid: audio in widget NID
2946 *
2947 * Creates controls related with the SPDIF input.
2948 * Called from each patch supporting the SPDIF in.
2949 *
2950 * Returns 0 if successful, or a negative error code.
2951 */
Takashi Iwai12f288b2007-08-02 15:51:59 +02002952int snd_hda_create_spdif_in_ctls(struct hda_codec *codec, hda_nid_t nid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953{
2954 int err;
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01002955 struct snd_kcontrol *kctl;
2956 struct snd_kcontrol_new *dig_mix;
Takashi Iwai09f99702008-02-04 12:31:13 +01002957 int idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Takashi Iwaidcda5802012-10-12 17:24:51 +02002959 idx = find_empty_mixer_ctl_idx(codec, "IEC958 Capture Switch", 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01002960 if (idx < 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01002961 codec_err(codec, "too many IEC958 inputs\n");
Takashi Iwai09f99702008-02-04 12:31:13 +01002962 return -EBUSY;
2963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 for (dig_mix = dig_in_ctls; dig_mix->name; dig_mix++) {
2965 kctl = snd_ctl_new1(dig_mix, codec);
Takashi Iwaic8dcdf82009-02-06 16:21:20 +01002966 if (!kctl)
2967 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 kctl->private_value = nid;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01002969 err = snd_hda_ctl_add(codec, nid, kctl);
Takashi Iwai0ba21762007-04-16 11:29:14 +02002970 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 return err;
2972 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02002973 codec->spdif_in_enable =
Andrew Paprocki3982d172007-12-19 12:13:44 +01002974 snd_hda_codec_read(codec, nid, 0,
2975 AC_VERB_GET_DIGI_CONVERT_1, 0) &
Takashi Iwai0ba21762007-04-16 11:29:14 +02002976 AC_DIG1_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 return 0;
2978}
Takashi Iwai2698ea92013-12-18 07:45:52 +01002979EXPORT_SYMBOL_GPL(snd_hda_create_spdif_in_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Takashi Iwai95a962c2014-10-29 16:03:58 +01002981/**
2982 * snd_hda_codec_set_power_to_all - Set the power state to all widgets
2983 * @codec: the HDA codec
2984 * @fg: function group (not used now)
2985 * @power_state: the power state to set (AC_PWRST_*)
2986 *
2987 * Set the given power state to all widgets that have the power control.
2988 * If the codec has power_filter set, it evaluates the power state and
2989 * filter out if it's unchanged as D3.
2990 */
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002991void snd_hda_codec_set_power_to_all(struct hda_codec *codec, hda_nid_t fg,
Takashi Iwai9419ab62013-01-24 17:23:35 +01002992 unsigned int power_state)
Takashi Iwai54d17402005-11-21 16:33:22 +01002993{
Takashi Iwai7639a062015-03-03 10:07:24 +01002994 hda_nid_t nid;
Takashi Iwai54d17402005-11-21 16:33:22 +01002995
Takashi Iwai7639a062015-03-03 10:07:24 +01002996 for_each_hda_codec_node(nid, codec) {
Takashi Iwai7eba5c92007-11-14 14:53:42 +01002997 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9419ab62013-01-24 17:23:35 +01002998 unsigned int state = power_state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02002999 if (!(wcaps & AC_WCAP_POWER))
3000 continue;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003001 if (codec->power_filter) {
3002 state = codec->power_filter(codec, nid, power_state);
3003 if (state != power_state && power_state == AC_PWRST_D3)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003004 continue;
Takashi Iwai1194b5b2007-10-10 10:04:26 +02003005 }
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003006 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_POWER_STATE,
Takashi Iwai9419ab62013-01-24 17:23:35 +01003007 state);
Takashi Iwai54d17402005-11-21 16:33:22 +01003008 }
Takashi Iwai54d17402005-11-21 16:33:22 +01003009}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003010EXPORT_SYMBOL_GPL(snd_hda_codec_set_power_to_all);
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003011
3012/*
Takashi Iwai432c6412012-08-28 09:59:20 -07003013 * wait until the state is reached, returns the current state
3014 */
3015static unsigned int hda_sync_power_state(struct hda_codec *codec,
3016 hda_nid_t fg,
3017 unsigned int power_state)
3018{
3019 unsigned long end_time = jiffies + msecs_to_jiffies(500);
3020 unsigned int state, actual_state;
3021
3022 for (;;) {
3023 state = snd_hda_codec_read(codec, fg, 0,
3024 AC_VERB_GET_POWER_STATE, 0);
3025 if (state & AC_PWRST_ERROR)
3026 break;
3027 actual_state = (state >> 4) & 0x0f;
3028 if (actual_state == power_state)
3029 break;
3030 if (time_after_eq(jiffies, end_time))
3031 break;
3032 /* wait until the codec reachs to the target state */
3033 msleep(1);
3034 }
3035 return state;
3036}
3037
Takashi Iwai95a962c2014-10-29 16:03:58 +01003038/**
3039 * snd_hda_codec_eapd_power_filter - A power filter callback for EAPD
3040 * @codec: the HDA codec
3041 * @nid: widget NID
3042 * @power_state: power state to evalue
3043 *
3044 * Don't power down the widget if it controls eapd and EAPD_BTLENABLE is set.
3045 * This can be used a codec power_filter callback.
3046 */
Takashi Iwaiba615b82013-03-13 14:47:21 +01003047unsigned int snd_hda_codec_eapd_power_filter(struct hda_codec *codec,
3048 hda_nid_t nid,
3049 unsigned int power_state)
Takashi Iwai9419ab62013-01-24 17:23:35 +01003050{
Takashi Iwai7639a062015-03-03 10:07:24 +01003051 if (nid == codec->core.afg || nid == codec->core.mfg)
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003052 return power_state;
Takashi Iwai9419ab62013-01-24 17:23:35 +01003053 if (power_state == AC_PWRST_D3 &&
3054 get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_PIN &&
3055 (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)) {
3056 int eapd = snd_hda_codec_read(codec, nid, 0,
3057 AC_VERB_GET_EAPD_BTLENABLE, 0);
3058 if (eapd & 0x02)
3059 return AC_PWRST_D0;
3060 }
3061 return power_state;
3062}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003063EXPORT_SYMBOL_GPL(snd_hda_codec_eapd_power_filter);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003064
Takashi Iwai432c6412012-08-28 09:59:20 -07003065/*
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003066 * set power state of the codec, and return the power state
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003067 */
Takashi Iwaid8193872012-08-31 07:54:38 -07003068static unsigned int hda_set_power_state(struct hda_codec *codec,
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003069 unsigned int power_state)
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003070{
Takashi Iwai7639a062015-03-03 10:07:24 +01003071 hda_nid_t fg = codec->core.afg ? codec->core.afg : codec->core.mfg;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003072 int count;
3073 unsigned int state;
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003074 int flags = 0;
Wang Xingchao09617ce2012-06-08 10:26:08 +08003075
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003076 /* this delay seems necessary to avoid click noise at power-down */
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003077 if (power_state == AC_PWRST_D3) {
Mengdong Lin7f132922013-11-29 01:48:45 -05003078 if (codec->depop_delay < 0)
Takashi Iwai7639a062015-03-03 10:07:24 +01003079 msleep(codec_has_epss(codec) ? 10 : 100);
Mengdong Lin7f132922013-11-29 01:48:45 -05003080 else if (codec->depop_delay > 0)
3081 msleep(codec->depop_delay);
Takashi Iwai63e51fd2013-06-06 14:20:19 +02003082 flags = HDA_RW_NO_RESPONSE_FALLBACK;
Wang Xingchao0f4ccbb2012-06-07 16:51:33 +08003083 }
Wang Xingchao09617ce2012-06-08 10:26:08 +08003084
3085 /* repeat power states setting at most 10 times*/
3086 for (count = 0; count < 10; count++) {
Takashi Iwai432c6412012-08-28 09:59:20 -07003087 if (codec->patch_ops.set_power_state)
3088 codec->patch_ops.set_power_state(codec, fg,
3089 power_state);
3090 else {
Takashi Iwaidfc6e462014-01-13 16:09:57 +01003091 state = power_state;
3092 if (codec->power_filter)
3093 state = codec->power_filter(codec, fg, state);
3094 if (state == power_state || power_state != AC_PWRST_D3)
3095 snd_hda_codec_read(codec, fg, flags,
3096 AC_VERB_SET_POWER_STATE,
3097 state);
Takashi Iwai9419ab62013-01-24 17:23:35 +01003098 snd_hda_codec_set_power_to_all(codec, fg, power_state);
Takashi Iwai432c6412012-08-28 09:59:20 -07003099 }
3100 state = hda_sync_power_state(codec, fg, power_state);
Wang Xingchao09617ce2012-06-08 10:26:08 +08003101 if (!(state & AC_PWRST_ERROR))
3102 break;
3103 }
Mengdong Linb8dfc4622012-08-23 17:32:30 +08003104
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003105 return state;
Takashi Iwai4d7fbdb2011-07-26 10:33:10 +02003106}
Takashi Iwai54d17402005-11-21 16:33:22 +01003107
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003108/* sync power states of all widgets;
3109 * this is called at the end of codec parsing
3110 */
3111static void sync_power_up_states(struct hda_codec *codec)
3112{
Takashi Iwai7639a062015-03-03 10:07:24 +01003113 hda_nid_t nid;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003114
Takashi Iwaiba615b82013-03-13 14:47:21 +01003115 /* don't care if no filter is used */
3116 if (!codec->power_filter)
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003117 return;
3118
Takashi Iwai7639a062015-03-03 10:07:24 +01003119 for_each_hda_codec_node(nid, codec) {
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003120 unsigned int wcaps = get_wcaps(codec, nid);
Takashi Iwai9040d102013-01-24 17:47:17 +01003121 unsigned int target;
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003122 if (!(wcaps & AC_WCAP_POWER))
3123 continue;
3124 target = codec->power_filter(codec, nid, AC_PWRST_D0);
3125 if (target == AC_PWRST_D0)
3126 continue;
Takashi Iwai9040d102013-01-24 17:47:17 +01003127 if (!snd_hda_check_power_state(codec, nid, target))
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003128 snd_hda_codec_write(codec, nid, 0,
3129 AC_VERB_SET_POWER_STATE, target);
3130 }
3131}
3132
Takashi Iwai648a8d22014-02-25 10:38:13 +01003133#ifdef CONFIG_SND_HDA_RECONFIG
Takashi Iwai11aeff02008-07-30 15:01:46 +02003134/* execute additional init verbs */
3135static void hda_exec_init_verbs(struct hda_codec *codec)
3136{
3137 if (codec->init_verbs.list)
3138 snd_hda_sequence_write(codec, codec->init_verbs.list);
3139}
3140#else
3141static inline void hda_exec_init_verbs(struct hda_codec *codec) {}
3142#endif
3143
Takashi Iwai2a439522011-07-26 09:52:50 +02003144#ifdef CONFIG_PM
Takashi Iwaicc72da72015-02-19 16:00:22 +01003145/* update the power on/off account with the current jiffies */
3146static void update_power_acct(struct hda_codec *codec, bool on)
3147{
3148 unsigned long delta = jiffies - codec->power_jiffies;
3149
3150 if (on)
3151 codec->power_on_acct += delta;
3152 else
3153 codec->power_off_acct += delta;
3154 codec->power_jiffies += delta;
3155}
3156
3157void snd_hda_update_power_acct(struct hda_codec *codec)
3158{
3159 update_power_acct(codec, hda_codec_is_power_on(codec));
3160}
3161
Takashi Iwaicb53c622007-08-10 17:21:45 +02003162/*
3163 * call suspend and power-down; used both from PM and power-save
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003164 * this function returns the power state in the end
Takashi Iwaicb53c622007-08-10 17:21:45 +02003165 */
Takashi Iwaicc72da72015-02-19 16:00:22 +01003166static unsigned int hda_call_codec_suspend(struct hda_codec *codec)
Takashi Iwaicb53c622007-08-10 17:21:45 +02003167{
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003168 unsigned int state;
3169
Takashi Iwai7639a062015-03-03 10:07:24 +01003170 atomic_inc(&codec->core.in_pm);
Takashi Iwai989c3182012-11-19 14:14:58 +01003171
Takashi Iwaicb53c622007-08-10 17:21:45 +02003172 if (codec->patch_ops.suspend)
Takashi Iwai68cb2b52012-07-02 15:20:37 +02003173 codec->patch_ops.suspend(codec);
Takashi Iwaieb541332010-08-06 13:48:11 +02003174 hda_cleanup_all_streams(codec);
Takashi Iwaid8193872012-08-31 07:54:38 -07003175 state = hda_set_power_state(codec, AC_PWRST_D3);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003176 update_power_acct(codec, true);
Takashi Iwai7639a062015-03-03 10:07:24 +01003177 atomic_dec(&codec->core.in_pm);
Takashi Iwai08fa20a2012-08-31 07:46:56 -07003178 return state;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003179}
3180
3181/*
3182 * kick up codec; used both from PM and power-save
3183 */
3184static void hda_call_codec_resume(struct hda_codec *codec)
3185{
Takashi Iwai7639a062015-03-03 10:07:24 +01003186 atomic_inc(&codec->core.in_pm);
Takashi Iwai989c3182012-11-19 14:14:58 +01003187
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01003188 if (codec->core.regmap)
3189 regcache_mark_dirty(codec->core.regmap);
3190
Takashi Iwaicc72da72015-02-19 16:00:22 +01003191 codec->power_jiffies = jiffies;
Takashi Iwaicc72da72015-02-19 16:00:22 +01003192
Takashi Iwaid8193872012-08-31 07:54:38 -07003193 hda_set_power_state(codec, AC_PWRST_D0);
Takashi Iwaiac0547d2010-07-05 16:50:13 +02003194 restore_shutup_pins(codec);
Takashi Iwai11aeff02008-07-30 15:01:46 +02003195 hda_exec_init_verbs(codec);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003196 snd_hda_jack_set_dirty_all(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003197 if (codec->patch_ops.resume)
3198 codec->patch_ops.resume(codec);
3199 else {
Takashi Iwai9d99f312007-08-14 15:15:52 +02003200 if (codec->patch_ops.init)
3201 codec->patch_ops.init(codec);
Takashi Iwaieeecd9d2015-02-25 15:18:50 +01003202 if (codec->core.regmap)
3203 regcache_sync(codec->core.regmap);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003204 }
David Henningsson26a6cb62012-10-09 15:04:21 +02003205
3206 if (codec->jackpoll_interval)
3207 hda_jackpoll_work(&codec->jackpoll_work.work);
Takashi Iwai31614bb2013-01-23 15:58:40 +01003208 else
David Henningsson26a6cb62012-10-09 15:04:21 +02003209 snd_hda_jack_report_sync(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +01003210 atomic_dec(&codec->core.in_pm);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003211}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003212
Takashi Iwaicc72da72015-02-19 16:00:22 +01003213static int hda_codec_runtime_suspend(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003214{
3215 struct hda_codec *codec = dev_to_hda_codec(dev);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003216 struct hda_pcm *pcm;
Takashi Iwaicc72da72015-02-19 16:00:22 +01003217 unsigned int state;
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003218
3219 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003220 list_for_each_entry(pcm, &codec->pcm_list_head, list)
3221 snd_pcm_suspend_all(pcm->pcm);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003222 state = hda_call_codec_suspend(codec);
Takashi Iwai7639a062015-03-03 10:07:24 +01003223 if (codec_has_clkstop(codec) && codec_has_epss(codec) &&
3224 (state & AC_PWRST_CLK_STOP_OK))
3225 snd_hdac_codec_link_down(&codec->core);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003226 return 0;
3227}
3228
Takashi Iwaicc72da72015-02-19 16:00:22 +01003229static int hda_codec_runtime_resume(struct device *dev)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003230{
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01003231 struct hda_codec *codec = dev_to_hda_codec(dev);
3232
Takashi Iwai7639a062015-03-03 10:07:24 +01003233 snd_hdac_codec_link_up(&codec->core);
Takashi Iwai55ed9cd2015-02-19 17:35:32 +01003234 hda_call_codec_resume(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003235 pm_runtime_mark_last_busy(dev);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003236 return 0;
3237}
Takashi Iwai2a439522011-07-26 09:52:50 +02003238#endif /* CONFIG_PM */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003239
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003240/* referred in hda_bind.c */
3241const struct dev_pm_ops hda_codec_driver_pm = {
Takashi Iwaicc72da72015-02-19 16:00:22 +01003242 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
3243 pm_runtime_force_resume)
3244 SET_RUNTIME_PM_OPS(hda_codec_runtime_suspend, hda_codec_runtime_resume,
3245 NULL)
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01003246};
Takashi Iwai54d17402005-11-21 16:33:22 +01003247
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003248/*
3249 * add standard channel maps if not specified
3250 */
3251static int add_std_chmaps(struct hda_codec *codec)
3252{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003253 struct hda_pcm *pcm;
3254 int str, err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003255
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003256 list_for_each_entry(pcm, &codec->pcm_list_head, list) {
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003257 for (str = 0; str < 2; str++) {
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003258 struct hda_pcm_stream *hinfo = &pcm->stream[str];
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003259 struct snd_pcm_chmap *chmap;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003260 const struct snd_pcm_chmap_elem *elem;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003261
Sudip Mukherjee751e2212015-04-02 16:51:43 +05303262 if (!pcm || pcm->own_chmap ||
3263 !hinfo->substreams)
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003264 continue;
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003265 elem = hinfo->chmap ? hinfo->chmap : snd_pcm_std_chmaps;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003266 err = snd_pcm_add_chmap_ctls(pcm->pcm, str, elem,
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003267 hinfo->channels_max,
3268 0, &chmap);
3269 if (err < 0)
3270 return err;
3271 chmap->channel_mask = SND_PCM_CHMAP_MASK_2468;
3272 }
3273 }
3274 return 0;
3275}
3276
Takashi Iwaiee81abb2012-11-08 17:12:10 +01003277/* default channel maps for 2.1 speakers;
3278 * since HD-audio supports only stereo, odd number channels are omitted
3279 */
3280const struct snd_pcm_chmap_elem snd_pcm_2_1_chmaps[] = {
3281 { .channels = 2,
3282 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
3283 { .channels = 4,
3284 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
3285 SNDRV_CHMAP_LFE, SNDRV_CHMAP_LFE } },
3286 { }
3287};
3288EXPORT_SYMBOL_GPL(snd_pcm_2_1_chmaps);
3289
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003290int snd_hda_codec_build_controls(struct hda_codec *codec)
3291{
3292 int err = 0;
Takashi Iwai11aeff02008-07-30 15:01:46 +02003293 hda_exec_init_verbs(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003294 /* continue to initialize... */
3295 if (codec->patch_ops.init)
3296 err = codec->patch_ops.init(codec);
3297 if (!err && codec->patch_ops.build_controls)
3298 err = codec->patch_ops.build_controls(codec);
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003299 if (err < 0)
3300 return err;
Takashi Iwai9c9a5172012-07-31 11:35:35 +02003301
3302 /* we create chmaps here instead of build_pcms */
3303 err = add_std_chmaps(codec);
3304 if (err < 0)
3305 return err;
3306
David Henningsson26a6cb62012-10-09 15:04:21 +02003307 if (codec->jackpoll_interval)
3308 hda_jackpoll_work(&codec->jackpoll_work.work);
3309 else
3310 snd_hda_jack_report_sync(codec); /* call at the last init point */
Takashi Iwaib9c590b2013-01-24 17:27:32 +01003311 sync_power_up_states(codec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 return 0;
3313}
3314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315/*
3316 * stream formats
3317 */
Takashi Iwaibefdf312005-08-22 13:57:55 +02003318struct hda_rate_tbl {
3319 unsigned int hz;
3320 unsigned int alsa_bits;
3321 unsigned int hda_fmt;
3322};
3323
Takashi Iwai92f10b32010-08-03 14:21:00 +02003324/* rate = base * mult / div */
3325#define HDA_RATE(base, mult, div) \
3326 (AC_FMT_BASE_##base##K | (((mult) - 1) << AC_FMT_MULT_SHIFT) | \
3327 (((div) - 1) << AC_FMT_DIV_SHIFT))
3328
Takashi Iwaibefdf312005-08-22 13:57:55 +02003329static struct hda_rate_tbl rate_bits[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 /* rate in Hz, ALSA rate bitmask, HDA format value */
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02003331
3332 /* autodetected value used in snd_hda_query_supported_pcm */
Takashi Iwai92f10b32010-08-03 14:21:00 +02003333 { 8000, SNDRV_PCM_RATE_8000, HDA_RATE(48, 1, 6) },
3334 { 11025, SNDRV_PCM_RATE_11025, HDA_RATE(44, 1, 4) },
3335 { 16000, SNDRV_PCM_RATE_16000, HDA_RATE(48, 1, 3) },
3336 { 22050, SNDRV_PCM_RATE_22050, HDA_RATE(44, 1, 2) },
3337 { 32000, SNDRV_PCM_RATE_32000, HDA_RATE(48, 2, 3) },
3338 { 44100, SNDRV_PCM_RATE_44100, HDA_RATE(44, 1, 1) },
3339 { 48000, SNDRV_PCM_RATE_48000, HDA_RATE(48, 1, 1) },
3340 { 88200, SNDRV_PCM_RATE_88200, HDA_RATE(44, 2, 1) },
3341 { 96000, SNDRV_PCM_RATE_96000, HDA_RATE(48, 2, 1) },
3342 { 176400, SNDRV_PCM_RATE_176400, HDA_RATE(44, 4, 1) },
3343 { 192000, SNDRV_PCM_RATE_192000, HDA_RATE(48, 4, 1) },
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003344#define AC_PAR_PCM_RATE_BITS 11
3345 /* up to bits 10, 384kHZ isn't supported properly */
3346
3347 /* not autodetected value */
Takashi Iwai92f10b32010-08-03 14:21:00 +02003348 { 9600, SNDRV_PCM_RATE_KNOT, HDA_RATE(48, 1, 5) },
Nicolas Graziano9d8f53f2005-08-22 13:47:16 +02003349
Takashi Iwaibefdf312005-08-22 13:57:55 +02003350 { 0 } /* terminator */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351};
3352
3353/**
3354 * snd_hda_calc_stream_format - calculate format bitset
Takashi Iwai6194b992014-06-06 18:12:16 +02003355 * @codec: HD-audio codec
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 * @rate: the sample rate
3357 * @channels: the number of channels
3358 * @format: the PCM format (SNDRV_PCM_FORMAT_XXX)
3359 * @maxbps: the max. bps
Takashi Iwaia11e9b12014-10-29 15:06:01 +01003360 * @spdif_ctls: HD-audio SPDIF status bits (0 if irrelevant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 *
3362 * Calculate the format bitset from the given rate, channels and th PCM format.
3363 *
3364 * Return zero if invalid.
3365 */
Takashi Iwai6194b992014-06-06 18:12:16 +02003366unsigned int snd_hda_calc_stream_format(struct hda_codec *codec,
3367 unsigned int rate,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 unsigned int channels,
3369 unsigned int format,
Anssi Hannula32c168c2010-08-03 13:28:57 +03003370 unsigned int maxbps,
3371 unsigned short spdif_ctls)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372{
3373 int i;
3374 unsigned int val = 0;
3375
Takashi Iwaibefdf312005-08-22 13:57:55 +02003376 for (i = 0; rate_bits[i].hz; i++)
3377 if (rate_bits[i].hz == rate) {
3378 val = rate_bits[i].hda_fmt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 break;
3380 }
Takashi Iwai0ba21762007-04-16 11:29:14 +02003381 if (!rate_bits[i].hz) {
Takashi Iwai6194b992014-06-06 18:12:16 +02003382 codec_dbg(codec, "invalid rate %d\n", rate);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 return 0;
3384 }
3385
3386 if (channels == 0 || channels > 8) {
Takashi Iwai6194b992014-06-06 18:12:16 +02003387 codec_dbg(codec, "invalid channels %d\n", channels);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 return 0;
3389 }
3390 val |= channels - 1;
3391
3392 switch (snd_pcm_format_width(format)) {
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003393 case 8:
Takashi Iwai92f10b32010-08-03 14:21:00 +02003394 val |= AC_FMT_BITS_8;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003395 break;
3396 case 16:
Takashi Iwai92f10b32010-08-03 14:21:00 +02003397 val |= AC_FMT_BITS_16;
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003398 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 case 20:
3400 case 24:
3401 case 32:
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02003402 if (maxbps >= 32 || format == SNDRV_PCM_FORMAT_FLOAT_LE)
Takashi Iwai92f10b32010-08-03 14:21:00 +02003403 val |= AC_FMT_BITS_32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 else if (maxbps >= 24)
Takashi Iwai92f10b32010-08-03 14:21:00 +02003405 val |= AC_FMT_BITS_24;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 else
Takashi Iwai92f10b32010-08-03 14:21:00 +02003407 val |= AC_FMT_BITS_20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 break;
3409 default:
Takashi Iwai6194b992014-06-06 18:12:16 +02003410 codec_dbg(codec, "invalid format width %d\n",
Takashi Iwai4e76a882014-02-25 12:21:03 +01003411 snd_pcm_format_width(format));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 return 0;
3413 }
3414
Anssi Hannula32c168c2010-08-03 13:28:57 +03003415 if (spdif_ctls & AC_DIG1_NONAUDIO)
Takashi Iwai92f10b32010-08-03 14:21:00 +02003416 val |= AC_FMT_TYPE_NON_PCM;
Anssi Hannula32c168c2010-08-03 13:28:57 +03003417
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 return val;
3419}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003420EXPORT_SYMBOL_GPL(snd_hda_calc_stream_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Takashi Iwaifaa75f82015-02-26 08:54:56 +01003422static unsigned int query_pcm_param(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003423{
3424 unsigned int val = 0;
Takashi Iwai7639a062015-03-03 10:07:24 +01003425 if (nid != codec->core.afg &&
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003426 (get_wcaps(codec, nid) & AC_WCAP_FORMAT_OVRD))
3427 val = snd_hda_param_read(codec, nid, AC_PAR_PCM);
3428 if (!val || val == -1)
Takashi Iwai7639a062015-03-03 10:07:24 +01003429 val = snd_hda_param_read(codec, codec->core.afg, AC_PAR_PCM);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003430 if (!val || val == -1)
3431 return 0;
3432 return val;
3433}
3434
Takashi Iwaifaa75f82015-02-26 08:54:56 +01003435static unsigned int query_stream_param(struct hda_codec *codec, hda_nid_t nid)
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003436{
3437 unsigned int streams = snd_hda_param_read(codec, nid, AC_PAR_STREAM);
3438 if (!streams || streams == -1)
Takashi Iwai7639a062015-03-03 10:07:24 +01003439 streams = snd_hda_param_read(codec, codec->core.afg, AC_PAR_STREAM);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003440 if (!streams || streams == -1)
3441 return 0;
3442 return streams;
3443}
3444
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445/**
3446 * snd_hda_query_supported_pcm - query the supported PCM rates and formats
3447 * @codec: the HDA codec
3448 * @nid: NID to query
3449 * @ratesp: the pointer to store the detected rate bitflags
3450 * @formatsp: the pointer to store the detected formats
3451 * @bpsp: the pointer to store the detected format widths
3452 *
3453 * Queries the supported PCM rates and formats. The NULL @ratesp, @formatsp
3454 * or @bsps argument is ignored.
3455 *
3456 * Returns 0 if successful, otherwise a negative error code.
3457 */
Stephen Warren384a48d2011-06-01 11:14:21 -06003458int snd_hda_query_supported_pcm(struct hda_codec *codec, hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 u32 *ratesp, u64 *formatsp, unsigned int *bpsp)
3460{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003461 unsigned int i, val, wcaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003463 wcaps = get_wcaps(codec, nid);
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003464 val = query_pcm_param(codec, nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 if (ratesp) {
3467 u32 rates = 0;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003468 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 if (val & (1 << i))
Takashi Iwaibefdf312005-08-22 13:57:55 +02003470 rates |= rate_bits[i].alsa_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003472 if (rates == 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003473 codec_err(codec,
3474 "rates == 0 (nid=0x%x, val=0x%x, ovrd=%i)\n",
3475 nid, val,
3476 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003477 return -EIO;
3478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 *ratesp = rates;
3480 }
3481
3482 if (formatsp || bpsp) {
3483 u64 formats = 0;
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003484 unsigned int streams, bps;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003486 streams = query_stream_param(codec, nid);
3487 if (!streams)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
3490 bps = 0;
3491 if (streams & AC_SUPFMT_PCM) {
3492 if (val & AC_SUPPCM_BITS_8) {
3493 formats |= SNDRV_PCM_FMTBIT_U8;
3494 bps = 8;
3495 }
3496 if (val & AC_SUPPCM_BITS_16) {
3497 formats |= SNDRV_PCM_FMTBIT_S16_LE;
3498 bps = 16;
3499 }
3500 if (wcaps & AC_WCAP_DIGITAL) {
3501 if (val & AC_SUPPCM_BITS_32)
3502 formats |= SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE;
3503 if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24))
3504 formats |= SNDRV_PCM_FMTBIT_S32_LE;
3505 if (val & AC_SUPPCM_BITS_24)
3506 bps = 24;
3507 else if (val & AC_SUPPCM_BITS_20)
3508 bps = 20;
Takashi Iwai0ba21762007-04-16 11:29:14 +02003509 } else if (val & (AC_SUPPCM_BITS_20|AC_SUPPCM_BITS_24|
3510 AC_SUPPCM_BITS_32)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 formats |= SNDRV_PCM_FMTBIT_S32_LE;
3512 if (val & AC_SUPPCM_BITS_32)
3513 bps = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 else if (val & AC_SUPPCM_BITS_24)
3515 bps = 24;
Nicolas Graziano33ef76512006-09-19 14:23:14 +02003516 else if (val & AC_SUPPCM_BITS_20)
3517 bps = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 }
3519 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02003520#if 0 /* FIXME: CS4206 doesn't work, which is the only codec supporting float */
Takashi Iwaib5025c52009-07-01 18:05:27 +02003521 if (streams & AC_SUPFMT_FLOAT32) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 formats |= SNDRV_PCM_FMTBIT_FLOAT_LE;
Takashi Iwaib0bb3aa2009-07-03 23:25:37 +02003523 if (!bps)
3524 bps = 32;
Takashi Iwaib5025c52009-07-01 18:05:27 +02003525 }
Takashi Iwai8c7dd892012-05-12 09:38:05 +02003526#endif
Takashi Iwaib5025c52009-07-01 18:05:27 +02003527 if (streams == AC_SUPFMT_AC3) {
Takashi Iwai0ba21762007-04-16 11:29:14 +02003528 /* should be exclusive */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 /* temporary hack: we have still no proper support
3530 * for the direct AC3 stream...
3531 */
3532 formats |= SNDRV_PCM_FMTBIT_U8;
3533 bps = 8;
3534 }
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003535 if (formats == 0) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003536 codec_err(codec,
3537 "formats == 0 (nid=0x%x, val=0x%x, ovrd=%i, streams=0x%x)\n",
3538 nid, val,
3539 (wcaps & AC_WCAP_FORMAT_OVRD) ? 1 : 0,
3540 streams);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003541 return -EIO;
3542 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 if (formatsp)
3544 *formatsp = formats;
3545 if (bpsp)
3546 *bpsp = bps;
3547 }
3548
3549 return 0;
3550}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003551EXPORT_SYMBOL_GPL(snd_hda_query_supported_pcm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
3553/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01003554 * snd_hda_is_supported_format - Check the validity of the format
3555 * @codec: HD-audio codec
3556 * @nid: NID to check
3557 * @format: the HD-audio format value to check
3558 *
3559 * Check whether the given node supports the format value.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 *
3561 * Returns 1 if supported, 0 if not.
3562 */
3563int snd_hda_is_supported_format(struct hda_codec *codec, hda_nid_t nid,
3564 unsigned int format)
3565{
3566 int i;
3567 unsigned int val = 0, rate, stream;
3568
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003569 val = query_pcm_param(codec, nid);
3570 if (!val)
3571 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
3573 rate = format & 0xff00;
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003574 for (i = 0; i < AC_PAR_PCM_RATE_BITS; i++)
Takashi Iwaibefdf312005-08-22 13:57:55 +02003575 if (rate_bits[i].hda_fmt == rate) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 if (val & (1 << i))
3577 break;
3578 return 0;
3579 }
Takashi Iwaia961f9f2007-04-12 13:08:09 +02003580 if (i >= AC_PAR_PCM_RATE_BITS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 return 0;
3582
Takashi Iwai92c7c8a2009-03-24 07:32:14 +01003583 stream = query_stream_param(codec, nid);
3584 if (!stream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 return 0;
3586
3587 if (stream & AC_SUPFMT_PCM) {
3588 switch (format & 0xf0) {
3589 case 0x00:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003590 if (!(val & AC_SUPPCM_BITS_8))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 return 0;
3592 break;
3593 case 0x10:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003594 if (!(val & AC_SUPPCM_BITS_16))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 return 0;
3596 break;
3597 case 0x20:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003598 if (!(val & AC_SUPPCM_BITS_20))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 return 0;
3600 break;
3601 case 0x30:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003602 if (!(val & AC_SUPPCM_BITS_24))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 return 0;
3604 break;
3605 case 0x40:
Takashi Iwai0ba21762007-04-16 11:29:14 +02003606 if (!(val & AC_SUPPCM_BITS_32))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 return 0;
3608 break;
3609 default:
3610 return 0;
3611 }
3612 } else {
3613 /* FIXME: check for float32 and AC3? */
3614 }
3615
3616 return 1;
3617}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003618EXPORT_SYMBOL_GPL(snd_hda_is_supported_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
3620/*
3621 * PCM stuff
3622 */
3623static int hda_pcm_default_open_close(struct hda_pcm_stream *hinfo,
3624 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003625 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626{
3627 return 0;
3628}
3629
3630static int hda_pcm_default_prepare(struct hda_pcm_stream *hinfo,
3631 struct hda_codec *codec,
3632 unsigned int stream_tag,
3633 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003634 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635{
3636 snd_hda_codec_setup_stream(codec, hinfo->nid, stream_tag, 0, format);
3637 return 0;
3638}
3639
3640static int hda_pcm_default_cleanup(struct hda_pcm_stream *hinfo,
3641 struct hda_codec *codec,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003642 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
Takashi Iwai888afa12008-03-18 09:57:50 +01003644 snd_hda_codec_cleanup_stream(codec, hinfo->nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 return 0;
3646}
3647
Takashi Iwai6c1f45e2008-07-30 15:01:45 +02003648static int set_pcm_default_values(struct hda_codec *codec,
3649 struct hda_pcm_stream *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650{
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003651 int err;
3652
Takashi Iwai0ba21762007-04-16 11:29:14 +02003653 /* query support PCM information from the given NID */
3654 if (info->nid && (!info->rates || !info->formats)) {
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003655 err = snd_hda_query_supported_pcm(codec, info->nid,
Takashi Iwai0ba21762007-04-16 11:29:14 +02003656 info->rates ? NULL : &info->rates,
3657 info->formats ? NULL : &info->formats,
3658 info->maxbps ? NULL : &info->maxbps);
Jaroslav Kyselaee504712009-03-17 14:30:31 +01003659 if (err < 0)
3660 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 }
3662 if (info->ops.open == NULL)
3663 info->ops.open = hda_pcm_default_open_close;
3664 if (info->ops.close == NULL)
3665 info->ops.close = hda_pcm_default_open_close;
3666 if (info->ops.prepare == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003667 if (snd_BUG_ON(!info->nid))
3668 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 info->ops.prepare = hda_pcm_default_prepare;
3670 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 if (info->ops.cleanup == NULL) {
Takashi Iwaida3cec32008-08-08 17:12:14 +02003672 if (snd_BUG_ON(!info->nid))
3673 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 info->ops.cleanup = hda_pcm_default_cleanup;
3675 }
3676 return 0;
3677}
3678
Takashi Iwaieb541332010-08-06 13:48:11 +02003679/*
3680 * codec prepare/cleanup entries
3681 */
Takashi Iwai95a962c2014-10-29 16:03:58 +01003682/**
3683 * snd_hda_codec_prepare - Prepare a stream
3684 * @codec: the HDA codec
3685 * @hinfo: PCM information
3686 * @stream: stream tag to assign
3687 * @format: format id to assign
3688 * @substream: PCM substream to assign
3689 *
3690 * Calls the prepare callback set by the codec with the given arguments.
3691 * Clean up the inactive streams when successful.
3692 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003693int snd_hda_codec_prepare(struct hda_codec *codec,
3694 struct hda_pcm_stream *hinfo,
3695 unsigned int stream,
3696 unsigned int format,
3697 struct snd_pcm_substream *substream)
3698{
3699 int ret;
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003700 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003701 if (hinfo->ops.prepare)
3702 ret = hinfo->ops.prepare(hinfo, codec, stream, format,
3703 substream);
3704 else
3705 ret = -ENODEV;
Takashi Iwaieb541332010-08-06 13:48:11 +02003706 if (ret >= 0)
3707 purify_inactive_streams(codec);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003708 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003709 return ret;
3710}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003711EXPORT_SYMBOL_GPL(snd_hda_codec_prepare);
Takashi Iwaieb541332010-08-06 13:48:11 +02003712
Takashi Iwai95a962c2014-10-29 16:03:58 +01003713/**
3714 * snd_hda_codec_cleanup - Prepare a stream
3715 * @codec: the HDA codec
3716 * @hinfo: PCM information
3717 * @substream: PCM substream
3718 *
3719 * Calls the cleanup callback set by the codec with the given arguments.
3720 */
Takashi Iwaieb541332010-08-06 13:48:11 +02003721void snd_hda_codec_cleanup(struct hda_codec *codec,
3722 struct hda_pcm_stream *hinfo,
3723 struct snd_pcm_substream *substream)
3724{
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003725 mutex_lock(&codec->bus->prepare_mutex);
Takashi Iwai61ca4102015-02-27 17:57:55 +01003726 if (hinfo->ops.cleanup)
3727 hinfo->ops.cleanup(hinfo, codec, substream);
Takashi Iwai3f50ac62010-08-20 09:44:36 +02003728 mutex_unlock(&codec->bus->prepare_mutex);
Takashi Iwaieb541332010-08-06 13:48:11 +02003729}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003730EXPORT_SYMBOL_GPL(snd_hda_codec_cleanup);
Takashi Iwaieb541332010-08-06 13:48:11 +02003731
Takashi Iwaid5191e52009-11-16 14:58:17 +01003732/* global */
Jaroslav Kyselae3303232009-11-10 14:53:02 +01003733const char *snd_hda_pcm_type_name[HDA_PCM_NTYPES] = {
3734 "Audio", "SPDIF", "HDMI", "Modem"
3735};
3736
Takashi Iwai176d5332008-07-30 15:01:44 +02003737/*
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003738 * get the empty PCM device number to assign
3739 */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003740static int get_empty_pcm_device(struct hda_bus *bus, unsigned int type)
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003741{
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003742 /* audio device indices; not linear to keep compatibility */
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003743 /* assigned to static slots up to dev#10; if more needed, assign
3744 * the later slot dynamically (when CONFIG_SND_DYNAMIC_MINORS=y)
3745 */
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003746 static int audio_idx[HDA_PCM_NTYPES][5] = {
3747 [HDA_PCM_TYPE_AUDIO] = { 0, 2, 4, 5, -1 },
3748 [HDA_PCM_TYPE_SPDIF] = { 1, -1 },
Wu Fengguang92608ba2009-10-30 11:40:03 +01003749 [HDA_PCM_TYPE_HDMI] = { 3, 7, 8, 9, -1 },
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003750 [HDA_PCM_TYPE_MODEM] = { 6, -1 },
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003751 };
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003752 int i;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003753
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003754 if (type >= HDA_PCM_NTYPES) {
Takashi Iwai4e76a882014-02-25 12:21:03 +01003755 dev_err(bus->card->dev, "Invalid PCM type %d\n", type);
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003756 return -EINVAL;
3757 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003758
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003759 for (i = 0; audio_idx[type][i] >= 0; i++) {
3760#ifndef CONFIG_SND_DYNAMIC_MINORS
3761 if (audio_idx[type][i] >= 8)
3762 break;
3763#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003764 if (!test_and_set_bit(audio_idx[type][i], bus->pcm_dev_bits))
3765 return audio_idx[type][i];
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003766 }
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003767
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003768#ifdef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003769 /* non-fixed slots starting from 10 */
3770 for (i = 10; i < 32; i++) {
3771 if (!test_and_set_bit(i, bus->pcm_dev_bits))
3772 return i;
3773 }
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003774#endif
Takashi Iwai01b65bf2011-11-24 14:31:46 +01003775
Takashi Iwai4e76a882014-02-25 12:21:03 +01003776 dev_warn(bus->card->dev, "Too many %s devices\n",
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003777 snd_hda_pcm_type_name[type]);
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003778#ifndef CONFIG_SND_DYNAMIC_MINORS
Takashi Iwai4e76a882014-02-25 12:21:03 +01003779 dev_warn(bus->card->dev,
3780 "Consider building the kernel with CONFIG_SND_DYNAMIC_MINORS=y\n");
Takashi Iwai36bb00d2013-06-06 12:10:24 +02003781#endif
Wu Fengguangf5d6def2009-10-30 11:38:26 +01003782 return -EAGAIN;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003783}
3784
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003785/* call build_pcms ops of the given codec and set up the default parameters */
3786int snd_hda_codec_parse_pcms(struct hda_codec *codec)
Takashi Iwai176d5332008-07-30 15:01:44 +02003787{
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003788 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003789 int err;
Takashi Iwai176d5332008-07-30 15:01:44 +02003790
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003791 if (!list_empty(&codec->pcm_list_head))
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003792 return 0; /* already parsed */
3793
3794 if (!codec->patch_ops.build_pcms)
3795 return 0;
3796
3797 err = codec->patch_ops.build_pcms(codec);
3798 if (err < 0) {
3799 codec_err(codec, "cannot build PCMs for #%d (error %d)\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003800 codec->core.addr, err);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003801 return err;
3802 }
3803
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003804 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003805 int stream;
3806
3807 for (stream = 0; stream < 2; stream++) {
3808 struct hda_pcm_stream *info = &cpcm->stream[stream];
3809
3810 if (!info->substreams)
3811 continue;
Takashi Iwai176d5332008-07-30 15:01:44 +02003812 err = set_pcm_default_values(codec, info);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003813 if (err < 0) {
3814 codec_warn(codec,
3815 "fail to setup default for PCM %s\n",
3816 cpcm->name);
Takashi Iwai176d5332008-07-30 15:01:44 +02003817 return err;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003818 }
Takashi Iwai176d5332008-07-30 15:01:44 +02003819 }
3820 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003821
3822 return 0;
Takashi Iwai176d5332008-07-30 15:01:44 +02003823}
3824
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003825/* assign all PCMs of the given codec */
3826int snd_hda_codec_build_pcms(struct hda_codec *codec)
3827{
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003828 struct hda_bus *bus = codec->bus;
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003829 struct hda_pcm *cpcm;
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003830 int dev, err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003831
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003832 if (snd_BUG_ON(!bus->ops.attach_pcm))
3833 return -EINVAL;
3834
3835 err = snd_hda_codec_parse_pcms(codec);
3836 if (err < 0) {
3837 snd_hda_codec_reset(codec);
3838 return err;
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003839 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003840
3841 /* attach a new PCM streams */
Takashi Iwaibbbc7e82015-02-27 17:43:19 +01003842 list_for_each_entry(cpcm, &codec->pcm_list_head, list) {
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003843 if (cpcm->pcm)
3844 continue; /* already attached */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003845 if (!cpcm->stream[0].substreams && !cpcm->stream[1].substreams)
Takashi Iwai41b5b012009-01-20 18:21:23 +01003846 continue; /* no substreams assigned */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003847
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003848 dev = get_empty_pcm_device(bus, cpcm->pcm_type);
3849 if (dev < 0)
3850 continue; /* no fatal error */
3851 cpcm->device = dev;
3852 err = bus->ops.attach_pcm(bus, codec, cpcm);
3853 if (err < 0) {
3854 codec_err(codec,
3855 "cannot attach PCM stream %d for codec #%d\n",
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003856 dev, codec->core.addr);
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003857 continue; /* no fatal error */
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003858 }
3859 }
Takashi Iwai1a4ba302015-02-24 11:50:11 +01003860
Takashi Iwai529bd6c2008-11-27 14:17:01 +01003861 return 0;
3862}
3863
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 * snd_hda_add_new_ctls - create controls from the array
3866 * @codec: the HDA codec
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003867 * @knew: the array of struct snd_kcontrol_new
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868 *
3869 * This helper function creates and add new controls in the given array.
3870 * The array must be terminated with an empty entry as terminator.
3871 *
3872 * Returns 0 if successful, or a negative error code.
3873 */
Takashi Iwai031024e2011-05-02 11:29:30 +02003874int snd_hda_add_new_ctls(struct hda_codec *codec,
3875 const struct snd_kcontrol_new *knew)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876{
Jaroslav Kysela4d02d1b2009-11-12 10:15:48 +01003877 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
3879 for (; knew->name; knew++) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003880 struct snd_kcontrol *kctl;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003881 int addr = 0, idx = 0;
Jaroslav Kysela5b0cb1d2009-12-08 16:13:32 +01003882 if (knew->iface == -1) /* skip this codec private value */
3883 continue;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003884 for (;;) {
Takashi Iwai54d17402005-11-21 16:33:22 +01003885 kctl = snd_ctl_new1(knew, codec);
Takashi Iwai0ba21762007-04-16 11:29:14 +02003886 if (!kctl)
Takashi Iwai54d17402005-11-21 16:33:22 +01003887 return -ENOMEM;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003888 if (addr > 0)
3889 kctl->id.device = addr;
3890 if (idx > 0)
3891 kctl->id.index = idx;
Jaroslav Kysela3911a4c2009-11-11 13:43:01 +01003892 err = snd_hda_ctl_add(codec, 0, kctl);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003893 if (!err)
3894 break;
3895 /* try first with another device index corresponding to
3896 * the codec addr; if it still fails (or it's the
3897 * primary codec), then try another control index
3898 */
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003899 if (!addr && codec->core.addr)
3900 addr = codec->core.addr;
Takashi Iwai1afe2062010-12-23 10:17:52 +01003901 else if (!idx && !knew->index) {
3902 idx = find_empty_mixer_ctl_idx(codec,
Takashi Iwaidcda5802012-10-12 17:24:51 +02003903 knew->name, 0);
Takashi Iwai1afe2062010-12-23 10:17:52 +01003904 if (idx <= 0)
3905 return err;
3906 } else
Takashi Iwai54d17402005-11-21 16:33:22 +01003907 return err;
3908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 }
3910 return 0;
3911}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003912EXPORT_SYMBOL_GPL(snd_hda_add_new_ctls);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
Takashi Iwai83012a72012-08-24 18:38:08 +02003914#ifdef CONFIG_PM
Takashi Iwaibb573922015-02-20 09:26:04 +01003915static void codec_set_power_save(struct hda_codec *codec, int delay)
Takashi Iwaicc72da72015-02-19 16:00:22 +01003916{
3917 struct device *dev = hda_codec_dev(codec);
Takashi Iwaicc72da72015-02-19 16:00:22 +01003918
Takashi Iwaicc72da72015-02-19 16:00:22 +01003919 if (delay > 0) {
3920 pm_runtime_set_autosuspend_delay(dev, delay);
3921 pm_runtime_use_autosuspend(dev);
3922 pm_runtime_allow(dev);
3923 if (!pm_runtime_suspended(dev))
3924 pm_runtime_mark_last_busy(dev);
3925 } else {
3926 pm_runtime_dont_use_autosuspend(dev);
3927 pm_runtime_forbid(dev);
3928 }
3929}
Takashi Iwaibb573922015-02-20 09:26:04 +01003930
3931/**
3932 * snd_hda_set_power_save - reprogram autosuspend for the given delay
3933 * @bus: HD-audio bus
3934 * @delay: autosuspend delay in msec, 0 = off
3935 *
3936 * Synchronize the runtime PM autosuspend state from the power_save option.
3937 */
3938void snd_hda_set_power_save(struct hda_bus *bus, int delay)
3939{
3940 struct hda_codec *c;
3941
Takashi Iwaid068ebc2015-03-02 23:22:59 +01003942 list_for_each_codec(c, bus)
Takashi Iwaibb573922015-02-20 09:26:04 +01003943 codec_set_power_save(c, delay);
3944}
3945EXPORT_SYMBOL_GPL(snd_hda_set_power_save);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003946
Takashi Iwaid5191e52009-11-16 14:58:17 +01003947/**
3948 * snd_hda_check_amp_list_power - Check the amp list and update the power
3949 * @codec: HD-audio codec
3950 * @check: the object containing an AMP list and the status
3951 * @nid: NID to check / update
3952 *
3953 * Check whether the given NID is in the amp list. If it's in the list,
3954 * check the current AMP status, and update the the power-status according
3955 * to the mute status.
3956 *
3957 * This function is supposed to be set or called from the check_power_status
3958 * patch ops.
Norberto Lopes28aedaf2010-02-28 20:16:53 +01003959 */
Takashi Iwaicb53c622007-08-10 17:21:45 +02003960int snd_hda_check_amp_list_power(struct hda_codec *codec,
3961 struct hda_loopback_check *check,
3962 hda_nid_t nid)
3963{
Takashi Iwai031024e2011-05-02 11:29:30 +02003964 const struct hda_amp_list *p;
Takashi Iwaicb53c622007-08-10 17:21:45 +02003965 int ch, v;
3966
3967 if (!check->amplist)
3968 return 0;
3969 for (p = check->amplist; p->nid; p++) {
3970 if (p->nid == nid)
3971 break;
3972 }
3973 if (!p->nid)
3974 return 0; /* nothing changed */
3975
3976 for (p = check->amplist; p->nid; p++) {
3977 for (ch = 0; ch < 2; ch++) {
3978 v = snd_hda_codec_amp_read(codec, p->nid, ch, p->dir,
3979 p->idx);
3980 if (!(v & HDA_AMP_MUTE) && v > 0) {
3981 if (!check->power_on) {
3982 check->power_on = 1;
Takashi Iwai664c7152015-04-08 11:43:14 +02003983 snd_hda_power_up_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003984 }
3985 return 1;
3986 }
3987 }
3988 }
3989 if (check->power_on) {
3990 check->power_on = 0;
Takashi Iwai664c7152015-04-08 11:43:14 +02003991 snd_hda_power_down_pm(codec);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003992 }
3993 return 0;
3994}
Takashi Iwai2698ea92013-12-18 07:45:52 +01003995EXPORT_SYMBOL_GPL(snd_hda_check_amp_list_power);
Takashi Iwaicb53c622007-08-10 17:21:45 +02003996#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01003998/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999 * input MUX helper
4000 */
Takashi Iwaid5191e52009-11-16 14:58:17 +01004001
4002/**
4003 * snd_hda_input_mux_info_info - Info callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004004 * @imux: imux helper object
4005 * @uinfo: pointer to get/store the data
Takashi Iwaid5191e52009-11-16 14:58:17 +01004006 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004007int snd_hda_input_mux_info(const struct hda_input_mux *imux,
4008 struct snd_ctl_elem_info *uinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009{
4010 unsigned int index;
4011
4012 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
4013 uinfo->count = 1;
4014 uinfo->value.enumerated.items = imux->num_items;
Takashi Iwai5513b0c2007-10-09 11:58:41 +02004015 if (!imux->num_items)
4016 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 index = uinfo->value.enumerated.item;
4018 if (index >= imux->num_items)
4019 index = imux->num_items - 1;
4020 strcpy(uinfo->value.enumerated.name, imux->items[index].label);
4021 return 0;
4022}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004023EXPORT_SYMBOL_GPL(snd_hda_input_mux_info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Takashi Iwaid5191e52009-11-16 14:58:17 +01004025/**
4026 * snd_hda_input_mux_info_put - Put callback helper for the input-mux enum
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004027 * @codec: the HDA codec
4028 * @imux: imux helper object
4029 * @ucontrol: pointer to get/store the data
4030 * @nid: input mux NID
4031 * @cur_val: pointer to get/store the current imux value
Takashi Iwaid5191e52009-11-16 14:58:17 +01004032 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004033int snd_hda_input_mux_put(struct hda_codec *codec,
4034 const struct hda_input_mux *imux,
4035 struct snd_ctl_elem_value *ucontrol,
4036 hda_nid_t nid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 unsigned int *cur_val)
4038{
4039 unsigned int idx;
4040
Takashi Iwai5513b0c2007-10-09 11:58:41 +02004041 if (!imux->num_items)
4042 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 idx = ucontrol->value.enumerated.item[0];
4044 if (idx >= imux->num_items)
4045 idx = imux->num_items - 1;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004046 if (*cur_val == idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 return 0;
Takashi Iwai82beb8f2007-08-10 17:09:26 +02004048 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_CONNECT_SEL,
4049 imux->items[idx].index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 *cur_val = idx;
4051 return 1;
4052}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004053EXPORT_SYMBOL_GPL(snd_hda_input_mux_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054
4055
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004056/**
4057 * snd_hda_enum_helper_info - Helper for simple enum ctls
4058 * @kcontrol: ctl element
4059 * @uinfo: pointer to get/store the data
4060 * @num_items: number of enum items
4061 * @texts: enum item string array
4062 *
Takashi Iwaidda415d2012-11-30 18:34:38 +01004063 * process kcontrol info callback of a simple string enum array
4064 * when @num_items is 0 or @texts is NULL, assume a boolean enum array
4065 */
4066int snd_hda_enum_helper_info(struct snd_kcontrol *kcontrol,
4067 struct snd_ctl_elem_info *uinfo,
4068 int num_items, const char * const *texts)
4069{
4070 static const char * const texts_default[] = {
4071 "Disabled", "Enabled"
4072 };
4073
4074 if (!texts || !num_items) {
4075 num_items = 2;
4076 texts = texts_default;
4077 }
4078
Takashi Iwai3ff72212014-10-20 18:17:28 +02004079 return snd_ctl_enum_info(uinfo, 1, num_items, texts);
Takashi Iwaidda415d2012-11-30 18:34:38 +01004080}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004081EXPORT_SYMBOL_GPL(snd_hda_enum_helper_info);
Takashi Iwaidda415d2012-11-30 18:34:38 +01004082
4083/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 * Multi-channel / digital-out PCM helper functions
4085 */
4086
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004087/* setup SPDIF output stream */
4088static void setup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid,
4089 unsigned int stream_tag, unsigned int format)
4090{
Laurence Darby3bef1c32012-11-03 17:00:06 +00004091 struct hda_spdif_out *spdif;
4092 unsigned int curr_fmt;
4093 bool reset;
Stephen Warren7c9359762011-06-01 11:14:17 -06004094
Laurence Darby3bef1c32012-11-03 17:00:06 +00004095 spdif = snd_hda_spdif_out_of_nid(codec, nid);
4096 curr_fmt = snd_hda_codec_read(codec, nid, 0,
4097 AC_VERB_GET_STREAM_FORMAT, 0);
4098 reset = codec->spdif_status_reset &&
4099 (spdif->ctls & AC_DIG1_ENABLE) &&
4100 curr_fmt != format;
4101
4102 /* turn off SPDIF if needed; otherwise the IEC958 bits won't be
4103 updated */
4104 if (reset)
Norberto Lopes28aedaf2010-02-28 20:16:53 +01004105 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06004106 spdif->ctls & ~AC_DIG1_ENABLE & 0xff,
Takashi Iwai2f728532008-09-25 16:32:41 +02004107 -1);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004108 snd_hda_codec_setup_stream(codec, nid, stream_tag, 0, format);
Takashi Iwai2f728532008-09-25 16:32:41 +02004109 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02004110 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02004111 for (d = codec->slave_dig_outs; *d; d++)
4112 snd_hda_codec_setup_stream(codec, *d, stream_tag, 0,
4113 format);
Matthew Ranostayde51ca12008-09-07 14:31:40 -04004114 }
Takashi Iwai2f728532008-09-25 16:32:41 +02004115 /* turn on again (if needed) */
Laurence Darby3bef1c32012-11-03 17:00:06 +00004116 if (reset)
Takashi Iwai2f728532008-09-25 16:32:41 +02004117 set_dig_out_convert(codec, nid,
Stephen Warren7c9359762011-06-01 11:14:17 -06004118 spdif->ctls & 0xff, -1);
Takashi Iwai2f728532008-09-25 16:32:41 +02004119}
Matthew Ranostayde51ca12008-09-07 14:31:40 -04004120
Takashi Iwai2f728532008-09-25 16:32:41 +02004121static void cleanup_dig_out_stream(struct hda_codec *codec, hda_nid_t nid)
4122{
4123 snd_hda_codec_cleanup_stream(codec, nid);
4124 if (codec->slave_dig_outs) {
Takashi Iwaidda14412011-05-02 11:29:30 +02004125 const hda_nid_t *d;
Takashi Iwai2f728532008-09-25 16:32:41 +02004126 for (d = codec->slave_dig_outs; *d; d++)
4127 snd_hda_codec_cleanup_stream(codec, *d);
4128 }
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004129}
4130
Takashi Iwaid5191e52009-11-16 14:58:17 +01004131/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004132 * snd_hda_multi_out_dig_open - open the digital out in the exclusive mode
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004133 * @codec: the HDA codec
4134 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004136int snd_hda_multi_out_dig_open(struct hda_codec *codec,
4137 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138{
Ingo Molnar62932df2006-01-16 16:34:20 +01004139 mutex_lock(&codec->spdif_mutex);
Takashi Iwai5930ca42007-04-16 11:23:56 +02004140 if (mout->dig_out_used == HDA_DIG_ANALOG_DUP)
4141 /* already opened as analog dup; reset it once */
Takashi Iwai2f728532008-09-25 16:32:41 +02004142 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 mout->dig_out_used = HDA_DIG_EXCLUSIVE;
Ingo Molnar62932df2006-01-16 16:34:20 +01004144 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 return 0;
4146}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004147EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148
Takashi Iwaid5191e52009-11-16 14:58:17 +01004149/**
4150 * snd_hda_multi_out_dig_prepare - prepare the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004151 * @codec: the HDA codec
4152 * @mout: hda_multi_out object
4153 * @stream_tag: stream tag to assign
4154 * @format: format id to assign
4155 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01004156 */
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004157int snd_hda_multi_out_dig_prepare(struct hda_codec *codec,
4158 struct hda_multi_out *mout,
4159 unsigned int stream_tag,
4160 unsigned int format,
4161 struct snd_pcm_substream *substream)
4162{
4163 mutex_lock(&codec->spdif_mutex);
4164 setup_dig_out_stream(codec, mout->dig_out_nid, stream_tag, format);
4165 mutex_unlock(&codec->spdif_mutex);
4166 return 0;
4167}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004168EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_prepare);
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004169
Takashi Iwaid5191e52009-11-16 14:58:17 +01004170/**
4171 * snd_hda_multi_out_dig_cleanup - clean-up the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004172 * @codec: the HDA codec
4173 * @mout: hda_multi_out object
Takashi Iwaid5191e52009-11-16 14:58:17 +01004174 */
Takashi Iwai9411e212009-02-13 11:32:28 +01004175int snd_hda_multi_out_dig_cleanup(struct hda_codec *codec,
4176 struct hda_multi_out *mout)
4177{
4178 mutex_lock(&codec->spdif_mutex);
4179 cleanup_dig_out_stream(codec, mout->dig_out_nid);
4180 mutex_unlock(&codec->spdif_mutex);
4181 return 0;
4182}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004183EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_cleanup);
Takashi Iwai9411e212009-02-13 11:32:28 +01004184
Takashi Iwaid5191e52009-11-16 14:58:17 +01004185/**
4186 * snd_hda_multi_out_dig_close - release the digital out stream
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004187 * @codec: the HDA codec
4188 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004190int snd_hda_multi_out_dig_close(struct hda_codec *codec,
4191 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192{
Ingo Molnar62932df2006-01-16 16:34:20 +01004193 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 mout->dig_out_used = 0;
Ingo Molnar62932df2006-01-16 16:34:20 +01004195 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 return 0;
4197}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004198EXPORT_SYMBOL_GPL(snd_hda_multi_out_dig_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199
Takashi Iwaid5191e52009-11-16 14:58:17 +01004200/**
4201 * snd_hda_multi_out_analog_open - open analog outputs
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004202 * @codec: the HDA codec
4203 * @mout: hda_multi_out object
4204 * @substream: PCM substream to assign
4205 * @hinfo: PCM information to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01004206 *
4207 * Open analog outputs and set up the hw-constraints.
4208 * If the digital outputs can be opened as slave, open the digital
4209 * outputs, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004211int snd_hda_multi_out_analog_open(struct hda_codec *codec,
4212 struct hda_multi_out *mout,
Takashi Iwai9a081602008-02-12 18:37:26 +01004213 struct snd_pcm_substream *substream,
4214 struct hda_pcm_stream *hinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215{
Takashi Iwai9a081602008-02-12 18:37:26 +01004216 struct snd_pcm_runtime *runtime = substream->runtime;
4217 runtime->hw.channels_max = mout->max_channels;
4218 if (mout->dig_out_nid) {
4219 if (!mout->analog_rates) {
4220 mout->analog_rates = hinfo->rates;
4221 mout->analog_formats = hinfo->formats;
4222 mout->analog_maxbps = hinfo->maxbps;
4223 } else {
4224 runtime->hw.rates = mout->analog_rates;
4225 runtime->hw.formats = mout->analog_formats;
4226 hinfo->maxbps = mout->analog_maxbps;
4227 }
4228 if (!mout->spdif_rates) {
4229 snd_hda_query_supported_pcm(codec, mout->dig_out_nid,
4230 &mout->spdif_rates,
4231 &mout->spdif_formats,
4232 &mout->spdif_maxbps);
4233 }
4234 mutex_lock(&codec->spdif_mutex);
4235 if (mout->share_spdif) {
Takashi Iwai022b4662009-07-03 23:03:30 +02004236 if ((runtime->hw.rates & mout->spdif_rates) &&
4237 (runtime->hw.formats & mout->spdif_formats)) {
4238 runtime->hw.rates &= mout->spdif_rates;
4239 runtime->hw.formats &= mout->spdif_formats;
4240 if (mout->spdif_maxbps < hinfo->maxbps)
4241 hinfo->maxbps = mout->spdif_maxbps;
4242 } else {
4243 mout->share_spdif = 0;
4244 /* FIXME: need notify? */
4245 }
Takashi Iwai9a081602008-02-12 18:37:26 +01004246 }
Frederik Deweerdteaa99852008-04-14 13:11:44 +02004247 mutex_unlock(&codec->spdif_mutex);
Takashi Iwai9a081602008-02-12 18:37:26 +01004248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 return snd_pcm_hw_constraint_step(substream->runtime, 0,
4250 SNDRV_PCM_HW_PARAM_CHANNELS, 2);
4251}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004252EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004253
Takashi Iwaid5191e52009-11-16 14:58:17 +01004254/**
4255 * snd_hda_multi_out_analog_prepare - Preapre the analog outputs.
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004256 * @codec: the HDA codec
4257 * @mout: hda_multi_out object
4258 * @stream_tag: stream tag to assign
4259 * @format: format id to assign
4260 * @substream: PCM substream to assign
Takashi Iwaid5191e52009-11-16 14:58:17 +01004261 *
4262 * Set up the i/o for analog out.
4263 * When the digital out is available, copy the front out to digital out, too.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004265int snd_hda_multi_out_analog_prepare(struct hda_codec *codec,
4266 struct hda_multi_out *mout,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 unsigned int stream_tag,
4268 unsigned int format,
Takashi Iwaic8b6bf92005-11-17 14:57:47 +01004269 struct snd_pcm_substream *substream)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270{
Takashi Iwaidda14412011-05-02 11:29:30 +02004271 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272 int chs = substream->runtime->channels;
Takashi Iwaie3245cd2012-05-10 10:21:29 +02004273 struct hda_spdif_out *spdif;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 int i;
4275
Ingo Molnar62932df2006-01-16 16:34:20 +01004276 mutex_lock(&codec->spdif_mutex);
Takashi Iwaie3245cd2012-05-10 10:21:29 +02004277 spdif = snd_hda_spdif_out_of_nid(codec, mout->dig_out_nid);
Takashi Iwai9a081602008-02-12 18:37:26 +01004278 if (mout->dig_out_nid && mout->share_spdif &&
4279 mout->dig_out_used != HDA_DIG_EXCLUSIVE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 if (chs == 2 &&
Takashi Iwai0ba21762007-04-16 11:29:14 +02004281 snd_hda_is_supported_format(codec, mout->dig_out_nid,
4282 format) &&
Stephen Warren7c9359762011-06-01 11:14:17 -06004283 !(spdif->status & IEC958_AES0_NONAUDIO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 mout->dig_out_used = HDA_DIG_ANALOG_DUP;
Takashi Iwai6b97eb42007-04-05 14:51:48 +02004285 setup_dig_out_stream(codec, mout->dig_out_nid,
4286 stream_tag, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 } else {
4288 mout->dig_out_used = 0;
Takashi Iwai2f728532008-09-25 16:32:41 +02004289 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 }
4291 }
Ingo Molnar62932df2006-01-16 16:34:20 +01004292 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
4294 /* front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004295 snd_hda_codec_setup_stream(codec, nids[HDA_FRONT], stream_tag,
4296 0, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02004297 if (!mout->no_share_stream &&
4298 mout->hp_nid && mout->hp_nid != nids[HDA_FRONT])
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 /* headphone out will just decode front left/right (stereo) */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004300 snd_hda_codec_setup_stream(codec, mout->hp_nid, stream_tag,
4301 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004302 /* extra outputs copied from front */
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02004303 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
4304 if (!mout->no_share_stream && mout->hp_out_nid[i])
4305 snd_hda_codec_setup_stream(codec,
4306 mout->hp_out_nid[i],
4307 stream_tag, 0, format);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004308
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 /* surrounds */
4310 for (i = 1; i < mout->num_dacs; i++) {
Takashi Iwai4b3acaf2005-06-10 19:48:10 +02004311 if (chs >= (i + 1) * 2) /* independent out */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004312 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
4313 i * 2, format);
Takashi Iwaid29240c2007-10-26 12:35:56 +02004314 else if (!mout->no_share_stream) /* copy front */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004315 snd_hda_codec_setup_stream(codec, nids[i], stream_tag,
4316 0, format);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 }
David Henningssoncd4035e2013-10-10 09:01:25 +02004318
4319 /* extra surrounds */
4320 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++) {
4321 int ch = 0;
4322 if (!mout->extra_out_nid[i])
4323 break;
4324 if (chs >= (i + 1) * 2)
4325 ch = i * 2;
4326 else if (!mout->no_share_stream)
4327 break;
4328 snd_hda_codec_setup_stream(codec, mout->extra_out_nid[i],
4329 stream_tag, ch, format);
4330 }
4331
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 return 0;
4333}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004334EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_prepare);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
Takashi Iwaid5191e52009-11-16 14:58:17 +01004336/**
4337 * snd_hda_multi_out_analog_cleanup - clean up the setting for analog out
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004338 * @codec: the HDA codec
4339 * @mout: hda_multi_out object
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 */
Takashi Iwai0ba21762007-04-16 11:29:14 +02004341int snd_hda_multi_out_analog_cleanup(struct hda_codec *codec,
4342 struct hda_multi_out *mout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343{
Takashi Iwaidda14412011-05-02 11:29:30 +02004344 const hda_nid_t *nids = mout->dac_nids;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 int i;
4346
4347 for (i = 0; i < mout->num_dacs; i++)
Takashi Iwai888afa12008-03-18 09:57:50 +01004348 snd_hda_codec_cleanup_stream(codec, nids[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 if (mout->hp_nid)
Takashi Iwai888afa12008-03-18 09:57:50 +01004350 snd_hda_codec_cleanup_stream(codec, mout->hp_nid);
Takashi Iwaia06dbfc2011-08-23 18:16:13 +02004351 for (i = 0; i < ARRAY_SIZE(mout->hp_out_nid); i++)
4352 if (mout->hp_out_nid[i])
4353 snd_hda_codec_cleanup_stream(codec,
4354 mout->hp_out_nid[i]);
Takashi Iwai82bc9552006-03-21 11:24:42 +01004355 for (i = 0; i < ARRAY_SIZE(mout->extra_out_nid); i++)
4356 if (mout->extra_out_nid[i])
Takashi Iwai888afa12008-03-18 09:57:50 +01004357 snd_hda_codec_cleanup_stream(codec,
4358 mout->extra_out_nid[i]);
Ingo Molnar62932df2006-01-16 16:34:20 +01004359 mutex_lock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 if (mout->dig_out_nid && mout->dig_out_used == HDA_DIG_ANALOG_DUP) {
Takashi Iwai2f728532008-09-25 16:32:41 +02004361 cleanup_dig_out_stream(codec, mout->dig_out_nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 mout->dig_out_used = 0;
4363 }
Ingo Molnar62932df2006-01-16 16:34:20 +01004364 mutex_unlock(&codec->spdif_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 return 0;
4366}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004367EXPORT_SYMBOL_GPL(snd_hda_multi_out_analog_cleanup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368
Takashi Iwai47408602012-04-20 13:06:53 +02004369/**
4370 * snd_hda_get_default_vref - Get the default (mic) VREF pin bits
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004371 * @codec: the HDA codec
4372 * @pin: referred pin NID
Takashi Iwai47408602012-04-20 13:06:53 +02004373 *
4374 * Guess the suitable VREF pin bits to be set as the pin-control value.
4375 * Note: the function doesn't set the AC_PINCTL_IN_EN bit.
4376 */
4377unsigned int snd_hda_get_default_vref(struct hda_codec *codec, hda_nid_t pin)
4378{
4379 unsigned int pincap;
4380 unsigned int oldval;
4381 oldval = snd_hda_codec_read(codec, pin, 0,
4382 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
4383 pincap = snd_hda_query_pin_caps(codec, pin);
4384 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
4385 /* Exception: if the default pin setup is vref50, we give it priority */
4386 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
4387 return AC_PINCTL_VREF_80;
4388 else if (pincap & AC_PINCAP_VREF_50)
4389 return AC_PINCTL_VREF_50;
4390 else if (pincap & AC_PINCAP_VREF_100)
4391 return AC_PINCTL_VREF_100;
4392 else if (pincap & AC_PINCAP_VREF_GRD)
4393 return AC_PINCTL_VREF_GRD;
4394 return AC_PINCTL_VREF_HIZ;
4395}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004396EXPORT_SYMBOL_GPL(snd_hda_get_default_vref);
Takashi Iwai47408602012-04-20 13:06:53 +02004397
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004398/**
4399 * snd_hda_correct_pin_ctl - correct the pin ctl value for matching with the pin cap
4400 * @codec: the HDA codec
4401 * @pin: referred pin NID
4402 * @val: pin ctl value to audit
4403 */
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01004404unsigned int snd_hda_correct_pin_ctl(struct hda_codec *codec,
4405 hda_nid_t pin, unsigned int val)
4406{
4407 static unsigned int cap_lists[][2] = {
4408 { AC_PINCTL_VREF_100, AC_PINCAP_VREF_100 },
4409 { AC_PINCTL_VREF_80, AC_PINCAP_VREF_80 },
4410 { AC_PINCTL_VREF_50, AC_PINCAP_VREF_50 },
4411 { AC_PINCTL_VREF_GRD, AC_PINCAP_VREF_GRD },
4412 };
4413 unsigned int cap;
4414
4415 if (!val)
4416 return 0;
4417 cap = snd_hda_query_pin_caps(codec, pin);
4418 if (!cap)
4419 return val; /* don't know what to do... */
4420
4421 if (val & AC_PINCTL_OUT_EN) {
4422 if (!(cap & AC_PINCAP_OUT))
4423 val &= ~(AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
4424 else if ((val & AC_PINCTL_HP_EN) && !(cap & AC_PINCAP_HP_DRV))
4425 val &= ~AC_PINCTL_HP_EN;
4426 }
4427
4428 if (val & AC_PINCTL_IN_EN) {
4429 if (!(cap & AC_PINCAP_IN))
4430 val &= ~(AC_PINCTL_IN_EN | AC_PINCTL_VREFEN);
4431 else {
4432 unsigned int vcap, vref;
4433 int i;
4434 vcap = (cap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
4435 vref = val & AC_PINCTL_VREFEN;
4436 for (i = 0; i < ARRAY_SIZE(cap_lists); i++) {
4437 if (vref == cap_lists[i][0] &&
4438 !(vcap & cap_lists[i][1])) {
4439 if (i == ARRAY_SIZE(cap_lists) - 1)
4440 vref = AC_PINCTL_VREF_HIZ;
4441 else
4442 vref = cap_lists[i + 1][0];
4443 }
4444 }
4445 val &= ~AC_PINCTL_VREFEN;
4446 val |= vref;
4447 }
4448 }
4449
4450 return val;
4451}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004452EXPORT_SYMBOL_GPL(snd_hda_correct_pin_ctl);
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01004453
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004454/**
4455 * _snd_hda_pin_ctl - Helper to set pin ctl value
4456 * @codec: the HDA codec
4457 * @pin: referred pin NID
4458 * @val: pin control value to set
4459 * @cached: access over codec pinctl cache or direct write
4460 *
4461 * This function is a helper to set a pin ctl value more safely.
4462 * It corrects the pin ctl value via snd_hda_correct_pin_ctl(), stores the
4463 * value in pin target array via snd_hda_codec_set_pin_target(), then
4464 * actually writes the value via either snd_hda_codec_update_cache() or
4465 * snd_hda_codec_write() depending on @cached flag.
4466 */
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004467int _snd_hda_set_pin_ctl(struct hda_codec *codec, hda_nid_t pin,
4468 unsigned int val, bool cached)
4469{
Takashi Iwai62f3a2f2013-01-10 08:56:46 +01004470 val = snd_hda_correct_pin_ctl(codec, pin, val);
Takashi Iwaid7fdc002013-01-10 08:38:04 +01004471 snd_hda_codec_set_pin_target(codec, pin, val);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004472 if (cached)
4473 return snd_hda_codec_update_cache(codec, pin, 0,
4474 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
4475 else
4476 return snd_hda_codec_write(codec, pin, 0,
4477 AC_VERB_SET_PIN_WIDGET_CONTROL, val);
4478}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004479EXPORT_SYMBOL_GPL(_snd_hda_set_pin_ctl);
Takashi Iwaicdd03ce2012-04-20 12:34:50 +02004480
Takashi Iwai990061c2010-09-09 22:08:44 +02004481/**
4482 * snd_hda_add_imux_item - Add an item to input_mux
Takashi Iwaia11e9b12014-10-29 15:06:01 +01004483 * @codec: the HDA codec
4484 * @imux: imux helper object
4485 * @label: the name of imux item to assign
4486 * @index: index number of imux item to assign
4487 * @type_idx: pointer to store the resultant label index
Takashi Iwai990061c2010-09-09 22:08:44 +02004488 *
4489 * When the same label is used already in the existing items, the number
4490 * suffix is appended to the label. This label index number is stored
4491 * to type_idx when non-NULL pointer is given.
4492 */
Takashi Iwai6194b992014-06-06 18:12:16 +02004493int snd_hda_add_imux_item(struct hda_codec *codec,
4494 struct hda_input_mux *imux, const char *label,
Takashi Iwai10a20af2010-09-09 16:28:02 +02004495 int index, int *type_idx)
4496{
4497 int i, label_idx = 0;
4498 if (imux->num_items >= HDA_MAX_NUM_INPUTS) {
Takashi Iwai6194b992014-06-06 18:12:16 +02004499 codec_err(codec, "hda_codec: Too many imux items!\n");
Takashi Iwai10a20af2010-09-09 16:28:02 +02004500 return -EINVAL;
4501 }
4502 for (i = 0; i < imux->num_items; i++) {
4503 if (!strncmp(label, imux->items[i].label, strlen(label)))
4504 label_idx++;
4505 }
4506 if (type_idx)
4507 *type_idx = label_idx;
4508 if (label_idx > 0)
4509 snprintf(imux->items[imux->num_items].label,
4510 sizeof(imux->items[imux->num_items].label),
4511 "%s %d", label, label_idx);
4512 else
4513 strlcpy(imux->items[imux->num_items].label, label,
4514 sizeof(imux->items[imux->num_items].label));
4515 imux->items[imux->num_items].index = index;
4516 imux->num_items++;
4517 return 0;
4518}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004519EXPORT_SYMBOL_GPL(snd_hda_add_imux_item);
Takashi Iwaid7b1ae92010-08-30 13:00:16 +02004520
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521/**
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004522 * snd_hda_bus_reset - Reset the bus
4523 * @bus: HD-audio bus
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 */
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004525void snd_hda_bus_reset(struct hda_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526{
Takashi Iwai0ba21762007-04-16 11:29:14 +02004527 struct hda_codec *codec;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Takashi Iwaid068ebc2015-03-02 23:22:59 +01004529 list_for_each_codec(codec, bus) {
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004530 /* FIXME: maybe a better way needed for forced reset */
David Henningsson26a6cb62012-10-09 15:04:21 +02004531 cancel_delayed_work_sync(&codec->jackpoll_work);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004532#ifdef CONFIG_PM
Mengdong Lin0e24dbb2013-11-26 23:00:51 -05004533 if (hda_codec_is_power_on(codec)) {
Takashi Iwaicc72da72015-02-19 16:00:22 +01004534 hda_call_codec_suspend(codec);
Mengdong Lin12edb892013-11-26 23:32:23 -05004535 hda_call_codec_resume(codec);
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004536 }
4537#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539}
Takashi Iwai59ed1ea2015-02-18 15:39:59 +01004540EXPORT_SYMBOL_GPL(snd_hda_bus_reset);
Takashi Iwaib2e18592008-07-30 15:01:44 +02004541
Takashi Iwaid5191e52009-11-16 14:58:17 +01004542/**
Takashi Iwaid5191e52009-11-16 14:58:17 +01004543 * snd_print_pcm_bits - Print the supported PCM fmt bits to the string buffer
4544 * @pcm: PCM caps bits
4545 * @buf: the string buffer to write
4546 * @buflen: the max buffer length
4547 *
4548 * used by hda_proc.c and hda_eld.c
4549 */
Takashi Iwaib2022262008-11-21 21:24:03 +01004550void snd_print_pcm_bits(int pcm, char *buf, int buflen)
4551{
4552 static unsigned int bits[] = { 8, 16, 20, 24, 32 };
4553 int i, j;
4554
4555 for (i = 0, j = 0; i < ARRAY_SIZE(bits); i++)
4556 if (pcm & (AC_SUPPCM_BITS_8 << i))
4557 j += snprintf(buf + j, buflen - j, " %d", bits[i]);
4558
4559 buf[j] = '\0'; /* necessary when j == 0 */
4560}
Takashi Iwai2698ea92013-12-18 07:45:52 +01004561EXPORT_SYMBOL_GPL(snd_print_pcm_bits);
Takashi Iwai1289e9e2008-11-27 15:47:11 +01004562
4563MODULE_DESCRIPTION("HDA codec core");
4564MODULE_LICENSE("GPL");